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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 05:58:30
  Author: svenstaro
Revision: 663402

Require nvidia-utils in correct version (FS#67186)

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 05:52:23 UTC (rev 663401)
+++ PKGBUILD2020-07-13 05:58:30 UTC (rev 663402)
@@ -8,7 +8,7 @@
 arch=('x86_64')
 url="https://developer.nvidia.com/cuda-zone;
 license=('custom:NVIDIA')
-depends=('gcc9-libs'  'gcc9' 'opencl-nvidia' 'nvidia-utils')
+depends=('gcc9-libs'  'gcc9' 'opencl-nvidia' "nvidia-utils>=${_driverver}")
 replaces=('cuda-toolkit' 'cuda-sdk')
 provides=('cuda-toolkit' 'cuda-sdk')
 optdepends=('gdb: for cuda-gdb'


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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 05:52:23
  Author: svenstaro
Revision: 663401

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pytorch/repos/community-testing-x86_64/
  python-pytorch/repos/community-testing-x86_64/PKGBUILD
(from rev 663400, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-testing-x86_64/fix_include_system.patch
(from rev 663400, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-testing-x86_64/nccl_version.patch
(from rev 663400, python-pytorch/trunk/nccl_version.patch)
  python-pytorch/repos/community-testing-x86_64/use-system-libuv.patch
(from rev 663400, python-pytorch/trunk/use-system-libuv.patch)
  python-pytorch/repos/community-testing-x86_64/use-system-libuv2.patch
(from rev 663400, python-pytorch/trunk/use-system-libuv2.patch)

--+
 PKGBUILD |  182 +
 fix_include_system.patch |   11 ++
 nccl_version.patch   |   46 +++
 use-system-libuv.patch   |   13 +++
 use-system-libuv2.patch  |   13 +++
 5 files changed, 265 insertions(+)

Copied: python-pytorch/repos/community-testing-x86_64/PKGBUILD (from rev 
663400, python-pytorch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-13 05:52:23 UTC (rev 663401)
@@ -0,0 +1,182 @@
+# 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.6.0rc3
+_pkgver=1.6.0-rc3
+pkgrel=1
+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' 'ffmpeg' 'python-future' 'qt5-base' 
'onednn' 'intel-mkl')
+makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
+ 'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
+source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
+fix_include_system.patch
+use-system-libuv.patch
+use-system-libuv2.patch
+nccl_version.patch)
+sha256sums=('SKIP'
+'147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
+'6f3b7a87172011de810bf1ab581245b4463ef86e5cd09bec63aeffa372e26646'
+'7b65c3b209fc39f92ba58a58be6d3da40799f1922910b1171ccd9209eda1f9eb'
+'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b')
+
+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
+
+  # https://bugs.archlinux.org/task/64981
+  patch -N torch/utils/cpp_extension.py "${srcdir}"/fix_include_system.patch
+
+  # Use system libuv
+  patch -Np1 -i "${srcdir}"/use-system-libuv.patch
+  patch -Np1 -i "${srcdir}"/use-system-libuv2.patch -d third_party/tensorpipe
+
+  # FindNCCL patch to export correct nccl version
+  patch -Np1 -i "${srcdir}"/nccl_version.patch
+
+  # remove local nccl
+  rm -rf third_party/nccl/nccl
+
+  cd ..
+
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
+
+  export VERBOSE=1
+  export PYTORCH_BUILD_VERSION="${pkgver}"
+  export PYTORCH_BUILD_NUMBER=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=ON
+  # 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 NCCL_VERSION=$(pkg-config nccl --modversion)
+  export NCCL_VER_CODE=$(sed -n 's/^#define NCCL_VERSION_CODE\s*\(.*\).*/\1/p' 
/usr/include/nccl.h)
+  export CUDAHOSTCXX=g++-9
+  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="5.2;5.3;6.0;6.0+PTX;6.1;6.1+PTX;6.2;6.2+PTX;7.0;7.0+PTX;7.2;7.2+PTX;7.5;7.5+PTX;8.0;8.0+PTX;"
+}
+
+build() {
+  echo "Building without cuda and 

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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 05:52:10
  Author: svenstaro
Revision: 663400

upgpkg: python-pytorch 1.6.0rc3-1

Added:
  python-pytorch/trunk/use-system-libuv.patch
  python-pytorch/trunk/use-system-libuv2.patch
Modified:
  python-pytorch/trunk/PKGBUILD

-+
 PKGBUILD|   24 ++--
 use-system-libuv.patch  |   13 +
 use-system-libuv2.patch |   13 +
 3 files changed, 40 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 03:18:27 UTC (rev 663399)
+++ PKGBUILD2020-07-13 05:52:10 UTC (rev 663400)
@@ -4,8 +4,9 @@
 pkgbase=python-pytorch
 pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
 _pkgname="pytorch"
-pkgver=1.5.0
-pkgrel=2
+pkgver=1.6.0rc3
+_pkgver=1.6.0-rc3
+pkgrel=1
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;
@@ -14,13 +15,15 @@
  'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base' 
'onednn' 'intel-mkl')
 makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
  'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;
-
https://patch-diff.githubusercontent.com/raw/pytorch/pytorch/pull/35359.patch
+source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
 fix_include_system.patch
+use-system-libuv.patch
+use-system-libuv2.patch
 nccl_version.patch)
 sha256sums=('SKIP'
-'1a67a90174276e9462e632df1bbb2e9fd7890f08da45d831edf1610c0e3e3c72'
 '147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
+'6f3b7a87172011de810bf1ab581245b4463ef86e5cd09bec63aeffa372e26646'
+'7b65c3b209fc39f92ba58a58be6d3da40799f1922910b1171ccd9209eda1f9eb'
 '1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b')
 
 get_pyver () {
@@ -37,12 +40,13 @@
   # It will result in the same package, don't worry.
   git submodule update --init --recursive
 
-  # https://github.com/pytorch/pytorch/pull/35359
-  patch -Np1 -i "${srcdir}/35359.patch"
-
   # https://bugs.archlinux.org/task/64981
   patch -N torch/utils/cpp_extension.py "${srcdir}"/fix_include_system.patch
 
+  # Use system libuv
+  patch -Np1 -i "${srcdir}"/use-system-libuv.patch
+  patch -Np1 -i "${srcdir}"/use-system-libuv2.patch -d third_party/tensorpipe
+
   # FindNCCL patch to export correct nccl version
   patch -Np1 -i "${srcdir}"/nccl_version.patch
 
@@ -71,12 +75,12 @@
   export USE_SYSTEM_NCCL=ON
   export NCCL_VERSION=$(pkg-config nccl --modversion)
   export NCCL_VER_CODE=$(sed -n 's/^#define NCCL_VERSION_CODE\s*\(.*\).*/\1/p' 
/usr/include/nccl.h)
-  export CUDAHOSTCXX=g++-8
+  export CUDAHOSTCXX=g++-9
   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.2;3.5;3.7;5.0;5.2;5.3;6.0;6.0+PTX;6.1;6.1+PTX;6.2;6.2+PTX;7.0;7.0+PTX;7.2;7.2+PTX;7.5;7.5+PTX"
+  export 
TORCH_CUDA_ARCH_LIST="5.2;5.3;6.0;6.0+PTX;6.1;6.1+PTX;6.2;6.2+PTX;7.0;7.0+PTX;7.2;7.2+PTX;7.5;7.5+PTX;8.0;8.0+PTX;"
 }
 
 build() {

Added: use-system-libuv.patch
===
--- use-system-libuv.patch  (rev 0)
+++ use-system-libuv.patch  2020-07-13 05:52:10 UTC (rev 663400)
@@ -0,0 +1,13 @@
+diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake
+index b498be17e1..69e5c9f187 100644
+--- a/cmake/Dependencies.cmake
 b/cmake/Dependencies.cmake
+@@ -1312,7 +1312,7 @@ if(USE_DISTRIBUTED AND USE_TENSORPIPE)
+ set(__BUILD_TESTING ${BUILD_TESTING})
+ set(BUILD_TESTING OFF)
+ set(TP_BUILD_PYTHON OFF)
+-set(TP_BUILD_LIBUV ON)
++set(TP_BUILD_LIBUV OFF)
+ 
+ add_subdirectory(${PROJECT_SOURCE_DIR}/third_party/tensorpipe)
+ 

Added: use-system-libuv2.patch
===
--- use-system-libuv2.patch (rev 0)
+++ use-system-libuv2.patch 2020-07-13 05:52:10 UTC (rev 663400)
@@ -0,0 +1,13 @@
+diff --git a/cmake/pytorch.cmake b/cmake/pytorch.cmake
+index e4d6b9c..48e0669 100644
+--- a/cmake/pytorch.cmake
 b/cmake/pytorch.cmake
+@@ -138,7 +138,7 @@ endif()
+ 
+ add_library(tensorpipe ${TENSORPIPE_SRC})
+ 
+-set(TP_BUILD_LIBUV ON)
++set(TP_BUILD_LIBUV OFF)
+ find_package(uv REQUIRED)
+ target_link_libraries(tensorpipe PRIVATE uv::uv)
+ 


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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 03:18:23
  Author: svenstaro
Revision: 663398

upgpkg: broot 0.18.6-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 02:27:35 UTC (rev 663397)
+++ PKGBUILD2020-07-13 03:18:23 UTC (rev 663398)
@@ -3,7 +3,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=0.18.3
+pkgver=0.18.6
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'zlib')
 makedepends=('rust')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('e6f0c452d06f8e3e3c6350dca16028af24272c00a14d506b47cd5e65402fea49')
+sha256sums=('b0ad7f172885639dc55cd1c94c606b1ac7439e3ccb5233cfa9e2ed04f3a3bbf1')
 
 build() {
   cd $pkgname-$pkgver


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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 03:18:27
  Author: svenstaro
Revision: 663399

archrelease: copy trunk to community-x86_64

Added:
  broot/repos/community-x86_64/PKGBUILD
(from rev 663398, broot/trunk/PKGBUILD)
Deleted:
  broot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 03:18:23 UTC (rev 663398)
+++ PKGBUILD2020-07-13 03:18:27 UTC (rev 663399)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=0.18.3
-pkgrel=1
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs' 'zlib')
-makedepends=('rust')
-source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('e6f0c452d06f8e3e3c6350dca16028af24272c00a14d506b47cd5e65402fea49')
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd $pkgname-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 663398, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 03:18:27 UTC (rev 663399)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=0.18.6
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib')
+makedepends=('rust')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('b0ad7f172885639dc55cd1c94c606b1ac7439e3ccb5233cfa9e2ed04f3a3bbf1')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-pg8000/repos/community-any (3 files)

2020-07-12 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, July 13, 2020 @ 02:27:35
  Author: yan12125
Revision: 663397

archrelease: copy trunk to community-any

Added:
  python-pg8000/repos/community-any/PKGBUILD
(from rev 663396, python-pg8000/trunk/PKGBUILD)
  python-pg8000/repos/community-any/postgresql-12.diff
(from rev 663396, python-pg8000/trunk/postgresql-12.diff)
Deleted:
  python-pg8000/repos/community-any/PKGBUILD

+
 PKGBUILD   |   93 +--
 postgresql-12.diff |   17 +
 2 files changed, 70 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 02:27:15 UTC (rev 663396)
+++ PKGBUILD2020-07-13 02:27:35 UTC (rev 663397)
@@ -1,40 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: quomoow 
-
-pkgname=python-pg8000
-pkgver=1.15.3
-pkgrel=1
-pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
-arch=(any)
-url='https://github.com/tlocke/pg8000'
-license=(BSD)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytz pifpaf postgresql)
-depends=(python python-scramp)
-source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;)
-sha256sums=('919793109ac0c02e073eae7a845647658b4eb8967f860a878295150cb0999e5e')
-
-prepare() {
-  cd pg8000-$pkgver
-
-  # Remove upper bounds of dependencies
-  sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd pg8000-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pg8000-$pkgver
-  # TODO
-  PYTHONPATH="$PWD" pifpaf run postgresql -- pytest -v test || echo Tests fail!
-}
-
-package() {
-  cd pg8000-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pg8000/repos/community-any/PKGBUILD (from rev 663396, 
python-pg8000/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 02:27:35 UTC (rev 663397)
@@ -0,0 +1,53 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: quomoow 
+
+pkgname=python-pg8000
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
+arch=(any)
+url='https://github.com/tlocke/pg8000'
+license=(BSD)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pytest-mock python-pytz pifpaf postgresql)
+depends=(python python-scramp)
+source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;
+postgresql-12.diff)
+sha256sums=('dbba2061f4e5f7a405bdd7839ddfd1e180b1a4844279f21eb77bed3808bee4af'
+'31693ddabeb8d772949ecbfd0f917223802be85039a613e083ecdeee417576db')
+
+prepare() {
+  cd pg8000-$pkgver
+
+  # https://github.com/tlocke/pg8000/issues/46
+  patch -Np1 -i ../postgresql-12.diff
+
+  # Remove upper bounds of dependencies
+  sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd pg8000-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pg8000-$pkgver
+  # See upstream .travis.yml for initialization SQL commands
+  # XXX: The postgres plugin in pifpaf does not listen on a TCP port
+  #  without --host
+  # XXX: testGss and testSsl needs custom pg_hba.conf and postgresql.conf,
+  #  and pifpaf does not support that yet
+  PYTHONPATH="$PWD" pifpaf run postgresql --host localhost -- bash -c "
+psql -c \"CREATE ROLE postgres WITH LOGIN SUPERUSER PASSWORD 'pw';\"
+psql -c \"create extension hstore;\"
+pytest -v test -k 'not testGss and not testSsl'
+  "
+}
+
+package() {
+  cd pg8000-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}

Copied: python-pg8000/repos/community-any/postgresql-12.diff (from rev 663396, 
python-pg8000/trunk/postgresql-12.diff)
===
--- postgresql-12.diff  (rev 0)
+++ postgresql-12.diff  2020-07-13 02:27:35 UTC (rev 663397)
@@ -0,0 +1,17 @@
+diff --git a/test/test_copy.py b/test/test_copy.py
+index e46b8d2..847fef3 100644
+--- a/test/test_copy.py
 b/test/test_copy.py
+@@ -71,10 +71,10 @@ def test_copy_from_with_error(db_table):
+ arg = {
+ 'S': 'ERROR',
+ 'C': '22P02',
+-'M': 'invalid input syntax for integer: ""',
++'M': 'invalid input syntax for type integer: ""',
+ 'W': 'COPY t1, line 2, column f1: ""',
+ 'F': 'numutils.c',
+-'R': 'pg_atoi'
++'R': 'pg_strtoint32'
+ }
+ earg = e.value.args[0]
+ for k, v in arg.items():


[arch-commits] Commit in python-pg8000/trunk (PKGBUILD postgresql-12.diff)

2020-07-12 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, July 13, 2020 @ 02:27:15
  Author: yan12125
Revision: 663396

upgpkg: python-pg8000 1.16.0-1; also fixes check()

Added:
  python-pg8000/trunk/postgresql-12.diff
Modified:
  python-pg8000/trunk/PKGBUILD

+
 PKGBUILD   |   25 +++--
 postgresql-12.diff |   17 +
 2 files changed, 36 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 02:10:17 UTC (rev 663395)
+++ PKGBUILD2020-07-13 02:27:15 UTC (rev 663396)
@@ -2,7 +2,7 @@
 # Contributor: quomoow 
 
 pkgname=python-pg8000
-pkgver=1.15.3
+pkgver=1.16.0
 pkgrel=1
 pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
 arch=(any)
@@ -9,14 +9,19 @@
 url='https://github.com/tlocke/pg8000'
 license=(BSD)
 makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytz pifpaf postgresql)
+checkdepends=(python-pytest python-pytest-mock python-pytz pifpaf postgresql)
 depends=(python python-scramp)
