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

2019-10-27 Thread Sébastien Luttringer via arch-commits
Date: Monday, October 28, 2019 @ 04:53:24
  Author: seblu
Revision: 365950

db-move: moved btrfs-progs from [testing] to [core] (x86_64)

Added:
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 365949, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 365949, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 365949, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 365949, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 365949, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 365949, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /PKGBUILD  |   74 +++
 /btrfs-progs.install   |   15 +++
 /btrfs-scrub@.service  |8 +++
 /btrfs-scrub@.timer|   11 +
 /initcpio-hook-btrfs   |7 +++
 /initcpio-install-btrfs|   17 
 core-x86_64/PKGBUILD   |   74 ---
 core-x86_64/btrfs-progs.install|   15 ---
 core-x86_64/btrfs-scrub@.service   |8 ---
 core-x86_64/btrfs-scrub@.timer |   11 -
 core-x86_64/initcpio-hook-btrfs|7 ---
 core-x86_64/initcpio-install-btrfs |   17 
 12 files changed, 132 insertions(+), 132 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-10-27 18:52:13 UTC (rev 365949)
+++ core-x86_64/PKGBUILD2019-10-28 04:53:24 UTC (rev 365950)
@@ -1,74 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=5.3
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')
-install=btrfs-progs.install
-options=(!staticlibs)
-sha224sums=('SKIP'
-'66d14e47b545efef1c91db6efc788827c2a409abe2331983029ef59b'
-'9a20f841f572d97eaecaa25f5641eee143bc4c5ded79198b15d6691d'
-'650621f98192cc9c8cc4ecfdcf560db88011dbc07c5df1d7bdae0ae2'
-'c1477fc473324a7f3057f3e5e258b6462d596d1447fad8651ccb872c'
-'1425cb4ded552dc69048f46147ecf5d3b8879e65ec0893d0dca149a2')
-
-prepare() {
-  cd $pkgname-v$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-msg2 "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-}
-
-build() {
-  cd $pkgname-v$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-v$pkgver
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname-v$pkgver
-  make DESTDIR="$pkgdir" install install_python
-
-  # install bash completion (FS#44618)
-  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
-
-  # install mkinitcpio hooks
-  cd "$srcdir"
-  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
-  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
-
-  # install scrub service/timer
-  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
-  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/core-x86_64/PKGBUILD (from rev 365949, 
btrfs-progs/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2019-10-28 04:53:24 UTC (rev 365950)

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

2019-10-27 Thread Giancarlo Razzolini via arch-commits
Date: Monday, October 28, 2019 @ 02:47:37
  Author: grazzolini
Revision: 520804

archrelease: copy trunk to multilib-testing-x86_64

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

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

Copied: lib32-primus_vk/repos/multilib-testing-x86_64/PKGBUILD (from rev 
520803, lib32-primus_vk/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-10-28 02:47:37 UTC (rev 520804)
@@ -0,0 +1,52 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Bruno Pagani 
+
+_pkgname=primus_vk
+pkgname=lib32-primus_vk
+pkgver=1.3
+pkgrel=1
+pkgdesc="Nvidia Vulkan offloading for Bumblebee"
+arch=('x86_64')
+url="https://github.com/felixdoerre/primus_vk;
+license=('BSD')
+depends=('lib32-nvidia-utils' 'bumblebee' 'lib32-vulkan-icd-loader' 
'lib32-primus')
+makedepends=('git' 'vulkan-validation-layers')
+source=("${_pkgname}-${pkgver}::git+${url}.git#tag=v${pkgver}")
+sha512sums=('SKIP')
+
+_backports=(
+)
+
+_reverts=(
+)
+
+prepare() {
+  cd ${_pkgname}-${pkgver}
+
+  local _c
+  
+  for _c in "${_backports[@]}"; do
+git log --oneline -1 "${_c}"  
+git cherry-pick -n "${_c}"
+  done
+
+  for _c in "${_reverts[@]}"; do
+git log --oneline -1 "${_c}"
+git revert -n "${_c}"
+  done
+}
+
+build() {
+  cd ${_pkgname}-${pkgver}
+
+  export CXXFLAGS+=' -m32 -DNV_DRIVER_PATH=\"/usr/lib32/libGLX_nvidia.so.0\"'
+  make
+}
+
+package() {
+  cd "${_pkgname}-${pkgver}"
+
+  install -D libnv_vulkan_wrapper.so -t "$pkgdir"/usr/lib32/
+  install -D libprimus_vk.so -t "$pkgdir"/usr/lib32/
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"/
+}


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

2019-10-27 Thread Giancarlo Razzolini via arch-commits
Date: Monday, October 28, 2019 @ 02:47:10
  Author: grazzolini
Revision: 520803

upgpkg: lib32-primus_vk 1.3-1

Modified:
  lib32-primus_vk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-28 02:41:51 UTC (rev 520802)
+++ PKGBUILD2019-10-28 02:47:10 UTC (rev 520803)
@@ -3,8 +3,8 @@
 
 _pkgname=primus_vk
 pkgname=lib32-primus_vk
-pkgver=1.2
-pkgrel=3
+pkgver=1.3
+pkgrel=1
 pkgdesc="Nvidia Vulkan offloading for Bumblebee"
 arch=('x86_64')
 url="https://github.com/felixdoerre/primus_vk;
@@ -15,8 +15,6 @@
 sha512sums=('SKIP')
 
 _backports=(
-  #fix queue creation
-  '9b8c4492a3e9c8652a366a7acf14b6a28584a150'
 )
 
 _reverts=(


[arch-commits] Commit in python-tensorflow-estimator/repos (2 files)

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 20:47:46
  Author: foutrelis
Revision: 520800

archrelease: copy trunk to community-staging-any

Added:
  python-tensorflow-estimator/repos/community-staging-any/
  python-tensorflow-estimator/repos/community-staging-any/PKGBUILD
(from rev 520799, python-tensorflow-estimator/trunk/PKGBUILD)

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

Copied: python-tensorflow-estimator/repos/community-staging-any/PKGBUILD (from 
rev 520799, python-tensorflow-estimator/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-10-27 20:47:46 UTC (rev 520800)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov (kgizdov) 
+
+pkgname=python-tensorflow-estimator
+pkgver=2.0.0
+_pkgver=2.0.0
+pkgrel=2
+pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
+url="https://github.com/tensorflow/estimator;
+license=('APACHE')
+arch=('any')
+depends=('python-wrapt')
+makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/estimator/archive/v${_pkgver}.tar.gz;)
+sha512sums=('99bbdb4be9cd9f46128657b262fc6daa61a1dbfad6c430c43bb62ef99cefec10b10bf03090adcb21bdac0404e00084b4e5c4961761a52462afdeb105ef1e0c73')
+
+build() {
+  cd estimator-${_pkgver}
+
+  bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
+  bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package 
${srcdir}/estimator_pip
+}
+
+check() {
+  cd estimator-${_pkgver}
+
+  # Of course, upstream doesn't care about working tests...
+  # Revisit this at some point.
+  # bazel test //tensorflow_estimator/...
+}
+
+package() {
+  cd estimator-${_pkgver}
+
+  WHEEL_PACKAGE=$(find ${srcdir}/estimator_pip -name "tensor*.whl")
+  pip install --ignore-installed --upgrade --root "$pkgdir"/ $WHEEL_PACKAGE 
--no-dependencies
+}


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 20:47:42
  Author: foutrelis
Revision: 520799

Python 3.8 rebuild

Modified:
  python-tensorflow-estimator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 20:39:28 UTC (rev 520798)
+++ PKGBUILD2019-10-27 20:47:42 UTC (rev 520799)
@@ -4,7 +4,7 @@
 pkgname=python-tensorflow-estimator
 pkgver=2.0.0
 _pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
 url="https://github.com/tensorflow/estimator;
 license=('APACHE')


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 20:39:28
  Author: foutrelis
Revision: 520798

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorflow/repos/community-staging-x86_64/
  tensorflow/repos/community-staging-x86_64/PKGBUILD
(from rev 520797, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-staging-x86_64/glibc-2.30.patch
(from rev 520797, tensorflow/trunk/glibc-2.30.patch)
  tensorflow/repos/community-staging-x86_64/python-3.8.patch
(from rev 520797, tensorflow/trunk/python-3.8.patch)

--+
 PKGBUILD |  254 +
 glibc-2.30.patch |   89 ++
 python-3.8.patch |   70 ++
 3 files changed, 413 insertions(+)

Copied: tensorflow/repos/community-staging-x86_64/PKGBUILD (from rev 520797, 
tensorflow/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-27 20:39:28 UTC (rev 520798)
@@ -0,0 +1,254 @@
+# Maintainer: Sven-Hendrik Haase 
+# Co-Maintainer: Konstantin Gizdov (kgizdov) 
+# Contributor: Adria Arrufat (archdria) 
+# Contributor: Thibault Lorrain (fredszaq) 
+
+pkgbase=tensorflow
+pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
+pkgver=2.0.0
+_pkgver=2.0.0
+pkgrel=3
+pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
+url="https://www.tensorflow.org/;
+license=('APACHE')
+arch=('x86_64')
+depends=('c-ares')
+makedepends=('bazel<1' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git' 'gcc'
+ 'cudnn' 'python-pip' 'python-wheel' 'python-setuptools' 
'python-h5py'
+ 'python-keras-applications' 'python-keras-preprocessing')
+optdepends=('tensorboard: Tensorflow visualization toolkit')
+source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;
+'python-3.8.patch'
+'glibc-2.30.patch')
+sha512sums=('c3a2cb9673d2ade8e83961f7d944165123d0e4d94e6ca4d8fdee4f02f536893b879bbbf78d3ad5e557467b58f97f7194f2d9cfc64d7d05540969be732070eecc'
+
'ef06196f1a7f5a4dff4d83916566dae8f2f2c2993ddcd40017583020dd9bfc73ef426c45b0cc5630d1dd53321b99736f2c60b37bb9370be02174c1209e041ffb'
+
'a9345b7206e9f8ae9fc33987997808dcdeaf3e4c05caf40785bba2a9ef2292e20046bfd54ce05fee2ccd11ded9d8e918b2a131d830a7e238406e6ddf222e830e')
+
+get_pyver () {
+python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+prepare() {
+  patch -Np1 -d tensorflow-${_pkgver} 
+Date: Fri, 23 Aug 2019 13:54:52 +
+Subject: [PATCH] grpc: Define gettid() only for glibc < 2.30
+
+glibc 2.30 has added this API, so let us use that when possible
+
+Upstream-Status: Pending
+
+Signed-off-by: Hongxu Jia 
+---
+ tensorflow/workspace.bzl  |  1 +
+ ...01-Define-gettid-only-for-glibc-2.30.patch | 52 +++
+ 2 files changed, 53 insertions(+)
+ create mode 100644 
third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+
+diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
+index 788eca2f67..8a37fe5643 100755
+--- a/tensorflow/workspace.bzl
 b/tensorflow/workspace.bzl
+@@ -475,6 +475,7 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
+ sha256 = 
"1aa84387232dda273ea8fdfe722622084f72c16f7b84bfc519ac7759b71cdc91",
+ strip_prefix = "grpc-69b6c047bc767b4d80e7af4d00ccb7c45b683dae",
+ system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"),
++patch_file = 
clean_dep("//third_party/systemlibs:0001-Define-gettid-only-for-glibc-2.30.patch"),
+ urls = [
+ 
"https://mirror.bazel.build/github.com/grpc/grpc/archive/69b6c047bc767b4d80e7af4d00ccb7c45b683dae.tar.gz;,
+ 
"https://github.com/grpc/grpc/archive/69b6c047bc767b4d80e7af4d00ccb7c45b683dae.tar.gz;,
+diff --git 
a/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch 
b/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+new file mode 100644
+index 00..30f1d7b252
+--- /dev/null
 b/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+@@ -0,0 +1,52 @@
++From 1d630079c3d1013baebd19060f4e6050112cb66d Mon Sep 17 00:00:00 2001
++From: Hongxu Jia 
++Date: Fri, 23 Aug 2019 13:52:01 +
++Subject: [PATCH] Define gettid() only for glibc < 2.30
++
++glibc 2.30 has added this API, so let us use that when possible
++
++Upstream-Status: Pending
++Signed-off-by: Khem Raj 
++
++Signed-off-by: Hongxu Jia 
++---
++ src/core/lib/gpr/log_linux.cc  | 4 
++ src/core/lib/iomgr/ev_epollex_linux.cc | 4 
++ 2 files changed, 8 insertions(+)
++
++diff --git a/src/core/lib/gpr/log_linux.cc b/src/core/lib/gpr/log_linux.cc
++index 561276f..25a7486 100644
++--- a/src/core/lib/gpr/log_linux.cc
+ 

[arch-commits] Commit in tensorflow/trunk (PKGBUILD glibc-2.30.patch python-3.8.patch)

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 20:38:34
  Author: foutrelis
Revision: 520797

Python 3.8 rebuild

Added:
  tensorflow/trunk/glibc-2.30.patch
  tensorflow/trunk/python-3.8.patch
Modified:
  tensorflow/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++--
 glibc-2.30.patch |   89 +
 python-3.8.patch |   70 +
 3 files changed, 170 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 19:46:20 UTC (rev 520796)
+++ PKGBUILD2019-10-27 20:38:34 UTC (rev 520797)
@@ -7,18 +7,22 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=2.0.0
 _pkgver=2.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
 arch=('x86_64')
 depends=('c-ares')
-makedepends=('bazel' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git' 'gcc'
+makedepends=('bazel<1' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git' 'gcc'
  'cudnn' 'python-pip' 'python-wheel' 'python-setuptools' 
'python-h5py'
  'python-keras-applications' 'python-keras-preprocessing')
 optdepends=('tensorboard: Tensorflow visualization toolkit')
-source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;)
-sha512sums=('c3a2cb9673d2ade8e83961f7d944165123d0e4d94e6ca4d8fdee4f02f536893b879bbbf78d3ad5e557467b58f97f7194f2d9cfc64d7d05540969be732070eecc')
+source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;
+'python-3.8.patch'
+'glibc-2.30.patch')
+sha512sums=('c3a2cb9673d2ade8e83961f7d944165123d0e4d94e6ca4d8fdee4f02f536893b879bbbf78d3ad5e557467b58f97f7194f2d9cfc64d7d05540969be732070eecc'
+
'ef06196f1a7f5a4dff4d83916566dae8f2f2c2993ddcd40017583020dd9bfc73ef426c45b0cc5630d1dd53321b99736f2c60b37bb9370be02174c1209e041ffb'
+
'a9345b7206e9f8ae9fc33987997808dcdeaf3e4c05caf40785bba2a9ef2292e20046bfd54ce05fee2ccd11ded9d8e918b2a131d830a7e238406e6ddf222e830e')
 
 get_pyver () {
 python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
@@ -25,6 +29,9 @@
 }
 
 prepare() {
+  patch -Np1 -d tensorflow-${_pkgver} 
+Date: Fri, 23 Aug 2019 13:54:52 +
+Subject: [PATCH] grpc: Define gettid() only for glibc < 2.30
+
+glibc 2.30 has added this API, so let us use that when possible
+
+Upstream-Status: Pending
+
+Signed-off-by: Hongxu Jia 
+---
+ tensorflow/workspace.bzl  |  1 +
+ ...01-Define-gettid-only-for-glibc-2.30.patch | 52 +++
+ 2 files changed, 53 insertions(+)
+ create mode 100644 
third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+
+diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
+index 788eca2f67..8a37fe5643 100755
+--- a/tensorflow/workspace.bzl
 b/tensorflow/workspace.bzl
+@@ -475,6 +475,7 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
+ sha256 = 
"1aa84387232dda273ea8fdfe722622084f72c16f7b84bfc519ac7759b71cdc91",
+ strip_prefix = "grpc-69b6c047bc767b4d80e7af4d00ccb7c45b683dae",
+ system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"),
++patch_file = 
clean_dep("//third_party/systemlibs:0001-Define-gettid-only-for-glibc-2.30.patch"),
+ urls = [
+ 
"https://mirror.bazel.build/github.com/grpc/grpc/archive/69b6c047bc767b4d80e7af4d00ccb7c45b683dae.tar.gz;,
+ 
"https://github.com/grpc/grpc/archive/69b6c047bc767b4d80e7af4d00ccb7c45b683dae.tar.gz;,
+diff --git 
a/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch 
b/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+new file mode 100644
+index 00..30f1d7b252
+--- /dev/null
 b/third_party/systemlibs/0001-Define-gettid-only-for-glibc-2.30.patch
+@@ -0,0 +1,52 @@
++From 1d630079c3d1013baebd19060f4e6050112cb66d Mon Sep 17 00:00:00 2001
++From: Hongxu Jia 
++Date: Fri, 23 Aug 2019 13:52:01 +
++Subject: [PATCH] Define gettid() only for glibc < 2.30
++
++glibc 2.30 has added this API, so let us use that when possible
++
++Upstream-Status: Pending
++Signed-off-by: Khem Raj 
++
++Signed-off-by: Hongxu Jia 
++---
++ src/core/lib/gpr/log_linux.cc  | 4 
++ src/core/lib/iomgr/ev_epollex_linux.cc | 4 
++ 2 files changed, 8 insertions(+)
++
++diff --git a/src/core/lib/gpr/log_linux.cc b/src/core/lib/gpr/log_linux.cc
++index 561276f..25a7486 100644
++--- a/src/core/lib/gpr/log_linux.cc
+ b/src/core/lib/gpr/log_linux.cc
++@@ -40,7 +40,11 @@
++ #include 
++ #include 
++ 
+++#if defined(__GLIBC__) && (__GLIBC_MINOR__ >= 29)
+++#include 
+++#else
++ static long gettid(void) { return syscall(__NR_gettid); }
+++#endif
++ 
++ void gpr_log(const char* file, 

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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:46:20
  Author: cesura
Revision: 520796

archrelease: copy trunk to community-x86_64

Added:
  nextcloud-client/repos/community-x86_64/PKGBUILD
(from rev 520795, nextcloud-client/trunk/PKGBUILD)
Deleted:
  nextcloud-client/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 19:46:00 UTC (rev 520795)
+++ PKGBUILD2019-10-27 19:46:20 UTC (rev 520796)
@@ -1,78 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Tyler Dence 
-# Contributor: Konstantin Shalygin 
-
-pkgname=nextcloud-client
-pkgver=2.6.0
-_commit=e0b32c19e4dd641f4edf74fc3fbdba3d86ca9784
-pkgrel=3
-pkgdesc='Nextcloud desktop client'
-arch=(x86_64)
-url='https://nextcloud.com/'
-license=(GPL)
-depends=(openssl sqlite qtkeychain qt5-svg qt5-webengine xdg-utils)
-makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
-optdepends=(
-  'kio: integration with Dolphin'
-  'nemo-python: integration with Nemo'
-  'python-nautilus: integration with Nautilus'
-  'python2-caja: integration with Caja'
-)
-source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;
-
issue1458.patch::https://github.com/nextcloud/desktop/commit/481d8d3a0bcd26a3fd2b0d4fc6fb009260092bb1.patch
-
issue1458-workaround.patch::https://github.com/yan12125/desktop/commit/7da680ef7843a52c3136916744f50d4a003bb8b5.patch
-
issue1458-2.patch::https://github.com/yan12125/desktop/commit/2b313368325dac5b8d0e69394cfcc4faaa745f75.patch)
-validpgpkeys=(
-  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
-)
-sha256sums=('SKIP'
-'8e3129fbbda282d5b0fbc1f3d495338c18fd19f639301647eb5f853b713c369c'
-'07cd68f54c004175b4a09cce25830a357d0ebaafaf4e4cabfb8b0d4deeded2f3'
-'157c87a789219a3442ca5947c48dcd1ef3898612ff32070bf8842a42bfbe857a')
-backup=('etc/Nextcloud/sync-exclude.lst')
-
-prepare() {
-  # tmpdir for check()
-  mkdir tmpdir $pkgname/build
-
-  # Use system GNUInstallDirs.cmake so that we can benefit from
-  # https://gitlab.kitware.com/cmake/cmake/merge_requests/3735
-  rm -v $pkgname/cmake/modules/GNUInstallDirs.cmake
-
-  cd $pkgname
-  patch -Np1 -i ../issue1458.patch
-  patch -Np1 -i ../issue1458-workaround.patch
-  patch -Np1 -i ../issue1458-2.patch
-}
-
-build() {
-  cd $pkgname/build
-
-  # bundled breakpad in libcrashreporter-qt submodule is too old and does not 
build with glibc >= 2.26
-  # Upstream fix: 
https://github.com/google/breakpad/commit/bddcc58860f522a0d4cbaa7e9d04058caee0db9d
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DNO_SHIBBOLETH=1 \
--DWITH_CRASHREPORTER=OFF \
--DUNIT_TESTING=ON \
-..
-
-  make
-  # TODO: fix installation of PDF and HTML documents
-  # WIP at https://github.com/yan12125/desktop/tree/doc-install-path
-  make doc-man
-}
-
-check() {
-  cd $pkgname/build
-
-  # Tests fail if $TMPDIR is too small; specify an alternative for machines
-  # with a small /tmp partition.
-  TMPDIR="$srcdir/tmpdir" make test ARGS="-V"
-}
-
-package() {
-  cd $pkgname/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: nextcloud-client/repos/community-x86_64/PKGBUILD (from rev 520795, 
nextcloud-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 19:46:20 UTC (rev 520796)
@@ -0,0 +1,78 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Tyler Dence 
+# Contributor: Konstantin Shalygin 
+
+pkgname=nextcloud-client
+pkgver=2.6.0
+_commit=e0b32c19e4dd641f4edf74fc3fbdba3d86ca9784
+pkgrel=4
+pkgdesc='Nextcloud desktop client'
+arch=(x86_64)
+url='https://nextcloud.com/'
+license=(GPL)
+depends=(openssl sqlite qtkeychain qt5-svg qt5-webengine xdg-utils)
+makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
+optdepends=(
+  'kio: integration with Dolphin'
+  'nemo-python: integration with Nemo'
+  'python-nautilus: integration with Nautilus'
+  'python-caja: integration with Caja'
+)
+source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;
+
issue1458.patch::https://github.com/nextcloud/desktop/commit/481d8d3a0bcd26a3fd2b0d4fc6fb009260092bb1.patch
+
issue1458-workaround.patch::https://github.com/yan12125/desktop/commit/7da680ef7843a52c3136916744f50d4a003bb8b5.patch
+
issue1458-2.patch::https://github.com/yan12125/desktop/commit/2b313368325dac5b8d0e69394cfcc4faaa745f75.patch)
+validpgpkeys=(
+  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
+)
+sha256sums=('SKIP'
+'8e3129fbbda282d5b0fbc1f3d495338c18fd19f639301647eb5f853b713c369c'
+

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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:46:00
  Author: cesura
Revision: 520795

upgpkg: nextcloud-client 2.6.0-4

Changed python2-caja optdepend to python-caja

Modified:
  nextcloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 19:21:10 UTC (rev 520794)
+++ PKGBUILD2019-10-27 19:46:00 UTC (rev 520795)
@@ -5,7 +5,7 @@
 pkgname=nextcloud-client
 pkgver=2.6.0
 _commit=e0b32c19e4dd641f4edf74fc3fbdba3d86ca9784
-pkgrel=3
+pkgrel=4
 pkgdesc='Nextcloud desktop client'
 arch=(x86_64)
 url='https://nextcloud.com/'
@@ -16,7 +16,7 @@
   'kio: integration with Dolphin'
   'nemo-python: integration with Nemo'
   'python-nautilus: integration with Nautilus'
-  'python2-caja: integration with Caja'
+  'python-caja: integration with Caja'
 )
 
source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;
 
issue1458.patch::https://github.com/nextcloud/desktop/commit/481d8d3a0bcd26a3fd2b0d4fc6fb009260092bb1.patch


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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:21:10
  Author: cesura
Revision: 520794

archrelease: copy trunk to community-x86_64

Added:
  owncloud-client/repos/community-x86_64/PKGBUILD
(from rev 520793, owncloud-client/trunk/PKGBUILD)
Deleted:
  owncloud-client/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 19:20:51 UTC (rev 520793)
+++ PKGBUILD2019-10-27 19:21:10 UTC (rev 520794)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Kuba Serafinowski 
-
-_name=owncloudclient
-pkgname=owncloud-client
-pkgver=2.5.4.11654
-pkgrel=1
-pkgdesc='ownCloud client based on mirall'
-arch=(x86_64)
-url='http://owncloud.org/'
-license=(GPL2)
-depends=(qtkeychain qt5-webkit hicolor-icon-theme)
-makedepends=(extra-cmake-modules python-sphinx qt5-tools doxygen kio)
-optdepends=('python-nautilus: integration with Nautilus' 'nemo-python: 
integration with Nemo' 'python2-caja: integration with Caja')
-backup=('etc/ownCloud/sync-exclude.lst')
-source=(https://download.owncloud.com/desktop/stable/owncloudclient-$pkgver.tar.xz{,.asc})
-sha256sums=('615439c6a224e263cee0d554b8b5f98b57c331dbc18df7ae5d99197480cf563f'
-'SKIP')
-validpgpkeys=(F05F7DD7953A07DF36579DAA498C45EBE94E7B37) # ownCloud Client Team 
(Signing Key) 
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$_name-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname
-  make
-  make doc-man
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: owncloud-client/repos/community-x86_64/PKGBUILD (from rev 520793, 
owncloud-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 19:21:10 UTC (rev 520794)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Kuba Serafinowski 
+
+_name=owncloudclient
+pkgname=owncloud-client
+pkgver=2.5.4.11654
+pkgrel=2
+pkgdesc='ownCloud client based on mirall'
+arch=(x86_64)
+url='http://owncloud.org/'
+license=(GPL2)
+depends=(qtkeychain qt5-webkit hicolor-icon-theme)
+makedepends=(extra-cmake-modules python-sphinx qt5-tools doxygen kio)
+optdepends=('python-nautilus: integration with Nautilus' 'nemo-python: 
integration with Nemo' 'python-caja: integration with Caja')
+backup=('etc/ownCloud/sync-exclude.lst')
+source=(https://download.owncloud.com/desktop/stable/owncloudclient-$pkgver.tar.xz{,.asc})
+sha256sums=('615439c6a224e263cee0d554b8b5f98b57c331dbc18df7ae5d99197480cf563f'
+'SKIP')
+validpgpkeys=(F05F7DD7953A07DF36579DAA498C45EBE94E7B37) # ownCloud Client Team 
(Signing Key) 
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$_name-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname
+  make
+  make doc-man
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:20:51
  Author: cesura
Revision: 520793

upgpkg: owncloud-client 2.5.4.11654-2

Changed python2-caja optdepend to python-caja

Modified:
  owncloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 19:06:26 UTC (rev 520792)
+++ PKGBUILD2019-10-27 19:20:51 UTC (rev 520793)
@@ -4,7 +4,7 @@
 _name=owncloudclient
 pkgname=owncloud-client
 pkgver=2.5.4.11654
-pkgrel=1
+pkgrel=2
 pkgdesc='ownCloud client based on mirall'
 arch=(x86_64)
 url='http://owncloud.org/'
@@ -11,7 +11,7 @@
 license=(GPL2)
 depends=(qtkeychain qt5-webkit hicolor-icon-theme)
 makedepends=(extra-cmake-modules python-sphinx qt5-tools doxygen kio)
-optdepends=('python-nautilus: integration with Nautilus' 'nemo-python: 
integration with Nemo' 'python2-caja: integration with Caja')
+optdepends=('python-nautilus: integration with Nautilus' 'nemo-python: 
integration with Nemo' 'python-caja: integration with Caja')
 backup=('etc/ownCloud/sync-exclude.lst')
 
source=(https://download.owncloud.com/desktop/stable/owncloudclient-$pkgver.tar.xz{,.asc})
 sha256sums=('615439c6a224e263cee0d554b8b5f98b57c331dbc18df7ae5d99197480cf563f'


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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:06:26
  Author: cesura
Revision: 520792

archrelease: copy trunk to community-x86_64

Added:
  python-caja/repos/community-x86_64/PKGBUILD
(from rev 520791, python-caja/trunk/PKGBUILD)
Deleted:
  python-caja/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 19:05:05 UTC (rev 520791)
+++ PKGBUILD2019-10-27 19:06:26 UTC (rev 520792)
@@ -1,36 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=python-caja
-pkgver=1.22.1
-pkgrel=1
-pkgdesc="Python binding for Caja, to allow Caja property page and menu item 
extensions to be written in Python"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-depends=('caja' 'python-gobject')
-makedepends=('intltool')
-conflicts=('python2-caja')
-replaces=('python2-caja')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/python-caja-${pkgver}.tar.xz;)
-sha256sums=('13ef4920047033e88dc1906a98c215e3b365159259cb8f04dcd92aa388de131e')
-
-prepare() {
-   cd "python-caja-${pkgver}"
-}
-
-build() {
-   cd "python-caja-${pkgver}"
-   PYTHON=python3 ./configure \
-   --prefix=/usr
-
-   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-   cd "python-caja-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: python-caja/repos/community-x86_64/PKGBUILD (from rev 520791, 
python-caja/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 19:06:26 UTC (rev 520792)
@@ -0,0 +1,36 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=python-caja
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="Python binding for Caja, to allow Caja property page and menu item 
extensions to be written in Python"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('caja' 'python-gobject')
+makedepends=('intltool')
+conflicts=('python2-caja')
+replaces=('python2-caja')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/python-caja-${pkgver}.tar.xz;)
+sha256sums=('13ef4920047033e88dc1906a98c215e3b365159259cb8f04dcd92aa388de131e')
+
+prepare() {
+   cd "python-caja-${pkgver}"
+}
+
+build() {
+   cd "python-caja-${pkgver}"
+   PYTHON=python3 ./configure \
+   --prefix=/usr
+
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+   cd "python-caja-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:05:05
  Author: cesura
Revision: 520791

archrelease: copy trunk to community-x86_64

Added:
  python-caja/repos/community-x86_64/
  python-caja/repos/community-x86_64/PKGBUILD
(from rev 520790, python-caja/trunk/PKGBUILD)

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

Copied: python-caja/repos/community-x86_64/PKGBUILD (from rev 520790, 
python-caja/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 19:05:05 UTC (rev 520791)
@@ -0,0 +1,36 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=python-caja
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="Python binding for Caja, to allow Caja property page and menu item 
extensions to be written in Python"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('caja' 'python-gobject')
+makedepends=('intltool')
+conflicts=('python2-caja')
+replaces=('python2-caja')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/python-caja-${pkgver}.tar.xz;)
+sha256sums=('13ef4920047033e88dc1906a98c215e3b365159259cb8f04dcd92aa388de131e')
+
+prepare() {
+   cd "python-caja-${pkgver}"
+}
+
+build() {
+   cd "python-caja-${pkgver}"
+   PYTHON=python3 ./configure \
+   --prefix=/usr
+
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+   cd "python-caja-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in (4 files)

2019-10-27 Thread Brad Fanella via arch-commits
Date: Sunday, October 27, 2019 @ 19:02:45
  Author: cesura
Revision: 520790

Added:
  python-caja/
  python-caja/repos/
  python-caja/trunk/
  python-caja/trunk/PKGBUILD

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

Added: python-caja/trunk/PKGBUILD
===
--- python-caja/trunk/PKGBUILD  (rev 0)
+++ python-caja/trunk/PKGBUILD  2019-10-27 19:02:45 UTC (rev 520790)
@@ -0,0 +1,36 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=python-caja
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="Python binding for Caja, to allow Caja property page and menu item 
extensions to be written in Python"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('caja' 'python-gobject')
+makedepends=('intltool')
+conflicts=('python2-caja')
+replaces=('python2-caja')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/python-caja-${pkgver}.tar.xz;)
+sha256sums=('13ef4920047033e88dc1906a98c215e3b365159259cb8f04dcd92aa388de131e')
+
+prepare() {
+   cd "python-caja-${pkgver}"
+}
+
+build() {
+   cd "python-caja-${pkgver}"
+   PYTHON=python3 ./configure \
+   --prefix=/usr
+
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+   cd "python-caja-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in unbound/repos (9 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:57:03
  Author: lfleischer
Revision: 520788

db-move: moved unbound from [community-testing] to [community] (x86_64)

Added:
  unbound/repos/community-x86_64/PKGBUILD
(from rev 520787, unbound/repos/community-testing-x86_64/PKGBUILD)
  unbound/repos/community-x86_64/hook
(from rev 520787, unbound/repos/community-testing-x86_64/hook)
  unbound/repos/community-x86_64/sysusers.d
(from rev 520787, unbound/repos/community-testing-x86_64/sysusers.d)
  unbound/repos/community-x86_64/tmpfiles.d
(from rev 520787, unbound/repos/community-testing-x86_64/tmpfiles.d)
Deleted:
  unbound/repos/community-testing-x86_64/
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/hook
  unbound/repos/community-x86_64/sysusers.d
  unbound/repos/community-x86_64/tmpfiles.d

-+
 /PKGBUILD   |   81 ++
 /hook   |   10 +
 /sysusers.d |1 
 /tmpfiles.d |1 
 community-x86_64/PKGBUILD   |   81 --
 community-x86_64/hook   |   10 -
 community-x86_64/sysusers.d |1 
 community-x86_64/tmpfiles.d |1 
 8 files changed, 93 insertions(+), 93 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:56:54 UTC (rev 520787)
+++ community-x86_64/PKGBUILD   2019-10-27 18:57:03 UTC (rev 520788)
@@ -1,81 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.9.4
-pkgrel=3
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'ldns' 
'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-
'https://github.com/NLnetLabs/unbound/commit/ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch'
-
'https://github.com/NLnetLabs/unbound/commit/ae2d5276d27f16044382ce49eb2e2459e073e619.patch'
-
'https://github.com/NLnetLabs/unbound/commit/acdd4058d27ede378d0ab720df8a61d7a50189b1.patch'
-
'https://github.com/NLnetLabs/unbound/commit/6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch'
-
'https://github.com/NLnetLabs/unbound/commit/11f22074a9b7ed76316373146f528d1b792c4527.patch'
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('3d3e25fb224025f0e732c7970e5676f53fd1764c16d6a01be073a13e42954bb0'
-'SKIP'
-'e44b1e87940f5a6c08c74cfd2c9b8556d211070d6170ea1cd4b5efc650516d33'
-'02616ae85f5f8ce3c3b0af21c67527076e3134ba2f387de343749b817227746d'
-'c52e982da46efedaf8e7c2bed2225a21138a24d2ce89b2de1ceda01e9555b617'
-'b641d402ab3dd4cf5e4ec16fa1aa8b3e735c6df8692cde6685aab928d168ac2c'
-'24592ab1635607f3cbd89b3eb14fee0b9b39e48ff949de21978ebe59d8689eb1'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'2746aede36b1f57efdcc370b7643ce31ff9e6acb9a1f62705987b07eaed866a3')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch
-   patch -p1 -i ../ae2d5276d27f16044382ce49eb2e2459e073e619.patch
-   patch -p1 -i ../acdd4058d27ede378d0ab720df8a61d7a50189b1.patch
-   patch -p1 -i ../6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch
-   patch -p1 -i ../11f22074a9b7ed76316373146f528d1b792c4527.patch
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 

[arch-commits] Commit in bitcoin/repos (9 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:57:29
  Author: lfleischer
Revision: 520789

db-move: moved bitcoin from [community-staging] to [community] (x86_64)

Added:
  bitcoin/repos/community-x86_64/Changelog
(from rev 520788, bitcoin/repos/community-staging-x86_64/Changelog)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 520788, bitcoin/repos/community-staging-x86_64/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin.sysusers
(from rev 520788, bitcoin/repos/community-staging-x86_64/bitcoin.sysusers)
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles
(from rev 520788, bitcoin/repos/community-staging-x86_64/bitcoin.tmpfiles)
Deleted:
  bitcoin/repos/community-staging-x86_64/
  bitcoin/repos/community-x86_64/Changelog
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin.sysusers
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles

---+
 /Changelog|1 
 /PKGBUILD |   96 
 /bitcoin.sysusers |1 
 /bitcoin.tmpfiles |2 
 community-x86_64/Changelog|1 
 community-x86_64/PKGBUILD |   96 
 community-x86_64/bitcoin.sysusers |1 
 community-x86_64/bitcoin.tmpfiles |2 
 8 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-x86_64/Changelog
===
--- community-x86_64/Changelog  2019-10-27 18:57:03 UTC (rev 520788)
+++ community-x86_64/Changelog  2019-10-27 18:57:29 UTC (rev 520789)
@@ -1 +0,0 @@
-https://bitcoincore.org/en/releases/0.18.0/

Copied: bitcoin/repos/community-x86_64/Changelog (from rev 520788, 
bitcoin/repos/community-staging-x86_64/Changelog)
===
--- community-x86_64/Changelog  (rev 0)
+++ community-x86_64/Changelog  2019-10-27 18:57:29 UTC (rev 520789)
@@ -0,0 +1 @@
+https://bitcoincore.org/en/releases/0.18.0/

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:57:03 UTC (rev 520788)
+++ community-x86_64/PKGBUILD   2019-10-27 18:57:29 UTC (rev 520789)
@@ -1,96 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Timothy Redaelli 
-# Contributor: shahid 
-
-#_dbver=4.8.30
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.18.1
-pkgrel=2
-arch=('x86_64')
-url="https://www.bitcoin.org/;
-makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')
-license=('MIT')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz;
-"bitcoin.sysusers"
-"bitcoin.tmpfiles")
-sha256sums=('db3c76ac913adfd67e3c7ff243b443c9706f81dd382d1212875fefc2de1ea5ff'
-'6f70b0d3d5e4a3f78b15d8f49515cd33cbf0c9d2ac22f94f0d3fabb3f620e458'
-'b769c977b193680f2f549997fd8e07f6aa507071dfd519d59255ab4c687ebfcd')
-validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
-changelog=Changelog
-
-prepare() {
-  cd "$pkgbase-$pkgver"
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr --with-gui=qt5 --with-incompatible-bdb 
#LDFLAGS="-L$srcdir/db4/lib/ $LDFLAGS" CPPFLAGS="-I$srcdir/db4/include/ 
$CPPFLAGS"
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - Qt"
-  depends=(boost-libs libevent qt5-base miniupnpc libminiupnpc.so qrencode 
protobuf zeromq)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/qt/bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt
-  install -Dm644 doc/man/bitcoin-qt.1 \
-"$pkgdir"/usr/share/man/man1/bitcoin-qt.1
-  install -Dm644 share/pixmaps/bitcoin128.png \
-"$pkgdir"/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-daemon() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon"
-  depends=(boost-libs libevent miniupnpc libminiupnpc.so zeromq)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind
-  install -Dm644 contrib/bitcoind.bash-completion \
-"$pkgdir"/usr/share/bash-completion/completions/bitcoind
-  install -Dm644 doc/man/bitcoind.1 \
-"$pkgdir"/usr/share/man/man1/bitcoind.1
-  install -Dm644 contrib/init/bitcoind.service \
-"$pkgdir/usr/lib/systemd/system/bitcoind.service"
-  install -Dm644 "$srcdir/bitcoin.sysusers" \
-"$pkgdir/usr/lib/sysusers.d/bitcoin.conf"
-  install -Dm644 "$srcdir/bitcoin.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/bitcoin.conf"
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-cli() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - RPC 
client"
-  depends=(boost-libs libevent)
-
-  cd 

[arch-commits] Commit in umurmur/repos (9 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:56:54
  Author: lfleischer
Revision: 520787

db-move: moved umurmur from [community-testing] to [community] (x86_64)

Added:
  umurmur/repos/community-x86_64/PKGBUILD
(from rev 520786, umurmur/repos/community-testing-x86_64/PKGBUILD)
  umurmur/repos/community-x86_64/umurmur.service
(from rev 520786, umurmur/repos/community-testing-x86_64/umurmur.service)
  umurmur/repos/community-x86_64/umurmur.sysusers
(from rev 520786, umurmur/repos/community-testing-x86_64/umurmur.sysusers)
  umurmur/repos/community-x86_64/umurmur.tmpfiles
(from rev 520786, umurmur/repos/community-testing-x86_64/umurmur.tmpfiles)
Deleted:
  umurmur/repos/community-testing-x86_64/
  umurmur/repos/community-x86_64/PKGBUILD
  umurmur/repos/community-x86_64/umurmur.service
  umurmur/repos/community-x86_64/umurmur.sysusers
  umurmur/repos/community-x86_64/umurmur.tmpfiles

---+
 /PKGBUILD |   55 
 /umurmur.service  |   26 +
 /umurmur.sysusers |1 
 /umurmur.tmpfiles |1 
 community-x86_64/PKGBUILD |   55 
 community-x86_64/umurmur.service  |   26 -
 community-x86_64/umurmur.sysusers |1 
 community-x86_64/umurmur.tmpfiles |1 
 8 files changed, 83 insertions(+), 83 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:56:42 UTC (rev 520786)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:54 UTC (rev 520787)
@@ -1,55 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Runge 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Robert Knauer 
-# Contributor: xav 
-
-pkgname=umurmur
-pkgver=0.2.17
-pkgrel=14
-pkgdesc='Minimalistic Mumble server'
-url='https://github.com/umurmur/umurmur'
-arch=('x86_64')
-license=('BSD')
-depends=('mbedtls' 'libconfig' 'protobuf-c')
-makedepends=('cmake')
-backup=('etc/umurmur/umurmur.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz
-umurmur.sysusers
-umurmur.service
-umurmur.tmpfiles)
-sha256sums=('e77b7b6616768f4a1c07442afe49a772692f667b00c23cc85909d4dd0ce206d2'
-'0fc68df464ee51a431d934d068aed0be5f8c5e64d0bd29848f97532d39f8c310'
-'b8b22b6299777fbd1d12e3105280c8585ceca9b6caf7b8d3ab0642c5a56b031f'
-'287068f47fc035a70e2ae0c8434e8013f176d185bf7688216c36976982fe4491')
-sha512sums=('a496a51fd7815ad117f5aee17bb78cbd319c584ad60ab8aebbfd8ddf7b1760f443f2337bc74be1e0d5af17d3c3df2ae6c9060eca576cf1e6ed4c6cb0825e9c15'
-
'd84950a32ab8a2e84f5fe333cd2894e52aba624531644d106c982aa4ff04271d318543398fa7f48c719f26338679fa971bb5332472e9040ac9aa8a9b4a1f2832'
-
'746a3e2d9e8c5154bdfb2cef6cbe39cccf0356bc1dde0434b92ec1a6b224a5bfa51fd15483c3ac5a75292eae7a6d4b0431ecb2a586bdd9fcc3fe9b2a7bff64a1'
-
'825b50448231b5d791e87d7c4c471fdfe2e9a1560dad6fc90c2f4f8d0c5ed682291bf20b147a6a8c7ae361aeb8b1a11c24c6d41ffc17f06fb0f5ccd8208a899a')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  mkdir build
-}
-
-build() {
-  cd ${pkgname}-${pkgver}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSSL=mbedtls
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C build DESTDIR="${pkgdir}" install
-  install -vDm 640 "${pkgdir}/usr/etc/umurmur.conf" -t "${pkgdir}/etc/umurmur"
-  rm -r "${pkgdir}/usr/etc"
-  install -vDm 644 "${srcdir}/umurmur.service" -t 
"${pkgdir}/usr/lib/systemd/system"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -vDm 644 "${srcdir}/umurmur.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/umurmur.conf"
-  install -vDm 644 "${srcdir}/umurmur.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/umurmur.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: umurmur/repos/community-x86_64/PKGBUILD (from rev 520786, 
umurmur/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:54 UTC (rev 520787)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Robert Knauer 
+# Contributor: xav 
+
+pkgname=umurmur
+pkgver=0.2.17
+pkgrel=16
+pkgdesc='Minimalistic Mumble server'
+url="https://github.com/umurmur/umurmur;
+arch=('x86_64')
+license=('BSD')
+depends=('mbedtls' 'libconfig' 'protobuf-c')
+makedepends=('cmake')
+backup=('etc/umurmur/umurmur.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz
+umurmur.sysusers
+umurmur.service
+umurmur.tmpfiles)
+sha256sums=('e77b7b6616768f4a1c07442afe49a772692f667b00c23cc85909d4dd0ce206d2'
+

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:56:31
  Author: lfleischer
Revision: 520785

db-move: moved strawberry from [community-testing] to [community] (x86_64)

Added:
  strawberry/repos/community-x86_64/PKGBUILD
(from rev 520784, strawberry/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  strawberry/repos/community-testing-x86_64/
  strawberry/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   34 ++
 community-x86_64/PKGBUILD |   34 --
 2 files changed, 34 insertions(+), 34 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:56:17 UTC (rev 520784)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:31 UTC (rev 520785)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
-
-pkgname=strawberry
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="A music player aimed at audio enthusiasts and music collectors"
-arch=(x86_64)
-url="https://www.strawbs.org/;
-license=(GPL3)
-depends=(chromaprint protobuf gst-plugins-base gst-plugins-good qt5-x11extras 
udisks2 libcdio libgpod libmtp fftw desktop-file-utils)
-makedepends=(cmake boost qt5-tools)
-optdepends=('gst-libav: additional codecs'
-'gst-plugins-bad: additional codecs'
-'gst-plugins-ugly: additional codecs')
-source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('e8c12b6f286e9f2b3ae77ffe964371da478056ed60631e1394b1491d63fb528e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_SYSTEM_TAGLIB=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: strawberry/repos/community-x86_64/PKGBUILD (from rev 520784, 
strawberry/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:31 UTC (rev 520785)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+
+pkgname=strawberry
+pkgver=0.6.5
+pkgrel=3
+pkgdesc="A music player aimed at audio enthusiasts and music collectors"
+arch=(x86_64)
+url="https://www.strawbs.org/;
+license=(GPL3)
+depends=(chromaprint protobuf gst-plugins-base gst-plugins-good qt5-x11extras 
udisks2 libcdio libgpod libmtp fftw desktop-file-utils)
+makedepends=(cmake boost qt5-tools)
+optdepends=('gst-libav: additional codecs'
+'gst-plugins-bad: additional codecs'
+'gst-plugins-ugly: additional codecs')
+source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('e8c12b6f286e9f2b3ae77ffe964371da478056ed60631e1394b1491d63fb528e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_SYSTEM_TAGLIB=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:56:07
  Author: lfleischer
Revision: 520783

db-move: moved powerdns from [community-testing] to [community] (x86_64)

Added:
  powerdns/repos/community-x86_64/PKGBUILD
(from rev 520782, powerdns/repos/community-testing-x86_64/PKGBUILD)
  powerdns/repos/community-x86_64/sysusers.conf
(from rev 520782, powerdns/repos/community-testing-x86_64/sysusers.conf)
Deleted:
  powerdns/repos/community-testing-x86_64/
  powerdns/repos/community-x86_64/PKGBUILD
  powerdns/repos/community-x86_64/sysusers.conf

+
 /PKGBUILD  |   78 +++
 /sysusers.conf |1 
 community-x86_64/PKGBUILD  |   78 ---
 community-x86_64/sysusers.conf |1 
 4 files changed, 79 insertions(+), 79 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:55:55 UTC (rev 520782)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:07 UTC (rev 520783)
@@ -1,78 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Kevin Mihelich 
-# Contributor: Remi Gacogne 
-# Contributor: Pieter Lexis 
-
-pkgname=powerdns
-pkgver=4.2.0
-pkgrel=5
-pkgdesc='Authoritative DNS server'
-url='https://www.powerdns.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('boost-libs' 'botan>=2.7.0' 'libsodium' 'luajit' 'openssl' 'protobuf'
- 'sqlite' 'systemd' 'lua' 'curl' 'libcurl.so')
-makedepends=('boost' 'geoip' 'libldap' 'mariadb-libs' 'opendbx'
- 'postgresql-libs' 'tinycdb' 'unixodbc' 'yaml-cpp')
-optdepends=('geoip: GeoIP backend'
-'mariadb-libs: MariaDB/MySQL and MyDNS backend'
-'libldap: LDAP backend'
-'opendbx: OpenDBX backend'
-'postgresql-libs: PostgreSQL backend'
-'unixodbc: ODBC backend'
-'tinycdb: TinyDNS backend'
-'yaml-cpp: GeoIP backend')
-provides=('pdns')
-conflicts=('pdns')
-backup=('etc/powerdns/pdns.conf')
-source=(https://downloads.powerdns.com/releases/pdns-${pkgver}.tar.bz2{,.asc}
-sysusers.conf)
-sha512sums=('ee67c132458e539d522aaa5835237dc64d92ad546f51e0ef86366964f7105631f2bd1e6c5d19d85466d95e1982f6410aeb14932c265fddfd301e403e76542624'
-'SKIP'
-
'522bde8b76367db6edd461fca8f81d50304a4d764addf33774b3e2c5c93a9e72d93993f54ddd4ee887ceeccf70280aceea3ffaf6370d26310e0a7ebbbf61f26a')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'   # Winkels, Erik 

-  '16E12866B7738C73976A57436FFC33439B0D04DF'   # Peter van Dijk 

-  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3' ) # Pieter Lexis 

-
-prepare() {
-  cd pdns-${pkgver}
-  # Patch the Makefile.in's so /powerdns is used instead of /pdns (for e.g. 
$LIBDIR)
-  # This allows for running pdns_server without setting `module-dir` in the 
config.
-  find . -name 'Makefile.in' -exec sed -i 's,pkglibdir = 
\$(libdir)/@PACKAGE@,pkglibdir = $(libdir)/powerdns,' {} \;
-}
-
-build() {
-  cd pdns-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/powerdns \
---sbindir=/usr/bin \
---with-modules='' \
---with-dynmodules="bind geoip gmysql godbc gpgsql gsqlite3 ldap lua mydns 
opendbx pipe random remote tinydns" \
---docdir=/usr/share/doc/powerdns \
---enable-libsodium \
---enable-botan \
---enable-tools \
---disable-dependency-tracking \
---disable-silent-rules \
---enable-reproducible \
---enable-unit-tests \
---enable-systemd
-  make
-}
-
-check() {
-  make -C pdns-${pkgver} check
-}
-
-package() {
-  make -C pdns-${pkgver} DESTDIR="${pkgdir}" install
-  install -D -m644 sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-  mv "${pkgdir}/etc/powerdns/pdns.conf"{-dist,}
-  # Ensure we run as the powerdns user
-  sed -i "s,^# \(set.id=\),\1${pkgname}," "${pkgdir}/etc/powerdns/pdns.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns/repos/community-x86_64/PKGBUILD (from rev 520782, 
powerdns/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:07 UTC (rev 520783)
@@ -0,0 +1,78 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Kevin Mihelich 
+# Contributor: Remi Gacogne 
+# Contributor: Pieter Lexis 
+
+pkgname=powerdns
+pkgver=4.2.0
+pkgrel=6
+pkgdesc='Authoritative DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('boost-libs' 'botan>=2.7.0' 'libsodium' 'luajit' 'openssl' 'protobuf'
+ 'sqlite' 'systemd' 'lua' 'curl' 'libcurl.so')
+makedepends=('boost' 'geoip' 'libldap' 'mariadb-libs' 'opendbx'
+ 'postgresql-libs' 'tinycdb' 'unixodbc' 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:55:55
  Author: lfleischer
Revision: 520782

db-move: moved postgis from [community-testing] to [community] (x86_64)

Added:
  postgis/repos/community-x86_64/PKGBUILD
(from rev 520781, postgis/repos/community-testing-x86_64/PKGBUILD)
  postgis/repos/community-x86_64/postgis.changelog
(from rev 520781, postgis/repos/community-testing-x86_64/postgis.changelog)
Deleted:
  postgis/repos/community-testing-x86_64/
  postgis/repos/community-x86_64/PKGBUILD
  postgis/repos/community-x86_64/postgis.changelog

+
 /PKGBUILD  |   30 
 /postgis.changelog |  131 +++
 community-x86_64/PKGBUILD  |   30 
 community-x86_64/postgis.changelog |  128 --
 4 files changed, 161 insertions(+), 158 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:55:40 UTC (rev 520781)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:55 UTC (rev 520782)
@@ -1,30 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-# Contributor: William Rea 
-
-pkgname=postgis
-pkgver=2.5.3
-pkgrel=1
-pkgdesc="Adds support for geographic objects to PostgreSQL"
-arch=('x86_64')
-url="https://postgis.net/;
-license=('GPL')
-depends=('postgresql' 'gdal' 'json-c' 'proj' 'protobuf-c')
-makedepends=('clang' 'llvm')
-changelog=$pkgname.changelog
-# options=('!makeflags')
-source=(https://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('72e8269d40f981e22fb2b78d3ff292338e69a4f5166e481a77b015e1d34e559a')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: postgis/repos/community-x86_64/PKGBUILD (from rev 520781, 
postgis/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:55 UTC (rev 520782)
@@ -0,0 +1,30 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=postgis
+pkgver=2.5.3
+pkgrel=2
+pkgdesc="Adds support for geographic objects to PostgreSQL"
+arch=('x86_64')
+url="https://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c' 'proj' 'protobuf-c')
+makedepends=('clang' 'llvm')
+changelog=$pkgname.changelog
+# options=('!makeflags')
+source=(https://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('72e8269d40f981e22fb2b78d3ff292338e69a4f5166e481a77b015e1d34e559a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/postgis.changelog
===
--- community-x86_64/postgis.changelog  2019-10-27 18:55:40 UTC (rev 520781)
+++ community-x86_64/postgis.changelog  2019-10-27 18:55:55 UTC (rev 520782)
@@ -1,128 +0,0 @@
-2019-09-18 Jaroslav Lichtblau 
-* postgis-2.5.3-1
-
-2019-06-16 Jaroslav Lichtblau 
-* postgis-2.5.2-1
-
-2019-03-04 Jaroslav Lichtblau 
-* postgis-2.5.1-2 - protobuf 3.7.0 rebuild
-
-2018-11-21 Jaroslav Lichtblau 
-* postgis-2.5.1-1
-
-2018-11-17 Jaroslav Lichtblau 
-* postgis-2.5.0-2 - postgresql rebuild
-
-2018-09-30 Jaroslav Lichtblau 
-* postgis-2.5.0-1
-
-2018-09-02 Jaroslav Lichtblau 
-* postgis-2.4.4-5 protobuf 3.6.1 rebuild
-
-2018-07-29 Jaroslav Lichtblau 
-* postgis-2.4.4-4 protobuf 3.6.0 rebuild
-
-2018-05-16 Jaroslav Lichtblau 
-* postgis-2.4.4-2 proj soname rebuild
-
-2018-05-12 Jaroslav Lichtblau 
-* postgis-2.4.4-1
-
-2018-01-16 Jaroslav Lichtblau 
-* postgis-2.4.3-1
-
-2017-11-16 Jaroslav Lichtblau 
-* postgis-2.4.2-1
-
-2017-11-12 Jaroslav Lichtblau 
-* postgis-2.4.1-2 postgresql 10.1 rebuild, FS#56296 + FS#56266 fix
-
-2017-10-21 Jaroslav Lichtblau 
-* postgis-2.4.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-* postgis-2.4.0-1
-
-2017-07-03 Jaroslav Lichtblau 
-* postgis-2.3.3-1
-
-2017-03-02 Jaroslav Lichtblau 
-* postgis-2.3.2-1
-
-2016-12-12 Jaroslav Lichtblau 
-* postgis-2.3.1-1
-
-2016-11-21 Jaroslav Lichtblau 
-* postgis-2.3.0-2 postgresql 9.6.1 rebuild
-
-2016-09-30 Jaroslav Lichtblau 
-* postgis-2.3.0-1
-
-2016-09-14 Jaroslav Lichtblau 
-* postgis-2.2.2-2 proj 4.9.3 rebuild
-
-2016-05-16 Jaroslav Lichtblau 
-* postgis-2.2.2-1
-
-2016-01-22 Jaroslav Lichtblau 
-* postgis-2.2.1-2 postgresql 9.5 rebuild
-
-2016-01-09 Jaroslav Lichtblau 
-* postgis-2.2.1-1
-
-2015-10-22 Jaroslav Lichtblau 
-* postgis-2.2.0-1
-
-2015-09-12 Jaroslav 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:56:17
  Author: lfleischer
Revision: 520784

db-move: moved powerdns-recursor from [community-testing] to [community] 
(x86_64)

Added:
  powerdns-recursor/repos/community-x86_64/PKGBUILD
(from rev 520783, powerdns-recursor/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  powerdns-recursor/repos/community-testing-x86_64/
  powerdns-recursor/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 47 insertions(+), 47 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:56:07 UTC (rev 520783)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:17 UTC (rev 520784)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.2.0
-pkgrel=2
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'lua' 'openssl' 
'protobuf'
- 'libboost_context.so')
-makedepends=('boost' 'inetutils' 'pandoc' 'ragel' 'systemd')
-provides=('pdns-recursor')
-conflicts=('pdns-recursor')
-backup=('etc/powerdns/recursor.conf')
-source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
-sha512sums=('e4be63c1be70f0dfd7aab71f1184d5cc1d15e60e775451a96e8472db6fb3825762ebd6f51b593b167389868bbfde0538612b14a04c03f3f60a7e49f7882e78bf'
-'SKIP')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

-  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

-  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

-
-build() {
-  cd pdns-recursor-${pkgver}
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/powerdns \
---disable-silent-rules \
---enable-reproducible \
---enable-systemd \
---enable-protobuf \
---enable-libsodium
-  make
-}
-
-package() {
-  cd pdns-recursor-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-x86_64/PKGBUILD (from rev 520783, 
powerdns-recursor/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:17 UTC (rev 520784)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.2.0
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'lua' 'openssl' 
'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'pandoc' 'ragel' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('e4be63c1be70f0dfd7aab71f1184d5cc1d15e60e775451a96e8472db6fb3825762ebd6f51b593b167389868bbfde0538612b14a04c03f3f60a7e49f7882e78bf'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

+  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd \
+--enable-protobuf \
+--enable-libsodium
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:56:42
  Author: lfleischer
Revision: 520786

db-move: moved sysdig from [community-testing] to [community] (x86_64)

Added:
  sysdig/repos/community-x86_64/PKGBUILD
(from rev 520785, sysdig/repos/community-testing-x86_64/PKGBUILD)
  sysdig/repos/community-x86_64/bashcomp-location.patch
(from rev 520785, 
sysdig/repos/community-testing-x86_64/bashcomp-location.patch)
  sysdig/repos/community-x86_64/glibc.patch
(from rev 520785, sysdig/repos/community-testing-x86_64/glibc.patch)
Deleted:
  sysdig/repos/community-testing-x86_64/
  sysdig/repos/community-x86_64/PKGBUILD
  sysdig/repos/community-x86_64/bashcomp-location.patch
  sysdig/repos/community-x86_64/glibc.patch

--+
 /PKGBUILD|   54 +
 /bashcomp-location.patch |   13 ++
 /glibc.patch |   12 ++
 community-x86_64/PKGBUILD|   54 -
 community-x86_64/bashcomp-location.patch |   13 --
 community-x86_64/glibc.patch |   12 --
 6 files changed, 79 insertions(+), 79 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:56:31 UTC (rev 520785)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:42 UTC (rev 520786)
@@ -1,54 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contribuitor: Alfredo Palhares 
-# Contribuitor: Christian Babeux 
-
-pkgname=sysdig
-pkgver=0.26.4
-pkgrel=2
-pkgdesc="Open source system-level exploration and troubleshooting tool"
-arch=('x86_64')
-url="https://www.sysdig.com/;
-license=('GPL2' 'Apache' 'MIT')
-depends=('dkms' 'jsoncpp' 'libjsoncpp.so' 'luajit' 'curl' 'libcurl.so' 'jq' 
'libb64' 'intel-tbb' 'grpc')
-makedepends=('cmake' 'pandoc')
-source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-"bashcomp-location.patch"
-"glibc.patch")
-sha256sums=('7c15ee25abf6cca850eaf6f4e42e25a1d9ad2b775ae794028f94afbd1ce9d271'
-'aaee8a0ff414a24c5d5a479229324be1667bc5eb70702838f5d617fd986f947b'
-'9d9ee715500cb5c3709cf6a77e95421edaaae5f15dbb1c7c8ad2147cc9637939')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 -i "$srcdir"/bashcomp-location.patch
-  patch -p1 -i "$srcdir"/glibc.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake .. \
--DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS} 
-Wno-deprecated-declarations" \
--DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS} -Wno-deprecated-declarations" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSDIG_VERSION=$pkgver \
--DUSE_BUNDLED_DEPS=OFF \
--DBUILD_DRIVER=OFF \
--DBUILD_LIBSCAP_EXAMPLES=OFF
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
-  install -m644 NOTICES COPYING "$pkgdir"/usr/share/licenses/$pkgname
-
-  cd build
-  make install DESTDIR="$pkgdir"
-}

Copied: sysdig/repos/community-x86_64/PKGBUILD (from rev 520785, 
sysdig/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:56:42 UTC (rev 520786)
@@ -0,0 +1,54 @@
+# Maintainer: Massimiliano Torromeo 
+# Contribuitor: Alfredo Palhares 
+# Contribuitor: Christian Babeux 
+
+pkgname=sysdig
+pkgver=0.26.4
+pkgrel=3
+pkgdesc="Open source system-level exploration and troubleshooting tool"
+arch=('x86_64')
+url="https://www.sysdig.com/;
+license=('GPL2' 'Apache' 'MIT')
+depends=('dkms' 'jsoncpp' 'libjsoncpp.so' 'luajit' 'curl' 'libcurl.so' 'jq' 
'libb64' 'intel-tbb' 'grpc')
+makedepends=('cmake' 'pandoc')
+source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+"bashcomp-location.patch"
+"glibc.patch")
+sha256sums=('7c15ee25abf6cca850eaf6f4e42e25a1d9ad2b775ae794028f94afbd1ce9d271'
+'aaee8a0ff414a24c5d5a479229324be1667bc5eb70702838f5d617fd986f947b'
+'9d9ee715500cb5c3709cf6a77e95421edaaae5f15dbb1c7c8ad2147cc9637939')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 -i "$srcdir"/bashcomp-location.patch
+  patch -p1 -i "$srcdir"/glibc.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake .. \
+-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS} 
-Wno-deprecated-declarations" \
+-DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS} -Wno-deprecated-declarations" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSDIG_VERSION=$pkgver \
+-DUSE_BUNDLED_DEPS=OFF \
+-DBUILD_DRIVER=OFF \
+

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:55:40
  Author: lfleischer
Revision: 520781

db-move: moved paraview from [community-testing] to [community] (x86_64)

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 520780, paraview/repos/community-testing-x86_64/PKGBUILD)
  paraview/repos/community-x86_64/paraview-system-pugixml.patch
(from rev 520780, 
paraview/repos/community-testing-x86_64/paraview-system-pugixml.patch)
Deleted:
  paraview/repos/community-testing-x86_64/
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/proj6.patch

+
 /PKGBUILD  |   98 
 community-x86_64/PKGBUILD  |  107 --
 community-x86_64/paraview-system-pugixml.patch |   19 +++
 community-x86_64/proj6.patch   |  110 ---
 4 files changed, 117 insertions(+), 217 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:55:30 UTC (rev 520780)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:40 UTC (rev 520781)
@@ -1,107 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.6.2
-pkgrel=3
-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 intel-tbb openmpi
- ffmpeg ospray python-matplotlib python-numpy
- cgns protobuf python-pygments
- double-conversion expat freetype2 gdal glew hdf5 
- libjpeg jsoncpp libjsoncpp.so libxml2 lz4 xz python-mpi4py netcdf
- libogg libpng pdal proj pugixml libtheora libtiff zlib)
-#gl2ps
-#netcdf-cxx libharu
-#sqlite apparently not used in this VTK configuration
-makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl)
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz"
-proj6.patch)
-sha256sums=('1f3710b77c58a46891808dbe23dc59a1259d9c6b7bb123aaaeaa6ddf2be882ea'
-'2271cf8b57a4251d04a5e6f48b05939f60131b5b9a7947c21f013af2cbe55e28')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}/VTK
-patch -p1 -i ../../proj6.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# GL2PS has non-upstreamed patches?
-# KISSFFT is not packaged
-# UTF8 (utfcpp) is not packaged (but present in AUR)
-# VERDICT is not packaged
-# ZFP is not packaged
-# NETCDFCPP blocked by https://github.com/Unidata/netcdf-cxx4/issues/43
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
-# SQLITE apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in DOUBLECONVERSION EIGEN EXPAT FREETYPE GLEW HDF5 JPEG JSONCPP 
LIBPROJ LIBXML2 LZ4 LZMA MPI4PY NETCDF OGG PEGTL PNG PUGIXML THEORA TIFF ZLIB
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PROTOBUF PYGMENTS
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_GDAL=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PDAL=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
--DVTKm_ENABLE_MPI=ON \
--DVTKm_ENABLE_RENDERING=ON \
--DVTKm_USE_DOUBLE_PRECISION=ON \
--DModule_vtkGeovisCore=ON \
--DModule_vtkGeovisGDAL=ON \
--DModule_vtkIOGDAL=ON \
--DModule_vtkIOPDAL=ON \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-
-# Install license
-install -Dm644 "${srcdir}"/ParaView-v${pkgver}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/paraview/LICENSE
-
-# Remove IceT man pages to avoid conflicts
-rm -- "${pkgdir}"/usr/share/man/man3/icet*.3
-rmdir 

[arch-commits] Commit in murmur/repos (11 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:55:08
  Author: lfleischer
Revision: 520778

db-move: moved murmur from [community-testing] to [community] (x86_64)

Added:
  murmur/repos/community-x86_64/PKGBUILD
(from rev 520777, murmur/repos/community-testing-x86_64/PKGBUILD)
  murmur/repos/community-x86_64/murmur.dbus.conf
(from rev 520777, murmur/repos/community-testing-x86_64/murmur.dbus.conf)
  murmur/repos/community-x86_64/murmur.install
(from rev 520777, murmur/repos/community-testing-x86_64/murmur.install)
  murmur/repos/community-x86_64/murmur.service
(from rev 520777, murmur/repos/community-testing-x86_64/murmur.service)
  murmur/repos/community-x86_64/murmur.sysusers
(from rev 520777, murmur/repos/community-testing-x86_64/murmur.sysusers)
Deleted:
  murmur/repos/community-testing-x86_64/
  murmur/repos/community-x86_64/PKGBUILD
  murmur/repos/community-x86_64/murmur.dbus.conf
  murmur/repos/community-x86_64/murmur.install
  murmur/repos/community-x86_64/murmur.service
  murmur/repos/community-x86_64/murmur.sysusers

---+
 /PKGBUILD |   59 
 /murmur.dbus.conf |   22 +
 /murmur.install   |6 +++
 /murmur.service   |   12 +++
 /murmur.sysusers  |1 
 community-x86_64/PKGBUILD |   59 
 community-x86_64/murmur.dbus.conf |   22 -
 community-x86_64/murmur.install   |6 ---
 community-x86_64/murmur.service   |   12 ---
 community-x86_64/murmur.sysusers  |1 
 10 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:54:47 UTC (rev 520777)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:08 UTC (rev 520778)
@@ -1,59 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Otto Allmendinger 
-# Contributor: Malte Rabenseifner 
-
-pkgname=murmur
-pkgver=1.3.0
-_pkgver=1.3.0
-__pkgver=1.3.0
-pkgrel=2
-pkgdesc="The voice chat application server for Mumble"
-arch=('x86_64')
-url="http://mumble.sourceforge.net;
-license=('BSD')
-depends=(qt5-base avahi lsb-release protobuf icu zeroc-ice grpc)
-makedepends=(boost python qt5-tools)
-backup=("etc/murmur.ini")
-install="murmur.install"
-source=(https://github.com/mumble-voip/mumble/releases/download/${_pkgver}/mumble-${_pkgver}.tar.gz{,.sig}
-"murmur.dbus.conf"
-"murmur.service"
-"murmur.sysusers")
-sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
-'SKIP'
-
'97c7effdddec324e40195c36ef4927950a5de26d2ee2d268d89df6fb547207bbbe30292773316cae6f57ec9923244f205fb0edc377b798771ba7385e3c11d86a'
-
'1773802b938ae2a80fa21e26cd33d162f00de00e074af9f1481f1c682ef32756ffdd2384a1d1f5a4202df55a982a80067efa78d7ad4e077bf5c7f7ccfc4399e4'
-
'5af28d0c2b2b072cfbd500b5f63549e88a86cf3fc15e4d2df89e787c4d2bafdecbe078a518e0d1b25d82f9873cb06838ec1c9ebed625ffb7e8c80fcd942ebf74')
-validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
-
-build() {
-  cd "${srcdir}"/mumble-$__pkgver
-
-  qmake-qt5 main.pro CONFIG+="no-client grpc"
-  make release
-}
-
-package() {
-  cd "${srcdir}"/mumble-$__pkgver
-
-  sed -e "1i; vi:ft=cfg" \
--e "s|database=|database=/var/db/murmur/murmur.sqlite|" \
--e "s|;logfile=murmur.log|logfile=|" \
--e "s|;uname=|uname=murmur|" \
--i scripts/murmur.ini
-
-  install -dm755 -o 122 -g 122 "${pkgdir}"/var/db/murmur
-  install -Dm755 release/murmurd "${pkgdir}"/usr/bin/murmurd
-  install -Dm644 scripts/murmur.ini "${pkgdir}"/etc/murmur.ini
-  install -Dm644 "${srcdir}"/murmur.dbus.conf 
"${pkgdir}"/usr/share/dbus-1/system.d/murmur.conf
-  install -Dm644 README "${pkgdir}"/usr/share/doc/murmur/README
-  install -Dm644 man/murmurd.1 "${pkgdir}"/usr/share/man/man1/murmurd.1
-  install -Dm644 "${srcdir}"/murmur.service 
"${pkgdir}"/usr/lib/systemd/system/murmur.service
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/murmur.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/$pkgname.conf
-
-  install -Dm644 src/murmur/Murmur.ice ${pkgdir}/usr/share/murmur/Murmur.ice
-  install -Dm644 src/murmur/MurmurRPC.proto 
${pkgdir}/usr/share/murmur/MurmurRPC.proto
-}
-
-# vim: sw=2:ts=2 et:

Copied: murmur/repos/community-x86_64/PKGBUILD (from rev 520777, 
murmur/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:08 UTC (rev 520778)
@@ -0,0 +1,59 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Otto Allmendinger 
+# Contributor: Malte 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:55:20
  Author: lfleischer
Revision: 520779

db-move: moved nageru from [community-testing] to [community] (x86_64)

Added:
  nageru/repos/community-x86_64/PKGBUILD
(from rev 520778, nageru/repos/community-testing-x86_64/PKGBUILD)
  nageru/repos/community-x86_64/luajit-patch.patch
(from rev 520778, nageru/repos/community-testing-x86_64/luajit-patch.patch)
  nageru/repos/community-x86_64/meson-options.patch
(from rev 520778, nageru/repos/community-testing-x86_64/meson-options.patch)
Deleted:
  nageru/repos/community-testing-x86_64/
  nageru/repos/community-x86_64/PKGBUILD
  nageru/repos/community-x86_64/luajit-patch.patch

--+
 /PKGBUILD|   43 
 /luajit-patch.patch  |  113 +
 community-x86_64/PKGBUILD|   40 ---
 community-x86_64/luajit-patch.patch  |  113 -
 community-x86_64/meson-options.patch |   13 +++
 5 files changed, 169 insertions(+), 153 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:55:08 UTC (rev 520778)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:20 UTC (rev 520779)
@@ -1,40 +0,0 @@
-# Maintainer: Morten Linderd 
-
-pkgname=nageru
-pkgver=1.8.6
-pkgrel=1
-pkgdesc="live video mixer, based around the standard M/E workflow."
-arch=(x86_64)
-url="https://nageru.sesse.net/;
-license=('GPL3')
-depends=('libmicrohttpd' 'ffmpeg' 'libx264' 'protobuf' 
- 'movit' 'bmusb' 'qcustomplot' 'pciutils' 'zita-resampler'
- 'sqlite3' 'luajit' 'cmake')
-makedepends=('meson' 'eigen')
-source=("https://nageru.sesse.net/nageru-${pkgver}.tar.gz;
-"luajit-patch.patch")
-sha256sums=('67dcb070a23589f624d7067c4b09fe11faa9b1c756b884c50473545fdf7817b3'
-'480c4de61188684fc8d1727a2e3ec615d33892234e8466db8011589e9277bdf7')
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -Np1 -i "${srcdir}/luajit-patch.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  arch-meson ../build
-  ninja -v -C ../build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  ninja -C ../build test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="$pkgdir" ninja -C ../build install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nageru/repos/community-x86_64/PKGBUILD (from rev 520778, 
nageru/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:20 UTC (rev 520779)
@@ -0,0 +1,43 @@
+# Maintainer: Morten Linderud 
+
+pkgname=nageru
+pkgver=1.8.6
+pkgrel=2
+pkgdesc="live video mixer, based around the standard M/E workflow."
+arch=(x86_64)
+url="https://nageru.sesse.net/;
+license=('GPL3')
+depends=('libmicrohttpd' 'ffmpeg' 'libx264' 'protobuf' 
+ 'movit' 'bmusb' 'qcustomplot' 'pciutils' 'zita-resampler'
+ 'sqlite3' 'luajit' 'cmake')
+makedepends=('meson' 'eigen')
+source=("https://nageru.sesse.net/nageru-${pkgver}.tar.gz;
+"meson-options.patch"
+"luajit-patch.patch")
+sha256sums=('67dcb070a23589f624d7067c4b09fe11faa9b1c756b884c50473545fdf7817b3'
+'1bb7d87d6d6359ffe95d605c29ff5f73728929d9393498b74fdf36c6469fdaba'
+'480c4de61188684fc8d1727a2e3ec615d33892234e8466db8011589e9277bdf7')
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i "${srcdir}/luajit-patch.patch"
+patch -Np1 -i "${srcdir}/meson-options.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson ../build
+  ninja -v -C ../build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  ninja -C ../build test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="$pkgdir" ninja -C ../build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/luajit-patch.patch
===
--- community-x86_64/luajit-patch.patch 2019-10-27 18:55:08 UTC (rev 520778)
+++ community-x86_64/luajit-patch.patch 2019-10-27 18:55:20 UTC (rev 520779)
@@ -1,113 +0,0 @@
-diff --git a/README b/README
-index ed86214..86eb42a 100644
 a/README
-+++ b/README
-@@ -70,7 +70,7 @@ Nageru currently needs:
-  - libzita-resampler, for resampling sound sources so that they are in sync
-between sources, and also for oversampling for the peak meter.
- 
-- - LuaJIT, for driving the theme engine. You will need at least version 2.1.
-+ - LuaJIT, for driving the theme engine.
- 
-  - libjpeg, for encoding MJPEG streams when VA-API JPEG support is not
-available.
-@@ -257,3 +257,27 @@ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE 
SOFTWARE BE LIABLE
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- DEALINGS IN THE SOFTWARE.
-+
-+
-+Marked parts of theme.cpp (Lua 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:55:30
  Author: lfleischer
Revision: 520780

db-move: moved nsjail from [community-testing] to [community] (x86_64)

Added:
  nsjail/repos/community-x86_64/PKGBUILD
(from rev 520779, nsjail/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  nsjail/repos/community-testing-x86_64/
  nsjail/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   29 +
 community-x86_64/PKGBUILD |   29 -
 2 files changed, 29 insertions(+), 29 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:55:20 UTC (rev 520779)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:30 UTC (rev 520780)
@@ -1,29 +0,0 @@
-# Maintainer: Bruno Pagani  
-
-pkgname=nsjail
-pkgver=2.9
-pkgrel=1
-pkgdesc="Light-weight process isolation tool"
-arch=(x86_64)
-url="https://nsjail.com;
-license=(Apache)
-depends=(protobuf libnl)
-makedepends=(git)
-source=("https://github.com/google/nsjail/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-
'git+https://github.com/google/kafel.git#commit=722b93a630e53ca472a4c69f61cb3dfc44ea5041')
-sha256sums=('f8578a48330d3d089c9234a2b562be08043f8fe77453c322724acdf403d0afc3'
-'SKIP')
-
-prepare() {
-mv kafel ${pkgname}-${pkgver}
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-install -Dm755 nsjail -t "${pkgdir}"/usr/bin/ 
-}

Copied: nsjail/repos/community-x86_64/PKGBUILD (from rev 520779, 
nsjail/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:55:30 UTC (rev 520780)
@@ -0,0 +1,29 @@
+# Maintainer: Bruno Pagani  
+
+pkgname=nsjail
+pkgver=2.9
+pkgrel=3
+pkgdesc="Light-weight process isolation tool"
+arch=(x86_64)
+url="https://nsjail.com;
+license=(Apache)
+depends=(protobuf libnl)
+makedepends=(git)
+source=("https://github.com/google/nsjail/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
'git+https://github.com/google/kafel.git#commit=722b93a630e53ca472a4c69f61cb3dfc44ea5041')
+sha256sums=('f8578a48330d3d089c9234a2b562be08043f8fe77453c322724acdf403d0afc3'
+'SKIP')
+
+prepare() {
+mv kafel ${pkgname}-${pkgver}
+}
+
+build() {
+cd ${pkgname}-${pkgver}
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+install -Dm755 nsjail -t "${pkgdir}"/usr/bin/ 
+}


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:54:47
  Author: lfleischer
Revision: 520777

db-move: moved mumble from [community-testing] to [community] (x86_64)

Added:
  mumble/repos/community-x86_64/PKGBUILD
(from rev 520776, mumble/repos/community-testing-x86_64/PKGBUILD)
  mumble/repos/community-x86_64/mumble-protobuf-3.7.patch
(from rev 520776, 
mumble/repos/community-testing-x86_64/mumble-protobuf-3.7.patch)
Deleted:
  mumble/repos/community-testing-x86_64/
  mumble/repos/community-x86_64/PKGBUILD
  mumble/repos/community-x86_64/mumble-protobuf-3.7.patch

+
 /PKGBUILD  |   57 +
 /mumble-protobuf-3.7.patch |  800 +++
 community-x86_64/PKGBUILD  |   57 -
 community-x86_64/mumble-protobuf-3.7.patch |  800 ---
 4 files changed, 857 insertions(+), 857 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:54:32 UTC (rev 520776)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:47 UTC (rev 520777)
@@ -1,57 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lauri Niskanen 
-# Contributor: sebastian.sal...@gmx.de
-# Contributor: Doc Angelo
-
-pkgname=mumble
-pkgver=1.3.0
-pkgrel=3
-arch=('x86_64')
-pkgdesc="A voice chat application similar to TeamSpeak"
-license=('BSD')
-depends=(qt5-base qt5-svg speex lsb-release libxi avahi libsndfile protobuf 
libpulse opus
- xdg-utils libspeechd libpng freetype2 fontconfig libxrender)
-makedepends=(boost mesa python qt5-tools)
-optdepends=('speech-dispatcher: Text-to-speech support'
-'espeak-ng: Text-to-speech support')
-url="https://www.mumble.info/;
-source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz{,.sig})
-sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
-'SKIP')
-validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  qmake-qt5 main.pro \
-CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
-no-embed-qt-translations no-update packaged" \
-DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
-INCLUDEPATH+="/usr/include/speech-dispatcher" \
-LIBS+="-lpng16 -lfreetype -lXrender -lfontconfig"
-  make release
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  # bin stuff
-  install -m755 -D ./release/mumble "$pkgdir"/usr/bin/mumble
-  install -m755 -D ./scripts/mumble-overlay "$pkgdir"/usr/bin/mumble-overlay
-
-  # lib stuff
-  install -m755 -D ./release/libmumble.so.$pkgver 
"$pkgdir"/usr/lib/mumble/libmumble.so.$pkgver
-  ln -s libmumble.so.$pkgver "$pkgdir"/usr/lib/mumble/libmumble.so
-  ln -s libmumble.so.$pkgver "$pkgdir"/usr/lib/mumble/libmumble.so.1
-  ln -s libmumble.so.$pkgver "$pkgdir"/usr/lib/mumble/libmumble.so.1.3
-  install -m755 -D ./release/plugins/liblink.so 
"$pkgdir"/usr/lib/mumble/liblink.so
-  install -m755 -D ./release/libcelt* "$pkgdir"/usr/lib/mumble/
-
-  # other stuff
-  install -m644 -D ./scripts/mumble.desktop 
"$pkgdir"/usr/share/applications/mumble.desktop
-  install -m755 -d "$pkgdir"/usr/share/man/man1
-  install -m644 -D ./man/mum* "$pkgdir"/usr/share/man/man1/
-  install -m644 -D ./icons/mumble.svg 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps/mumble.svg
-  install -m644 -D ./LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-x86_64/PKGBUILD (from rev 520776, 
mumble/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:47 UTC (rev 520777)
@@ -0,0 +1,57 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+pkgname=mumble
+pkgver=1.3.0
+pkgrel=4
+arch=('x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=(qt5-base qt5-svg speex lsb-release libxi avahi libsndfile protobuf 
libpulse opus
+ xdg-utils libspeechd libpng freetype2 fontconfig libxrender)
+makedepends=(boost mesa python qt5-tools)
+optdepends=('speech-dispatcher: Text-to-speech support'
+'espeak-ng: Text-to-speech support')
+url="https://www.mumble.info/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz{,.sig})
+sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
+'SKIP')
+validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
+

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:54:19
  Author: lfleischer
Revision: 520775

db-move: moved mixxx from [community-testing] to [community] (x86_64)

Added:
  mixxx/repos/community-x86_64/PKGBUILD
(from rev 520774, mixxx/repos/community-testing-x86_64/PKGBUILD)
  mixxx/repos/community-x86_64/scons-python3.patch
(from rev 520774, mixxx/repos/community-testing-x86_64/scons-python3.patch)
Deleted:
  mixxx/repos/community-testing-x86_64/
  mixxx/repos/community-x86_64/PKGBUILD
  mixxx/repos/community-x86_64/scons-python3.patch

--+
 /PKGBUILD|   62 +
 /scons-python3.patch |   20 ++
 community-x86_64/PKGBUILD|   60 ---
 community-x86_64/scons-python3.patch |   20 --
 4 files changed, 82 insertions(+), 80 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:54:06 UTC (rev 520774)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:19 UTC (rev 520775)
@@ -1,60 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: David Runge 
-# Contributor: Ali H. Caliskan 
-# Contributor: Ryan Coyner 
-# Contributor: Stefan Husmann 
-
-pkgname=mixxx
-pkgver=2.2.2
-pkgrel=1
-pkgdesc="Free, open source software for digital DJ'ing."
-arch=('x86_64')
-url="https://www.mixxx.org;
-license=('GPL2')
-groups=('pro-audio')
-depends=('chromaprint' 'faad2' 'gperftools' 'hidapi' 'libid3tag' 'libmad'
-'libmp4v2' 'libshout' 'lilv' 'opusfile' 'portaudio' 'portmidi' 'protobuf'
-'qt5-script' 'qt5-svg' 'qt5-x11extras' 'qtkeychain' 'rubberband' 'soundtouch'
-'taglib' 'upower' 'wavpack')
-makedepends=('glu' 'qt5-tools' 'scons' 'vamp-plugin-sdk')
-checkdepends=('xorg-server-xvfb')
-source=("https://github.com/${pkgname}dj/${pkgname}/archive/release-${pkgver}.tar.gz;
 scons-python3.patch)
-sha512sums=('3b9365bd9d9a7d387cd8791d7d9f6315116e04322370db103998d5e055a6de5e159a4605c7de96cbcf13e7d0653cbe53140dca18a8c3f1b688b227be2c4aeb6f'
-
'4b01dc590ca6d7ae2ac20af77e74e02fe7c179ffc1e5cad6cffb22c6cc750ab1757103e27922430abe6d3d7a023bb22fd15640fbaff8acc812acef5099598fe3')
-
-prepare() {
-  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  patch -p1 -i ../scons-python3.patch
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export SCONSFLAGS="-j $(nproc)"
-  scons prefix=/usr \
-build=release \
-faad=1 \
-modplug=1 \
-perftools=1 \
-perftools_profiler=1 \
-qt_sqlite_plugin=0 \
-qtkeychain=1 \
-test=1 \
-target=linux \
-virtualize=0 \
-wv=1
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  xvfb-run lin64_build/${pkgname}-test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  scons prefix=/usr \
-install_root="${pkgdir}/usr" \
-install
-  # removing the test executable
-  rm -v "${pkgdir}/usr/bin/${pkgname}-test"
-}

Copied: mixxx/repos/community-x86_64/PKGBUILD (from rev 520774, 
mixxx/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:19 UTC (rev 520775)
@@ -0,0 +1,62 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: David Runge 
+# Contributor: Ali H. Caliskan 
+# Contributor: Ryan Coyner 
+# Contributor: Stefan Husmann 
+
+pkgname=mixxx
+pkgver=2.2.2
+pkgrel=2
+pkgdesc="Free, open source software for digital DJ'ing."
+arch=('x86_64')
+url="https://www.mixxx.org;
+license=('GPL2')
+groups=('pro-audio')
+depends=('chromaprint' 'faad2' 'flac' 'gcc-libs' 'glibc' 'glib2' 'hidapi'
+'libglvnd' 'libid3tag' 'libmad' 'libmodplug' 'libmp4v2' 'libogg' 'libshout'
+'libsndfile' 'libtcmalloc.so' 'libusb' 'libvorbis.so' 'libvorbisfile.so' 'lilv'
+'libx11' 'opusfile' 'portaudio' 'portmidi' 'protobuf' 'qt5-base' 'qt5-script'
+'qt5-svg' 'qt5-x11extras' 'qtkeychain' 'rubberband' 'soundtouch' 'sqlite'
+'taglib' 'upower' 'wavpack')
+makedepends=('glu' 'qt5-tools' 'scons' 'vamp-plugin-sdk')
+checkdepends=('xorg-server-xvfb')
+source=("https://github.com/${pkgname}dj/${pkgname}/archive/release-${pkgver}.tar.gz;
 scons-python3.patch)
+sha512sums=('3b9365bd9d9a7d387cd8791d7d9f6315116e04322370db103998d5e055a6de5e159a4605c7de96cbcf13e7d0653cbe53140dca18a8c3f1b688b227be2c4aeb6f'
+
'4b01dc590ca6d7ae2ac20af77e74e02fe7c179ffc1e5cad6cffb22c6cc750ab1757103e27922430abe6d3d7a023bb22fd15640fbaff8acc812acef5099598fe3')
+
+prepare() {
+  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  patch -p1 -i ../scons-python3.patch
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export SCONSFLAGS="-j $(nproc)"
+  scons prefix=/usr \
+build=release \
+faad=1 \
+modplug=1 \
+perftools=1 \
+perftools_profiler=1 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:54:06
  Author: lfleischer
Revision: 520774

db-move: moved knot from [community-testing] to [community] (x86_64)

Added:
  knot/repos/community-x86_64/PKGBUILD
(from rev 520773, knot/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  knot/repos/community-testing-x86_64/
  knot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   61 
 community-x86_64/PKGBUILD |   61 
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:53:55 UTC (rev 520773)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:06 UTC (rev 520774)
@@ -1,61 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Ondřej Surý 
-# Contributor: Julian Brost 
-# Contributor: Oleander Reis 
-# Contributor: Otto Sabart 
-
-pkgname=knot
-pkgver=2.8.4
-pkgrel=1
-pkgdesc="High-performance authoritative-only DNS server"
-arch=(x86_64)
-url="https://www.knot-dns.cz/;
-license=(GPL3)
-depends=(libedit gnutls liburcu lmdb
- libidn2 systemd libcap-ng
- fstrm protobuf-c libmaxminddb)
-backup=('etc/knot/knot.conf')
-source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=(541e7e43503765c91405c5797b3838103bb656154712e69b3f959c6ab0e700a9 
SKIP)
-validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

-
-build() {
-cd ${pkgname}-${pkgver}
-
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---libexecdir=/usr/lib/knot \
---with-rundir=/run/knot \
---with-storage=/var/lib/knot \
---enable-recvmmsg \
---enable-dnstap \
---enable-systemd \
---enable-reuseport \
---disable-silent-rules
-
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
-rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
-
-rm "${pkgdir}"/etc/knot/example.com.zone
-mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
-
-install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-}

Copied: knot/repos/community-x86_64/PKGBUILD (from rev 520773, 
knot/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:06 UTC (rev 520774)
@@ -0,0 +1,61 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Ondřej Surý 
+# Contributor: Julian Brost 
+# Contributor: Oleander Reis 
+# Contributor: Otto Sabart 
+
+pkgname=knot
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="High-performance authoritative-only DNS server"
+arch=(x86_64)
+url="https://www.knot-dns.cz/;
+license=(GPL3)
+depends=(libedit gnutls liburcu lmdb
+ libidn2 systemd libcap-ng
+ fstrm protobuf-c libmaxminddb)
+backup=('etc/knot/knot.conf')
+source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=(df7434eaefbabbf7cca2d6cba5038be48a4668e508215ca197532bac7c9b21a2 
SKIP)
+validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

+
+build() {
+cd ${pkgname}-${pkgver}
+
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--libexecdir=/usr/lib/knot \
+--with-rundir=/run/knot \
+--with-storage=/var/lib/knot \
+--enable-recvmmsg \
+--enable-dnstap \
+--enable-systemd \
+--enable-reuseport \
+--disable-silent-rules
+
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
+rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
+
+rm "${pkgdir}"/etc/knot/example.com.zone
+mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
+
+install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+}


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:54:32
  Author: lfleischer
Revision: 520776

db-move: moved mosh from [community-testing] to [community] (x86_64)

Added:
  mosh/repos/community-x86_64/PKGBUILD
(from rev 520775, mosh/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  mosh/repos/community-testing-x86_64/
  mosh/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   32 
 community-x86_64/PKGBUILD |   32 
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:54:19 UTC (rev 520775)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:32 UTC (rev 520776)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Christian Neukirchen 
-# Contributor: Thomas Weißschuh 
-
-pkgname=mosh
-pkgver=1.3.2
-pkgrel=8
-pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
-arch=(x86_64)
-url='https://mosh.org/'
-license=(GPL3)
-depends=(libutempter openssh openssl perl-io-tty protobuf)
-makedepends=(git)
-options=(!emptydirs)
-source=("git+https://github.com/mobile-shell/mosh#tag=$pkgname-$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-ufw --sysconfdir=/etc
-  make
-}
-
-package() {
-  DESTDIR="$pkgdir" make -C $pkgname install
-  install -Dm644 "$pkgname/conf/bash-completion/completions/$pkgname" \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-}
-
-# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
-# vim: ts=2 sw=2 et:

Copied: mosh/repos/community-x86_64/PKGBUILD (from rev 520775, 
mosh/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:54:32 UTC (rev 520776)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.3.2
+pkgrel=10
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=(x86_64)
+url='https://mosh.org/'
+license=(GPL3)
+depends=(libutempter openssh openssl perl-io-tty protobuf)
+makedepends=(git)
+options=(!emptydirs)
+source=("git+https://github.com/mobile-shell/mosh#tag=$pkgname-$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --enable-ufw --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C $pkgname install
+  install -Dm644 "$pkgname/conf/bash-completion/completions/$pkgname" \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in hyperion/repos (11 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:53:55
  Author: lfleischer
Revision: 520773

db-move: moved hyperion from [community-testing] to [community] (x86_64)

Added:
  
hyperion/repos/community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch
(from rev 520772, 
hyperion/repos/community-testing-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch)
  hyperion/repos/community-x86_64/PKGBUILD
(from rev 520772, hyperion/repos/community-testing-x86_64/PKGBUILD)
  hyperion/repos/community-x86_64/hyperion.install
(from rev 520772, hyperion/repos/community-testing-x86_64/hyperion.install)
  hyperion/repos/community-x86_64/hyperion.sysusers
(from rev 520772, hyperion/repos/community-testing-x86_64/hyperion.sysusers)
  hyperion/repos/community-x86_64/hyperiond.service
(from rev 520772, hyperion/repos/community-testing-x86_64/hyperiond.service)
Deleted:
  hyperion/repos/community-testing-x86_64/
  
hyperion/repos/community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch
  hyperion/repos/community-x86_64/PKGBUILD
  hyperion/repos/community-x86_64/hyperion.install
  hyperion/repos/community-x86_64/hyperion.sysusers
  hyperion/repos/community-x86_64/hyperiond.service

---+
 /0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch |   26 
+++
 /PKGBUILD |   66 
++
 /hyperion.install |   20 
+++
 /hyperion.sysusers|2 
 /hyperiond.service|   14 ++
 community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch |   26 
---
 community-x86_64/PKGBUILD |   66 
--
 community-x86_64/hyperion.install |   20 
---
 community-x86_64/hyperion.sysusers|2 
 community-x86_64/hyperiond.service|   14 --
 10 files changed, 128 insertions(+), 128 deletions(-)

Deleted: community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch
===
--- community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch   
2019-10-27 18:53:44 UTC (rev 520772)
+++ community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch   
2019-10-27 18:53:55 UTC (rev 520773)
@@ -1,26 +0,0 @@
-From 88ae95d522bfdda4c29a1116367aad8c7d948779 Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Sat, 21 Oct 2017 12:46:49 +0200
-Subject: [PATCH] Fix no decleration of `assert` with GCC 7.2
-
-Add a missing include for cassert to fix the -fpermissive compiler
-error.

- include/utils/Image.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/utils/Image.h b/include/utils/Image.h
-index e8c82e4..dad57a2 100644
 a/include/utils/Image.h
-+++ b/include/utils/Image.h
-@@ -1,6 +1,7 @@
- #pragma once
- 
- // STL includes
-+#include 
- #include 
- #include 
- #include 
--- 
-2.14.2
-

Copied: 
hyperion/repos/community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch
 (from rev 520772, 
hyperion/repos/community-testing-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch)
===
--- community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch   
(rev 0)
+++ community-x86_64/0001-Fix-no-decleration-of-assert-with-GCC-7.2.patch   
2019-10-27 18:53:55 UTC (rev 520773)
@@ -0,0 +1,26 @@
+From 88ae95d522bfdda4c29a1116367aad8c7d948779 Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Sat, 21 Oct 2017 12:46:49 +0200
+Subject: [PATCH] Fix no decleration of `assert` with GCC 7.2
+
+Add a missing include for cassert to fix the -fpermissive compiler
+error.
+---
+ include/utils/Image.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/utils/Image.h b/include/utils/Image.h
+index e8c82e4..dad57a2 100644
+--- a/include/utils/Image.h
 b/include/utils/Image.h
+@@ -1,6 +1,7 @@
+ #pragma once
+ 
+ // STL includes
++#include 
+ #include 
+ #include 
+ #include 
+-- 
+2.14.2
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:53:44 UTC (rev 520772)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:55 UTC (rev 520773)
@@ -1,66 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-# Contributor: Christopher Reimer 
-
-pkgname=hyperion
-pkgver=1.03.2
-pkgrel=17
-pkgdesc="An opensource 'AmbiLight' implementation"
-arch=('x86_64')
-url="https://github.com/hyperion-project/hyperion;
-license=('MIT')
-depends=('libusb' 'protobuf' 'python' 'qt5-base')
-optdepends=('xorg-server: X11 grabbing')

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:53:10
  Author: lfleischer
Revision: 520769

db-move: moved collectd from [community-testing] to [community] (x86_64)

Added:
  collectd/repos/community-x86_64/PKGBUILD
(from rev 520768, collectd/repos/community-testing-x86_64/PKGBUILD)
  collectd/repos/community-x86_64/service
(from rev 520768, collectd/repos/community-testing-x86_64/service)
Deleted:
  collectd/repos/community-testing-x86_64/
  collectd/repos/community-x86_64/PKGBUILD
  collectd/repos/community-x86_64/fix-failed-values-string.patch
  collectd/repos/community-x86_64/service

-+
 /PKGBUILD   |   74 ++
 /service|   13 +++
 community-x86_64/PKGBUILD   |   74 --
 community-x86_64/fix-failed-values-string.patch |   27 
 community-x86_64/service|   13 ---
 5 files changed, 87 insertions(+), 114 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:52:58 UTC (rev 520768)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:10 UTC (rev 520769)
@@ -1,74 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.9.2
-pkgrel=1
-pkgdesc='Daemon which collects system performance statistics periodically'
-url='https://collectd.org/'
-arch=('x86_64')
-license=('GPL')
-
-optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
-'libdbi: dbi plugin'
-'libesmtp: notify_email plugin'
-'libgcrypt: encryption and authentication for network plugin'
-'libmemcached: memcachec plugin'
-'mariadb-libs: mysql plugin'
-'systemd-libs: UdevNameAttr option'
-'iproute2: netlink plugin'
-'net-snmp: snmp plugin'
-'libnotify: notify_desktop plugin'
-'openipmi: ipmi plugin'
-'liboping: ping plugin'
-'libpcap: dns plugin'
-'perl: perl plugin'
-'postgresql-libs: postgresql plugin'
-'python: python plugin'
-'rrdtool: rrdtool and rrdcached plugins'
-'lm_sensors: lm_sensors and sensors plugins'
-'libvirt: libvirt plugin'
-'libxml2: ascent and libvirt plugins'
-'yajl: curl_json plugin'
-'libatasmart: smart plugin'
-'lvm2: lvm plugin'
-'protobuf-c: write_riemann plugin'
-'mosquitto: MQTT plugin'
-'libmicrohttpd: prometheus plugin'
-'librabbitmq-c: amqp plugin')
-
-makedepends=(${optdepends[@]%:*})
-depends=('libltdl' 'iptables' 'libnsl')
-
-source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;
-'service')
-sha256sums=('961116e74ac505b920578932fd2bd9904febbc7d5aefba3e0ea3d44337c00119'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-   ./build.sh
-   sed 's/ -Werror//g' -i configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --with-python=/usr/bin/python \
-   --with-perl-bindings='INSTALLDIRS=vendor'
-   make all
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rmdir "${pkgdir}/var/run" # FS#30201
-   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
-   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
-}

Copied: collectd/repos/community-x86_64/PKGBUILD (from rev 520768, 
collectd/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:10 UTC (rev 520769)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.2
+pkgrel=2
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'mariadb-libs: mysql plugin'
+'systemd-libs: UdevNameAttr option'
+'iproute2: netlink plugin'
+'net-snmp: snmp 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:53:44
  Author: lfleischer
Revision: 520772

db-move: moved grpc from [community-testing] to [community] (x86_64)

Added:
  grpc/repos/community-x86_64/PKGBUILD
(from rev 520771, grpc/repos/community-testing-x86_64/PKGBUILD)
  grpc/repos/community-x86_64/makefile.patch
(from rev 520771, grpc/repos/community-testing-x86_64/makefile.patch)
Deleted:
  grpc/repos/community-testing-x86_64/
  grpc/repos/community-x86_64/PKGBUILD
  grpc/repos/community-x86_64/makefile.patch

-+
 /PKGBUILD   |  104 ++
 /makefile.patch |   15 +
 community-x86_64/PKGBUILD   |  104 --
 community-x86_64/makefile.patch |   15 -
 4 files changed, 119 insertions(+), 119 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:53:33 UTC (rev 520771)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:44 UTC (rev 520772)
@@ -1,104 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Aleksey Filippov 
-# Contributor: Victor Aurélio Santos 
-
-pkgbase='grpc'
-pkgname=('grpc' 'python-grpcio' 'php-grpc' 'grpc-cli')
-pkgver=1.24.3
-_gtestver=1.8.1
-_upbver=931bbecbd3230ae7f22efa5d203639facc47f719
-pkgrel=1
-pkgdesc="High performance, open source, general RPC framework that puts mobile 
and HTTP/2 first."
-arch=('x86_64')
-url='https://grpc.io'
-license=('BSD')
-makedepends=('re2c' 'protobuf' 'php' 'c-ares' 'openssl' 'chrpath' 'gflags'
- 'cython')
-source=("https://github.com/$pkgname/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;
-
"https://github.com/google/googletest/archive/release-$_gtestver/googletest-$_gtestver.tar.gz;
-
"https://github.com/protocolbuffers/upb/archive/$_upbver/upb-$_upbver.tar.gz;
-"makefile.patch")
-sha256sums=('c84b3fa140fcd6cce79b3f9de6357c5733a0071e04ca4e65ba5f8d306f10f033'
-'9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c'
-'95150db57b51b65f3422c38953956e0f786945d842d76f8ab685fbcd93ab5caa'
-'f292cb387f0cf7567e6e8004a6dd57bf0375abbaa8968dcd97cbd7e72409670f')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  patch -p1 -i "$srcdir/makefile.patch"
-
-  sed -r 's/-Werror//g;/ldconfig/d;s/ strip-(static|shared)_c(xx)? / /' -i 
Makefile
-
-  ln -sf "$srcdir/googletest-release-$_gtestver/"{googlemock,googletest} \
-third_party/googletest
-
-  rm -rf third_party/upb
-  ln -s "$srcdir/upb-$_upbver" third_party/upb
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  export CFLAGS="$CFLAGS -Wno-unused-parameter"
-  export CXXFLAGS="$CXXFLAGS -Wno-unused-parameter"
-
-  make prefix=/usr
-  make prefix=/usr grpc_cli
-
-  # Don't install it as part of main package
-  mv bins/opt/grpc_cli .
-
-  # Python
-  GRPC_PYTHON_BUILD_WITH_CYTHON=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_CARES=1 \
-  python setup.py build
-
-  # PHP
-  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
-  phpize
-  LDFLAGS=-L"$srcdir/$pkgname-$pkgver/libs/opt" ./configure 
--enable-grpc="$srcdir/$pkgname-$pkgver"
-  make
-}
-
-package_grpc() {
-  depends=('c-ares' 'protobuf' 'openssl')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  make prefix="$pkgdir/usr" install
-  find "$pkgdir"/usr/{include,share,lib/pkgconfig} -type f -exec chmod a-x {} +
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-grpcio() {
-  depends=('c-ares' 'python')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  python setup.py install -O1 --skip-build --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_php-grpc() {
-  depends=('grpc' 'php')
-  backup=('etc/php/conf.d/grpc.ini')
-
-  # Install PHP extension.
-  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
-  make install "INSTALL_ROOT=$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove RPATH
-  chrpath -d "$pkgdir/usr/lib/php/modules/grpc.so"
-
-  echo ';extension=grpc.so' >grpc.ini
-  install -Dm644 grpc.ini "$pkgdir/etc/php/conf.d/grpc.ini"
-}
-
-package_grpc-cli() {
-  depends=('c-ares' 'gflags' 'protobuf' 'openssl')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  install -Dm755 grpc_cli "$pkgdir"/usr/bin/grpc_cli
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: grpc/repos/community-x86_64/PKGBUILD (from rev 520771, 
grpc/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:44 UTC (rev 520772)
@@ -0,0 +1,104 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Aleksey Filippov 
+# Contributor: Victor Aurélio Santos 
+
+pkgbase='grpc'
+pkgname=('grpc' 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:53:33
  Author: lfleischer
Revision: 520771

db-move: moved etherwall from [community-testing] to [community] (x86_64)

Added:
  etherwall/repos/community-x86_64/PKGBUILD
(from rev 520770, etherwall/repos/community-testing-x86_64/PKGBUILD)
  etherwall/repos/community-x86_64/etherwall.desktop
(from rev 520770, 
etherwall/repos/community-testing-x86_64/etherwall.desktop)
Deleted:
  etherwall/repos/community-testing-x86_64/
  etherwall/repos/community-x86_64/PKGBUILD
  etherwall/repos/community-x86_64/etherwall.desktop

+
 /PKGBUILD  |   41 +++
 /etherwall.desktop |9 +++
 community-x86_64/PKGBUILD  |   41 ---
 community-x86_64/etherwall.desktop |9 ---
 4 files changed, 50 insertions(+), 50 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:53:22 UTC (rev 520770)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:33 UTC (rev 520771)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ales Katona 
-
-pkgname=etherwall
-pkgver=2.4.0
-_ewnodecommit=7d8ed7de3dcb6d2be63745e755bd492e30bd4111
-_trezorcommit=db106e8f2766155bc72802e4dc3f9f59c90d9c3e
-pkgrel=1
-pkgdesc="Ethereum GUI Wallet (QT5)"
-arch=('x86_64')
-url="https://etherwall.com;
-license=('GPL3')
-depends=('qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-websockets' 'geth' 'protobuf' 'hidapi' 'systemd-libs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/almindor/${pkgname}/archive/v$pkgver.tar.gz;
-
"ew-node-$_ewnodecommit.tar.gz::https://github.com/almindor/ew-node/archive/$_ewnodecommit.tar.gz;
-
"trezor-common-$_trezorcommit.tar.gz::https://github.com/trezor/trezor-common/archive/$_trezorcommit.tar.gz;
-etherwall.desktop)
-sha512sums=('87b6936980580d209a35b382e2eb4f769f45a2eec2580048a71de07992095fb49696e99014139c2df9857fbdbd0301cd9def47f544285c770ce154c00bf9c59a'
-
'1ced81663bb742e7a9378eff60f12865ecc2bed7b2657511723eefa0bcb4aa7a461f6de94d117581f5a19a4d1816757519981914d828f5b2f1b757406816df97'
-
'745044fe0686c4f2843a67440e3be8501d8c1d5b8b7275fad7310cfd1110d5cc00378ba4205bed6f5926636a65aa986448594fc6fe276b9f46c902c642ad0373'
-
'82ecee1f1d7a6fe7014b928e3ab79ed507c3c5795ac3e832e0be1aca8fc5659212c5a4323d5dec4571b9e9255c5c46615bd9865dc03eba85d8be9b969b534d57')
-
-build() {
-  cd "etherwall-$pkgver"
-  rmdir "src/ew-node"
-  ln -s "../../ew-node-$_ewnodecommit" "src/ew-node"
-
-  SRCDIR="../trezor-common-$_trezorcommit/protob" ./generate_protobuf.sh
-  qmake -config release && make
-}
-
-package() {
-  mkdir -p "$pkgdir/usr/bin"
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  mkdir -p "$pkgdir/usr/share/applications"
-
-  cd "etherwall-$pkgver"
-  cp "$srcdir"/etherwall.desktop "$pkgdir"/usr/share/applications
-  cp "./Etherwall" "$pkgdir"/usr/bin/etherwall
-  cp "./qml/images/icon.png" "$pkgdir"/usr/share/pixmaps/etherwall.png
-}

Copied: etherwall/repos/community-x86_64/PKGBUILD (from rev 520770, 
etherwall/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:33 UTC (rev 520771)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Ales Katona 
+
+pkgname=etherwall
+pkgver=2.4.0
+_ewnodecommit=7d8ed7de3dcb6d2be63745e755bd492e30bd4111
+_trezorcommit=db106e8f2766155bc72802e4dc3f9f59c90d9c3e
+pkgrel=2
+pkgdesc="Ethereum GUI Wallet (QT5)"
+arch=('x86_64')
+url="https://etherwall.com;
+license=('GPL3')
+depends=('qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-websockets' 'geth' 'protobuf' 'hidapi' 'systemd-libs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/almindor/${pkgname}/archive/v$pkgver.tar.gz;
+
"ew-node-$_ewnodecommit.tar.gz::https://github.com/almindor/ew-node/archive/$_ewnodecommit.tar.gz;
+
"trezor-common-$_trezorcommit.tar.gz::https://github.com/trezor/trezor-common/archive/$_trezorcommit.tar.gz;
+etherwall.desktop)
+sha512sums=('87b6936980580d209a35b382e2eb4f769f45a2eec2580048a71de07992095fb49696e99014139c2df9857fbdbd0301cd9def47f544285c770ce154c00bf9c59a'
+
'1ced81663bb742e7a9378eff60f12865ecc2bed7b2657511723eefa0bcb4aa7a461f6de94d117581f5a19a4d1816757519981914d828f5b2f1b757406816df97'
+
'745044fe0686c4f2843a67440e3be8501d8c1d5b8b7275fad7310cfd1110d5cc00378ba4205bed6f5926636a65aa986448594fc6fe276b9f46c902c642ad0373'
+
'82ecee1f1d7a6fe7014b928e3ab79ed507c3c5795ac3e832e0be1aca8fc5659212c5a4323d5dec4571b9e9255c5c46615bd9865dc03eba85d8be9b969b534d57')
+
+build() {
+  cd "etherwall-$pkgver"
+  rmdir "src/ew-node"
+  ln -s "../../ew-node-$_ewnodecommit" "src/ew-node"
+
+  

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:53:22
  Author: lfleischer
Revision: 520770

db-move: moved curaengine from [community-testing] to [community] (x86_64)

Added:
  curaengine/repos/community-x86_64/PKGBUILD
(from rev 520769, curaengine/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  curaengine/repos/community-testing-x86_64/
  curaengine/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   44 
 community-x86_64/PKGBUILD |   44 
 2 files changed, 44 insertions(+), 44 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:53:10 UTC (rev 520769)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:22 UTC (rev 520770)
@@ -1,44 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=curaengine
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="Engine for processing 3D models into 3D printing instruction for 
Ultimaker and other GCode based 3D printers."
-url="https://github.com/Ultimaker/CuraEngine;
-arch=('x86_64')
-license=('AGPL')
-depends=('arcus' 'rapidjson' 'polyclipping')
-# TODO: https://github.com/Ultimaker/CuraEngine/blob/master/CMakeLists.txt#L26
-# Work with system openmp
-# Package polyclipping in the repos
-checkdepends=('cppunit')
-makedepends=('cmake' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('60ca0ce586c0cf5f1516f803b2a05a20299ef8193f065acd6e11a0054903189225f9c60be1b536ffe5a9a22652097acd3a4aae2833920a468071b78f213f7572')
-
-
-build() {
-  cd CuraEngine-${pkgver}
-  mkdir -p build
-  cd build
-
-   cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_TESTS=ON \
- -DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-check() {
-  cd CuraEngine-${pkgver}/build
-  make test
-}
-
-package() {
-  cd CuraEngine-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: curaengine/repos/community-x86_64/PKGBUILD (from rev 520769, 
curaengine/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:53:22 UTC (rev 520770)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=4.3.0
+pkgrel=2
+pkgdesc="Engine for processing 3D models into 3D printing instruction for 
Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine;
+arch=('x86_64')
+license=('AGPL')
+depends=('arcus' 'rapidjson' 'polyclipping')
+# TODO: https://github.com/Ultimaker/CuraEngine/blob/master/CMakeLists.txt#L26
+# Work with system openmp
+# Package polyclipping in the repos
+checkdepends=('cppunit')
+makedepends=('cmake' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('60ca0ce586c0cf5f1516f803b2a05a20299ef8193f065acd6e11a0054903189225f9c60be1b536ffe5a9a22652097acd3a4aae2833920a468071b78f213f7572')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_TESTS=ON \
+ -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+check() {
+  cd CuraEngine-${pkgver}/build
+  make test
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:52:58
  Author: lfleischer
Revision: 520768

db-move: moved cockatrice from [community-testing] to [community] (x86_64)

Added:
  cockatrice/repos/community-x86_64/PKGBUILD
(from rev 520767, cockatrice/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  cockatrice/repos/community-testing-x86_64/
  cockatrice/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 47 insertions(+), 47 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:52:42 UTC (rev 520767)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:58 UTC (rev 520768)
@@ -1,47 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=cockatrice
-_pkgname=Cockatrice
-pkgver=2.7.2
-_date=2019-08-31
-_tag=$_date-Release-$pkgver
-pkgrel=1
-pkgdesc='A cross-platform virtual tabletop for multiplayer card games'
-arch=('x86_64')
-url='https://cockatrice.github.io'
-license=('GPL2')
-depends=('qt5-base' 'protobuf' 'qt5-tools' 'qt5-svg' 'qt5-multimedia' 
'qt5-websockets')
-makedepends=('cmake' 'git' 'zlib')
-checkdepends=('gtest' 'valgrind')
-optdepends=('zlib: Load zipped files in Oracle')
-provides=('cockatrice-client' 'cockatrice-server')
-conflicts=('cockatrice-client' 'cockatrice-server')
-source=("git+https://github.com/Cockatrice/Cockatrice.git#tag=$_tag;)
-sha512sums=('SKIP')
-
-build() {
-  mkdir -p $_pkgname/build
-  cd $_pkgname/build
-
-  cmake .. \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DWITH_ORACLE=ON \
-   -DWITH_CLIENT=ON \
-   -DWITH_SERVER=ON \
-   -DTEST=ON
-
-  make
-}
-
-#check() {
-#  cd $_pkgname/build
-#
-#  make test
-#}
-
-package() {
-  cd $_pkgname/build
-
-  make DESTDIR="$pkgdir" install
-}
-

Copied: cockatrice/repos/community-x86_64/PKGBUILD (from rev 520767, 
cockatrice/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:58 UTC (rev 520768)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=cockatrice
+_pkgname=Cockatrice
+pkgver=2.7.2
+_date=2019-08-31
+_tag=$_date-Release-$pkgver
+pkgrel=2
+pkgdesc='A cross-platform virtual tabletop for multiplayer card games'
+arch=('x86_64')
+url='https://cockatrice.github.io'
+license=('GPL2')
+depends=('qt5-base' 'protobuf' 'qt5-tools' 'qt5-svg' 'qt5-multimedia' 
'qt5-websockets')
+makedepends=('cmake' 'git' 'zlib')
+checkdepends=('gtest' 'valgrind')
+optdepends=('zlib: Load zipped files in Oracle')
+provides=('cockatrice-client' 'cockatrice-server')
+conflicts=('cockatrice-client' 'cockatrice-server')
+source=("git+https://github.com/Cockatrice/Cockatrice.git#tag=$_tag;)
+sha512sums=('SKIP')
+
+build() {
+  mkdir -p $_pkgname/build
+  cd $_pkgname/build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DWITH_ORACLE=ON \
+   -DWITH_CLIENT=ON \
+   -DWITH_SERVER=ON \
+   -DTEST=ON
+
+  make
+}
+
+#check() {
+#  cd $_pkgname/build
+#
+#  make test
+#}
+
+package() {
+  cd $_pkgname/build
+
+  make DESTDIR="$pkgdir" install
+}
+


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:52:29
  Author: lfleischer
Revision: 520766

db-move: moved arcus from [community-testing] to [community] (x86_64)

Added:
  arcus/repos/community-x86_64/PKGBUILD
(from rev 520765, arcus/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  arcus/repos/community-testing-x86_64/
  arcus/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   38 ++
 community-x86_64/PKGBUILD |   38 --
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:37:52 UTC (rev 520765)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:29 UTC (rev 520766)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-# upstreamed renamed to libarcus
-pkgname=arcus
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="Communication library between internal components for Ultimaker 
software"
-url="https://github.com/Ultimaker/libArcus;
-arch=('x86_64')
-license=('LGPL')
-makedepends=('cmake' 'sip')
-depends=('python' 'protobuf' 'python-sip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
-sha512sums=('b3893e3c422de85a6968443a6f26149e9dee9f15038c11c219693b9aa8d5174d908421e33c8e3ce4e4ecab8c5077da217b44a9ec6bb4b351ff67b7f2d42cc890')
-
-build() {
-  cd libArcus-${pkgver}
-  mkdir -p build
-  cd build
-  
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBUILD_EXAMPLES=OFF  \
-  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
-
-  make
-}
-
-package() {
-  cd libArcus-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-x86_64/PKGBUILD (from rev 520765, 
arcus/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:29 UTC (rev 520766)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+# upstreamed renamed to libarcus
+pkgname=arcus
+pkgver=4.3.0
+pkgrel=2
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64')
+license=('LGPL')
+makedepends=('cmake' 'sip')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
+sha512sums=('b3893e3c422de85a6968443a6f26149e9dee9f15038c11c219693b9aa8d5174d908421e33c8e3ce4e4ecab8c5077da217b44a9ec6bb4b351ff67b7f2d42cc890')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:52:13
  Author: lfleischer
Revision: 365949

db-move: moved vlc from [testing] to [extra] (x86_64)

Added:
  vlc/repos/extra-x86_64/PKGBUILD
(from rev 365948, vlc/repos/testing-x86_64/PKGBUILD)
  vlc/repos/extra-x86_64/lua53_compat.patch
(from rev 365948, vlc/repos/testing-x86_64/lua53_compat.patch)
  vlc/repos/extra-x86_64/update-vlc-plugin-cache.hook
(from rev 365948, vlc/repos/testing-x86_64/update-vlc-plugin-cache.hook)
Deleted:
  vlc/repos/extra-x86_64/PKGBUILD
  vlc/repos/extra-x86_64/lua53_compat.patch
  vlc/repos/extra-x86_64/update-vlc-plugin-cache.hook
  vlc/repos/testing-x86_64/

---+
 /PKGBUILD |  244 
 /lua53_compat.patch   |   30 +++
 /update-vlc-plugin-cache.hook |   11 +
 extra-x86_64/PKGBUILD |  244 
 extra-x86_64/lua53_compat.patch   |   30 ---
 extra-x86_64/update-vlc-plugin-cache.hook |   11 -
 6 files changed, 285 insertions(+), 285 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:52:05 UTC (rev 365948)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:52:13 UTC (rev 365949)
@@ -1,244 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Giovanni Scafora 
-# Contributor: Sarah Hay 
-# Contributor: Martin Sandsmark 
-
-pkgname=vlc
-_vlcver=3.0.8
-# optional fixup version including hyphen
-_vlcfixupver=
-pkgver=${_vlcver}${_vlcfixupver//-/.r}
-pkgrel=1
-pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
-url='https://www.videolan.org/vlc/'
-arch=('x86_64')
-license=('LGPL2.1' 'GPL2')
-# TODO: libplacebo 
https://github.com/haasn/libplacebo/commit/65ddefbadc3481a7835baa23701a7a2992ca2768
-depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'libproxy' 'lua' 'libidn'
- 'libmatroska' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 'libmad'
- 'libmpeg2' 'xcb-util-keysyms' 'libtar' 'libxinerama' 'libsecret'
- 'libarchive' 'qt5-base' 'qt5-x11extras' 'qt5-svg' 'freetype2'
- 'fribidi' 'harfbuzz' 'fontconfig' 'libxml2' 'gnutls' # 'libplacebo'
- 'wayland-protocols' 'aribb24')
-makedepends=('gst-plugins-base-libs' 'live-media' 'libnotify' 'libbluray'
- 'flac' 'libdc1394' 'libavc1394' 'libcaca' 'gtk3'
- 'librsvg' 'libgme' 'xosd' 'twolame' 'aalib' 'avahi' 'systemd-libs'
- 'libmtp' 'libupnp' 'libmicrodns' 'libdvdcss' 'smbclient'
- 'vcdimager' 'libssh2' 'mesa' 'protobuf' 'libnfs' 'mpg123'
- 'libdvdread' 'libdvdnav' 'libogg' 'libshout' 'libmodplug' 'libvpx'
- 'libvorbis' 'speex' 'opus' 'libtheora' 'libpng' 'libjpeg-turbo'
- 'libx265.so' 'libx264.so' 'zvbi' 'libass' 'libkate' 'libtiger'
- 'sdl_image' 'libpulse' 'alsa-lib' 'jack' 'libsamplerate' 'libsoxr'
- 'lirc' 'libgoom2' 'projectm' 'chromaprint' 'aom' 'srt' 'dav1d')
-optdepends=('avahi: service discovery using bonjour protocol'
-'aom: AOM AV1 codec'
-'gst-plugins-base-libs: for libgst plugins'
-'dav1d: dav1d AV1 decoder'
-'libdvdcss: decoding encrypted DVDs'
-'libavc1394: devices using the 1394ta AV/C'
-'libdc1394: IEEE 1394 access plugin'
-'kwallet: kwallet keystore'
-'libva-vdpau-driver: vdpau backend nvidia'
-'libva-intel-driver: video backend intel'
-'libbluray: Blu-Ray video input'
-'flac: Free Lossless Audio Codec plugin'
-'twolame: TwoLAME mpeg2 encoder plugin'
-'libgme: Game Music Emu plugin'
-'vcdimager: navigate VCD with libvcdinfo'
-'libmtp: MTP devices discovery'
-'systemd-libs: udev services discovery'
-'smbclient: SMB access plugin'
-'libcdio: audio CD playback'
-'ttf-freefont: subtitle font '
-'ttf-dejavu: subtitle font'
-'libssh2: sftp access'
-'libnfs: NFS access'
-'mpg123: mpg123 codec'
-'protobuf: chromecast streaming'
-'libmicrodns: mDNS services discovery (chromecast etc)'
-'lua-socket: http interface'
-'live-media: RTSP input'
-'libdvdread: DVD input module'
-'libdvdnav: DVD with navigation input module'
-'libogg: Ogg and OggSpots codec'
-'libshout: shoutcast/icecast output plugin'
-'libmodplug: MOD output plugin'
-'libvpx: VP8 and VP9 codec'
-'libvorbis: Vorbis decoder/encoder'
-'speex: Speex codec'
-'opus: opus codec'
-'libtheora: theora codec'
-'libpng: PNG support'
-'libjpeg-turbo: JPEG support'
-'librsvg: SVG plugin'
-'x264: H264 encoding'
-

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:52:42
  Author: lfleischer
Revision: 520767

db-move: moved clementine from [community-testing] to [community] (x86_64)

Added:
  clementine/repos/community-x86_64/PKGBUILD
(from rev 520766, clementine/repos/community-testing-x86_64/PKGBUILD)
  clementine/repos/community-x86_64/clementine-gcc6.patch
(from rev 520766, 
clementine/repos/community-testing-x86_64/clementine-gcc6.patch)
Deleted:
  clementine/repos/community-testing-x86_64/
  clementine/repos/community-x86_64/PKGBUILD
  clementine/repos/community-x86_64/clementine-gcc6.patch

+
 /PKGBUILD  |   97 +++
 /clementine-gcc6.patch |   22 +++
 community-x86_64/PKGBUILD  |   97 ---
 community-x86_64/clementine-gcc6.patch |   22 ---
 4 files changed, 119 insertions(+), 119 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-10-27 18:52:29 UTC (rev 520766)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:42 UTC (rev 520767)
@@ -1,97 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Stéphane Gaudreault 
-# Contributor: BlackEagle 
-# Contributor: Dany Martineau 
-
-pkgname=clementine
-pkgver=1.3.1.r771.75f18dab2
-pkgrel=1
-pkgdesc='A modern music player and library organizer'
-url=https://www.clementine-player.org/
-license=(GPL)
-arch=(x86_64)
-depends=(
-  chromaprint
-  crypto++
-  fftw
-  glew
-  glib2
-  gst-plugins-base-libs
-  gstreamer
-  libcdio
-  libgl
-  libgpod
-  liblastfm-qt5
-  libmtp
-  libmygpo-qt5
-  libpulse
-  libx11
-  protobuf
-  qt5-base
-  qt5-x11extras
-  sqlite
-  zlib
-)
-makedepends=(
-  boost
-  cmake
-  git
-  mesa
-  qt5-tools
-  sparsehash
-)
-optdepends=(
-  'gst-plugins-base: "Base" plugin libraries'
-  'gst-plugins-good: "Good" plugin libraries'
-  'gst-plugins-bad: "Bad" plugin libraries'
-  'gst-plugins-ugly: "Ugly" plugin libraries'
-  'gst-libav: Libav plugin'
-  'gvfs: Various devices support'
-)
-source=(
-  
git+https://github.com/clementine-player/Clementine.git#commit=75f18dab23f0842713a4200a7e362efd51b12e31
-  clementine-gcc6.patch
-)
-sha256sums=(
-  SKIP
-  05bd4dc0138eed084332fa1a688a96858418731f337f54e0d8ab0853123f40ee
-)
-
-pkgver() {
-  cd Clementine
-
-  git describe --tags | sed 's/-/.r/; s/-g/./'
-}
-
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  cd Clementine
-
-  # Fix build with GCC 6
-  patch -p1 -i ../clementine-gcc6.patch
-  # https://github.com/clementine-player/Clementine/pull/5630
-  git cherry-pick -n 8a6cc8b5069265e1e92e22def985e22c5955e503
-  # FS#58413
-  git cherry-pick -n -m 1 75f9439843a0e9cdc26cd739d5e1dbd93bd974bc
-  # Fix DI.FM
-  git cherry-pick -n ddfa5e63f1ef0e243a007efbe576fceb9b2442e8
-}
-
-build() {
-  cd build
-
-  cmake ../Clementine \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: clementine/repos/community-x86_64/PKGBUILD (from rev 520766, 
clementine/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-27 18:52:42 UTC (rev 520767)
@@ -0,0 +1,97 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Stéphane Gaudreault 
+# Contributor: BlackEagle 
+# Contributor: Dany Martineau 
+
+pkgname=clementine
+pkgver=1.3.1.r831.664c5a31f
+pkgrel=2
+pkgdesc='A modern music player and library organizer'
+url=https://www.clementine-player.org/
+license=(GPL)
+arch=(x86_64)
+depends=(
+  chromaprint
+  crypto++
+  fftw
+  glew
+  glib2
+  gst-plugins-base-libs
+  gstreamer
+  libcdio
+  libgl
+  libgpod
+  liblastfm-qt5
+  libmtp
+  libmygpo-qt5
+  libpulse
+  libx11
+  protobuf
+  qt5-base
+  qt5-x11extras
+  sqlite
+  zlib
+)
+makedepends=(
+  boost
+  cmake
+  git
+  mesa
+  qt5-tools
+  sparsehash
+)
+optdepends=(
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+  'gst-libav: Libav plugin'
+  'gvfs: Various devices support'
+)
+source=(
+  
git+https://github.com/clementine-player/Clementine.git#commit=664c5a31f9cf519af5a4c3adcb30dbbc73d037d6
+  clementine-gcc6.patch
+)
+sha256sums=(
+  SKIP
+  05bd4dc0138eed084332fa1a688a96858418731f337f54e0d8ab0853123f40ee
+)
+
+pkgver() {
+  cd Clementine
+
+  git describe --tags | sed 's/-/.r/; s/-g/./'
+}
+
+prepare() {
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+
+  cd Clementine
+
+  # Fix build with GCC 6
+  patch -p1 -i ../clementine-gcc6.patch
+  # https://github.com/clementine-player/Clementine/pull/5630
+  git cherry-pick -n 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:52:05
  Author: lfleischer
Revision: 365948

db-move: moved usbguard from [testing] to [extra] (x86_64)

Added:
  usbguard/repos/extra-x86_64/PKGBUILD
(from rev 365947, usbguard/repos/testing-x86_64/PKGBUILD)
  
usbguard/repos/extra-x86_64/make-explicitly-treat-pthread-as-first-level-depende.patch
(from rev 365947, 
usbguard/repos/testing-x86_64/make-explicitly-treat-pthread-as-first-level-depende.patch)
Deleted:
  usbguard/repos/extra-x86_64/PKGBUILD
  usbguard/repos/testing-x86_64/

-+
 /PKGBUILD   |   67 
+
 extra-x86_64/PKGBUILD   |   81 
-
 extra-x86_64/make-explicitly-treat-pthread-as-first-level-depende.patch |  598 
++
 3 files changed, 665 insertions(+), 81 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:58 UTC (rev 365947)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:52:05 UTC (rev 365948)
@@ -1,81 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ian Beringer 
-
-pkgbase=usbguard
-pkgname=('usbguard' 'usbguard-qt')
-pkgver=0.7.4
-pkgrel=5
-pkgdesc='Software framework for implementing USB device authorization policies'
-url='https://github.com/dkopecek/usbguard'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('git' 'libxslt' 'asciidoc' 'catch2' 'pegtl' 'qt5-base' 'qt5-svg' 
'qt5-tools' 'hicolor-icon-theme'
- 'glibc' 'libqb' 'libqb.so' 'libsodium' 'libcap-ng' 'protobuf' 
'polkit' 'dbus-glib')
-source=(https://github.com/dkopecek/usbguard/releases/download/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.gz{,.sig})
-sha512sums=('9799d4e89282f4adb57310e3a8ae0c3f0921ebba57393256beb1b9b8e8a8f2290c30716f100cd41c6dd1b6d44714880043d6fbd89a12e654c2a183c628dbd366'
-'SKIP')
-validpgpkeys=('430C1928960157CC45FA1BEBAA06120530AE0466') # Daniel Kopeček 

-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed 's|/usr/include/catch|/usr/include/catch2|g' -i configure.ac
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sys=/etc \
---sbindir=/usr/bin \
---libdir=/usr/lib \
---enable-systemd \
---without-bundled-catch \
---without-bundled-pegtl \
---with-dbus \
---with-polkit \
---with-crypto-library=sodium \
---with-gui-qt=qt5
-  make
-  touch rules.conf
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  make check
-}
-
-package_usbguard() {
-  depends=('glibc' 'libqb' 'libqb.so' 'libsodium' 'libcap-ng' 'protobuf' 
'polkit' 'dbus-glib')
-  provides=('libusbguard.so')
-  backup=(etc/usbguard/usbguard-daemon.conf
-  etc/usbguard/rules.conf)
-  cd ${pkgbase}-${pkgver}
-  make INSTALL='install -p' SYSTEMD_UNIT_DIR="/usr/lib/systemd/system" 
DESTDIR="${pkgdir}" install
-  chmod 750 "${pkgdir}/etc/usbguard"
-  install -Dpm 600 usbguard-daemon.conf rules.conf -t "${pkgdir}/etc/usbguard"
-
-  # completion
-  install -Dpm 644 scripts/bash_completion/usbguard -t 
"${pkgdir}/usr/share/bash-completion/completions"
-  install -Dpm 644 scripts/usbguard-zsh-completion 
"${pkgdir}/usr/share/zsh/site-functions/_usbguard"
-
-  # cleanup
-  cd "${pkgdir}"
-  rm -rf 
usr/{bin/usbguard-applet-qt,share/{applications,icons,man/man1/usbguard-applet-qt.1}}
-}
-
-package_usbguard-qt() {
-  pkgdesc+=' - Qt frontend'
-  depends=('usbguard' 'libusbguard.so' 'qt5-base' 'qt5-svg' 'qt5-tools' 
'hicolor-icon-theme')
-  cd ${pkgbase}-${pkgver}
-  make INSTALL='install -p' SYSTEMD_UNIT_DIR="/usr/lib/systemd/system" 
DESTDIR="${pkgdir}" install
-
-  # cleanup
-  cd "${pkgdir}"
-  rm -rf 
{etc,var,usr/{include,lib,share/{dbus-1,polkit-1,man/{man1/usbguard.1,man5,man8
 \
-usr/bin/usbguard{,-daemon,-dbus,-rule-parser}
-}
-
-# vim: ts=2 sw=2 et:

Copied: usbguard/repos/extra-x86_64/PKGBUILD (from rev 365947, 
usbguard/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:52:05 UTC (rev 365948)
@@ -0,0 +1,67 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ian Beringer 
+
+pkgname=usbguard
+pkgver=0.7.5
+pkgrel=1
+pkgdesc='Software framework for implementing USB device authorization policies'
+url='https://github.com/dkopecek/usbguard'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc' 'libqb' 'libqb.so' 'libsodium' 'libcap-ng' 'protobuf' 
'polkit' 'dbus-glib'
+ 'audit' 'libaudit.so' 'libseccomp' 'libseccomp.so')
+makedepends=('catch2' 'pegtl' 'libxslt' 'asciidoc' 'systemd')
+provides=('libusbguard.so')
+backup=(etc/usbguard/usbguard-daemon.conf
+etc/usbguard/rules.conf)

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:45
  Author: lfleischer
Revision: 365945

db-move: moved libphonenumber from [testing] to [extra] (x86_64)

Added:
  libphonenumber/repos/extra-x86_64/PKGBUILD
(from rev 365944, libphonenumber/repos/testing-x86_64/PKGBUILD)
Deleted:
  libphonenumber/repos/extra-x86_64/PKGBUILD
  libphonenumber/repos/testing-x86_64/

---+
 /PKGBUILD |   40 
 extra-x86_64/PKGBUILD |   40 
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:39 UTC (rev 365944)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:45 UTC (rev 365945)
@@ -1,40 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libphonenumber
-pkgver=8.10.18
-pkgrel=2
-pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
-url="https://github.com/googlei18n/libphonenumber;
-arch=(x86_64)
-license=(Apache)
-depends=(icu protobuf boost-libs)
-makedepends=(boost cmake gtest git 'java-environment>=9')
-_commit=c10211f2c56ab2b67ef8e6936e96a72bff37fbcc  # tags/v8.10.18^0
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^libphonenumber-\|^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
-  CXXFLAGS+=" -Wno-error=unused-variable"  # this is nuts
-  cmake -H$pkgname/cpp -Bbuild \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  cmake --build build
-}
-
-check() {
-  cmake --build build --target tests
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --build build --target install
-}

Copied: libphonenumber/repos/extra-x86_64/PKGBUILD (from rev 365944, 
libphonenumber/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:45 UTC (rev 365945)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libphonenumber
+pkgver=8.10.20
+pkgrel=2
+pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
+url="https://github.com/googlei18n/libphonenumber;
+arch=(x86_64)
+license=(Apache)
+depends=(icu protobuf boost-libs)
+makedepends=(boost cmake gtest git 'java-environment>=9')
+_commit=b8da23f917f8553a0d06979d1da02f304d8f6659  # tags/v8.10.20^0
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libphonenumber-\|^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
+  CXXFLAGS+=" -Wno-error=unused-variable"  # this is nuts
+  cmake -H$pkgname/cpp -Bbuild \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  cmake --build build
+}
+
+check() {
+  cmake --build build --target tests
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --build build --target install
+}


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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:51
  Author: lfleischer
Revision: 365946

db-move: moved protobuf from [testing] to [extra] (x86_64)

Added:
  protobuf/repos/extra-x86_64/PKGBUILD
(from rev 365945, protobuf/repos/testing-x86_64/PKGBUILD)
Deleted:
  protobuf/repos/extra-x86_64/PKGBUILD
  protobuf/repos/testing-x86_64/

---+
 /PKGBUILD |   63 ++
 extra-x86_64/PKGBUILD |   87 
 2 files changed, 63 insertions(+), 87 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:45 UTC (rev 365945)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:51 UTC (rev 365946)
@@ -1,87 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Aleksey Filippov 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Thomas S Hatch 
-# Contributor: Geoffroy Carrier 
-# Contributor: Daniel J Griffiths 
-
-pkgbase='protobuf'
-pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
-pkgver=3.7.0
-_gtestver=1.8.0
-pkgrel=1
-pkgdesc="Protocol Buffers - Google's data interchange format"
-arch=('x86_64')
-url='https://developers.google.com/protocol-buffers/'
-license=('BSD')
-depends=('gcc-libs' 'zlib')
-makedepends=('unzip' 'python-setuptools' 'python2-setuptools')
-source=("$pkgbase-$pkgver.tgz::https://github.com/google/${pkgbase}/archive/v${pkgver}.tar.gz;
-
"gtest-${_gtestver}.tar.gz::https://github.com/google/googletest/archive/release-${_gtestver}.tar.gz;)
-md5sums=('99ab003ca0e98c9dc40edbd60dd43633'
- '16877098823401d1bf2ed7891d7dce36')
-
-prepare() {
-  cd "$pkgbase-$pkgver"
-
-  cp -r "$srcdir/googletest-release-${_gtestver}/googletest" 
third_party/googletest/googletest
-  cp -r "$srcdir/googletest-release-${_gtestver}/googlemock" 
third_party/googletest/googlemock
-
-  sed -r 's|/usr/bin/env python|/usr/bin/env python2|' -i 
third_party/googletest/googletest/scripts/*.py
-}
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  ./autogen.sh
-
-  cd "$srcdir/$pkgbase-$pkgver/third_party/googletest/googletest"
-  autoreconf -fiv
-  ./configure
-  make
-
-  cd "$srcdir/$pkgbase-$pkgver/third_party/googletest/googlemock"
-  autoreconf -fiv
-  ./configure
-  make
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  make -C "$srcdir/$pkgbase-$pkgver" check
-}
-
-package_protobuf() {
-  replaces=('protobuf-cpp')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 editors/protobuf-mode.el 
"$pkgdir"/usr/share/emacs/site-lisp/protobuf-mode.el
-}
-
-package_python2-protobuf() {
-  pkgdesc='Python 2 bindings for Google Protocol Buffers'
-  depends=('python2' 'python2-six' "protobuf=$pkgver")
-
-  cd "$srcdir/$pkgbase-$pkgver/python"
-  python2 setup.py install --root="$pkgdir" --cpp_implementation
-
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}
-
-package_python-protobuf() {
-  pkgdesc='Python 3 bindings for Google Protocol Buffers'
-  depends=('python' 'python-six' "protobuf=$pkgver")
-
-  cd "$srcdir/$pkgbase-$pkgver/python"
-  python3 setup.py install --root="$pkgdir" --cpp_implementation
-
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: protobuf/repos/extra-x86_64/PKGBUILD (from rev 365945, 
protobuf/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:51 UTC (rev 365946)
@@ -0,0 +1,63 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+
+pkgbase='protobuf'
+pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
+pkgver=3.10.0
+pkgrel=1
+pkgdesc="Protocol Buffers - Google's data interchange format"
+arch=('x86_64')
+url='https://developers.google.com/protocol-buffers/'
+license=('BSD')
+depends=('gcc-libs' 'zlib')
+makedepends=('unzip' 'python-setuptools' 'python2-setuptools')
+source=("https://github.com/protocolbuffers/$pkgname/releases/download/v$pkgver/$pkgname-all-$pkgver.tar.gz;)
+md5sums=('7ec0c87d5abd0d8111ad55958f3dacee')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C "$srcdir/$pkgbase-$pkgver" check
+}
+
+package_protobuf() {
+  replaces=('protobuf-cpp')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:58
  Author: lfleischer
Revision: 365947

db-move: moved protobuf-c from [testing] to [extra] (x86_64)

Added:
  protobuf-c/repos/extra-x86_64/PKGBUILD
(from rev 365946, protobuf-c/repos/testing-x86_64/PKGBUILD)
Deleted:
  protobuf-c/repos/extra-x86_64/PKGBUILD
  protobuf-c/repos/extra-x86_64/invalid-namespace.patch
  protobuf-c/repos/testing-x86_64/

--+
 /PKGBUILD|   31 ++
 extra-x86_64/PKGBUILD|   38 -
 extra-x86_64/invalid-namespace.patch |   23 ---
 3 files changed, 31 insertions(+), 61 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:51 UTC (rev 365946)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:58 UTC (rev 365947)
@@ -1,38 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Aurélien Wailly 
-
-pkgname=protobuf-c
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='Protocol Buffers implementation in C'
-arch=('x86_64')
-url='https://github.com/protobuf-c/protobuf-c'
-license=('BSD')
-depends=('protobuf')
-provides=('libprotobuf-c.so')
-source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
-invalid-namespace.patch)
-sha256sums=('51472d3a191d6d7b425e32b612e477c06f73fe23e07f6a6a839b11808e9d2267'
-'050306bae86af55f90606613d3c362c3c93af779aa6be3e639c6a1df3c228c87')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  patch -p1 -i ../invalid-namespace.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  make -C "$pkgname-$pkgver" check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: protobuf-c/repos/extra-x86_64/PKGBUILD (from rev 365946, 
protobuf-c/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:58 UTC (rev 365947)
@@ -0,0 +1,31 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Aurélien Wailly 
+
+pkgname=protobuf-c
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='Protocol Buffers implementation in C'
+arch=('x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+provides=('libprotobuf-c.so')
+source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('53f251f14c597bdb087aecf0b63630f434d73f5a10fc1ac545073597535b9e74')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/invalid-namespace.patch
===
--- extra-x86_64/invalid-namespace.patch2019-10-27 18:51:51 UTC (rev 
365946)
+++ extra-x86_64/invalid-namespace.patch2019-10-27 18:51:58 UTC (rev 
365947)
@@ -1,23 +0,0 @@
-From 080724364a5aad61728f8eba57677467bf329088 Mon Sep 17 00:00:00 2001
-From: storyun 
-Date: Wed, 19 Sep 2018 11:34:48 +0900
-Subject: [PATCH] Invalid namespace
-
-google::protobuf::message::Reflaction is not exist namespace.

- t/generated-code2/cxx-generate-packed-data.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/generated-code2/cxx-generate-packed-data.cc 
b/t/generated-code2/cxx-generate-packed-data.cc
-index 4fd3e25..0865d2e 100644
 a/t/generated-code2/cxx-generate-packed-data.cc
-+++ b/t/generated-code2/cxx-generate-packed-data.cc
-@@ -998,7 +998,7 @@ static void dump_test_packed_repeated_enum (void)
- static void dump_test_unknown_fields (void)
- {
-   EmptyMess mess;
--  const google::protobuf::Message::Reflection *reflection = 
mess.GetReflection();
-+  const google::protobuf::Reflection *reflection = mess.GetReflection();
-   google::protobuf::UnknownFieldSet *fs = 
reflection->MutableUnknownFields();
- 
- #if GOOGLE_PROTOBUF_VERSION >= 2001000


[arch-commits] Commit in hefur/repos (9 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:18
  Author: lfleischer
Revision: 365942

db-move: moved hefur from [testing] to [extra] (x86_64)

Added:
  hefur/repos/extra-x86_64/PKGBUILD
(from rev 365941, hefur/repos/testing-x86_64/PKGBUILD)
  hefur/repos/extra-x86_64/hefurd.service
(from rev 365941, hefur/repos/testing-x86_64/hefurd.service)
  hefur/repos/extra-x86_64/sysusers.conf
(from rev 365941, hefur/repos/testing-x86_64/sysusers.conf)
  hefur/repos/extra-x86_64/tmpfiles.conf
(from rev 365941, hefur/repos/testing-x86_64/tmpfiles.conf)
Deleted:
  hefur/repos/extra-x86_64/PKGBUILD
  hefur/repos/extra-x86_64/hefurd.service
  hefur/repos/extra-x86_64/sysusers.conf
  hefur/repos/extra-x86_64/tmpfiles.conf
  hefur/repos/testing-x86_64/

-+
 /PKGBUILD   |   45 ++
 /hefurd.service |   12 +++
 /sysusers.conf  |1 
 /tmpfiles.conf  |2 +
 extra-x86_64/PKGBUILD   |   45 --
 extra-x86_64/hefurd.service |   12 ---
 extra-x86_64/sysusers.conf  |1 
 extra-x86_64/tmpfiles.conf  |2 -
 8 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 15:24:13 UTC (rev 365941)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:18 UTC (rev 365942)
@@ -1,45 +0,0 @@
-# Maintainer: Pierre Schmitz 
-# Contributor: Alexandre Bique 
-
-pkgname=hefur
-pkgver=0.6
-pkgrel=7
-pkgdesc='A standalone and lightweight BitTorrent tracker'
-arch=('x86_64')
-url='https://github.com/abique/hefur'
-license=('MIT')
-makedepends=('git' 'cmake' 'docbook-xsl')
-depends=('gnutls' 'xz' 'protobuf')
-source=("git+https://github.com/abique/${pkgname}.git#tag=${pkgver};
-'hefurd.service' 'tmpfiles.conf' 'sysusers.conf')
-md5sums=('SKIP'
- '3107be29769b8afde3574dc6e31d5b6a'
- 'b884385d6c87c350172427da4ba2688f'
- '7971708a1fe25c1b51e0a05e812f17c9')
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-   git submodule init
-   git submodule update
-   sed -i "s/PROJECT_NUMBER.*/PROJECT_NUMBER=${pkgver}/g" Doxyfile
-}
-
-build() {
-   cd ${srcdir}/${pkgname}/manual
-   xsltproc -o manual.html 
/usr/share/xml/docbook/xsl-stylesheets-*/html/docbook.xsl manual.xml
-
-   cd ${srcdir}/${pkgname}
-   mkdir build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}/build
-   DESTDIR=${pkgdir} make install
-   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
-   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
-   install -D -m644 ${srcdir}/sysusers.conf 
${pkgdir}/usr/lib/sysusers.d/hefurd.conf
-   install -D -m644 ${srcdir}/${pkgname}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
-}

Copied: hefur/repos/extra-x86_64/PKGBUILD (from rev 365941, 
hefur/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:18 UTC (rev 365942)
@@ -0,0 +1,45 @@
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.6
+pkgrel=8
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('x86_64')
+url='https://github.com/abique/hefur'
+license=('MIT')
+makedepends=('git' 'cmake' 'docbook-xsl')
+depends=('gnutls' 'xz' 'protobuf')
+source=("git+https://github.com/abique/${pkgname}.git#tag=${pkgver};
+'hefurd.service' 'tmpfiles.conf' 'sysusers.conf')
+md5sums=('SKIP'
+ '3107be29769b8afde3574dc6e31d5b6a'
+ 'b884385d6c87c350172427da4ba2688f'
+ '7971708a1fe25c1b51e0a05e812f17c9')
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+   git submodule init
+   git submodule update
+   sed -i "s/PROJECT_NUMBER.*/PROJECT_NUMBER=${pkgver}/g" Doxyfile
+}
+
+build() {
+   cd ${srcdir}/${pkgname}/manual
+   xsltproc -o manual.html 
/usr/share/xml/docbook/xsl-stylesheets-*/html/docbook.xsl manual.xml
+
+   cd ${srcdir}/${pkgname}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}/build
+   DESTDIR=${pkgdir} make install
+   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
+   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
+   install -D -m644 ${srcdir}/sysusers.conf 
${pkgdir}/usr/lib/sysusers.d/hefurd.conf
+   install -D -m644 ${srcdir}/${pkgname}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
+}

Deleted: extra-x86_64/hefurd.service
===
--- 

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

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:39
  Author: lfleischer
Revision: 365944

db-move: moved libgadu from [testing] to [extra] (x86_64)

Added:
  libgadu/repos/extra-x86_64/PKGBUILD
(from rev 365943, libgadu/repos/testing-x86_64/PKGBUILD)
Deleted:
  libgadu/repos/extra-x86_64/PKGBUILD
  libgadu/repos/testing-x86_64/

---+
 /PKGBUILD |   28 
 extra-x86_64/PKGBUILD |   28 
 2 files changed, 28 insertions(+), 28 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:29 UTC (rev 365943)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:39 UTC (rev 365944)
@@ -1,28 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Mateusz Herych 
-
-pkgname=libgadu
-pkgver=1.12.2
-pkgrel=8
-pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
-arch=('x86_64')
-url="http://libgadu.net/;
-license=('LGPL2.1')
-depends=('gnutls' 'protobuf-c')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/wojtekka/libgadu/archive/$pkgver.tar.gz;)
-md5sums=('1eecae8245d696adfbcfd40a2b36f0ca')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./autogen.sh
-  ./protobufgen.sh
-  ./configure --prefix=/usr --disable-tests --disable-static
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libgadu/repos/extra-x86_64/PKGBUILD (from rev 365943, 
libgadu/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:39 UTC (rev 365944)
@@ -0,0 +1,28 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Mateusz Herych 
+
+pkgname=libgadu
+pkgver=1.12.2
+pkgrel=9
+pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
+arch=('x86_64')
+url="https://libgadu.net/;
+license=('LGPL2.1')
+depends=('gnutls' 'protobuf-c')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/wojtekka/libgadu/archive/$pkgver.tar.gz;)
+md5sums=('1eecae8245d696adfbcfd40a2b36f0ca')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./autogen.sh
+  ./protobufgen.sh
+  ./configure --prefix=/usr --disable-tests --disable-static
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in kismet/repos (9 files)

2019-10-27 Thread Lukas Fleischer via arch-commits
Date: Sunday, October 27, 2019 @ 18:51:29
  Author: lfleischer
Revision: 365943

db-move: moved kismet from [testing] to [extra] (x86_64)

Added:
  kismet/repos/extra-x86_64/PKGBUILD
(from rev 365942, kismet/repos/testing-x86_64/PKGBUILD)
  kismet/repos/extra-x86_64/kismet.install
(from rev 365942, kismet/repos/testing-x86_64/kismet.install)
  kismet/repos/extra-x86_64/kismet.sysusers
(from rev 365942, kismet/repos/testing-x86_64/kismet.sysusers)
  kismet/repos/extra-x86_64/python-install-flags.patch
(from rev 365942, kismet/repos/testing-x86_64/python-install-flags.patch)
Deleted:
  kismet/repos/extra-x86_64/PKGBUILD
  kismet/repos/extra-x86_64/kismet.install
  kismet/repos/extra-x86_64/kismet.sysusers
  kismet/repos/extra-x86_64/python-install-flags.patch
  kismet/repos/testing-x86_64/

-+
 /PKGBUILD   |   72 ++
 /kismet.install |   19 +++
 /kismet.sysusers|1 
 /python-install-flags.patch |   45 ++
 extra-x86_64/PKGBUILD   |   72 --
 extra-x86_64/kismet.install |   19 ---
 extra-x86_64/kismet.sysusers|1 
 extra-x86_64/python-install-flags.patch |   45 --
 8 files changed, 137 insertions(+), 137 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-10-27 18:51:18 UTC (rev 365942)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:29 UTC (rev 365943)
@@ -1,72 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Juergen Hoetzel 
-# Contributor: Angel Velasquez 
-# Contributor: Jason Chu 
-
-pkgname=kismet
-pkgver=2019_09_R1
-_realver="${pkgver//_/-}"
-pkgrel=2
-pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
-url="https://www.kismetwireless.net/;
-arch=('x86_64')
-license=('GPL')
-depends=('libpcap' 'pcre' 'bluez-libs' 'libcap' 'libmicrohttpd' 'protobuf-c' 
'libprotobuf-c.so'
- 'sqlite' 'libnm' 'gcc-libs' 'libusb' 'libusb-1.0.so' 'libnl' 'glibc' 
'zlib' 'libelf'
- 'lm_sensors' 'systemd' 'python' 'python-setuptools' 'python-protobuf' 
'python-pyserial'
- 'python-numpy')
-makedepends=('python-setuptools')
-optdepends=(
-  'gpsd: log coordinates of detected networks'
-  'wireshark-cli: provide OUI files used to determine device manufacturer'
-  'wireshark-cli: mergecap, to merge multiple capture files'
-  'sox: provide the default kismet sound playback binary'
-  'festival: text-to-speech support'
-  'flite:  alternative/lightweight text-to-speech support')
-backup=(
-  etc/kismet/kismet.conf
-  etc/kismet/kismet_80211.conf
-  etc/kismet/kismet_alerts.conf
-  etc/kismet/kismet_filter.conf
-  etc/kismet/kismet_httpd.conf
-  etc/kismet/kismet_logging.conf
-  etc/kismet/kismet_memory.conf
-  etc/kismet/kismet_storage.conf
-  etc/kismet/kismet_uav.conf)
-install=kismet.install
-source=(https://www.kismetwireless.net/code/${pkgname}-${_realver}.tar.xz
-kismet.sysusers
-python-install-flags.patch)
-sha512sums=('eeaf069718206f2b6d292c41792217afc9c72c10ffa014c8c670de64195bd28d44f33364dba7d338610f17a5af2be3c125ccd1297cce362159a4968c9ddabb88'
-
'452b728c30c9932bdb91741af425267da87a66962ea9b736751948881f5477dee0bff8e2eeca2befdea2920da6d7d9e198bde69cef8c48bb49a0093a7f0ef897'
-
'b5eb82f343485fdf617de007ee7ef63e3375c54fea17664dca474965b6a548c4663b416ca062c039349eb141ad03c870997e5fa7ffa1d2058282171de80ca38e')
-validpgpkeys=('354689DF3C9DED803381A661D7B28822738BBDB1') # Michael Kershaw
-
-prepare() {
-  cd ${pkgname}-${_realver}
-  patch -Np0 < ../python-install-flags.patch
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${_realver}
-  ./configure \
---prefix=/usr \
---localstatedir=/var \
---sysconfdir=/etc/kismet
-  make all plugins
-}
-
-package() {
-  cd ${pkgname}-${_realver}
-  make DESTDIR="${pkgdir}" install
-
-  # Makepkg strip bug #43600
-  chmod u+w "${pkgdir}"/usr/bin/kismet*
-  chmod o-x "${pkgdir}"/usr/bin/kismet_cap*
-  chown 0:315 "${pkgdir}"/usr/bin/kismet_cap*
-
-  install -Dm 644 ../kismet.sysusers "${pkgdir}/usr/lib/sysusers.d/kismet.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kismet/repos/extra-x86_64/PKGBUILD (from rev 365942, 
kismet/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-10-27 18:51:29 UTC (rev 365943)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Juergen Hoetzel 
+# Contributor: Angel Velasquez 
+# Contributor: Jason Chu 
+
+pkgname=kismet
+pkgver=2019_09_R1
+_realver="${pkgver//_/-}"
+pkgrel=3
+pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion 
detection system"
+url="https://www.kismetwireless.net/;

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

2019-10-27 Thread Eli Schwartz via arch-commits
Date: Sunday, October 27, 2019 @ 18:37:52
  Author: eschwartz
Revision: 520765

archrelease: copy trunk to community-x86_64

Added:
  busybox/repos/community-x86_64/PKGBUILD
(from rev 520764, busybox/trunk/PKGBUILD)
  busybox/repos/community-x86_64/config
(from rev 520764, busybox/trunk/config)
Deleted:
  busybox/repos/community-x86_64/PKGBUILD
  busybox/repos/community-x86_64/config

--+
 PKGBUILD |   81 +-
 config   | 2375 ++---
 2 files changed, 1232 insertions(+), 1224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 18:37:30 UTC (rev 520764)
+++ PKGBUILD2019-10-27 18:37:52 UTC (rev 520765)
@@ -1,39 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli Schwartz 
-# Contributor: Jens Pranaitis 
-
-pkgname=busybox
-pkgver=1.30.1
-pkgrel=4
-pkgdesc="Utilities for rescue and embedded systems"
-arch=("x86_64")
-url="https://www.busybox.net;
-license=('GPL')
-makedepends=("ncurses" "musl" "kernel-headers-musl")
-validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B')
-source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
-"config")
-sha256sums=('3d1d04a4dbd34048f4794815a5c48ebb9eb53c5277e09c060323b95dfbdc'
-'SKIP'
-'e1deb1d6980cbe2e29663667b6b455af31b303499d049e07a88b6d2d52b8625f')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cp "$srcdir"/config .config
-  # reproducible build
-  export KCONFIG_NOTIMESTAMP=1
-  make CC=musl-gcc
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
-
-  # docs
-  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
-  for doc in BusyBox.html BusyBox.txt; do
-install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
-  done
-}

Copied: busybox/repos/community-x86_64/PKGBUILD (from rev 520764, 
busybox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 18:37:52 UTC (rev 520765)
@@ -0,0 +1,42 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+# Contributor: Jens Pranaitis 
+
+pkgname=busybox
+pkgver=1.31.1
+pkgrel=1
+pkgdesc="Utilities for rescue and embedded systems"
+arch=("x86_64")
+url="https://www.busybox.net;
+license=('GPL')
+makedepends=("ncurses" "musl" "kernel-headers-musl")
+validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B')
+source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
+"config")
+sha256sums=('d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998'
+'SKIP'
+'3fc329e671bcff93b976ed9f6ca47eaa53468811eccae2ad50ca50611d37004e')
+b2sums=('95c2345bc715eb7a1f08816a40add9b7a6176ef509a84069343ec2caddec58d8d57a07676ca2b03c209734169321433e27ba963b4c8b98dbfda4e409dcc347b4'
+'SKIP'
+
'de6cfe15b2c1c18e049f64f4ad67447f5db80076eb7fed83b09b7014dbd1ce55f0b382bedcfaecbcd205c3366d045cde1db7e2d7046715446f76466fd9ea6b7b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cp "$srcdir"/config .config
+  # reproducible build
+  export KCONFIG_NOTIMESTAMP=1
+  make CC=musl-gcc
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
+
+  # docs
+  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
+  for doc in BusyBox.html BusyBox.txt; do
+install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
+  done
+}

Deleted: config
===
--- config  2019-10-27 18:37:30 UTC (rev 520764)
+++ config  2019-10-27 18:37:52 UTC (rev 520765)
@@ -1,1185 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# Busybox version: 1.30.1
-# Sun Sep  1 18:10:19 2019
-#
-CONFIG_HAVE_DOT_CONFIG=y
-
-#
-# Settings
-#
-CONFIG_DESKTOP=y
-# CONFIG_EXTRA_COMPAT is not set
-# CONFIG_FEDORA_COMPAT is not set
-CONFIG_INCLUDE_SUSv2=y
-CONFIG_LONG_OPTS=y
-CONFIG_SHOW_USAGE=y
-CONFIG_FEATURE_VERBOSE_USAGE=y
-CONFIG_FEATURE_COMPRESS_USAGE=y
-CONFIG_LFS=y
-# CONFIG_PAM is not set
-CONFIG_FEATURE_DEVPTS=y
-# CONFIG_FEATURE_UTMP is not set
-# CONFIG_FEATURE_WTMP is not set
-CONFIG_FEATURE_PIDFILE=y
-CONFIG_PID_FILE_PATH="/run"
-CONFIG_BUSYBOX=y
-# CONFIG_FEATURE_SHOW_SCRIPT is not set
-CONFIG_FEATURE_INSTALLER=y
-# CONFIG_INSTALL_NO_USR is not set
-CONFIG_FEATURE_SUID=y
-CONFIG_FEATURE_SUID_CONFIG=y
-CONFIG_FEATURE_SUID_CONFIG_QUIET=y
-CONFIG_FEATURE_PREFER_APPLETS=y
-CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
-# CONFIG_SELINUX is not set
-# CONFIG_FEATURE_CLEAN_UP is not set
-CONFIG_FEATURE_SYSLOG=y
-CONFIG_PLATFORM_LINUX=y
-
-#
-# Build Options
-#
-CONFIG_STATIC=y
-# CONFIG_PIE is not set
-# CONFIG_NOMMU is not set
-# CONFIG_BUILD_LIBBUSYBOX is not set
-# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set
-# CONFIG_FEATURE_INDIVIDUAL is not set
-# CONFIG_FEATURE_SHARED_BUSYBOX is not set

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

2019-10-27 Thread Eli Schwartz via arch-commits
Date: Sunday, October 27, 2019 @ 18:37:30
  Author: eschwartz
Revision: 520764

upgpkg: busybox 1.31.1-1

upstream release

Modified:
  busybox/trunk/PKGBUILD
  busybox/trunk/config

--+
 PKGBUILD |   11 +++
 config   |   11 ---
 2 files changed, 15 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 17:38:39 UTC (rev 520763)
+++ PKGBUILD2019-10-27 18:37:30 UTC (rev 520764)
@@ -3,8 +3,8 @@
 # Contributor: Jens Pranaitis 
 
 pkgname=busybox
-pkgver=1.30.1
-pkgrel=4
+pkgver=1.31.1
+pkgrel=1
 pkgdesc="Utilities for rescue and embedded systems"
 arch=("x86_64")
 url="https://www.busybox.net;
@@ -13,9 +13,12 @@
 validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B')
 source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
 "config")
-sha256sums=('3d1d04a4dbd34048f4794815a5c48ebb9eb53c5277e09c060323b95dfbdc'
+sha256sums=('d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998'
 'SKIP'
-'e1deb1d6980cbe2e29663667b6b455af31b303499d049e07a88b6d2d52b8625f')
+'3fc329e671bcff93b976ed9f6ca47eaa53468811eccae2ad50ca50611d37004e')
+b2sums=('95c2345bc715eb7a1f08816a40add9b7a6176ef509a84069343ec2caddec58d8d57a07676ca2b03c209734169321433e27ba963b4c8b98dbfda4e409dcc347b4'
+'SKIP'
+
'de6cfe15b2c1c18e049f64f4ad67447f5db80076eb7fed83b09b7014dbd1ce55f0b382bedcfaecbcd205c3366d045cde1db7e2d7046715446f76466fd9ea6b7b')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"

Modified: config
===
--- config  2019-10-27 17:38:39 UTC (rev 520763)
+++ config  2019-10-27 18:37:30 UTC (rev 520764)
@@ -1,7 +1,6 @@
 #
 # Automatically generated make config: don't edit
-# Busybox version: 1.30.1
-# Sun Sep  1 18:10:19 2019
+# Busybox version: 1.31.1
 #
 CONFIG_HAVE_DOT_CONFIG=y
 
@@ -34,6 +33,7 @@
 CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
 # CONFIG_SELINUX is not set
 # CONFIG_FEATURE_CLEAN_UP is not set
+CONFIG_FEATURE_SYSLOG_INFO=y
 CONFIG_FEATURE_SYSLOG=y
 CONFIG_PLATFORM_LINUX=y
 
@@ -236,7 +236,6 @@
 CONFIG_FACTOR=y
 CONFIG_FALSE=y
 CONFIG_FOLD=y
-CONFIG_FSYNC=y
 CONFIG_HEAD=y
 CONFIG_FEATURE_FANCY_HEAD=y
 CONFIG_HOSTID=y
@@ -303,6 +302,7 @@
 CONFIG_SUM=y
 CONFIG_SYNC=y
 CONFIG_FEATURE_SYNC_FANCY=y
+CONFIG_FSYNC=y
 CONFIG_TAC=y
 CONFIG_TAIL=y
 CONFIG_FEATURE_FANCY_TAIL=y
@@ -639,6 +639,7 @@
 CONFIG_FEATURE_MDEV_RENAME_REGEXP=y
 CONFIG_FEATURE_MDEV_EXEC=y
 CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y
+CONFIG_FEATURE_MDEV_DAEMON=y
 CONFIG_MESG=y
 CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y
 CONFIG_MKE2FS=y
@@ -786,6 +787,7 @@
 CONFIG_I2CSET=y
 CONFIG_I2CDUMP=y
 CONFIG_I2CDETECT=y
+CONFIG_I2CTRANSFER=y
 CONFIG_INOTIFYD=y
 CONFIG_LESS=y
 CONFIG_FEATURE_LESS_MAXLINES=999
@@ -819,6 +821,7 @@
 CONFIG_SETSERIAL=y
 CONFIG_STRINGS=y
 CONFIG_TIME=y
+CONFIG_TS=y
 CONFIG_TTYSIZE=y
 CONFIG_UBIATTACH=y
 CONFIG_UBIDETACH=y
@@ -946,6 +949,7 @@
 # CONFIG_FEATURE_TELNETD_INETD_WAIT is not set
 CONFIG_TFTP=y
 # CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set
+CONFIG_FEATURE_TFTP_HPA_COMPAT=y
 CONFIG_TFTPD=y
 CONFIG_FEATURE_TFTP_GET=y
 CONFIG_FEATURE_TFTP_PUT=y
@@ -1155,6 +1159,7 @@
 #
 CONFIG_FEATURE_SH_MATH=y
 CONFIG_FEATURE_SH_MATH_64=y
+CONFIG_FEATURE_SH_MATH_BASE=y
 CONFIG_FEATURE_SH_EXTRA_QUIET=y
 CONFIG_FEATURE_SH_STANDALONE=y
 # CONFIG_FEATURE_SH_NOFORK is not set


[arch-commits] Commit in mailnag-gnome-shell/repos/community-x86_64 (2 files)

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 17:38:39
  Author: arojas
Revision: 520763

archrelease: copy trunk to community-x86_64

Added:
  mailnag-gnome-shell/repos/community-x86_64/PKGBUILD
(from rev 520762, mailnag-gnome-shell/trunk/PKGBUILD)
Deleted:
  mailnag-gnome-shell/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 17:38:04 UTC (rev 520762)
+++ PKGBUILD2019-10-27 17:38:39 UTC (rev 520763)
@@ -1,24 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Patrick Ulbrich 
-
-pkgname=mailnag-gnome-shell
-pkgver=3.32.1
-pkgrel=1
-pkgdesc="Mailnag GNOME Shell extension"
-arch=('x86_64')
-url="https://github.com/pulb/mailnag-gnome-shell;
-license=('GPL')
-depends=('folks' 'gnome-shell' 'mailnag')
-makedepends=('vala')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pulb/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('876441f751dd0e80be6e0e485df1cf53ca9e8c2086d26bbd4fbca53fd95f8530')
-
-build() {
-   cd $pkgname-$pkgver
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make prefix="$pkgdir"/usr install
-}

Copied: mailnag-gnome-shell/repos/community-x86_64/PKGBUILD (from rev 520762, 
mailnag-gnome-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 17:38:39 UTC (rev 520763)
@@ -0,0 +1,24 @@
+# Maintainer: Balló György 
+# Contributor: Patrick Ulbrich 
+
+pkgname=mailnag-gnome-shell
+pkgver=3.34.0
+pkgrel=1
+pkgdesc="Mailnag GNOME Shell extension"
+arch=('x86_64')
+url="https://github.com/pulb/mailnag-gnome-shell;
+license=('GPL')
+depends=('folks' 'gnome-shell' 'mailnag')
+makedepends=('vala')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pulb/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('6f080a575249137d93ec3bc6ffecc4720977bd79851bd892728d22ae381fc011')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix="$pkgdir"/usr install
+}


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 17:38:04
  Author: arojas
Revision: 520762

Update to 3.34.0

Modified:
  mailnag-gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 16:57:40 UTC (rev 520761)
+++ PKGBUILD2019-10-27 17:38:04 UTC (rev 520762)
@@ -2,7 +2,7 @@
 # Contributor: Patrick Ulbrich 
 
 pkgname=mailnag-gnome-shell
-pkgver=3.32.1
+pkgver=3.34.0
 pkgrel=1
 pkgdesc="Mailnag GNOME Shell extension"
 arch=('x86_64')
@@ -11,14 +11,14 @@
 depends=('folks' 'gnome-shell' 'mailnag')
 makedepends=('vala')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pulb/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('876441f751dd0e80be6e0e485df1cf53ca9e8c2086d26bbd4fbca53fd95f8530')
+sha256sums=('6f080a575249137d93ec3bc6ffecc4720977bd79851bd892728d22ae381fc011')
 
 build() {
-   cd $pkgname-$pkgver
-   make
+  cd $pkgname-$pkgver
+  make
 }
 
 package() {
-   cd $pkgname-$pkgver
-   make prefix="$pkgdir"/usr install
+  cd $pkgname-$pkgver
+  make prefix="$pkgdir"/usr install
 }


[arch-commits] Commit in keybase/repos/community-x86_64 (7 files)

2019-10-27 Thread Eli Schwartz via arch-commits
Date: Sunday, October 27, 2019 @ 16:57:40
  Author: eschwartz
Revision: 520761

archrelease: copy trunk to community-x86_64

Added:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
(from rev 520760, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
  keybase/repos/community-x86_64/PKGBUILD
(from rev 520760, keybase/trunk/PKGBUILD)
  keybase/repos/community-x86_64/kbfs.install
(from rev 520760, keybase/trunk/kbfs.install)
  keybase/repos/community-x86_64/keybase-gui
(from rev 520760, keybase/trunk/keybase-gui)
Deleted:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
  keybase/repos/community-x86_64/PKGBUILD
  keybase/repos/community-x86_64/keybase-gui

+
 0001-Don-t-use-electron-to-build.patch |  134 -
 PKGBUILD   |  239 +++
 kbfs.install   |   15 +
 keybase-gui|   22 +-
 4 files changed, 213 insertions(+), 197 deletions(-)

Deleted: 0001-Don-t-use-electron-to-build.patch
===
--- 0001-Don-t-use-electron-to-build.patch  2019-10-27 16:57:02 UTC (rev 
520760)
+++ 0001-Don-t-use-electron-to-build.patch  2019-10-27 16:57:40 UTC (rev 
520761)
@@ -1,67 +0,0 @@
-From e8458e1231753f7853d9db150c6d021c93d81f01 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 21 Jun 2018 05:00:37 -0400
-Subject: [PATCH] Don't use electron to build
-

- shared/desktop/package.desktop.tsx   | 4 ++--
- shared/desktop/yarn-helper/index.tsx | 2 --
- shared/package.json  | 1 -
- 3 files changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
-index d921e3e7c9..8fec7e6834 100644
 a/shared/desktop/package.desktop.tsx
-+++ b/shared/desktop/package.desktop.tsx
-@@ -97,7 +97,7 @@ function main() {
-   // use the same version as the currently-installed electron
-   console.log('Finding electron version')
-   try {
--packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
-+packagerOpts.electronVersion = 'unused string'
- console.log('Found electron version:', packagerOpts.electronVersion)
-   } catch (err) {
- console.log("Couldn't parse yarn list to find electron:", err)
-@@ -145,7 +145,7 @@ function startPack() {
- .catch(postPackError)
- })
-   })
--} else {
-+} else if (false) {
-   pack(platform, arch)
- .then(postPack(platform, arch))
- .catch(postPackError)
-diff --git a/shared/desktop/yarn-helper/index.tsx 
b/shared/desktop/yarn-helper/index.tsx
-index b80018f9f9..30f26606b4 100644
 a/shared/desktop/yarn-helper/index.tsx
-+++ b/shared/desktop/yarn-helper/index.tsx
-@@ -1,6 +1,5 @@
- // Helper for cross platform yarn run script commands
- import buildCommands from './build'
--import electronComands from './electron'
- import fontCommands from './font'
- import prettierCommands from './prettier'
- import {execSync} from 'child_process'
-@@ -14,7 +13,6 @@ const [, , command, ...rest] = process.argv
- const commands = {
-   ...buildCommands,
-   ...fontCommands,
--  ...electronComands,
-   ...prettierCommands,
-   help: {
- code: () => {
-diff --git a/shared/package.json b/shared/package.json
-index 5d51df0986..ad2944b63c 100644
 a/shared/package.json
-+++ b/shared/package.json
-@@ -255,7 +255,6 @@
- "cross-env": "5.2.0",
- "css-loader": "3.1.0",
- "del": "3.0.0",
--"electron": "6.0.9",
- "electron-packager": "14.0.6",
- "eslint": "6.2.1",
- "eslint-plugin-filenames": "1.3.2",
--- 
-2.23.0
-

Copied: keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch 
(from rev 520760, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
===
--- 0001-Don-t-use-electron-to-build.patch  (rev 0)
+++ 0001-Don-t-use-electron-to-build.patch  2019-10-27 16:57:40 UTC (rev 
520761)
@@ -0,0 +1,67 @@
+From e8458e1231753f7853d9db150c6d021c93d81f01 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 21 Jun 2018 05:00:37 -0400
+Subject: [PATCH] Don't use electron to build
+
+---
+ shared/desktop/package.desktop.tsx   | 4 ++--
+ shared/desktop/yarn-helper/index.tsx | 2 --
+ shared/package.json  | 1 -
+ 3 files changed, 2 insertions(+), 5 deletions(-)
+
+diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
+index d921e3e7c9..8fec7e6834 100644
+--- a/shared/desktop/package.desktop.tsx
 b/shared/desktop/package.desktop.tsx
+@@ -97,7 +97,7 @@ function main() {
+   // use the same version as the currently-installed electron
+   console.log('Finding electron version')
+   try {
+-packagerOpts.electronVersion = 

[arch-commits] Commit in keybase/trunk (PKGBUILD kbfs.install)

2019-10-27 Thread Eli Schwartz via arch-commits
Date: Sunday, October 27, 2019 @ 16:57:02
  Author: eschwartz
Revision: 520760

upgpkg: keybase 4.7.1-1

upstream release

Also add a warning to kbfs users that the redirector is not available. The
warning was requested by users who were surprised /keybase did not work;
arguably they should read the docs and see that the redirector is an optional
component, but also arguably I'm deviating from upstream default settings (in
the name of security), so, the warning is harmless, why not do it.

Added:
  keybase/trunk/kbfs.install
Modified:
  keybase/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 kbfs.install |   15 +++
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 15:02:54 UTC (rev 520759)
+++ PKGBUILD2019-10-27 16:57:02 UTC (rev 520760)
@@ -5,7 +5,7 @@
 pkgbase=keybase
 pkgname=('keybase' 'kbfs' 'keybase-gui')
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=4.6.0
+pkgver=4.7.1
 pkgrel=1
 arch=('x86_64')
 url='https://keybase.io/'
@@ -15,11 +15,11 @@
 
source=("https://github.com/keybase/client/releases/download/v${pkgver}/${pkgbase}-v${pkgver}.tar.xz"{,.sig}
 "keybase-gui"
 "0001-Don-t-use-electron-to-build.patch")
-sha512sums=('cfc0cefd80ced597e099fd6755280e2f77837cbf0cbc83df78b4f7ccb5360740c7563408652afb77f9c400d8e0c1e40975fc021a3b1959b1f2b326c9b460e4be'
+sha512sums=('28e3cacea5e31bf978c9eb94d6500330e40c222875e469e7c9a74c9346ff5efbd9a14c8f794fe1a02166ba09c9862cdd60eacb258ff83d67e1699a9a75faaa8c'
 'SKIP'
 
'4dcb3f4119959e2b203528a9ed637bf8b07b85964c632a8b2456aa1e2f29fada383a9bc2af8abbb05fcf6b22c43723ce6d08bea8187d61fa6581d15fefae850b'
 
'32256b4cc3d2dd1ed645f58981db086af09cfe8d8f8e9d913c1d3731e249282dff699e545bf822e67abd4c36abc04130137e2b6f72877c898d75d602abd99fe7')
-b2sums=('76fd8fcb7ebf28f9e311c9cd18d152a5d5b4e7f546817a91be42f51a05a0bb13e01567a32b9d2160b0cb9cd6cf909dca4d9d45ff61f964628bf5a53606d424a4'
+b2sums=('139d3e0fdd54094926eaaf8be89c2da67b06d167b6c89b52c3d4dd94c159b99bd7093697d48e3ab4831ae685f5c35fb76a430719cd5b972fefabaeca135154cf'
 'SKIP'
 
'90aab71ef3b5db0c8ec81967604f43e3532be5f66ce7d9af1bd5204c1fde2062ef356909c03d237a63de93fa3cb045b9c31c3956cbecbea711602804e9d26efd'
 
'ffc92d422586ffaa4f1133889140e1ddf5ada0f05d77423c39b5d70bc98538bbe070e71bcfdf205959f929788f8971e60dc918aa3cdb74817b6a5ec21375b1d9')
@@ -76,6 +76,7 @@
 pkgdesc="The Keybase filesystem"
 url="https://keybase.io/docs/kbfs;
 depends=('fuse' 'keybase')
+install=kbfs.install
 
 cd client-v${pkgver}
 

Added: kbfs.install
===
--- kbfs.install(rev 0)
+++ kbfs.install2019-10-27 16:57:02 UTC (rev 520760)
@@ -0,0 +1,15 @@
+post_install() {
+cat << '__EOF__'
+warning: the keybase-redirector is not included, so you will need to define
+your `keybase config` mountdir to something you like (or install the
+redirector on your own).
+
+See: https://github.com/keybase/client/issues/19840#issuecomment-533842074
+__EOF__
+}
+
+post_upgrade() {
+if (( $(vercmp 4.7.1-1 $2) > 0 )); then
+post_install
+fi
+}


[arch-commits] Commit in alertmanager/repos/extra-x86_64 (6 files)

2019-10-27 Thread Jelle van der Waa via arch-commits
Date: Sunday, October 27, 2019 @ 15:24:13
  Author: jelle
Revision: 365941

archrelease: copy trunk to extra-x86_64

Added:
  alertmanager/repos/extra-x86_64/PKGBUILD
(from rev 365940, alertmanager/trunk/PKGBUILD)
  alertmanager/repos/extra-x86_64/alertmanager.service
(from rev 365940, alertmanager/trunk/alertmanager.service)
  alertmanager/repos/extra-x86_64/alertmanager.sysusers
(from rev 365940, alertmanager/trunk/alertmanager.sysusers)
Deleted:
  alertmanager/repos/extra-x86_64/PKGBUILD
  alertmanager/repos/extra-x86_64/alertmanager.service
  alertmanager/repos/extra-x86_64/alertmanager.sysusers

---+
 PKGBUILD  |  110 
 alertmanager.service  |   56 
 alertmanager.sysusers |2 
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 15:24:05 UTC (rev 365940)
+++ PKGBUILD2019-10-27 15:24:13 UTC (rev 365941)
@@ -1,55 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=alertmanager
-pkgver=0.18.0
-pkgrel=4
-pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
-url="https://github.com/prometheus/alertmanager;
-arch=(x86_64)
-depends=(glibc)
-license=('Apache')
-makedepends=(go-pie git)
-backup=('etc/alertmanager/alertmanager.yml')
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
-sha512sums=('59faec308abaac3d2b59198fef25109b208de1a807b38803dc10722ff0caf1bac9d9795005fefb3b4e2acda62be136bfcafe7b9702ae52565021a424f99fa730'
-
'e814d4aca46c2e243a2fe137b2ca102d5adfc18a5d4ab1d316ae593e60a256f8f7f699eb2d8c28b74e6f26fd17b682df927517db4819b167ab0269aa3f76894e'
-
'469f321f40b0dd6e1cc6d0791032c476449bb2ab2364d57b06d0e0309d09710be8751ded64d84e29dd6e28e96b71ef69e2bee6c71282500a9074a9d7ada8bdf0')
-
-build() {
-  cd $pkgname-$pkgver
-  go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-./cmd/alertmanager
-
-  go build \
--gcflags "all=-trimpath=$GOPATH" \
--asmflags "all=-trimpath=$GOPATH" \
--ldflags "-extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-./cmd/amtool
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
-  install -Dm755 amtool "$pkgdir/usr/bin/amtool"
-
-  install -Dm644 examples/ha/${pkgname}.yml 
"${pkgdir}/etc/${pkgname}/${pkgname}.yml"
-  install -d -m755 "${pkgdir}/etc/${pkgname}/template/"
-
-  install -d -m755 -o 211 -g 211 "${pkgdir}/var/lib/${pkgname}"
-
-  install -Dm0644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  install -Dm644 "$srcdir/alertmanager.sysusers" 
"$pkgdir/usr/lib/sysusers.d/alertmanager.conf"
-}

Copied: alertmanager/repos/extra-x86_64/PKGBUILD (from rev 365940, 
alertmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 15:24:13 UTC (rev 365941)
@@ -0,0 +1,55 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=alertmanager
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
+url="https://github.com/prometheus/alertmanager;
+arch=(x86_64)
+depends=(glibc)
+license=('Apache')
+makedepends=(go-pie git)
+backup=('etc/alertmanager/alertmanager.yml')
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
+sha512sums=('2c21bfbb1001e07e81b1115439ad15e7c0e7089839e56a19c445177e322b8ef9aa2b85e96478f3c3d709cbbd3a5447662a8c55da370b84aa4b6b24f83848744b'
+
'e814d4aca46c2e243a2fe137b2ca102d5adfc18a5d4ab1d316ae593e60a256f8f7f699eb2d8c28b74e6f26fd17b682df927517db4819b167ab0269aa3f76894e'
+
'469f321f40b0dd6e1cc6d0791032c476449bb2ab2364d57b06d0e0309d09710be8751ded64d84e29dd6e28e96b71ef69e2bee6c71282500a9074a9d7ada8bdf0')
+
+build() {
+  cd $pkgname-$pkgver
+  go build \
+-gcflags 

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

2019-10-27 Thread Jelle van der Waa via arch-commits
Date: Sunday, October 27, 2019 @ 15:24:05
  Author: jelle
Revision: 365940

upgpkg: alertmanager 0.19.0-1

Upstream update

Modified:
  alertmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 15:11:05 UTC (rev 365939)
+++ PKGBUILD2019-10-27 15:24:05 UTC (rev 365940)
@@ -1,8 +1,8 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=alertmanager
-pkgver=0.18.0
-pkgrel=4
+pkgver=0.19.0
+pkgrel=1
 pkgdesc="Service which handles alerts sent by client applications such as the 
Prometheus server"
 url="https://github.com/prometheus/alertmanager;
 arch=(x86_64)
@@ -11,7 +11,7 @@
 makedepends=(go-pie git)
 backup=('etc/alertmanager/alertmanager.yml')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/alertmanager/archive/v${pkgver}.tar.gz
 alertmanager.service alertmanager.sysusers)
-sha512sums=('59faec308abaac3d2b59198fef25109b208de1a807b38803dc10722ff0caf1bac9d9795005fefb3b4e2acda62be136bfcafe7b9702ae52565021a424f99fa730'
+sha512sums=('2c21bfbb1001e07e81b1115439ad15e7c0e7089839e56a19c445177e322b8ef9aa2b85e96478f3c3d709cbbd3a5447662a8c55da370b84aa4b6b24f83848744b'
 
'e814d4aca46c2e243a2fe137b2ca102d5adfc18a5d4ab1d316ae593e60a256f8f7f699eb2d8c28b74e6f26fd17b682df927517db4819b167ab0269aa3f76894e'
 
'469f321f40b0dd6e1cc6d0791032c476449bb2ab2364d57b06d0e0309d09710be8751ded64d84e29dd6e28e96b71ef69e2bee6c71282500a9074a9d7ada8bdf0')
 


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 15:10:45
  Author: arojas
Revision: 365938

Update to 8.1.1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 14:10:43 UTC (rev 365937)
+++ PKGBUILD2019-10-27 15:10:45 UTC (rev 365938)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=8.0.6
+pkgver=8.1.1
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -18,7 +18,7 @@
 'dhcpcd_.service'
 'dhcpcd.service')
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('66b50199ed83bf502af3fab9ac001b417f0fac7e69c92d97a9c41499cebabd4f'
+sha256sums=('485d308fe10febd36b6f936e4260e4ab34a146e4f00a9f7a5509c4377ad5ea82'
 '72dba5d6e7a99cf6d9a796f79ee395e2434af12d6d4e76573d428c6d0c2986ed'
 '782ba5fc31518e6f499d119120efe5ea68ce29ebbb797306d5e17b2a545c2f9e')
 


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 15:11:05
  Author: arojas
Revision: 365939

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 365938, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 365938, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 365938, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   63 ++
 dhcpcd.service  |   13 +++
 dhcpcd_.service |   15 
 3 files changed, 91 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 365938, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-27 15:11:05 UTC (rev 365939)
@@ -0,0 +1,63 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=8.1.1
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+'dhcpcd_.service'
+'dhcpcd.service')
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('485d308fe10febd36b6f936e4260e4ab34a146e4f00a9f7a5509c4377ad5ea82'
+'72dba5d6e7a99cf6d9a796f79ee395e2434af12d6d4e76573d428c6d0c2986ed'
+'782ba5fc31518e6f499d119120efe5ea68ce29ebbb797306d5e17b2a545c2f9e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make test
+}
+
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 365938, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2019-10-27 15:11:05 UTC (rev 365939)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd_.service (from rev 365938, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-x86_64/dhcpcd_.service  (rev 0)
+++ testing-x86_64/dhcpcd_.service  2019-10-27 15:11:05 UTC (rev 365939)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target


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

2019-10-27 Thread Christian Rebischke via arch-commits
Date: Sunday, October 27, 2019 @ 15:02:54
  Author: shibumi
Revision: 520759

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |  200 +++
 puppet.install |   10 +-
 2 files changed, 105 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 15:02:47 UTC (rev 520758)
+++ PKGBUILD2019-10-27 15:02:54 UTC (rev 520759)
@@ -1,100 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Jonathan Steel 
-# Contributor: Greg Sutcliffe 
-# Contributor: Hyacinthe Cartiaux 
-# Contributor: Thomas S Hatch 
-# Contributor: Xavion 
-# Contributor: Miah Johnson 
-# Contributor: Dave Simons 
-# Contributor: Niels Abspoel 
-# Contributor: Tim Meusel 
-
-pkgname=puppet
-pkgver=6.9.0
-pkgrel=1
-pkgdesc="Server automation framework and application"
-arch=('any')
-url="https://puppet.com/products/open-source-projects;
-license=('Apache')
-depends=('ruby' 'facter' 'hiera' 'ruby-semantic_puppet' 'ruby-augeas'
-'ruby-shadow' 'ruby-concurrent')
-makedepends=('jq' 'git')
-optdepends=('ruby-shadow: user password management')
-backup=('etc/puppetlabs/puppet/auth.conf'
-'etc/puppetlabs/puppet/puppet.conf'
-'etc/puppetlabs/puppet/hiera.yaml')
-install="$pkgname.install"
-_augeas_commit=17996b5b325e72de79f51d8acafb8e0a13c558af
-_cron_commit=272c303b5e9bcbeb177a6804a6c88353f101a5c6
-_host_commit=74a081cb9e89ad8338c9ae50c85871c6584b28a7
-_mount_commit=6157ab8de510dcc570e4e969c740dff67b9b07a1
-_selinux_commit=bfe34e48f786d29ad429be99704b8319744f0686
-_sshkeys_commit=0e4857be537f100cc952948bac6710f2854c82a6
-_yumrepo_commit=89383579962eb70390788ec21c67a6ac6ec6d3c1
-_zfs_commit=30f2d0135b22e32785b9e2c3b077157e23dc00c0
-_zone_commit=37e62d40a26216c27f80525aa60a55924cb08028
-
-source=("https://downloads.puppetlabs.com/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-
"augeas_core::git+https://github.com/puppetlabs/puppetlabs-augeas_core#commit=${_augeas_commit};
-
"cron_core::git+https://github.com/puppetlabs/puppetlabs-cron_core#commit=${_cron_commit};
-
"host_core::git+https://github.com/puppetlabs/puppetlabs-host_core#commit=${_host_commit};
-
"mount_core::git+https://github.com/puppetlabs/puppetlabs-mount_core#commit=${_mount_commit};
-
"selinux_core::git+https://github.com/puppetlabs/puppetlabs-selinux_core#commit=${_selinux_commit};
-
"sshkeys_core::git+https://github.com/puppetlabs/puppetlabs-sshkeys_core#commit=${_sshkeys_commit};
-
"yumrepo_core::git+https://github.com/puppetlabs/puppetlabs-yumrepo_core#commit=${_yumrepo_commit};
-
"zfs_core::git+https://github.com/puppetlabs/puppetlabs-zfs_core#commit=${_zfs_commit};
-
"zone_core::git+https://github.com/puppetlabs/puppetlabs-zone_core#commit=${_zone_commit};
-)
-sha512sums=('4d1bc1a398c1e75bf8e832d477a0fff4fa3613510f8d59d73594e6fc2f2bbbedf050b1e7729b71bb1428c230f42fcf7b98f7a7683fc3c52cb36a596e20e6540b'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-conflicts=('puppet5')
-provides=('puppet')
-validpgpkeys=('6F6B15509CF8E59E6E469F327F438280EF8D349F')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # FS#45044: fix file location
-  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
-'puts RbConfig::CONFIG["vendorlibdir"]' )"
-
-  install -d "$pkgdir"/usr/lib/{sysusers.d,tmpfiles.d}
-
-  echo 'u puppet 52 "Puppet" /var/lib/puppet' > \
-"$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
-  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
-"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
-
-  # systemd
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
-"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Match permissions that puppet sets when running
-  install -dm775 "$pkgdir"/var/lib/puppet
-  chmod 750 "$pkgdir"/var/log/puppetlabs/puppet
-
-  rm -r "$pkgdir"/var/run
-
-  cd ..
-  install --directory "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/"
-  mv *_core "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/"
-  # Search for unwanted .git directories and delete them
-  find "${pkgdir}/opt/puppetlabs/puppet/vendor_modules/" -type d -name .git 
-exec rm -rf {} +
-}

Copied: puppet/repos/community-any/PKGBUILD (from rev 520758, 
puppet/trunk/PKGBUILD)

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

2019-10-27 Thread Christian Rebischke via arch-commits
Date: Sunday, October 27, 2019 @ 15:02:47
  Author: shibumi
Revision: 520758

upgpkg: puppet 6.9.0-2

rebuild with ruby-concurrent

Modified:
  puppet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 14:38:46 UTC (rev 520757)
+++ PKGBUILD2019-10-27 15:02:47 UTC (rev 520758)
@@ -11,7 +11,7 @@
 
 pkgname=puppet
 pkgver=6.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Server automation framework and application"
 arch=('any')
 url="https://puppet.com/products/open-source-projects;


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 14:38:46
  Author: archange
Revision: 520757

archrelease: copy trunk to community-any

Added:
  etckeeper/repos/community-any/PKGBUILD
(from rev 520756, etckeeper/trunk/PKGBUILD)
Deleted:
  etckeeper/repos/community-any/PKGBUILD

--+
 PKGBUILD |   77 ++---
 1 file changed, 39 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 14:38:41 UTC (rev 520756)
+++ PKGBUILD2019-10-27 14:38:46 UTC (rev 520757)
@@ -1,38 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: mathieu.clabaut 
-# Contributor: Buce 
-# Contributor: Danie Roux 
-
-pkgname=etckeeper
-pkgver=1.18.10
-pkgrel=2
-pkgdesc="Collection of tools to let /etc be stored in a git, hg or bzr 
repository."
-arch=(any)
-url="https://etckeeper.branchable.com/;
-license=(GPL2)
-depends=(git diffutils inetutils sed)
-makedepends=(python2 mercurial bzr)
-optdepends=('mercurial: use mercurial for version control'
-   'bzr: use bazaar for version control')
-backup=('etc/etckeeper/etckeeper.conf')
-_tag=395272b2600139777fdcaa2ff9a73c094d54cdcd # git rev-parse ${pkgver}
-source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
-sha256sums=(SKIP)
-validpgpkeys=(E85A5F63B31D24C1EBF0D81CC910D9222512E3C7) # Joey Hess 

-
-build() {
-   cd ${pkgname}
-
-   # Fix python name
-   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
-   sed -i '1s/python/python2/' zypper-etckeeper.py
-
-   # We want pacman :D
-   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
-   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
-}
-
-package() {
-   cd ${pkgname}
-   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
-}

Copied: etckeeper/repos/community-any/PKGBUILD (from rev 520756, 
etckeeper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 14:38:46 UTC (rev 520757)
@@ -0,0 +1,39 @@
+# Maintainer: Christian Hesse 
+# Contributor: mathieu.clabaut 
+# Contributor: Buce 
+# Contributor: Danie Roux 
+
+pkgname=etckeeper
+pkgver=1.18.10
+pkgrel=3
+pkgdesc="Collection of tools to let /etc be stored in a git, hg or bzr 
repository."
+arch=(any)
+url="https://etckeeper.branchable.com/;
+license=(GPL2)
+depends=(git diffutils inetutils sed)
+makedepends=(python2 mercurial bzr)
+optdepends=('mercurial: use mercurial for version control'
+'bzr: use bazaar for version control'
+'which: etckeeper vcs  support')
+backup=('etc/etckeeper/etckeeper.conf')
+_tag=395272b2600139777fdcaa2ff9a73c094d54cdcd # git rev-parse ${pkgver}
+source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
+sha256sums=(SKIP)
+validpgpkeys=(E85A5F63B31D24C1EBF0D81CC910D9222512E3C7) # Joey Hess 

+
+build() {
+   cd ${pkgname}
+
+   # Fix python name
+   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
+   sed -i '1s/python/python2/' zypper-etckeeper.py
+
+   # We want pacman :D
+   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
+   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
+}
+
+package() {
+   cd ${pkgname}
+   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
+}


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 14:38:41
  Author: archange
Revision: 520756

which is required for `etckeeper vcs ` interface

Modified:
  etckeeper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 14:14:57 UTC (rev 520755)
+++ PKGBUILD2019-10-27 14:38:41 UTC (rev 520756)
@@ -5,7 +5,7 @@
 
 pkgname=etckeeper
 pkgver=1.18.10
-pkgrel=2
+pkgrel=3
 pkgdesc="Collection of tools to let /etc be stored in a git, hg or bzr 
repository."
 arch=(any)
 url="https://etckeeper.branchable.com/;
@@ -13,7 +13,8 @@
 depends=(git diffutils inetutils sed)
 makedepends=(python2 mercurial bzr)
 optdepends=('mercurial: use mercurial for version control'
-   'bzr: use bazaar for version control')
+'bzr: use bazaar for version control'
+'which: etckeeper vcs  support')
 backup=('etc/etckeeper/etckeeper.conf')
 _tag=395272b2600139777fdcaa2ff9a73c094d54cdcd # git rev-parse ${pkgver}
 source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)


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

2019-10-27 Thread Jakob Gruber via arch-commits
Date: Sunday, October 27, 2019 @ 14:14:57
  Author: schuay
Revision: 520755

archrelease: copy trunk to community-x86_64

Added:
  stone-soup/repos/community-x86_64/PKGBUILD
(from rev 520754, stone-soup/trunk/PKGBUILD)
  stone-soup/repos/community-x86_64/stone-soup.install
(from rev 520754, stone-soup/trunk/stone-soup.install)
Deleted:
  stone-soup/repos/community-x86_64/PKGBUILD
  stone-soup/repos/community-x86_64/stone-soup.install

+
 PKGBUILD   |  150 +--
 stone-soup.install |   22 +++
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 14:14:48 UTC (rev 520754)
+++ PKGBUILD2019-10-27 14:14:57 UTC (rev 520755)
@@ -1,75 +0,0 @@
-# Maintainer: Jakob Gruber 
-
-pkgname=stone-soup
-pkgver=0.23.2
-_majorver=0.23
-pkgrel=1
-pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
-arch=('x86_64')
-url='http://crawl.develz.org/'
-depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu' 'python-yaml')
-makedepends=('bison' 'flex' 'gendesk' 'mesa')
-conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
-license=('custom')
-install=stone-soup.install
-source=("https://crawl.develz.org/release/${_majorver}/stone_soup-${pkgver}-nodeps.tar.xz;)
-
-# used by gendesk to create .desktop file
-_exec=('crawl-tiles')
-_name=('Dungeon Crawl Stone Soup')
-
-package() {
-cd "$srcdir"
-gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
---exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
-
-cd "stone_soup-${pkgver}/source"
-
-# 0.16.0 weirdness
-sed -i 's|SDL_main.h|SDL2/&|' main.cc
-
-# git tarball weirdness
-echo "$pkgver" > util/release_ver
-
-# adjust makefile to use /usr/bin, owner root:root,
-# disable setgid on executable
-
-sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
-sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
-sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
-
-# first build and install tiles version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- TILES=y \
- install
-
-# rename tiles executable to avoid clashing with console crawl
-
-mv "${pkgdir}/usr/bin/crawl" "${pkgdir}/usr/bin/crawl-tiles"
-
-# then build and install console version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- install
-
-# install crawl license
-
-install -D -m644 ../LICENSE \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-# install icon and .desktop file
-
-install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-install -D -m644 "${srcdir}/${pkgname}.desktop" \
-"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-}
-md5sums=('a1cbcbfd909727c2ec29a8120ca3e807')

Copied: stone-soup/repos/community-x86_64/PKGBUILD (from rev 520754, 
stone-soup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 14:14:57 UTC (rev 520755)
@@ -0,0 +1,75 @@
+# Maintainer: Jakob Gruber 
+
+pkgname=stone-soup
+pkgver=0.24.0
+_majorver=0.24
+pkgrel=1
+pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
+arch=('x86_64')
+url='https://crawl.develz.org/'
+depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu' 'python-yaml')
+makedepends=('bison' 'flex' 'gendesk' 'mesa')
+conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
+license=('custom')
+install=stone-soup.install
+source=("https://crawl.develz.org/release/${_majorver}/stone_soup-${pkgver}-nodeps.tar.xz;)
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
+
+package() {
+cd "$srcdir"
+gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
+--exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
+
+cd "stone_soup-${pkgver}/source"
+
+# 0.16.0 weirdness
+sed -i 's|SDL_main.h|SDL2/&|' main.cc
+
+# git tarball weirdness
+echo "$pkgver" > util/release_ver
+
+# adjust makefile to use /usr/bin, owner root:root,
+# disable setgid on executable
+
+sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
+sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
+sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
+
+# first build and install tiles version
+
+make DESTDIR="${pkgdir}" \
+ SAVEDIR="~/.crawl/" \
+ 

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

2019-10-27 Thread Jakob Gruber via arch-commits
Date: Sunday, October 27, 2019 @ 14:14:48
  Author: schuay
Revision: 520754

upgpkg: stone-soup 0.24.0-1

0.24.0-1

Modified:
  stone-soup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 14:03:50 UTC (rev 520753)
+++ PKGBUILD2019-10-27 14:14:48 UTC (rev 520754)
@@ -1,8 +1,8 @@
 # Maintainer: Jakob Gruber 
 
 pkgname=stone-soup
-pkgver=0.23.2
-_majorver=0.23
+pkgver=0.24.0
+_majorver=0.24
 pkgrel=1
 pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
 arch=('x86_64')
@@ -72,4 +72,4 @@
 "${pkgdir}/usr/share/applications/${pkgname}.desktop"
 
 }
-md5sums=('a1cbcbfd909727c2ec29a8120ca3e807')
+md5sums=('49b1424ec0713e117c84085541a84071')


[arch-commits] Commit in telepathy-mission-control/trunk (PKGBUILD)

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 14:10:19
  Author: arojas
Revision: 365936

Update to 5.16.5

Modified:
  telepathy-mission-control/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:28:00 UTC (rev 365935)
+++ PKGBUILD2019-10-27 14:10:19 UTC (rev 365936)
@@ -5,22 +5,23 @@
 # Contributor: Andreas Zwinkau 
 
 pkgname=telepathy-mission-control
-pkgver=5.16.4
-pkgrel=3
+pkgver=5.16.5
+pkgrel=1
 pkgdesc="A Telepathy component providing abstraction of some of the details of 
connection managers."
 arch=(x86_64)
 url="http://telepathy.freedesktop.org/wiki/Mission Control"
 license=(LGPL2.1)
 depends=(telepathy-glib dconf libnm)
-makedepends=(libxslt python2 gtk-doc)
+makedepends=(libxslt python gtk-doc)
 
source=(https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
-sha256sums=('9769ddac7ad8aad21f6db854016792162b57e6fa0b0aed8d823d76a71fe7e6cb'
+sha256sums=('4c6b433b8b9079fd7df3e29aefcad6755a2081a9a634ffb6b33936c7d0d8bd03'
 'SKIP')
-validpgpkeys=(38FDAD7D73CE1AE7A16200291F3845DD1432A9FB) # Georgios Kiagiadakis 

+validpgpkeys=(38FDAD7D73CE1AE7A16200291F3845DD1432A9FB  # Georgios Kiagiadakis 

+  AA33B0D27868E36C151780F0FE0B6D736B1195ED) # Alexandr Akulich 

 
 build() {
 cd $pkgname-$pkgver
-PYTHON=python2 ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
+./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
 --with-connectivity=nm \
 --enable-gtk-doc \
 --disable-upower \


[arch-commits] Commit in telepathy-mission-control/repos/extra-x86_64 (2 files)

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 14:10:43
  Author: arojas
Revision: 365937

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-mission-control/repos/extra-x86_64/PKGBUILD
(from rev 365936, telepathy-mission-control/trunk/PKGBUILD)
Deleted:
  telepathy-mission-control/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 14:10:19 UTC (rev 365936)
+++ PKGBUILD2019-10-27 14:10:43 UTC (rev 365937)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Ionut Biru 
-# Contributor: Ju Liu 
-# Contributor: Bjorn Lindeijer 
-# Contributor: Andreas Zwinkau 
-
-pkgname=telepathy-mission-control
-pkgver=5.16.4
-pkgrel=3
-pkgdesc="A Telepathy component providing abstraction of some of the details of 
connection managers."
-arch=(x86_64)
-url="http://telepathy.freedesktop.org/wiki/Mission Control"
-license=(LGPL2.1)
-depends=(telepathy-glib dconf libnm)
-makedepends=(libxslt python2 gtk-doc)
-source=(https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
-sha256sums=('9769ddac7ad8aad21f6db854016792162b57e6fa0b0aed8d823d76a71fe7e6cb'
-'SKIP')
-validpgpkeys=(38FDAD7D73CE1AE7A16200291F3845DD1432A9FB) # Georgios Kiagiadakis 

-
-build() {
-cd $pkgname-$pkgver
-PYTHON=python2 ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
---with-connectivity=nm \
---enable-gtk-doc \
---disable-upower \
---disable-static \
---disable-schemas-compile
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR="$pkgdir" install
-}

Copied: telepathy-mission-control/repos/extra-x86_64/PKGBUILD (from rev 365936, 
telepathy-mission-control/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 14:10:43 UTC (rev 365937)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Ionut Biru 
+# Contributor: Ju Liu 
+# Contributor: Bjorn Lindeijer 
+# Contributor: Andreas Zwinkau 
+
+pkgname=telepathy-mission-control
+pkgver=5.16.5
+pkgrel=1
+pkgdesc="A Telepathy component providing abstraction of some of the details of 
connection managers."
+arch=(x86_64)
+url="http://telepathy.freedesktop.org/wiki/Mission Control"
+license=(LGPL2.1)
+depends=(telepathy-glib dconf libnm)
+makedepends=(libxslt python gtk-doc)
+source=(https://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('4c6b433b8b9079fd7df3e29aefcad6755a2081a9a634ffb6b33936c7d0d8bd03'
+'SKIP')
+validpgpkeys=(38FDAD7D73CE1AE7A16200291F3845DD1432A9FB  # Georgios Kiagiadakis 

+  AA33B0D27868E36C151780F0FE0B6D736B1195ED) # Alexandr Akulich 

+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
+--with-connectivity=nm \
+--enable-gtk-doc \
+--disable-upower \
+--disable-static \
+--disable-schemas-compile
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 14:03:50
  Author: arojas
Revision: 520753

archrelease: copy trunk to community-x86_64

Added:
  latte-dock/repos/community-x86_64/PKGBUILD
(from rev 520752, latte-dock/trunk/PKGBUILD)
Deleted:
  latte-dock/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 14:03:26 UTC (rev 520752)
+++ PKGBUILD2019-10-27 14:03:50 UTC (rev 520753)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Michael Straube 
-
-pkgname=latte-dock
-pkgver=0.9.3
-pkgrel=1
-pkgdesc='A dock based on Plasma Frameworks'
-arch=(x86_64)
-url='https://store.kde.org/p/1169519/'
-license=(GPL)
-depends=(plasma-framework knewstuff libksysguard)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('30232ce9b0fe8f5338c924a4f2d1661c8c3f3b221ccfcaf69d09160f31599447'
-'SKIP')
-validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: latte-dock/repos/community-x86_64/PKGBUILD (from rev 520752, 
latte-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 14:03:50 UTC (rev 520753)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Michael Straube 
+
+pkgname=latte-dock
+pkgver=0.9.4
+pkgrel=1
+pkgdesc='A dock based on Plasma Frameworks'
+arch=(x86_64)
+url='https://store.kde.org/p/1169519/'
+license=(GPL)
+depends=(plasma-framework knewstuff libksysguard)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a1e706b25ced6a68148a4db92d568c6a0a0494aba34525b1fea183c0830e34ee'
+'SKIP')
+validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 14:03:26
  Author: arojas
Revision: 520752

Update to 0.9.4

Modified:
  latte-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 14:02:29 UTC (rev 520751)
+++ PKGBUILD2019-10-27 14:03:26 UTC (rev 520752)
@@ -2,7 +2,7 @@
 # Contributor: Michael Straube 
 
 pkgname=latte-dock
-pkgver=0.9.3
+pkgver=0.9.4
 pkgrel=1
 pkgdesc='A dock based on Plasma Frameworks'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(plasma-framework knewstuff libksysguard)
 makedepends=(extra-cmake-modules)
 
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('30232ce9b0fe8f5338c924a4f2d1661c8c3f3b221ccfcaf69d09160f31599447'
+sha256sums=('a1e706b25ced6a68148a4db92d568c6a0a0494aba34525b1fea183c0830e34ee'
 'SKIP')
 validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
 


[arch-commits] Commit in zsh-history-substring-search/repos/community-any (2 files)

2019-10-27 Thread David Runge via arch-commits
Date: Sunday, October 27, 2019 @ 14:02:29
  Author: dvzrv
Revision: 520751

archrelease: copy trunk to community-any

Added:
  zsh-history-substring-search/repos/community-any/PKGBUILD
(from rev 520750, zsh-history-substring-search/trunk/PKGBUILD)
Deleted:
  zsh-history-substring-search/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 13:52:48 UTC (rev 520750)
+++ PKGBUILD2019-10-27 14:02:29 UTC (rev 520751)
@@ -1,27 +0,0 @@
-# Maintainer: David Runge 
-pkgname=zsh-history-substring-search
-pkgver=1.0.1
-pkgrel=2
-pkgdesc="ZSH port of Fish history search (up arrow)"
-arch=('any')
-url="https://github.com/zsh-users/zsh-history-substring-search;
-license=('BSD')
-depends=('zsh')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/zsh-users/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('0795befa068cedd46578960cf4102baafd182b69db598700c6361aebf17f64615972a981a5c4aad48318c45e9e9cd623d53956c704baa1b024cef9df83b138eb')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  sed -ne 4,37p ${pkgname}.zsh > LICENSE
-  sed -e 's/^# //g' -e 's/^#//g' -i LICENSE
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -vDm 644 "${pkgname}.zsh" \
--t "${pkgdir}/usr/share/zsh/plugins/${pkgname}/"
-  # docs
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: zsh-history-substring-search/repos/community-any/PKGBUILD (from rev 
520750, zsh-history-substring-search/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 14:02:29 UTC (rev 520751)
@@ -0,0 +1,27 @@
+# Maintainer: David Runge 
+pkgname=zsh-history-substring-search
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="ZSH port of Fish history search (up arrow)"
+arch=('any')
+url="https://github.com/zsh-users/zsh-history-substring-search;
+license=('BSD')
+depends=('zsh')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/zsh-users/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('9547cdd74f6bd5b102ca29b7b455cd4ce7450fe86864b5a149365de4c37d3da887edb403b195e80c142fe61861a3e4c063a5d8ba08ec0532b27a1207c80a023d')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  sed -ne 4,37p ${pkgname}.zsh > LICENSE
+  sed -e 's/^# //g' -e 's/^#//g' -i LICENSE
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -vDm 644 "${pkgname}.zsh" \
+-t "${pkgdir}/usr/share/zsh/plugins/${pkgname}/"
+  # docs
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


[arch-commits] Commit in zsh-history-substring-search/trunk (PKGBUILD)

2019-10-27 Thread David Runge via arch-commits
Date: Sunday, October 27, 2019 @ 13:52:48
  Author: dvzrv
Revision: 520750

upgpkg: zsh-history-substring-search 1.0.2-1

Upgrading to 1.0.2.

Modified:
  zsh-history-substring-search/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 13:52:18 UTC (rev 520749)
+++ PKGBUILD2019-10-27 13:52:48 UTC (rev 520750)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=zsh-history-substring-search
-pkgver=1.0.1
-pkgrel=2
+pkgver=1.0.2
+pkgrel=1
 pkgdesc="ZSH port of Fish history search (up arrow)"
 arch=('any')
 url="https://github.com/zsh-users/zsh-history-substring-search;
@@ -8,7 +8,7 @@
 license=('BSD')
 depends=('zsh')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/zsh-users/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('0795befa068cedd46578960cf4102baafd182b69db598700c6361aebf17f64615972a981a5c4aad48318c45e9e9cd623d53956c704baa1b024cef9df83b138eb')
+sha512sums=('9547cdd74f6bd5b102ca29b7b455cd4ce7450fe86864b5a149365de4c37d3da887edb403b195e80c142fe61861a3e4c063a5d8ba08ec0532b27a1207c80a023d')
 
 prepare() {
   cd "$pkgname-$pkgver"


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 13:52:18
  Author: archange
Revision: 520749

archrelease: copy trunk to community-any

Added:
  etckeeper/repos/community-any/PKGBUILD
(from rev 520748, etckeeper/trunk/PKGBUILD)
Deleted:
  etckeeper/repos/community-any/PKGBUILD

--+
 PKGBUILD |   77 ++---
 1 file changed, 38 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 13:52:11 UTC (rev 520748)
+++ PKGBUILD2019-10-27 13:52:18 UTC (rev 520749)
@@ -1,39 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: mathieu.clabaut 
-# Contributor: Buce 
-# Contributor: Danie Roux 
-
-pkgname=etckeeper
-pkgver=1.18.10
-pkgrel=1
-pkgdesc='collection of tools to let /etc be stored in a git, hg or bzr 
repository'
-arch=('any')
-url='https://etckeeper.branchable.com/'
-license=('GPL2')
-depends=('git')
-makedepends=('mercurial' 'bzr')
-optdepends=('mercurial: use mercurial for version control'
-   'bzr: use bazaar for version control')
-backup=('etc/etckeeper/etckeeper.conf')
-validpgpkeys=('E85A5F63B31D24C1EBF0D81CC910D9222512E3C7') # Joey Hess 

-source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${pkgver}?signed;)
-sha256sums=('SKIP')
-
-build() {
-   cd "${srcdir}/etckeeper/"
-
-   # fix python
-   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
-   sed -i '1s/python/python2/' zypper-etckeeper.py
-
-   # We want pacman :D
-   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
-   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
-}
-
-package() {
-   cd "${srcdir}/etckeeper/"
-
-   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
-}
-

Copied: etckeeper/repos/community-any/PKGBUILD (from rev 520748, 
etckeeper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 13:52:18 UTC (rev 520749)
@@ -0,0 +1,38 @@
+# Maintainer: Christian Hesse 
+# Contributor: mathieu.clabaut 
+# Contributor: Buce 
+# Contributor: Danie Roux 
+
+pkgname=etckeeper
+pkgver=1.18.10
+pkgrel=2
+pkgdesc="Collection of tools to let /etc be stored in a git, hg or bzr 
repository."
+arch=(any)
+url="https://etckeeper.branchable.com/;
+license=(GPL2)
+depends=(git diffutils inetutils sed)
+makedepends=(python2 mercurial bzr)
+optdepends=('mercurial: use mercurial for version control'
+   'bzr: use bazaar for version control')
+backup=('etc/etckeeper/etckeeper.conf')
+_tag=395272b2600139777fdcaa2ff9a73c094d54cdcd # git rev-parse ${pkgver}
+source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
+sha256sums=(SKIP)
+validpgpkeys=(E85A5F63B31D24C1EBF0D81CC910D9222512E3C7) # Joey Hess 

+
+build() {
+   cd ${pkgname}
+
+   # Fix python name
+   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
+   sed -i '1s/python/python2/' zypper-etckeeper.py
+
+   # We want pacman :D
+   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
+   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
+}
+
+package() {
+   cd ${pkgname}
+   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
+}


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 13:52:11
  Author: archange
Revision: 520748

Fix FS#62202 and use git blob tag

Modified:
  etckeeper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 13:45:20 UTC (rev 520747)
+++ PKGBUILD2019-10-27 13:52:11 UTC (rev 520748)
@@ -5,24 +5,25 @@
 
 pkgname=etckeeper
 pkgver=1.18.10
-pkgrel=1
-pkgdesc='collection of tools to let /etc be stored in a git, hg or bzr 
repository'
-arch=('any')
-url='https://etckeeper.branchable.com/'
-license=('GPL2')
-depends=('git')
-makedepends=('mercurial' 'bzr')
+pkgrel=2
+pkgdesc="Collection of tools to let /etc be stored in a git, hg or bzr 
repository."
+arch=(any)
+url="https://etckeeper.branchable.com/;
+license=(GPL2)
+depends=(git diffutils inetutils sed)
+makedepends=(python2 mercurial bzr)
 optdepends=('mercurial: use mercurial for version control'
-   'bzr: use bazaar for version control')
+   'bzr: use bazaar for version control')
 backup=('etc/etckeeper/etckeeper.conf')
-validpgpkeys=('E85A5F63B31D24C1EBF0D81CC910D9222512E3C7') # Joey Hess 

-source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${pkgver}?signed;)
-sha256sums=('SKIP')
+_tag=395272b2600139777fdcaa2ff9a73c094d54cdcd # git rev-parse ${pkgver}
+source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
+sha256sums=(SKIP)
+validpgpkeys=(E85A5F63B31D24C1EBF0D81CC910D9222512E3C7) # Joey Hess 

 
 build() {
-   cd "${srcdir}/etckeeper/"
+   cd ${pkgname}
 
-   # fix python
+   # Fix python name
sed -i '/^PYTHON=/c PYTHON=python2' Makefile
sed -i '1s/python/python2/' zypper-etckeeper.py
 
@@ -32,8 +33,6 @@
 }
 
 package() {
-   cd "${srcdir}/etckeeper/"
-
+   cd ${pkgname}
make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
 }
-


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

2019-10-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 27, 2019 @ 13:45:07
  Author: svenstaro
Revision: 520746

upgpkg: lib32-mpg123 1.25.13-1

Modified:
  lib32-mpg123/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 13:43:34 UTC (rev 520745)
+++ PKGBUILD2019-10-27 13:45:07 UTC (rev 520746)
@@ -1,9 +1,10 @@
-# Maintainer: Hugo Doria 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Hugo Doria 
 # Contributor: Giovanni Scafora 
 
 _pkgbasename=mpg123
 pkgname=lib32-$_pkgbasename
-pkgver=1.25.12
+pkgver=1.25.13
 pkgrel=1
 pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)"
 arch=('x86_64')
@@ -13,7 +14,7 @@
 makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
 optdepends=('lib32-sdl: for additional audio support')
 
source=(https://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('4ece1ec124a6ca085e1d68f7ede6d5619fc587ff'
+sha1sums=('2b6428dc563c56fb1374191d1244c8ac928e4d89'
   'SKIP')
 validpgpkeys=(D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE)
 


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

2019-10-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 27, 2019 @ 13:45:20
  Author: svenstaro
Revision: 520747

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-mpg123/repos/multilib-x86_64/PKGBUILD
(from rev 520746, lib32-mpg123/trunk/PKGBUILD)
Deleted:
  lib32-mpg123/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 13:45:07 UTC (rev 520746)
+++ PKGBUILD2019-10-27 13:45:20 UTC (rev 520747)
@@ -1,36 +0,0 @@
-# Maintainer: Hugo Doria 
-# Contributor: Giovanni Scafora 
-
-_pkgbasename=mpg123
-pkgname=lib32-$_pkgbasename
-pkgver=1.25.12
-pkgrel=1
-pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)"
-arch=('x86_64')
-url="http://sourceforge.net/projects/mpg123;
-license=('LGPL2.1')
-depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename)
-makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
-optdepends=('lib32-sdl: for additional audio support')
-source=(https://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('4ece1ec124a6ca085e1d68f7ede6d5619fc587ff'
-  'SKIP')
-validpgpkeys=(D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE)
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  ./configure --prefix=/usr --with-audio="alsa sdl" --with-cpu=i586 
--libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-}

Copied: lib32-mpg123/repos/multilib-x86_64/PKGBUILD (from rev 520746, 
lib32-mpg123/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 13:45:20 UTC (rev 520747)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Hugo Doria 
+# Contributor: Giovanni Scafora 
+
+_pkgbasename=mpg123
+pkgname=lib32-$_pkgbasename
+pkgver=1.25.13
+pkgrel=1
+pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)"
+arch=('x86_64')
+url="http://sourceforge.net/projects/mpg123;
+license=('LGPL2.1')
+depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename)
+makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
+optdepends=('lib32-sdl: for additional audio support')
+source=(https://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('2b6428dc563c56fb1374191d1244c8ac928e4d89'
+  'SKIP')
+validpgpkeys=(D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE)
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  ./configure --prefix=/usr --with-audio="alsa sdl" --with-cpu=i586 
--libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}


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

2019-10-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 27, 2019 @ 13:43:21
  Author: svenstaro
Revision: 520744

upgpkg: alembic 1.7.12-1

Modified:
  alembic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 11:43:47 UTC (rev 520743)
+++ PKGBUILD2019-10-27 13:43:21 UTC (rev 520744)
@@ -1,8 +1,8 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 
 pkgname=alembic
-pkgver=1.7.11
-pkgrel=2
+pkgver=1.7.12
+pkgrel=1
 pkgdesc="A open framework for storing and sharing scene data"
 arch=('x86_64')
 url="http://www.alembic.io/;
@@ -10,7 +10,7 @@
 depends=('openexr' 'boost-libs' 'hdf5')
 makedepends=('cmake' 'boost')
 source=(https://github.com/alembic/alembic/archive/${pkgver}.tar.gz)
-sha512sums=('94b9c218a2fe6e2e24205aff4a2f6bab784851c2aa15592fb60ea91f0e8038b0c0656a118f3a5cba0d3de8917dd90b74d0e2d1c4ac034b9ee3f5d0741d9f6b70')
+sha512sums=('e05e0b24056c17f01784ced1f9606a269974de195f1aca8a6fce2123314e7ee609f70df77ac7fe18dc7f0c04fb883d38cc7de9b963caacf9586aaa24d4ac6210')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2019-10-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 27, 2019 @ 13:43:34
  Author: svenstaro
Revision: 520745

archrelease: copy trunk to community-x86_64

Added:
  alembic/repos/community-x86_64/PKGBUILD
(from rev 520744, alembic/trunk/PKGBUILD)
Deleted:
  alembic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 13:43:21 UTC (rev 520744)
+++ PKGBUILD2019-10-27 13:43:34 UTC (rev 520745)
@@ -1,36 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=alembic
-pkgver=1.7.11
-pkgrel=2
-pkgdesc="A open framework for storing and sharing scene data"
-arch=('x86_64')
-url="http://www.alembic.io/;
-license=('BSD')
-depends=('openexr' 'boost-libs' 'hdf5')
-makedepends=('cmake' 'boost')
-source=(https://github.com/alembic/alembic/archive/${pkgver}.tar.gz)
-sha512sums=('94b9c218a2fe6e2e24205aff4a2f6bab784851c2aa15592fb60ea91f0e8038b0c0656a118f3a5cba0d3de8917dd90b74d0e2d1c4ac034b9ee3f5d0741d9f6b70')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_HDF5=ON
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  cd build
-  make DESTDIR="${pkgdir}/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: alembic/repos/community-x86_64/PKGBUILD (from rev 520744, 
alembic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 13:43:34 UTC (rev 520745)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=alembic
+pkgver=1.7.12
+pkgrel=1
+pkgdesc="A open framework for storing and sharing scene data"
+arch=('x86_64')
+url="http://www.alembic.io/;
+license=('BSD')
+depends=('openexr' 'boost-libs' 'hdf5')
+makedepends=('cmake' 'boost')
+source=(https://github.com/alembic/alembic/archive/${pkgver}.tar.gz)
+sha512sums=('e05e0b24056c17f01784ced1f9606a269974de195f1aca8a6fce2123314e7ee609f70df77ac7fe18dc7f0c04fb883d38cc7de9b963caacf9586aaa24d4ac6210')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_HDF5=ON
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  cd build
+  make DESTDIR="${pkgdir}/" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, October 27, 2019 @ 11:43:47
  Author: arodseth
Revision: 520743

archrelease: copy trunk to community-x86_64

Added:
  neko/repos/community-x86_64/PKGBUILD
(from rev 520742, neko/trunk/PKGBUILD)
Deleted:
  neko/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 11:43:40 UTC (rev 520742)
+++ PKGBUILD2019-10-27 11:43:47 UTC (rev 520743)
@@ -1,43 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Daichi Shinozaki 
-# Contributor: Dwight Schauer 
-# Contributor: Stefan Husmann 
-# Contributor: Christoph Zeiler 
-# Contributor: Michael 'manveru' Fellinger 
-# Contributor: Caleb McCombs 
-# Contributor: Christian Hesse 
-
-pkgname=neko
-pkgver=2.2.0
-pkgrel=6
-pkgdesc='High-level and dynamically typed programming language'
-url='https://nekovm.org/'
-license=(LGPL)
-arch=(x86_64)
-depends=(gc gtk2 mariadb-libs mbedtls sqlite)
-makedepends=(apache apr cmake git mbedtls ninja)
-optdepends=('apache: for extending Apache with mod_neko')
-options=(!strip)
-source=("git+https://github.com/HaxeFoundation/neko#tag=v${pkgver//./-};)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i '/xlocale.h/d' $pkgname/libs/std/sys.c
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../$pkgname \
--DCMAKE_INSTALL_PREFIX=/usr \
--DRUN_LDCONFIG=OFF \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}
-
-# getver: nekovm.org/download
-# vim: ts=2 sw=2 et:

Copied: neko/repos/community-x86_64/PKGBUILD (from rev 520742, 
neko/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 11:43:47 UTC (rev 520743)
@@ -0,0 +1,43 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Daichi Shinozaki 
+# Contributor: Dwight Schauer 
+# Contributor: Stefan Husmann 
+# Contributor: Christoph Zeiler 
+# Contributor: Michael 'manveru' Fellinger 
+# Contributor: Caleb McCombs 
+# Contributor: Christian Hesse 
+
+pkgname=neko
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='High-level and dynamically typed programming language'
+url='https://nekovm.org/'
+license=(LGPL)
+arch=(x86_64)
+depends=(gc gtk2 mariadb-libs mbedtls sqlite)
+makedepends=(apache apr cmake git mbedtls ninja)
+optdepends=('apache: for extending Apache with mod_neko')
+options=(!strip)
+source=("git+https://github.com/HaxeFoundation/neko#tag=v${pkgver//./-};)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i '/xlocale.h/d' $pkgname/libs/std/sys.c
+}
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../$pkgname \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DRUN_LDCONFIG=OFF \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# getver: nekovm.org/download
+# vim: ts=2 sw=2 et:


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

2019-10-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, October 27, 2019 @ 11:43:40
  Author: arodseth
Revision: 520742

upgpkg: neko 2.3.0-1

Modified:
  neko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 11:36:16 UTC (rev 520741)
+++ PKGBUILD2019-10-27 11:43:40 UTC (rev 520742)
@@ -8,8 +8,8 @@
 # Contributor: Christian Hesse 
 
 pkgname=neko
-pkgver=2.2.0
-pkgrel=6
+pkgver=2.3.0
+pkgrel=1
 pkgdesc='High-level and dynamically typed programming language'
 url='https://nekovm.org/'
 license=(LGPL)


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

2019-10-27 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, October 27, 2019 @ 11:36:16
  Author: yan12125
Revision: 520741

python-moto: fix tests with Python 3.8 and more

* python-pyaml -> python-yaml in depends. The new dep matches upstream 
requirement PyYAML.
* Skip boto2 tests only if proxies are used (e.g., on 
https://tests.reproducible-builds.org/archlinux/).
* Enable iot tests. Upstream skips those tests in server mode only [1].
* Document remaining skipped tests.

[1] 
https://github.com/spulec/moto/blob/e77c4e3d09f39e6415fbbc86cfb98709480eb1a9/Makefile#L4-L6

Modified:
  python-moto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:38:23 UTC (rev 520740)
+++ PKGBUILD2019-10-27 11:36:16 UTC (rev 520741)
@@ -11,7 +11,7 @@
 license=(Apache)
 depends=(python-aws-xray-sdk python-boto python-boto3
  python-cryptography python-dateutil python-docker python-jinja
- python-jsondiff python-jose python-mock python-pyaml
+ python-jsondiff python-jose python-mock python-yaml
  python-pytz python-requests python-responses python-xmltodict
  python-werkzeug python-cfn-lint python-setuptools python-sshpubkeys)
 checkdepends=(python-flask python-freezegun python-nose python-sure tk)
@@ -20,10 +20,14 @@
 )
 
source=("https://files.pythonhosted.org/packages/source/m/moto/moto-$pkgver.tar.gz;
 
moto-fix-setup.patch::https://github.com/yan12125/moto/commit/92bf8eff12b49def8e9689c57d26184c548546d0.patch
-
botocore-1.12.198.patch::https://github.com/spulec/moto/commit/e4a4e6183560489e98b95e815b439c7a1cf3566c.patch)
+
botocore-1.12.198.patch::https://github.com/spulec/moto/commit/e4a4e6183560489e98b95e815b439c7a1cf3566c.patch
+
$pkgname-boto2-nose-attrs.patch::https://github.com/yan12125/moto/commit/19cfa7f73e023fb4e72067cead3b5219cf4b46c1.patch
+
$pkgname-python38.patch::https://github.com/yan12125/moto/commit/77bc97c8da7f652848de970d7be2d2a4195f6a4d.patch)
 sha256sums=('95d48d8ebaad47fb5bb4233854cf1cf8523ec5307d50eb1e4017ce10f1960b66'
 '913485b0605c1b9cbb445b1862eb91ee6130430d5b735836f8e1b093565924d8'
-'01d94989ff1016ec6668221ddd07e1423542a8dad7b091f92cdc31602097bfae')
+'01d94989ff1016ec6668221ddd07e1423542a8dad7b091f92cdc31602097bfae'
+'a9b35341f6890072c17020d71a8d621da37ad1ae9b5cfcfd58d2eb563b82468a'
+'cd6be898f27f28b7ee959275181c01e1b2d801f7ce149646c08fdd73089ab5a7')
 
 prepare() {
   cd $_pkgname-$pkgver
@@ -30,6 +34,8 @@
 
   patch -Np1 -i ../moto-fix-setup.patch
   patch -Np1 -i ../botocore-1.12.198.patch
+  patch -Np1 -i ../$pkgname-boto2-nose-attrs.patch
+  patch -Np1 -i ../$pkgname-python38.patch
 
   # Remove upper bounds of dependencies
   sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
@@ -45,14 +51,18 @@
 check() {
   cd $_pkgname-$pkgver
 
+  # Save myself from complex escaping for !
+  # makepkg saves and restores bash options, anyway
+  set +o histexpand
+
   # boto 2.x is broken with proxies https://github.com/boto/boto/issues/2869
-  # XXX: is there a way to skip boto 2.x tests only?
   if [ -n "$http_proxy" -o -n "$https_proxy" ] ; then
-echo "Warning: Skipping tests as some tests do not work with proxies."
-return
+echo "Warning: Skipping boto2 tests as they do not work with proxies."
+NOSE_EXTRA_ARGS='-a !boto2_test'
   fi
 
-  TZ=UTC nosetests -sv ./tests/ --exclude='test_iot.*' 
--exclude='test_lambda.*'
+  # test_lambda tests moto.awslambda, which requires a running docker.service
+  TZ=UTC nosetests -sv ./tests/ --exclude='test_lambda.*' $NOSE_EXTRA_ARGS
 }
 
 package() {


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 10:38:23
  Author: archange
Revision: 520740

archrelease: copy trunk to community-x86_64

Added:
  matterbridge/repos/community-x86_64/PKGBUILD
(from rev 520739, matterbridge/trunk/PKGBUILD)
  matterbridge/repos/community-x86_64/matterbridge.service
(from rev 520739, matterbridge/trunk/matterbridge.service)
Deleted:
  matterbridge/repos/community-x86_64/PKGBUILD
  matterbridge/repos/community-x86_64/matterbridge.service

--+
 PKGBUILD |   78 +++--
 matterbridge.service |   54 -
 2 files changed, 64 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 10:38:16 UTC (rev 520739)
+++ PKGBUILD2019-10-27 10:38:23 UTC (rev 520740)
@@ -1,41 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=matterbridge
-pkgver=1.16.0
-pkgrel=2
-pkgdesc="Multi-protocols (IRC/XMPP/Mattermost/Slack/Matrix/etc) bridge"
-arch=(x86_64)
-url="https://github.com/42wim/matterbridge;
-license=(Apache)
-depends=(glibc)
-makedepends=(go-pie git)
-backup=(etc/matterbridge.toml)
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz"
-
${pkgname}-${pkgver}.tar.gz.asc::"${url}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc"
-matterbridge.service)
-sha256sums=('14b8f212265c8feb93aabc5ce15fc44610672ee0006d9f9f94229d615edfda21'
-'SKIP'
-'89e52388054d3c83199ccbfe8f2dc02a6ae02ec1a2d024460b11464324a1fb9b')
-validpgpkeys=(CC7D978417C1AEA1E4CDD7240E41AB4BF4C610B4) # wim 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  go mod vendor
-}
-
-
-build() {
-  cd ${pkgname}-${pkgver}
-  go build -v \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}" \
--o ${pkgname} .
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 ${pkgname} -t "${pkgdir}"/usr/bin/
-  install -Dm644 matterbridge.toml.sample "${pkgdir}"/etc/matterbridge.toml
-  install -Dm644 ../${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-}

Copied: matterbridge/repos/community-x86_64/PKGBUILD (from rev 520739, 
matterbridge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 10:38:23 UTC (rev 520740)
@@ -0,0 +1,37 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=matterbridge
+pkgver=1.16.1
+pkgrel=1
+pkgdesc="Multi-protocols (IRC/XMPP/Mattermost/Slack/Matrix/etc) bridge"
+arch=(x86_64)
+url="https://github.com/42wim/matterbridge;
+license=(Apache)
+depends=(glibc)
+makedepends=(go-pie git)
+backup=(etc/matterbridge.toml)
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz"
+
${pkgname}-${pkgver}.tar.gz.asc::"${url}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc"
+matterbridge.service)
+sha256sums=('d3331cbb43e9d19e73c38767d176849e2bf2eb09179b419b9588cff9ec994ec2'
+'SKIP'
+'89e52388054d3c83199ccbfe8f2dc02a6ae02ec1a2d024460b11464324a1fb9b')
+validpgpkeys=(CC7D978417C1AEA1E4CDD7240E41AB4BF4C610B4) # wim 
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  go mod vendor
+}
+
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build -v -o ${pkgname} -trimpath -ldflags "-extldflags ${LDFLAGS}" .
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 ${pkgname} -t "${pkgdir}"/usr/bin/
+  install -Dm644 matterbridge.toml.sample "${pkgdir}"/etc/matterbridge.toml
+  install -Dm644 ../${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+}

Deleted: matterbridge.service
===
--- matterbridge.service2019-10-27 10:38:16 UTC (rev 520739)
+++ matterbridge.service2019-10-27 10:38:23 UTC (rev 520740)
@@ -1,27 +0,0 @@
-[Unit]
-Description=Multi-protocols bridge for online communications
-After=network.target
-
-[Service]
-User=matterbridge
-DynamicUser=yes
-ExecStart=/usr/bin/matterbridge -conf /etc/matterbridge.toml
-Type=simple
-CapabilityBoundingSet=
-NoNewPrivileges=True
-PrivateUsers=true
-PrivateDevices=true
-PrivateTmp=true
-ProtectHome=true
-ProtectSystem=strict
-ProtectControlGroups=yes
-ProtectKernelTunables=true
-ProtectKernelModules=yes
-LockPersonality=true
-MemoryDenyWriteExecute=true
-RestrictRealtime=true
-SystemCallArchitectures=native
-SystemCallFilter=@system-service
-
-[Install]
-WantedBy=multi-user.target

Copied: matterbridge/repos/community-x86_64/matterbridge.service (from rev 
520739, matterbridge/trunk/matterbridge.service)
===
--- matterbridge.service(rev 0)
+++ matterbridge.service2019-10-27 10:38:23 UTC (rev 520740)
@@ -0,0 +1,27 @@
+[Unit]
+Description=Multi-protocols bridge for online communications
+After=network.target
+
+[Service]
+User=matterbridge

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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 10:38:16
  Author: archange
Revision: 520739

upgpkg: matterbridge 1.16.1-1

Modified:
  matterbridge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:33:29 UTC (rev 520738)
+++ PKGBUILD2019-10-27 10:38:16 UTC (rev 520739)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=matterbridge
-pkgver=1.16.0
-pkgrel=2
+pkgver=1.16.1
+pkgrel=1
 pkgdesc="Multi-protocols (IRC/XMPP/Mattermost/Slack/Matrix/etc) bridge"
 arch=(x86_64)
 url="https://github.com/42wim/matterbridge;
@@ -13,7 +13,7 @@
 source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz"
 
${pkgname}-${pkgver}.tar.gz.asc::"${url}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc"
 matterbridge.service)
-sha256sums=('14b8f212265c8feb93aabc5ce15fc44610672ee0006d9f9f94229d615edfda21'
+sha256sums=('d3331cbb43e9d19e73c38767d176849e2bf2eb09179b419b9588cff9ec994ec2'
 'SKIP'
 '89e52388054d3c83199ccbfe8f2dc02a6ae02ec1a2d024460b11464324a1fb9b')
 validpgpkeys=(CC7D978417C1AEA1E4CDD7240E41AB4BF4C610B4) # wim 
@@ -26,11 +26,7 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  go build -v \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}" \
--o ${pkgname} .
+  go build -v -o ${pkgname} -trimpath -ldflags "-extldflags ${LDFLAGS}" .
 }
 
 package() {


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 10:33:29
  Author: archange
Revision: 520738

archrelease: copy trunk to community-x86_64

Added:
  keepassxc/repos/community-x86_64/PKGBUILD
(from rev 520737, keepassxc/trunk/PKGBUILD)
Deleted:
  keepassxc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 10:33:14 UTC (rev 520737)
+++ PKGBUILD2019-10-27 10:33:29 UTC (rev 520738)
@@ -1,43 +0,0 @@
-# Maintainer: Balló György 
-# Maintainer: Bruno Pagani 
-
-pkgname=keepassxc
-pkgver=2.4.3
-pkgrel=1
-pkgdesc="Cross-platform community-driven port of Keepass password manager"
-arch=(x86_64)
-url="https://keepassxc.org/;
-license=(GPL)
-depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
- qt5-svg qt5-x11extras quazip yubikey-personalization)
-makedepends=(git cmake qt5-tools)
-_tag=af7d9a8e9f8648abb7822c1b99f31e1e79dc52f3 # git rev-parse ${pkgver}
-source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
-sha256sums=(SKIP)
-validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release 

-  3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01  # Jonathan White 

-  B3724F5B2C98B5B0AEDDBD582AC0283D4CFC9A10) # Janek Bevendorff 

-
-prepare() {
-   mkdir -p build
-}
-
-build() {
-   cd build
-   cmake ../${pkgname} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DWITH_XC_ALL=ON
-   make
-}
-
-check() {
-   cd build
-   make test
-}
-
-package() {
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: keepassxc/repos/community-x86_64/PKGBUILD (from rev 520737, 
keepassxc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 10:33:29 UTC (rev 520738)
@@ -0,0 +1,43 @@
+# Maintainer: Balló György 
+# Maintainer: Bruno Pagani 
+
+pkgname=keepassxc
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Cross-platform community-driven port of Keepass password manager"
+arch=(x86_64)
+url="https://keepassxc.org/;
+license=(GPL)
+depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
+ qt5-svg qt5-x11extras quazip yubikey-personalization)
+makedepends=(git cmake qt5-tools)
+_tag=a1cc0e27e1e692c9b3e03b1b67f1ec8613329875 # git rev-parse ${pkgver}
+source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
+sha256sums=(SKIP)
+validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release 

+  3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01  # Jonathan White 

+  B3724F5B2C98B5B0AEDDBD582AC0283D4CFC9A10) # Janek Bevendorff 

+
+prepare() {
+   mkdir -p build
+}
+
+build() {
+   cd build
+   cmake ../${pkgname} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DWITH_XC_ALL=ON
+   make
+}
+
+check() {
+   cd build
+   make test
+}
+
+package() {
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2019-10-27 Thread Bruno Pagani via arch-commits
Date: Sunday, October 27, 2019 @ 10:33:14
  Author: archange
Revision: 520737

upgpkg: keepassxc 2.5.0-1

Modified:
  keepassxc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:27:42 UTC (rev 520736)
+++ PKGBUILD2019-10-27 10:33:14 UTC (rev 520737)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=keepassxc
-pkgver=2.4.3
+pkgver=2.5.0
 pkgrel=1
 pkgdesc="Cross-platform community-driven port of Keepass password manager"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
  qt5-svg qt5-x11extras quazip yubikey-personalization)
 makedepends=(git cmake qt5-tools)
-_tag=af7d9a8e9f8648abb7822c1b99f31e1e79dc52f3 # git rev-parse ${pkgver}
+_tag=a1cc0e27e1e692c9b3e03b1b67f1ec8613329875 # git rev-parse ${pkgver}
 source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
 sha256sums=(SKIP)
 validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release 



[arch-commits] Commit in python-cairo/repos/staging-x86_64 (PKGBUILD PKGBUILD)

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 10:28:00
  Author: arojas
Revision: 365935

archrelease: copy trunk to staging-x86_64

Added:
  python-cairo/repos/staging-x86_64/PKGBUILD
(from rev 365934, python-cairo/trunk/PKGBUILD)
Deleted:
  python-cairo/repos/staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 10:27:42 UTC (rev 365934)
+++ PKGBUILD2019-10-27 10:28:00 UTC (rev 365935)
@@ -1,42 +0,0 @@
-# Maintainer: Angel Velasquez   
-# Maintainer: Jan de Groot 
-
-pkgbase=python-cairo
-pkgname=(python-cairo python2-cairo)
-pkgver=1.18.1
-pkgrel=2
-pkgdesc="Python bindings for the cairo graphics library"
-arch=('x86_64')
-url="https://pycairo.readthedocs.io/en/latest/;
-license=('LGPL2.1' 'MPL')
-makedepends=(python python2 cairo git)
-_commit=523e679c1bc85354a08352ba0d8d4d9968f21c01  # tags/v1.18.1
-source=("git+https://github.com/pygobject/pycairo/#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pycairo
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-
-build() {
-  cd pycairo
-  python2 setup.py build
-  python setup.py build
-}
-
-package_python2-cairo() {
-  depends=('cairo' 'python2')
-  pkgdesc="Python2 bindings for the cairo graphics library"
-
-  cd pycairo
-  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1'
-}
-
-package_python-cairo() {
-  depends=('cairo' 'python')
-
-  cd pycairo
-  python setup.py install --skip-build --root="${pkgdir}" --optimize='1'
-}

Copied: python-cairo/repos/staging-x86_64/PKGBUILD (from rev 365934, 
python-cairo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 10:28:00 UTC (rev 365935)
@@ -0,0 +1,42 @@
+# Maintainer: Angel Velasquez   
+# Maintainer: Jan de Groot 
+
+pkgbase=python-cairo
+pkgname=(python-cairo python2-cairo)
+pkgver=1.18.2
+pkgrel=2
+pkgdesc="Python bindings for the cairo graphics library"
+arch=('x86_64')
+url="https://pycairo.readthedocs.io/en/latest/;
+license=('LGPL2.1' 'MPL')
+makedepends=(python python2 cairo git)
+_commit=8643af4c10059827056e769c8c7a997bdc3d5a29  # tags/v1.18.2
+source=("git+https://github.com/pygobject/pycairo/#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pycairo
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+
+build() {
+  cd pycairo
+  python2 setup.py build
+  python setup.py build
+}
+
+package_python2-cairo() {
+  depends=('cairo' 'python2')
+  pkgdesc="Python2 bindings for the cairo graphics library"
+
+  cd pycairo
+  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1'
+}
+
+package_python-cairo() {
+  depends=('cairo' 'python')
+
+  cd pycairo
+  python setup.py install --skip-build --root="${pkgdir}" --optimize='1'
+}


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

2019-10-27 Thread Felix Yan via arch-commits
Date: Sunday, October 27, 2019 @ 10:27:42
  Author: felixonmars
Revision: 520736

archrelease: copy trunk to community-staging-x86_64

Added:
  pythia8/repos/community-staging-x86_64/
  pythia8/repos/community-staging-x86_64/PKGBUILD
(from rev 520735, pythia8/trunk/PKGBUILD)
  pythia8/repos/community-staging-x86_64/fix_lhapdf_build.patch
(from rev 520735, pythia8/trunk/fix_lhapdf_build.patch)
  pythia8/repos/community-staging-x86_64/pythia8.sh
(from rev 520735, pythia8/trunk/pythia8.sh)
  pythia8/repos/community-staging-x86_64/respect_lib_suffix.patch
(from rev 520735, pythia8/trunk/respect_lib_suffix.patch)

--+
 PKGBUILD |  122 ++
 fix_lhapdf_build.patch   |   12 +++
 pythia8.sh   |3 
 respect_lib_suffix.patch |  141 +
 4 files changed, 278 insertions(+)

Copied: pythia8/repos/community-staging-x86_64/PKGBUILD (from rev 520735, 
pythia8/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-27 10:27:42 UTC (rev 520736)
@@ -0,0 +1,122 @@
+# Maintainer: Konstantin Gizdov < arch at kge dot pw >
+# Contributor: Joshua Ellis < josh at jpellis dot me >
+# Contributor: Stefano Campanella < stefanocampanella1729 at gmail dot com >
+
+pkgbase=pythia8
+pkgname=('pythia8' 'python-pythia8')
+pkgver=8.2.43
+_pkgid="${pkgbase:0:-1}${pkgver//./}"
+pkgrel=2
+pkgdesc="High-energy physics events generator"
+arch=('x86_64')
+url="http://home.thep.lu.se/Pythia/;
+license=('GPL')
+depends=('python')
+makedepends=('python' 'fastjet' 'hepmc' 'lhapdf>=6.2' 'root')
+source=("http://home.thep.lu.se/~torbjorn/pythia8/${_pkgid}.tgz;
+'pythia8.sh'
+'fix_lhapdf_build.patch'
+'respect_lib_suffix.patch')
+sha256sums=('f8ec27437d9c75302e192ab68929131a6fd642966fe66178dbe87da6da2b1c79'
+'4e373b685960e410024b4e33e22c2dea360dfedd7962837087332f428c974ae5'
+'f7c70b069b350005ac7e9028617713dece9b82c1e8b0dc5fb1f2870abec1d94c'
+'4eb15725cfb5e287fdd9520cb4211b88ebc38a690b7522690ba0664d50bc8669')
+get_pyver () {
+python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+prepare() {
+cd "${srcdir}/${_pkgid}"
+patch -p1 -i "${srcdir}/respect_lib_suffix.patch"
+patch -p1 -i "${srcdir}/fix_lhapdf_build.patch"
+}
+
+build() {
+_inc=/usr/include
+_lib=/usr/lib
+_share=/usr/share/${pkgbase}
+
+# with Python3
+cd "${srcdir}/${_pkgid}"
+# # no such package yet
+# --with-evtgen \
+# --with-evtgen-include=${_inc} \
+# --with-evtgen-lib=${_lib} \
+# # no such package yet
+# --with-hepmc3 \
+# --with-hepmc3-include=${_inc} \
+# --with-hepmc3-lib=${_lib} \
+# # no such package yet
+# --with-powheg \
+# --with-powheg-include=${_inc} \
+# --with-powheg-lib=${_lib} \
+# # no such package yet
+# --with-promc \
+# --with-promc-include=${_inc} \
+# --with-promc-lib=${_lib} \
+./configure --prefix=/usr \
+--prefix-include=${_inc} \
+--prefix-lib=${_lib} \
+--prefix-share=${_share} \
+--cxx-common="${CXXFLAGS} -fPIC" \
+--cxx-shared="-shared ${LDFLAGS} -ldl" \
+--enable-shared \
+--with-fastjet3 \
+--with-fastjet3-include=${_inc} \
+--with-fastjet3-lib=${_lib} \
+--with-gzip \
+--with-gzip-include=${_inc} \
+--with-gzip-lib=${_lib} \
+--with-hepmc2 \
+--with-hepmc2-include=${_inc} \
+--with-hepmc2-lib=${_lib} \
+--with-lhapdf5 \
+--with-lhapdf5-include=${_inc} \
+--with-lhapdf5-lib=${_lib} \
+--with-lhapdf6 \
+--with-lhapdf6-include=${_inc} \
+--with-lhapdf6-lib=${_lib} \
+--with-python \
+--with-python-include="/usr/include/python$(get_pyver)" \
+--with-python-lib="/usr/lib/python$(get_pyver)" \
+--with-root \
+--with-root-include=/usr/include/root \
+--with-root-lib=/usr/lib/root
+make
+}
+
+package_pythia8() {
+provides=('pythia')
+conflicts=('pythia')
+replaces=('pythia')
+depends=('python')
+optdepends=('fastjet: fast jet finding in pp and e+e- collisions'
+'hepmc: storing collisions from Monte Carlo'
+'lhapdf: evaluate PDFs from discretised data files'
+'root: integrated examples with CERN ROOT data analysis 
framework')
+cd "${srcdir}/${_pkgid}"
+install -Dm755 bin/pythia8-config "${pkgdir}/usr/bin/pythia8-config"
+install -Dm644 lib/libpythia8.a 

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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 10:27:42
  Author: arojas
Revision: 365934

python 3.8 rebuild

Modified:
  python-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:26:36 UTC (rev 365933)
+++ PKGBUILD2019-10-27 10:27:42 UTC (rev 365934)
@@ -4,7 +4,7 @@
 pkgbase=python-cairo
 pkgname=(python-cairo python2-cairo)
 pkgver=1.18.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Python bindings for the cairo graphics library"
 arch=('x86_64')
 url="https://pycairo.readthedocs.io/en/latest/;


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

2019-10-27 Thread Felix Yan via arch-commits
Date: Sunday, October 27, 2019 @ 10:27:22
  Author: felixonmars
Revision: 520735

Python 3.8 rebuild

Modified:
  pythia8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 10:17:29 UTC (rev 520734)
+++ PKGBUILD2019-10-27 10:27:22 UTC (rev 520735)
@@ -6,7 +6,7 @@
 pkgname=('pythia8' 'python-pythia8')
 pkgver=8.2.43
 _pkgid="${pkgbase:0:-1}${pkgver//./}"
-pkgrel=1
+pkgrel=2
 pkgdesc="High-energy physics events generator"
 arch=('x86_64')
 url="http://home.thep.lu.se/Pythia/;


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 10:26:36
  Author: arojas
Revision: 365933

archrelease: copy trunk to extra-x86_64

Added:
  python-cairo/repos/extra-x86_64/PKGBUILD
(from rev 365932, python-cairo/trunk/PKGBUILD)
Deleted:
  python-cairo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 10:26:14 UTC (rev 365932)
+++ PKGBUILD2019-10-27 10:26:36 UTC (rev 365933)
@@ -1,42 +0,0 @@
-# Maintainer: Angel Velasquez   
-# Maintainer: Jan de Groot 
-
-pkgbase=python-cairo
-pkgname=(python-cairo python2-cairo)
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Python bindings for the cairo graphics library"
-arch=('x86_64')
-url="https://pycairo.readthedocs.io/en/latest/;
-license=('LGPL2.1' 'MPL')
-makedepends=(python python2 cairo git)
-_commit=523e679c1bc85354a08352ba0d8d4d9968f21c01  # tags/v1.18.1
-source=("git+https://github.com/pygobject/pycairo/#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pycairo
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-
-build() {
-  cd pycairo
-  python2 setup.py build
-  python setup.py build
-}
-
-package_python2-cairo() {
-  depends=('cairo' 'python2')
-  pkgdesc="Python2 bindings for the cairo graphics library"
-
-  cd pycairo
-  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1'
-}
-
-package_python-cairo() {
-  depends=('cairo' 'python')
-
-  cd pycairo
-  python setup.py install --skip-build --root="${pkgdir}" --optimize='1'
-}

Copied: python-cairo/repos/extra-x86_64/PKGBUILD (from rev 365932, 
python-cairo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 10:26:36 UTC (rev 365933)
@@ -0,0 +1,42 @@
+# Maintainer: Angel Velasquez   
+# Maintainer: Jan de Groot 
+
+pkgbase=python-cairo
+pkgname=(python-cairo python2-cairo)
+pkgver=1.18.2
+pkgrel=1
+pkgdesc="Python bindings for the cairo graphics library"
+arch=('x86_64')
+url="https://pycairo.readthedocs.io/en/latest/;
+license=('LGPL2.1' 'MPL')
+makedepends=(python python2 cairo git)
+_commit=8643af4c10059827056e769c8c7a997bdc3d5a29  # tags/v1.18.2
+source=("git+https://github.com/pygobject/pycairo/#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pycairo
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+
+build() {
+  cd pycairo
+  python2 setup.py build
+  python setup.py build
+}
+
+package_python2-cairo() {
+  depends=('cairo' 'python2')
+  pkgdesc="Python2 bindings for the cairo graphics library"
+
+  cd pycairo
+  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1'
+}
+
+package_python-cairo() {
+  depends=('cairo' 'python')
+
+  cd pycairo
+  python setup.py install --skip-build --root="${pkgdir}" --optimize='1'
+}


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 10:26:14
  Author: arojas
Revision: 365932

Update to 1.18.2

Modified:
  python-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 09:27:27 UTC (rev 365931)
+++ PKGBUILD2019-10-27 10:26:14 UTC (rev 365932)
@@ -3,14 +3,14 @@
 
 pkgbase=python-cairo
 pkgname=(python-cairo python2-cairo)
-pkgver=1.18.1
-pkgrel=2
+pkgver=1.18.2
+pkgrel=1
 pkgdesc="Python bindings for the cairo graphics library"
 arch=('x86_64')
 url="https://pycairo.readthedocs.io/en/latest/;
 license=('LGPL2.1' 'MPL')
 makedepends=(python python2 cairo git)
-_commit=523e679c1bc85354a08352ba0d8d4d9968f21c01  # tags/v1.18.1
+_commit=8643af4c10059827056e769c8c7a997bdc3d5a29  # tags/v1.18.2
 source=("git+https://github.com/pygobject/pycairo/#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 10:17:29
  Author: arojas
Revision: 520734

Don't hardcode python version

Modified:
  pythia8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 08:56:32 UTC (rev 520733)
+++ PKGBUILD2019-10-27 10:17:29 UTC (rev 520734)
@@ -118,5 +118,5 @@
 
 install -Dm755 lib/_pythia8.so 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/_pythia8.so"
 install -Dm755 lib/pythia8.py 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/pythia8.py"
-install -Dm644 lib/__pycache__/pythia8.cpython-37.pyc 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/__pycache__/pythia8.cpython-37.pyc"
+install -Dm644 lib/__pycache__/pythia8.cpython-*.pyc  -t 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/__pycache__/"
 }


[arch-commits] Commit in archlinux-appstream-data/repos/extra-any (PKGBUILD PKGBUILD)

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 09:27:27
  Author: arojas
Revision: 365931

archrelease: copy trunk to extra-any

Added:
  archlinux-appstream-data/repos/extra-any/PKGBUILD
(from rev 365930, archlinux-appstream-data/trunk/PKGBUILD)
Deleted:
  archlinux-appstream-data/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 09:26:58 UTC (rev 365930)
+++ PKGBUILD2019-10-27 09:27:27 UTC (rev 365931)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=archlinux-appstream-data
-pkgver=20190925
-pkgrel=1
-pkgdesc="Arch Linux application database for AppStream-based software centers"
-arch=(any)
-url="https://www.archlinux.org;
-license=(GPL)
-depends=()
-makedepends=()
-source=()
-noextract=()
-for _repo in core extra community; do
- 
source+=($_repo-$pkgver.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
-  
$_repo-icons-64x64-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
-  
$_repo-icons-128x128-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
- noextract+=($_repo.xml.gz-$pkgver $_repo-icons-{64x64,128x128}-$pkgver.tar.gz)
-done
-sha256sums=('b3617e447f21727216152fd112fc671f50a83f315e48fd958ece716dbed1e1d1'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'6b8eac35cc830b2de8713a44866d67ebfe5eb7719fc34034c233dc6fb8fad2b0'
-'7b8e3d6ea04fe39112bb3f0adf775b40bc9ed7f8ae927795c5c9ddfeb13fdb53'
-'ceca0b1a1fab738e658319f69b113b617055aed083d4f0230be8728444d064a8'
-'9dc334628241d2d8a8e410e76618a2e5727cc7f00f4260efa428dbc7fa92a848'
-'a60bc64fa4c605afa624cb4eb507e959c80b4a9d6651fac2c7edf7178b9cba10'
-'f5bb096af4324562bed7123384eb7e2d320cd8b8c81d6f58d9dcccd53fe5ff6a')
-
-package() {
-  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
-  for _repo in core extra community; do
-   tar -xzf $_repo-icons-64x64-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
-   tar -xzf $_repo-icons-128x128-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
-   install -m644 $_repo-$pkgver.xml.gz 
"$pkgdir"/usr/share/app-info/xmls/$_repo.xml.gz
-  done
-}

Copied: archlinux-appstream-data/repos/extra-any/PKGBUILD (from rev 365930, 
archlinux-appstream-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 09:27:27 UTC (rev 365931)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=archlinux-appstream-data
+pkgver=20191027
+pkgrel=1
+pkgdesc="Arch Linux application database for AppStream-based software centers"
+arch=(any)
+url="https://www.archlinux.org;
+license=(GPL)
+depends=()
+makedepends=()
+source=()
+noextract=()
+for _repo in core extra community; do
+ 
source+=($_repo-$pkgver.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
+  
$_repo-icons-64x64-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
+  
$_repo-icons-128x128-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
+ noextract+=($_repo.xml.gz-$pkgver $_repo-icons-{64x64,128x128}-$pkgver.tar.gz)
+done
+sha256sums=('a410bc76f84ad7ae9a38d00757921705ac240d6392d710d26021bf5c44e9e5f7'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'ec010f1ff068c70b3f6002481b96c9b292d176a3e353da376c2094ab9ca0f051'
+'6e4f64501aa9a8fc1747b9a8f500679b59df028aee066640665d2eb42e02dedb'
+'dcb911b549f36c5c8d583399a9674ae27644a5861bf6e39d9a986197b8db97c5'
+'8e20aa838a08991170d4fae29a77687a0dfb96c0a27f31720db482bf086146fd'
+'fef501aeb81c00d7236b5afabcb56d3c152ef191a247020eaf7a94831d013294'
+'e18a48194193a346f8434a4aaf1e70abfad87a6dba31d1c2daa032e6d612a827')
+
+package() {
+  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
+  for _repo in core extra community; do
+   tar -xzf $_repo-icons-64x64-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
+   tar -xzf $_repo-icons-128x128-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons

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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 09:26:58
  Author: arojas
Revision: 365930

Update

Modified:
  archlinux-appstream-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 07:16:33 UTC (rev 365929)
+++ PKGBUILD2019-10-27 09:26:58 UTC (rev 365930)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=archlinux-appstream-data
-pkgver=20190925
+pkgver=20191027
 pkgrel=1
 pkgdesc="Arch Linux application database for AppStream-based software centers"
 arch=(any)
@@ -17,15 +17,15 @@
   
$_repo-icons-128x128-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
  noextract+=($_repo.xml.gz-$pkgver $_repo-icons-{64x64,128x128}-$pkgver.tar.gz)
 done
-sha256sums=('b3617e447f21727216152fd112fc671f50a83f315e48fd958ece716dbed1e1d1'
+sha256sums=('a410bc76f84ad7ae9a38d00757921705ac240d6392d710d26021bf5c44e9e5f7'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'6b8eac35cc830b2de8713a44866d67ebfe5eb7719fc34034c233dc6fb8fad2b0'
-'7b8e3d6ea04fe39112bb3f0adf775b40bc9ed7f8ae927795c5c9ddfeb13fdb53'
-'ceca0b1a1fab738e658319f69b113b617055aed083d4f0230be8728444d064a8'
-'9dc334628241d2d8a8e410e76618a2e5727cc7f00f4260efa428dbc7fa92a848'
-'a60bc64fa4c605afa624cb4eb507e959c80b4a9d6651fac2c7edf7178b9cba10'
-'f5bb096af4324562bed7123384eb7e2d320cd8b8c81d6f58d9dcccd53fe5ff6a')
+'ec010f1ff068c70b3f6002481b96c9b292d176a3e353da376c2094ab9ca0f051'
+'6e4f64501aa9a8fc1747b9a8f500679b59df028aee066640665d2eb42e02dedb'
+'dcb911b549f36c5c8d583399a9674ae27644a5861bf6e39d9a986197b8db97c5'
+'8e20aa838a08991170d4fae29a77687a0dfb96c0a27f31720db482bf086146fd'
+'fef501aeb81c00d7236b5afabcb56d3c152ef191a247020eaf7a94831d013294'
+'e18a48194193a346f8434a4aaf1e70abfad87a6dba31d1c2daa032e6d612a827')
 
 package() {
   mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}


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

2019-10-27 Thread Gaëtan Bisson via arch-commits
Date: Sunday, October 27, 2019 @ 08:56:32
  Author: bisson
Revision: 520733

archrelease: copy trunk to community-testing-x86_64

Added:
  unbound/repos/community-testing-x86_64/PKGBUILD
(from rev 520732, unbound/trunk/PKGBUILD)
  unbound/repos/community-testing-x86_64/hook
(from rev 520732, unbound/trunk/hook)
  unbound/repos/community-testing-x86_64/sysusers.d
(from rev 520732, unbound/trunk/sysusers.d)
  unbound/repos/community-testing-x86_64/tmpfiles.d
(from rev 520732, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-testing-x86_64/PKGBUILD
  unbound/repos/community-testing-x86_64/hook
  unbound/repos/community-testing-x86_64/sysusers.d
  unbound/repos/community-testing-x86_64/tmpfiles.d

+
 PKGBUILD   |  159 ++-
 hook   |   20 +++
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 93 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 08:36:29 UTC (rev 520732)
+++ PKGBUILD2019-10-27 08:56:32 UTC (rev 520733)
@@ -1,78 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.9.4
-pkgrel=2
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'ldns' 
'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-
'https://github.com/NLnetLabs/unbound/commit/ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch'
-
'https://github.com/NLnetLabs/unbound/commit/ae2d5276d27f16044382ce49eb2e2459e073e619.patch'
-
'https://github.com/NLnetLabs/unbound/commit/acdd4058d27ede378d0ab720df8a61d7a50189b1.patch'
-
'https://github.com/NLnetLabs/unbound/commit/6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch'
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('3d3e25fb224025f0e732c7970e5676f53fd1764c16d6a01be073a13e42954bb0'
-'SKIP'
-'e44b1e87940f5a6c08c74cfd2c9b8556d211070d6170ea1cd4b5efc650516d33'
-'02616ae85f5f8ce3c3b0af21c67527076e3134ba2f387de343749b817227746d'
-'c52e982da46efedaf8e7c2bed2225a21138a24d2ce89b2de1ceda01e9555b617'
-'b641d402ab3dd4cf5e4ec16fa1aa8b3e735c6df8692cde6685aab928d168ac2c'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'2746aede36b1f57efdcc370b7643ce31ff9e6acb9a1f62705987b07eaed866a3')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch
-   patch -p1 -i ../ae2d5276d27f16044382ce49eb2e2459e073e619.patch
-   patch -p1 -i ../acdd4058d27ede378d0ab720df8a61d7a50189b1.patch
-   patch -p1 -i ../6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-testing-x86_64/PKGBUILD (from rev 520732, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 08:56:32 UTC (rev 520733)
@@ -0,0 +1,81 @@
+# 

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

2019-10-27 Thread Antonio Rojas via arch-commits
Date: Sunday, October 27, 2019 @ 08:36:29
  Author: arojas
Revision: 520732

Fix build with python 3.8

Modified:
  pythia8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 08:34:27 UTC (rev 520731)
+++ PKGBUILD2019-10-27 08:36:29 UTC (rev 520732)
@@ -77,7 +77,7 @@
 --with-lhapdf6-include=${_inc} \
 --with-lhapdf6-lib=${_lib} \
 --with-python \
---with-python-include="/usr/include/python$(get_pyver)m" \
+--with-python-include="/usr/include/python$(get_pyver)" \
 --with-python-lib="/usr/lib/python$(get_pyver)" \
 --with-root \
 --with-root-include=/usr/include/root \


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

2019-10-27 Thread Gaëtan Bisson via arch-commits
Date: Sunday, October 27, 2019 @ 08:34:27
  Author: bisson
Revision: 520731

archrelease: copy trunk to community-x86_64

Added:
  unbound/repos/community-x86_64/PKGBUILD
(from rev 520730, unbound/trunk/PKGBUILD)
  unbound/repos/community-x86_64/hook
(from rev 520730, unbound/trunk/hook)
  unbound/repos/community-x86_64/sysusers.d
(from rev 520730, unbound/trunk/sysusers.d)
  unbound/repos/community-x86_64/tmpfiles.d
(from rev 520730, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/hook
  unbound/repos/community-x86_64/sysusers.d
  unbound/repos/community-x86_64/tmpfiles.d

+
 PKGBUILD   |  159 ++-
 hook   |   20 +++
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 93 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-27 08:33:56 UTC (rev 520730)
+++ PKGBUILD2019-10-27 08:34:27 UTC (rev 520731)
@@ -1,78 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.9.4
-pkgrel=1
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'ldns' 
'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-
'https://github.com/NLnetLabs/unbound/commit/ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch'
-
'https://github.com/NLnetLabs/unbound/commit/ae2d5276d27f16044382ce49eb2e2459e073e619.patch'
-
'https://github.com/NLnetLabs/unbound/commit/acdd4058d27ede378d0ab720df8a61d7a50189b1.patch'
-
'https://github.com/NLnetLabs/unbound/commit/6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch'
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('3d3e25fb224025f0e732c7970e5676f53fd1764c16d6a01be073a13e42954bb0'
-'SKIP'
-'e44b1e87940f5a6c08c74cfd2c9b8556d211070d6170ea1cd4b5efc650516d33'
-'02616ae85f5f8ce3c3b0af21c67527076e3134ba2f387de343749b817227746d'
-'c52e982da46efedaf8e7c2bed2225a21138a24d2ce89b2de1ceda01e9555b617'
-'b641d402ab3dd4cf5e4ec16fa1aa8b3e735c6df8692cde6685aab928d168ac2c'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'2746aede36b1f57efdcc370b7643ce31ff9e6acb9a1f62705987b07eaed866a3')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ff8fd0be5c529e7a1b84e8c74426e9c531c0a8f8.patch
-   patch -p1 -i ../ae2d5276d27f16044382ce49eb2e2459e073e619.patch
-   patch -p1 -i ../acdd4058d27ede378d0ab720df8a61d7a50189b1.patch
-   patch -p1 -i ../6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-x86_64/PKGBUILD (from rev 520730, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-27 08:34:27 UTC (rev 520731)
@@ -0,0 +1,81 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: 

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

2019-10-27 Thread Gaëtan Bisson via arch-commits
Date: Sunday, October 27, 2019 @ 08:33:56
  Author: bisson
Revision: 520730

cherry-pick additional service file improvement

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 08:22:46 UTC (rev 520729)
+++ PKGBUILD2019-10-27 08:33:56 UTC (rev 520730)
@@ -4,7 +4,7 @@
 
 pkgname=unbound
 pkgver=1.9.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
 license=('custom:BSD')
@@ -19,6 +19,7 @@
 
'https://github.com/NLnetLabs/unbound/commit/ae2d5276d27f16044382ce49eb2e2459e073e619.patch'
 
'https://github.com/NLnetLabs/unbound/commit/acdd4058d27ede378d0ab720df8a61d7a50189b1.patch'
 
'https://github.com/NLnetLabs/unbound/commit/6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch'
+
'https://github.com/NLnetLabs/unbound/commit/11f22074a9b7ed76316373146f528d1b792c4527.patch'
 'sysusers.d'
 'tmpfiles.d'
 'hook')
@@ -28,6 +29,7 @@
 '02616ae85f5f8ce3c3b0af21c67527076e3134ba2f387de343749b817227746d'
 'c52e982da46efedaf8e7c2bed2225a21138a24d2ce89b2de1ceda01e9555b617'
 'b641d402ab3dd4cf5e4ec16fa1aa8b3e735c6df8692cde6685aab928d168ac2c'
+'24592ab1635607f3cbd89b3eb14fee0b9b39e48ff949de21978ebe59d8689eb1'
 '85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
 '31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
 '2746aede36b1f57efdcc370b7643ce31ff9e6acb9a1f62705987b07eaed866a3')
@@ -38,6 +40,7 @@
patch -p1 -i ../ae2d5276d27f16044382ce49eb2e2459e073e619.patch
patch -p1 -i ../acdd4058d27ede378d0ab720df8a61d7a50189b1.patch
patch -p1 -i ../6943cab6708761c64e8eb55f2d4bbc5660871ff3.patch
+   patch -p1 -i ../11f22074a9b7ed76316373146f528d1b792c4527.patch
sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
 }
 


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 08:22:46
  Author: foutrelis
Revision: 520729

archrelease: copy trunk to community-staging-x86_64

Added:
  root/repos/community-staging-x86_64/
  root/repos/community-staging-x86_64/PKGBUILD
(from rev 520728, root/trunk/PKGBUILD)
  root/repos/community-staging-x86_64/add_missing_include_ROOT-10315.patch
(from rev 520728, root/trunk/add_missing_include_ROOT-10315.patch)
  root/repos/community-staging-x86_64/root.xml
(from rev 520728, root/trunk/root.xml)
  root/repos/community-staging-x86_64/rootd
(from rev 520728, root/trunk/rootd)
  root/repos/community-staging-x86_64/settings-cuda.cmake
(from rev 520728, root/trunk/settings-cuda.cmake)
  root/repos/community-staging-x86_64/settings.cmake
(from rev 520728, root/trunk/settings.cmake)

--+
 PKGBUILD |  207 +
 add_missing_include_ROOT-10315.patch |   22 +++
 root.xml |   14 ++
 rootd|   37 +
 settings-cuda.cmake  |   99 +++
 settings.cmake   |   98 +++
 6 files changed, 477 insertions(+)

Copied: root/repos/community-staging-x86_64/PKGBUILD (from rev 520728, 
root/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-27 08:22:46 UTC (rev 520729)
@@ -0,0 +1,207 @@
+# Maintainer: Konstantin Gizdov < arch at kge dot pw >
+# Contributor: Frank Siegert < frank.siegert at googlemail dot com >
+# Contributor: Scott Lawrence < bytbox at gmail dot com >
+# Contributor: Thomas Dziedzic < gostrc at gmail dot com >
+# Contributor: Sebastian Voecking < voeck at web dot de >
+
+pkgbase=root
+pkgname=('root' 'root-cuda')
+pkgver=6.18.04
+pkgrel=4
+pkgdesc='C++ data analysis framework and interpreter from CERN'
+arch=('x86_64')
+url='https://root.cern.ch'
+license=('LGPL2.1')
+makedepends=('ccache'
+ 'cern-vdt'
+ 'cfitsio'
+ 'cmake'
+ 'cuda'
+ 'fcgi'
+ 'fftw'
+ 'ftgl'
+ 'blas'
+ 'gcc-fortran'
+ 'gcc8'
+ 'gcc8-fortran'
+ 'giflib'
+ 'git'
+ 'gl2ps'
+ 'glew'
+ 'go-pie'
+ 'gsl'
+ 'hicolor-icon-theme'
+ 'intel-tbb'
+ 'libafterimage'
+ 'libmariadbclient'
+ 'librsvg'
+ 'libxpm'
+ 'ocaml'
+ 'ocaml-ctypes'
+ 'openssl'
+ 'postgresql-libs'
+ 'pythia8>=8.2.40-1'
+ 'python'
+ 'python-numpy'
+ 'sqlite'
+ 'tex-gyre-fonts'
+ 'unuran'
+ 'vc'
+ 'xmlrpc-c'
+ 'xrootd>=4.6.0-2'
+ 'xxhash>=0.6.5-1'
+ 'z3')
+depends=('blas'
+ 'desktop-file-utils'
+ 'fcgi'
+ 'fftw'
+ 'ftgl'
+ 'giflib'
+ 'gl2ps'
+ 'glew'
+ 'graphviz'
+ 'gsl'
+ 'hicolor-icon-theme'
+ 'intel-tbb'
+ 'libafterimage'
+ 'librsvg'
+ 'libxpm'
+ 'tex-gyre-fonts'
+ 'unixodbc'
+ 'xxhash>=0.6.5-1')
+optdepends=('cfitsio: Read images and data from FITS files'
+'cern-vdt: Add a set of fast and vectorisable mathematical 
functions'
+'libmariadbclient: MySQL support'
+'openssl: OpenSSL support'
+'postgresql-libs: PostgreSQL support'
+'pythia8>=8.2.40-1: Pythia8 EG support'
+'sqlite: SQLite support'
+'tcsh: Legacy CSH support'
+'unuran: Support non-uniform random numbers'
+'vc: Add types for portable and intuitive SIMD programming'
+'libxml2: XML parser interface'
+'xrootd: Support remote file server and client')
+source=("https://root.cern.ch/download/root_v${pkgver}.source.tar.gz;
+'root.xml'
+'rootd'
+'settings.cmake'
+'settings-cuda.cmake'
+'add_missing_include_ROOT-10315.patch')
+sha256sums=('315a85fc8363f8eb1bffa0decbf126121258f79bd273513ed64795675485cfa4'
+'50c08191a5b281a39aa05ace4feb8d5405707b4c54a5dcba061f954649c38cb0'
+'3c45b03761d5254142710b7004af0077f18efece7c95511910140d0542c8de8a'
+'070256512fb94df55201891919168777f1c0d61316018e98cddaaa97c9063d55'
+'4ae9f2971c4360fc216ecb793aa11f98e069b33a746c05cdb635fe684a5800c9'
+'1cb2654f22b5f1de7f8621434c76266968db77a1f300de857e47d0f4ad5da217')
+
+get_pyver () {
+python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+prepare() {
+local src
+for src in "${source[@]}"; do
+src="${src%%::*}"
+

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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 08:22:35
  Author: foutrelis
Revision: 520728

Python 3.8 rebuild

Modified:
  root/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 07:30:00 UTC (rev 520727)
+++ PKGBUILD2019-10-27 08:22:35 UTC (rev 520728)
@@ -7,7 +7,7 @@
 pkgbase=root
 pkgname=('root' 'root-cuda')
 pkgver=6.18.04
-pkgrel=3
+pkgrel=4
 pkgdesc='C++ data analysis framework and interpreter from CERN'
 arch=('x86_64')
 url='https://root.cern.ch'


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 07:29:57
  Author: foutrelis
Revision: 520726

Python 3.8 rebuild

Modified:
  python-pyassert/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 07:28:33 UTC (rev 520725)
+++ PKGBUILD2019-10-27 07:29:57 UTC (rev 520726)
@@ -4,7 +4,7 @@
 
 pkgname=python-pyassert
 pkgver=0.4.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Rich assertions library for Python'
 arch=('any')
 url='https://github.com/pyclectic/pyassert'


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 07:30:00
  Author: foutrelis
Revision: 520727

archrelease: copy trunk to community-staging-any

Added:
  python-pyassert/repos/community-staging-any/
  python-pyassert/repos/community-staging-any/PKGBUILD
(from rev 520726, python-pyassert/trunk/PKGBUILD)

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

Copied: python-pyassert/repos/community-staging-any/PKGBUILD (from rev 520726, 
python-pyassert/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-10-27 07:30:00 UTC (rev 520727)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas S Hatch 
+
+pkgname=python-pyassert
+pkgver=0.4.2
+pkgrel=6
+pkgdesc='Rich assertions library for Python'
+arch=('any')
+url='https://github.com/pyclectic/pyassert'
+license=('Apache')
+depends=('python-six')
+makedepends=('python-pybuilder' 'python-mockito' 'python-coverage' 
'python-unittest-xml-reporting'
+ 'flake8' 'pychecker')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pyclectic/pyassert/archive/v$pkgver.tar.gz;)
+sha512sums=('5a7a8078dad967913708f0bc18278ba760bbc098c1fc6f299b6a654206834dbebc82125c33456e498e5edfbf15599360c3cff807df56073eaa62330b6b494f09')
+
+prepare() {
+  # Pybuilder uses directory name to determine distribution name
+  mv pyassert-$pkgver pyassert
+
+  # BUILD FAILED - Missing plugin dependency 'pychecker':
+  #   pip._internal.exceptions.DistributionNotFound:
+  # No matching distribution found for pychecker
+  sed -i '/use_plugin("python.pychecker")/d' pyassert/build.py
+}
+
+check() {
+  cd pyassert
+  pyb -v analyze || warning "ignoring flake8 warnings"
+}
+
+package() {
+  cd pyassert
+  pyb -v package
+  cd target/dist/pyassert-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+}


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 07:28:33
  Author: foutrelis
Revision: 520725

archrelease: copy trunk to community-staging-any

Added:
  python-mockito/repos/community-staging-any/
  python-mockito/repos/community-staging-any/PKGBUILD
(from rev 520724, python-mockito/trunk/PKGBUILD)

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

Copied: python-mockito/repos/community-staging-any/PKGBUILD (from rev 520724, 
python-mockito/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-10-27 07:28:33 UTC (rev 520725)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas S Hatch 
+
+pkgbase=python-mockito
+pkgname=('python-mockito' 'python2-mockito')
+pkgver=1.1.1
+pkgrel=2
+pkgdesc='Spying framework'
+arch=('any')
+url='https://github.com/kaste/mockito-python'
+license=('MIT')
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools' 
'python2-setuptools'
+ 'python2-funcsigs')
+checkdepends=('python-numpy' 'python2-numpy')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/kaste/mockito-python/archive/$pkgver.tar.gz;)
+sha512sums=('ae721fbea3b6ed810411ba795480060a080f217112cd06dfb95ebb6e2c5c86acc073559e8ee7d63367832dd8aa05ae63e7a6f6868b21261a0aedd6ade8591697')
+
+prepare() {
+  cp -a mockito-python-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/mockito-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/mockito-python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/mockito-python-$pkgver
+  py.test build/lib
+
+  cd "$srcdir"/mockito-python-$pkgver-py2
+  py.test2 build/lib
+}
+
+package_python-mockito() {
+  depends=('python')
+
+  cd mockito-python-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+}
+
+package_python2-mockito() {
+  depends=('python2-funcsigs')
+
+  cd mockito-python-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" -O1
+}


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

2019-10-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 27, 2019 @ 07:28:27
  Author: foutrelis
Revision: 520724

Python 3.8 rebuild

Modified:
  python-mockito/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-27 07:21:27 UTC (rev 520723)
+++ PKGBUILD2019-10-27 07:28:27 UTC (rev 520724)
@@ -5,7 +5,7 @@
 pkgbase=python-mockito
 pkgname=('python-mockito' 'python2-mockito')
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Spying framework'
 arch=('any')
 url='https://github.com/kaste/mockito-python'


  1   2   >