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

2019-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 16, 2019 @ 02:50:37
  Author: svenstaro
Revision: 481805

archrelease: copy trunk to community-x86_64

Added:
  tensorflow/repos/community-x86_64/PKGBUILD
(from rev 481804, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-x86_64/cuda_config.patch
(from rev 481804, tensorflow/trunk/cuda_config.patch)
  tensorflow/repos/community-x86_64/protobuf_temp_fix_cuda10.1.patch
(from rev 481804, tensorflow/trunk/protobuf_temp_fix_cuda10.1.patch)
  tensorflow/repos/community-x86_64/protobuf_temp_fix_cuda10.1_apply.patch
(from rev 481804, tensorflow/trunk/protobuf_temp_fix_cuda10.1_apply.patch)
Deleted:
  tensorflow/repos/community-x86_64/PKGBUILD
  tensorflow/repos/community-x86_64/cuda_config.patch
  tensorflow/repos/community-x86_64/protobuf_temp_fix_cuda10.1.patch
  tensorflow/repos/community-x86_64/protobuf_temp_fix_cuda10.1_apply.patch

+
 PKGBUILD   |  610 ---
 cuda_config.patch  |  140 +++
 protobuf_temp_fix_cuda10.1.patch   |   70 +--
 protobuf_temp_fix_cuda10.1_apply.patch |   88 ++--
 4 files changed, 390 insertions(+), 518 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-16 02:50:21 UTC (rev 481804)
+++ PKGBUILD2019-06-16 02:50:37 UTC (rev 481805)
@@ -1,369 +0,0 @@
-# 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=1.13.1
-_pkgver=1.13.1
-pkgrel=5
-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=0.22.0' '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;
-'protobuf_temp_fix_cuda10.1_apply.patch'
-'protobuf_temp_fix_cuda10.1.patch'
-'cuda_config.patch')
-sha512sums=('1e5c020a82b0b502c9c6fc9439905e19e8f1fb07e32740a5e2c70f4a3565c8c87053ccdcad360e95550dad648154e399ca8e352fb97a1788acfec3b87bf323bb'
-
'770afd62612abac4fcef6919f75d1ac3519030d917ce8b277de4f88b76f5449c2ad7af81fbbcd17f5e799d637f188de200f078211f13809373d8f0378bb01754'
-
'592170aab40144453d3d0d1b097475d0cbc48c5901147214e38ed7d8634ea9207fc187b44129c878b0355676a531cb4807d4f2124f6110a20cbb61172c18'
-
'a4cf1779b41fdb49a09889f190db99bbd2c903f5addde0e9bfad4c2c0e02e599d9742e64172bae322f3a3e12aba79f2c92437492355124b3687e11a69c363faa')
-
-get_pyver () {
-python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
-}
-
-prepare() {
-  # https://github.com/tensorflow/tensorflow/issues/26155
-  patch -d tensorflow-${_pkgver} -Np1 -i 
"${srcdir}/protobuf_temp_fix_cuda10.1_apply.patch"
-  cp "${srcdir}/protobuf_temp_fix_cuda10.1.patch" 
"${srcdir}/tensorflow-${_pkgver}/third_party"/
-
-  # do not strictly check sonames on CUDA libs, needed for CUDA 10.1 broken 
sonames
-  patch -d tensorflow-${_pkgver} -Np1 -i "${srcdir}/cuda_config.patch"
-
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-cuda
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt-cuda
-  # These environment variables influence the behavior of the configure call 
below.
-  export PYTHON_BIN_PATH=/usr/bin/python
-  export USE_DEFAULT_PYTHON_LIB_PATH=1
-  export TF_NEED_JEMALLOC=1
-  export TF_NEED_KAFKA=0
-  export TF_NEED_OPENCL_SYCL=0
-  export TF_NEED_AWS=0
-  export TF_NEED_GCP=0
-  export TF_NEED_HDFS=0
-  export TF_NEED_S3=0
-  export TF_ENABLE_XLA=1
-  export TF_NEED_GDR=0
-  export TF_NEED_VERBS=0
-  export TF_NEED_OPENCL=0
-  export TF_NEED_MPI=0
-  export TF_NEED_TENSORRT=0
-  export TF_NEED_NGRAPH=0
-  export TF_NEED_IGNITE=0
-  export TF_NEED_ROCM=0
-  export TF_SET_ANDROID_WORKSPACE=0
-  export TF_DOWNLOAD_CLANG=0
-  export TF_NCCL_VERSION=2.4
-  export NCCL_INSTALL_PATH=/usr
-  export TF_IGNORE_MAX_BAZEL_VERSION=1
-}
-
-build() {
-  cd "${srcdir}"/tensorflow-${_pkgver}
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=0
-  ./configure
-  bazel \
-build --config=opt \
-  //tensorflow:libtensorflow.so \
-  //tensorflow:libtensorflow_cc.so \
-  //tensorflow:install_headers \
-  //tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package "${srcdir}"/tmp

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

2019-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 16, 2019 @ 02:50:21
  Author: svenstaro
Revision: 481804

upgpkg: tensorflow 1.14.0rc1-1

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 02:12:16 UTC (rev 481803)
+++ PKGBUILD2019-06-16 02:50:21 UTC (rev 481804)
@@ -1,4 +1,4 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Co-Maintainer: Konstantin Gizdov (kgizdov) 
 # Contributor: Adria Arrufat (archdria) 
 # Contributor: Thibault Lorrain (fredszaq) 
@@ -5,26 +5,20 @@
 
 pkgbase=tensorflow
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
-pkgver=1.13.1
-_pkgver=1.13.1
-pkgrel=5
+pkgver=1.14.0rc1
+_pkgver=1.14.0-rc1
+pkgrel=1
 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=0.22.0' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git' 
'gcc'
+makedepends=('bazel' '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;
-'protobuf_temp_fix_cuda10.1_apply.patch'
-'protobuf_temp_fix_cuda10.1.patch'
-'cuda_config.patch')
-sha512sums=('1e5c020a82b0b502c9c6fc9439905e19e8f1fb07e32740a5e2c70f4a3565c8c87053ccdcad360e95550dad648154e399ca8e352fb97a1788acfec3b87bf323bb'
-
'770afd62612abac4fcef6919f75d1ac3519030d917ce8b277de4f88b76f5449c2ad7af81fbbcd17f5e799d637f188de200f078211f13809373d8f0378bb01754'
-
'592170aab40144453d3d0d1b097475d0cbc48c5901147214e38ed7d8634ea9207fc187b44129c878b0355676a531cb4807d4f2124f6110a20cbb61172c18'
-
'a4cf1779b41fdb49a09889f190db99bbd2c903f5addde0e9bfad4c2c0e02e599d9742e64172bae322f3a3e12aba79f2c92437492355124b3687e11a69c363faa')
+source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;)
+sha512sums=('c2d24332b05719bae4ca35f52ccbcc973a899e7abd7ebe8372a6c352bc254d05a489bd92b3d80c7c4a0ea640bd5295a3ec084cf85de431ab4e655c2d916ae10f')
 
 get_pyver () {
 python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
@@ -31,16 +25,10 @@
 }
 
 prepare() {
-  # https://github.com/tensorflow/tensorflow/issues/26155
-  patch -d tensorflow-${_pkgver} -Np1 -i 
"${srcdir}/protobuf_temp_fix_cuda10.1_apply.patch"
-  cp "${srcdir}/protobuf_temp_fix_cuda10.1.patch" 
"${srcdir}/tensorflow-${_pkgver}/third_party"/
-
-  # do not strictly check sonames on CUDA libs, needed for CUDA 10.1 broken 
sonames
-  patch -d tensorflow-${_pkgver} -Np1 -i "${srcdir}/cuda_config.patch"
-
   cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt
   cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-cuda
   cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt-cuda
+
   # These environment variables influence the behavior of the configure call 
below.
   export PYTHON_BIN_PATH=/usr/bin/python
   export USE_DEFAULT_PYTHON_LIB_PATH=1
@@ -63,11 +51,20 @@
   export TF_SET_ANDROID_WORKSPACE=0
   export TF_DOWNLOAD_CLANG=0
   export TF_NCCL_VERSION=2.4
+  export TF_IGNORE_MAX_BAZEL_VERSION=1
   export NCCL_INSTALL_PATH=/usr
-  export TF_IGNORE_MAX_BAZEL_VERSION=1
+  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc
+  export HOST_CXX_COMPILER_PATH=/usr/bin/gcc
+  export TF_CUDA_CLANG=0  # Clang currently disabled because it's not 
compatible at the moment.
+  export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
+  export TF_CUDA_PATHS=/opt/cuda,/usr/lib,/usr
+  export TF_CUDA_VERSION=$(/opt/cuda/bin/nvcc --version | sed -n 's/^.*release 
\(.*\),.*/\1/p')
+  export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
/usr/include/cudnn.h)
+  export 
TF_CUDA_COMPUTE_CAPABILITIES=3.5,3.7,5.0,5.2,5.3,6.0,6.1,6.2,7.0,7.2,7.5
 }
 
 build() {
+  echo "Building without cuda and without non-x86-64 optimizations"
   cd "${srcdir}"/tensorflow-${_pkgver}
   export CC_OPT_FLAGS="-march=x86-64"
   export TF_NEED_CUDA=0
@@ -80,18 +77,11 @@
   //tensorflow/tools/pip_package:build_pip_package
   bazel-bin/tensorflow/tools/pip_package/build_pip_package "${srcdir}"/tmp
 
-  cd "${srcdir}"/tensorflow-${_pkgver}-cuda
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=1
-  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc
-  export HOST_CXX_COMPILER_PATH=/usr/bin/gcc
-  export TF_CUDA_CLANG=0
-  # export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
-  export CUDA_TOOLKIT_PATH=/opt/cuda
-  export 

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

2019-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 16, 2019 @ 02:12:16
  Author: svenstaro
Revision: 481803

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 481802, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-x86_64/change_default_config.patch
(from rev 481802, python-pytorch/trunk/change_default_config.patch)
Deleted:
  python-pytorch/repos/community-x86_64/PKGBUILD
  python-pytorch/repos/community-x86_64/change_default_config.patch

-+
 PKGBUILD|  340 --
 change_default_config.patch |   56 +++---
 2 files changed, 194 insertions(+), 202 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-16 02:12:03 UTC (rev 481802)
+++ PKGBUILD2019-06-16 02:12:16 UTC (rev 481803)
@@ -1,174 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-pkgbase="python-pytorch"
-pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
-_pkgname="pytorch"
-pkgver=1.1.0
-pkgrel=3
-pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
-arch=('x86_64')
-url="https://pytorch.org;
-license=('BSD')
-depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'python-numpy' 'protobuf')
-makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-get_pyver () {
-python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
-}
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # This is the lazy way since pytorch has sooo many submodules and they keep
-  # changing them around but we've run into more problems so far doing it the
-  # manual than the lazy way. This lazy way (not explicitly specifying all
-  # submodules) will make building inefficient but for now I'll take it.
-  # It will result in the same package, don't worry.
-  git submodule update --init --recursive
-
-  cd ..
-
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
-
-  export CC=gcc
-  export CXX=g++
-  export PYTORCH_BUILD_VERSION="${pkgver}"
-  export PYTORCH_BUILD_NUMBER=1
-  export USE_MKLDNN=0
-  # export BUILD_CUSTOM_PROTOBUF=0
-  # export BUILD_SHARED_LIBS=0
-  export USE_GFLAGS=1
-  export USE_GLOG=1
-  export BUILD_BINARY=1
-  export USE_OPENCV=1
-  export USE_SYSTEM_NCCL=1
-}
-
-build() {
-  echo "Building without cuda and without non-x86-64 optimizations"
-  export NO_CUDA=1
-  export WITH_CUDNN=0
-
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  sed -i "s/march=native/march=x86-64/g" cmake/MiscCheck.cmake
-  python setup.py build
-
-
-  echo "Building without cuda and with non-x86-64 optimizations"
-  export NO_CUDA=1
-  export WITH_CUDNN=0
-
-  cd "${srcdir}/${_pkgname}-${pkgver}-opt"
-  sed -i "s/march=native/march=haswell/g" cmake/MiscCheck.cmake
-  python setup.py build
-
-
-  echo "Building with cuda and without non-x86-64 optimizations"
-  export NO_CUDA=0
-  export WITH_CUDNN=1
-  export CUDAHOSTCXX=g++
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
-
-  cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
-  sed -i "s/march=native/march=x86-64/g" cmake/MiscCheck.cmake
-  python setup.py build
-
-
-  echo "Building with cuda and without non-x86-64 optimizations"
-  export NO_CUDA=0
-  export WITH_CUDNN=1
-  export CUDAHOSTCXX=g++
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
-
-  cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
-  sed -i "s/march=native/march=haswell/g" cmake/MiscCheck.cmake
-  python setup.py build
-}
-
-_package() {
-  # Prevent setup.py from re-running CMake and rebuilding
-  sed -e 's/RUN_BUILD_DEPS = True/RUN_BUILD_DEPS = False/g' -i setup.py
-
-  python setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-
-  # put CMake files in correct place
-  install -d "${pkgdir}/usr/lib/cmake"
-  pytorchpath="usr/lib/python$(get_pyver)/site-packages/torch"
-  mv "${pkgdir}/${pytorchpath}/share/cmake"/* \
- "${pkgdir}/usr/lib/cmake/"
-
-  # put C++ API in correct place
-  install -d "${pkgdir}/usr/include"
-  install -d "${pkgdir}/usr/lib/pytorch"
-  mv "${pkgdir}/${pytorchpath}/include"/* "${pkgdir}/usr/include/"

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

2019-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 16, 2019 @ 02:12:03
  Author: svenstaro
Revision: 481802

upgpkg: python-pytorch 1.1.0-4

Tidy up package some

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:51:42 UTC (rev 481801)
+++ PKGBUILD2019-06-16 02:12:03 UTC (rev 481802)
@@ -5,12 +5,12 @@
 pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
 _pkgname="pytorch"
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;
 license=('BSD')
-depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'python-numpy' 'protobuf')
+depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'python-numpy' 'protobuf' 'ffmpeg')
 makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git')
 
source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
 sha256sums=('SKIP')
@@ -37,16 +37,26 @@
 
   export CC=gcc
   export CXX=g++
+  export VERBOSE=1
   export PYTORCH_BUILD_VERSION="${pkgver}"
   export PYTORCH_BUILD_NUMBER=1
-  export USE_MKLDNN=0
-  # export BUILD_CUSTOM_PROTOBUF=0
-  # export BUILD_SHARED_LIBS=0
-  export USE_GFLAGS=1
-  export USE_GLOG=1
-  export BUILD_BINARY=1
-  export USE_OPENCV=1
-  export USE_SYSTEM_NCCL=1
+
+  # Check tools/setup_helpers/cmake.py, setup.py and CMakeLists.txt for a list 
of flags that can be set via env vars.
+  export USE_MKLDNN=OFF
+  # export BUILD_CUSTOM_PROTOBUF=OFF
+  # export BUILD_SHARED_LIBS=OFF
+  export USE_FFMPEG=ON
+  export USE_GFLAGS=ON
+  export USE_GLOG=ON
+  export BUILD_BINARY=ON
+  export USE_OPENCV=ON
+  export USE_SYSTEM_NCCL=ON
+  export CUDAHOSTCXX=g++
+  export CUDA_HOME=/opt/cuda
+  export CUDNN_LIB_DIR=/usr/lib
+  export CUDNN_INCLUDE_DIR=/usr/include
+  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
+  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
 }
 
 build() {
@@ -53,9 +63,7 @@
   echo "Building without cuda and without non-x86-64 optimizations"
   export NO_CUDA=1
   export WITH_CUDNN=0
-
   cd "${srcdir}/${_pkgname}-${pkgver}"
-  sed -i "s/march=native/march=x86-64/g" cmake/MiscCheck.cmake
   python setup.py build
 
 
@@ -62,9 +70,8 @@
   echo "Building without cuda and with non-x86-64 optimizations"
   export NO_CUDA=1
   export WITH_CUDNN=0
-
   cd "${srcdir}/${_pkgname}-${pkgver}-opt"
-  sed -i "s/march=native/march=haswell/g" cmake/MiscCheck.cmake
+  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
   python setup.py build
 
 
@@ -71,30 +78,15 @@
   echo "Building with cuda and without non-x86-64 optimizations"
   export NO_CUDA=0
   export WITH_CUDNN=1
-  export CUDAHOSTCXX=g++
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
-
   cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
-  sed -i "s/march=native/march=x86-64/g" cmake/MiscCheck.cmake
   python setup.py build
 
 
-  echo "Building with cuda and without non-x86-64 optimizations"
+  echo "Building with cuda and with non-x86-64 optimizations"
   export NO_CUDA=0
   export WITH_CUDNN=1
-  export CUDAHOSTCXX=g++
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
-
   cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
-  sed -i "s/march=native/march=haswell/g" cmake/MiscCheck.cmake
+  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
   python setup.py build
 }
 


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:06
  Author: heftig
Revision: 481780

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-anything-arch/repos/community-staging-x86_64/
  deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
481777, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:06 UTC (rev 481780)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=0.1.0
+_extramodules=extramodules-ARCH
+pkgrel=8
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;)
+sha512sums=('892828f7c52bb267993507890329e3f3b03550dd5a575a61a70995ce5d9f8cd27f1f1e5b21d4a1ec213ffc430d5236102a9e49b98a0fc0bf2f9042e719d9bfde')
+
+build() {
+  cd deepin-anything-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make -C kernelmod kdir=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd deepin-anything-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 kernelmod/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:10
  Author: heftig
Revision: 481786

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 481779, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 481780, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 481779, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:10 UTC (rev 481786)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=224
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 481780, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-16 00:51:10 UTC (rev 481786)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:10
  Author: heftig
Revision: 481785

archrelease: copy trunk to community-staging-x86_64

Added:
  ndiswrapper-arch/repos/community-staging-x86_64/
  ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch
(from rev 481777, ndiswrapper-arch/trunk/linux-4.11.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.13.patch
(from rev 481777, ndiswrapper-arch/trunk/linux-4.13.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.15.patch
(from rev 481778, ndiswrapper-arch/trunk/linux-4.15.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.0.patch
(from rev 481778, ndiswrapper-arch/trunk/linux-5.0.patch)

--+
 PKGBUILD |   43 +++
 linux-4.11.patch |   55 ++
 linux-4.13.patch |   27 +++
 linux-4.15.patch |  199 +
 linux-5.0.patch  |   25 ++
 5 files changed, 349 insertions(+)

Copied: ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
481777, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:10 UTC (rev 481785)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=41
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
+
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
+
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch -d 
ndiswrapper
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd ndiswrapper-$pkgver/ndiswrapper
+  make -C driver KVERS_UNAME="$_kernver"
+}
+
+package() {
+  cd ndiswrapper-$pkgver/ndiswrapper
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 driver/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}

Copied: ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch (from 
rev 481777, ndiswrapper-arch/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2019-06-16 00:51:10 UTC (rev 
481785)
@@ -0,0 +1,55 @@
+commit fa2aeeccd5366378ca2eb83c6daee64b511fe792
+Author: Felix Yan 
+Date:   Tue May 16 01:32:56 2017 +0800
+
+Add support for Linux 4.11+
+
+diff --git a/ndiswrapper/driver/ndis.c b/ndiswrapper/driver/ndis.c
+index c1913a05..2ab4dd21 100644
+--- a/ndiswrapper/driver/ndis.c
 b/ndiswrapper/driver/ndis.c
+@@ -2258,7 +2258,9 @@ wstdcall void NdisMIndicateReceivePacket(struct 
ndis_mp_block *nmb,
+   WARNING("empty packet ignored");
+   continue;
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+   /* get total number of bytes in packet */
+   NdisGetFirstBufferFromPacketSafe(packet, , ,
+, _length,
+@@ -2346,7 +2348,9 @@ wstdcall void EthRxIndicateHandler(struct ndis_mp_block 
*nmb, void *rx_ctx,
+   ERROR("nmb is NULL");
+   EXIT3(return);
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+ 
+   if (look_ahead_size < packet_size) {
+

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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:09
  Author: heftig
Revision: 481784

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 481777, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:09 UTC (rev 481784)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=118
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:15
  Author: heftig
Revision: 356186

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 356184, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fs62142.patch
(from rev 356184, nvidia/trunk/fs62142.patch)

---+
 PKGBUILD  |   85 
 fs62142.patch |   13 
 2 files changed, 98 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 356184, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-16 00:51:15 UTC (rev 356186)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=430.26
+_extramodules=extramodules-ARCH
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+fs62142.patch)
+sha512sums=('34ff46659e1d68874dd7ac933fcc6a5dbdbd240e433e5c76c4cb74242001f427848406148fc12035a60d35395c19c81a758ec1ea810d239b15dd72e2d15f884b'
+
'df949debf9fed92b3c58322c02685fb344bbfff2920557e7d55ed3f70559f48cd6199bc85e2af170b7e56797f3e9881a53eab8c411f21e75f5abec26eaa47752')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Fix https://bugs.archlinux.org/task/62142
+patch -Np1 -i ../fs62142.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/fs62142.patch (from rev 356184, 
nvidia/trunk/fs62142.patch)
===
--- staging-x86_64/fs62142.patch(rev 0)
+++ staging-x86_64/fs62142.patch2019-06-16 00:51:15 UTC (rev 356186)
@@ -0,0 +1,13 @@
+diff --git a/kernel/nvidia/nv-dma.c b/kernel/nvidia/nv-dma.c
+index 73cdeed..e691014 100644
+--- a/kernel/nvidia/nv-dma.c
 b/kernel/nvidia/nv-dma.c
+@@ -606,7 +606,7 @@ static NvBool nv_dma_is_map_resource_implemented
+ #if defined(NV_DMA_MAP_RESOURCE_PRESENT)
+ const struct dma_map_ops *ops = get_dma_ops(>dev->dev);
+ 
+-return (ops->map_resource != NULL);
++return (ops && ops->map_resource);
+ #else
+ return NV_FALSE;
+ #endif


[arch-commits] Commit in nvidia-390xx/repos (4 files)

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:13
  Author: heftig
Revision: 356185

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 356184, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 356184, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.1.patch
(from rev 356184, nvidia-390xx/trunk/kernel-5.1.patch)

---+
 PKGBUILD  |   90 
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 3 files changed, 253 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 356184, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-16 00:51:13 UTC (rev 356185)
@@ -0,0 +1,90 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.116
+_extramodules=extramodules-ARCH
+pkgrel=30
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch' 'kernel-5.1.patch')
+sha256sums=('de85a2eea39ca16e25645b345259b01fbe858b833286b7e6785afa273009ef6f'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'d92899d4f7a40e2c3cad92d067f2f53c3a18c49b34e62e707a93b125aa37640f')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+patch -Np1 -i ../kernel-5.1.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 356184, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-06-16 00:51:13 UTC (rev 356185)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if 

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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:08
  Author: heftig
Revision: 481781

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 481777, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:08 UTC (rev 481781)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.8
+pkgrel=12
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+ 'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:12
  Author: heftig
Revision: 481787

archrelease: copy trunk to community-staging-x86_64

Added:
  broadcom-wl/repos/community-staging-x86_64/
  broadcom-wl/repos/community-staging-x86_64/PKGBUILD
(from rev 481786, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 481786, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:12 UTC (rev 481787)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=111
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:51
  Author: heftig
Revision: 481776

0.0.20190601-5: kernel 5.1.10.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:49 UTC (rev 481775)
+++ PKGBUILD2019-06-16 00:50:51 UTC (rev 481776)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20190601
-pkgrel=4
+pkgrel=5
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:05
  Author: heftig
Revision: 481779

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 481777, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:05 UTC (rev 481779)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=230
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:09
  Author: heftig
Revision: 481782

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 481777, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:09 UTC (rev 481782)
@@ -0,0 +1,37 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.01
+pkgrel=20
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d298c4b52bb68b494230c219879eaf57cabe255f3475f7a792f76ad7fd83a0eb')
+
+build() {
+   KERNEL_VERSION=$(

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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:44
  Author: heftig
Revision: 481774

1.1.0-224: kernel 5.1.10.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:43 UTC (rev 481773)
+++ PKGBUILD2019-06-16 00:50:44 UTC (rev 481774)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=223
+pkgrel=224
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:09
  Author: heftig
Revision: 481783

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 481777, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 481777, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   52 
 dkms.conf |9 +
 3 files changed, 62 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
481777, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-06-16 00:51:09 UTC (rev 
481783)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 481777, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:09 UTC (rev 481783)
@@ -0,0 +1,52 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190410
+pkgrel=21
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('0c18954a8c2c7e208b20afdf785501b23be9382345e6577eba5d653002862394'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 481777, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-16 00:51:09 UTC (rev 481783)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


[arch-commits] Commit in nvidia-390xx/trunk (PKGBUILD)

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:46
  Author: heftig
Revision: 356183

390.116-30: kernel 5.1.10.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:42:30 UTC (rev 356182)
+++ PKGBUILD2019-06-16 00:50:46 UTC (rev 356183)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.116
 _extramodules=extramodules-ARCH
-pkgrel=29
+pkgrel=30
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:49
  Author: heftig
Revision: 481775

1.61-41: kernel 5.1.10.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:44 UTC (rev 481774)
+++ PKGBUILD2019-06-16 00:50:49 UTC (rev 481775)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=40
+pkgrel=41
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:43
  Author: heftig
Revision: 481773

20190410-21: kernel 5.1.10.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:41 UTC (rev 481772)
+++ PKGBUILD2019-06-16 00:50:43 UTC (rev 481773)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20190410
-pkgrel=20
+pkgrel=21
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:48
  Author: heftig
Revision: 356184

430.26-3: kernel 5.1.10.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:46 UTC (rev 356183)
+++ PKGBUILD2019-06-16 00:50:48 UTC (rev 356184)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=430.26
 _extramodules=extramodules-ARCH
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:51:04
  Author: heftig
Revision: 481778

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 481777, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
481777, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:51:04 UTC (rev 481778)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190601
+pkgrel=5
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:52
  Author: heftig
Revision: 481777

0.1.0-8: kernel 5.1.10.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:51 UTC (rev 481776)
+++ PKGBUILD2019-06-16 00:50:52 UTC (rev 481777)
@@ -3,7 +3,7 @@
 pkgname=deepin-anything-arch
 pkgver=0.1.0
 _extramodules=extramodules-ARCH
-pkgrel=7
+pkgrel=8
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:39
  Author: heftig
Revision: 481770

6.0.8-12: kernel 5.1.10.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:37 UTC (rev 481769)
+++ PKGBUILD2019-06-16 00:50:39 UTC (rev 481770)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.8
-pkgrel=11
+pkgrel=12
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:41
  Author: heftig
Revision: 481772

8.047.01-20: kernel 5.1.10.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:40 UTC (rev 481771)
+++ PKGBUILD2019-06-16 00:50:41 UTC (rev 481772)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.01
-pkgrel=19
+pkgrel=20
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:37
  Author: heftig
Revision: 481769

6.30.223.271-111: kernel 5.1.10.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:36 UTC (rev 481768)
+++ PKGBUILD2019-06-16 00:50:37 UTC (rev 481769)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=110
+pkgrel=111
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:40
  Author: heftig
Revision: 481771

0.8-230: kernel 5.1.10.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:50:39 UTC (rev 481770)
+++ PKGBUILD2019-06-16 00:50:40 UTC (rev 481771)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=229
+pkgrel=230
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:50:36
  Author: heftig
Revision: 481768

0.43-118: kernel 5.1.10.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:42:14 UTC (rev 481767)
+++ PKGBUILD2019-06-16 00:50:36 UTC (rev 481768)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=117
+pkgrel=118
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:11
  Author: heftig
Revision: 481764

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi-lts/repos/community-staging-x86_64/
  tp_smapi-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 481763, tp_smapi-lts/trunk/PKGBUILD)

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

Copied: tp_smapi-lts/repos/community-staging-x86_64/PKGBUILD (from rev 481763, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:42:11 UTC (rev 481764)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+_pkgname=tp-smapi
+pkgver=0.43
+_extradir=/usr/lib/modules/extramodules-4.19-lts
+pkgrel=7
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts>=4.19.49' 'linux-lts<4.20')
+makedepends=('linux-lts-headers>=4.19.49' 'linux-lts-headers<4.20' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname/-lts/}
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd ${pkgname/-lts/}
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd ${pkgname/-lts/}
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec gzip -n -9 {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:30
  Author: heftig
Revision: 356182

archrelease: copy trunk to extra-x86_64

Added:
  gobject-introspection/repos/extra-x86_64/PKGBUILD
(from rev 356181, gobject-introspection/trunk/PKGBUILD)
Deleted:
  gobject-introspection/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-16 00:42:21 UTC (rev 356181)
+++ PKGBUILD2019-06-16 00:42:30 UTC (rev 356182)
@@ -1,61 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=gobject-introspection
-pkgname=(gobject-introspection gobject-introspection-runtime)
-pkgver=1.60.1
-pkgrel=1
-pkgdesc="Introspection system for GObject-based libraries"
-url="https://wiki.gnome.org/Projects/GObjectIntrospection;
-arch=(x86_64)
-license=(LGPL GPL)
-depends=(python-mako python-markdown)
-makedepends=(cairo git gtk-doc python-sphinx meson)
-options=(!emptydirs)
-_commit=d379a1a0f3d2af479ea74507a70fcb200b0333cc  # tags/1.60.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/glib.git#tag=2.60.0;)
-sha512sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-  
-build() {
-  arch-meson $pkgbase build \
--D cairo=true \
--D gtk_doc=true \
--D doctool=true \
--D glib_src_dir="$srcdir/glib"
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package_gobject-introspection() {
-  depends+=("gobject-introspection-runtime=$pkgver-$pkgrel")
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  python -m compileall -d /usr/lib/$pkgbase "$pkgdir/usr/lib/$pkgbase"
-  python -O -m compileall -d /usr/lib/$pkgbase "$pkgdir/usr/lib/$pkgbase"
-
-### Split runtime
-  mkdir -p "$srcdir/runtime/lib"
-  mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib"
-}
-
-package_gobject-introspection-runtime() {
-  pkgdesc+=" (runtime library)"
-  depends=(glib2)
-
-  mv "$srcdir/runtime" "$pkgdir/usr"
-}

Copied: gobject-introspection/repos/extra-x86_64/PKGBUILD (from rev 356181, 
gobject-introspection/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-16 00:42:30 UTC (rev 356182)
@@ -0,0 +1,61 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=gobject-introspection
+pkgname=(gobject-introspection gobject-introspection-runtime)
+pkgver=1.60.2
+pkgrel=1
+pkgdesc="Introspection system for GObject-based libraries"
+url="https://wiki.gnome.org/Projects/GObjectIntrospection;
+arch=(x86_64)
+license=(LGPL GPL)
+depends=(python-mako python-markdown)
+makedepends=(cairo git gtk-doc python-sphinx meson)
+options=(!emptydirs)
+_commit=41edb870614e12947db8e35af9846b19f1b8d71a  # tags/1.60.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/glib.git#tag=2.60.4;)
+sha512sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+  
+build() {
+  arch-meson $pkgbase build \
+-D cairo=true \
+-D gtk_doc=true \
+-D doctool=true \
+-D glib_src_dir="$srcdir/glib"
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package_gobject-introspection() {
+  depends+=("gobject-introspection-runtime=$pkgver-$pkgrel")
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  python -m compileall -d /usr/lib/$pkgbase "$pkgdir/usr/lib/$pkgbase"
+  python -O -m compileall -d /usr/lib/$pkgbase "$pkgdir/usr/lib/$pkgbase"
+
+### Split runtime
+  mkdir -p "$srcdir/runtime/lib"
+  mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib"
+}
+
+package_gobject-introspection-runtime() {
+  pkgdesc+=" (runtime library)"
+  depends=(glib2)
+
+  mv "$srcdir/runtime" "$pkgdir/usr"
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:14
  Author: heftig
Revision: 481767

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168-lts/repos/community-staging-x86_64/
  r8168-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 481764, r8168-lts/trunk/PKGBUILD)

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

Copied: r8168-lts/repos/community-staging-x86_64/PKGBUILD (from rev 481764, 
r8168-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:42:14 UTC (rev 481767)
@@ -0,0 +1,34 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.047.01
+pkgrel=7
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' "linux-lts>=4.19.49" "linux-lts<4.20")
+makedepends=("linux-lts-headers>=4.19.49" "linux-lts-headers<4.20")
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d298c4b52bb68b494230c219879eaf57cabe255f3475f7a792f76ad7fd83a0eb')
+
+_extramodules=extramodules-4.19-lts
+
+build() {
+   cd "$_pkgname-$pkgver"
+   KERNEL_VERSION="$(

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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:21
  Author: heftig
Revision: 356181

1.60.2-1

Modified:
  gobject-introspection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:42:13 UTC (rev 356180)
+++ PKGBUILD2019-06-16 00:42:21 UTC (rev 356181)
@@ -3,7 +3,7 @@
 
 pkgbase=gobject-introspection
 pkgname=(gobject-introspection gobject-introspection-runtime)
-pkgver=1.60.1
+pkgver=1.60.2
 pkgrel=1
 pkgdesc="Introspection system for GObject-based libraries"
 url="https://wiki.gnome.org/Projects/GObjectIntrospection;
@@ -12,9 +12,9 @@
 depends=(python-mako python-markdown)
 makedepends=(cairo git gtk-doc python-sphinx meson)
 options=(!emptydirs)
-_commit=d379a1a0f3d2af479ea74507a70fcb200b0333cc  # tags/1.60.1^0
+_commit=41edb870614e12947db8e35af9846b19f1b8d71a  # tags/1.60.2^0
 
source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/glib.git#tag=2.60.0;)
+"git+https://gitlab.gnome.org/GNOME/glib.git#tag=2.60.4;)
 sha512sums=('SKIP'
 'SKIP')
 


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:13
  Author: heftig
Revision: 481766

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-lts/repos/community-staging-x86_64/
  wireguard-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 481764, wireguard-lts/trunk/PKGBUILD)

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

Copied: wireguard-lts/repos/community-staging-x86_64/PKGBUILD (from rev 481764, 
wireguard-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:42:13 UTC (rev 481766)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname='wireguard-lts'
+pkgver=0.0.20190601
+pkgrel=3
+_linux_major=4
+_linux_minor=19
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next"
+ "linux-lts-headers>=$_linux_cur" "linux-lts-headers<$_linux_next"
+ "wireguard-dkms>=$pkgver")
+
+_extramodules="extramodules-${_linux_major}.${_linux_minor}-lts"
+
+package_wireguard-lts() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Wireguard module for LTS Kernel'
+  license=('GPL')
+  depends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next")
+  conflicts=('wireguard-dkms')
+  provides=('WIREGUARD-MODULE')
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:13
  Author: heftig
Revision: 481765

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call-lts/repos/community-staging-x86_64/
  acpi_call-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 481764, acpi_call-lts/trunk/PKGBUILD)

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

Copied: acpi_call-lts/repos/community-staging-x86_64/PKGBUILD (from rev 481764, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-16 00:42:13 UTC (rev 481765)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=88
+_extramodules=extramodules-4.19-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('x86_64')
+url='https://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux-lts>=4.19.49')
+makedepends=('linux-lts-headers>=4.19.49')
+provides=('acpi_call')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko
+  echo ${pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in nvidia-390xx-lts/repos (3 files)

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:13
  Author: heftig
Revision: 356180

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx-lts/repos/staging-x86_64/
  nvidia-390xx-lts/repos/staging-x86_64/PKGBUILD
(from rev 356178, nvidia-390xx-lts/trunk/PKGBUILD)
  nvidia-390xx-lts/repos/staging-x86_64/kernel-4.16.patch
(from rev 356178, nvidia-390xx-lts/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   49 +
 kernel-4.16.patch |   33 +
 2 files changed, 82 insertions(+)

Copied: nvidia-390xx-lts/repos/staging-x86_64/PKGBUILD (from rev 356178, 
nvidia-390xx-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-16 00:42:13 UTC (rev 356180)
@@ -0,0 +1,49 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-390xx-lts
+pkgver=390.116
+_extramodules=extramodules-4.19-lts
+pkgrel=10
+epoch=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'linux-lts' 
'linux-lts-headers>=4.19.49')
+provides=('nvidia-390xx')
+conflicts=('nvidia-lts')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+kernel-4.16.patch)
+sha512sums=('842e57b479d833a40fe1e8ecf72217c43d71a07e91cb4b6d14bd3b6326a0ef035e6423c15849ccc23ff82d2740ae8c21a9742502b958bd748736abac5e7d9f1e'
+
'ad1185d998adbf89abf7aea300e5b3bbabe2296016f42592fbc232a6c3983f233df1103d37f35a041f12cc1c722d3edce813a4a1b215784a49c7f0e3e652b5af')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+pkgdesc="NVIDIA drivers for linux-lts, 390xx legacy branch"
+depends=('linux-lts>=4.19.49' "nvidia-390xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx-lts/repos/staging-x86_64/kernel-4.16.patch (from rev 
356178, nvidia-390xx-lts/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-06-16 00:42:13 UTC (rev 356180)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ compile_test() {
+ # Determine if the phys_to_dma function is present.
+ #
+ CODE="
++#include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ void conftest_phys_to_dma(void) {
+ phys_to_dma();
+ }"


[arch-commits] Commit in nvidia-lts/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:42:12
  Author: heftig
Revision: 356179

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-lts/repos/staging-x86_64/
  nvidia-lts/repos/staging-x86_64/PKGBUILD
(from rev 356178, nvidia-lts/trunk/PKGBUILD)

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

Copied: nvidia-lts/repos/staging-x86_64/PKGBUILD (from rev 356178, 
nvidia-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-16 00:42:12 UTC (rev 356179)
@@ -0,0 +1,42 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=430.26
+_extramodules=extramodules-4.19-lts
+pkgrel=2
+epoch=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'linux-lts' 'linux-lts-headers>=4.19.49')
+provides=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('34ff46659e1d68874dd7ac933fcc6a5dbdbd240e433e5c76c4cb74242001f427848406148fc12035a60d35395c19c81a758ec1ea810d239b15dd72e2d15f884b')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+pkgdesc="NVIDIA drivers for linux-lts"
+depends=('linux-lts>=4.19.49' "nvidia-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:31
  Author: heftig
Revision: 481762

8.047.01-7: kernel 4.19.51-2

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:41:29 UTC (rev 481761)
+++ PKGBUILD2019-06-16 00:41:31 UTC (rev 481762)
@@ -3,7 +3,7 @@
 pkgname=r8168-lts
 _pkgname=r8168
 pkgver=8.047.01
-pkgrel=6
+pkgrel=7
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:32
  Author: heftig
Revision: 481763

0.0.20190601-3: kernel 4.19.51-2

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:41:31 UTC (rev 481762)
+++ PKGBUILD2019-06-16 00:41:32 UTC (rev 481763)
@@ -2,7 +2,7 @@
 
 pkgname='wireguard-lts'
 pkgver=0.0.20190601
-pkgrel=2
+pkgrel=3
 _linux_major=4
 _linux_minor=19
 arch=('x86_64')


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:28
  Author: heftig
Revision: 481760

0.43-7: kernel 4.19.51-2

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 23:41:53 UTC (rev 481759)
+++ PKGBUILD2019-06-16 00:41:28 UTC (rev 481760)
@@ -11,7 +11,7 @@
 _pkgname=tp-smapi
 pkgver=0.43
 _extradir=/usr/lib/modules/extramodules-4.19-lts
-pkgrel=6
+pkgrel=7
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:27
  Author: heftig
Revision: 356177

430.26-2: kernel 4.19.51-2

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 23:59:24 UTC (rev 356176)
+++ PKGBUILD2019-06-16 00:41:27 UTC (rev 356177)
@@ -3,7 +3,7 @@
 pkgname=nvidia-lts
 pkgver=430.26
 _extramodules=extramodules-4.19-lts
-pkgrel=1
+pkgrel=2
 epoch=1
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in nvidia-390xx-lts/trunk (PKGBUILD)

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:33
  Author: heftig
Revision: 356178

390.116-10: kernel 4.19.51-2

Modified:
  nvidia-390xx-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:41:27 UTC (rev 356177)
+++ PKGBUILD2019-06-16 00:41:33 UTC (rev 356178)
@@ -3,7 +3,7 @@
 pkgname=nvidia-390xx-lts
 pkgver=390.116
 _extramodules=extramodules-4.19-lts
-pkgrel=9
+pkgrel=10
 epoch=1
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Sunday, June 16, 2019 @ 00:41:29
  Author: heftig
Revision: 481761

1.1.0-88: kernel 4.19.51-2

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-16 00:41:28 UTC (rev 481760)
+++ PKGBUILD2019-06-16 00:41:29 UTC (rev 481761)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=87
+pkgrel=88
 _extramodules=extramodules-4.19-lts
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('x86_64')


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:59:23
  Author: heftig
Revision: 356175

archrelease: copy trunk to staging-x86_64

Added:
  linux-lts/repos/staging-x86_64/
  
linux-lts/repos/staging-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 356173, 
linux-lts/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  linux-lts/repos/staging-x86_64/60-linux.hook
(from rev 356173, linux-lts/trunk/60-linux.hook)
  linux-lts/repos/staging-x86_64/90-linux.hook
(from rev 356173, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/staging-x86_64/PKGBUILD
(from rev 356173, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/staging-x86_64/bcache_fix.diff
(from rev 356173, linux-lts/trunk/bcache_fix.diff)
  linux-lts/repos/staging-x86_64/config
(from rev 356173, linux-lts/trunk/config)
  linux-lts/repos/staging-x86_64/linux-lts.install
(from rev 356173, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/staging-x86_64/linux-lts.preset
(from rev 356173, linux-lts/trunk/linux-lts.preset)

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  103 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  237 
 bcache_fix.diff |  129 
 config  | 9796 
++
 linux-lts.install   |   10 
 linux-lts.preset|   14 
 8 files changed, 10312 insertions(+)

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


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:59:23
  Author: heftig
Revision: 356174

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 356173, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 356173, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 356173, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 356173, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 356173, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 356173, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config| 9977 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10257 insertions(+)

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


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:59:24
  Author: heftig
Revision: 356176

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 356173, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 356173, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 356173, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 356173, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 356173, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 356173, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config|10009 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10289 insertions(+)

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


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:58:02
  Author: heftig
Revision: 356173

5.1.10.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 23:58:01 UTC (rev 356172)
+++ PKGBUILD2019-06-15 23:58:02 UTC (rev 356173)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.9-arch1
+_srcver=5.1.10-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:58:01
  Author: heftig
Revision: 356172

5.1.10.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 23:57:59 UTC (rev 356171)
+++ PKGBUILD2019-06-15 23:58:01 UTC (rev 356172)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.9-zen1
+_srcver=5.1.10-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


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

2019-06-15 Thread Jan Steffens via arch-commits
Date: Saturday, June 15, 2019 @ 23:57:59
  Author: heftig
Revision: 356171

4.19.51-2

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 22:35:27 UTC (rev 356170)
+++ PKGBUILD2019-06-15 23:57:59 UTC (rev 356171)
@@ -4,7 +4,7 @@
 #pkgbase=linux-lts-custom
 _srcname=linux-4.19
 pkgver=4.19.51
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://www.kernel.org/;
 license=('GPL2')


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 23:41:53
  Author: felixonmars
Revision: 481759

archrelease: copy trunk to community-x86_64

Added:
  rclone/repos/community-x86_64/PKGBUILD
(from rev 481758, rclone/trunk/PKGBUILD)
Deleted:
  rclone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 23:41:25 UTC (rev 481758)
+++ PKGBUILD2019-06-15 23:41:53 UTC (rev 481759)
@@ -1,53 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rclone
-pkgver=1.47.0
-pkgrel=1
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('x86_64')
-url="http://rclone.org/;
-license=('MIT')
-depends=('glibc')
-makedepends=('python2' 'pandoc' 'go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ncw/rclone/archive/v$pkgver.tar.gz;)
-sha512sums=('90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125')
-
-prepare() {
-  cd rclone-$pkgver
-
-  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
-
-  mkdir -p .gopath/src/github.com/ncw
-  ln -sf "$PWD" .gopath/src/github.com/ncw/rclone
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/ncw/rclone
-}
-
-build() {
-  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
-
-  PATH="$GOPATH/bin:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html 
MANUAL.txt
-
-  ./rclone genautocomplete bash rclone.bash_completion
-  ./rclone genautocomplete zsh rclone.zsh_completion
-}
-
-check() {
-  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
-  make TAG=v$pkgver test || warning "Tests failed"
-}
-
-package() {
-  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
-  make TAG=v$pkgver DESTDIR="$pkgdir" install
-
-  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
-  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
-}

Copied: rclone/repos/community-x86_64/PKGBUILD (from rev 481758, 
rclone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 23:41:53 UTC (rev 481759)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+pkgname=rclone
+pkgver=1.48.0
+pkgrel=1
+pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
+arch=('x86_64')
+url="http://rclone.org/;
+license=('MIT')
+depends=('glibc')
+makedepends=('python2' 'pandoc' 'go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ncw/rclone/archive/v$pkgver.tar.gz;)
+sha512sums=('038a72cc386c427646d2a4765664e42679fd647a878d44148a0019c8164ec60f1a2788ae0d228b166c3245fc1df6f0045c681e51e8bf2b06ef74215984dd97b5')
+
+prepare() {
+  cd rclone-$pkgver
+
+  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
+
+  mkdir -p .gopath/src/github.com/ncw
+  ln -sf "$PWD" .gopath/src/github.com/ncw/rclone
+  export GOPATH="$PWD/.gopath"
+
+  go get github.com/ncw/rclone
+}
+
+build() {
+  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
+
+  PATH="$GOPATH/bin:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html 
MANUAL.txt
+
+  ./rclone genautocomplete bash rclone.bash_completion
+  ./rclone genautocomplete zsh rclone.zsh_completion
+}
+
+check() {
+  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
+  make TAG=v$pkgver test || warning "Tests failed"
+}
+
+package() {
+  cd rclone-$pkgver/.gopath/src/github.com/ncw/rclone
+  make TAG=v$pkgver DESTDIR="$pkgdir" install
+
+  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
+  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
+}


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 23:41:25
  Author: felixonmars
Revision: 481758

upgpkg: rclone 1.48.0-1

Modified:
  rclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 21:46:18 UTC (rev 481757)
+++ PKGBUILD2019-06-15 23:41:25 UTC (rev 481758)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=rclone
-pkgver=1.47.0
+pkgver=1.48.0
 pkgrel=1
 pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('python2' 'pandoc' 'go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ncw/rclone/archive/v$pkgver.tar.gz;)
-sha512sums=('90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125')
+sha512sums=('038a72cc386c427646d2a4765664e42679fd647a878d44148a0019c8164ec60f1a2788ae0d228b166c3245fc1df6f0045c681e51e8bf2b06ef74215984dd97b5')
 
 prepare() {
   cd rclone-$pkgver


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

2019-06-15 Thread Jan de Groot via arch-commits
Date: Saturday, June 15, 2019 @ 22:35:23
  Author: jgc
Revision: 356169

upgpkg: libnghttp2 1.39.1-1

Modified:
  libnghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 22:35:14 UTC (rev 356168)
+++ PKGBUILD2019-06-15 22:35:23 UTC (rev 356169)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=libnghttp2
-pkgver=1.36.0
+pkgver=1.39.1
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 conflicts=('nghttp2<1.20.0-2')
 
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha512sums=('4e0d5c5cdb4f1b7e5f12790850237f36649af4aa9596033392725972e4e0e5a33bb78bd1aa0735e35e489b523b7e9a236a7b5847dfca69bd7583fcab36c13c76')
+sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
 
 build() {
   cd nghttp2-$pkgver


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

2019-06-15 Thread Jan de Groot via arch-commits
Date: Saturday, June 15, 2019 @ 22:35:14
  Author: jgc
Revision: 356168

archrelease: copy trunk to testing-x86_64

Added:
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 356167, nghttp2/trunk/PKGBUILD)

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

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 356167, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-15 22:35:14 UTC (rev 356168)
@@ -0,0 +1,46 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.39.1
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc c-ares libnghttp2 
systemd-libs)
+options=(!emptydirs)
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  make -C lib DESTDIR="$pkgdir" uninstall
+
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2019-06-15 Thread Jan de Groot via arch-commits
Date: Saturday, June 15, 2019 @ 22:35:27
  Author: jgc
Revision: 356170

archrelease: copy trunk to testing-x86_64

Added:
  libnghttp2/repos/testing-x86_64/
  libnghttp2/repos/testing-x86_64/PKGBUILD
(from rev 356169, libnghttp2/trunk/PKGBUILD)

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

Copied: libnghttp2/repos/testing-x86_64/PKGBUILD (from rev 356169, 
libnghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-15 22:35:27 UTC (rev 356170)
@@ -0,0 +1,38 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=libnghttp2
+pkgver=1.39.1
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(glibc)
+conflicts=('nghttp2<1.20.0-2')
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--disable-examples \
+--disable-python-bindings \
+--enable-lib-only
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver/lib
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/libnghttp2/COPYING"
+}


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

2019-06-15 Thread Jan de Groot via arch-commits
Date: Saturday, June 15, 2019 @ 22:34:58
  Author: jgc
Revision: 356167

upgpkg: nghttp2 1.39.1-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:12:47 UTC (rev 356166)
+++ PKGBUILD2019-06-15 22:34:58 UTC (rev 356167)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.36.0
+pkgver=1.39.1
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha512sums=('4e0d5c5cdb4f1b7e5f12790850237f36649af4aa9596033392725972e4e0e5a33bb78bd1aa0735e35e489b523b7e9a236a7b5847dfca69bd7583fcab36c13c76')
+sha512sums=('36558ed03c59086086abbf144ec7c54c60de3fea00a9ea594feea7186a779781cbb66a08c9b34265892dea382b42b875f551e85331cfa0086e357f9b27b919fa')
 
 build() {
   cd nghttp2-$pkgver


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

2019-06-15 Thread Daniel M. Capella via arch-commits
Date: Saturday, June 15, 2019 @ 21:46:00
  Author: polyzen
Revision: 481756

upgpkg: firefox-noscript 10.6.3-1

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:11:57 UTC (rev 481755)
+++ PKGBUILD2019-06-15 21:46:00 UTC (rev 481756)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-noscript
-pkgver=10.6.2
+pkgver=10.6.3
 pkgrel=1
 pkgdesc="Extension for firefox which disables script"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 
source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('040bc6eaf5bdb72d5851c1f7cdc3be39302859f53dbd479757a2723e639a995f')
+sha256sums=('2f9e10d2512263fbf56cb225c1622576037f01305e09e0e7757e23d13eb3f97d')
 
 package() {
   depends=('firefox')


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

2019-06-15 Thread Daniel M. Capella via arch-commits
Date: Saturday, June 15, 2019 @ 21:46:18
  Author: polyzen
Revision: 481757

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 481756, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 21:46:00 UTC (rev 481756)
+++ PKGBUILD2019-06-15 21:46:18 UTC (rev 481757)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eschwartz 
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-noscript
-pkgver=10.6.2
-pkgrel=1
-pkgdesc="Extension for firefox which disables script"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-groups=('firefox-addons')
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('040bc6eaf5bdb72d5851c1f7cdc3be39302859f53dbd479757a2723e639a995f')
-
-package() {
-  depends=('firefox')
-
-  cd "${srcdir}"
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 481756, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 21:46:18 UTC (rev 481757)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eschwartz 
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-noscript
+pkgver=10.6.3
+pkgrel=1
+pkgdesc="Extension for firefox which disables script"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+groups=('firefox-addons')
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('2f9e10d2512263fbf56cb225c1622576037f01305e09e0e7757e23d13eb3f97d')
+
+package() {
+  depends=('firefox')
+
+  cd "${srcdir}"
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 19:12:38
  Author: bisson
Revision: 356165

upstream update

Modified:
  whois/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:02:25 UTC (rev 356164)
+++ PKGBUILD2019-06-15 19:12:38 UTC (rev 356165)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=whois
-pkgver=5.4.2
+pkgver=5.4.3
 pkgrel=1
 pkgdesc='Intelligent WHOIS client'
 url='https://github.com/rfc1036/whois'
@@ -12,7 +12,7 @@
 depends=('libidn2')
 makedepends=('perl')
 
source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-sha256sums=('eee33a3b3a56912fbf115a7dd24ed60314e2707a3ad6aa604ca2752c1ed01f57')
+sha256sums=('fefa84029f70985db19743e51c4a8b318a169426babeaa824a27110c26090fc3')
 
 backup=('etc/whois.conf')
 


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

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 19:12:47
  Author: bisson
Revision: 356166

archrelease: copy trunk to extra-x86_64

Added:
  whois/repos/extra-x86_64/PKGBUILD
(from rev 356165, whois/trunk/PKGBUILD)
Deleted:
  whois/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:12:38 UTC (rev 356165)
+++ PKGBUILD2019-06-15 19:12:47 UTC (rev 356166)
@@ -1,33 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=whois
-pkgver=5.4.2
-pkgrel=1
-pkgdesc='Intelligent WHOIS client'
-url='https://github.com/rfc1036/whois'
-license=('GPL')
-arch=('x86_64')
-depends=('libidn2')
-makedepends=('perl')
-source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-sha256sums=('eee33a3b3a56912fbf115a7dd24ed60314e2707a3ad6aa604ca2752c1ed01f57')
-
-backup=('etc/whois.conf')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make \
-   CONFIG_FILE=/etc/whois.conf \
-   CFLAGS="$CFLAGS $CPPFLAGS" \
-   HAVE_ICONV=1
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make prefix=/usr BASEDIR="${pkgdir}" install-whois
-   install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
-}

Copied: whois/repos/extra-x86_64/PKGBUILD (from rev 356165, 
whois/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:12:47 UTC (rev 356166)
@@ -0,0 +1,33 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=whois
+pkgver=5.4.3
+pkgrel=1
+pkgdesc='Intelligent WHOIS client'
+url='https://github.com/rfc1036/whois'
+license=('GPL')
+arch=('x86_64')
+depends=('libidn2')
+makedepends=('perl')
+source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
+sha256sums=('fefa84029f70985db19743e51c4a8b318a169426babeaa824a27110c26090fc3')
+
+backup=('etc/whois.conf')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make \
+   CONFIG_FILE=/etc/whois.conf \
+   CFLAGS="$CFLAGS $CPPFLAGS" \
+   HAVE_ICONV=1
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make prefix=/usr BASEDIR="${pkgdir}" install-whois
+   install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
+}


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:11:57
  Author: bpiotrowski
Revision: 481755

archrelease: copy trunk to community-x86_64

Added:
  skopeo/repos/community-x86_64/PKGBUILD
(from rev 481754, skopeo/trunk/PKGBUILD)
  skopeo/repos/community-x86_64/containers-storage.conf.5.md
(from rev 481754, skopeo/trunk/containers-storage.conf.5.md)
  skopeo/repos/community-x86_64/policy.json.5.md
(from rev 481754, skopeo/trunk/policy.json.5.md)
  skopeo/repos/community-x86_64/registries.conf
(from rev 481754, skopeo/trunk/registries.conf)
  skopeo/repos/community-x86_64/registries.conf.5.md
(from rev 481754, skopeo/trunk/registries.conf.5.md)
  skopeo/repos/community-x86_64/seccomp.json
(from rev 481754, skopeo/trunk/seccomp.json)
  skopeo/repos/community-x86_64/storage.conf
(from rev 481754, skopeo/trunk/storage.conf)
Deleted:
  skopeo/repos/community-x86_64/PKGBUILD
  skopeo/repos/community-x86_64/containers-storage.conf.5.md
  skopeo/repos/community-x86_64/policy.json.5.md
  skopeo/repos/community-x86_64/registries.conf
  skopeo/repos/community-x86_64/registries.conf.5.md
  skopeo/repos/community-x86_64/seccomp.json
  skopeo/repos/community-x86_64/storage.conf

--+
 PKGBUILD |  126 +--
 containers-storage.conf.5.md |  278 +++
 policy.json.5.md |  562 +++---
 registries.conf  |   50 -
 registries.conf.5.md |   78 +-
 seccomp.json | 1546 -
 storage.conf |  266 +++
 7 files changed, 1453 insertions(+), 1453 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:10:12 UTC (rev 481754)
+++ PKGBUILD2019-06-15 19:11:57 UTC (rev 481755)
@@ -1,63 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=skopeo
-pkgver=0.1.36
-pkgrel=1
-pkgdesc='A command line utility for various operations on container images and 
image repositories.'
-arch=(x86_64)
-url='https://github.com/projectatomic/skopeo'
-license=(APACHE)
-depends=(gpgme device-mapper ostree)
-makedepends=(go-pie go-md2man btrfs-progs git)
-backup=(etc/containers/policy.json
-etc/containers/registries.conf
-etc/containers/registries.d/default.yaml
-etc/containers/seccomp.json
-etc/containers/storage.conf)
-_commit=41991bab7055173c53adb5283216a5e09b003f6d  # tags/v0.1.36
-source=(git+$url#commit=$_commit
-containers-storage.conf.5.md
-policy.json.5.md
-registries.conf
-registries.conf.5.md
-seccomp.json
-storage.conf)
-sha256sums=('SKIP'
-'707268f7968a6e4c3be282dcac790f7d208527e6220e95232b11b25401c2c817'
-'a4dd89bb5d8dec2b3af3888f879144334aeeab31734e19793da498d355994cd9'
-'bf720633c4c9906e93665813bbf13a73a6cb0df2b412d81228c7673505513d1f'
-'38264ddcf9699b8f8d7b4823abc118fb01362f2d58836c01df13e3e08b801f9f'
-'cfa7dd2c35c8e9cba74a68810e1f377e448988ccb0a54b98232313967677326e'
-'4bcce6e85da1ea07086fe1a921469455c06a0fc083a21692e812643f1c2b22fa')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  mkdir -p src/github.com/containers
-  cp -r $pkgname src/github.com/containers/skopeo
-}
-
-build() {
-  cd src/github.com/containers/skopeo
-  export GOPATH="$srcdir"
-  make binary-local BUILDTAGS='containers_image_ostree_stub ostree'
-  make docs
-}
-
-package() {
-  cd src/github.com/containers/skopeo
-  make DESTDIR="$pkgdir" install
-
-  for conf in registries.conf storage.conf seccomp.json; do
-install -m644 "$srcdir/$conf" -t "$pkgdir/etc/containers/"
-  done
-
-  cd "$srcdir"
-  install -d "$pkgdir/usr/share/man/man5/"
-  for manpage in *.md; do
-go-md2man -in "$manpage" -out "$pkgdir/usr/share/man/man5/${manpage%*.md}"
-  done
-}

Copied: skopeo/repos/community-x86_64/PKGBUILD (from rev 481754, 
skopeo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:11:57 UTC (rev 481755)
@@ -0,0 +1,63 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=skopeo
+pkgver=0.1.37
+pkgrel=1
+pkgdesc='A command line utility for various operations on container images and 
image repositories.'
+arch=(x86_64)
+url='https://github.com/projectatomic/skopeo'
+license=(APACHE)
+depends=(gpgme device-mapper ostree)
+makedepends=(go-pie go-md2man btrfs-progs git)
+backup=(etc/containers/policy.json
+etc/containers/registries.conf
+etc/containers/registries.d/default.yaml
+etc/containers/seccomp.json
+etc/containers/storage.conf)
+_commit=e079f9d61b2508b57e9510752d7e893b544c3cb8  # tags/v0.1.37
+source=(git+$url#commit=$_commit
+containers-storage.conf.5.md
+policy.json.5.md
+registries.conf
+registries.conf.5.md
+seccomp.json
+storage.conf)

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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:10:12
  Author: bpiotrowski
Revision: 481754

0.1.37-1

Modified:
  skopeo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:10:03 UTC (rev 481753)
+++ PKGBUILD2019-06-15 19:10:12 UTC (rev 481754)
@@ -1,7 +1,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=skopeo
-pkgver=0.1.36
+pkgver=0.1.37
 pkgrel=1
 pkgdesc='A command line utility for various operations on container images and 
image repositories.'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 etc/containers/registries.d/default.yaml
 etc/containers/seccomp.json
 etc/containers/storage.conf)
-_commit=41991bab7055173c53adb5283216a5e09b003f6d  # tags/v0.1.36
+_commit=e079f9d61b2508b57e9510752d7e893b544c3cb8  # tags/v0.1.37
 source=(git+$url#commit=$_commit
 containers-storage.conf.5.md
 policy.json.5.md


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:09:57
  Author: bpiotrowski
Revision: 481752

1.4.1-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:09:22 UTC (rev 481751)
+++ PKGBUILD2019-06-15 19:09:57 UTC (rev 481752)
@@ -2,7 +2,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
@@ -12,7 +12,7 @@
  btrfs-progs slirp4netns)
 makedepends=(go-pie go-md2man git)
 source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('17fdf68e85106d0848e89825e191198a4079bb6d9ca6dd3e415e5c010192db9e')
+sha256sums=('45eb7bccd81a1431b0c7a0697829c0bcc397048595d143fd91179b31d22a3c63')
 
 prepare() {
   mkdir -p src/github.com/containers src/github.com/varlink


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:10:03
  Author: bpiotrowski
Revision: 481753

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:09:57 UTC (rev 481752)
+++ PKGBUILD2019-06-15 19:10:03 UTC (rev 481753)
@@ -1,48 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.4.0
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
- btrfs-progs slirp4netns)
-makedepends=(go-pie go-md2man git)
-source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('17fdf68e85106d0848e89825e191198a4079bb6d9ca6dd3e415e5c010192db9e')
-
-prepare() {
-  mkdir -p src/github.com/containers src/github.com/varlink
-  cp -r libpod-$pkgver src/github.com/containers/libpod
-}
-
-build() {
-  export GOPATH="$srcdir"
-  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
-
-  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
-  unset LDFLAGS
-
-  cd src/github.com/containers/libpod
-  make install.tools
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd src/github.com/containers/libpod
-  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd src/github.com/containers/libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 481752, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:10:03 UTC (rev 481753)
@@ -0,0 +1,48 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.4.1
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
+ btrfs-progs slirp4netns)
+makedepends=(go-pie go-md2man git)
+source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha256sums=('45eb7bccd81a1431b0c7a0697829c0bcc397048595d143fd91179b31d22a3c63')
+
+prepare() {
+  mkdir -p src/github.com/containers src/github.com/varlink
+  cp -r libpod-$pkgver src/github.com/containers/libpod
+}
+
+build() {
+  export GOPATH="$srcdir"
+  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
+
+  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
+  unset LDFLAGS
+
+  cd src/github.com/containers/libpod
+  make install.tools
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd src/github.com/containers/libpod
+  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd src/github.com/containers/libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
+}


[arch-commits] Commit in collectd/repos/community-staging-x86_64 (PKGBUILD service)

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 19:09:22
  Author: bisson
Revision: 481751

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 481750, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 481750, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 481750, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:09:22 UTC (rev 481751)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.0
+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=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('7b220f8898a061f6e7f29a8c16697d1a198277f813da69474a67911097c0626b'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./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}-${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-staging-x86_64/service (from rev 481750, 
collectd/trunk/service)
===
--- service (rev 0)
+++ service 2019-06-15 19:09:22 UTC (rev 481751)
@@ -0,0 +1,13 @@
+[Unit]
+Description=System statistics collection daemon
+After=local-fs.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/collectdmon.pid
+ExecStart=/usr/bin/collectdmon
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+
+[Install]
+WantedBy=multi-user.target


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:07:16
  Author: bpiotrowski
Revision: 481747

1.9.0-1

Modified:
  buildah/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:06:42 UTC (rev 481746)
+++ PKGBUILD2019-06-15 19:07:16 UTC (rev 481747)
@@ -1,7 +1,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=buildah
-pkgver=1.8.3
+pkgver=1.9.0
 pkgrel=1
 pkgdesc="A tool which facilitates building OCI images"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(ostree runc skopeo)
 makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
  bzip2 go-md2man runc skopeo)
-_commit=547bd9a5cb56441f8c006d17751968984830838e  # tags/v1.8.3
+_commit=00eb895d6f2f13d658a9cb78714382e494974afc  # tags/v1.9.0^0
 source=(git://github.com/containers/buildah.git#commit=$_commit)
 md5sums=('SKIP')
 


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:07:24
  Author: bpiotrowski
Revision: 481748

archrelease: copy trunk to community-x86_64

Added:
  buildah/repos/community-x86_64/PKGBUILD
(from rev 481747, buildah/trunk/PKGBUILD)
Deleted:
  buildah/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:07:16 UTC (rev 481747)
+++ PKGBUILD2019-06-15 19:07:24 UTC (rev 481748)
@@ -1,37 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=buildah
-pkgver=1.8.3
-pkgrel=1
-pkgdesc="A tool which facilitates building OCI images"
-arch=(x86_64)
-url="https://github.com/containers/buildah;
-license=(Apache)
-depends=(ostree runc skopeo)
-makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
- bzip2 go-md2man runc skopeo)
-_commit=547bd9a5cb56441f8c006d17751968984830838e  # tags/v1.8.3
-source=(git://github.com/containers/buildah.git#commit=$_commit)
-md5sums=('SKIP')
-
-pkgver() {
-  cd buildah
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-  mkdir -p src/github.com/containers
-  cp -r $pkgname src/github.com/containers
-}
-
-build() {
-  export GOPATH="${srcdir}"
-  cd src/github.com/containers/buildah
-  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
-}
-
-package() {
-  cd src/github.com/containers/buildah
-  make DESTDIR="$pkgdir" PREFIX=usr install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 481747, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:07:24 UTC (rev 481748)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=buildah
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="A tool which facilitates building OCI images"
+arch=(x86_64)
+url="https://github.com/containers/buildah;
+license=(Apache)
+depends=(ostree runc skopeo)
+makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
+ bzip2 go-md2man runc skopeo)
+_commit=00eb895d6f2f13d658a9cb78714382e494974afc  # tags/v1.9.0^0
+source=(git://github.com/containers/buildah.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd buildah
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p src/github.com/containers
+  cp -r $pkgname src/github.com/containers
+}
+
+build() {
+  export GOPATH="${srcdir}"
+  cd src/github.com/containers/buildah
+  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
+}
+
+package() {
+  cd src/github.com/containers/buildah
+  make DESTDIR="$pkgdir" PREFIX=usr install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:07:40
  Author: bpiotrowski
Revision: 481750

archrelease: copy trunk to community-x86_64

Added:
  conmon/repos/community-x86_64/PKGBUILD
(from rev 481749, conmon/trunk/PKGBUILD)
Deleted:
  conmon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:07:24 UTC (rev 481749)
+++ PKGBUILD2019-06-15 19:07:40 UTC (rev 481750)
@@ -1,29 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=conmon
-pkgver=0.2.0
-pkgrel=1
-epoch=1
-pkgdesc='OCI container runtime monitor'
-arch=(x86_64)
-url='https://github.com/containers/conmon'
-license=(APACHE)
-depends=(glibc glib2 systemd-libs)
-makedepends=(git)
-_commit=59952292a3b07ac125575024ae21956efe0ecdfb  # tags/v0.2.0
-source=("git+https://github.com/containers/conmon#commit=${_commit};)
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd conmon
-  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
-}
-
-package() {
-  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
-}

Copied: conmon/repos/community-x86_64/PKGBUILD (from rev 481749, 
conmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:07:40 UTC (rev 481750)
@@ -0,0 +1,29 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=conmon
+pkgver=0.3.0
+pkgrel=1
+epoch=1
+pkgdesc='OCI container runtime monitor'
+arch=(x86_64)
+url='https://github.com/containers/conmon'
+license=(APACHE)
+depends=(glibc glib2 systemd-libs)
+makedepends=(git)
+_commit=8455ce1ef385120deb827d0f0588c04357bad4c4  # tags/v0.3.0
+source=("git+https://github.com/containers/conmon#commit=${_commit};)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd conmon
+  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
+}
+
+package() {
+  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
+}


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 19:07:24
  Author: bpiotrowski
Revision: 481749

1:0.3.0-1

Modified:
  conmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:07:24 UTC (rev 481748)
+++ PKGBUILD2019-06-15 19:07:24 UTC (rev 481749)
@@ -1,7 +1,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=conmon
-pkgver=0.2.0
+pkgver=0.3.0
 pkgrel=1
 epoch=1
 pkgdesc='OCI container runtime monitor'
@@ -10,7 +10,7 @@
 license=(APACHE)
 depends=(glibc glib2 systemd-libs)
 makedepends=(git)
-_commit=59952292a3b07ac125575024ae21956efe0ecdfb  # tags/v0.2.0
+_commit=8455ce1ef385120deb827d0f0588c04357bad4c4  # tags/v0.3.0
 source=("git+https://github.com/containers/conmon#commit=${_commit};)
 md5sums=('SKIP')
 


[arch-commits] Commit in collectd/repos/community-staging-x86_64 (PKGBUILD service)

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 19:06:42
  Author: bisson
Revision: 481746

archrelease: copy trunk to community-staging-x86_64

Deleted:
  collectd/repos/community-staging-x86_64/PKGBUILD
  collectd/repos/community-staging-x86_64/service

--+
 PKGBUILD |   74 -
 service  |   13 --
 2 files changed, 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:04:32 UTC (rev 481745)
+++ PKGBUILD2019-06-15 19:06:42 UTC (rev 481746)
@@ -1,74 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.9.0
-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=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'service')
-sha256sums=('7b220f8898a061f6e7f29a8c16697d1a198277f813da69474a67911097c0626b'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/ -Werror//g' -i configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export MAKEFLAGS='-j1'
-   ./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}-${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
-}

Deleted: service
===
--- service 2019-06-15 19:04:32 UTC (rev 481745)
+++ service 2019-06-15 19:06:42 UTC (rev 481746)
@@ -1,13 +0,0 @@
-[Unit]
-Description=System statistics collection daemon
-After=local-fs.target network.target
-
-[Service]
-Type=forking
-PIDFile=/run/collectdmon.pid
-ExecStart=/usr/bin/collectdmon
-ExecReload=/bin/kill -HUP $MAINPID
-Restart=always
-
-[Install]
-WantedBy=multi-user.target


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

2019-06-15 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 15, 2019 @ 19:04:32
  Author: jelle
Revision: 481745

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:04:21 UTC (rev 481744)
+++ PKGBUILD2019-06-15 19:04:32 UTC (rev 481745)
@@ -1,56 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.6.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python2-ipaddress' 'python2-mock' 
'python-mock' 'python-pytest')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-sha512sums=('a36c7b3d622702179329ec67d6ffe09958cf2098f28d0aba74e3b66a8872d91936020e46eb2c5b36644fbef978ecfa5dda77d7c8951abab9da1864a59e328efe')
-
-build() {
-  cd psutil-release-$pkgver
-
-  python setup.py build --build-lib=build/python
-
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  # Required for testing
-  cp setup.py build/python
-  cp -r scripts build/python/
-
-# 4 non-working tests in build chroot, requires fixes. Test framework does not 
allow exclusion.
-#  PYTHONPATH="$PWD/build/python" python psutil/tests/__main__.py
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('python')
-
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('python2')
-
-  cd psutil-release-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-x86_64/PKGBUILD (from rev 481744, 
python-psutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:04:32 UTC (rev 481745)
@@ -0,0 +1,56 @@
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=5.6.3
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-ipaddress' 'python2-mock' 
'python-mock' 'python-pytest')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+sha512sums=('207fb14a26e078829534d9241db02a90ffa827d424d923527c488ffb8da028bf568744a1813f289455fe496c30480c92aa8187f984b1aa7b1fe6fe0dc1419810')
+
+build() {
+  cd psutil-release-$pkgver
+
+  python setup.py build --build-lib=build/python
+
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  # Required for testing
+  cp setup.py build/python
+  cp -r scripts build/python/
+
+# 4 non-working tests in build chroot, requires fixes. Test framework does not 
allow exclusion.
+#  PYTHONPATH="$PWD/build/python" python psutil/tests/__main__.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('python')
+
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('python2')
+
+  cd psutil-release-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-06-15 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 15, 2019 @ 19:04:21
  Author: jelle
Revision: 481744

upgpkg: python-psutil 5.6.3-1

Upstream update

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 19:03:39 UTC (rev 481743)
+++ PKGBUILD2019-06-15 19:04:21 UTC (rev 481744)
@@ -2,7 +2,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.6.2
+pkgver=5.6.3
 pkgrel=1
 arch=('x86_64')
 url='https://github.com/giampaolo/psutil'
@@ -10,7 +10,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python2-ipaddress' 'python2-mock' 
'python-mock' 'python-pytest')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-sha512sums=('a36c7b3d622702179329ec67d6ffe09958cf2098f28d0aba74e3b66a8872d91936020e46eb2c5b36644fbef978ecfa5dda77d7c8951abab9da1864a59e328efe')
+sha512sums=('207fb14a26e078829534d9241db02a90ffa827d424d923527c488ffb8da028bf568744a1813f289455fe496c30480c92aa8187f984b1aa7b1fe6fe0dc1419810')
 
 build() {
   cd psutil-release-$pkgver


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

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 19:03:39
  Author: bisson
Revision: 481743

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 481742, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 481742, collectd/trunk/service)
Deleted:
  collectd/repos/community-staging-x86_64/PKGBUILD
  collectd/repos/community-staging-x86_64/service

--+
 PKGBUILD |  148 ++---
 service  |   26 +-
 2 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 19:02:35 UTC (rev 481742)
+++ PKGBUILD2019-06-15 19:03:39 UTC (rev 481743)
@@ -1,74 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.9.0
-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=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'service')
-sha256sums=('7b220f8898a061f6e7f29a8c16697d1a198277f813da69474a67911097c0626b'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/ -Werror//g' -i configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export MAKEFLAGS='-j1'
-   ./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}-${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-staging-x86_64/PKGBUILD (from rev 481742, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 19:03:39 UTC (rev 481743)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.0
+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 

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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 18:59:39
  Author: bpiotrowski
Revision: 356160

archrelease: copy trunk to staging-x86_64

Added:
  libtool/repos/staging-x86_64/
  libtool/repos/staging-x86_64/PKGBUILD
(from rev 356159, libtool/trunk/PKGBUILD)

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

Copied: libtool/repos/staging-x86_64/PKGBUILD (from rev 356159, 
libtool/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-15 18:59:39 UTC (rev 356160)
@@ -0,0 +1,60 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+# NOTE: requires rebuilt with each new gcc version
+
+pkgname=libtool
+pkgver=2.4.6+42+gb88cebd5
+pkgrel=4
+_gccver=8.3.0
+pkgdesc='A generic library support script'
+arch=(x86_64)
+url='https://www.gnu.org/software/libtool'
+license=(GPL)
+groups=(base-devel)
+depends=(sh tar glibc)
+makedepends=("gcc>=$_gccver" git help2man)
+checkdepends=(gcc-fortran)
+provides=("libltdl=$pkgver" "libtool-multilib=$pkgver")
+conflicts=(libltdl libtool-multilib)
+replaces=(libltdl libtool-multilib)
+_commit=b88cebd510add4420dd8f5367e3cc6e6e1f267cd
+source=(git+https://git.savannah.gnu.org/git/libtool.git#commit=$_commit
+git+https://git.savannah.gnu.org/git/gnulib.git
+gnulib-bootstrap::git+https://github.com/gnulib-modules/bootstrap.git)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd libtool
+  git describe --tags | sed 's/-/+/g;s/^v//'
+}
+
+prepare() {
+  cd libtool
+
+  git submodule init
+  git config --local submodule.gnulib.url "$srcdir/gnulib"
+  git config --local submodule.gl-mod/bootstrap.url "$srcdir/gnulib-bootstrap"
+  git submodule update
+
+  ./bootstrap
+}
+
+build() {
+  cd libtool
+  ./configure --prefix=/usr lt_cv_sys_lib_dlsearch_path_spec="/usr/lib 
/usr/lib32"
+  make
+}
+
+check() {
+  cd libtool
+  make check gl_public_submodule_commit=
+}
+
+package() {
+  cd libtool
+  make DESTDIR="$pkgdir" install
+}


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 18:59:36
  Author: bpiotrowski
Revision: 356159

archrelease: copy trunk to staging-x86_64

Added:
  glibc/repos/staging-x86_64/
  
glibc/repos/staging-x86_64/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch
(from rev 356158, 
glibc/trunk/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch)
  glibc/repos/staging-x86_64/PKGBUILD
(from rev 356158, glibc/trunk/PKGBUILD)
  glibc/repos/staging-x86_64/bz20338.patch
(from rev 356158, glibc/trunk/bz20338.patch)
  
glibc/repos/staging-x86_64/file-truncated-while-reading-soname-after-patchelf.patch
(from rev 356158, 
glibc/trunk/file-truncated-while-reading-soname-after-patchelf.patch)
  glibc/repos/staging-x86_64/glibc.install
(from rev 356158, glibc/trunk/glibc.install)
  glibc/repos/staging-x86_64/lib32-glibc.conf
(from rev 356158, glibc/trunk/lib32-glibc.conf)
  glibc/repos/staging-x86_64/locale-gen
(from rev 356158, glibc/trunk/locale-gen)
  glibc/repos/staging-x86_64/locale.gen.txt
(from rev 356158, glibc/trunk/locale.gen.txt)

-+
 0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch |  194 
 PKGBUILD|  224 
++
 bz20338.patch   |  114 +
 file-truncated-while-reading-soname-after-patchelf.patch|   85 +++
 glibc.install   |5 
 lib32-glibc.conf|1 
 locale-gen  |   42 +
 locale.gen.txt  |   23 +
 8 files changed, 688 insertions(+)

Copied: 
glibc/repos/staging-x86_64/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch
 (from rev 356158, 
glibc/trunk/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch)
===
--- 
staging-x86_64/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch  
(rev 0)
+++ 
staging-x86_64/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch  
2019-06-15 18:59:36 UTC (rev 356159)
@@ -0,0 +1,194 @@
+From 2cbf10ae2ea9e378ff91b8f5c4d8cb77ed05378e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
+Date: Fri, 10 Aug 2018-2019 14:12:40 +
+Subject: [PATCH] Revert "elf: Correct absolute (SHN_ABS) symbol run-time
+ calculation [BZ #19818]"
+
+This reverts commit e7feec374c635b6a29d65c39ae5e1855528fed39.
+---
+ elf/Makefile | 14 ++---
+ elf/dl-addr.c|  2 --
+ elf/tst-absolute-sym-lib.c   | 25 
+ elf/tst-absolute-sym-lib.lds | 19 --
+ elf/tst-absolute-sym.c   | 38 
+ sysdeps/generic/ldsodefs.h   |  3 +--
+ 6 files changed, 3 insertions(+), 98 deletions(-)
+ delete mode 100644 elf/tst-absolute-sym-lib.c
+ delete mode 100644 elf/tst-absolute-sym-lib.lds
+ delete mode 100644 elf/tst-absolute-sym.c
+
+diff --git a/elf/Makefile b/elf/Makefile
+index cd0771307f..5084ba4f6f 100644
+--- a/elf/Makefile
 b/elf/Makefile
+@@ -186,7 +186,7 @@ tests += restest1 preloadtest loadfail multiload origtest 
resolvfail \
+tst-tlsalign tst-tlsalign-extern tst-nodelete-opened \
+tst-nodelete2 tst-audit11 tst-audit12 tst-dlsym-error tst-noload \
+tst-latepthread tst-tls-manydynamic tst-nodelete-dlclose \
+-   tst-debug1 tst-main1 tst-absolute-sym tst-absolute-zero tst-big-note \
++   tst-debug1 tst-main1 \
+tst-unwind-ctor tst-unwind-main
+ #  reldep9
+ tests-internal += loadtest unload unload2 circleload1 \
+@@ -272,8 +272,7 @@ modules-names = testobj1 testobj2 testobj3 testobj4 
testobj5 testobj6 \
+   tst-audit12mod1 tst-audit12mod2 tst-audit12mod3 tst-auditmod12 \
+   tst-latepthreadmod $(tst-tls-many-dynamic-modules) \
+   tst-nodelete-dlclose-dso tst-nodelete-dlclose-plugin \
+-  tst-main1mod tst-libc_dlvsym-dso tst-absolute-sym-lib \
+-  tst-absolute-zero-lib tst-big-note-lib tst-unwind-ctor-lib
++  tst-main1mod tst-libc_dlvsym-dso tst-unwind-ctor-lib
+ # Most modules build with _ISOMAC defined, but those filtered out
+ # depend on internal headers.
+ modules-names-tests = $(filter-out ifuncmod% tst-libc_dlvsym-dso tst-tlsmod%,\
+@@ -1465,14 +1463,6 @@ tst-main1-no-pie = yes
+ LDLIBS-tst-main1 = $(libsupport)
+ tst-main1mod.so-no-z-defs = yes
+ 
+-LDLIBS-tst-absolute-sym-lib.so = tst-absolute-sym-lib.lds
+-$(objpfx)tst-absolute-sym-lib.so: $(LDLIBS-tst-absolute-sym-lib.so)
+-$(objpfx)tst-absolute-sym: $(objpfx)tst-absolute-sym-lib.so
+-
+-LDLIBS-tst-absolute-zero-lib.so = tst-absolute-zero-lib.lds
+-$(objpfx)tst-absolute-zero-lib.so: $(LDLIBS-tst-absolute-zero-lib.so)

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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 18:59:22
  Author: bpiotrowski
Revision: 356157

archrelease: copy trunk to staging-x86_64

Added:
  binutils/repos/staging-x86_64/
  binutils/repos/staging-x86_64/PKGBUILD
(from rev 356156, binutils/trunk/PKGBUILD)

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

Copied: binutils/repos/staging-x86_64/PKGBUILD (from rev 356156, 
binutils/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-15 18:59:22 UTC (rev 356157)
@@ -0,0 +1,78 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+
+pkgname=binutils
+pkgver=2.32
+pkgrel=2
+pkgdesc='A set of programs to assemble and manipulate binary and object files'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+groups=(base-devel)
+depends=(glibc zlib)
+checkdepends=(dejagnu bc)
+conflicts=(binutils-multilib)
+replaces=(binutils-multilib)
+options=(staticlibs !distcc !ccache)
+source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig})
+validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F)
+md5sums=('0d174cdaf85721c5723bf52355be41e6'
+ 'SKIP')
+
+prepare() {
+  mkdir -p binutils-build
+
+  #cd binutils-gdb
+  cd binutils-$pkgver
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd binutils-build
+
+  "$srcdir/binutils-$pkgver/configure" \
+--prefix=/usr \
+--with-lib-path=/usr/lib:/usr/local/lib \
+--with-bugurl=https://bugs.archlinux.org/ \
+--enable-deterministic-archives \
+--enable-gold \
+--enable-ld=default \
+--enable-lto \
+--enable-plugins \
+--enable-relro \
+--enable-shared \
+--enable-targets=x86_64-pep \
+--enable-threads \
+--disable-gdb \
+--disable-werror \
+--with-pic \
+--with-system-zlib
+
+  make configure-host
+  make tooldir=/usr
+}
+
+check() {
+  cd binutils-build
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # ignore failures in gold testsuite...
+  make -k LDFLAGS="" check || true
+}
+
+package() {
+  cd binutils-build
+  make prefix="$pkgdir/usr" tooldir="$pkgdir/usr" install
+
+  # Remove unwanted files
+  rm -f "$pkgdir"/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
+
+  # No shared linking to these files outside binutils
+  rm -f "$pkgdir"/usr/lib/lib{bfd,opcodes}.so
+  echo 'INPUT( /usr/lib/libbfd.a -liberty -lz -ldl )' > 
"$pkgdir/usr/lib/libbfd.so"
+  echo 'INPUT( /usr/lib/libopcodes.a -lbfd )' > "$pkgdir/usr/lib/libopcodes.so"
+}


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

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 18:59:27
  Author: bpiotrowski
Revision: 356158

archrelease: copy trunk to staging-x86_64

Added:
  gcc/repos/staging-x86_64/
  gcc/repos/staging-x86_64/PKGBUILD
(from rev 356157, gcc/trunk/PKGBUILD)
  gcc/repos/staging-x86_64/c89
(from rev 356157, gcc/trunk/c89)
  gcc/repos/staging-x86_64/c99
(from rev 356157, gcc/trunk/c99)

--+
 PKGBUILD |  386 +
 c89  |   10 +
 c99  |   10 +
 3 files changed, 406 insertions(+)

Copied: gcc/repos/staging-x86_64/PKGBUILD (from rev 356157, gcc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-15 18:59:27 UTC (rev 356158)
@@ -0,0 +1,386 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=(gcc gcc-libs gcc-fortran gcc-objc gcc-ada gcc-go lib32-gcc-libs)
+pkgver=9.1.0
+_majorver=${pkgver:0:1}
+_islver=0.21
+pkgrel=1
+pkgdesc='The GNU Compiler Collection'
+arch=(x86_64)
+license=(GPL LGPL FDL custom)
+url='https://gcc.gnu.org'
+makedepends=(binutils libmpc gcc-ada doxygen lib32-glibc lib32-gcc-libs python 
subversion)
+checkdepends=(dejagnu inetutils)
+options=(!emptydirs)
+#source=(https://sources.archlinux.org/other/gcc/gcc-${pkgver/+/-}.tar.xz{,.sig}
+source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
+#source=(gcc::svn://gcc.gnu.org/svn/gcc/branches/gcc-${_majorver}-branch
+http://isl.gforge.inria.fr/isl-${_islver}.tar.xz
+c89 c99)
+validpgpkeys=(F3691687D867B81B51CE07D9BBE43771487328A9  # 
bpiotrow...@archlinux.org
+  86CFFCA918CF3AF47147588051E8B148AC34  # 
evange...@foutrelis.com
+  13975A70E63C361C73AE69EF6EEB81F8981C74C7  # 
richard.guent...@gmail.com
+  33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek 

+sha256sums=('79a66834e96a6050d8fe78db2c3b32fb285b230b855d0a66288235bc04b327a0'
+'SKIP'
+'777058852a3db9500954361e294881214f6ecd4b594c00da5eee974cd6a54960'
+'de48736f6e4153f03d0a5d38ceb6c6fdb7f054e8f47ddd6af0a3dbf14f27b931'
+'2513c6d9984dd0a2058557bf00f06d8d5181734e41dcfe07be7ed86f2959622a')
+
+_svnrev=264010
+_svnurl=svn://gcc.gnu.org/svn/gcc/branches/gcc-${_majorver}-branch
+_libdir=usr/lib/gcc/$CHOST/${pkgver%%+*}
+
+snapshot() {
+  svn export -r${_svnrev} ${_svnurl} gcc-r${_svnrev}
+
+  local datestamp basever _pkgver
+  basever=$(< gcc-r${_svnrev}/gcc/BASE-VER)
+  datestamp=$(< gcc-r${_svnrev}/gcc/DATESTAMP)
+  _pkgver=${basever}-${datestamp}
+
+  mv gcc-r${_svnrev} gcc-${_pkgver}
+  tar cf - gcc-${_pkgver} | xz > gcc-${_pkgver}.tar.xz
+  rm -rf gcc-${_pkgver}
+  gpg -b gcc-${_pkgver}.tar.xz
+  scp gcc-${_pkgver}.tar.xz{,.sig} sources.archlinux.org:/srv/ftp/other/gcc/
+
+  echo
+  echo "pkgver=${_pkgver/-/+}"
+}
+
+prepare() {
+  [[ ! -d gcc ]] && ln -s gcc-${pkgver/+/-} gcc
+  cd gcc
+
+  # link isl for in-tree build
+  ln -s ../isl-${_islver} isl
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # Arch Linux installs x86_64 libraries /lib
+  sed -i '/m64=/s/lib64/lib/' gcc/config/i386/t-linux64
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  mkdir -p "$srcdir/gcc-build"
+}
+
+build() {
+  cd gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  "$srcdir/gcc/configure" --prefix=/usr \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared \
+  --enable-threads=posix \
+  --with-system-zlib \
+  --with-isl \
+  --enable-__cxa_atexit \
+  --disable-libunwind-exceptions \
+  --enable-clocale=gnu \
+  --disable-libstdcxx-pch \
+  --disable-libssp \
+  --enable-gnu-unique-object \
+  --enable-linker-build-id \
+  --enable-lto \
+  --enable-plugin \
+  --enable-install-libiberty \
+  --with-linker-hash-style=gnu \
+  --enable-gnu-indirect-function \
+  --enable-multilib \
+  --disable-werror \
+  --enable-checking=release \
+  --enable-default-pie \
+  --enable-default-ssp \
+  --enable-cet=auto
+
+  make
+
+  # make documentation
+  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
+}
+
+check() {
+  cd gcc-build
+
+  # do not abort on error as some are "expected"
+  make -k check || true
+  "$srcdir/gcc/contrib/test_summary"
+}
+

[arch-commits] Commit in linux-api-headers/repos (staging-any staging-any/PKGBUILD)

2019-06-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, June 15, 2019 @ 18:58:54
  Author: bpiotrowski
Revision: 356156

archrelease: copy trunk to staging-any

Added:
  linux-api-headers/repos/staging-any/
  linux-api-headers/repos/staging-any/PKGBUILD
(from rev 356155, linux-api-headers/trunk/PKGBUILD)

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

Copied: linux-api-headers/repos/staging-any/PKGBUILD (from rev 356155, 
linux-api-headers/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2019-06-15 18:58:54 UTC (rev 356156)
@@ -0,0 +1,35 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+
+pkgname=linux-api-headers
+pkgver=5.1
+pkgrel=1
+pkgdesc='Kernel headers sanitized for use in userspace'
+arch=(any)
+url='http://www.gnu.org/software/libc'
+license=(GPL2)
+source=(https://www.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/linux-${pkgver}.tar.{xz,sign})
+md5sums=('15fbdff95ff98483069ac6e215b9f4f9'
+ 'SKIP')
+validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886'   # Linus Torvalds
+  '647F28654894E3BD457199BE38DBBDC86092693E')  # Greg Kroah-Hartman
+
+build() {
+  cd linux-$pkgver
+
+  make mrproper
+  make headers_check
+}
+
+package() {
+  cd linux-$pkgver
+  make INSTALL_HDR_PATH="$pkgdir/usr" headers_install
+
+  # use headers from libdrm
+  rm -r "$pkgdir/usr/include/drm"
+  
+  # clean-up unnecessary files generated during install
+  find "$pkgdir" \( -name .install -o -name ..install.cmd \) -delete
+}


[arch-commits] Commit in collectd/repos/community-staging-x86_64 (5 files)

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 18:58:25
  Author: bisson
Revision: 481738

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 481737, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 481737, collectd/trunk/service)
Deleted:
  collectd/repos/community-staging-x86_64/PKGBUILD
  collectd/repos/community-staging-x86_64/lm_sensors5to6.patch
  collectd/repos/community-staging-x86_64/service

--+
 PKGBUILD |  151 -
 lm_sensors5to6.patch |   69 --
 service  |   26 
 3 files changed, 87 insertions(+), 159 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 18:50:45 UTC (rev 481737)
+++ PKGBUILD2019-06-15 18:58:25 UTC (rev 481738)
@@ -1,77 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.8.1
-pkgrel=7
-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=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'lm_sensors5to6.patch'
-'service')
-sha256sums=('e796fda27ce06377f491ad91aa286962a68c2b54076aa77a29673d53204453da'
-'9946e796bcbc857160a540ccf38979a4dd722ec13e0761451523206b202591eb'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/ -Werror//g' -i configure
-   patch -p1 -i ../lm_sensors5to6.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export MAKEFLAGS='-j1'
-   ./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}-${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-staging-x86_64/PKGBUILD (from rev 481737, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 18:58:25 UTC (rev 481738)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.0
+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'
+ 

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

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 18:53:16
  Author: bisson
Revision: 356155

archrelease: copy trunk to extra-x86_64

Added:
  mutt/repos/extra-x86_64/PKGBUILD
(from rev 356154, mutt/trunk/PKGBUILD)
Deleted:
  mutt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 18:53:08 UTC (rev 356154)
+++ PKGBUILD2019-06-15 18:53:16 UTC (rev 356155)
@@ -1,45 +0,0 @@
-# Contributor: tobias [tobias [at] archlinux.org]
-# Maintainer: Gaetan Bisson 
-
-pkgname=mutt
-pkgver=1.12.0
-pkgrel=1
-pkgdesc='Small but very powerful text-based mail client'
-url='http://www.mutt.org/'
-license=('GPL')
-backup=('etc/Muttrc')
-arch=('x86_64')
-optdepends=('smtp-forwarder: to send mail')
-depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
-validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
-source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('ca12448784ed7b6c86d498921e18bc7b152d45494a452df56a7a0c8aaf13f98f'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-gpgme \
-   --enable-pop \
-   --enable-imap \
-   --enable-smtp \
-   --enable-hcache \
-   --enable-sidebar \
-   --with-curses=/usr \
-   --with-gss=/usr \
-   --with-ssl=/usr \
-   --with-sasl \
-   --with-idn2 \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   rm "${pkgdir}"/etc/mime.types{,.dist}
-   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
-}

Copied: mutt/repos/extra-x86_64/PKGBUILD (from rev 356154, mutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 18:53:16 UTC (rev 356155)
@@ -0,0 +1,45 @@
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.12.1
+pkgrel=1
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('01c565406ec4ffa85db90b45ece2260b25fac3646cc063bbc20a242c6ed4210c'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --with-curses=/usr \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sasl \
+   --with-idn2 \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}


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

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 18:53:08
  Author: bisson
Revision: 356154

upstream update

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:26:21 UTC (rev 356153)
+++ PKGBUILD2019-06-15 18:53:08 UTC (rev 356154)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=mutt
-pkgver=1.12.0
+pkgver=1.12.1
 pkgrel=1
 pkgdesc='Small but very powerful text-based mail client'
 url='http://www.mutt.org/'
@@ -13,7 +13,7 @@
 depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
 validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
 source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('ca12448784ed7b6c86d498921e18bc7b152d45494a452df56a7a0c8aaf13f98f'
+sha256sums=('01c565406ec4ffa85db90b45ece2260b25fac3646cc063bbc20a242c6ed4210c'
 'SKIP')
 
 build() {


[arch-commits] Commit in collectd/repos/community-x86_64 (5 files)

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 18:50:45
  Author: bisson
Revision: 481737

archrelease: copy trunk to community-x86_64

Added:
  collectd/repos/community-x86_64/PKGBUILD
(from rev 481736, collectd/trunk/PKGBUILD)
  collectd/repos/community-x86_64/service
(from rev 481736, collectd/trunk/service)
Deleted:
  collectd/repos/community-x86_64/PKGBUILD
  collectd/repos/community-x86_64/lm_sensors5to6.patch
  collectd/repos/community-x86_64/service

--+
 PKGBUILD |  151 -
 lm_sensors5to6.patch |   69 --
 service  |   26 
 3 files changed, 87 insertions(+), 159 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 18:50:37 UTC (rev 481736)
+++ PKGBUILD2019-06-15 18:50:45 UTC (rev 481737)
@@ -1,77 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.8.1
-pkgrel=6
-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=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'lm_sensors5to6.patch'
-'service')
-sha256sums=('e796fda27ce06377f491ad91aa286962a68c2b54076aa77a29673d53204453da'
-'9946e796bcbc857160a540ccf38979a4dd722ec13e0761451523206b202591eb'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/ -Werror//g' -i configure
-   patch -p1 -i ../lm_sensors5to6.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export MAKEFLAGS='-j1'
-   ./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}-${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 481736, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 18:50:45 UTC (rev 481737)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.0
+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'
+   

[arch-commits] Commit in collectd/trunk (PKGBUILD lm_sensors5to6.patch)

2019-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 15, 2019 @ 18:50:37
  Author: bisson
Revision: 481736

upstream update

Modified:
  collectd/trunk/PKGBUILD
Deleted:
  collectd/trunk/lm_sensors5to6.patch

--+
 PKGBUILD |9 ++
 lm_sensors5to6.patch |   69 -
 2 files changed, 3 insertions(+), 75 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 17:06:22 UTC (rev 481735)
+++ PKGBUILD2019-06-15 18:50:37 UTC (rev 481736)
@@ -2,8 +2,8 @@
 # Contributor: Gerhard Brauer 
 
 pkgname=collectd
-pkgver=5.8.1
-pkgrel=7
+pkgver=5.9.0
+pkgrel=1
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('x86_64')
@@ -41,10 +41,8 @@
 depends=('libltdl' 'iptables' 'libnsl')
 
 source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'lm_sensors5to6.patch'
 'service')
-sha256sums=('e796fda27ce06377f491ad91aa286962a68c2b54076aa77a29673d53204453da'
-'9946e796bcbc857160a540ccf38979a4dd722ec13e0761451523206b202591eb'
+sha256sums=('7b220f8898a061f6e7f29a8c16697d1a198277f813da69474a67911097c0626b'
 'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
 
 backup=('etc/collectd.conf')
@@ -52,7 +50,6 @@
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed 's/ -Werror//g' -i configure
-   patch -p1 -i ../lm_sensors5to6.patch
 }
 
 build() {

Deleted: lm_sensors5to6.patch
===
--- lm_sensors5to6.patch2019-06-15 17:06:22 UTC (rev 481735)
+++ lm_sensors5to6.patch2019-06-15 18:50:37 UTC (rev 481736)
@@ -1,69 +0,0 @@
-diff -Naur old/src/sensors.c new/src/sensors.c
 old/src/sensors.c  2018-10-22 20:57:09.027242628 -1000
-+++ new/src/sensors.c  2018-11-29 09:51:36.950814002 -1000
-@@ -149,7 +149,7 @@
- static char *conffile = SENSORS_CONF_PATH;
- /* #endif SENSORS_API_VERSION < 0x400 */
- 
--#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
-+#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600)
- typedef struct featurelist {
-   const sensors_chip_name *chip;
-   const sensors_feature *feature;
-@@ -159,9 +159,9 @@
- 
- static char *conffile = NULL;
- static _Bool use_labels = 0;
--/* #endif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
-+/* #endif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600) */
- 
--#else /* if SENSORS_API_VERSION >= 0x500 */
-+#else /* if SENSORS_API_VERSION >= 0x600 */
- #error "This version of libsensors is not supported yet. Please report this " 
\
-   "as bug."
- #endif
-@@ -223,7 +223,7 @@
- if (IS_TRUE(value))
-   ignorelist_set_invert(sensor_list, 0);
-   }
--#if (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
-+#if (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600)
-   else if (strcasecmp(key, "UseLabels") == 0) {
- use_labels = IS_TRUE(value) ? 1 : 0;
-   }
-@@ -353,7 +353,7 @@
-   }   /* while sensors_get_detected_chips */
- /* #endif SENSORS_API_VERSION < 0x400 */
- 
--#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
-+#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600)
-   chip_num = 0;
-   while ((chip = sensors_get_detected_chips(NULL, _num)) != NULL) {
- const sensors_feature *feature;
-@@ -410,7 +410,7 @@
-   } /* while (subfeature) */
- }   /* while (feature) */
-   } /* while (chip) */
--#endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
-+#endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600) */
- 
-   if (first_feature == NULL) {
- sensors_cleanup();
-@@ -485,7 +485,7 @@
-   } /* for fl = first_feature .. NULL */
- /* #endif SENSORS_API_VERSION < 0x400 */
- 
--#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
-+#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600)
-   for (featurelist_t *fl = first_feature; fl != NULL; fl = fl->next) {
- double value;
- int status;
-@@ -528,7 +528,7 @@
- 
- sensors_submit(plugin_instance, type, type_instance, value);
-   } /* for fl = first_feature .. NULL */
--#endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
-+#endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600) */
- 
-   return 0;
- } /* int sensors_read */


[arch-commits] Commit in papirus-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 17:04:25
  Author: felixonmars
Revision: 481703

archrelease: copy trunk to community-any

Added:
  papirus-icon-theme/repos/community-any/PKGBUILD
(from rev 481702, papirus-icon-theme/trunk/PKGBUILD)
Deleted:
  papirus-icon-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 17:04:12 UTC (rev 481702)
+++ PKGBUILD2019-06-15 17:04:25 UTC (rev 481703)
@@ -1,19 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: kitsunyan 
-# Contributor: Grigorii Horos 
-
-pkgname=papirus-icon-theme
-pkgver=20190521
-pkgrel=1
-pkgdesc="Papirus icon theme"
-arch=('any')
-url="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
-license=("LGPL3")
-depends=('gtk-update-icon-cache')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/PapirusDevelopmentTeam/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('d5c33ce976d426f8ebe250714a4a0fabe6c0202579b62d0444c3881dab80d468bd3f92632dd05b0aea570646fc330f5f3a67650482e2044c490622294e5c2adb')
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: papirus-icon-theme/repos/community-any/PKGBUILD (from rev 481702, 
papirus-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 17:04:25 UTC (rev 481703)
@@ -0,0 +1,19 @@
+# Maintainer: Felix Yan 
+# Contributor: kitsunyan 
+# Contributor: Grigorii Horos 
+
+pkgname=papirus-icon-theme
+pkgver=20190615
+pkgrel=1
+pkgdesc="Papirus icon theme"
+arch=('any')
+url="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
+license=("LGPL3")
+depends=('gtk-update-icon-cache')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PapirusDevelopmentTeam/$pkgname/archive/$pkgver.tar.gz;)
+sha512sums=('083f1afcc7e46a9688f96f584193cf07bcbe45f445feaee976b208a90e7758138fa0d77d355da73b241698ac2e0d1594613b57092d53294bd7e9cfa7b5ee1145')
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in papirus-icon-theme/trunk (PKGBUILD)

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 17:04:12
  Author: felixonmars
Revision: 481702

upgpkg: papirus-icon-theme 20190615-1

Modified:
  papirus-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 17:03:11 UTC (rev 481701)
+++ PKGBUILD2019-06-15 17:04:12 UTC (rev 481702)
@@ -3,7 +3,7 @@
 # Contributor: Grigorii Horos 
 
 pkgname=papirus-icon-theme
-pkgver=20190521
+pkgver=20190615
 pkgrel=1
 pkgdesc="Papirus icon theme"
 arch=('any')
@@ -11,7 +11,7 @@
 license=("LGPL3")
 depends=('gtk-update-icon-cache')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/PapirusDevelopmentTeam/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('d5c33ce976d426f8ebe250714a4a0fabe6c0202579b62d0444c3881dab80d468bd3f92632dd05b0aea570646fc330f5f3a67650482e2044c490622294e5c2adb')
+sha512sums=('083f1afcc7e46a9688f96f584193cf07bcbe45f445feaee976b208a90e7758138fa0d77d355da73b241698ac2e0d1594613b57092d53294bd7e9cfa7b5ee1145')
 
 package() {
   cd $pkgname-$pkgver


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 17:03:11
  Author: felixonmars
Revision: 481701

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 17:02:57 UTC (rev 481700)
+++ PKGBUILD2019-06-15 17:03:11 UTC (rev 481701)
@@ -1,58 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-xdist
-pkgname=('python-pytest-xdist' 'python2-pytest-xdist')
-pkgver=1.28.0
-pkgrel=1
-pkgdesc='py.test xdist plugin for distributed testing and loop-on-failing 
modes'
-arch=('any')
-license=('MIT')
-url='https://bitbucket.org/pytest-dev/pytest-xdist'
-makedepends=('python-pytest' 'python2-pytest' 'python-setuptools_scm' 
'python2-setuptools_scm'
- 'python-execnet' 'python2-execnet' 'python-pytest-forked' 
'python2-pytest-forked'
- 'python-filelock' 'python2-filelock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-xdist/archive/v$pkgver.tar.gz;)
-sha512sums=('8125686ee5464af8262d57a24b0bac9e5661eebed2162bd1edd46bb1c98a47616cda5fab4752c89540bf9babdb5eaab40f9dd723023da50493cdaf10e0af5fc9')
-
-prepare() {
-  cp -a pytest-xdist-$pkgver{,-py2}
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/pytest-xdist-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-xdist-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-xdist-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-xdist-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-xdist() {
-  depends=('python-pytest-forked' 'python-execnet')
-
-  cd pytest-xdist-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-xdist() {
-  depends=('python2-pytest-forked' 'python2-execnet')
-
-  cd pytest-xdist-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-xdist/repos/community-any/PKGBUILD (from rev 481700, 
python-pytest-xdist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 17:03:11 UTC (rev 481701)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-xdist
+pkgname=('python-pytest-xdist' 'python2-pytest-xdist')
+pkgver=1.29.0
+pkgrel=1
+pkgdesc='py.test xdist plugin for distributed testing and loop-on-failing 
modes'
+arch=('any')
+license=('MIT')
+url='https://bitbucket.org/pytest-dev/pytest-xdist'
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools_scm' 
'python2-setuptools_scm'
+ 'python-execnet' 'python2-execnet' 'python-pytest-forked' 
'python2-pytest-forked'
+ 'python-filelock' 'python2-filelock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-xdist/archive/v$pkgver.tar.gz;)
+sha512sums=('50e2bcf9e97e6cfaddc931220f74346ebced77cd56135a57d2be1c29ad462f49dadba18efaf0615d4d7ce10c291da1418b7b1d3caa24e21d90c2af773e1372f0')
+
+prepare() {
+  cp -a pytest-xdist-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pytest-xdist-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-xdist-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-xdist-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-xdist-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-xdist() {
+  depends=('python-pytest-forked' 'python-execnet')
+
+  cd pytest-xdist-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-xdist() {
+  depends=('python2-pytest-forked' 'python2-execnet')
+
+  cd pytest-xdist-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+# 

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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 17:02:57
  Author: felixonmars
Revision: 481700

upgpkg: python-pytest-xdist 1.29.0-1

Modified:
  python-pytest-xdist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:53:46 UTC (rev 481699)
+++ PKGBUILD2019-06-15 17:02:57 UTC (rev 481700)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pytest-xdist
 pkgname=('python-pytest-xdist' 'python2-pytest-xdist')
-pkgver=1.28.0
+pkgver=1.29.0
 pkgrel=1
 pkgdesc='py.test xdist plugin for distributed testing and loop-on-failing 
modes'
 arch=('any')
@@ -12,7 +12,7 @@
  'python-execnet' 'python2-execnet' 'python-pytest-forked' 
'python2-pytest-forked'
  'python-filelock' 'python2-filelock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-xdist/archive/v$pkgver.tar.gz;)
-sha512sums=('8125686ee5464af8262d57a24b0bac9e5661eebed2162bd1edd46bb1c98a47616cda5fab4752c89540bf9babdb5eaab40f9dd723023da50493cdaf10e0af5fc9')
+sha512sums=('50e2bcf9e97e6cfaddc931220f74346ebced77cd56135a57d2be1c29ad462f49dadba18efaf0615d4d7ce10c291da1418b7b1d3caa24e21d90c2af773e1372f0')
 
 prepare() {
   cp -a pytest-xdist-$pkgver{,-py2}


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:53:46
  Author: felixonmars
Revision: 481699

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-06-15 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, June 15, 2019 @ 16:53:45
  Author: sangy
Revision: 481698

archrelease: copy trunk to community-x86_64

Added:
  dep/repos/community-x86_64/PKGBUILD
(from rev 481697, dep/trunk/PKGBUILD)
Deleted:
  dep/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-15 16:53:34 UTC (rev 481697)
+++ PKGBUILD2019-06-15 16:53:45 UTC (rev 481698)
@@ -1,42 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=dep
-pkgver=0.5.3
-pkgrel=1
-pkgdesc="Go dependency management tool"
-arch=('x86_64')
-url='https://golang.github.io/dep/'
-license=('BSD')
-makedepends=('go-pie' 'git')
-optdepends=('git: fetch git sources')
-checkdepends=('mercurial' 'bzr' 'subversion')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/dep/archive/v${pkgver}.tar.gz;)
-sha256sums=('7522588ce2d988039b15c6a7584f854223606e6ffb37c180c11b5000906a846e')
-
-prepare(){
-  mkdir -p src/github.com/golang
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/golang/dep
-}
-
-build(){
-  export GOPATH="${srcdir}"
-  cd src/github.com/golang/dep
-  go install \
-   -gcflags "all=-trimpath=${GOPATH}/src" \
-   -asmflags "all=-trimpath=${GOPATH}/src" \
-   -ldflags "-extldflags ${LDFLAGS}" \
-   ./cmd/...
-}
-
-# check(){
-#   cd src/github.com/golang/dep
-#   mkdir -p "${srcdir}/build-cache"
-#   DEPCACHEDIR="${srcdir}/build-cache" go test ./...
-# }
-
-package(){
-  install -Dm755 bin/dep "${pkgdir}/usr/bin/dep"
-
-  cd "${pkgname}-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: dep/repos/community-x86_64/PKGBUILD (from rev 481697, 
dep/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-15 16:53:45 UTC (rev 481698)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+
+pkgname=dep
+pkgver=0.5.4
+pkgrel=1
+pkgdesc="Go dependency management tool"
+arch=('x86_64')
+url='https://golang.github.io/dep/'
+license=('BSD')
+makedepends=('go-pie' 'git')
+optdepends=('git: fetch git sources')
+checkdepends=('mercurial' 'bzr' 'subversion')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/dep/archive/v${pkgver}.tar.gz;)
+sha256sums=('929c8f759838f98323211ba408a831ea80d93b75beda8584b6d950f393a3298a')
+
+prepare(){
+  mkdir -p src/github.com/golang
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/golang/dep
+}
+
+build(){
+  export GOPATH="${srcdir}"
+  cd src/github.com/golang/dep
+  go install \
+   -gcflags "all=-trimpath=${GOPATH}/src" \
+   -asmflags "all=-trimpath=${GOPATH}/src" \
+   -ldflags "-extldflags ${LDFLAGS}" \
+   ./cmd/...
+}
+
+# check(){
+#   cd src/github.com/golang/dep
+#   mkdir -p "${srcdir}/build-cache"
+#   DEPCACHEDIR="${srcdir}/build-cache" go test ./...
+# }
+
+package(){
+  install -Dm755 bin/dep "${pkgdir}/usr/bin/dep"
+
+  cd "${pkgname}-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:53:34
  Author: felixonmars
Revision: 481697

upgpkg: tamarin-prover 1.4.1-92

rebuild with fast-logger 2.4.16

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:53:31 UTC (rev 481696)
+++ PKGBUILD2019-06-15 16:53:34 UTC (rev 481697)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=91
+pkgrel=92
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2019-06-15 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, June 15, 2019 @ 16:53:31
  Author: sangy
Revision: 481696

upgpkg: dep 0.5.4-1

Modified:
  dep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:51:56 UTC (rev 481695)
+++ PKGBUILD2019-06-15 16:53:31 UTC (rev 481696)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=dep
-pkgver=0.5.3
+pkgver=0.5.4
 pkgrel=1
 pkgdesc="Go dependency management tool"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 optdepends=('git: fetch git sources')
 checkdepends=('mercurial' 'bzr' 'subversion')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/dep/archive/v${pkgver}.tar.gz;)
-sha256sums=('7522588ce2d988039b15c6a7584f854223606e6ffb37c180c11b5000906a846e')
+sha256sums=('929c8f759838f98323211ba408a831ea80d93b75beda8584b6d950f393a3298a')
 
 prepare(){
   mkdir -p src/github.com/golang


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:51:40
  Author: felixonmars
Revision: 481694

upgpkg: stack 1.9.3.1-60

rebuild with fast-logger 2.4.16

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:47:15 UTC (rev 481693)
+++ PKGBUILD2019-06-15 16:51:40 UTC (rev 481694)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3.1
-pkgrel=59
+pkgrel=60
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:51:56
  Author: felixonmars
Revision: 481695

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 481694, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-15 16:51:56 UTC (rev 481695)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3.1
+pkgrel=60
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 481694, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-06-15 16:51:56 UTC (rev 
481695)
@@ -0,0 +1,4 @@

[arch-commits] Commit in android-file-transfer/repos (2 files)

2019-06-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 15, 2019 @ 16:47:15
  Author: anatolik
Revision: 481693

archrelease: copy trunk to community-testing-x86_64

Added:
  android-file-transfer/repos/community-testing-x86_64/
  android-file-transfer/repos/community-testing-x86_64/PKGBUILD
(from rev 481692, android-file-transfer/trunk/PKGBUILD)

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

Copied: android-file-transfer/repos/community-testing-x86_64/PKGBUILD (from rev 
481692, android-file-transfer/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-06-15 16:47:15 UTC (rev 481693)
@@ -0,0 +1,25 @@
+# Contributor: yaroslav 
+# Contributor: Askhat Bakarov 
+
+pkgname=android-file-transfer
+pkgver=3.9
+pkgrel=1
+pkgdesc='Android MTP client with minimalistic UI'
+arch=(x86_64)
+url='https://github.com/whoozle/android-file-transfer-linux'
+license=(GPL3)
+depends=(qt5-base fuse2 libxkbcommon-x11 hicolor-icon-theme file)
+makedepends=(cmake)
+source=(android-file-transfer-$pkgver.tar.gz::https://github.com/whoozle/android-file-transfer-linux/archive/v$pkgver.tar.gz)
+sha256sums=('26aa21683ae34aceaf83747fec693a15b996017a857014931ef3c5b50115971a')
+
+build() {
+  cd android-file-transfer-linux-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd android-file-transfer-linux-$pkgver
+  make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in android-file-transfer/trunk (PKGBUILD)

2019-06-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 15, 2019 @ 16:46:50
  Author: anatolik
Revision: 481692

upgpkg: android-file-transfer 3.9-1

Modified:
  android-file-transfer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:45:18 UTC (rev 481691)
+++ PKGBUILD2019-06-15 16:46:50 UTC (rev 481692)
@@ -2,7 +2,7 @@
 # Contributor: Askhat Bakarov 
 
 pkgname=android-file-transfer
-pkgver=3.8
+pkgver=3.9
 pkgrel=1
 pkgdesc='Android MTP client with minimalistic UI'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(qt5-base fuse2 libxkbcommon-x11 hicolor-icon-theme file)
 makedepends=(cmake)
 
source=(android-file-transfer-$pkgver.tar.gz::https://github.com/whoozle/android-file-transfer-linux/archive/v$pkgver.tar.gz)
-sha256sums=('deafa957b8e98d175d07eaa9024ef5523fe98a6ad9478671326e367f89dd97d2')
+sha256sums=('26aa21683ae34aceaf83747fec693a15b996017a857014931ef3c5b50115971a')
 
 build() {
   cd android-file-transfer-linux-$pkgver


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:45:18
  Author: felixonmars
Revision: 481691

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 481690, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 481690, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-15 16:45:18 UTC (rev 481691)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.2.0
+pkgrel=99
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('7c2bba89457dd8b3d681ccc032482055144b5ee17336b2e90dda6bbed6c229f36cf521cf66aafd7923ca6c147a1f2bb26567a3109079dae65d726e85f85b32ed')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' -e 's/== 0.3.0/>= 0.3.0/' 
$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:45:07
  Author: felixonmars
Revision: 481690

upgpkg: postgrest 5.2.0-99

rebuild with fast-logger 2.4.16

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:40:08 UTC (rev 481689)
+++ PKGBUILD2019-06-15 16:45:07 UTC (rev 481690)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=98
+pkgrel=99
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:40:08
  Author: felixonmars
Revision: 481689

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 481688, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 481688, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-15 16:40:08 UTC (rev 481689)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=87
+pkgdesc="Functional Programming Language with Dependent Types"
+url="https://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec6'
+ 'haskell-network' 'haskell-optparse-applicative' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-split' 'haskell-terminal-size' 'haskell-uniplate' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 
'haskell-vector-binary-instances'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('555c7fdfad7e4f69b1aa4f6237cf4432831cd74e33342bd802ff3bc763118178b742b386035f8c071820b5e2bc71c5372c4acb356835155677046d360b722746')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' -e 's/< *2.8/<4/' -e 's/< *0.9/<1/' idris.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:39:55
  Author: felixonmars
Revision: 481688

upgpkg: idris 1.3.1-87

rebuild with fast-logger 2.4.16

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 16:18:10 UTC (rev 481687)
+++ PKGBUILD2019-06-15 16:39:55 UTC (rev 481688)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=86
+pkgrel=87
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2019-06-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 15, 2019 @ 16:26:21
  Author: anatolik
Revision: 356153

archrelease: copy trunk to testing-x86_64

Added:
  fuse3/repos/testing-x86_64/
  fuse3/repos/testing-x86_64/PKGBUILD
(from rev 356152, fuse3/trunk/PKGBUILD)
  fuse3/repos/testing-x86_64/fuse.conf
(from rev 356152, fuse3/trunk/fuse.conf)

---+
 PKGBUILD  |   73 
 fuse.conf |9 +++
 2 files changed, 82 insertions(+)

Copied: fuse3/repos/testing-x86_64/PKGBUILD (from rev 356152, 
fuse3/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-15 16:26:21 UTC (rev 356153)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Gundersen 
+# Contributor: Mark Rosenstand 
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.6.1
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config' 'meson' 'udev')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
+   'fuse.conf')
+sha1sums=('ca1618e0312ab480a903654688516f4a3e5040a9'
+  'SKIP'
+  '3b42e37a741d4651099225987dc40e7f02a716ad')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

+
+build() {
+  cd fuse-$pkgver
+
+  rm -rf build
+  meson --prefix=/usr --sbindir=bin . build
+  cd build
+  ninja
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+  depends=(glibc)
+
+  cd fuse-$pkgver/build
+  DESTDIR=${pkgdir} ninja install
+
+  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  # part of fuse3 package
+  rm -r 
${pkgdir}/usr/{bin/fusermount3,include,lib/{pkgconfig,libfuse3.so*},share/man/man1/fusermount3.1}
+
+  mv ${pkgdir}/usr/bin/mount.fuse3 ${pkgdir}/usr/bin/mount.fuse
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
+  depends=('fuse-common')
+
+  cd fuse-$pkgver/build
+
+  DESTDIR=${pkgdir} ninja install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  rm ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm -r ${pkgdir}/usr/lib/udev/rules.d
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse3.8 ${pkgdir}/usr/bin/mount.fuse3
+}

Copied: fuse3/repos/testing-x86_64/fuse.conf (from rev 356152, 
fuse3/trunk/fuse.conf)
===
--- testing-x86_64/fuse.conf(rev 0)
+++ testing-x86_64/fuse.conf2019-06-15 16:26:21 UTC (rev 356153)
@@ -0,0 +1,9 @@
+# Set the maximum number of FUSE mounts allowed to non-root users.
+# The default is 1000.
+#
+#mount_max = 1000
+
+# Allow non-root users to specify the 'allow_other' or 'allow_root'
+# mount options.
+#
+#user_allow_other


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

2019-06-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 15, 2019 @ 16:25:44
  Author: anatolik
Revision: 356152

upgpkg: fuse3 3.6.1-1

Modified:
  fuse3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-15 13:12:39 UTC (rev 356151)
+++ PKGBUILD2019-06-15 16:25:44 UTC (rev 356152)
@@ -4,7 +4,7 @@
 
 pkgbase=fuse3
 pkgname=(fuse-common fuse3)
-pkgver=3.5.0
+pkgver=3.6.1
 pkgrel=1
 arch=('x86_64')
 url='https://github.com/libfuse/libfuse'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
'fuse.conf')
-sha1sums=('c3481fa5cc1560207abc75494bcfbe1611aa81f1'
+sha1sums=('ca1618e0312ab480a903654688516f4a3e5040a9'
   'SKIP'
   '3b42e37a741d4651099225987dc40e7f02a716ad')
 validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 



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

2019-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 15, 2019 @ 16:18:10
  Author: felixonmars
Revision: 481687

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 481686, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 481686, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-15 16:18:10 UTC (rev 481687)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.9
+pkgrel=14
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d9a7d2ec6fc8aed6cff986b87ef268a76ddfb15946ed406c99478a26c02389272e6a7561a5b3b1895e6122f8158071f845f78bfccf9c999a2991652158d29332')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


  1   2   >