-source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;)
-sha256sums=('919793109ac0c02e073eae7a845647658b4eb8967f860a878295150cb0999e5e')
+source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;
+postgresql-12.diff)
+sha256sums=('dbba2061f4e5f7a405bdd7839ddfd1e180b1a4844279f21eb77bed3808bee4af'
+'31693ddabeb8d772949ecbfd0f917223802be85039a613e083ecdeee417576db')
 
 prepare() {
   cd pg8000-$pkgver
 
+  # https://github.com/tlocke/pg8000/issues/46
+  patch -Np1 -i ../postgresql-12.diff
+
   # Remove upper bounds of dependencies
   sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
   diff -u setup.py{.orig,} || true
@@ -29,8 +34,16 @@
 
 check() {
   cd pg8000-$pkgver
-  # TODO
-  PYTHONPATH="$PWD" pifpaf run postgresql -- pytest -v test || echo Tests fail!
+  # See upstream .travis.yml for initialization SQL commands
+  # XXX: The postgres plugin in pifpaf does not listen on a TCP port
+  #  without --host
+  # XXX: testGss and testSsl needs custom pg_hba.conf and postgresql.conf,
+  #  and pifpaf does not support that yet
+  PYTHONPATH="$PWD" pifpaf run postgresql --host localhost -- bash -c "
+psql -c \"CREATE ROLE postgres WITH LOGIN SUPERUSER PASSWORD 'pw';\"
+psql -c \"create extension hstore;\"
+pytest -v test -k 'not testGss and not testSsl'
+  "
 }
 
 package() {

Added: postgresql-12.diff
===
--- postgresql-12.diff  (rev 0)
+++ postgresql-12.diff  2020-07-13 02:27:15 UTC (rev 663396)
@@ -0,0 +1,17 @@
+diff --git a/test/test_copy.py b/test/test_copy.py
+index e46b8d2..847fef3 100644
+--- a/test/test_copy.py
 b/test/test_copy.py
+@@ -71,10 +71,10 @@ def test_copy_from_with_error(db_table):
+ arg = {
+ 'S': 'ERROR',
+ 'C': '22P02',
+-'M': 'invalid input syntax for integer: ""',
++'M': 'invalid input syntax for type integer: ""',
+ 'W': 'COPY t1, line 2, column f1: ""',
+ 'F': 'numutils.c',
+-'R': 'pg_atoi'
++'R': 'pg_strtoint32'
+ }
+ earg = e.value.args[0]
+ for k, v in arg.items():


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

2020-07-12 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, July 13, 2020 @ 02:10:17
  Author: yan12125
Revision: 663395

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 02:09:51 UTC (rev 663394)
+++ PKGBUILD2020-07-13 02:10:17 UTC (rev 663395)
@@ -1,54 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Chih-Hsuan Yen 
-# Maintainer: Anatol Pomozov
-
-pkgname=python-autobahn
-pkgver=20.6.2
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(x86_64)
-url='https://crossbar.io/autobahn/'
-license=(MIT)
-depends=(python-cffi python-twisted python-txaio python-wsaccel
- python-setuptools python-cryptography)
-makedepends=(python-argon2_cffi python-cbor python-flatbuffers
- python-msgpack python-passlib python-pynacl python-pytrie
- python-ubjson)
-checkdepends=(python-pytest python-pytest-asyncio)
-optdepends=(
-  'python-cbor: CBOR serializer support'
-  'python-flatbuffers: FlatBuffers serializer support'
-  'python-msgpack: MsgPack serializer support'
-  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
-  'python-ubjson: UBJSON serializer support'
-  'python-ujson: accelerated JSON serializer support'
-  'python-argon2_cffi: WAMP-SCRAM authentication support'
-  'python-passlib: WAMP-SCRAM authentication support'
-  'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
-  'python-pytrie: WAMP-cryptobox support'
-  'python-pyopenssl: SSL/TLS support'
-  'python-snappy: snappy compression suppport for WebSocket messages'
-)
-
-source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('6ac6b6653b8d20d632b034adccf6a566154d4efbeaa23abf7c3995fd601e9a01')
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
-  # "autobahn on asyncio is tested using pytest, while for twisted we are 
using twisted trial"
-  # 
https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810
-  USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial3 autobahn
-  USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn
-}
-
-package() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-x86_64/PKGBUILD (from rev 663394, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 02:10:17 UTC (rev 663395)
@@ -0,0 +1,63 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Chih-Hsuan Yen 
+# Maintainer: Anatol Pomozov
+
+pkgname=python-autobahn
+pkgver=20.6.2
+pkgrel=2
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(x86_64)
+url='https://crossbar.io/autobahn/'
+license=(MIT)
+depends=(python-cffi python-twisted python-txaio python-wsaccel
+ python-setuptools python-cryptography)
+makedepends=(python-argon2_cffi python-cbor python-flatbuffers
+ python-msgpack python-passlib python-pynacl python-pytrie
+ python-ubjson)
+checkdepends=(python-pytest python-pytest-asyncio)
+optdepends=(
+  'python-cbor: CBOR serializer support'
+  'python-flatbuffers: FlatBuffers serializer support'
+  'python-msgpack: MsgPack serializer support'
+  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
+  'python-ubjson: UBJSON serializer support'
+  'python-ujson: accelerated JSON serializer support'
+  'python-argon2_cffi: WAMP-SCRAM authentication support'
+  'python-passlib: WAMP-SCRAM authentication support'
+  'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
+  'python-pytrie: WAMP-cryptobox support'
+  'python-pyopenssl: SSL/TLS support'
+  'python-snappy: snappy compression suppport for WebSocket messages'
+)
+
+source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('6ac6b6653b8d20d632b034adccf6a566154d4efbeaa23abf7c3995fd601e9a01')
+
+prepare() {
+  cd "$srcdir/autobahn-$pkgver"
+  # For reproducibility
+  # If Arch decides to increase CPU requirements [1], -march=x86-64 can be
+  # replaced with -march=nehalem so that the SSE 4.1 implementation is built
+  # [1] 
https://lists.archlinux.org/pipermail/arch-dev-public/2020-March/029914.html
+  sed -i 

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

2020-07-12 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, July 13, 2020 @ 02:09:51
  Author: yan12125
Revision: 663394

upgpkg: python-autobahn 20.6.2-2; attempt to achieve reproducibility

This change rules out the SSE 4.1 implementation in NVX (SSE 2 impl is still
built). Hopefully it does not impact performance too much.

Modified:
  python-autobahn/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 01:38:06 UTC (rev 663393)
+++ PKGBUILD2020-07-13 02:09:51 UTC (rev 663394)
@@ -4,7 +4,7 @@
 
 pkgname=python-autobahn
 pkgver=20.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(x86_64)
 url='https://crossbar.io/autobahn/'
@@ -33,6 +33,15 @@
 
source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
 sha256sums=('6ac6b6653b8d20d632b034adccf6a566154d4efbeaa23abf7c3995fd601e9a01')
 
+prepare() {
+  cd "$srcdir/autobahn-$pkgver"
+  # For reproducibility
+  # If Arch decides to increase CPU requirements [1], -march=x86-64 can be
+  # replaced with -march=nehalem so that the SSE 4.1 implementation is built
+  # [1] 
https://lists.archlinux.org/pipermail/arch-dev-public/2020-March/029914.html
+  sed -i 's#-march=native#-march=x86-64#' autobahn/nvx/_utf8validator.py
+}
+
 build() {
   cd "$srcdir/autobahn-$pkgver"
   AUTOBAHN_USE_NVX=1 python setup.py build


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:38:06
  Author: grazzolini
Revision: 663393

archrelease: copy trunk to multilib-testing-x86_64

Added:
  steam/repos/multilib-testing-x86_64/
  steam/repos/multilib-testing-x86_64/PKGBUILD
(from rev 663392, steam/trunk/PKGBUILD)
  steam/repos/multilib-testing-x86_64/steam-runtime.sh
(from rev 663392, steam/trunk/steam-runtime.sh)

--+
 PKGBUILD |   60 +
 steam-runtime.sh |2 +
 2 files changed, 62 insertions(+)

Copied: steam/repos/multilib-testing-x86_64/PKGBUILD (from rev 663392, 
steam/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-07-13 01:38:06 UTC (rev 663393)
@@ -0,0 +1,60 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Daniel Wallace 
+# Contributor: K900 
+
+pkgname=steam
+pkgver=1.0.0.64
+pkgrel=1
+pkgdesc="Valve's digital software delivery system"
+url='https://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus'
+ 'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity' 'lsb-release' 'nss' 
'usbutils'
+ 'xorg-xrandr' 'vulkan-driver' 'vulkan-icd-loader' 'lsof' 'python')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss'
+'lib32-alsa-plugins' 'lib32-libgpg-error'
+'lib32-nss' 'lib32-vulkan-driver' 'lib32-vulkan-icd-loader')
+optdepends=('steam-native-runtime: steam native runtime support')
+source=(http://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}.tar.gz
+steam-runtime.sh)
+sha512sums=('4a287b993d0ba6f49041d116512a28ca827eeac280808b70542d304f0de2d489be1f75d66d614f65ae11686a78e0d026b12e983ead7843e9ad0a28f1d21bdf4c'
+
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
+b2sums=('f8e19a768ecc507fa503ad774ce2bbf31f79f8bbaf205d687153a523761cb067ae83b718a0954ec6389dbdc7b97001932163efd888de7c73a12e1dec7e429dab'
+
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
+
+prepare() {
+  cd ${pkgname}-launcher
+  # apply roundups for udev rules
+  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i 
subprojects/steam-devices/60-steam-input.rules
+  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i 
subprojects/steam-devices/60-steam-vr.rules
+
+  # separated runtime/native desktop files
+  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
+  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
+}
+
+package() {
+  cd ${pkgname}-launcher
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 755 "${srcdir}/steam-runtime.sh" 
"${pkgdir}/usr/bin/steam-runtime"
+  install -d "${pkgdir}/usr/lib/steam"
+  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
+  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
+
+  install -Dm 644 COPYING steam_subscriber_agreement.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # blank steamdeps because apt-get
+  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
+
+  install -Dm 644 subprojects/steam-devices/60-steam-input.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
+  install -Dm 644 subprojects/steam-devices/60-steam-vr.rules \
+"${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
+}
+
+# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-testing-x86_64/steam-runtime.sh (from rev 663392, 
steam/trunk/steam-runtime.sh)
===
--- multilib-testing-x86_64/steam-runtime.sh(rev 0)
+++ multilib-testing-x86_64/steam-runtime.sh2020-07-13 01:38:06 UTC (rev 
663393)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/lib/steam/steam "$@"


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:37:42
  Author: grazzolini
Revision: 663392

upgpkg: steam 1.0.0.64-1

Modified:
  steam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 01:34:04 UTC (rev 663391)
+++ PKGBUILD2020-07-13 01:37:42 UTC (rev 663392)
@@ -4,7 +4,7 @@
 # Contributor: K900 
 
 pkgname=steam
-pkgver=1.0.0.63
+pkgver=1.0.0.64
 pkgrel=1
 pkgdesc="Valve's digital software delivery system"
 url='https://steampowered.com/'
@@ -19,9 +19,9 @@
 optdepends=('steam-native-runtime: steam native runtime support')
 
source=(http://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}.tar.gz
 steam-runtime.sh)
-sha512sums=('5fd761bb9fd4915c98fbb402d71c1bb92c39be0b2a104ef864eb61644fad58d10314a098f899cb7a28945c2b58afc5e9c98761e1ad8dba0b3347111a6c0e10e9'
+sha512sums=('4a287b993d0ba6f49041d116512a28ca827eeac280808b70542d304f0de2d489be1f75d66d614f65ae11686a78e0d026b12e983ead7843e9ad0a28f1d21bdf4c'
 
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0')
-b2sums=('5fbc08687b4e7d637371b6e4032ecbc17fef26b4ad33844fb4e7b5acc1ae96266d2529291b19c31890172fdf7fd76706fc8a37d417f96846f8a9044fae517e20'
+b2sums=('f8e19a768ecc507fa503ad774ce2bbf31f79f8bbaf205d687153a523761cb067ae83b718a0954ec6389dbdc7b97001932163efd888de7c73a12e1dec7e429dab'
 
'c6bac99336b7c30fec7cdbaf9e949555c687dd9dff50bcae136134d6314f4b841f5fc66ddb2caac1b003690b926fd4afbdc11da143b4674db4b75f27709fdd23')
 
 prepare() {


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:34:04
  Author: grazzolini
Revision: 663391

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 663390, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 01:33:41 UTC (rev 663390)
+++ PKGBUILD2020-07-13 01:34:04 UTC (rev 663391)
@@ -1,40 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('ed3278d18f17e473bf3b35c8943da9dc19a37d43ba6b8122e260d3f0d14485e8'
-'SKIP')
-sha512sums=('65490e31906f61760e5ab4ce794cf7d9c40f35c9572572bcc5af50fa91a1cebe3c740d751c15f740ed8bff4d22db9436bc1f68f375e63791ccec85af6bfb4863'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 663390, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 01:34:04 UTC (rev 663391)
@@ -0,0 +1,40 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
+'SKIP')
+sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:33:41
  Author: grazzolini
Revision: 663390

upgpkg: streamlink 1.5.0-1

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 01:26:54 UTC (rev 663389)
+++ PKGBUILD2020-07-13 01:33:41 UTC (rev 663390)
@@ -2,7 +2,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=streamlink
-pkgver=1.4.1
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
@@ -14,9 +14,9 @@
 optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
 
source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('ed3278d18f17e473bf3b35c8943da9dc19a37d43ba6b8122e260d3f0d14485e8'
+sha256sums=('203f3e2ac724b5964f8abffa9d1e769453702294e3d03b6877c6eb49f96fc11f'
 'SKIP')
-sha512sums=('65490e31906f61760e5ab4ce794cf7d9c40f35c9572572bcc5af50fa91a1cebe3c740d751c15f740ed8bff4d22db9436bc1f68f375e63791ccec85af6bfb4863'
+sha512sums=('6b54ec5d9234c1657fad711a61160ca883df409eb1e54cbe7e4a72a2eca36590ab73916ea88162f8fcf057345ae9f5e55c6591ff11088be0c2c3168ad905d458'
 'SKIP')
 
 build() {


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:26:54
  Author: grazzolini
Revision: 663389

archrelease: copy trunk to community-x86_64

Added:
  nginx-mainline/repos/community-x86_64/PKGBUILD
(from rev 663388, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/community-x86_64/logrotate
(from rev 663388, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/community-x86_64/nginx.install
(from rev 663388, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/community-x86_64/service
(from rev 663388, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/community-x86_64/PKGBUILD
  nginx-mainline/repos/community-x86_64/logrotate
  nginx-mainline/repos/community-x86_64/nginx.install
  nginx-mainline/repos/community-x86_64/service

---+
 PKGBUILD  |  264 
 logrotate |   20 ++--
 nginx.install |   24 ++---
 service   |   34 +++
 4 files changed, 171 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 01:26:09 UTC (rev 663388)
+++ PKGBUILD2020-07-13 01:26:54 UTC (rev 663389)
@@ -1,132 +0,0 @@
-# Maintainer:  Giancarlo Razzolini 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgname=nginx-mainline
-pkgver=1.19.0
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('x86_64')
-url='https://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-service
-logrotate)
-validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('1dd77bbe9fb949919e18c810abb5c397'
- 'SKIP'
- 'ef491e760e7c1ffec9ca25441a150c83'
- '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('3240d5dc59877f9d6a95c8779240675cec9290df079b9d52c06147e58900f2e060e768729669ffaf9a2a90bb9abbe8ab7fba24ff65d45fec9eeb3b6733b65f30'
-'SKIP'
-
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
-
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
-
-_common_flags=(
-  --with-compat
-  --with-debug
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_slice_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-pcre-jit
-  --with-stream
-  --with-stream_geoip_module
-  --with-stream_realip_module
-  --with-stream_ssl_module
-  --with-stream_ssl_preread_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
---with-cc-opt="$CFLAGS $CPPFLAGS" \
---with-ld-opt="$LDFLAGS" \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz
-
-  for i in ftdetect indent syntax; do
-install -Dm644 contrib/vim/$i/nginx.vim \
-  "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
-  done
-}

Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 663388, 
nginx-mainline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 01:26:54 UTC (rev 663389)
@@ -0,0 +1,132 @@
+# Maintainer:  Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Sébastien Luttringer
+# Contributor: Drew DeVault
+

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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:27:19
  Author: grazzolini
Revision: 391766

Fix for FS#66399

Modified:
  nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 01:16:25 UTC (rev 391765)
+++ PKGBUILD2020-07-13 01:27:19 UTC (rev 391766)
@@ -27,7 +27,7 @@
 etc/logrotate.d/nginx)
 install=nginx.install
 source=($url/download/nginx-$pkgver.tar.gz{,.asc}
-hg+http://hg.nginx.org/nginx-tests#revision=c1d167a13c24
+hg+https://hg.nginx.org/nginx-tests#revision=c1d167a13c24
 service
 logrotate)
 validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 



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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 01:26:09
  Author: grazzolini
Revision: 663388

upgpkg: nginx-mainline 1.19.1-1

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 01:04:29 UTC (rev 663387)
+++ PKGBUILD2020-07-13 01:26:09 UTC (rev 663388)
@@ -4,7 +4,7 @@
 # Contributor: Drew DeVault
 
 pkgname=nginx-mainline
-pkgver=1.19.0
+pkgver=1.19.1
 pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('x86_64')
@@ -27,11 +27,11 @@
 service
 logrotate)
 validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin 

-md5sums=('1dd77bbe9fb949919e18c810abb5c397'
+md5sums=('d14e03b34c47a07d0dd109f8e33c54c3'
  'SKIP'
  'ef491e760e7c1ffec9ca25441a150c83'
  '6a01fb17af86f03707c8ae60f98a2dc2')
-sha512sums=('3240d5dc59877f9d6a95c8779240675cec9290df079b9d52c06147e58900f2e060e768729669ffaf9a2a90bb9abbe8ab7fba24ff65d45fec9eeb3b6733b65f30'
+sha512sums=('e5448e3fd84c53e96db27329e41baa48c21be4169436eda3704012d0e5de15d938f6aa64dc07cb50002c2173b00fb88db4b1a9061d5f47fa7011ffd524a8ba23'
 'SKIP'
 
'4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715'
 
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')


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

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 01:04:29
  Author: svenstaro
Revision: 663387

archrelease: copy trunk to community-testing-x86_64

Added:
  magma/repos/community-testing-x86_64/
  magma/repos/community-testing-x86_64/PKGBUILD
(from rev 663386, magma/trunk/PKGBUILD)
  magma/repos/community-testing-x86_64/cuda11.patch
(from rev 663386, magma/trunk/cuda11.patch)
  magma/repos/community-testing-x86_64/disable_magma_sparse.patch
(from rev 663386, magma/trunk/disable_magma_sparse.patch)

+
 PKGBUILD   |   60 +
 cuda11.patch   |   57 +++
 disable_magma_sparse.patch |   69 +++
 3 files changed, 186 insertions(+)

Copied: magma/repos/community-testing-x86_64/PKGBUILD (from rev 663386, 
magma/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-13 01:04:29 UTC (rev 663387)
@@ -0,0 +1,60 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: bartus 
+# Contributor: pingplug 
+# Contributor: cornholio 
+
+pkgname=magma
+pkgver=2.5.3
+pkgrel=2
+pkgdesc="Matrix Algebra on GPU and Multicore Architectures"
+arch=('x86_64')
+url="https://icl.cs.utk.edu/magma/;
+license=('custom')
+depends=('blas' 'gcc9' 'lapack' 'cuda')
+makedepends=('gcc9-fortran' 'cmake' 'ninja')
+optdepends=('python2: for examples and tests'
+'gcc9-fortran: Fortran interface')
+source=("${pkgname}-${pkgver}.tar.gz::http://icl.cs.utk.edu/projectsfiles/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;
+'cuda11.patch'
+'disable_magma_sparse.patch')
+sha256sums=('c602d269a9f9a3df28f6a4f593be819abb12ed3fa413bba1ff8183de721c5ef6'
+'7a32d8de6fa845131eed3f7345baeb1531ef1d3cfa7e565b258e4cfbbaa66a5c'
+'259c38004b26395278cdaf431591974e0589dedc0f8bfc14413f854c2a10424f')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i "${srcdir}/cuda11.patch"
+
+  # Temporarily disable magma-sparse until it's fixed by magma upstream:
+  # https://bugs.archlinux.org/task/67094
+  patch -Np1 -i "${srcdir}/disable_magma_sparse.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  CC=gcc-9 \
+  CXX=g++-9 \
+  FC=gfortran-9 \
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-DGPU_TARGET="sm_53 sm_60 sm_61 sm_62 sm_70 sm_72 sm_75 sm_80"
+  ninja -C build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -Cbuild install
+
+  install -d "${pkgdir}"/usr/share/magma/example
+  cp -r "${srcdir}"/magma-${pkgver}/example/* 
"${pkgdir}"/usr/share/magma/example/
+  install -d "${pkgdir}"/usr/share/magma/testing
+  cp -r "${srcdir}"/magma-${pkgver}/testing/* 
"${pkgdir}"/usr/share/magma/testing/
+  install -Dm644 "${srcdir}"/magma-${pkgver}/COPYRIGHT 
"${pkgdir}"/usr/share/licenses/magma/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: magma/repos/community-testing-x86_64/cuda11.patch (from rev 663386, 
magma/trunk/cuda11.patch)
===
--- community-testing-x86_64/cuda11.patch   (rev 0)
+++ community-testing-x86_64/cuda11.patch   2020-07-13 01:04:29 UTC (rev 
663387)
@@ -0,0 +1,57 @@
+diff -aur --color magma-2.5.3-old/CMakeLists.txt magma-2.5.3-new/CMakeLists.txt
+--- magma-2.5.3-old/CMakeLists.txt  2020-06-22 16:18:13.789152294 +0300
 magma-2.5.3-new/CMakeLists.txt  2020-06-22 17:00:01.365798021 +0300
+@@ -101,7 +101,7 @@
+
+ # 
+ # locate CUDA libraries
+-set( GPU_TARGET "Kepler Maxwell Pascal" CACHE STRING "CUDA architectures to 
compile for; one or more of Fermi, Kepler, Maxwell, Pascal, Volta, or valid 
sm_[0-9][0-9]" )
++set( GPU_TARGET "Kepler Maxwell Pascal" CACHE STRING "CUDA architectures to 
compile for; one or more of Fermi, Kepler, Maxwell, Pascal, Volta, Turing, 
Ampere or valid sm_[0-9][0-9]" )
+ find_package( CUDA )
+ if (CUDA_FOUND)
+ message( STATUS "Found CUDA ${CUDA_VERSION}" )
+@@ -151,6 +151,10 @@
+ set( GPU_TARGET "${GPU_TARGET} sm_75" )
+ endif()
+ 
++if (${GPU_TARGET} MATCHES Ampere)
++set( GPU_TARGET "${GPU_TARGET} sm_80" )
++endif()
++
+ if (${GPU_TARGET} MATCHES sm_20)
+ if (NOT MIN_ARCH)
+ set( MIN_ARCH 200 )
+@@ -259,8 +263,17 @@
+ message( STATUS "compile for CUDA arch 7.5 (Turing)" )
+ endif()
+ 
++if (${GPU_TARGET} MATCHES sm_80)
++if (NOT MIN_ARCH)
++set( MIN_ARCH 800 )
++endif()
++set( NV_SM ${NV_SM} -gencode arch=compute_80,code=sm_80 )
++set( NV_COMP-gencode arch=compute_80,code=compute_80 )
++message( STATUS "compile for CUDA arch 8.0 (Ampere)" )
++endif()
++
+ if (NOT MIN_ARCH)

[arch-commits] Commit in magma/trunk (PKGBUILD disable_magma_sparse.patch)

2020-07-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 13, 2020 @ 01:04:19
  Author: svenstaro
Revision: 663386

upgpkg: magma 2.5.3-2: cuda 11 rebuild

I had to disable magma-sparse for the time being but that's ok as pytorch 
doesn't need it.

Added:
  magma/trunk/disable_magma_sparse.patch
Modified:
  magma/trunk/PKGBUILD

+
 PKGBUILD   |   32 ---
 disable_magma_sparse.patch |   69 +++
 2 files changed, 89 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-13 00:35:19 UTC (rev 663385)
+++ PKGBUILD2020-07-13 01:04:19 UTC (rev 663386)
@@ -5,42 +5,50 @@
 
 pkgname=magma
 pkgver=2.5.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Matrix Algebra on GPU and Multicore Architectures"
 arch=('x86_64')
 url="https://icl.cs.utk.edu/magma/;
 license=('custom')
 depends=('blas' 'gcc9' 'lapack' 'cuda')
-makedepends=('gcc9-fortran' 'cmake')
+makedepends=('gcc9-fortran' 'cmake' 'ninja')
 optdepends=('python2: for examples and tests'
 'gcc9-fortran: Fortran interface')
 
source=("${pkgname}-${pkgver}.tar.gz::http://icl.cs.utk.edu/projectsfiles/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;
-'cuda11.patch')
+'cuda11.patch'
+'disable_magma_sparse.patch')
 sha256sums=('c602d269a9f9a3df28f6a4f593be819abb12ed3fa413bba1ff8183de721c5ef6'
-'7a32d8de6fa845131eed3f7345baeb1531ef1d3cfa7e565b258e4cfbbaa66a5c')
+'7a32d8de6fa845131eed3f7345baeb1531ef1d3cfa7e565b258e4cfbbaa66a5c'
+'259c38004b26395278cdaf431591974e0589dedc0f8bfc14413f854c2a10424f')
 
 prepare() {
-  mkdir "${srcdir}"/build
-  patch -Np1 -i "${srcdir}/cuda11.patch" -d "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i "${srcdir}/cuda11.patch"
+
+  # Temporarily disable magma-sparse until it's fixed by magma upstream:
+  # https://bugs.archlinux.org/task/67094
+  patch -Np1 -i "${srcdir}/disable_magma_sparse.patch"
 }
 
 build() {
-  cd "${srcdir}"/build
+  cd ${pkgname}-${pkgver}
 
   CC=gcc-9 \
   CXX=g++-9 \
   FC=gfortran-9 \
-  cmake "${srcdir}/${pkgname}-${pkgver}" \
+  cmake \
+-Bbuild \
+-GNinja \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_SHARED_LIBS=ON \
--DGPU_TARGET="sm_35 sm_37 sm_50 sm_53 sm_60 sm_61 sm_62 sm_70 sm_72 sm_75 
sm_80"
-  make
+-DGPU_TARGET="sm_53 sm_60 sm_61 sm_62 sm_70 sm_72 sm_75 sm_80"
+  ninja -C build
 }
 
 package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -Cbuild install
 
   install -d "${pkgdir}"/usr/share/magma/example
   cp -r "${srcdir}"/magma-${pkgver}/example/* 
"${pkgdir}"/usr/share/magma/example/

Added: disable_magma_sparse.patch
===
--- disable_magma_sparse.patch  (rev 0)
+++ disable_magma_sparse.patch  2020-07-13 01:04:19 UTC (rev 663386)
@@ -0,0 +1,69 @@
+diff -ruN magma-2.5.3/CMakeLists.txt magma-2.5.3-patched/CMakeLists.txt
+--- magma-2.5.3/CMakeLists.txt 2020-03-30 02:48:20.0 +0200
 magma-2.5.3-patched/CMakeLists.txt 2020-07-13 02:39:59.957710966 +0200
+@@ -491,19 +504,19 @@
+ # compile MAGMA sparse library
+ 
+ # sparse doesn't have Fortran at the moment, so no need for above shenanigans
+-include_directories( sparse/include )
+-include_directories( sparse/control )
+-include_directories( testing )
+-cuda_add_library( magma_sparse ${libsparse_all} )
+-target_link_libraries( magma_sparse
+-magma
+-${blas_fix}
+-${LAPACK_LIBRARIES}
+-${CUDA_CUDART_LIBRARY}
+-${CUDA_CUBLAS_LIBRARIES}
+-${CUDA_cusparse_LIBRARY}
+-)
+-add_custom_target( sparse-lib DEPENDS magma_sparse )
++# include_directories( sparse/include )
++# include_directories( sparse/control )
++# include_directories( testing )
++# cuda_add_library( magma_sparse ${libsparse_all} )
++# target_link_libraries( magma_sparse
++# magma
++# ${blas_fix}
++# ${LAPACK_LIBRARIES}
++# ${CUDA_CUDART_LIBRARY}
++# ${CUDA_CUBLAS_LIBRARIES}
++# ${CUDA_cusparse_LIBRARY}
++# )
++# add_custom_target( sparse-lib DEPENDS magma_sparse )
+ 
+ 
+ # 
+@@ -534,21 +547,21 @@
+ 
+ # 
+ # compile each sparse tester
+-set( CMAKE_RUNTIME_OUTPUT_DIRECTORY sparse/testing )
+-foreach( TEST ${sparse_testing_all} )
+-string( REGEX REPLACE "\\.(cpp|f90|F90)" "" EXE ${TEST} )
+-string( REGEX REPLACE "sparse/testing/" "" EXE ${EXE} )
+-#message( "${TEST} --> ${EXE}" )
+-add_executable( ${EXE} ${TEST} )
+-target_link_libraries( ${EXE} magma_sparse magma )
+-list( APPEND sparse-testing ${EXE} )
+-endforeach()
+-add_custom_target( sparse-testing DEPENDS ${sparse-testing} )
++# set( CMAKE_RUNTIME_OUTPUT_DIRECTORY sparse/testing )
++# foreach( TEST ${sparse_testing_all} )
++# 

[arch-commits] Commit in nvidia-prime/repos/extra-any (5 files)

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 00:36:51
  Author: grazzolini
Revision: 391764

archrelease: copy trunk to extra-any

Added:
  nvidia-prime/repos/extra-any/PKGBUILD
(from rev 391763, nvidia-prime/trunk/PKGBUILD)
  nvidia-prime/repos/extra-any/prime-run
(from rev 391763, nvidia-prime/trunk/prime-run)
Deleted:
  nvidia-prime/repos/extra-any/PKGBUILD
  nvidia-prime/repos/extra-any/nvidia-prime.conf
  nvidia-prime/repos/extra-any/prime-run

---+
 PKGBUILD  |   38 +-
 nvidia-prime.conf |4 
 prime-run |4 ++--
 3 files changed, 19 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 00:36:14 UTC (rev 391763)
+++ PKGBUILD2020-07-13 00:36:51 UTC (rev 391764)
@@ -1,21 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-
-pkgname=nvidia-prime
-pkgver=1.0
-pkgrel=3
-pkgdesc="NVIDIA Prime Render Offload configuration and utilities"
-arch=('any')
-url="https://www.archlinux.org/packages/extra/any/nvidia-prime/;
-license=('GPL')
-depends=('bash' 'nvidia-utils')
-source=("nvidia-prime.conf"
-"prime-run")
-md5sums=('a42f2fb5225b2cd0fbda4cf20c5314d7'
- '3d377404ef87df6e18ea3b149ba1110b')
-sha512sums=('753821b4d16e1d9d1ac0c73b1adf2a34a9bf4e3156f1b948ea6096f7c418dbfde89fa659d4da8abffef9d451beda0c07106a4a81d03794f6687fbd018198f74d'
-
'd9158ddee6ec105796d86ac42b32c6c925cfa866d5e25c64d5a29be47fe393ace0efb4ef8a3e7cff699abc599d28ee46866dcbfdfd1920122e426ee262c562e6')
-
-package() {
-install -Dm644 $srcdir/nvidia-prime.conf 
$pkgdir/usr/share/X11/xorg.conf.d/20-nvidia-prime.conf
-install -Dm755 $srcdir/prime-run $pkgdir/usr/bin/prime-run
-}

Copied: nvidia-prime/repos/extra-any/PKGBUILD (from rev 391763, 
nvidia-prime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 00:36:51 UTC (rev 391764)
@@ -0,0 +1,17 @@
+# Maintainer: Giancarlo Razzolini 
+
+pkgname=nvidia-prime
+pkgver=1.0
+pkgrel=4
+pkgdesc="NVIDIA Prime Render Offload configuration and utilities"
+arch=('any')
+url="https://www.archlinux.org/packages/extra/any/nvidia-prime/;
+license=('GPL')
+depends=('bash' 'nvidia-utils')
+source=("prime-run")
+md5sums=('3d377404ef87df6e18ea3b149ba1110b')
+sha512sums=('d9158ddee6ec105796d86ac42b32c6c925cfa866d5e25c64d5a29be47fe393ace0efb4ef8a3e7cff699abc599d28ee46866dcbfdfd1920122e426ee262c562e6')
+
+package() {
+install -Dm755 $srcdir/prime-run $pkgdir/usr/bin/prime-run
+}

Deleted: nvidia-prime.conf
===
--- nvidia-prime.conf   2020-07-13 00:36:14 UTC (rev 391763)
+++ nvidia-prime.conf   2020-07-13 00:36:51 UTC (rev 391764)
@@ -1,4 +0,0 @@
-Section "ServerLayout"
-Identifier "layout"
-Option "AllowNVIDIAGPUScreens"
-EndSection

Deleted: prime-run
===
--- prime-run   2020-07-13 00:36:14 UTC (rev 391763)
+++ prime-run   2020-07-13 00:36:51 UTC (rev 391764)
@@ -1,2 +0,0 @@
-#!/bin/bash
-__NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only 
__GLX_VENDOR_LIBRARY_NAME=nvidia "$@"

Copied: nvidia-prime/repos/extra-any/prime-run (from rev 391763, 
nvidia-prime/trunk/prime-run)
===
--- prime-run   (rev 0)
+++ prime-run   2020-07-13 00:36:51 UTC (rev 391764)
@@ -0,0 +1,2 @@
+#!/bin/bash
+__NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only 
__GLX_VENDOR_LIBRARY_NAME=nvidia "$@"


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

2020-07-12 Thread Giancarlo Razzolini via arch-commits
Date: Monday, July 13, 2020 @ 00:36:14
  Author: grazzolini
Revision: 391763

upgpkg: nvidia-prime 1.0-4

Fix for FS#67246

Modified:
  nvidia-prime/trunk/PKGBUILD
Deleted:
  nvidia-prime/trunk/nvidia-prime.conf

---+
 PKGBUILD  |   12 
 nvidia-prime.conf |4 
 2 files changed, 4 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 15:29:16 UTC (rev 391762)
+++ PKGBUILD2020-07-13 00:36:14 UTC (rev 391763)
@@ -2,20 +2,16 @@
 
 pkgname=nvidia-prime
 pkgver=1.0
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA Prime Render Offload configuration and utilities"
 arch=('any')
 url="https://www.archlinux.org/packages/extra/any/nvidia-prime/;
 license=('GPL')
 depends=('bash' 'nvidia-utils')
-source=("nvidia-prime.conf"
-"prime-run")
-md5sums=('a42f2fb5225b2cd0fbda4cf20c5314d7'
- '3d377404ef87df6e18ea3b149ba1110b')
-sha512sums=('753821b4d16e1d9d1ac0c73b1adf2a34a9bf4e3156f1b948ea6096f7c418dbfde89fa659d4da8abffef9d451beda0c07106a4a81d03794f6687fbd018198f74d'
-
'd9158ddee6ec105796d86ac42b32c6c925cfa866d5e25c64d5a29be47fe393ace0efb4ef8a3e7cff699abc599d28ee46866dcbfdfd1920122e426ee262c562e6')
+source=("prime-run")
+md5sums=('3d377404ef87df6e18ea3b149ba1110b')
+sha512sums=('d9158ddee6ec105796d86ac42b32c6c925cfa866d5e25c64d5a29be47fe393ace0efb4ef8a3e7cff699abc599d28ee46866dcbfdfd1920122e426ee262c562e6')
 
 package() {
-install -Dm644 $srcdir/nvidia-prime.conf 
$pkgdir/usr/share/X11/xorg.conf.d/20-nvidia-prime.conf
 install -Dm755 $srcdir/prime-run $pkgdir/usr/bin/prime-run
 }

Deleted: nvidia-prime.conf
===
--- nvidia-prime.conf   2020-07-12 15:29:16 UTC (rev 391762)
+++ nvidia-prime.conf   2020-07-13 00:36:14 UTC (rev 391763)
@@ -1,4 +0,0 @@
-Section "ServerLayout"
-Identifier "layout"
-Option "AllowNVIDIAGPUScreens"
-EndSection


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

2020-07-12 Thread Nicola Squartini via arch-commits
Date: Monday, July 13, 2020 @ 00:35:19
  Author: tensor5
Revision: 663385

archrelease: copy trunk to community-x86_64

Added:
  go-ethereum/repos/community-x86_64/PKGBUILD
(from rev 663384, go-ethereum/trunk/PKGBUILD)
Deleted:
  go-ethereum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-13 00:34:51 UTC (rev 663384)
+++ PKGBUILD2020-07-13 00:35:19 UTC (rev 663385)
@@ -1,31 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=go-ethereum
-pkgver=1.9.15
-_commit=0f77f34bb67b640bd8af22b215f3d279a1e21170
-pkgrel=1
-pkgdesc='Official Go implementation of the Ethereum protocol'
-arch=('x86_64')
-url='https://geth.ethereum.org/'
-license=('GPL3')
-depends=('glibc')
-makedepends=('git' 'go')
-provides=('geth')
-conflicts=('geth')
-replaces=('geth')
-source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie"
-make all
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
-}

Copied: go-ethereum/repos/community-x86_64/PKGBUILD (from rev 663384, 
go-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-13 00:35:19 UTC (rev 663385)
@@ -0,0 +1,31 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=go-ethereum
+pkgver=1.9.16
+_commit=ea3b00ad75aebaf1790fe0f8afc9fb7852c87716
+pkgrel=1
+pkgdesc='Official Go implementation of the Ethereum protocol'
+arch=('x86_64')
+url='https://geth.ethereum.org/'
+license=('GPL3')
+depends=('glibc')
+makedepends=('git' 'go')
+provides=('geth')
+conflicts=('geth')
+replaces=('geth')
+source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie"
+make all
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
+}


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

2020-07-12 Thread Nicola Squartini via arch-commits
Date: Monday, July 13, 2020 @ 00:34:51
  Author: tensor5
Revision: 663384

upgpkg: go-ethereum 1.9.16-1

Modified:
  go-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 23:39:04 UTC (rev 663383)
+++ PKGBUILD2020-07-13 00:34:51 UTC (rev 663384)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=go-ethereum
-pkgver=1.9.15
-_commit=0f77f34bb67b640bd8af22b215f3d279a1e21170
+pkgver=1.9.16
+_commit=ea3b00ad75aebaf1790fe0f8afc9fb7852c87716
 pkgrel=1
 pkgdesc='Official Go implementation of the Ethereum protocol'
 arch=('x86_64')


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

2020-07-12 Thread Eli Schwartz via arch-commits
Date: Sunday, July 12, 2020 @ 23:39:04
  Author: eschwartz
Revision: 663383

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 663382, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/config.patch
(from rev 663382, cinnamon-desktop/trunk/config.patch)
Deleted:
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/config.patch

--+
 PKGBUILD |   78 -
 config.patch |   48 +--
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 23:38:46 UTC (rev 663382)
+++ PKGBUILD2020-07-12 23:39:04 UTC (rev 663383)
@@ -1,39 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueria 
-# Contributor:  Jan de Groot 
-
-pkgname=cinnamon-desktop
-pkgver=4.6.2
-pkgrel=1
-pkgdesc="Library with common API for various Cinnamon modules"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL' 'LGPL')
-depends=('accountsservice' 'gtk3' 'libxkbfile' 'libpulse')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"config.patch")
-sha256sums=('1d04cdccde9f0c2f261fdd2dec64a2ed4c7b2c4ef4f727f1fbb9136437d80549'
-'45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
-b2sums=('b51428a7a3236dfb81d4c120b44e568e73b5779a3d0af7bdf8dfeeed6ce7c5128e4aef7b7e49a84d0ef83940410a63cedf2b8d50391139f54d0415e4ec2a6467'
-
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-# Adjust configuration
-patch -Np1 -i ../config.patch
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr --buildtype=plain ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-desktop/repos/community-x86_64/PKGBUILD (from rev 663382, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 23:39:04 UTC (rev 663383)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueria 
+# Contributor:  Jan de Groot 
+
+pkgname=cinnamon-desktop
+pkgver=4.6.3
+pkgrel=1
+pkgdesc="Library with common API for various Cinnamon modules"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL' 'LGPL')
+depends=('accountsservice' 'gtk3' 'libxkbfile' 'libpulse')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"config.patch")
+sha256sums=('0d666027de4d4b83e9fd7cab6a792d0d8f57503783d04b8ccc41c66dc2c97389'
+'45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
+b2sums=('295dcd187a2b5631d515612183eabf1392b6d0cec6524d5b73c6325ef6bc5f4969696f0f749a741d020235aa750d838a3e01290be969b61f1c0a1ee5c35ce4c0'
+
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+# Adjust configuration
+patch -Np1 -i ../config.patch
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr --buildtype=plain ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}

Deleted: config.patch
===
--- config.patch2020-07-12 23:38:46 UTC (rev 663382)
+++ config.patch2020-07-12 23:39:04 UTC (rev 663383)
@@ -1,24 +0,0 @@
-diff -Naur 
cinnamon-desktop-2.8.0.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.8.0/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.8.0.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
  2015-10-16 13:00:30.0 +
-+++ 
cinnamon-desktop-2.8.0/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
   2015-11-20 19:04:16.543027956 +
-@@ -10,7 +10,7 @@
-   
- 
- 
--  
'file://@datadir@/themes/Adwaita/backgrounds/adwaita-timed.xml'
-+  
'file://@datadir@/backgrounds/gnome/adwaita-timed.xml'
-   <_summary>Picture URI
-   <_description>
- URI to use for the background image. Not that the backend only 
supports
-diff -Naur 

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

2020-07-12 Thread Eli Schwartz via arch-commits
Date: Sunday, July 12, 2020 @ 23:38:46
  Author: eschwartz
Revision: 663382

upgpkg: cinnamon-desktop 4.6.3-1: upstream release

Modified:
  cinnamon-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 22:45:22 UTC (rev 663381)
+++ PKGBUILD2020-07-12 23:38:46 UTC (rev 663382)
@@ -3,7 +3,7 @@
 # Contributor:  Jan de Groot 
 
 pkgname=cinnamon-desktop
-pkgver=4.6.2
+pkgver=4.6.3
 pkgrel=1
 pkgdesc="Library with common API for various Cinnamon modules"
 arch=('x86_64')
@@ -13,9 +13,9 @@
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "config.patch")
-sha256sums=('1d04cdccde9f0c2f261fdd2dec64a2ed4c7b2c4ef4f727f1fbb9136437d80549'
+sha256sums=('0d666027de4d4b83e9fd7cab6a792d0d8f57503783d04b8ccc41c66dc2c97389'
 '45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
-b2sums=('b51428a7a3236dfb81d4c120b44e568e73b5779a3d0af7bdf8dfeeed6ce7c5128e4aef7b7e49a84d0ef83940410a63cedf2b8d50391139f54d0415e4ec2a6467'
+b2sums=('295dcd187a2b5631d515612183eabf1392b6d0cec6524d5b73c6325ef6bc5f4969696f0f749a741d020235aa750d838a3e01290be969b61f1c0a1ee5c35ce4c0'
 
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
 
 prepare() {


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:45:22
  Author: sangy
Revision: 663381

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 22:45:04 UTC (rev 663380)
+++ PKGBUILD2020-07-12 22:45:22 UTC (rev 663381)
@@ -1,30 +0,0 @@
-# Maintainer: Santiago Torres-Arias 
-# Maintainer: nblock 
-# Contributor: Thomas Conneely 
-
-pkgname=python-bitstring
-pkgver=3.1.6
-pkgrel=1
-pkgdesc='Python module designed to help make the creation, manipulation and 
analysis of binary data as simple and natural as possible'
-arch=('any')
-url="https://scott-griffiths.github.io/bitstring/;
-license=('MIT')
-depends=('python' 'python-setuptools')
-source=("https://github.com/scott-griffiths/bitstring/archive/${pkgname/python-}-${pkgver}.tar.gz;)
-sha256sums=('41fbc1d71b871f985dfe00d2e74e17add8b47e51e1a9e0634ae4c18ea7181418')
-
-build() {
-  # still unsure why the upstream tarball has the name repeated twice...
-  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
-
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
-
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -D -m0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-bitstring/repos/community-any/PKGBUILD (from rev 663380, 
python-bitstring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 22:45:22 UTC (rev 663381)
@@ -0,0 +1,31 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: nblock 
+# Contributor: Thomas Conneely 
+
+pkgname=python-bitstring
+pkgver=3.1.7
+pkgrel=1
+pkgdesc='Python module designed to help make the creation, manipulation and 
analysis of binary data as simple and natural as possible'
+arch=('any')
+url="https://scott-griffiths.github.io/bitstring/;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/scott-griffiths/bitstring/archive/${pkgname/python-}-${pkgver}.tar.gz;)
+sha256sums=('fa4a9f6fc8a15e69c6266968741b2cd7827001d646bd66b46fb6e93a28571f79')
+
+build() {
+  # still unsure why the upstream tarball has the name repeated twice...
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  install -D -m0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:45:04
  Author: sangy
Revision: 663380

upgpkg: python-bitstring 3.1.7-1

Modified:
  python-bitstring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 22:32:53 UTC (rev 663379)
+++ PKGBUILD2020-07-12 22:45:04 UTC (rev 663380)
@@ -3,15 +3,16 @@
 # Contributor: Thomas Conneely 
 
 pkgname=python-bitstring
-pkgver=3.1.6
+pkgver=3.1.7
 pkgrel=1
 pkgdesc='Python module designed to help make the creation, manipulation and 
analysis of binary data as simple and natural as possible'
 arch=('any')
 url="https://scott-griffiths.github.io/bitstring/;
 license=('MIT')
-depends=('python' 'python-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 
source=("https://github.com/scott-griffiths/bitstring/archive/${pkgname/python-}-${pkgver}.tar.gz;)
-sha256sums=('41fbc1d71b871f985dfe00d2e74e17add8b47e51e1a9e0634ae4c18ea7181418')
+sha256sums=('fa4a9f6fc8a15e69c6266968741b2cd7827001d646bd66b46fb6e93a28571f79')
 
 build() {
   # still unsure why the upstream tarball has the name repeated twice...


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:32:53
  Author: sangy
Revision: 663379

archrelease: copy trunk to community-any

Added:
  
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
(from rev 663378, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
  electrum/repos/community-any/PKGBUILD
(from rev 663378, electrum/trunk/PKGBUILD)
Deleted:
  
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
  electrum/repos/community-any/PKGBUILD

-+
 0001-prevent-requirements.txt-from-being-installed-to-usr.patch |   78 
 PKGBUILD|   95 
+-
 2 files changed, 87 insertions(+), 86 deletions(-)

Deleted: 0001-prevent-requirements.txt-from-being-installed-to-usr.patch
===
--- 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2020-07-12 22:32:34 UTC (rev 663378)
+++ 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2020-07-12 22:32:53 UTC (rev 663379)
@@ -1,39 +0,0 @@
-From e72947c8fd50575d69cb005a52f99aeef66f4186 Mon Sep 17 00:00:00 2001
-From: Marcel O'Neil 
-Date: Wed, 7 Mar 2018 15:15:54 -0500
-Subject: [PATCH] prevent requirements.txt from being installed to /usr
-

- MANIFEST.in | 2 ++
- setup.py| 2 +-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/MANIFEST.in b/MANIFEST.in
-index 4fa5491a..b7355bd9 100644
 a/MANIFEST.in
-+++ b/MANIFEST.in
-@@ -4,6 +4,8 @@ include electrum.conf.sample
- include electrum.desktop
- include *.py
- include electrum
-+include contrib/requirements/requirements.txt
-+include contrib/requirements/requirements-hw.txt
- recursive-include lib *.py
- recursive-include gui *.py
- recursive-include plugins *.py
-diff --git a/setup.py b/setup.py
-index 63581a61..030993b5 100755
 a/setup.py
-+++ b/setup.py
-@@ -20,7 +20,7 @@ version = imp.load_source('version', 'lib/version.py')
- if sys.version_info[:3] < (3, 4, 0):
- sys.exit("Error: Electrum requires Python version >= 3.4.0...")
- 
--data_files = ['contrib/requirements/' + r for r in ['requirements.txt', 
'requirements-hw.txt']]
-+data_files = []
- 
- if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
- parser = argparse.ArgumentParser()
--- 
-2.16.2
-

Copied: 
electrum/repos/community-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
 (from rev 663378, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
===
--- 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
(rev 0)
+++ 0001-prevent-requirements.txt-from-being-installed-to-usr.patch 
2020-07-12 22:32:53 UTC (rev 663379)
@@ -0,0 +1,39 @@
+From e72947c8fd50575d69cb005a52f99aeef66f4186 Mon Sep 17 00:00:00 2001
+From: Marcel O'Neil 
+Date: Wed, 7 Mar 2018 15:15:54 -0500
+Subject: [PATCH] prevent requirements.txt from being installed to /usr
+
+---
+ MANIFEST.in | 2 ++
+ setup.py| 2 +-
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/MANIFEST.in b/MANIFEST.in
+index 4fa5491a..b7355bd9 100644
+--- a/MANIFEST.in
 b/MANIFEST.in
+@@ -4,6 +4,8 @@ include electrum.conf.sample
+ include electrum.desktop
+ include *.py
+ include electrum
++include contrib/requirements/requirements.txt
++include contrib/requirements/requirements-hw.txt
+ recursive-include lib *.py
+ recursive-include gui *.py
+ recursive-include plugins *.py
+diff --git a/setup.py b/setup.py
+index 63581a61..030993b5 100755
+--- a/setup.py
 b/setup.py
+@@ -20,7 +20,7 @@ version = imp.load_source('version', 'lib/version.py')
+ if sys.version_info[:3] < (3, 4, 0):
+ sys.exit("Error: Electrum requires Python version >= 3.4.0...")
+ 
+-data_files = ['contrib/requirements/' + r for r in ['requirements.txt', 
'requirements-hw.txt']]
++data_files = []
+ 
+ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
+ parser = argparse.ArgumentParser()
+-- 
+2.16.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 22:32:34 UTC (rev 663378)
+++ PKGBUILD2020-07-12 22:32:53 UTC (rev 663379)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Co-Maintainer: Santiago Torres-Arias 
-# Contributor: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=electrum
-pkgver=3.3.8
-pkgrel=2
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-makedepends=('python-setuptools')
-depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
- 'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
- 'python-pyqt5' 'python-pycryptodomex' 'python-websocket-client' 
'python-certifi'
- 'python-aiorpcx' 'python-aiohttp' 

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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:32:34
  Author: sangy
Revision: 663378

upgpkg: electrum 4.0.2-1

- Add dependency: libsecp256k1
- Add dependency: python-bistring (brought from AUR)

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 22:29:50 UTC (rev 663377)
+++ PKGBUILD2020-07-12 22:32:34 UTC (rev 663378)
@@ -4,8 +4,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=electrum
-pkgver=3.3.8
-pkgrel=2
+pkgver=4.0.2
+pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
 makedepends=('python-setuptools')
@@ -12,7 +12,8 @@
 depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
  'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
  'python-pyqt5' 'python-pycryptodomex' 'python-websocket-client' 
'python-certifi'
- 'python-aiorpcx' 'python-aiohttp' 'python-aiohttp-socks')
+ 'python-aiorpcx' 'python-aiohttp' 'python-aiohttp-socks'
+ 'libsecp256k1' 'python-bitstring')
 optdepends=('python-btchip: BTChip hardware wallet support'
 'python-hidapi: Digital Bitbox hardware wallet support'
 'python-matplotlib: plot transaction history in graphical mode'
@@ -25,7 +26,7 @@
 url="https://electrum.org;
 license=('MIT')
 
source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('5f756da4d2df59c69997925c69f651011def07bfbdbc582f492ecc19386eee7d79b9951732a792e6041da902d776052d6590cbd2d7004bc93c8406bcf9093fe6'
+sha512sums=('c51537ed4adea72554c94fffd8bce82d41707590576391008fe58dbbe7b15de1b8ecb95b2afefcf7a2db82fefb48baedd3a638fedd22f3b29622846a8bb61c24'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:29:40
  Author: sangy
Revision: 663376

upgpkg: python-bitstring 3.1.6-1

Added:
  python-bitstring/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 22:29:40 UTC (rev 663376)
@@ -0,0 +1,30 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: nblock 
+# Contributor: Thomas Conneely 
+
+pkgname=python-bitstring
+pkgver=3.1.6
+pkgrel=1
+pkgdesc='Python module designed to help make the creation, manipulation and 
analysis of binary data as simple and natural as possible'
+arch=('any')
+url="https://scott-griffiths.github.io/bitstring/;
+license=('MIT')
+depends=('python' 'python-setuptools')
+source=("https://github.com/scott-griffiths/bitstring/archive/${pkgname/python-}-${pkgver}.tar.gz;)
+sha256sums=('41fbc1d71b871f985dfe00d2e74e17add8b47e51e1a9e0634ae4c18ea7181418')
+
+build() {
+  # still unsure why the upstream tarball has the name repeated twice...
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  install -D -m0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:29:50
  Author: sangy
Revision: 663377

archrelease: copy trunk to community-any

Added:
  python-bitstring/repos/community-any/
  python-bitstring/repos/community-any/PKGBUILD
(from rev 663376, python-bitstring/trunk/PKGBUILD)

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

Copied: python-bitstring/repos/community-any/PKGBUILD (from rev 663376, 
python-bitstring/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-07-12 22:29:50 UTC (rev 663377)
@@ -0,0 +1,30 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: nblock 
+# Contributor: Thomas Conneely 
+
+pkgname=python-bitstring
+pkgver=3.1.6
+pkgrel=1
+pkgdesc='Python module designed to help make the creation, manipulation and 
analysis of binary data as simple and natural as possible'
+arch=('any')
+url="https://scott-griffiths.github.io/bitstring/;
+license=('MIT')
+depends=('python' 'python-setuptools')
+source=("https://github.com/scott-griffiths/bitstring/archive/${pkgname/python-}-${pkgver}.tar.gz;)
+sha256sums=('41fbc1d71b871f985dfe00d2e74e17add8b47e51e1a9e0634ae4c18ea7181418')
+
+build() {
+  # still unsure why the upstream tarball has the name repeated twice...
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/${pkgname/python-}-${pkgname/python-}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  install -D -m0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:19:18
  Author: sangy
Revision: 663375

Prepare to add: python-bitstring

Added:
  python-bitstring/
  python-bitstring/repos/
  python-bitstring/trunk/


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:05:24
  Author: sangy
Revision: 663373

upgpkg: python-aiohttp-socks 0.4.2-1

- Use git for makedepends to verify GPG signed tags

Modified:
  python-aiohttp-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 21:27:04 UTC (rev 663372)
+++ PKGBUILD2020-07-12 22:05:24 UTC (rev 663373)
@@ -1,7 +1,7 @@
 # Maintainer: Santiago Torres-Arias 
 
 pkgname=python-aiohttp-socks
-pkgver=0.3.9
+pkgver=0.4.2
 pkgrel=1
 pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
 arch=('any')
@@ -8,24 +8,25 @@
 url="https://github.com/romis2012/aiohttp-socks/;
 license=('Apache')
 depends=('python-aiohttp')
-makedepends=('python' 'python-setuptools')
+makedepends=('git' 'python' 'python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-asyncio')
-source=("https://github.com/romis2012/aiohttp-socks/archive/${pkgver}.tar.gz;)
-sha256sums=('c88b5b308f707823700cbb3d8605f555308566d42683ee4ecc9899dafe2f6456')
+source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
+sha256sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
 
 check() {
-cd "${pkgname//python-}-${pkgver}"
+cd "${pkgname//python-}"
 pytest
 }
 
 build() {
-cd "${pkgname//python-}-${pkgver}"
+cd "${pkgname//python-}"
 python setup.py build
 
 }
 
 package() {
-cd "${pkgname//python-}-${pkgver}"
+cd "${pkgname//python-}"
 python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
 }
 


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

2020-07-12 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, July 12, 2020 @ 22:05:43
  Author: sangy
Revision: 663374

archrelease: copy trunk to community-any

Added:
  python-aiohttp-socks/repos/community-any/PKGBUILD
(from rev 663373, python-aiohttp-socks/trunk/PKGBUILD)
Deleted:
  python-aiohttp-socks/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 22:05:24 UTC (rev 663373)
+++ PKGBUILD2020-07-12 22:05:43 UTC (rev 663374)
@@ -1,31 +0,0 @@
-# Maintainer: Santiago Torres-Arias 
-
-pkgname=python-aiohttp-socks
-pkgver=0.3.9
-pkgrel=1
-pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
-arch=('any')
-url="https://github.com/romis2012/aiohttp-socks/;
-license=('Apache')
-depends=('python-aiohttp')
-makedepends=('python' 'python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-asyncio')
-source=("https://github.com/romis2012/aiohttp-socks/archive/${pkgver}.tar.gz;)
-sha256sums=('c88b5b308f707823700cbb3d8605f555308566d42683ee4ecc9899dafe2f6456')
-
-check() {
-cd "${pkgname//python-}-${pkgver}"
-pytest
-}
-
-build() {
-cd "${pkgname//python-}-${pkgver}"
-python setup.py build
-
-}
-
-package() {
-cd "${pkgname//python-}-${pkgver}"
-python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-}
-

Copied: python-aiohttp-socks/repos/community-any/PKGBUILD (from rev 663373, 
python-aiohttp-socks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 22:05:43 UTC (rev 663374)
@@ -0,0 +1,32 @@
+# Maintainer: Santiago Torres-Arias 
+
+pkgname=python-aiohttp-socks
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
+arch=('any')
+url="https://github.com/romis2012/aiohttp-socks/;
+license=('Apache')
+depends=('python-aiohttp')
+makedepends=('git' 'python' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-asyncio')
+source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
+sha256sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
+
+check() {
+cd "${pkgname//python-}"
+pytest
+}
+
+build() {
+cd "${pkgname//python-}"
+python setup.py build
+
+}
+
+package() {
+cd "${pkgname//python-}"
+python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+


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

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 21:27:04
  Author: felixonmars
Revision: 663372

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 21:26:46 UTC (rev 663371)
+++ PKGBUILD2020-07-12 21:27:04 UTC (rev 663372)
@@ -1,42 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.19.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('c26b0c9c5c7e1941c7f491e8e8165fda86a6e985204b9098c214080e508167f77f7dffe65192a4418f4958c3c6df44a20d75131895517c40c1113995ace3b604')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 663371, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 21:27:04 UTC (rev 663372)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.19.1
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('81397f64f79debcea05f343f7c8c7cb528231be0bea15f0c6b81e3f68278eff6d73fa09a2f85a798c58468087b6135fea21530402a8fb9bd8014c040ad54a8c4')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 21:26:46
  Author: felixonmars
Revision: 663371

upgpkg: python-hypothesis 5.19.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 21:14:32 UTC (rev 663370)
+++ PKGBUILD2020-07-12 21:26:46 UTC (rev 663371)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.19.0
+pkgver=5.19.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('c26b0c9c5c7e1941c7f491e8e8165fda86a6e985204b9098c214080e508167f77f7dffe65192a4418f4958c3c6df44a20d75131895517c40c1113995ace3b604')
+sha512sums=('81397f64f79debcea05f343f7c8c7cb528231be0bea15f0c6b81e3f68278eff6d73fa09a2f85a798c58468087b6135fea21530402a8fb9bd8014c040ad54a8c4')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 21:14:32
  Author: foxboron
Revision: 663370

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 663369, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 663369, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 663369, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  140 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 21:14:22 UTC (rev 663369)
+++ PKGBUILD2020-07-12 21:14:32 UTC (rev 663370)
@@ -1,70 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname=influxdb
-pkgver=1.8.0
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('x86_64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-
"fix-go114.patch::https://github.com/Foxboron/influxdb/commit/f8453b48862b50fe44021e320332f75e32457f29.patch;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('a20a03caac651ba8a1c6ee317c207d835feb51d4c266c4aa4986f196a7686623'
-'2812f5cd31bdf6b9f587d471c249fb90ea58c4000ce52e3b91de7b17ca74dc7d'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 < "../fix-go114.patch"
-}
-
-build(){
-  cd "$pkgname-$pkgver"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master"
-  mkdir -p build
-  go build -v -ldflags="$_LDFLAGS" -o build ./cmd/...
-  cd "man"
-  make
-}
-
-check(){
-  cd "$pkgname-$pkgver"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  go test ./...
-}
-
-package(){
-  cd "$pkgname-$pkgver"
-
-  install -Dm644 ../influxdb.sysusers 
"$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 ../influxdb.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 build/influx "$pkgdir/usr/bin/"
-  install -Dm755 build/influxd"$pkgdir/usr/bin/"
-  install -Dm755 build/influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 build/influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 build/influx_tools   "$pkgdir/usr/bin/"
-  install -Dm755 build/influx_tsm "$pkgdir/usr/bin/"
-  # install -Dm755 store  "$pkgdir/usr/bin/"
-
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 663369, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 21:14:32 UTC (rev 663370)
@@ -0,0 +1,70 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.8.1
+pkgrel=1
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('x86_64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+
"fix-go114.patch::https://github.com/Foxboron/influxdb/commit/f8453b48862b50fe44021e320332f75e32457f29.patch;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('d811be2ec684ea224e1097bd0051e0f6dfcd30cdd1656d55e48883d61ce47ce9'
+'2812f5cd31bdf6b9f587d471c249fb90ea58c4000ce52e3b91de7b17ca74dc7d'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+prepare() {
+  cd 

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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 21:14:22
  Author: foxboron
Revision: 663369

upgpkg: influxdb 1.8.1-1

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 21:10:19 UTC (rev 663368)
+++ PKGBUILD2020-07-12 21:14:22 UTC (rev 663369)
@@ -6,7 +6,7 @@
 # Contributor: Ben Alex 
 
 pkgname=influxdb
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 
"fix-go114.patch::https://github.com/Foxboron/influxdb/commit/f8453b48862b50fe44021e320332f75e32457f29.patch;
 "influxdb.sysusers"
 "influxdb.tmpfiles")
-sha256sums=('a20a03caac651ba8a1c6ee317c207d835feb51d4c266c4aa4986f196a7686623'
+sha256sums=('d811be2ec684ea224e1097bd0051e0f6dfcd30cdd1656d55e48883d61ce47ce9'
 '2812f5cd31bdf6b9f587d471c249fb90ea58c4000ce52e3b91de7b17ca74dc7d'
 '809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
 'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')


[arch-commits] Commit in dbeaver/repos/community-x86_64 (12 files)

2020-07-12 Thread Fabio Castelli via arch-commits
Date: Sunday, July 12, 2020 @ 21:10:19
  Author: muflone
Revision: 663368

archrelease: copy trunk to community-x86_64

Added:
  dbeaver/repos/community-x86_64/PKGBUILD
(from rev 663367, dbeaver/trunk/PKGBUILD)
  dbeaver/repos/community-x86_64/dbeaver.desktop
(from rev 663367, dbeaver/trunk/dbeaver.desktop)
  dbeaver/repos/community-x86_64/dbeaver.hook
(from rev 663367, dbeaver/trunk/dbeaver.hook)
  dbeaver/repos/community-x86_64/dbeaver.install
(from rev 663367, dbeaver/trunk/dbeaver.install)
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
(from rev 663367, dbeaver/trunk/dbeaver.profile.gz)
  dbeaver/repos/community-x86_64/dbeaver.sh
(from rev 663367, dbeaver/trunk/dbeaver.sh)
Deleted:
  dbeaver/repos/community-x86_64/PKGBUILD
  dbeaver/repos/community-x86_64/dbeaver.desktop
  dbeaver/repos/community-x86_64/dbeaver.hook
  dbeaver/repos/community-x86_64/dbeaver.install
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
  dbeaver/repos/community-x86_64/dbeaver.sh

-+
 PKGBUILD|  216 +++---
 dbeaver.desktop |   28 +++
 dbeaver.hook|   24 +++---
 dbeaver.install |   10 +-
 dbeaver.sh  |   12 +--
 5 files changed, 145 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 21:09:50 UTC (rev 663367)
+++ PKGBUILD2020-07-12 21:10:19 UTC (rev 663368)
@@ -1,108 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Arne Hoch 
-
-pkgname=dbeaver
-pkgver=7.1.1
-pkgrel=1
-pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
-arch=('x86_64')
-url="https://dbeaver.io/;
-license=("Apache")
-depends=('java-runtime>=8' 'gtk3' 'gtk-update-icon-cache' 'libsecret')
-makedepends=('maven' 'java-runtime>=8')
-optdepends=('dbeaver-plugin-office: export data in Microsoft Office Excel 
format'
-'dbeaver-plugin-svg-format: save diagrams in SVG format')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/serge-rider/dbeaver/archive/${pkgver}.tar.gz;
-"${pkgname}.desktop"
-"${pkgname}.sh"
-"${pkgname}.profile.gz"
-"${pkgname}.hook"
-"${pkgname}.install")
-sha256sums=('f80582a8c72ff7a5baef7b00663dc5ca1fe86a67c95ca81eb12ebf4493023224'
-'27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
-'3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
-'1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'
-'f8b763ca210bfa4d9a4e407b656ba4f5d1bf2f3f54c67044f7a4dd0c3625fc22'
-'f8d65dd933049b587a5815ea75a30ef944300b812df383ca1c2dcd68280bc7ab')
-install="${pkgname}.install"
-
-prepare() {
-  # Fix version number in profile file
-  gzip --decompress --keep --stdout "${pkgname}.profile.gz" | 
-sed "s/DBEAVER_VERSION/${pkgver}/g" |
-gzip -9 > "${pkgname}.profile-${pkgver}.gz"
-
-  # Download dependencies during prepare FS#55873
-  # https://bugs.archlinux.org/task/55873
-  cd "${pkgname}-${pkgver}"
-  export MAVEN_OPTS="-Xmx2048m"
-  mvn --batch-mode validate
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  mvn --batch-mode package
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/product/standalone"
-  # Install icons into /usr/share/icons/hicolor
-  for _size in 16 32 48 64 128 256 512
-  do
-install -m 644 -D "icons-sources/icon_${_size}x${_size}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_size}x${_size}/apps/dbeaver.png"
-  done
-
-  # Move into the target directory
-  cd "target/products/org.jkiss.dbeaver.core.product/linux/gtk/${CARCH}"
-
-  # Initially install everything into /usr/lib/dbeaver
-  install -m 755 -d "${pkgdir}/usr/lib"
-  cp -r "dbeaver" "${pkgdir}/usr/lib/${pkgname}"
-
-  # Move shared data to /usr/share/dbeaver
-  cd "${pkgdir}/usr/lib/${pkgname}"
-  install -m 755 -d "${pkgdir}/usr/share/${pkgname}"
-  for _file in configuration features p2 .eclipseproduct artifacts.xml 
dbeaver.ini readme.txt
-  do
-mv "${_file}" "${pkgdir}/usr/share/${pkgname}"
-ln -s "/usr/share/${pkgname}/${_file}" .
-  done
-
-  # Install additional licenses
-  install -m 755 -d "${pkgdir}/usr/share/licenses"
-  mv licenses "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Install icons
-  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
-  mv dbeaver.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  mv icon.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
-
-  # Install executable script into /usr/bin
-  install -m 755 -d "${pkgdir}/usr/bin"
-  install -m 755 "${srcdir}/dbeaver.sh" "${pkgdir}/usr/bin/${pkgname}"
-
-  # Install application launcher into /usr/share/applications
-  install -m 755 -d "${pkgdir}/usr/share/applications"
-  install -m 755 -t "${pkgdir}/usr/share/applications" 
"${srcdir}/${pkgname}.desktop"
-
-  # Clean up and install new profile
-  rm -rf 

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

2020-07-12 Thread Fabio Castelli via arch-commits
Date: Sunday, July 12, 2020 @ 21:09:50
  Author: muflone
Revision: 663367

upgpkg: dbeaver 7.1.2-1

Modified:
  dbeaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 21:00:37 UTC (rev 663366)
+++ PKGBUILD2020-07-12 21:09:50 UTC (rev 663367)
@@ -2,7 +2,7 @@
 # Contributor: Arne Hoch 
 
 pkgname=dbeaver
-pkgver=7.1.1
+pkgver=7.1.2
 pkgrel=1
 pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 "${pkgname}.profile.gz"
 "${pkgname}.hook"
 "${pkgname}.install")
-sha256sums=('f80582a8c72ff7a5baef7b00663dc5ca1fe86a67c95ca81eb12ebf4493023224'
+sha256sums=('5f1deb980c621df032dff683f369f1fe10992610eda13abe179fbbd419121436'
 '27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
 '3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
 '1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'


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

2020-07-12 Thread Antonio Rojas via arch-commits
Date: Sunday, July 12, 2020 @ 21:00:23
  Author: arojas
Revision: 663365

Update to 2.2.0

Modified:
  skanlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 20:59:06 UTC (rev 663364)
+++ PKGBUILD2020-07-12 21:00:23 UTC (rev 663365)
@@ -4,8 +4,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=skanlite
-pkgver=2.1.0.1
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc="Image Scanning Application for KDE"
 arch=(x86_64)
 url='https://www.kde.org/applications/graphics/skanlite'
@@ -12,21 +12,15 @@
 license=(GPL)
 depends=(libksane kio)
 makedepends=(extra-cmake-modules kdoctools)
-source=("https://download.kde.org/stable/$pkgname/${pkgver%.*.*}/$pkgname-$pkgver.tar.xz;)
 # {,.sig} - No public key available
-sha256sums=('b4733e55b706eaf749522aa81ec47bfd65a95c2fec994c1c47e0c4b628e70442')
+source=("https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('54fecc3997547bae17215af7af468a225d483ddb37be3053673392dcddd584e4')
 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
 -DBUILD_TESTING=OFF
-  make
+  cmake --build build
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 }


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

2020-07-12 Thread Antonio Rojas via arch-commits
Date: Sunday, July 12, 2020 @ 21:00:37
  Author: arojas
Revision: 663366

archrelease: copy trunk to community-x86_64

Added:
  skanlite/repos/community-x86_64/PKGBUILD
(from rev 663365, skanlite/trunk/PKGBUILD)
Deleted:
  skanlite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 21:00:23 UTC (rev 663365)
+++ PKGBUILD2020-07-12 21:00:37 UTC (rev 663366)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: birdflesh 
-# Contributor: Pierre Schmitz 
-
-pkgname=skanlite
-pkgver=2.1.0.1
-pkgrel=2
-pkgdesc="Image Scanning Application for KDE"
-arch=(x86_64)
-url='https://www.kde.org/applications/graphics/skanlite'
-license=(GPL)
-depends=(libksane kio)
-makedepends=(extra-cmake-modules kdoctools)
-source=("https://download.kde.org/stable/$pkgname/${pkgver%.*.*}/$pkgname-$pkgver.tar.xz;)
 # {,.sig} - No public key available
-sha256sums=('b4733e55b706eaf749522aa81ec47bfd65a95c2fec994c1c47e0c4b628e70442')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: skanlite/repos/community-x86_64/PKGBUILD (from rev 663365, 
skanlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 21:00:37 UTC (rev 663366)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: birdflesh 
+# Contributor: Pierre Schmitz 
+
+pkgname=skanlite
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Image Scanning Application for KDE"
+arch=(x86_64)
+url='https://www.kde.org/applications/graphics/skanlite'
+license=(GPL)
+depends=(libksane kio)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('54fecc3997547bae17215af7af468a225d483ddb37be3053673392dcddd584e4')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:59:06
  Author: foxboron
Revision: 663364

archrelease: copy trunk to community-x86_64

Added:
  crun/repos/community-x86_64/PKGBUILD
(from rev 663363, crun/trunk/PKGBUILD)
Deleted:
  crun/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 20:58:59 UTC (rev 663363)
+++ PKGBUILD2020-07-12 20:59:06 UTC (rev 663364)
@@ -1,30 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: hexchian 
-
-pkgname=crun
-pkgver=0.14
-pkgrel=1
-pkgdesc="A fast and lightweight fully featured OCI runtime and C library for 
running containers"
-url="https://github.com/containers/crun;
-license=('LGPL')
-arch=('x86_64')
-depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp')
-makedepends=('libtool' 'python' 'go-md2man' 'systemd')
-source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
-validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
-sha256sums=('cf3d005dfd0579f3d3b7a493444e9a2a901e0cfceafd11ff3dadbc1af4b6b3fd'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-./autogen.sh
-./configure \
---prefix=/usr \
---enable-dynamic
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: crun/repos/community-x86_64/PKGBUILD (from rev 663363, 
crun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 20:59:06 UTC (rev 663364)
@@ -0,0 +1,30 @@
+# Maintainer: Morten Linderud 
+# Contributor: hexchian 
+
+pkgname=crun
+pkgver=0.14.1
+pkgrel=1
+pkgdesc="A fast and lightweight fully featured OCI runtime and C library for 
running containers"
+url="https://github.com/containers/crun;
+license=('LGPL')
+arch=('x86_64')
+depends=('yajl' 'systemd-libs' 'libcap' 'libseccomp')
+makedepends=('libtool' 'python' 'go-md2man' 'systemd')
+source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha256sums=('8269b183fad6b20611d235be381f937790d003399567def6a222fbc46e8b5787'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+./autogen.sh
+./configure \
+--prefix=/usr \
+--enable-dynamic
+make
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:58:59
  Author: foxboron
Revision: 663363

upgpkg: crun 0.14.1-1

Modified:
  crun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 20:55:45 UTC (rev 663362)
+++ PKGBUILD2020-07-12 20:58:59 UTC (rev 663363)
@@ -2,7 +2,7 @@
 # Contributor: hexchian 
 
 pkgname=crun
-pkgver=0.14
+pkgver=0.14.1
 pkgrel=1
 pkgdesc="A fast and lightweight fully featured OCI runtime and C library for 
running containers"
 url="https://github.com/containers/crun;
@@ -12,7 +12,7 @@
 makedepends=('libtool' 'python' 'go-md2man' 'systemd')
 
source=("https://github.com/containers/crun/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
 validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
-sha256sums=('cf3d005dfd0579f3d3b7a493444e9a2a901e0cfceafd11ff3dadbc1af4b6b3fd'
+sha256sums=('8269b183fad6b20611d235be381f937790d003399567def6a222fbc46e8b5787'
 'SKIP')
 
 build() {


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:55:38
  Author: foxboron
Revision: 663361

upgpkg: podman 2.0.2-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 20:46:19 UTC (rev 663360)
+++ PKGBUILD2020-07-12 20:55:38 UTC (rev 663361)
@@ -3,7 +3,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
@@ -23,8 +23,10 @@
 
 build() {
   export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
   export GOFLAGS="-buildmode=pie -trimpath"
 
   cd libpod


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:55:45
  Author: foxboron
Revision: 663362

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 20:55:38 UTC (rev 663361)
+++ PKGBUILD2020-07-12 20:55:45 UTC (rev 663362)
@@ -1,51 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=2.0.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 runc
- slirp4netns libsystemd fuse-overlayfs skopeo)
-makedepends=(go go-md2man git btrfs-progs)
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make
-}
-
-package_podman() {
-  optdepends+=('podman-docker: for Docker-compatible CLI'
-  'btrfs-progs: support btrfs backend devices'
-  'catatonit: --init flag support'
-  'crun: support for unified cgroupsv2')
-
-  cd libpod
-  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 663361, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 20:55:45 UTC (rev 663362)
@@ -0,0 +1,53 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=2.0.2
+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 runc
+ slirp4netns libsystemd fuse-overlayfs skopeo)
+makedepends=(go go-md2man git btrfs-progs)
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libpod
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  export BUILDTAGS='seccomp varlink systemd'
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd libpod
+  make
+}
+
+package_podman() {
+  optdepends+=('podman-docker: for Docker-compatible CLI'
+  'btrfs-progs: support btrfs backend devices'
+  'catatonit: --init flag support'
+  'crun: support for unified cgroupsv2')
+
+  cd libpod
+  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:46:12
  Author: foxboron
Revision: 663359

upgpkg: slirp4netns 1.1.3-1

Modified:
  slirp4netns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 20:44:22 UTC (rev 663358)
+++ PKGBUILD2020-07-12 20:46:12 UTC (rev 663359)
@@ -3,7 +3,7 @@
 
 pkgname=slirp4netns
 pkgdesc='User-mode networking for unprivileged network namespaces'
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 arch=(x86_64)
 url="https://github.com/rootless-containers/slirp4netns;
@@ -11,7 +11,7 @@
 depends=(glibc glib2 libcap libseccomp libslirp)
 makedepends=(git)
 # TODO: Check if they are going to continue signing the commits
-_commit=0806e04b1f786070cc1695d7f9b6abd43862bb5a # tags/v1.1.2
+_commit=b6a004dfc2170c1ea16ed7934c3326100f0e32f9 # tags/v1.1.3
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:46:19
  Author: foxboron
Revision: 663360

archrelease: copy trunk to community-x86_64

Added:
  slirp4netns/repos/community-x86_64/PKGBUILD
(from rev 663359, slirp4netns/trunk/PKGBUILD)
Deleted:
  slirp4netns/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 20:46:12 UTC (rev 663359)
+++ PKGBUILD2020-07-12 20:46:19 UTC (rev 663360)
@@ -1,37 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=slirp4netns
-pkgdesc='User-mode networking for unprivileged network namespaces'
-pkgver=1.1.2
-pkgrel=1
-arch=(x86_64)
-url="https://github.com/rootless-containers/slirp4netns;
-license=(GPL2)
-depends=(glibc glib2 libcap libseccomp libslirp)
-makedepends=(git)
-# TODO: Check if they are going to continue signing the commits
-_commit=0806e04b1f786070cc1695d7f9b6abd43862bb5a # tags/v1.1.2
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: slirp4netns/repos/community-x86_64/PKGBUILD (from rev 663359, 
slirp4netns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 20:46:19 UTC (rev 663360)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=slirp4netns
+pkgdesc='User-mode networking for unprivileged network namespaces'
+pkgver=1.1.3
+pkgrel=1
+arch=(x86_64)
+url="https://github.com/rootless-containers/slirp4netns;
+license=(GPL2)
+depends=(glibc glib2 libcap libseccomp libslirp)
+makedepends=(git)
+# TODO: Check if they are going to continue signing the commits
+_commit=b6a004dfc2170c1ea16ed7934c3326100f0e32f9 # tags/v1.1.3
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:44:22
  Author: foxboron
Revision: 663358

archrelease: copy trunk to community-x86_64

Added:
  libslirp/repos/community-x86_64/PKGBUILD
(from rev 663357, libslirp/trunk/PKGBUILD)
Deleted:
  libslirp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 20:44:15 UTC (rev 663357)
+++ PKGBUILD2020-07-12 20:44:22 UTC (rev 663358)
@@ -1,30 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=libslirp
-pkgver=4.3.0
-pkgrel=1
-pkgdesc='General purpose TCP-IP emulator'
-arch=(x86_64)
-url='https://gitlab.freedesktop.org/slirp/libslirp'
-license=(BSD MIT)
-depends=(glib2)
-makedepends=(git meson)
-_commit=3b478b0028d210518b5cc16ec9f208192ad31caa # tags/v4.3.0
-source=("git+$url#commit=$_commit")
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -Dm644 $pkgname/COPYRIGHT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libslirp/repos/community-x86_64/PKGBUILD (from rev 663357, 
libslirp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 20:44:22 UTC (rev 663358)
@@ -0,0 +1,30 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=libslirp
+pkgver=4.3.1
+pkgrel=1
+pkgdesc='General purpose TCP-IP emulator'
+arch=(x86_64)
+url='https://gitlab.freedesktop.org/slirp/libslirp'
+license=(BSD MIT)
+depends=(glib2)
+makedepends=(git meson)
+_commit=a62d36734ffe9828d0f70df1b3898a3b4fbda755 # tags/v4.3.1
+source=("git+$url#commit=$_commit")
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dm644 $pkgname/COPYRIGHT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:44:15
  Author: foxboron
Revision: 663357

upgpkg: libslirp 4.3.1-1

Modified:
  libslirp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 20:41:51 UTC (rev 663356)
+++ PKGBUILD2020-07-12 20:44:15 UTC (rev 663357)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=libslirp
-pkgver=4.3.0
+pkgver=4.3.1
 pkgrel=1
 pkgdesc='General purpose TCP-IP emulator'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(BSD MIT)
 depends=(glib2)
 makedepends=(git meson)
-_commit=3b478b0028d210518b5cc16ec9f208192ad31caa # tags/v4.3.0
+_commit=a62d36734ffe9828d0f70df1b3898a3b4fbda755 # tags/v4.3.1
 source=("git+$url#commit=$_commit")
 md5sums=('SKIP')
 


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:41:51
  Author: foxboron
Revision: 663356

archrelease: copy trunk to community-any

Added:
  python2-typing/repos/community-any/PKGBUILD
(from rev 663355, python2-typing/trunk/PKGBUILD)
Deleted:
  python2-typing/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 20:41:44 UTC (rev 663355)
+++ PKGBUILD2020-07-12 20:41:51 UTC (rev 663356)
@@ -1,25 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Morten Linderud 
-
-pkgname=python2-typing
-pkgver=3.7.4.1
-pkgrel=1
-pkgdesc="Backport of the standard library typing module to Python versions 
older than 3.6"
-url="https://pypi.python.org/pypi/typing;
-arch=('any')
-license=('PSF')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=("python2-typing-$pkgver.tar.gz::https://pypi.io/packages/source/t/typing/typing-$pkgver.tar.gz;)
-sha256sums=('91dfe6f3f706ee8cc32d38edbbf304e9b7583fb37108fef38229617f8b3eba23')
-
-build() {
-   cd typing-$pkgver
-   python2 setup.py build
-}
-
-package() {
-   cd typing-$pkgver
-   python2 setup.py install --root "$pkgdir" --optimize=1 --skip-build
-   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-typing/repos/community-any/PKGBUILD (from rev 663355, 
python2-typing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 20:41:51 UTC (rev 663356)
@@ -0,0 +1,25 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Morten Linderud 
+
+pkgname=python2-typing
+pkgver=3.7.4.2
+pkgrel=1
+pkgdesc="Backport of the standard library typing module to Python versions 
older than 3.6"
+url="https://pypi.python.org/pypi/typing;
+arch=('any')
+license=('PSF')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=("python2-typing-$pkgver.tar.gz::https://pypi.io/packages/source/t/typing/typing-$pkgver.tar.gz;)
+sha256sums=('6f6f3553709d2234e412092e5daa93a42ea1854505442280b39f9311707f')
+
+build() {
+   cd typing-$pkgver
+   python2 setup.py build
+}
+
+package() {
+   cd typing-$pkgver
+   python2 setup.py install --root "$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-07-12 Thread Morten Linderud via arch-commits
Date: Sunday, July 12, 2020 @ 20:41:44
  Author: foxboron
Revision: 663355

upgpkg: python2-typing 3.7.4.2-1

Modified:
  python2-typing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 19:45:57 UTC (rev 663354)
+++ PKGBUILD2020-07-12 20:41:44 UTC (rev 663355)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=python2-typing
-pkgver=3.7.4.1
+pkgver=3.7.4.2
 pkgrel=1
 pkgdesc="Backport of the standard library typing module to Python versions 
older than 3.6"
 url="https://pypi.python.org/pypi/typing;
@@ -11,7 +11,7 @@
 depends=('python2')
 makedepends=('python2-setuptools')
 
source=("python2-typing-$pkgver.tar.gz::https://pypi.io/packages/source/t/typing/typing-$pkgver.tar.gz;)
-sha256sums=('91dfe6f3f706ee8cc32d38edbbf304e9b7583fb37108fef38229617f8b3eba23')
+sha256sums=('6f6f3553709d2234e412092e5daa93a42ea1854505442280b39f9311707f')
 
 build() {
cd typing-$pkgver


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 19:45:57
  Author: diabonas
Revision: 663354

archrelease: copy trunk to community-x86_64

Added:
  cmark-gfm/repos/community-x86_64/PKGBUILD
(from rev 663353, cmark-gfm/trunk/PKGBUILD)
Deleted:
  cmark-gfm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 19:45:51 UTC (rev 663353)
+++ PKGBUILD2020-07-12 19:45:57 UTC (rev 663354)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Veeti Paananen 
-
-pkgname=cmark-gfm
-pkgver=0.29.0.gfm.0
-pkgrel=1
-pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
-arch=('x86_64')
-url="https://github.com/github/cmark;
-license=('custom:BSD2')
-depends=('glibc')
-makedepends=('cmake' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz;)
-sha512sums=('54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-gfm-$pkgver
-  make
-}
-
-check() {
-  cd build
-  make test
-}
-
-package() {
-  cd build
-  make install DESTDIR="$pkgdir"
-
-  install -D -m 644 "$srcdir"/cmark-gfm-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: cmark-gfm/repos/community-x86_64/PKGBUILD (from rev 663353, 
cmark-gfm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 19:45:57 UTC (rev 663354)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Veeti Paananen 
+
+pkgname=cmark-gfm
+pkgver=0.29.0.gfm.0
+pkgrel=2
+pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
+arch=('x86_64')
+url="https://github.com/github/cmark;
+license=('custom:BSD2')
+depends=('glibc')
+makedepends=('cmake' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz;
+
"$pkgname-$pkgver-fix-tests-python-3.8.patch::https://github.com/github/cmark-gfm/commit/7f64038eebb0dcdeba4d3db8e2419586a1c0f9a5.patch;)
+sha512sums=('54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e'
+
'604e0d1fb3b5b684f5c8b1176d48e5adcd406ccddd1f569c51162b71086009736a60cc5769a787b09f8069ce1041ba549c8833d9ae52265817a44278f71990f5')
+
+prepare() {
+  mkdir -p build
+
+  cd cmark-gfm-$pkgver
+  # Fix test suite for Python 3.8 
(https://github.com/github/cmark-gfm/pull/184)
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver-fix-tests-python-3.8.patch"
+}
+
+build() {
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-gfm-$pkgver
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package() {
+  cd build
+  make install DESTDIR="$pkgdir"
+
+  install -D -m 644 "$srcdir"/cmark-gfm-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 19:45:51
  Author: diabonas
Revision: 663353

upgpkg: cmark-gfm 0.29.0.gfm.0-2: fix test failure, reproducibility rebuild

Modified:
  cmark-gfm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 18:48:07 UTC (rev 663352)
+++ PKGBUILD2020-07-12 19:45:51 UTC (rev 663353)
@@ -3,7 +3,7 @@
 
 pkgname=cmark-gfm
 pkgver=0.29.0.gfm.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
 arch=('x86_64')
 url="https://github.com/github/cmark;
@@ -10,11 +10,17 @@
 license=('custom:BSD2')
 depends=('glibc')
 makedepends=('cmake' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz;)
-sha512sums=('54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz;
+
"$pkgname-$pkgver-fix-tests-python-3.8.patch::https://github.com/github/cmark-gfm/commit/7f64038eebb0dcdeba4d3db8e2419586a1c0f9a5.patch;)
+sha512sums=('54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e'
+
'604e0d1fb3b5b684f5c8b1176d48e5adcd406ccddd1f569c51162b71086009736a60cc5769a787b09f8069ce1041ba549c8833d9ae52265817a44278f71990f5')
 
 prepare() {
   mkdir -p build
+
+  cd cmark-gfm-$pkgver
+  # Fix test suite for Python 3.8 
(https://github.com/github/cmark-gfm/pull/184)
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver-fix-tests-python-3.8.patch"
 }
 
 build() {


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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:48:07
  Author: archange
Revision: 663352

archrelease: copy trunk to community-x86_64

Added:
  riot/repos/community-x86_64/PKGBUILD
(from rev 663351, riot/trunk/PKGBUILD)
  riot/repos/community-x86_64/riot-desktop.sh
(from rev 663351, riot/trunk/riot-desktop.sh)
  riot/repos/community-x86_64/riot.desktop
(from rev 663351, riot/trunk/riot.desktop)
Deleted:
  riot/repos/community-x86_64/PKGBUILD
  riot/repos/community-x86_64/riot-desktop.sh
  riot/repos/community-x86_64/riot.desktop

-+
 PKGBUILD|  182 +++---
 riot-desktop.sh |6 -
 riot.desktop|   20 ++---
 3 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 18:37:32 UTC (rev 663351)
+++ PKGBUILD2020-07-12 18:48:07 UTC (rev 663352)
@@ -1,91 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Steef Hegeman 
-# Contributor: Luca Weiss 
-# Contributor: Julian Schacher 
-
-pkgbase=riot
-pkgname=(riot-web riot-desktop)
-pkgver=1.6.4
-pkgrel=1
-pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
-arch=(x86_64)
-url="https://riot.im;
-license=(Apache)
-makedepends=(npm git yarn python rust sqlcipher electron)
-_url="https://github.com/vector-im/riot;
-source=(${pkgbase}-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
-
${pkgbase}-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-
${pkgbase}-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
-
${pkgbase}-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-${pkgbase}.desktop
-${pkgbase}-desktop.sh)
-sha256sums=('776aa087a442d3a3fd2ab119bfecbf68e4109a9b918543780eea71efc045adb4'
-'SKIP'
-'c066fdd317983a79154b754a18063eff3fe793cc18e150ac8dc580c53292944f'
-'SKIP'
-'ba8157d7b951400d1c590c2a75ec879a4f3770dac6baf38d6010c24e69f0c3fc'
-'dc14c79694bac4f523493c26a73c8000f9a2374f36dd21c1945bfb93d19277cd')
-validpgpkeys=(A878CDF66CF4A9B4807CEBE574692659BDA3D940) # Riot Releases 

-
-prepare() {
-  cd ${pkgbase}-web-${pkgver}
-  # Switch target to output to directory rather than .deb package
-  sed -i 's/"target": "deb"/"target": "dir"/g' package.json
-  yarn install
-
-  cd ../${pkgbase}-desktop-${pkgver}
-  sed -i 's@"https://packages.riot.im/desktop/update/"@null@g' 
riot.im/release/config.json
-  yarn install
-}
-
-build() {
-  cd ${pkgbase}-web-${pkgver}
-  yarn build
-
-  cd ../${pkgbase}-desktop-${pkgver}
-  yarn run build:native
-  yarn run build
-}
-
-package_riot-web() {
-  pkgdesc="Glossy Matrix collaboration client for the web."
-  provides=(vector-web)
-  replaces=(vector-web)
-
-  cd ${pkgbase}-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/${pkgbase}
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/${pkgbase}/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/${pkgbase}/
-  ln -s /etc/webapps/${pkgbase}/config.json 
"${pkgdir}"/usr/share/webapps/${pkgbase}/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/${pkgbase}/version
-}
-
-package_riot-desktop() {
-  pkgdesc="Glossy Matrix collaboration client for the desktop."
-  depends=("riot-web=${pkgver}" electron sqlcipher)
-  backup=('etc/riot/config.json')
-
-  cd ${pkgbase}-desktop-${pkgver}
-
-  install -d "${pkgdir}"{/usr/lib/${pkgbase}/,/etc/webapps/${pkgbase}}
-
-  # Install the app content, replace the webapp with a symlink to the system 
package
-  cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/${pkgbase}/
-  ln -s /usr/share/webapps/${pkgbase} "${pkgdir}"/usr/lib/${pkgbase}/webapp
-
-  # Config file
-  ln -s /etc/${pkgbase}/config.json 
"${pkgdir}"/etc/webapps/${pkgbase}/config.json
-  install -Dm644 riot.im/release/config.json -t "${pkgdir}"/etc/${pkgbase}
-
-  # Required extras
-  install -Dm644 ../${pkgbase}.desktop 
"${pkgdir}"/usr/share/applications/${pkgbase}.desktop
-  install -Dm755 ../${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  # Icons
-  install -Dm644 
../${pkgbase}-web-${pkgver}/res/themes/riot/img/logos/riot-im-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgbase}.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/${pkgbase}.png
-  done
-}

Copied: riot/repos/community-x86_64/PKGBUILD (from rev 663351, 
riot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 18:48:07 UTC (rev 663352)
@@ -0,0 +1,91 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Steef Hegeman 
+# Contributor: Luca Weiss 
+# Contributor: Julian Schacher 
+
+pkgbase=riot
+pkgname=(riot-web riot-desktop)
+pkgver=1.6.8

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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:37:32
  Author: archange
Revision: 663351

archrelease: copy trunk to community-x86_64

Added:
  cozy-stack/repos/community-x86_64/PKGBUILD
(from rev 663350, cozy-stack/trunk/PKGBUILD)
  cozy-stack/repos/community-x86_64/cozy-stack.service
(from rev 663350, cozy-stack/trunk/cozy-stack.service)
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
(from rev 663350, cozy-stack/trunk/cozy-stack.sysusers)
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
(from rev 663350, cozy-stack/trunk/cozy-stack.tmpfiles)
  cozy-stack/repos/community-x86_64/cozy.yml
(from rev 663350, cozy-stack/trunk/cozy.yml)
Deleted:
  cozy-stack/repos/community-x86_64/PKGBUILD
  cozy-stack/repos/community-x86_64/cozy-stack.service
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
  cozy-stack/repos/community-x86_64/cozy.yml

-+
 PKGBUILD|  116 +-
 cozy-stack.service  |   74 +++
 cozy-stack.sysusers |2 
 cozy-stack.tmpfiles |4 -
 cozy.yml|   66 ++--
 5 files changed, 131 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 18:37:00 UTC (rev 663350)
+++ PKGBUILD2020-07-12 18:37:32 UTC (rev 663351)
@@ -1,58 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=cozy-stack
-pkgver=1.4.12
-pkgrel=2
-epoch=1
-pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
-arch=(x86_64)
-url="https://cozy.io;
-license=(AGPL3)
-backup=(etc/cozy/cozy.yml)
-depends=(couchdb imagemagick git)
-makedepends=(go)
-#optdepends=('cozy-coclyco: X.509 certificates management for instances'
-optdepends=('nodejs: required for konnectors'
-'nsjail: run konnectors isolated'
-'smtp-forwarder: to allow sending mail to users')
-source=(https://github.com/cozy/cozy-stack/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-cozy.yml
-${pkgname}.service
-${pkgname}.sysusers
-${pkgname}.tmpfiles)
-sha256sums=('1f8fd718c2ba87c97cde00a361398a19008c789a8d8a8edf046b464a4db67a94'
-'a6ae871ec726f81d091918dffae4025b993656551185662242dcc2f7de4516c3'
-'d367c57b93ac97317e058626693fda431ae871fd19f6a04d767de9b7114426fb'
-'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'
-'04043ed0b2bf1c811417eec3b89a049f5353ad16f032497ff5c9a610eafa879d')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-go mod vendor
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-go build -v \
- -ldflags "-X 
github.com/cozy/cozy-stack/pkg/config.Version=${pkgver} \
-   -X 
github.com/cozy/cozy-stack/pkg/config.BuildTime=$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%dT%H:%M:%SZ") \
-   -X 
github.com/cozy/cozy-stack/pkg/config.BuildMode=production" \
- -o ${pkgname}
-}
-
-package() {
-install -Dm644 cozy.yml -t "${pkgdir}"/etc/cozy/
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-cd ${pkgname}-${pkgver}
-install -Dm755 ${pkgname} -t "${pkgdir}"/usr/bin/
-install -Dm644 cozy.example.yaml -t "${pkgdir}"/usr/share/cozy/
-install -Dm755 scripts/konnector-node-run.sh -t "${pkgdir}"/usr/share/cozy/
-install -Dm755 scripts/konnector-nsjail-node12-run.sh 
"${pkgdir}"/usr/share/cozy/konnector-nsjail-run.sh
-}

Copied: cozy-stack/repos/community-x86_64/PKGBUILD (from rev 663350, 
cozy-stack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 18:37:32 UTC (rev 663351)
@@ -0,0 +1,58 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=cozy-stack
+pkgver=1.4.14
+pkgrel=1
+epoch=1
+pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
+arch=(x86_64)
+url="https://cozy.io;
+license=(AGPL3)
+backup=(etc/cozy/cozy.yml)
+depends=(couchdb imagemagick git)
+makedepends=(go)
+#optdepends=('cozy-coclyco: X.509 certificates management for instances'
+optdepends=('nodejs: required for konnectors'
+'nsjail: run konnectors isolated'
+'smtp-forwarder: to allow sending mail to users')
+source=(https://github.com/cozy/cozy-stack/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+cozy.yml
+${pkgname}.service
+

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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:37:00
  Author: archange
Revision: 663350

upgpkg: cozy-stack 1:1.4.14-1

Modified:
  cozy-stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 18:36:40 UTC (rev 663349)
+++ PKGBUILD2020-07-12 18:37:00 UTC (rev 663350)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=cozy-stack
-pkgver=1.4.12
-pkgrel=2
+pkgver=1.4.14
+pkgrel=1
 epoch=1
 pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
 arch=(x86_64)
@@ -20,7 +20,7 @@
 ${pkgname}.service
 ${pkgname}.sysusers
 ${pkgname}.tmpfiles)
-sha256sums=('1f8fd718c2ba87c97cde00a361398a19008c789a8d8a8edf046b464a4db67a94'
+sha256sums=('1e3f48e8c3762285c3549c3d44f087cba8e454681bc780131d78b62d396c0dc9'
 'a6ae871ec726f81d091918dffae4025b993656551185662242dcc2f7de4516c3'
 'd367c57b93ac97317e058626693fda431ae871fd19f6a04d767de9b7114426fb'
 'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'


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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:36:40
  Author: archange
Revision: 663349

upgpkg: riot 1.6.8-1

Modified:
  riot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 18:35:17 UTC (rev 663348)
+++ PKGBUILD2020-07-12 18:36:40 UTC (rev 663349)
@@ -5,7 +5,7 @@
 
 pkgbase=riot
 pkgname=(riot-web riot-desktop)
-pkgver=1.6.4
+pkgver=1.6.8
 pkgrel=1
 pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
 arch=(x86_64)
@@ -19,9 +19,9 @@
 
${pkgbase}-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
 ${pkgbase}.desktop
 ${pkgbase}-desktop.sh)
-sha256sums=('776aa087a442d3a3fd2ab119bfecbf68e4109a9b918543780eea71efc045adb4'
+sha256sums=('c0481954e1dc523f78b25552017f8adbb192c1f869f62f8a4cc655dab32ee721'
 'SKIP'
-'c066fdd317983a79154b754a18063eff3fe793cc18e150ac8dc580c53292944f'
+'fecf357e5326a4cf059b99c4478230d427686ae02072b8f8810ddfc623d69e85'
 'SKIP'
 'ba8157d7b951400d1c590c2a75ec879a4f3770dac6baf38d6010c24e69f0c3fc'
 'dc14c79694bac4f523493c26a73c8000f9a2374f36dd21c1945bfb93d19277cd')


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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:35:17
  Author: archange
Revision: 663348

archrelease: copy trunk to community-x86_64

Added:
  vigra/repos/community-x86_64/PKGBUILD
(from rev 663347, vigra/trunk/PKGBUILD)
  vigra/repos/community-x86_64/fix-incorrect-template-parameter-type.patch
(from rev 663347, vigra/trunk/fix-incorrect-template-parameter-type.patch)
  vigra/repos/community-x86_64/py3.7.diff
(from rev 663347, vigra/trunk/py3.7.diff)
Deleted:
  vigra/repos/community-x86_64/PKGBUILD
  vigra/repos/community-x86_64/fix-incorrect-template-parameter-type.patch
  vigra/repos/community-x86_64/py3.7.diff

-+
 PKGBUILD|  146 ++---
 fix-incorrect-template-parameter-type.patch |  278 +-
 py3.7.diff  |   38 +--
 3 files changed, 232 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 18:35:03 UTC (rev 663347)
+++ PKGBUILD2020-07-12 18:35:17 UTC (rev 663348)
@@ -1,72 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: AndyRTR 
-# Contributor: Lukas Jirkovsky 
-
-pkgbase=vigra
-pkgname=(vigra vigra-doc)
-pkgver=1.11.1
-pkgrel=24
-pkgdesc="Computer vision library"
-arch=(x86_64)
-url="https://ukoethe.github.io/vigra/;
-license=(custom:MIT)
-makedepends=(# runtime deps
- libpng libtiff openexr gcc-libs sh hdf5 fftw
- # additional makedeps
- cmake boost python-numpy)
-checkdepends=(python-nose)
-source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz;
-fix-incorrect-template-parameter-type.patch py3.7.diff)
-sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf'
-'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4'
-'8fcdcce50c377be44387cbd4a001dadf5e03b32483de55c05a359c887e95a05b')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  # https://github.com/ukoethe/vigra/issues/414
-  patch -Np1 -i ../fix-incorrect-template-parameter-type.patch
-  # python 3.7 compat
-  patch -Np1 -i ../py3.7.diff
-}
-
-build() {
-  cmake -B build -S ${pkgbase}-${pkgver} \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DPYTHON_EXECUTABLE=/usr/bin/python \
-  -DWITH_OPENEXR=true \
-  -DWITH_VIGRANUMPY=1 \
-  -DDOCINSTALL=share/doc \
-  -DCMAKE_C_FLAGS="-DH5_USE_110_API" \
-  -DCMAKE_CXX_FLAGS="-DH5_USE_110_API"
-  make -C build
-}
-
-check() {
-  make -C build -j1 -k check || warning "Tests failed" # 
https://github.com/ukoethe/vigra/issues/409
-}
-
-package_vigra() {
-  pkgdesc="Computer vision library"
-  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
-  optdepends=('python: for python bindings'
-  'boost-libs: for python bindings')
-
-  make -C build DESTDIR="${pkgdir}" install
-
-  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  
-  # Remove doc
-  rm -rf "${pkgdir}"/usr/share/doc
-}
-
-package_vigra-doc() {
-  pkgdesc="Computer vision library - documentation and examples"
-  #arch=('any') # Not supported for now, maybe later
-
-  make -C build DESTDIR="${pkgdir}" install
-
-  # Remove vigra package content
-  rm -rf "${pkgdir}"/usr/{bin,include,lib}
-
-  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: vigra/repos/community-x86_64/PKGBUILD (from rev 663347, 
vigra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 18:35:17 UTC (rev 663348)
@@ -0,0 +1,74 @@
+# Maintainer: Bruno Pagani 
+# Contributor: AndyRTR 
+# Contributor: Lukas Jirkovsky 
+
+pkgbase=vigra
+pkgname=(vigra vigra-doc)
+pkgver=1.11.1
+pkgrel=25
+pkgdesc="Computer vision library"
+arch=(x86_64)
+url="https://ukoethe.github.io/vigra/;
+license=(custom:MIT)
+makedepends=(# runtime deps
+ libpng libtiff openexr gcc-libs sh hdf5 fftw
+ # additional makedeps
+ cmake boost python-numpy)
+checkdepends=(python-nose)
+source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz;
+fix-incorrect-template-parameter-type.patch py3.7.diff)
+sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf'
+'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4'
+'8fcdcce50c377be44387cbd4a001dadf5e03b32483de55c05a359c887e95a05b')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  # https://github.com/ukoethe/vigra/issues/414
+  patch -Np1 -i ../fix-incorrect-template-parameter-type.patch
+  # python 3.7 compat
+  patch -Np1 -i ../py3.7.diff
+}
+
+build() {
+  cmake -B build -S ${pkgbase}-${pkgver} \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  

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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 18:35:03
  Author: archange
Revision: 663347

https://www.archlinux.org/todo/remove-doctrees-from-installed-files-for-reproducible-builds/

+ Linting

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 18:12:18 UTC (rev 663346)
+++ PKGBUILD2020-07-12 18:35:03 UTC (rev 663347)
@@ -5,7 +5,7 @@
 pkgbase=vigra
 pkgname=(vigra vigra-doc)
 pkgver=1.11.1
-pkgrel=24
+pkgrel=25
 pkgdesc="Computer vision library"
 arch=(x86_64)
 url="https://ukoethe.github.io/vigra/;
@@ -47,16 +47,16 @@
 
 package_vigra() {
   pkgdesc="Computer vision library"
-  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  depends=(libpng libtiff openexr gcc-libs sh hdf5 fftw)
   optdepends=('python: for python bindings'
   'boost-libs: for python bindings')
 
   make -C build DESTDIR="${pkgdir}" install
 
-  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
   
   # Remove doc
-  rm -rf "${pkgdir}"/usr/share/doc
+  rm -r "${pkgdir}"/usr/share/doc
 }
 
 package_vigra-doc() {
@@ -66,7 +66,9 @@
   make -C build DESTDIR="${pkgdir}" install
 
   # Remove vigra package content
-  rm -rf "${pkgdir}"/usr/{bin,include,lib}
+  rm -r "${pkgdir}"/usr/{bin,include,lib}
+  # Remove doctrees https://github.com/ukoethe/vigra/pull/477
+  rm -r "${pkgdir}"/usr/share/doc/vigranumpy/doctrees/
 
-  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 ${pkgbase}-${pkgver}/LICENSE.txt -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
 }


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

2020-07-12 Thread Eli Schwartz via arch-commits
Date: Sunday, July 12, 2020 @ 18:12:18
  Author: eschwartz
Revision: 663346

archrelease: copy trunk to community-any

Added:
  fanficfare/repos/community-any/PKGBUILD
(from rev 663345, fanficfare/trunk/PKGBUILD)
  fanficfare/repos/community-any/changelog.txt
(from rev 663345, fanficfare/trunk/changelog.txt)
Deleted:
  fanficfare/repos/community-any/PKGBUILD
  fanficfare/repos/community-any/changelog.txt

---+
 PKGBUILD  |   56 ++--
 changelog.txt |   86 ++--
 2 files changed, 69 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 18:12:00 UTC (rev 663345)
+++ PKGBUILD2020-07-12 18:12:18 UTC (rev 663346)
@@ -1,27 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=FanFicFare
-pkgname=fanficfare
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="A tool for downloading fanfiction to eBook formats"
-arch=('any')
-url="https://github.com/JimmXinu/${_pkgname};
-license=('Apache')
-changelog=changelog.txt
-depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
- 'python-html2text')
-optdepends=('python-pillow: support for converting/resizing story images and 
covers')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('02a30eb8c25f97bf4650b9182f948d6aa6bc5517abb4b20b4e29c14137d4995b')
-b2sums=('d7c0fe11a57ac0d9168011fff7d1a25ab1d054a7997402c8e596176f45744ce276cee051550a414e50bd29fcd08a62979b9eaa02739ee329e303d7ca37567673')
-
-build() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py build
-}
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: fanficfare/repos/community-any/PKGBUILD (from rev 663345, 
fanficfare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 18:12:18 UTC (rev 663346)
@@ -0,0 +1,29 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=FanFicFare
+pkgname=fanficfare
+pkgver=3.21.0
+pkgrel=1
+pkgdesc="A tool for downloading fanfiction to eBook formats"
+arch=('any')
+url="https://github.com/JimmXinu/${_pkgname};
+license=('Apache')
+changelog=changelog.txt
+depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
+ 'python-html2text')
+optdepends=('python-pillow: support for converting/resizing story images and 
covers')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('2285bf21aad741d695dc7314807fa72a764497089078b156a8b66b5e7662bf2d')
+b2sums=('52ba8be5e3de54778134b938a9d5d9dcef3e2793e55694c260a2dd0556f463405de7d8308853e97885e24d167a98e5550b46da8a2ce4b21d27478eab6a28279b')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py build
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}

Deleted: changelog.txt
===
--- changelog.txt   2020-07-12 18:12:00 UTC (rev 663345)
+++ changelog.txt   2020-07-12 18:12:18 UTC (rev 663346)
@@ -1,46 +0,0 @@
-Version 3.20.1 - 06 Jun 2020
-- Fix for collision issue with translations and email direct d/l.
-  (Bug fix release for problem described here.)
-
-Version 3.20.0 - 01 Jun 2020
-- Add more URLs to cover_exclusion_regexp for base_xenforoforum.
-- Fix for is_adult needing  URL in
-  adapter_harrypotterfanfictioncom.
-- Better auth page parsing due to own-favorite story in
-  adapter_harrypotterfanfictioncom.
-- Add characters and increased category collection for adapter_fanfiktionde.
-- Suppress output_css on CLI -z
-- Fix numWords parsing in adapter_fanficsme.
-- Update translations, add Russian.
-- Fix broken series parsing in adapter_adastrafanficcom & adapter_lotrgficcom.
-- New Site: www.silmarillionwritersguild.org, thanks Alistair!
-- Allow /post/ story URLs with adapter_gravitytalescom.
-- Change  to  in chapter text adapter_adultfanfictionorg
-- Now actually *use* translated strings in prefs.py.
-- Need to include prefs.py in messages.pot for translation.
-- Update Translations.
-- Catch exception in exception handling for French user.
-- Remove '.' from numWords in adapter_fanfiktionde
-- Fix for adapter_bloodshedversecom site changes.
-- Find both 'Translator' and 'TranslatorS', except in Russian.
-  adapter_fanficsme
-
-
-Version 3.19.0 - 01 May 2020
-- Comment out a debug, user_agent for wuxiaworld.com
-- Fix adapter_fictionmaniatv image page parsing, thanks smutandrea
-- Fix adapter_fanficsme for date tags change.
-- Fix a py2/py3 issue in Calibre Plugin CLI call, thanks eschwartz
-- Change inject_chapter_title back to h3.
-- Allow for author without link & id in XF2.
-- Change inject_chapter_title code in adapter_storiesonlinenet due to clean up
-  

[arch-commits] Commit in fanficfare/trunk (PKGBUILD changelog.txt)

2020-07-12 Thread Eli Schwartz via arch-commits
Date: Sunday, July 12, 2020 @ 18:12:00
  Author: eschwartz
Revision: 663345

upgpkg: fanficfare 3.21.0-1: upstream release

Modified:
  fanficfare/trunk/PKGBUILD
  fanficfare/trunk/changelog.txt

---+
 PKGBUILD  |8 +---
 changelog.txt |   34 ++
 2 files changed, 19 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 17:39:41 UTC (rev 663344)
+++ PKGBUILD2020-07-12 18:12:00 UTC (rev 663345)
@@ -2,7 +2,7 @@
 
 _pkgname=FanFicFare
 pkgname=fanficfare
-pkgver=3.20.1
+pkgver=3.21.0
 pkgrel=1
 pkgdesc="A tool for downloading fanfiction to eBook formats"
 arch=('any')
@@ -13,15 +13,17 @@
  'python-html2text')
 optdepends=('python-pillow: support for converting/resizing story images and 
covers')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('02a30eb8c25f97bf4650b9182f948d6aa6bc5517abb4b20b4e29c14137d4995b')
-b2sums=('d7c0fe11a57ac0d9168011fff7d1a25ab1d054a7997402c8e596176f45744ce276cee051550a414e50bd29fcd08a62979b9eaa02739ee329e303d7ca37567673')
+sha256sums=('2285bf21aad741d695dc7314807fa72a764497089078b156a8b66b5e7662bf2d')
+b2sums=('52ba8be5e3de54778134b938a9d5d9dcef3e2793e55694c260a2dd0556f463405de7d8308853e97885e24d167a98e5550b46da8a2ce4b21d27478eab6a28279b')
 
 build() {
 cd "${srcdir}/${_pkgname}-${pkgver}"
+
 python setup.py build
 }
 
 package() {
 cd "${srcdir}/${_pkgname}-${pkgver}"
+
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }

Modified: changelog.txt
===
--- changelog.txt   2020-07-12 17:39:41 UTC (rev 663344)
+++ changelog.txt   2020-07-12 18:12:00 UTC (rev 663345)
@@ -1,3 +1,17 @@
+Version 3.21.0 - 07 Jul 2020
+- New site: chireads.com -- Thanks, Kolbo!
+- Fix for recursion in add_genre_when_multi_category caching bad value.
+- Change INI edit highlight colors when dark theme.
+- Add cover_min_size setting.
+- Fix add_genre_when_multi_category so it can include_in_ without breaking and
+  move above doreplacements.
+- Add .SHOW_EMPTY feature for titlepage_entries.
+- Check for epub before polishing cover into it.
+- Change site efiction.esteliel.de to faerie-archive.com, also changed
+  siteabbrev eesd->fae
+- Allow for no genre stories in adapter_fanficauthorsnet.
+- Fix adapter_webnovelcom sitetags for site changes.
+
 Version 3.20.1 - 06 Jun 2020
 - Fix for collision issue with translations and email direct d/l.
   (Bug fix release for problem described here.)
@@ -24,23 +38,3 @@
 - Fix for adapter_bloodshedversecom site changes.
 - Find both 'Translator' and 'TranslatorS', except in Russian.
   adapter_fanficsme
-
-
-Version 3.19.0 - 01 May 2020
-- Comment out a debug, user_agent for wuxiaworld.com
-- Fix adapter_fictionmaniatv image page parsing, thanks smutandrea
-- Fix adapter_fanficsme for date tags change.
-- Fix a py2/py3 issue in Calibre Plugin CLI call, thanks eschwartz
-- Change inject_chapter_title back to h3.
-- Allow for author without link & id in XF2.
-- Change inject_chapter_title code in adapter_storiesonlinenet due to clean up
-  weirdness.
-- Change defaults.ini recommendations for inject_chapter_title and change
-  injected titles to h4--had problems with epub update.
-- Fix for py2/3 differences in final strip-non-ASCII decode fall back.
-- Remove some 'watermarking' tags from adapter_webnovelcom
-- De-obfuscate emails in XenForo posts.
-- Change default setting for new users for 'Update Calibre Cover (from EPUB):'
-  to 'Yes, if EPUB has a cover image'
-- Add scifistories.com to valid site list for universe_as_series setting.
-- New Site: scifistories.com (extends finestories.com).


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

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 17:39:28
  Author: archange
Revision: 663343

upgpkg: cozy-desktop 3.21.0-1

Modified:
  cozy-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 17:33:40 UTC (rev 663342)
+++ PKGBUILD2020-07-12 17:39:28 UTC (rev 663343)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=cozy-desktop
-pkgver=3.20.0
-pkgrel=2
+pkgver=3.21.0
+pkgrel=1
 pkgdesc="File synchronisation for Cozy Cloud on Desktop"
 arch=(any)
 url="https://cozy-labs.github.io/cozy-desktop/;
@@ -13,8 +13,8 @@
 
https://github.com/cozy-labs/${pkgname}/releases/download/v${pkgver}/Cozy-Drive-${pkgver}-x86_64.AppImage
 ${pkgname}.desktop
 ${pkgname}.sh)
-sha256sums=('55a2e57fff010757f119a8f5588e9dea568e81b851b42a36c8779e1615fff483'
-'d453ff7ff37606ba18a0ff26819fff6901be20f44fb1cd6710b71975262599c1'
+sha256sums=('718ae1550ed0bcc5dbdf266a984aa6c07ca937e48cdbc5b2845a4c3ea9dc705f'
+'30e35cd9f270ed1e6a829ffe8f3f3e0b7d3f4c288b506768934ae6a01a232c23'
 '563edd5a43c7f06080e03bec5f4e46154227f7e163500950ea39ecad466b198a'
 '16200451af0bd1099510da4eeb7bd440ac4db4eda82013f1b3bd58777e04004e')
 


[arch-commits] Commit in cozy-desktop/repos/community-any (6 files)

2020-07-12 Thread Bruno Pagani via arch-commits
Date: Sunday, July 12, 2020 @ 17:39:41
  Author: archange
Revision: 663344

archrelease: copy trunk to community-any

Added:
  cozy-desktop/repos/community-any/PKGBUILD
(from rev 663343, cozy-desktop/trunk/PKGBUILD)
  cozy-desktop/repos/community-any/cozy-desktop.desktop
(from rev 663343, cozy-desktop/trunk/cozy-desktop.desktop)
  cozy-desktop/repos/community-any/cozy-desktop.sh
(from rev 663343, cozy-desktop/trunk/cozy-desktop.sh)
Deleted:
  cozy-desktop/repos/community-any/PKGBUILD
  cozy-desktop/repos/community-any/cozy-desktop.desktop
  cozy-desktop/repos/community-any/cozy-desktop.sh

--+
 PKGBUILD |  102 -
 cozy-desktop.desktop |   18 
 cozy-desktop.sh  |6 +-
 3 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 17:39:28 UTC (rev 663343)
+++ PKGBUILD2020-07-12 17:39:41 UTC (rev 663344)
@@ -1,51 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=cozy-desktop
-pkgver=3.20.0
-pkgrel=2
-pkgdesc="File synchronisation for Cozy Cloud on Desktop"
-arch=(any)
-url="https://cozy-labs.github.io/cozy-desktop/;
-license=(AGPL3)
-depends=(electron5)
-makedepends=(nodejs-lts-erbium yarn git node-gyp python)
-source=(https://github.com/cozy-labs/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/cozy-labs/${pkgname}/releases/download/v${pkgver}/Cozy-Drive-${pkgver}-x86_64.AppImage
-${pkgname}.desktop
-${pkgname}.sh)
-sha256sums=('55a2e57fff010757f119a8f5588e9dea568e81b851b42a36c8779e1615fff483'
-'d453ff7ff37606ba18a0ff26819fff6901be20f44fb1cd6710b71975262599c1'
-'563edd5a43c7f06080e03bec5f4e46154227f7e163500950ea39ecad466b198a'
-'16200451af0bd1099510da4eeb7bd440ac4db4eda82013f1b3bd58777e04004e')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-yarn install
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-yarn build
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-yarn dist --dir
-
-install -d "${pkgdir}"/usr/lib/${pkgname}
-cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/${pkgname}/
-
-rm 
"${pkgdir}"/usr/lib/cozy-desktop/app.asar.unpacked/gui/scripts/macos-add-favorite.py
-rmdir "${pkgdir}"/usr/lib/cozy-desktop/app.asar.unpacked/gui/{scripts/,}
-rm -r "${pkgdir}"/usr/lib/cozy-desktop/inspector
-rm -r "${pkgdir}"/usr/lib/cozy-desktop/regedit
-
-cd "${srcdir}"
-chmod +x Cozy-Drive-${pkgver}-x86_64.AppImage
-./Cozy-Drive-${pkgver}-x86_64.AppImage --appimage-extract
-cp -r squashfs-root/usr/share "${pkgdir}"/usr/
-chmod a+rX -R "${pkgdir}"/usr/share
-
-install -Dm755 ${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-install -Dm644 ${pkgname}.desktop 
"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-}

Copied: cozy-desktop/repos/community-any/PKGBUILD (from rev 663343, 
cozy-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 17:39:41 UTC (rev 663344)
@@ -0,0 +1,51 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=cozy-desktop
+pkgver=3.21.0
+pkgrel=1
+pkgdesc="File synchronisation for Cozy Cloud on Desktop"
+arch=(any)
+url="https://cozy-labs.github.io/cozy-desktop/;
+license=(AGPL3)
+depends=(electron5)
+makedepends=(nodejs-lts-erbium yarn git node-gyp python)
+source=(https://github.com/cozy-labs/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/cozy-labs/${pkgname}/releases/download/v${pkgver}/Cozy-Drive-${pkgver}-x86_64.AppImage
+${pkgname}.desktop
+${pkgname}.sh)
+sha256sums=('718ae1550ed0bcc5dbdf266a984aa6c07ca937e48cdbc5b2845a4c3ea9dc705f'
+'30e35cd9f270ed1e6a829ffe8f3f3e0b7d3f4c288b506768934ae6a01a232c23'
+'563edd5a43c7f06080e03bec5f4e46154227f7e163500950ea39ecad466b198a'
+'16200451af0bd1099510da4eeb7bd440ac4db4eda82013f1b3bd58777e04004e')
+
+prepare() {
+cd ${pkgname}-${pkgver}
+yarn install
+}
+
+build() {
+cd ${pkgname}-${pkgver}
+yarn build
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+yarn dist --dir
+
+install -d "${pkgdir}"/usr/lib/${pkgname}
+cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/${pkgname}/
+
+rm 
"${pkgdir}"/usr/lib/cozy-desktop/app.asar.unpacked/gui/scripts/macos-add-favorite.py
+rmdir "${pkgdir}"/usr/lib/cozy-desktop/app.asar.unpacked/gui/{scripts/,}
+rm -r "${pkgdir}"/usr/lib/cozy-desktop/inspector
+rm -r "${pkgdir}"/usr/lib/cozy-desktop/regedit
+
+cd "${srcdir}"
+chmod +x Cozy-Drive-${pkgver}-x86_64.AppImage
+./Cozy-Drive-${pkgver}-x86_64.AppImage --appimage-extract
+cp -r squashfs-root/usr/share "${pkgdir}"/usr/
+chmod a+rX -R "${pkgdir}"/usr/share
+
+install -Dm755 ${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
+install -Dm644 

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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 17:33:40
  Author: jelle
Revision: 663342

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 17:33:32 UTC (rev 663341)
+++ PKGBUILD2020-07-12 17:33:40 UTC (rev 663342)
@@ -1,29 +0,0 @@
-# Contributor: Pierre Buard 
-# Contributor: Allan McRae 
-# Contributor: Sebastien Piccand 
-# Contributor: Daniel J Griffiths 
-# Maintainer: Jelle van der Waa 
-
-pkgname=python-pyenchant
-pkgver=3.1.1
-pkgrel=1
-arch=('any')
-url="https://pypi.python.org/pypi/pyenchant;
-license=('LGPL')
-pkgdesc='PyEnchant is a spellchecking library for Python3 based on the Enchant 
library'
-depends=('python' 'enchant' 'nuspell')
-makedepends=('python-setuptools' 'enchant')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rfk/pyenchant/archive/v${pkgver}.tar.gz;)
-sha512sums=('512758629347b711b8b46fd2d5a270ac16a56cb8df3474213052aba76c390051a21758ae7bbdfda21e7db67dc26fb0e9005abfb4865d70a2f4d49dc34158cbf7')
-
-build() {
-  cd pyenchant-${pkgver}
-
-  python3 setup.py build
-}
-
-package() {
-  cd pyenchant-${pkgver}
-  
-  python3 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: python-pyenchant/repos/community-any/PKGBUILD (from rev 663341, 
python-pyenchant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 17:33:40 UTC (rev 663342)
@@ -0,0 +1,29 @@
+# Contributor: Pierre Buard 
+# Contributor: Allan McRae 
+# Contributor: Sebastien Piccand 
+# Contributor: Daniel J Griffiths 
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-pyenchant
+pkgver=3.1.1
+pkgrel=2
+arch=('any')
+url="https://pypi.python.org/pypi/pyenchant;
+license=('LGPL')
+pkgdesc='PyEnchant is a spellchecking library for Python3 based on the Enchant 
library'
+depends=('python' 'enchant')
+makedepends=('python-setuptools' 'enchant')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rfk/pyenchant/archive/v${pkgver}.tar.gz;)
+sha512sums=('512758629347b711b8b46fd2d5a270ac16a56cb8df3474213052aba76c390051a21758ae7bbdfda21e7db67dc26fb0e9005abfb4865d70a2f4d49dc34158cbf7')
+
+build() {
+  cd pyenchant-${pkgver}
+
+  python3 setup.py build
+}
+
+package() {
+  cd pyenchant-${pkgver}
+  
+  python3 setup.py install --root=${pkgdir} --optimize=1
+}


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 17:33:32
  Author: jelle
Revision: 663341

Remove unrequired dependency on nuspell

As enchant has a silly optdepend on nuspell the default warning is an expected
warning.

Modified:
  python-pyenchant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 16:54:52 UTC (rev 663340)
+++ PKGBUILD2020-07-12 17:33:32 UTC (rev 663341)
@@ -6,12 +6,12 @@
 
 pkgname=python-pyenchant
 pkgver=3.1.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/pyenchant;
 license=('LGPL')
 pkgdesc='PyEnchant is a spellchecking library for Python3 based on the Enchant 
library'
-depends=('python' 'enchant' 'nuspell')
+depends=('python' 'enchant')
 makedepends=('python-setuptools' 'enchant')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rfk/pyenchant/archive/v${pkgver}.tar.gz;)
 
sha512sums=('512758629347b711b8b46fd2d5a270ac16a56cb8df3474213052aba76c390051a21758ae7bbdfda21e7db67dc26fb0e9005abfb4865d70a2f4d49dc34158cbf7')


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

2020-07-12 Thread Filipe Laíns via arch-commits
Date: Sunday, July 12, 2020 @ 16:54:38
  Author: ffy00
Revision: 663339

upgpkg: fusesoc 1.11.0-2 (add missing optdepends)

Modified:
  fusesoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 16:13:42 UTC (rev 663338)
+++ PKGBUILD2020-07-12 16:54:38 UTC (rev 663339)
@@ -2,7 +2,7 @@
 
 pkgname=fusesoc
 pkgver=1.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
 arch=('any')
 url='https://github.com/olofk/fusesoc'
@@ -9,6 +9,8 @@
 license=('BSD')
 depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
 makedepends=('python-setuptools-scm')
+optdepends=('iverilog: run simulation/testbenchs'
+'svn: opencores provider')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
sha512sums=('3b31f7e72eb54f3de1a4b5e2d959fb2affaf2e9189b1ab66629e153d95ee13304bf873b643726b9b0d2223e0c0b074691c1c0fd85dc1832f677b729a85ce4daf')
 


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

2020-07-12 Thread Filipe Laíns via arch-commits
Date: Sunday, July 12, 2020 @ 16:54:52
  Author: ffy00
Revision: 663340

archrelease: copy trunk to community-any

Added:
  fusesoc/repos/community-any/PKGBUILD
(from rev 663339, fusesoc/trunk/PKGBUILD)
Deleted:
  fusesoc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 16:54:38 UTC (rev 663339)
+++ PKGBUILD2020-07-12 16:54:52 UTC (rev 663340)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=fusesoc
-pkgver=1.11.0
-pkgrel=1
-pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
-arch=('any')
-url='https://github.com/olofk/fusesoc'
-license=('BSD')
-depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('3b31f7e72eb54f3de1a4b5e2d959fb2affaf2e9189b1ab66629e153d95ee13304bf873b643726b9b0d2223e0c0b074691c1c0fd85dc1832f677b729a85ce4daf')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fusesoc/repos/community-any/PKGBUILD (from rev 663339, 
fusesoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 16:54:52 UTC (rev 663340)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=fusesoc
+pkgver=1.11.0
+pkgrel=2
+pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
+arch=('any')
+url='https://github.com/olofk/fusesoc'
+license=('BSD')
+depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
+makedepends=('python-setuptools-scm')
+optdepends=('iverilog: run simulation/testbenchs'
+'svn: opencores provider')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('3b31f7e72eb54f3de1a4b5e2d959fb2affaf2e9189b1ab66629e153d95ee13304bf873b643726b9b0d2223e0c0b074691c1c0fd85dc1832f677b729a85ce4daf')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-12 Thread Filipe Laíns via arch-commits
Date: Sunday, July 12, 2020 @ 15:39:29
  Author: ffy00
Revision: 663336

archrelease: copy trunk to community-any

Added:
  fusesoc/repos/community-any/PKGBUILD
(from rev 663335, fusesoc/trunk/PKGBUILD)
Deleted:
  fusesoc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 15:33:09 UTC (rev 663335)
+++ PKGBUILD2020-07-12 15:39:29 UTC (rev 663336)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=fusesoc
-pkgver=1.10
-pkgrel=1
-pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
-arch=('any')
-url='https://github.com/olofk/fusesoc'
-license=('BSD')
-depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('4954265e41918e3a4a8f5efb64285ffd8d8535e92843e3ee925dbca71bb9a56844d2f9cbe8573a7caa4b17ac2ae24d6f0ecc83b5ec026829e45828b61561e305')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fusesoc/repos/community-any/PKGBUILD (from rev 663335, 
fusesoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 15:39:29 UTC (rev 663336)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=fusesoc
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
+arch=('any')
+url='https://github.com/olofk/fusesoc'
+license=('BSD')
+depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
+makedepends=('python-setuptools-scm')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('3b31f7e72eb54f3de1a4b5e2d959fb2affaf2e9189b1ab66629e153d95ee13304bf873b643726b9b0d2223e0c0b074691c1c0fd85dc1832f677b729a85ce4daf')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-12 Thread Filipe Laíns via arch-commits
Date: Sunday, July 12, 2020 @ 15:33:09
  Author: ffy00
Revision: 663335

upgpkg: fusesoc 1.11.0-1

Modified:
  fusesoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 14:20:36 UTC (rev 663334)
+++ PKGBUILD2020-07-12 15:33:09 UTC (rev 663335)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=fusesoc
-pkgver=1.10
+pkgver=1.11.0
 pkgrel=1
 pkgdesc='Package manager and build abstraction tool for FPGA/ASIC development'
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python' 'python-edalize' 'python-ipyxact' 'python-pyparsing' 
'python-yaml' 'python-simplesat' 'git')
 makedepends=('python-setuptools-scm')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('4954265e41918e3a4a8f5efb64285ffd8d8535e92843e3ee925dbca71bb9a56844d2f9cbe8573a7caa4b17ac2ae24d6f0ecc83b5ec026829e45828b61561e305')
+sha512sums=('3b31f7e72eb54f3de1a4b5e2d959fb2affaf2e9189b1ab66629e153d95ee13304bf873b643726b9b0d2223e0c0b074691c1c0fd85dc1832f677b729a85ce4daf')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2020-07-12 Thread Andreas Radke via arch-commits
Date: Sunday, July 12, 2020 @ 15:29:16
  Author: andyrtr
Revision: 391762

archrelease: copy trunk to extra-x86_64

Added:
  ipp-usb/repos/extra-x86_64/
  ipp-usb/repos/extra-x86_64/PKGBUILD
(from rev 391761, ipp-usb/trunk/PKGBUILD)

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

Copied: ipp-usb/repos/extra-x86_64/PKGBUILD (from rev 391761, 
ipp-usb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2020-07-12 15:29:16 UTC (rev 391762)
@@ -0,0 +1,48 @@
+# Maintainer: Andreas Radke 
+
+pkgname=ipp-usb
+pkgver=0.9.8
+pkgrel=1
+pkgdesc="allows using the IPP protocol, normally designed for network 
printers, to be used with USB printers as well"
+arch=('x86_64')
+url="https://github.com/OpenPrinting/ipp-usb;
+license=('custom: BSD')
+# ToDo: package goipp ?
+depends=('avahi' 'libusb')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz"::https://github.com/OpenPrinting/ipp-usb/archive/$pkgver.tar.gz)
+sha256sums=('b630434bcfb99549f18ef80608626d82129bed4f0939fad1dc1aca1c721437f3')
+
+prepare() {
+cd "$pkgname-$pkgver"
+   # fix Makefile
+   sed -i "s/sbin/bin/g" Makefile
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   export CGO_CPPFLAGS="${CPPFLAGS}"
+   export CGO_CFLAGS="${CFLAGS}"
+   export CGO_CXXFLAGS="${CXXFLAGS}"
+   export CGO_LDFLAGS="${LDFLAGS}"
+   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+   #go build -o "$pkgname" .
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   # https://github.com/OpenPrinting/ipp-usb/blob/master/Makefile
+   # DESTDIR and PREFIX are fully f... up so do it our own
+   #make DESTDIR="${pkgdir}" install
+
+   install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+   install -Dm644 ipp-usb.conf "$pkgdir"/etc/ipp-usb/ipp-usb.conf
+   install -Dm644 systemd-udev/71-ipp-usb.rules 
"$pkgdir"/usr/lib/udev/rules.d/71-ipp-usb.rules
+   install -Dm644 systemd-udev/ipp-usb.service 
"$pkgdir"/usr/lib/systemd/system/ipp-usb.service
+   install -Dm644 ipp-usb.1 "$pkgdir"/usr/share/man/man1/ipp-usb.1
+
+   
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-12 Thread Andreas Radke via arch-commits
Date: Sunday, July 12, 2020 @ 15:26:29
  Author: andyrtr
Revision: 391761

add package

Added:
  ipp-usb/
  ipp-usb/repos/
  ipp-usb/trunk/
  ipp-usb/trunk/PKGBUILD

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

Added: ipp-usb/trunk/PKGBUILD
===
--- ipp-usb/trunk/PKGBUILD  (rev 0)
+++ ipp-usb/trunk/PKGBUILD  2020-07-12 15:26:29 UTC (rev 391761)
@@ -0,0 +1,48 @@
+# Maintainer: Andreas Radke 
+
+pkgname=ipp-usb
+pkgver=0.9.8
+pkgrel=1
+pkgdesc="allows using the IPP protocol, normally designed for network 
printers, to be used with USB printers as well"
+arch=('x86_64')
+url="https://github.com/OpenPrinting/ipp-usb;
+license=('custom: BSD')
+# ToDo: package goipp ?
+depends=('avahi' 'libusb')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz"::https://github.com/OpenPrinting/ipp-usb/archive/$pkgver.tar.gz)
+sha256sums=('b630434bcfb99549f18ef80608626d82129bed4f0939fad1dc1aca1c721437f3')
+
+prepare() {
+cd "$pkgname-$pkgver"
+   # fix Makefile
+   sed -i "s/sbin/bin/g" Makefile
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   export CGO_CPPFLAGS="${CPPFLAGS}"
+   export CGO_CFLAGS="${CFLAGS}"
+   export CGO_CXXFLAGS="${CXXFLAGS}"
+   export CGO_LDFLAGS="${LDFLAGS}"
+   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+   #go build -o "$pkgname" .
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   # https://github.com/OpenPrinting/ipp-usb/blob/master/Makefile
+   # DESTDIR and PREFIX are fully f... up so do it our own
+   #make DESTDIR="${pkgdir}" install
+
+   install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+   install -Dm644 ipp-usb.conf "$pkgdir"/etc/ipp-usb/ipp-usb.conf
+   install -Dm644 systemd-udev/71-ipp-usb.rules 
"$pkgdir"/usr/lib/udev/rules.d/71-ipp-usb.rules
+   install -Dm644 systemd-udev/ipp-usb.service 
"$pkgdir"/usr/lib/systemd/system/ipp-usb.service
+   install -Dm644 ipp-usb.1 "$pkgdir"/usr/share/man/man1/ipp-usb.1
+
+   
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-12 Thread Jürgen Hötzel via arch-commits
Date: Sunday, July 12, 2020 @ 15:15:21
  Author: juergen
Revision: 391760

archrelease: copy trunk to extra-x86_64

Added:
  clisp/repos/extra-x86_64/PKGBUILD
(from rev 391759, clisp/trunk/PKGBUILD)
Deleted:
  clisp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 15:15:06 UTC (rev 391759)
+++ PKGBUILD2020-07-12 15:15:21 UTC (rev 391760)
@@ -1,34 +0,0 @@
-# Maintainer: Juergen Hoetzel 
-pkgname=clisp
-pkgver=2.49.93
-pkgrel=3
-pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
-arch=('x86_64')
-license=('GPL')
-url="https://clisp.sourceforge.io/;
-depends=('readline' 'libsigsegv')
-provides=('common-lisp')
-makedepends=('ffcall' 'mercurial')
-options=('!makeflags' '!emptydirs')
-_rev=b55b8196c9f25428304ec3de87383319fd1f2264
-source=(hg+http://hg.code.sf.net/p/clisp/clisp#revision=$_rev)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --with-readline --with-ffcall src
-
-  cd src
-  ./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > 
Makefile
-  make
-}
-
-check() {
-  cd $pkgname
-  make check || :
-}
-
-package() {
-  cd $pkgname/src
-  make DESTDIR=$pkgdir install
-}

Copied: clisp/repos/extra-x86_64/PKGBUILD (from rev 391759, 
clisp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 15:15:21 UTC (rev 391760)
@@ -0,0 +1,34 @@
+# Maintainer: Juergen Hoetzel 
+pkgname=clisp
+pkgver=2.49.93
+pkgrel=4
+pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
+arch=('x86_64')
+license=('GPL')
+url="https://clisp.sourceforge.io/;
+depends=('readline' 'libsigsegv' 'ffcall')
+provides=('common-lisp')
+makedepends=('mercurial')
+options=('!makeflags' '!emptydirs')
+_rev=b55b8196c9f25428304ec3de87383319fd1f2264
+source=(hg+http://hg.code.sf.net/p/clisp/clisp#revision=$_rev)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --with-readline --with-ffcall src
+
+  cd src
+  ./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > 
Makefile
+  make
+}
+
+check() {
+  cd $pkgname
+  make check || :
+}
+
+package() {
+  cd $pkgname/src
+  make DESTDIR=$pkgdir install
+}


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

2020-07-12 Thread Jürgen Hötzel via arch-commits
Date: Sunday, July 12, 2020 @ 15:15:06
  Author: juergen
Revision: 391759

fix #66846 

Modified:
  clisp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 15:07:19 UTC (rev 391758)
+++ PKGBUILD2020-07-12 15:15:06 UTC (rev 391759)
@@ -1,14 +1,14 @@
 # Maintainer: Juergen Hoetzel 
 pkgname=clisp
 pkgver=2.49.93
-pkgrel=3
+pkgrel=4
 pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
 arch=('x86_64')
 license=('GPL')
 url="https://clisp.sourceforge.io/;
-depends=('readline' 'libsigsegv')
+depends=('readline' 'libsigsegv' 'ffcall')
 provides=('common-lisp')
-makedepends=('ffcall' 'mercurial')
+makedepends=('mercurial')
 options=('!makeflags' '!emptydirs')
 _rev=b55b8196c9f25428304ec3de87383319fd1f2264
 source=(hg+http://hg.code.sf.net/p/clisp/clisp#revision=$_rev)


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

2020-07-12 Thread Andreas Radke via arch-commits
Date: Sunday, July 12, 2020 @ 15:07:06
  Author: andyrtr
Revision: 391757

upgpkg: poppler 0.90.1-1: upstream update 0.90.1

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 14:11:22 UTC (rev 391756)
+++ PKGBUILD2020-07-12 15:07:06 UTC (rev 391757)
@@ -3,7 +3,7 @@
 
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt5')
-pkgver=0.90.0
+pkgver=0.90.1
 pkgrel=1
 arch=(x86_64)
 license=('GPL')
@@ -14,7 +14,7 @@
 url="https://poppler.freedesktop.org/;
 source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz{,.sig}
 
test::git+https://anongit.freedesktop.org/git/poppler/test/#commit=03a4b9eb854a06a83c465e82de601796c458bbe9)
-sha256sums=('94edb0ad3330b74d22caac807aa501e9cc61cbf45a8010625670428b51989685'
+sha256sums=('984d82e72e91418d280885298c8bdc855a2fd92665fd52a1345b27235e0c71c4'
 'SKIP'
 'SKIP')
 validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7') # "Albert Astals Cid 
"


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

2020-07-12 Thread Andreas Radke via arch-commits
Date: Sunday, July 12, 2020 @ 15:07:19
  Author: andyrtr
Revision: 391758

archrelease: copy trunk to testing-x86_64

Added:
  poppler/repos/testing-x86_64/
  poppler/repos/testing-x86_64/PKGBUILD
(from rev 391757, poppler/trunk/PKGBUILD)

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

Copied: poppler/repos/testing-x86_64/PKGBUILD (from rev 391757, 
poppler/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-12 15:07:19 UTC (rev 391758)
@@ -0,0 +1,84 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt5')
+pkgver=0.90.1
+pkgrel=1
+arch=(x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg2' 'gtk3' 
'pkgconfig' 'lcms2' 
+ 'gobject-introspection' 'icu' 'qt5-base' 'git' 'nss' 'gtk-doc' 
'curl' 'poppler-data'
+ 'cmake' 'python' 'boost')
+options=('!emptydirs')
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz{,.sig}
+
test::git+https://anongit.freedesktop.org/git/poppler/test/#commit=03a4b9eb854a06a83c465e82de601796c458bbe9)
+sha256sums=('984d82e72e91418d280885298c8bdc855a2fd92665fd52a1345b27235e0c71c4'
+'SKIP'
+'SKIP')
+validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7') # "Albert Astals Cid 
"
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX:PATH=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DENABLE_UNSTABLE_API_ABI_HEADERS=ON \
+-DENABLE_GTK_DOC=ON
+  make
+}
+
+check() {
+  cd build
+  LANG=en_US.UTF8 make test
+}
+
+package_poppler() {
+  pkgdesc="PDF rendering library based on xpdf 3.0"
+  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg2' 'lcms2' 'nss' 
'curl')
+  optdepends=('poppler-data: encoding data to display PDF documents containing 
CJK characters')
+  provides=('libpoppler.so' 'libpoppler-cpp.so')
+  conflicts=("poppler-qt3<${pkgver}" "poppler-qt4<${pkgver}")
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # cleanup for splitted build
+  rm -vrf "${pkgdir}"/usr/include/poppler/{glib,qt5}
+  rm -vf "${pkgdir}"//usr/lib/libpoppler-{glib,qt5}.*
+  rm -vf "${pkgdir}"/usr/lib/pkgconfig/poppler-{glib,qt5}.pc
+  rm -vrf "${pkgdir}"/usr/{lib,share}/gir*
+  rm -vrf "${pkgdir}"/usr/share/gtk-doc
+}
+
+package_poppler-glib() {
+  pkgdesc="Poppler glib bindings"
+  depends=("poppler=${pkgver}" 'glib2')
+  provides=('libpoppler-glib.so')
+
+  cd build
+
+  make -C glib DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-glib.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -vf "${pkgdir}"/usr/lib/libpoppler.*
+  rm -vf "${pkgdir}/usr/bin/poppler-glib-demo"
+}
+
+package_poppler-qt5() {
+  pkgdesc="Poppler Qt5 bindings"
+  depends=("poppler=${pkgver}" 'qt5-base')
+  provides=('libpoppler-qt5.so')
+
+  cd build
+  make -C qt5 DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-qt5.pc "${pkgdir}/usr/lib/pkgconfig/"
+}
+


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

2020-07-12 Thread Fabio Castelli via arch-commits
Date: Sunday, July 12, 2020 @ 14:20:36
  Author: muflone
Revision: 663334

archrelease: copy trunk to community-any

Added:
  gscan2pdf/repos/community-any/PKGBUILD
(from rev 66, gscan2pdf/trunk/PKGBUILD)
Deleted:
  gscan2pdf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 14:20:09 UTC (rev 66)
+++ PKGBUILD2020-07-12 14:20:36 UTC (rev 663334)
@@ -1,49 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Tristelune  
-# Contributor: LeCrayonVert 
-# Contributor: yugrotavele 
-# Contributor: Sven Salzwedel 
-# Contributor: Olaf Leidinger 
-
-pkgname=gscan2pdf
-pkgver=2.8.0
-pkgrel=1
-pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
-arch=('any')
-url='http://gscan2pdf.sourceforge.net/'
-license=('GPL')
-depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
- 'perl-gtk3-simplelist' 'perl-data-uuid'
- 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
- 'perl-locale-gettext' 'perl-log-log4perl' 'perl-pdf-api2'
- 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
- 'perl-try-tiny' 'unpaper')
-optdepends=('djvulibre: DjVu image format'
-'gocr: OCR support'
-'xdg-utils: email as PDF'
-'tesseract: OCR support'
-'cuneiform: OCR support'
-'pdftk: PDF encryption'
-'java-commons-lang: PDF encryption')
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('35da3f6f717b99b377fc28448201ea916edeff33b3440aaa29067d6bc3fabd642bd450e0c56a44a307e0165fd813b40670a0144c5ba71bdb09c1e841d05d32ad')
-options=('!emptydirs')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  perl Makefile.PL
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
-  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  # Delete unuseful files
-  find "${pkgdir}" -name '.packlist' -delete
-  find "${pkgdir}" -name '*.pod' -delete
-}

Copied: gscan2pdf/repos/community-any/PKGBUILD (from rev 66, 
gscan2pdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 14:20:36 UTC (rev 663334)
@@ -0,0 +1,49 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Tristelune  
+# Contributor: LeCrayonVert 
+# Contributor: yugrotavele 
+# Contributor: Sven Salzwedel 
+# Contributor: Olaf Leidinger 
+
+pkgname=gscan2pdf
+pkgver=2.8.1
+pkgrel=1
+pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
+arch=('any')
+url='http://gscan2pdf.sourceforge.net/'
+license=('GPL')
+depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
+ 'perl-gtk3-simplelist' 'perl-data-uuid'
+ 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
+ 'perl-locale-gettext' 'perl-log-log4perl' 'perl-pdf-api2'
+ 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
+ 'perl-try-tiny' 'unpaper')
+optdepends=('djvulibre: DjVu image format'
+'gocr: OCR support'
+'xdg-utils: email as PDF'
+'tesseract: OCR support'
+'cuneiform: OCR support'
+'pdftk: PDF encryption'
+'java-commons-lang: PDF encryption')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('2a9f52ce53030f2871d2430b6aab6b06bb1d4e2efbde25ad24196cfa99ad7b13342ff0f2827526020f5c12079e156bc430f891bdb6ffa9545a210bf1cba29be5')
+options=('!emptydirs')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  # Delete unuseful files
+  find "${pkgdir}" -name '.packlist' -delete
+  find "${pkgdir}" -name '*.pod' -delete
+}


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

2020-07-12 Thread Fabio Castelli via arch-commits
Date: Sunday, July 12, 2020 @ 14:20:09
  Author: muflone
Revision: 66

upgpkg: gscan2pdf 2.8.1-1

Modified:
  gscan2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 14:12:37 UTC (rev 663332)
+++ PKGBUILD2020-07-12 14:20:09 UTC (rev 66)
@@ -6,7 +6,7 @@
 # Contributor: Olaf Leidinger 
 
 pkgname=gscan2pdf
-pkgver=2.8.0
+pkgver=2.8.1
 pkgrel=1
 pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
 arch=('any')
@@ -26,7 +26,7 @@
 'pdftk: PDF encryption'
 'java-commons-lang: PDF encryption')
 
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('35da3f6f717b99b377fc28448201ea916edeff33b3440aaa29067d6bc3fabd642bd450e0c56a44a307e0165fd813b40670a0144c5ba71bdb09c1e841d05d32ad')
+sha512sums=('2a9f52ce53030f2871d2430b6aab6b06bb1d4e2efbde25ad24196cfa99ad7b13342ff0f2827526020f5c12079e156bc430f891bdb6ffa9545a210bf1cba29be5')
 options=('!emptydirs')
 
 build() {


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 14:12:37
  Author: diabonas
Revision: 663332

archrelease: copy trunk to community-x86_64

Added:
  miniupnpc/repos/community-x86_64/PKGBUILD
(from rev 663331, miniupnpc/trunk/PKGBUILD)
Deleted:
  miniupnpc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 14:12:32 UTC (rev 663331)
+++ PKGBUILD2020-07-12 14:12:37 UTC (rev 663332)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Florian Loitsch 
-
-pkgname=miniupnpc
-pkgver=2.1.20190408
-pkgrel=2
-pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
-url='https://miniupnp.tuxfamily.org/'
-arch=('x86_64')
-license=('BSD')
-depends=('sh')
-provides=('libminiupnpc.so')
-source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
-'SKIP')
-sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
-'SKIP')
-validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 663331, 
miniupnpc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 14:12:37 UTC (rev 663332)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
+# Contributor: Florian Loitsch 
+
+pkgname=miniupnpc
+pkgver=2.1.20190408
+pkgrel=3
+pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
+url='https://miniupnp.tuxfamily.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('sh')
+makedepends=('lsb-release')
+provides=('libminiupnpc.so')
+source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
+'SKIP')
+sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
+'SKIP')
+validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 14:12:32
  Author: diabonas
Revision: 663331

upgpkg: miniupnpc 2.1.20190408-3: avoid embedding unreproducible uname -r in 
binary

When lsb_release is not available, updateminiupnpcstrings.sh falls back to using
"uname -r" for MINIUPNPC_VERSION_STRING (which is used e.g. in the user agent),
making the build unreproducible between different kernel versions. With
lsb_release available, the version string is fixed to "Arch/rolling" instead.

Modified:
  miniupnpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:54:07 UTC (rev 663330)
+++ PKGBUILD2020-07-12 14:12:32 UTC (rev 663331)
@@ -4,12 +4,13 @@
 
 pkgname=miniupnpc
 pkgver=2.1.20190408
-pkgrel=2
+pkgrel=3
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
 license=('BSD')
 depends=('sh')
+makedepends=('lsb-release')
 provides=('libminiupnpc.so')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
 sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'


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

2020-07-12 Thread Dave Reisner via arch-commits
Date: Sunday, July 12, 2020 @ 14:11:22
  Author: dreisner
Revision: 391756

archrelease: copy trunk to testing-x86_64

Added:
  shadow/repos/testing-x86_64/
  shadow/repos/testing-x86_64/LICENSE
(from rev 391755, shadow/trunk/LICENSE)
  shadow/repos/testing-x86_64/PKGBUILD
(from rev 391755, shadow/trunk/PKGBUILD)
  shadow/repos/testing-x86_64/chgpasswd
(from rev 391755, shadow/trunk/chgpasswd)
  shadow/repos/testing-x86_64/chpasswd
(from rev 391755, shadow/trunk/chpasswd)
  shadow/repos/testing-x86_64/defaults.pam
(from rev 391755, shadow/trunk/defaults.pam)
  shadow/repos/testing-x86_64/login.defs
(from rev 391755, shadow/trunk/login.defs)
  shadow/repos/testing-x86_64/newusers
(from rev 391755, shadow/trunk/newusers)
  shadow/repos/testing-x86_64/passwd
(from rev 391755, shadow/trunk/passwd)
  shadow/repos/testing-x86_64/shadow.install
(from rev 391755, shadow/trunk/shadow.install)
  shadow/repos/testing-x86_64/shadow.service
(from rev 391755, shadow/trunk/shadow.service)
  shadow/repos/testing-x86_64/shadow.timer
(from rev 391755, shadow/trunk/shadow.timer)
  shadow/repos/testing-x86_64/useradd.defaults
(from rev 391755, shadow/trunk/useradd.defaults)

--+
 LICENSE  |   31 +++
 PKGBUILD |  145 
 chgpasswd|4 +
 chpasswd |6 +
 defaults.pam |6 +
 login.defs   |  208 +
 newusers |6 +
 passwd   |4 +
 shadow.install   |   22 +
 shadow.service   |   11 ++
 shadow.timer |7 +
 useradd.defaults |9 ++
 12 files changed, 459 insertions(+)

Copied: shadow/repos/testing-x86_64/LICENSE (from rev 391755, 
shadow/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2020-07-12 14:11:22 UTC (rev 391756)
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 1990 - 1994, Julianne Frances Haugh
+ * Copyright (c) 1996 - 2000, Marek Michałkiewicz
+ * Copyright (c) 2001 - 2006, Tomasz Kłoczko
+ * Copyright (c) 2007 - 2009, Nicolas François
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *notice, this list of conditions and the following disclaimer in the
+ *documentation and/or other materials provided with the distribution.
+ * 3. The name of the copyright holders or contributors may not be used to
+ *endorse or promote products derived from this software without
+ *specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */

Copied: shadow/repos/testing-x86_64/PKGBUILD (from rev 391755, 
shadow/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-12 14:11:22 UTC (rev 391756)
@@ -0,0 +1,145 @@
+# Maintainer: Dave Reisner 
+# Maintainer: Aaron Griffin 
+
+pkgname=shadow
+pkgver=4.8.1
+pkgrel=2
+pkgdesc="Password and account management tool suite with support for shadow 
files and PAM"
+arch=('x86_64')
+url='https://github.com/shadow-maint/shadow'
+license=('BSD')
+# libcap-ng needed by install scriptlet for 'filecap'
+depends=('pam' 'acl' 'audit' 'libaudit.so' 'libcap-ng')
+makedepends=('git' 'itstool' 'libxslt' 'docbook-xsl')
+backup=(etc/login.defs
+etc/pam.d/{chage,passwd,shadow,useradd,usermod,userdel}
+etc/pam.d/{chpasswd,newusers,groupadd,groupdel,groupmod}
+etc/pam.d/{chgpasswd,groupmems}
+etc/default/useradd)
+options=(strip debug)
+validpgpkeys=('D5C2F9BFCA128BBA22A77218872F702C4D6E25A8')  # Christian Perrier
+source=("git+https://github.com/shadow-maint/shadow.git#tag=$pkgver;
+LICENSE
+chgpasswd
+chpasswd
+defaults.pam
+

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

2020-07-12 Thread Dave Reisner via arch-commits
Date: Sunday, July 12, 2020 @ 14:10:45
  Author: dreisner
Revision: 391755

upgpkg: shadow 4.8.1-2

- use libcap-ng to set filecaps rather than libcap (FS#63920)

Modified:
  shadow/trunk/PKGBUILD
  shadow/trunk/shadow.install

+
 PKGBUILD   |5 +++--
 shadow.install |   11 +--
 2 files changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:02:37 UTC (rev 391754)
+++ PKGBUILD2020-07-12 14:10:45 UTC (rev 391755)
@@ -3,12 +3,13 @@
 
 pkgname=shadow
 pkgver=4.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Password and account management tool suite with support for shadow 
files and PAM"
 arch=('x86_64')
 url='https://github.com/shadow-maint/shadow'
 license=('BSD')
-depends=('pam' 'acl' 'audit' 'libaudit.so')
+# libcap-ng needed by install scriptlet for 'filecap'
+depends=('pam' 'acl' 'audit' 'libaudit.so' 'libcap-ng')
 makedepends=('git' 'itstool' 'libxslt' 'docbook-xsl')
 backup=(etc/login.defs
 etc/pam.d/{chage,passwd,shadow,useradd,usermod,userdel}

Modified: shadow.install
===
--- shadow.install  2020-07-12 13:02:37 UTC (rev 391754)
+++ shadow.install  2020-07-12 14:10:45 UTC (rev 391755)
@@ -1,7 +1,14 @@
 setcaps() {
+  _setcap() {
+if filecap "$1" "$2"; then
+  chmod -s "$1"
+fi
+  }
+
   # shadow ships these as setuid, but if we can apply file caps, use those 
instead.
-  setcap cap_setuid+ep usr/bin/newuidmap 2>/dev/null && chmod -s 
usr/bin/newuidmap
-  setcap cap_setgid+ep usr/bin/newgidmap 2>/dev/null && chmod -s 
usr/bin/newgidmap 
+  # 'filecap' insists on absolute paths
+  _setcap /usr/bin/newuidmap setuid
+  _setcap /usr/bin/newgidmap setgid
 }
 
 post_install() {


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 13:54:01
  Author: diabonas
Revision: 663329

upgpkg: python-tornado 6.0.4-2: make pyc files reproducible

Ensure that the package is reproducible by making sure that the order of
elements in sets and dictionaries in the compiled Python files is deterministic.

Modified:
  python-tornado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:38:18 UTC (rev 663328)
+++ PKGBUILD2020-07-12 13:54:01 UTC (rev 663329)
@@ -3,7 +3,7 @@
 
 pkgname=python-tornado
 pkgver=6.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('x86_64')
 url='https://www.tornadoweb.org/'
@@ -21,6 +21,7 @@
 
 build() {
   cd tornado-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


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

2020-07-12 Thread Jonas Witschel via arch-commits
Date: Sunday, July 12, 2020 @ 13:54:07
  Author: diabonas
Revision: 663330

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 13:54:01 UTC (rev 663329)
+++ PKGBUILD2020-07-12 13:54:07 UTC (rev 663330)
@@ -1,47 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-
-pkgname=python-tornado
-pkgver=6.0.4
-pkgrel=1
-pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
-arch=('x86_64')
-url='https://www.tornadoweb.org/'
-license=('Apache')
-depends=('python')
-optdepends=('python-pycurl: for tornado.curl_httpclient'
-'python-twisted: for tornado.platform.twisted')
-# 'python-pycares: an alternative non-blocking DNS resolver'
-makedepends=('python-setuptools')
-checkdepends=('python-pycurl' 'python-mock' 'python-twisted')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz;)
-sha512sums=('97f19a1be91ebeb64ae0ce2b63c3a411fdadccdbf13613e5afce6e992e319fbfb79a3798ccc56651e3cc0bd7ac4cc5fefc0e14ea6a0ca91e2105edb41364d2b0')
-
-export TORNADO_EXTENSION=1
-
-build() {
-  cd tornado-$pkgver
-  python setup.py build
-}
-
-check() {
-  # As of 4.5.3, ignoring test failures about resolving "localhost"
-  (
-cd tornado-$pkgver
-python setup.py install --root="$PWD/tmp_install" --optimize=1
-export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH"
-cd tmp_install
-python -m tornado.test.runtests
-python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
-python -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
-python -m tornado.test.runtests --ioloop_time_monotonic
-python -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
-python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
-python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver
-  ) || warning "Tests failed"
-}
-
-package() {
-  cd tornado-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-tornado/repos/community-x86_64/PKGBUILD (from rev 663329, 
python-tornado/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 13:54:07 UTC (rev 663330)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=python-tornado
+pkgver=6.0.4
+pkgrel=2
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('x86_64')
+url='https://www.tornadoweb.org/'
+license=('Apache')
+depends=('python')
+optdepends=('python-pycurl: for tornado.curl_httpclient'
+'python-twisted: for tornado.platform.twisted')
+# 'python-pycares: an alternative non-blocking DNS resolver'
+makedepends=('python-setuptools')
+checkdepends=('python-pycurl' 'python-mock' 'python-twisted')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz;)
+sha512sums=('97f19a1be91ebeb64ae0ce2b63c3a411fdadccdbf13613e5afce6e992e319fbfb79a3798ccc56651e3cc0bd7ac4cc5fefc0e14ea6a0ca91e2105edb41364d2b0')
+
+export TORNADO_EXTENSION=1
+
+build() {
+  cd tornado-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+check() {
+  # As of 4.5.3, ignoring test failures about resolving "localhost"
+  (
+cd tornado-$pkgver
+python setup.py install --root="$PWD/tmp_install" --optimize=1
+export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH"
+cd tmp_install
+python -m tornado.test.runtests
+python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
+python -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
+python -m tornado.test.runtests --ioloop_time_monotonic
+python -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
+python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
+python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver
+  ) || warning "Tests failed"
+}
+
+package() {
+  cd tornado-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-07-12 Thread Kpcyrd via arch-commits
Date: Sunday, July 12, 2020 @ 13:38:18
  Author: kpcyrd
Revision: 663328

archrelease: copy trunk to community-any

Added:
  python-pwntools/repos/community-any/PKGBUILD
(from rev 663327, python-pwntools/trunk/PKGBUILD)
  python-pwntools/repos/community-any/pwn.conf
(from rev 663327, python-pwntools/trunk/pwn.conf)
Deleted:
  python-pwntools/repos/community-any/PKGBUILD
  python-pwntools/repos/community-any/pwn.conf

--+
 PKGBUILD |  134 +
 pwn.conf |4 -
 2 files changed, 66 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 13:37:54 UTC (rev 663327)
+++ PKGBUILD2020-07-12 13:38:18 UTC (rev 663328)
@@ -1,70 +0,0 @@
-# Maintainer: kpcyrd 
-# Maintainer: Levente Polyak 
-# Contributor: Ding Xiao 
-# Contributor: Firmy 
-
-pkgname=python-pwntools
-_pyname=pwntools
-pkgver=4.1.1
-pkgrel=1
-pkgdesc='CTF framework and exploit development library'
-url='https://github.com/Gallopsled/pwntools'
-arch=('any')
-license=('MIT' 'GPL2' 'BSD')
-depends=('python'
- 'python-mako'
- 'python-pyelftools'
- 'python-capstone'
- 'ropgadget'
- 'python-pyserial'
- 'python-requests'
- 'python-pip'
- 'python-pygments'
- 'python-pysocks'
- 'python-dateutil'
- 'python-packaging'
- 'python-psutil'
- 'python-intervaltree'
- 'python-sortedcontainers'
- 'python-unicorn'
- 'python-paramiko'
- 'ropgadget'
- 'python-setuptools')
-makedepends=('pandoc')
-source=(https://github.com/Gallopsled/pwntools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-pwn.conf
-# cherry-pick patch for [update] config section
-
https://github.com/Gallopsled/pwntools/commit/433d92619b98b916bee21865df066e005f28dc80.patch)
-sha256sums=('da3a32aa5deacf906a96c559b3b237e3f79b76afe76fe87ca66892e58ac83b8f'
-'50916e4e45d026422cd6bfe8de50e7246c61b0b1e0007571e7c04a994282fe89'
-'25a4bd5edc81e3f31200b8104392330cb4f5f30868c474ac55b99b5e4fdc73a0')
-b2sums=('e30782b4872c42113e3307dfd493364322681c7cfdc9ba1345207598420a25fdb00be5448e4adfc648798c712b0721b060c0d6fdffa991061d43d5024a81dc1b'
-
'cac0a12eea8abd3d2ee21632e7f2281e7e35c2d7839cfbcba83ae5d0e8f427e9cc2462a6d17d187252b99d9dbbb14393b9d5a63996c42043f553e9b66bfe9e07'
-
'b41a77d6e3a799ff937c1b04713919d5357fa371a0f730ddc83ff8253d463cb86b89bcf705724fd68a9c4fb8567821cfbc85be6723d6b43d916cff9385413363')
-
-prepare() {
-  cd ${_pyname}-${pkgver}
-  sed 's|>=1.0.2rc1,<1.0.2rc4||' -i setup.py
-
-  patch --forward --strip=1 
--input="${srcdir}/433d92619b98b916bee21865df066e005f28dc80.patch"
-}
-
-build() {
-  cd ${_pyname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd "${_pyname}-${pkgver}"
-  PYTHONPATH=. PWNLIB_NOTERM=true python -c 'import pwn'
-}
-
-package() {
-  cd ${_pyname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build 
--only-use-pwn-command
-  install -Dm 644 "${srcdir}/pwn.conf" -t "${pkgdir}/etc"
-  install -Dm 644 LICENSE-pwntools.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-  rm -f "${pkgdir}"/usr/lib/python*/site-packages/*.{txt,md}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pwntools/repos/community-any/PKGBUILD (from rev 663327, 
python-pwntools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 13:38:18 UTC (rev 663328)
@@ -0,0 +1,64 @@
+# Maintainer: kpcyrd 
+# Maintainer: Levente Polyak 
+# Contributor: Ding Xiao 
+# Contributor: Firmy 
+
+pkgname=python-pwntools
+_pyname=pwntools
+pkgver=4.2.1
+pkgrel=1
+pkgdesc='CTF framework and exploit development library'
+url='https://github.com/Gallopsled/pwntools'
+arch=('any')
+license=('MIT' 'GPL2' 'BSD')
+depends=('python'
+ 'python-mako'
+ 'python-pyelftools'
+ 'python-capstone'
+ 'ropgadget'
+ 'python-pyserial'
+ 'python-requests'
+ 'python-pip'
+ 'python-pygments'
+ 'python-pysocks'
+ 'python-dateutil'
+ 'python-packaging'
+ 'python-psutil'
+ 'python-intervaltree'
+ 'python-sortedcontainers'
+ 'python-unicorn'
+ 'python-paramiko'
+ 'ropgadget'
+ 'python-setuptools')
+makedepends=('pandoc')
+source=(https://github.com/Gallopsled/pwntools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+pwn.conf)
+sha256sums=('8f1a4bf7b668de6b222df887fdd820b7ff05547e7ff9a13ebbd10eecf43c7a78'
+'50916e4e45d026422cd6bfe8de50e7246c61b0b1e0007571e7c04a994282fe89')
+b2sums=('03859b6cf470698160c14b812cffc47ae4b5256c2c2f8082ffd60d4b91de6c83473063d6daa0ff512a4165faec15e28d2252ec64a459e9e164ad7c4a875189e2'
+

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

2020-07-12 Thread Kpcyrd via arch-commits
Date: Sunday, July 12, 2020 @ 13:37:54
  Author: kpcyrd
Revision: 663327

upgpkg: python-pwntools 4.2.1-1

Modified:
  python-pwntools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:18:50 UTC (rev 663326)
+++ PKGBUILD2020-07-12 13:37:54 UTC (rev 663327)
@@ -5,7 +5,7 @@
 
 pkgname=python-pwntools
 _pyname=pwntools
-pkgver=4.1.1
+pkgver=4.2.1
 pkgrel=1
 pkgdesc='CTF framework and exploit development library'
 url='https://github.com/Gallopsled/pwntools'
@@ -32,21 +32,15 @@
  'python-setuptools')
 makedepends=('pandoc')
 
source=(https://github.com/Gallopsled/pwntools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-pwn.conf
-# cherry-pick patch for [update] config section
-
https://github.com/Gallopsled/pwntools/commit/433d92619b98b916bee21865df066e005f28dc80.patch)
-sha256sums=('da3a32aa5deacf906a96c559b3b237e3f79b76afe76fe87ca66892e58ac83b8f'
-'50916e4e45d026422cd6bfe8de50e7246c61b0b1e0007571e7c04a994282fe89'
-'25a4bd5edc81e3f31200b8104392330cb4f5f30868c474ac55b99b5e4fdc73a0')
-b2sums=('e30782b4872c42113e3307dfd493364322681c7cfdc9ba1345207598420a25fdb00be5448e4adfc648798c712b0721b060c0d6fdffa991061d43d5024a81dc1b'
-
'cac0a12eea8abd3d2ee21632e7f2281e7e35c2d7839cfbcba83ae5d0e8f427e9cc2462a6d17d187252b99d9dbbb14393b9d5a63996c42043f553e9b66bfe9e07'
-
'b41a77d6e3a799ff937c1b04713919d5357fa371a0f730ddc83ff8253d463cb86b89bcf705724fd68a9c4fb8567821cfbc85be6723d6b43d916cff9385413363')
+pwn.conf)
+sha256sums=('8f1a4bf7b668de6b222df887fdd820b7ff05547e7ff9a13ebbd10eecf43c7a78'
+'50916e4e45d026422cd6bfe8de50e7246c61b0b1e0007571e7c04a994282fe89')
+b2sums=('03859b6cf470698160c14b812cffc47ae4b5256c2c2f8082ffd60d4b91de6c83473063d6daa0ff512a4165faec15e28d2252ec64a459e9e164ad7c4a875189e2'
+
'cac0a12eea8abd3d2ee21632e7f2281e7e35c2d7839cfbcba83ae5d0e8f427e9cc2462a6d17d187252b99d9dbbb14393b9d5a63996c42043f553e9b66bfe9e07')
 
 prepare() {
   cd ${_pyname}-${pkgver}
   sed 's|>=1.0.2rc1,<1.0.2rc4||' -i setup.py
-
-  patch --forward --strip=1 
--input="${srcdir}/433d92619b98b916bee21865df066e005f28dc80.patch"
 }
 
 build() {


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 13:18:50
  Author: jelle
Revision: 663326

archrelease: copy trunk to community-x86_64

Added:
  uboot-tools/repos/community-x86_64/PKGBUILD
(from rev 663325, uboot-tools/trunk/PKGBUILD)
Deleted:
  uboot-tools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 13:18:40 UTC (rev 663325)
+++ PKGBUILD2020-07-12 13:18:50 UTC (rev 663326)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Michael Lass 
-# Contributor: Philipp Schrader 
-
-pkgname=uboot-tools
-pkgver=2020.04
-pkgrel=1
-pkgdesc='U-Boot bootloader utility tools'
-arch=(x86_64)
-url='https://www.denx.de/wiki/U-Boot/WebHome'
-license=(GPL)
-depends=(openssl)
-source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2{,.sig})
-validpgpkeys=('E872DB409C1A687EFBE8633687F9F635D31D7652')
-sha1sums=('0821ce2dac9bbd9ec5883779ddad78b8610366e3'
-  'SKIP')
-
-build() {
-  cd u-boot-$pkgver
-  make defconfig
-  make tools-all
-}
-
-package() {
-  install -m 755 -d "$pkgdir"/usr/bin
-  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
-  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
-  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
-}

Copied: uboot-tools/repos/community-x86_64/PKGBUILD (from rev 663325, 
uboot-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 13:18:50 UTC (rev 663326)
@@ -0,0 +1,29 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Michael Lass 
+# Contributor: Philipp Schrader 
+
+pkgname=uboot-tools
+pkgver=2020.07
+pkgrel=1
+pkgdesc='U-Boot bootloader utility tools'
+arch=(x86_64)
+url='https://www.denx.de/wiki/U-Boot/WebHome'
+license=(GPL)
+depends=(openssl)
+source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2{,.sig})
+validpgpkeys=('E872DB409C1A687EFBE8633687F9F635D31D7652')
+sha1sums=('1b59dd6875b0ceeb5202ef027f26bf3c99a8d91b'
+  'SKIP')
+
+build() {
+  cd u-boot-$pkgver
+  make defconfig
+  make tools-all KBUILD_HOSTLDFLAGS=${LDFLAGS}
+}
+
+package() {
+  install -m 755 -d "$pkgdir"/usr/bin
+  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
+  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
+  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
+}


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 13:18:40
  Author: jelle
Revision: 663325

Update to 2020.07-1, add RELRO for tools

Modified:
  uboot-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 13:04:01 UTC (rev 663324)
+++ PKGBUILD2020-07-12 13:18:40 UTC (rev 663325)
@@ -3,7 +3,7 @@
 # Contributor: Philipp Schrader 
 
 pkgname=uboot-tools
-pkgver=2020.04
+pkgver=2020.07
 pkgrel=1
 pkgdesc='U-Boot bootloader utility tools'
 arch=(x86_64)
@@ -12,13 +12,13 @@
 depends=(openssl)
 source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2{,.sig})
 validpgpkeys=('E872DB409C1A687EFBE8633687F9F635D31D7652')
-sha1sums=('0821ce2dac9bbd9ec5883779ddad78b8610366e3'
+sha1sums=('1b59dd6875b0ceeb5202ef027f26bf3c99a8d91b'
   'SKIP')
 
 build() {
   cd u-boot-$pkgver
   make defconfig
-  make tools-all
+  make tools-all KBUILD_HOSTLDFLAGS=${LDFLAGS}
 }
 
 package() {


[arch-commits] Commit in python-django-crispy-forms/repos/community-any (2 files)

2020-07-12 Thread David Runge via arch-commits
Date: Sunday, July 12, 2020 @ 13:04:01
  Author: dvzrv
Revision: 663324

archrelease: copy trunk to community-any

Added:
  python-django-crispy-forms/repos/community-any/PKGBUILD
(from rev 663323, python-django-crispy-forms/trunk/PKGBUILD)
Deleted:
  python-django-crispy-forms/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 13:03:51 UTC (rev 663323)
+++ PKGBUILD2020-07-12 13:04:01 UTC (rev 663324)
@@ -1,41 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-crispy-forms
-pkgname=python-django-crispy-forms
-pkgver=1.9.1
-pkgrel=1
-pkgdesc="The best way to have DRY Django forms"
-arch=('any')
-url="https://github.com/django-crispy-forms/django-crispy-forms;
-license=('MIT')
-depends=('python-django')
-makedepends=('python-setuptools')
-checkdepends=('python-coverage' 'python-pytest' 'python-pytest-cov' 
'python-pytest-django')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('5697ca4ca062acebd0b73a065da958f5ad83fec948101709ea7d4775b6db54f32e551e3359a3ddf2ebf7bca116b53348502233ba233aad95cbd262bbdbe4f25f')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests --cov=crispy_forms
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {CONTRIBUTORS.txt,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-crispy-forms/repos/community-any/PKGBUILD (from rev 
663323, python-django-crispy-forms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 13:04:01 UTC (rev 663324)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+
+_name=django-crispy-forms
+pkgname=python-django-crispy-forms
+pkgver=1.9.2
+pkgrel=1
+pkgdesc="The best way to have DRY Django forms"
+arch=('any')
+url="https://github.com/django-crispy-forms/django-crispy-forms;
+license=('MIT')
+depends=('python-django')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-django')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('2f3696d3a4b1ff1a203ae4f73ec42e9862bfcb709267f3d5788c4bdbccbd8f56070a2e51948557344ac23fd0fb157457a80b898b4573676282ac7a6a061a32be')
+b2sums=('777f215d020c6ebb344a40de86e1770d1efefa92409bd65ed2db9735ad70f855395f6f3c3be9d139949dcee90d6bc16ea5e8e7ae09af8d45279e8c69b45351b1')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {CONTRIBUTORS.txt,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


[arch-commits] Commit in python-django-crispy-forms/trunk (PKGBUILD)

2020-07-12 Thread David Runge via arch-commits
Date: Sunday, July 12, 2020 @ 13:03:51
  Author: dvzrv
Revision: 663323

upgpkg: python-django-crispy-forms 1.9.2-1: Upgrading to 1.9.2.

Removing the use of python-coverage/python-pytest-cov.

Modified:
  python-django-crispy-forms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 12:19:37 UTC (rev 663322)
+++ PKGBUILD2020-07-12 13:03:51 UTC (rev 663323)
@@ -2,7 +2,7 @@
 
 _name=django-crispy-forms
 pkgname=python-django-crispy-forms
-pkgver=1.9.1
+pkgver=1.9.2
 pkgrel=1
 pkgdesc="The best way to have DRY Django forms"
 arch=('any')
@@ -10,9 +10,10 @@
 license=('MIT')
 depends=('python-django')
 makedepends=('python-setuptools')
-checkdepends=('python-coverage' 'python-pytest' 'python-pytest-cov' 
'python-pytest-django')
+checkdepends=('python-pytest' 'python-pytest-django')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('5697ca4ca062acebd0b73a065da958f5ad83fec948101709ea7d4775b6db54f32e551e3359a3ddf2ebf7bca116b53348502233ba233aad95cbd262bbdbe4f25f')
+sha512sums=('2f3696d3a4b1ff1a203ae4f73ec42e9862bfcb709267f3d5788c4bdbccbd8f56070a2e51948557344ac23fd0fb157457a80b898b4573676282ac7a6a061a32be')
+b2sums=('777f215d020c6ebb344a40de86e1770d1efefa92409bd65ed2db9735ad70f855395f6f3c3be9d139949dcee90d6bc16ea5e8e7ae09af8d45279e8c69b45351b1')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -26,7 +27,7 @@
 check() {
   cd "$pkgname-$pkgver"
   export PYTHONPATH="build:${PYTHONPATH}"
-  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests --cov=crispy_forms
+  DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings pytest -v 
crispy_forms/tests
 }
 
 package() {


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

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 13:02:22
  Author: felixonmars
Revision: 391753

upgpkg: python-setuptools 1:49.1.3-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 12:11:52 UTC (rev 391752)
+++ PKGBUILD2020-07-12 13:02:22 UTC (rev 391753)
@@ -3,7 +3,7 @@
 # Contributor: Eli Schwartz 
 
 pkgname=python-setuptools
-pkgver=49.1.2
+pkgver=49.1.3
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -17,7 +17,7 @@
 provides=('python-distribute')
 replaces=('python-distribute')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('918169c139e731c334e40539a79626c7717e1d6904e706e024ea835236f11f10d10a9f16c8dc22b9beb4edceba7585583e543245bd62c17ba8d45333839d2c18')
+sha512sums=('f52d39cf7addff51c2435a63530760a7817147e85f1443ac897d1e5e08b9888c08efbafa72dc2592918dab96d28b53c8508169f687e5328a85a6e31f1993604b')
 
 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
 


[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 13:02:37
  Author: felixonmars
Revision: 391754

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 391753, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  170 ++---
 1 file changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 13:02:22 UTC (rev 391753)
+++ PKGBUILD2020-07-12 13:02:37 UTC (rev 391754)
@@ -1,85 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Eli Schwartz 
-
-pkgname=python-setuptools
-pkgver=49.1.2
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="https://pypi.org/project/setuptools/;
-depends=('python-appdirs' 'python-packaging' 'python-ordered-set')
-makedepends=('git')
-checkdepends=('python-mock' 'python-pip' 'python-pytest-fixture-config' 
'python-pytest-flake8'
-  'python-pytest-virtualenv' 'python-wheel' 'python-paver' 
'python-pytest-cov')
-provides=('python-distribute')
-replaces=('python-distribute')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('918169c139e731c334e40539a79626c7717e1d6904e706e024ea835236f11f10d10a9f16c8dc22b9beb4edceba7585583e543245bd62c17ba8d45333839d2c18')
-
-export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-
-prepare() {
-  rm -r setuptools-$pkgver/{pkg_resources,setuptools}/{extern,_vendor}
-
-  # Upstream devendoring logic is badly broken, see:
-  # https://bugs.archlinux.org/task/58670
-  # https://github.com/pypa/pip/issues/5429
-  # https://github.com/pypa/setuptools/issues/1383
-  # The simplest fix is to simply rewrite import paths to use the canonical
-  # location in the first place
-  for _module in setuptools pkg_resources '' ; do
-  find setuptools-$pkgver -name \*.py -exec sed -i \
-  -e 's/from '$_module.extern' import/import/' \
-  -e 's/from '$_module.extern'./from /' \
-  -e 's/import '$_module.extern'./import /' \
-  -e "s/__import__('$_module.extern./__import__('/" \
-  {} +
-done
-
-  # Fix for flake8
-  sed -i 's/import six, ordered_set/import six\nimport ordered_set/' 
setuptools-$pkgver/setuptools/command/sdist.py
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i @pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -e '/^def test_no_missing_dependencies/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-  
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd setuptools-$pkgver
-  python -m pytest
-)}
-
-package() {
-  cd setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 391753, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 13:02:37 UTC (rev 391754)
@@ -0,0 +1,85 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Eli Schwartz 
+
+pkgname=python-setuptools
+pkgver=49.1.3
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="https://pypi.org/project/setuptools/;
+depends=('python-appdirs' 'python-packaging' 'python-ordered-set')
+makedepends=('git')
+checkdepends=('python-mock' 'python-pip' 'python-pytest-fixture-config' 
'python-pytest-flake8'
+  'python-pytest-virtualenv' 'python-wheel' 'python-paver' 
'python-pytest-cov')
+provides=('python-distribute')
+replaces=('python-distribute')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)

[arch-commits] Commit in sshuttle/repos/community-any (8 files)

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 12:19:37
  Author: felixonmars
Revision: 663322

archrelease: copy trunk to community-any

Added:
  sshuttle/repos/community-any/PKGBUILD
(from rev 663321, sshuttle/trunk/PKGBUILD)
  sshuttle/repos/community-any/prefixes.conf
(from rev 663321, sshuttle/trunk/prefixes.conf)
  sshuttle/repos/community-any/sshuttle.service
(from rev 663321, sshuttle/trunk/sshuttle.service)
  sshuttle/repos/community-any/tunnel.conf
(from rev 663321, sshuttle/trunk/tunnel.conf)
Deleted:
  sshuttle/repos/community-any/PKGBUILD
  sshuttle/repos/community-any/prefixes.conf
  sshuttle/repos/community-any/sshuttle.service
  sshuttle/repos/community-any/tunnel.conf

--+
 PKGBUILD |   92 ++---
 prefixes.conf|   10 ++---
 sshuttle.service |   22 ++--
 tunnel.conf  |   38 ++---
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 12:19:12 UTC (rev 663321)
+++ PKGBUILD2020-07-12 12:19:37 UTC (rev 663322)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: alphazo 
-
-pkgname=sshuttle
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
-arch=('any')
-url="https://github.com/sshuttle/sshuttle;
-license=('GPL2')
-depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
-makedepends=('python-sphinx' 'python-setuptools_scm')
-checkdepends=('python-pytest-cov' 'python-pytest-runner' 'python-mock' 
'flake8')
-backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
-'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-sha512sums=('42ac2b2c22bcbfb57500c8242da8a7aeb369d2ffb45e83984092c69023000f95bb10dbc12e9f7b47e2e035dd3587baf4aade9a98dc634c0ef834955a9c8b3a82'
-
'c22504798f6220cd6b0946d6975375437c52753a241cd2a6a03d3aeb005ed1d78e6356dde23716e2514ccf6d7f1c6aace43956dbeede1bf028753b9bdcdd8b7d'
-
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
-
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-
-  cd docs
-  make man
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" -O1
-
-  install -Dm644 docs/_build/man/sshuttle.1 
"$pkgdir"/usr/share/man/man1/sshuttle.1
-
-  install -d "$pkgdir"/etc/sshuttle
-  install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir"/etc/sshuttle
-  install -Dm644 "$srcdir"/sshuttle.service 
"$pkgdir"/usr/lib/systemd/system/sshuttle.service
-}

Copied: sshuttle/repos/community-any/PKGBUILD (from rev 663321, 
sshuttle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 12:19:37 UTC (rev 663322)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: alphazo 
+
+pkgname=sshuttle
+pkgver=1.0.3
+pkgrel=1
+pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
+arch=('any')
+url="https://github.com/sshuttle/sshuttle;
+license=('GPL2')
+depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
+makedepends=('python-sphinx' 'python-setuptools_scm')
+checkdepends=('python-pytest-cov' 'python-pytest-runner' 'python-mock' 
'flake8')
+backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
+'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
+sha512sums=('f05fe3062da4410b6b568e96ed81824e8ba9f5ecaa77d76ce47835b14a7a695af843c2882aadb88de0af747600b6ca314c905551341f892254224f82ef3360c4'
+
'c22504798f6220cd6b0946d6975375437c52753a241cd2a6a03d3aeb005ed1d78e6356dde23716e2514ccf6d7f1c6aace43956dbeede1bf028753b9bdcdd8b7d'
+
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
+
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+
+  cd docs
+  make man
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+
+  install -Dm644 docs/_build/man/sshuttle.1 
"$pkgdir"/usr/share/man/man1/sshuttle.1
+
+  install -d "$pkgdir"/etc/sshuttle
+  install -m644 

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

2020-07-12 Thread Felix Yan via arch-commits
Date: Sunday, July 12, 2020 @ 12:19:12
  Author: felixonmars
Revision: 663321

upgpkg: sshuttle 1.0.3-1

Modified:
  sshuttle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 11:49:33 UTC (rev 663320)
+++ PKGBUILD2020-07-12 12:19:12 UTC (rev 663321)
@@ -2,7 +2,7 @@
 # Contributor: alphazo 
 
 pkgname=sshuttle
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
 arch=('any')
@@ -14,7 +14,7 @@
 backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
 'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-sha512sums=('42ac2b2c22bcbfb57500c8242da8a7aeb369d2ffb45e83984092c69023000f95bb10dbc12e9f7b47e2e035dd3587baf4aade9a98dc634c0ef834955a9c8b3a82'
+sha512sums=('f05fe3062da4410b6b568e96ed81824e8ba9f5ecaa77d76ce47835b14a7a695af843c2882aadb88de0af747600b6ca314c905551341f892254224f82ef3360c4'
 
'c22504798f6220cd6b0946d6975375437c52753a241cd2a6a03d3aeb005ed1d78e6356dde23716e2514ccf6d7f1c6aace43956dbeede1bf028753b9bdcdd8b7d'
 
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
 
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')


[arch-commits] Commit in python-lazy-object-proxy/trunk (PKGBUILD)

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 12:11:47
  Author: jelle
Revision: 391751

Remove python2 module

Modified:
  python-lazy-object-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 12:01:42 UTC (rev 391750)
+++ PKGBUILD2020-07-12 12:11:47 UTC (rev 391751)
@@ -1,28 +1,21 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-lazy-object-proxy
-pkgname=(python-lazy-object-proxy python2-lazy-object-proxy)
+pkgname=python-lazy-object-proxy
+depends=("python")
 pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A fast and thorough lazy object proxy'
 arch=('x86_64')
 url="https://github.com/ionelmc/python-lazy-object-proxy;
 license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools')
 checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver.tar.gz;)
 
sha512sums=('150f2fc240611175697ad638cf85f88bed6534b13cd39ea2d5103292b1c7a1825918738a6ad689940ce9f906f064077ad1fe2b036f6dff3f6f5d31bf43d817d7')
 
-prepare() {
-  cp -a python-lazy-object-proxy-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/python-lazy-object-proxy-$pkgver
   python setup.py build
-
-  cd "$srcdir"/python-lazy-object-proxy-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
@@ -30,18 +23,8 @@
   python setup.py pytest --addopts --ignore=src
 }
 
-package_python-lazy-object-proxy() {
-  depends=("python")
-
+package() {
   cd python-lazy-object-proxy-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-lazy-object-proxy() {
-  depends=("python2")
-
-  cd python-lazy-object-proxy-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in python-lazy-object-proxy/repos/extra-x86_64 (2 files)

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 12:11:52
  Author: jelle
Revision: 391752

archrelease: copy trunk to extra-x86_64

Added:
  python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD
(from rev 391751, python-lazy-object-proxy/trunk/PKGBUILD)
Deleted:
  python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 12:11:47 UTC (rev 391751)
+++ PKGBUILD2020-07-12 12:11:52 UTC (rev 391752)
@@ -1,47 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-lazy-object-proxy
-pkgname=(python-lazy-object-proxy python2-lazy-object-proxy)
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='A fast and thorough lazy object proxy'
-arch=('x86_64')
-url="https://github.com/ionelmc/python-lazy-object-proxy;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver.tar.gz;)
-sha512sums=('150f2fc240611175697ad638cf85f88bed6534b13cd39ea2d5103292b1c7a1825918738a6ad689940ce9f906f064077ad1fe2b036f6dff3f6f5d31bf43d817d7')
-
-prepare() {
-  cp -a python-lazy-object-proxy-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-lazy-object-proxy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-lazy-object-proxy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd python-lazy-object-proxy-$pkgver
-  python setup.py pytest --addopts --ignore=src
-}
-
-package_python-lazy-object-proxy() {
-  depends=("python")
-
-  cd python-lazy-object-proxy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-lazy-object-proxy() {
-  depends=("python2")
-
-  cd python-lazy-object-proxy-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD (from rev 391751, 
python-lazy-object-proxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 12:11:52 UTC (rev 391752)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-lazy-object-proxy
+depends=("python")
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='A fast and thorough lazy object proxy'
+arch=('x86_64')
+url="https://github.com/ionelmc/python-lazy-object-proxy;
+license=('BSD')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver.tar.gz;)
+sha512sums=('150f2fc240611175697ad638cf85f88bed6534b13cd39ea2d5103292b1c7a1825918738a6ad689940ce9f906f064077ad1fe2b036f6dff3f6f5d31bf43d817d7')
+
+build() {
+  cd "$srcdir"/python-lazy-object-proxy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-lazy-object-proxy-$pkgver
+  python setup.py pytest --addopts --ignore=src
+}
+
+package() {
+  cd python-lazy-object-proxy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 12:01:42
  Author: jelle
Revision: 391750

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 12:01:36 UTC (rev 391749)
+++ PKGBUILD2020-07-12 12:01:42 UTC (rev 391750)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Troy C < rstrox -ta yahoo -tod com >
-
-pkgbase=python-wrapt
-pkgname=(python-wrapt python2-wrapt)
-pkgver=1.12.1
-pkgrel=1
-pkgdesc="A Python module for decorators, wrappers and monkey patching"
-arch=("x86_64")
-url="https://pypi.python.org/pypi/wrapt;
-license=("BSD")
-makedepends=('python' 'python2')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/GrahamDumpleton/wrapt/archive/$pkgver.tar.gz;)
-sha512sums=('33e964cb3aa2437bc7d084a98f622f7c5c8c719d97806796ae0317d35130bdb2679a9dd87be7077e2cae1eb32b65d152349fa7cc138cb392d5999cbfdcecc9ac')
-
-prepare() {
-  cp -a wrapt-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/wrapt-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/wrapt-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/wrapt-$pkgver
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.8:$PYTHONPATH" py.test
-
-  cd "$srcdir"/wrapt-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2
-}
-
-package_python-wrapt() {
-  depends=('python')
-
-  cd wrapt-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-wrapt() {
-  depends=('python2')
-
-  cd wrapt-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-wrapt/repos/extra-x86_64/PKGBUILD (from rev 391749, 
python-wrapt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 12:01:42 UTC (rev 391750)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Troy C < rstrox -ta yahoo -tod com >
+
+pkgname=python-wrapt
+pkgver=1.12.1
+pkgrel=2
+pkgdesc="A Python module for decorators, wrappers and monkey patching"
+arch=("x86_64")
+url="https://pypi.python.org/pypi/wrapt;
+license=("BSD")
+depends=('python')
+makedepends=('python')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GrahamDumpleton/wrapt/archive/$pkgver.tar.gz;)
+sha512sums=('33e964cb3aa2437bc7d084a98f622f7c5c8c719d97806796ae0317d35130bdb2679a9dd87be7077e2cae1eb32b65d152349fa7cc138cb392d5999cbfdcecc9ac')
+
+build() {
+  cd "$srcdir"/wrapt-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/wrapt-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.8:$PYTHONPATH" py.test
+}
+
+package() {
+  cd wrapt-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 12:01:36
  Author: jelle
Revision: 391749

Remove python2 module

Modified:
  python-wrapt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-12 11:58:56 UTC (rev 391748)
+++ PKGBUILD2020-07-12 12:01:36 UTC (rev 391749)
@@ -1,51 +1,31 @@
 # Maintainer: Felix Yan 
 # Contributor: Troy C < rstrox -ta yahoo -tod com >
 
-pkgbase=python-wrapt
-pkgname=(python-wrapt python2-wrapt)
+pkgname=python-wrapt
 pkgver=1.12.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python module for decorators, wrappers and monkey patching"
 arch=("x86_64")
 url="https://pypi.python.org/pypi/wrapt;
 license=("BSD")
-makedepends=('python' 'python2')
-checkdepends=('python-pytest' 'python2-pytest')
+depends=('python')
+makedepends=('python')
+checkdepends=('python-pytest')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/GrahamDumpleton/wrapt/archive/$pkgver.tar.gz;)
 
sha512sums=('33e964cb3aa2437bc7d084a98f622f7c5c8c719d97806796ae0317d35130bdb2679a9dd87be7077e2cae1eb32b65d152349fa7cc138cb392d5999cbfdcecc9ac')
 
-prepare() {
-  cp -a wrapt-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir"/wrapt-$pkgver
   python setup.py build
-
-  cd "$srcdir"/wrapt-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
   cd "$srcdir"/wrapt-$pkgver
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.8:$PYTHONPATH" py.test
-
-  cd "$srcdir"/wrapt-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2
 }
 
-package_python-wrapt() {
-  depends=('python')
-
+package() {
   cd wrapt-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-wrapt() {
-  depends=('python2')
-
-  cd wrapt-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


[arch-commits] Commit in (python2-isort)

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 11:58:56
  Author: jelle
Revision: 391748

remove unused python2 module

Deleted:
  python2-isort/


[arch-commits] Commit in (python2-astroid)

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 11:56:41
  Author: jelle
Revision: 391746

moved to the AUR

Deleted:
  python2-astroid/


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

2020-07-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 12, 2020 @ 11:49:33
  Author: jelle
Revision: 663320

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-12 11:49:27 UTC (rev 663319)
+++ PKGBUILD2020-07-12 11:49:33 UTC (rev 663320)
@@ -1,65 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Christopher Arndt 
-# Contributor: Gaute Hope 
-# Contributor: Melissa Padilla 
-
-pkgbase=python-future
-pkgname=(python-future python2-future)
-pkgver=0.18.2
-pkgrel=2
-pkgdesc="Clean single-source support for Python 3 and 2"
-url="https://python-future.org/;
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-requests' 'python2-requests')
-options=('!emptydirs')
-source=("https://pypi.io/packages/source/f/future/future-$pkgver.tar.gz;)
-sha512sums=('91c025f7d94bcdf93df838fab67053165a414fc84e8496f92ecbb910dd55f6b6af5e360bbd051444066880c5a6877e75157bd95e150ead46e5c605930dfc50f2')
-
-prepare() {
-  cp -a future-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/future-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/future-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/future-$pkgver
-#PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py test || warning 
"Tests failed"
-
-  cd "$srcdir"/future-$pkgver-py2
-#PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 setup.py test
-}
-
-package_python-future() {
-  depends=('python')
-  optdepends=('python-setuptools: futurize and pasteurize scripts')
-  provides=('futurize' 'pasteurize')
-
-  cd future-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-future() {
-  depends=('python2')
-  optdepends=('python2-setuptools: futurize2 and pasteurize2 scripts')
-
-  cd future-$pkgver-py2
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/futurize{,2}
-  mv "$pkgdir"/usr/bin/pasteurize{,2}
-
-  install -D -m644 LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-future/repos/community-any/PKGBUILD (from rev 663319, 
python-future/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-12 11:49:33 UTC (rev 663320)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Christopher Arndt 
+# Contributor: Gaute Hope 
+# Contributor: Melissa Padilla 
+
+pkgname=python-future
+pkgver=0.18.2
+pkgrel=3
+pkgdesc="Clean single-source support for Python 3 and 2"
+url="https://python-future.org/;
+arch=('any')
+license=('MIT')
+depends=('python')
+provides=('futurize' 'pasteurize')
+checkdepends=('python-requests')
+makedepends=('python-setuptools')
+optdepends=('python-setuptools: futurize and pasteurize scripts')
+options=('!emptydirs')
+source=("https://pypi.io/packages/source/f/future/future-$pkgver.tar.gz;)
+sha512sums=('91c025f7d94bcdf93df838fab67053165a414fc84e8496f92ecbb910dd55f6b6af5e360bbd051444066880c5a6877e75157bd95e150ead46e5c605930dfc50f2')
+
+build() {
+  cd "$srcdir"/future-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/future-$pkgver
+#PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py test || warning 
"Tests failed"
+}
+
+package() {
+  cd future-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


  1   2   >