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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 03:01:03
  Author: svenstaro
Revision: 1035040

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 1035039, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/blender-openexr3.patch
(from rev 1035039, blender/trunk/blender-openexr3.patch)

+
 PKGBUILD   |   88 +++
 blender-openexr3.patch |   42 ++
 2 files changed, 130 insertions(+)

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 1035039, 
blender/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-31 03:01:03 UTC (rev 1035040)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# fine with them.
+
+pkgname=blender
+pkgver=2.93.5
+pkgrel=5
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="https://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
+"git+https://git.blender.org/blender-addons.git;
+"git+https://git.blender.org/blender-addons-contrib.git;
+"git+https://git.blender.org/blender-translations.git;
+"git+https://git.blender.org/blender-dev-tools.git;
+
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
+blender-openexr3.patch)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
+
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
+
+prepare() {
+  cd "$pkgname"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+  git submodule foreach git checkout v${pkgver}
+
+  patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
+}
+
+build() {
+  cd "$pkgname"
+
+  local PYTHON_VER=3.9
+
+  cmake \
+-Bbuild \
+-GNinja \
+-Cbuild_files/cmake/config/blender_release.cmake \
+-DOPTIX_ROOT_DIR="$srcdir"/include \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=$PYTHON_VER \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python$PYTHON_VER \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
+-DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
+  ninja -C build
+}
+
+package() {
+  cd "$pkgname"
+
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+
+  install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
+
+  # Manually install additional scripts (See FS#69351)
+  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
+}

Copied: blender/repos/community-testing-x86_64/blender-openexr3.patch (from rev 
1035039, blender/trunk/blender-openexr3.patch)
===
--- community-testing-x86_64/blender-openexr3.patch 
(rev 0)
+++ community-testing-x86_64/blender-openexr3.patch 2021-10-31 03:01:03 UTC 
(rev 1035040)
@@ -0,0 +1,42 @@
+diff --git 

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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 03:00:52
  Author: svenstaro
Revision: 1035039

upgpkg: blender 17:2.93.5-5: cuda 11.5 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 02:58:12 UTC (rev 1035038)
+++ PKGBUILD2021-10-31 03:00:52 UTC (rev 1035039)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=2.93.5
-pkgrel=4
+pkgrel=5
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 02:58:12
  Author: svenstaro
Revision: 1035038

upgpkg: root 6.24.06-3: cuda 11.5 rebuild

Modified:
  root/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 02:52:47 UTC (rev 1035037)
+++ PKGBUILD2021-10-31 02:58:12 UTC (rev 1035038)
@@ -7,7 +7,7 @@
 pkgbase=root
 pkgname=('root' 'root-cuda')
 pkgver=6.24.06
-pkgrel=2
+pkgrel=3
 pkgdesc='C++ data analysis framework and interpreter from CERN'
 arch=('x86_64')
 url='https://root.cern'



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 02:52:47
  Author: svenstaro
Revision: 1035037

archrelease: copy trunk to community-testing-x86_64

Added:
  arrayfire/repos/community-testing-x86_64/
  arrayfire/repos/community-testing-x86_64/PKGBUILD
(from rev 1035036, arrayfire/trunk/PKGBUILD)
  arrayfire/repos/community-testing-x86_64/arrayfire-boost-1.76.0.patch
(from rev 1035036, arrayfire/trunk/arrayfire-boost-1.76.0.patch)

--+
 PKGBUILD |   65 +
 arrayfire-boost-1.76.0.patch |   12 +++
 2 files changed, 77 insertions(+)

Copied: arrayfire/repos/community-testing-x86_64/PKGBUILD (from rev 1035036, 
arrayfire/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-31 02:52:47 UTC (rev 1035037)
@@ -0,0 +1,65 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=arrayfire
+pkgver=3.8.0
+pkgrel=14
+pkgdesc="High performance software library for parallel computing with an 
easy-to-use API"
+arch=('x86_64')
+url='https://arrayfire.com'
+license=('BSD')
+depends=('cblas' 'fftw' 'lapacke' 'forge' 'freeimage' 'glfw' 'glew' 
'intel-mkl')
+makedepends=('cmake' 'graphviz' 'doxygen' 'opencl-headers' 'python' 'ocl-icd' 
'cuda' 'cudnn' 'git' 'ninja' 'boost')
+optdepends=('cuda: Required for using CUDA backend'
+'nvidia-utils: Required for using CUDA backend'
+'cudnn: Required for using CUDA backend'
+'opencl-driver: Required for using OpenCL backend'
+'ocl-icd: Required for OpenCL ICD Bindings')
+options=('!buildflags')
+source=("http://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-full-${pkgver}.tar.bz2;
+'arrayfire-boost-1.76.0.patch')
+sha512sums=('f36bee89a0f1a0a48ca2cae3a7b2527d63830e3070cb31174ff7f5c42f065aad6981d5142a8b7af7215a3c7dbf67ae13d1ea3543cd94eb70cff509c8cb95c739'
+
'92e34c28e4b6222febef5a3047f4faf64756a50b46a68507931b989984bbc6729aa4d1560dc267650f1890cb1ad7aa0866dd3debc0073f9103f764af7618d795')
+
+prepare() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+  patch -Np1 -i "${srcdir}/arrayfire-boost-1.76.0.patch"
+}
+
+build() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  cmake \
+  -GNinja \
+  -Bbuild \
+  -DUSE_CPU_MKL=ON \
+  -DGOOGLETEST_VERSION=1.9.0 \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+  -DAF_WITH_IMAGEIO=ON \
+  -DAF_BUILD_CPU=ON \
+  -DAF_BUILD_OPENCL=ON \
+  -DAF_WITH_NONFREE=ON \
+  -DAF_BUILD_EXAMPLES=ON \
+  -DAF_BUILD_DOCS=ON \
+  
-DCUDA_architecture_build_targets="5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5;8.0;8.6;8.6+PTX"
 \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCUDA_HOST_COMPILER=/usr/bin/gcc \
+  -DBoost_NO_BOOST_CMAKE=ON
+
+  ninja -C build
+}
+
+check() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  # Tests currently broken :(
+  # ninja -C build test
+}
+
+package() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  DESTDIR="${pkgdir}/" ninja -C build install
+  rm -r "${pkgdir}"/usr/LICENSES
+}

Copied: arrayfire/repos/community-testing-x86_64/arrayfire-boost-1.76.0.patch 
(from rev 1035036, arrayfire/trunk/arrayfire-boost-1.76.0.patch)
===
--- community-testing-x86_64/arrayfire-boost-1.76.0.patch   
(rev 0)
+++ community-testing-x86_64/arrayfire-boost-1.76.0.patch   2021-10-31 
02:52:47 UTC (rev 1035037)
@@ -0,0 +1,12 @@
+diff --git a/src/backend/opencl/kernel/homography.hpp 
b/src/backend/opencl/kernel/homography.hpp
+index b84e599..3034658 100644
+--- a/src/backend/opencl/kernel/homography.hpp
 b/src/backend/opencl/kernel/homography.hpp
+@@ -21,6 +21,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ namespace opencl {
+ namespace kernel {



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 02:52:35
  Author: svenstaro
Revision: 1035036

upgpkg: arrayfire 3.8.0-14: cuda 11.5 rebuild

Modified:
  arrayfire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 02:39:46 UTC (rev 1035035)
+++ PKGBUILD2021-10-31 02:52:35 UTC (rev 1035036)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=arrayfire
 pkgver=3.8.0
-pkgrel=13
+pkgrel=14
 pkgdesc="High performance software library for parallel computing with an 
easy-to-use API"
 arch=('x86_64')
 url='https://arrayfire.com'
@@ -27,7 +27,7 @@
 build() {
   cd "${srcdir}/arrayfire-full-${pkgver}"
 
-  cmake . \
+  cmake \
   -GNinja \
   -Bbuild \
   -DUSE_CPU_MKL=ON \



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 02:39:46
  Author: svenstaro
Revision: 1035035

archrelease: copy trunk to community-testing-x86_64

Added:
  nccl/repos/community-testing-x86_64/
  nccl/repos/community-testing-x86_64/PKGBUILD
(from rev 1035034, nccl/trunk/PKGBUILD)

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

Copied: nccl/repos/community-testing-x86_64/PKGBUILD (from rev 1035034, 
nccl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-31 02:39:46 UTC (rev 1035035)
@@ -0,0 +1,63 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov 
+# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+
+pkgname=nccl
+pkgver=2.11.4
+_upstr_pkgrel=1
+pkgrel=2
+pkgdesc='Library for NVIDIA multi-GPU and multi-node collective communication 
primitives'
+arch=('x86_64')
+url='https://developer.nvidia.com/nccl/'
+license=('BSD')
+depends=('glibc' 'gcc-libs')
+makedepends=('git' 'cuda')
+source=("$pkgname"::"git+https://github.com/NVIDIA/nccl.git#tag=v${pkgver}-${_upstr_pkgrel};)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  # rename BUILDDIR Makefile variable to avoid conflict with makepkg's one
+  local _file
+  local _filelist
+  _filelist="$(find . -type f -exec grep 'BUILDDIR' {} + | awk -F':' '{ print 
$1 }' | uniq)"
+  for _file in $_filelist
+  do
+sed -i 's/BUILDDIR/_BUILDPATH/g' "$_file"
+  done
+}
+
+build() {
+  cd "$pkgname"
+
+  # https://docs.nvidia.com/cuda/turing-compatibility-guide/index.html
+  # specify as follows:
+  ## PTX virtual arch: -gencode=arch=compute_XX,code=compute_XX
+  ## binary cubin arch: -gencode=arch=compute_XX,code=sm_XX
+  # we provide binary support on all arches, no PTX is needed
+  # drop PTX to improve performance and reduce linking issues
+  # keep only latest version PTX for future compatibility
+  export NVCC_GENCODE="-gencode=arch=compute_52,code=sm_52 \
+   -gencode=arch=compute_53,code=sm_53 \
+   -gencode=arch=compute_60,code=sm_60 \
+   -gencode=arch=compute_61,code=sm_61 \
+   -gencode=arch=compute_62,code=sm_62 \
+   -gencode=arch=compute_70,code=sm_70 \
+   -gencode=arch=compute_72,code=sm_72 \
+   -gencode=arch=compute_75,code=sm_75 \
+   -gencode=arch=compute_80,code=sm_80 \
+   -gencode=arch=compute_86,code=sm_86 \
+   -gencode=arch=compute_86,code=compute_86"
+
+  make CUDA_HOME=/opt/cuda PREFIX=/usr src.build
+}
+
+package() {
+  cd "${pkgname}"
+
+  make PREFIX="${pkgdir}"/usr install
+  # fix permission on static lib
+  chmod 644 "${pkgdir}"/usr/lib/libnccl_static.a
+  install -Dm644  "${srcdir}/${pkgname}"/LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 02:39:35
  Author: svenstaro
Revision: 1035034

upgpkg: nccl 2.11.4-2

Modified:
  nccl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:42:58 UTC (rev 1035033)
+++ PKGBUILD2021-10-31 02:39:35 UTC (rev 1035034)
@@ -5,7 +5,7 @@
 pkgname=nccl
 pkgver=2.11.4
 _upstr_pkgrel=1
-pkgrel=1
+pkgrel=2
 pkgdesc='Library for NVIDIA multi-GPU and multi-node collective communication 
primitives'
 arch=('x86_64')
 url='https://developer.nvidia.com/nccl/'



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:42:58
  Author: svenstaro
Revision: 1035033

archrelease: copy trunk to community-x86_64

Added:
  scummvm/repos/community-x86_64/PKGBUILD
(from rev 1035032, scummvm/trunk/PKGBUILD)
Deleted:
  scummvm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:42:47 UTC (rev 1035032)
+++ PKGBUILD2021-10-31 01:42:58 UTC (rev 1035033)
@@ -1,34 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: juergen 
-# Contributor: Manolis Tzanidakis, Petter Gundersen
-
-pkgname=scummvm
-pkgver=2.5.0
-pkgrel=3
-pkgdesc="A 'virtual machine' for several classic graphical point-and-click 
adventure games."
-arch=('x86_64')
-license=('GPL')
-url="http://www.scummvm.org/;
-depends=('libpng' 'libtheora' 'sdl2' 'sdl2_net' 'fluidsynth' 'flac' 'faad2' 
'libvorbis' 'libmad' 'freetype2'
- 'libgl' 'glu' 'libjpeg-turbo' 'libmpeg2' 'curl' 'a52dec' 'giflib' 
'glew' 'libspeechd' 'gtk3' 'sndio')
-makedepends=('mesa')
-source=("https://downloads.scummvm.org/frs/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('7ea702cf0f993994209fd692e82ab65f9686fb60d65f36624a31bd642067fe7dd35e55281c68d1592d7dd07333f085c124038f7a45acefae8f30bceff534')
-b2sums=('a5153280999e321be5bf7b56411c163d5ba1d4fb142fc900e1c3cb709d357d199d3764a94af57ab7218ee201bdbe6288adf222add9ffc941324b84d0e6954fe8')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---enable-c++11 \
---enable-release \
---enable-all-engines \
---prefix=/usr \
---enable-asan
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -vDm644 dists/${pkgname}.desktop -t 
"${pkgdir}"/usr/share/applications/
-}

Copied: scummvm/repos/community-x86_64/PKGBUILD (from rev 1035032, 
scummvm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 01:42:58 UTC (rev 1035033)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: juergen 
+# Contributor: Manolis Tzanidakis, Petter Gundersen
+
+pkgname=scummvm
+pkgver=2.5.0
+pkgrel=4
+pkgdesc="A 'virtual machine' for several classic graphical point-and-click 
adventure games."
+arch=('x86_64')
+license=('GPL')
+url="http://www.scummvm.org/;
+depends=('libpng' 'libtheora' 'sdl2' 'sdl2_net' 'fluidsynth' 'flac' 'faad2' 
'libvorbis' 'libmad' 'freetype2'
+ 'libgl' 'glu' 'libjpeg-turbo' 'libmpeg2' 'curl' 'a52dec' 'giflib' 
'glew' 'libspeechd' 'gtk3' 'sndio')
+makedepends=('mesa')
+source=("https://downloads.scummvm.org/frs/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('7ea702cf0f993994209fd692e82ab65f9686fb60d65f36624a31bd642067fe7dd35e55281c68d1592d7dd07333f085c124038f7a45acefae8f30bceff534')
+b2sums=('a5153280999e321be5bf7b56411c163d5ba1d4fb142fc900e1c3cb709d357d199d3764a94af57ab7218ee201bdbe6288adf222add9ffc941324b84d0e6954fe8')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--enable-c++11 \
+--enable-release \
+--enable-all-engines \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -vDm644 dists/${pkgname}.desktop -t 
"${pkgdir}"/usr/share/applications/
+}



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:42:47
  Author: svenstaro
Revision: 1035032

upgpkg: scummvm 2.5.0-4: Don't enable asan as it caused issues for some users

Modified:
  scummvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:42:41 UTC (rev 1035031)
+++ PKGBUILD2021-10-31 01:42:47 UTC (rev 1035032)
@@ -4,7 +4,7 @@
 
 pkgname=scummvm
 pkgver=2.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A 'virtual machine' for several classic graphical point-and-click 
adventure games."
 arch=('x86_64')
 license=('GPL')
@@ -22,8 +22,7 @@
 --enable-c++11 \
 --enable-release \
 --enable-all-engines \
---prefix=/usr \
---enable-asan
+--prefix=/usr
   make
 }
 



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:42:41
  Author: svenstaro
Revision: 1035031

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 1035030, telegram-desktop/trunk/PKGBUILD)
Deleted:
  telegram-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:42:29 UTC (rev 1035030)
+++ PKGBUILD2021-10-31 01:42:41 UTC (rev 1035031)
@@ -1,40 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: hexchain 
-pkgname=telegram-desktop
-pkgver=3.1.9
-pkgrel=1
-pkgdesc='Official Telegram Desktop client'
-arch=('x86_64')
-url="https://desktop.telegram.org/;
-license=('GPL3')
-depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal' 
'ttf-opensans'
- 'qt5-imageformats' 'qt5-svg' 'xxhash' 'libdbusmenu-qt5' 'kwayland' 
'glibmm'
- 'rnnoise' 'pipewire' 'libxtst' 'libxrandr' 'jemalloc' 'libtg_owt')
-makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 
'microsoft-gsl'
- 'extra-cmake-modules' 'gtk3' 'webkit2gtk')
-optdepends=('gtk3: GTK environment integration'
-'webkit2gtk: embedded browser features'
-'xdg-desktop-portal: desktop integration')
-source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
-sha512sums=('0c3ffad547fd9767dd81ea152551dac3e662344d2ac2d3422f5b78e5bd8c3818500580fbec6cd6d50d70f3a8d7bc39d942d83b50d9353059ff42b5a9ac08e16d')
-
-build() {
-cd tdesktop-$pkgver-full
-
-# Turns out we're allowed to use the official API key that telegram uses 
for their snap builds:
-# 
https://github.com/telegramdesktop/tdesktop/blob/8fab9167beb2407c1153930ed03a4badd0c2b59f/snap/snapcraft.yaml#L87-L88
-# Thanks @primeos!
-cmake \
--B build \
--G Ninja \
--DCMAKE_INSTALL_PREFIX="/usr" \
--DCMAKE_BUILD_TYPE=Release \
--DTDESKTOP_API_ID=611335 \
--DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
-ninja -C build
-}
-
-package() {
-cd tdesktop-$pkgver-full
-DESTDIR=$pkgdir ninja -C build install
-}

Copied: telegram-desktop/repos/community-x86_64/PKGBUILD (from rev 1035030, 
telegram-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 01:42:41 UTC (rev 1035031)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: hexchain 
+pkgname=telegram-desktop
+pkgver=3.1.11
+pkgrel=1
+pkgdesc='Official Telegram Desktop client'
+arch=('x86_64')
+url="https://desktop.telegram.org/;
+license=('GPL3')
+depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal' 
'ttf-opensans'
+ 'qt5-imageformats' 'qt5-svg' 'xxhash' 'libdbusmenu-qt5' 'kwayland' 
'glibmm'
+ 'rnnoise' 'pipewire' 'libxtst' 'libxrandr' 'jemalloc' 'libtg_owt')
+makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 
'microsoft-gsl'
+ 'extra-cmake-modules' 'gtk3' 'webkit2gtk')
+optdepends=('gtk3: GTK environment integration'
+'webkit2gtk: embedded browser features'
+'xdg-desktop-portal: desktop integration')
+source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
+sha512sums=('7d67f2895797d4f7f1edd5e5e7e8509044fad5d5cfe6bbdb5613689da9519dab2fde707a452aad6788193addf84f2ebcc69342955607e0be8507397c22557709')
+
+build() {
+cd tdesktop-$pkgver-full
+
+# Turns out we're allowed to use the official API key that telegram uses 
for their snap builds:
+# 
https://github.com/telegramdesktop/tdesktop/blob/8fab9167beb2407c1153930ed03a4badd0c2b59f/snap/snapcraft.yaml#L87-L88
+# Thanks @primeos!
+cmake \
+-B build \
+-G Ninja \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DCMAKE_BUILD_TYPE=Release \
+-DTDESKTOP_API_ID=611335 \
+-DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
+ninja -C build
+}
+
+package() {
+cd tdesktop-$pkgver-full
+DESTDIR=$pkgdir ninja -C build install
+}



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:42:29
  Author: svenstaro
Revision: 1035030

upgpkg: telegram-desktop 3.1.11-1

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:41:42 UTC (rev 1035029)
+++ PKGBUILD2021-10-31 01:42:29 UTC (rev 1035030)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: hexchain 
 pkgname=telegram-desktop
-pkgver=3.1.9
+pkgver=3.1.11
 pkgrel=1
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 'webkit2gtk: embedded browser features'
 'xdg-desktop-portal: desktop integration')
 
source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
-sha512sums=('0c3ffad547fd9767dd81ea152551dac3e662344d2ac2d3422f5b78e5bd8c3818500580fbec6cd6d50d70f3a8d7bc39d942d83b50d9353059ff42b5a9ac08e16d')
+sha512sums=('7d67f2895797d4f7f1edd5e5e7e8509044fad5d5cfe6bbdb5613689da9519dab2fde707a452aad6788193addf84f2ebcc69342955607e0be8507397c22557709')
 
 build() {
 cd tdesktop-$pkgver-full



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:41:42
  Author: svenstaro
Revision: 1035029

archrelease: copy trunk to community-x86_64

Added:
  blender/repos/community-x86_64/PKGBUILD
(from rev 1035028, blender/trunk/PKGBUILD)
  blender/repos/community-x86_64/blender-openexr3.patch
(from rev 1035028, blender/trunk/blender-openexr3.patch)
Deleted:
  blender/repos/community-x86_64/PKGBUILD
  blender/repos/community-x86_64/blender-openexr3.patch

+
 PKGBUILD   |  176 +++
 blender-openexr3.patch |   84 +++---
 2 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:41:31 UTC (rev 1035028)
+++ PKGBUILD2021-10-31 01:41:42 UTC (rev 1035029)
@@ -1,88 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: John Sowiak 
-# Contributor: tobias 
-
-# For legal reasons, we can't separately package the Optix headers so we'll
-# just build the package against them. I checked with NVIDIA and this way is
-# fine with them.
-
-pkgname=blender
-pkgver=2.93.5
-pkgrel=3
-epoch=17
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('x86_64')
-license=('GPL')
-url="https://www.blender.org;
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree')
-makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
-"git+https://git.blender.org/blender-addons.git;
-"git+https://git.blender.org/blender-addons-contrib.git;
-"git+https://git.blender.org/blender-translations.git;
-"git+https://git.blender.org/blender-dev-tools.git;
-
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
-blender-openexr3.patch)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
-
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
-  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
-  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
-  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
-  git submodule update
-  git submodule foreach git checkout v${pkgver}
-
-  patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
-}
-
-build() {
-  cd "$pkgname"
-
-  local PYTHON_VER=3.9
-
-  cmake \
--Bbuild \
--GNinja \
--Cbuild_files/cmake/config/blender_release.cmake \
--DOPTIX_ROOT_DIR="$srcdir"/include \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DPYTHON_VERSION=$PYTHON_VER \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python$PYTHON_VER \
--DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
--DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
-  ninja -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
-  python -m compileall "${pkgdir}/usr/share/blender"
-  python -O -m compileall "${pkgdir}/usr/share/blender"
-
-  install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-
-  # Manually install additional scripts (See FS#69351)
-  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 1035028, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 01:41:42 UTC (rev 1035029)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# 

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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:41:31
  Author: svenstaro
Revision: 1035028

upgpkg: blender 17:2.93.5-4: Depend on libharu for grease pencil export feature

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:35:39 UTC (rev 1035027)
+++ PKGBUILD2021-10-31 01:41:31 UTC (rev 1035028)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=2.93.5
-pkgrel=3
+pkgrel=4
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')
@@ -18,7 +18,7 @@
  'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
  'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
  'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree')
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu')
 makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
 optdepends=('cuda: cycles renderer cuda support')
 options=(!strip)



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:35:39
  Author: svenstaro
Revision: 1035027

archrelease: copy trunk to community-x86_64

Added:
  glfw/repos/community-x86_64/PKGBUILD
(from rev 1035026, glfw/trunk/PKGBUILD)
Deleted:
  glfw/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:35:18 UTC (rev 1035026)
+++ PKGBUILD2021-10-31 01:35:39 UTC (rev 1035027)
@@ -1,78 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: philefou 
-# Contributor: lindquist 
-# Contributor: Christoph Siegenthaler 
-# Contributor: Mihai Militaru 
-# Contributor: SpepS 
-
-pkgbase=glfw
-pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
-pkgver=3.3.4
-pkgrel=1
-arch=('x86_64')
-url="https://www.glfw.org/;
-license=('custom:ZLIB')
-makedepends=('mesa' 'cmake' 'doxygen' 'vulkan-headers' 'vulkan-icd-loader'
- 'extra-cmake-modules' 'wayland-protocols' 'libxi' 'libxrandr'
- 'libxcursor' 'libxkbcommon' 'libxinerama')
-source=("https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
-sha512sums=('2b45ab72da7a2c007c0f42ccd56205f9684cfb980e2b1df127850cd057bb2b02ce02c7c64acd54cd433778e7017148f214afedf09badff9d2edf5f9b8d9d2701')
-
-prepare() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  mkdir build-x11 build-wayland
-}
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver/build-x11"
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DBUILD_SHARED_LIBS=ON
-  make docs
-
-  cd ../build-wayland
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DBUILD_SHARED_LIBS=ON \
-  -DGLFW_USE_WAYLAND=ON
-}
-
-package_glfw-x11() {
-  pkgdesc="A free, open source, portable framework for graphical application 
development (x11)"
-  depends=('libxi' 'libxrandr' 'libxinerama' 'libxcursor' 'libgl')
-  replaces=('glfw')
-  conflicts=('glfw')
-  provides=("glfw=$pkgver")
-
-  cd "$srcdir/$pkgbase-$pkgver"/build-x11
-
-  make DESTDIR=$pkgdir install
-
-  cd ..
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_glfw-wayland() {
-  pkgdesc="A free, open source, portable framework for graphical application 
development (wayland)"
-  depends=('wayland' 'libxkbcommon' 'libgl')
-  conflicts=('glfw')
-  provides=("glfw=$pkgver")
-
-  cd "$srcdir/$pkgbase-$pkgver"/build-wayland
-
-  make DESTDIR=$pkgdir install
-
-  cd ..
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_glfw-doc() {
-  pkgdesc="Set of HTML documentation for GLFW"
-
-  mkdir -p "${pkgdir}/usr/share/doc/glfw/"
-  cp -r "${srcdir}/glfw-${pkgver}/build-x11/docs/html" 
"${pkgdir}/usr/share/doc/glfw"
-}

Copied: glfw/repos/community-x86_64/PKGBUILD (from rev 1035026, 
glfw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 01:35:39 UTC (rev 1035027)
@@ -0,0 +1,78 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: philefou 
+# Contributor: lindquist 
+# Contributor: Christoph Siegenthaler 
+# Contributor: Mihai Militaru 
+# Contributor: SpepS 
+
+pkgbase=glfw
+pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
+pkgver=3.3.5
+pkgrel=1
+arch=('x86_64')
+url="https://www.glfw.org/;
+license=('custom:ZLIB')
+makedepends=('mesa' 'cmake' 'doxygen' 'vulkan-headers' 'vulkan-icd-loader'
+ 'extra-cmake-modules' 'wayland-protocols' 'libxi' 'libxrandr'
+ 'libxcursor' 'libxkbcommon' 'libxinerama')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
+sha512sums=('cbb8ebf25d3d826eb1daeff3ad2e0e965ce9def3352955f297743d918f625d96bc05bf87c90f7b57ec53376a0f2f6ce62f80b57fac4e81e023400de275e97beb')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  mkdir build-x11 build-wayland
+}
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver/build-x11"
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DBUILD_SHARED_LIBS=ON
+  make docs
+
+  cd ../build-wayland
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DBUILD_SHARED_LIBS=ON \
+  -DGLFW_USE_WAYLAND=ON
+}
+
+package_glfw-x11() {
+  pkgdesc="A free, open source, portable framework for graphical application 
development (x11)"
+  depends=('libxi' 'libxrandr' 'libxinerama' 'libxcursor' 'libgl')
+  replaces=('glfw')
+  conflicts=('glfw')
+  provides=("glfw=$pkgver")
+
+  cd "$srcdir/$pkgbase-$pkgver"/build-x11
+
+  make DESTDIR=$pkgdir install
+
+  cd ..
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}
+
+package_glfw-wayland() {
+  pkgdesc="A free, open source, portable framework for graphical application 
development (wayland)"
+  depends=('wayland' 'libxkbcommon' 'libgl')

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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:35:18
  Author: svenstaro
Revision: 1035026

upgpkg: glfw 3.3.5-1

Modified:
  glfw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:26:31 UTC (rev 1035025)
+++ PKGBUILD2021-10-31 01:35:18 UTC (rev 1035026)
@@ -7,7 +7,7 @@
 
 pkgbase=glfw
 pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
-pkgver=3.3.4
+pkgver=3.3.5
 pkgrel=1
 arch=('x86_64')
 url="https://www.glfw.org/;
@@ -15,8 +15,8 @@
 makedepends=('mesa' 'cmake' 'doxygen' 'vulkan-headers' 'vulkan-icd-loader'
  'extra-cmake-modules' 'wayland-protocols' 'libxi' 'libxrandr'
  'libxcursor' 'libxkbcommon' 'libxinerama')
-source=("https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
-sha512sums=('2b45ab72da7a2c007c0f42ccd56205f9684cfb980e2b1df127850cd057bb2b02ce02c7c64acd54cd433778e7017148f214afedf09badff9d2edf5f9b8d9d2701')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
+sha512sums=('cbb8ebf25d3d826eb1daeff3ad2e0e965ce9def3352955f297743d918f625d96bc05bf87c90f7b57ec53376a0f2f6ce62f80b57fac4e81e023400de275e97beb')
 
 prepare() {
   cd "$srcdir/$pkgbase-$pkgver"



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:26:31
  Author: svenstaro
Revision: 1035025

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:26:20 UTC (rev 1035024)
+++ PKGBUILD2021-10-31 01:26:31 UTC (rev 1035025)
@@ -1,39 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=1.6.4
-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=('609bd9e6c7fea85b68586435280b37cb90c2af3cb0a3f63a5a37dfdcc822fdc7')
-
-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
-  sed -i "s/#version/$pkgver/" man/page
-  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
-  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
-  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
-  sed -i "s/#date//" man/page
-  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
-  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 1035024, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 01:26:31 UTC (rev 1035025)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib' 'libxcb')
+makedepends=('rust')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('0ebfd2cbe36ffa461a765af06598ec47650488ec562963c869443e8e7ef2d21b')
+
+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
+  sed -i "s/#version/$pkgver/" man/page
+  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
+  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
+  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
+  sed -i "s/#date//" man/page
+  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:26:20
  Author: svenstaro
Revision: 1035024

upgpkg: broot 1.7.0-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 01:16:26 UTC (rev 1035023)
+++ PKGBUILD2021-10-31 01:26:20 UTC (rev 1035024)
@@ -3,16 +3,16 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=1.6.4
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
 url=https://github.com/Canop/broot
 license=('MIT')
-depends=('gcc-libs' 'zlib')
+depends=('gcc-libs' 'zlib' 'libxcb')
 makedepends=('rust')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('609bd9e6c7fea85b68586435280b37cb90c2af3cb0a3f63a5a37dfdcc822fdc7')
+sha256sums=('0ebfd2cbe36ffa461a765af06598ec47650488ec562963c869443e8e7ef2d21b')
 
 build() {
   cd $pkgname-$pkgver



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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:16:26
  Author: svenstaro
Revision: 1035023

archrelease: copy trunk to community-x86_64

Added:
  gitlab-runner/repos/community-x86_64/PKGBUILD
(from rev 1035022, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
(from rev 1035022, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
(from rev 1035022, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
(from rev 1035022, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 1035022, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 1035022, gitlab-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-runner/repos/community-x86_64/PKGBUILD
  gitlab-runner/repos/community-x86_64/config.toml
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles

+
 PKGBUILD   |  188 +++
 config.toml|2 
 gitlab-runner.install  |   12 +--
 gitlab-runner.service  |   30 +++
 gitlab-runner.sysusers |2 
 gitlab-runner.tmpfiles |2 
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 01:15:58 UTC (rev 1035022)
+++ PKGBUILD2021-10-31 01:16:26 UTC (rev 1035023)
@@ -1,94 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-runner
-pkgver=14.3.1
-_commit=8b63c432
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'git' 'mercurial' 'gox')
-install=gitlab-runner.install
-replaces=('gitlab-ci-multi-runner')
-backup=('etc/gitlab-runner/config.toml')
-noextract=("prebuilt-alpine-arm-${pkgver}.tar.xz"
-   "prebuilt-alpine-arm64-${pkgver}.tar.xz"
-   "prebuilt-alpine-s390x-${pkgver}.tar.xz"
-   "prebuilt-alpine-x86_64-pwsh-${pkgver}.tar.xz"
-   "prebuilt-alpine-x86_64-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-arm-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-arm64-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-s390x-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-x86_64-pwsh-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-x86_64-${pkgver}.tar.xz")
-source=("git+https://gitlab.com/gitlab-org/gitlab-runner.git#tag=${_commit};
-
"prebuilt-alpine-arm-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-arm.tar.xz;
-
"prebuilt-alpine-arm64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-arm64.tar.xz;
-
"prebuilt-alpine-s390x-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-s390x.tar.xz;
-
"prebuilt-alpine-x86_64-pwsh-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-x86_64-pwsh.tar.xz;
-
"prebuilt-alpine-x86_64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-x86_64.tar.xz;
-
"prebuilt-ubuntu-arm-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-arm.tar.xz;
-
"prebuilt-ubuntu-arm64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-arm64.tar.xz;
-
"prebuilt-ubuntu-s390x-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-s390x.tar.xz;
-
"prebuilt-ubuntu-x86_64-pwsh-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-x86_64-pwsh.tar.xz;
-
"prebuilt-ubuntu-x86_64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-x86_64.tar.xz;
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"config.toml")
-sha512sums=('SKIP'
-
'baf04ace059e480920de482b49e648ba7530d5fade84243836656b0741b9946918089fd9ab0c971b96bf5e22f53f46d1583e60ac04146d4b6b865f0d927b7861'
-
'47b6b84db71db7af36066fc6f35f0f2dc989f161879e414867848fc76b38317d55d8d78959c0d3261f68cc5ae95245ed47aa987285f5ecef0b5a6da8a563b245'
-

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

2021-10-30 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 31, 2021 @ 01:15:58
  Author: svenstaro
Revision: 1035022

upgpkg: gitlab-runner 14.4.0-1

Modified:
  gitlab-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 00:04:06 UTC (rev 1035021)
+++ PKGBUILD2021-10-31 01:15:58 UTC (rev 1035022)
@@ -2,8 +2,8 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-runner
-pkgver=14.3.1
-_commit=8b63c432
+pkgver=14.4.0
+_commit=4b9e985a
 pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('x86_64')
@@ -40,16 +40,16 @@
 "gitlab-runner.tmpfiles"
 "config.toml")
 sha512sums=('SKIP'
-
'baf04ace059e480920de482b49e648ba7530d5fade84243836656b0741b9946918089fd9ab0c971b96bf5e22f53f46d1583e60ac04146d4b6b865f0d927b7861'
-
'47b6b84db71db7af36066fc6f35f0f2dc989f161879e414867848fc76b38317d55d8d78959c0d3261f68cc5ae95245ed47aa987285f5ecef0b5a6da8a563b245'
-
'fb499239287e960a9640af2027684d1b959cb33bbe6c61e47ae2701845b7e2aca02358d38f484c39837f0addce40bd92f093f76adcfd1de8db5285d123d5132d'
-
'457255fbb0c31519267da69fe173a2509a590684ff726dda3fa08ec899b1eb695687e76a134c1173a9f3863eb20a5a1ad853f7eca7095970eee75b74b36756ea'
-
'7ecf0e88ca11951125acc7784ce1d723da6824c37060296fc16bda15e01deae971a3126360235642a527d77fb9417d919a92719893c61d68be150378100c8f21'
-
'339288ba6ddd302c2ebe548ac1503735dfb760497b0bfad44a1898337a3c32edeb8ebfaaab38a0662ebce06257600d77009b628d5c848ed1a86889a839c7936f'
-
'712188589f1ed2c8986f558a3a82fe9a2ebe539cdc792e4c490667b7647d7bf4040f532ebe99e129aef3a831cef1d342e80ba9a8829749ee6d0b0e490070e40a'
-
'4fbe6bff6775a20d5a4b8954ffa4107a1d5c2e732a348893253c1d93c975ed9ee72e7621d9c2ac7ca667d9571271ed6be4405e79e6926b0d3b31e724c33733fd'
-
'13b63f2b9443ab8688c3ee00a3301d5302ed07345e757ec7ff79463255cf1ccec8c46fe9d8537625acaced5b6a83727b47056d97b204af3b1c8753a269e88bc7'
-
'4f90b1ebe7e11fa12170440308c914784c4cc8854f40318ce8127293ce9097d41eb0efd61d92e81dcce9c4c5661c5fc716a99aa137cd8181044beec65949063f'
+
'1a003a0a5dbe262e4497fa0b2ed5cec319b51a021a83ba5b84a546e608f071d6ab26566b6fb0289decf880a94b7d308a76c292e512243e8aaa662bc5f722040b'
+
'cd669587f824108be3c970c7b69aa3d344790eb8a366c9daed7df7baf53a5d3cb7bd8a92f986949476dbedd0de78e7a2a62b6f39cca9f7237b986fd27d59e055'
+
'3307161b0f6b8229d3e48abda12f61c3207f6cfff77e2bc01e7c4ea131563ebd4ca361e43572bb89d8c747acde586fc4578d8b14dcd806f328bea7e985828897'
+
'f1d18fd290a327d5b04c9ab6359ea3c15bdccb5c105b04bdc69f24e7fcb18f0fe64df724a99609483ad73a32bce5f907aed6aeb59b188334527af81bba7fc914'
+
'ca51ce8434bd7a3c3ccb965f40f0e8941d10f3631192aea30f3141108300fe93410be9e4a0f3e79a7af05759e99e142336347e4c25015bbfdbb491be3fecc92f'
+
'59b1d8629f03237cc75c986fcc6698a16aa17ef43079c169e54f34cff409b1c6b5a1804220f41c16ebba003f6ce544fe3f3653d28a80865cad5dbdbe37d5'
+
'a2d8e0365688b411caf75843abf24823e8712efce3b39f1f088ef9ebe473665bdcc18629fa2493cba5f06d1fd41ba744d4468c29a5910f9f397e0aa54c236bbc'
+
'71bd9d567e6c03bd4c766cad35be7cde99e68538b35dff8014557205e772b1d9783df534a566cb82668c65a43fd87e13c24b1c5d772f6d469a0dfbee10951706'
+
'a7075abc2b34ee7db2518323f3583d5047961c55f74fd6e1dac20e90b2ed4c22631a3c5ab03f3df2b95674b36c12f83c2b42aff4049c303ac1a6c2ad7e19b7bb'
+
'6fd8ea788ae21661d4c4332a4bf5dde0280de8c8ffb0cf865ec6d3ef3afdbb20bd8135bd98ce8fe8e0a4ea430ee25164e61a01d1cab51a52708407b204038283'
 
'c0af374b9986895aedcfaee6c67cfad68f0f7289f87e4611358adaff59a2f349f55764fe28b2b1f61f8bfeb61126d4f90d433c626fdf9b826a2de6217f86574f'
 
'8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
 
'6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Sunday, October 31, 2021 @ 00:04:06
  Author: felixonmars
Revision: 1035021

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 00:03:58 UTC (rev 1035020)
+++ PKGBUILD2021-10-31 00:04:06 UTC (rev 1035021)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pipreqs
-pkgver=0.4.10
-pkgrel=3
-pkgdesc="Pip requirements.txt generator based on imports in project"
-url="https://github.com/bndr/pipreqs;
-license=('MIT')
-arch=('any')
-depends=('python-docopt' 'python-yarg')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bndr/pipreqs/archive/v$pkgver.tar.gz;)
-sha512sums=('031fb48122f4e63d4df6a773567e69d8cf0746cdc846b9166d5b5c52bfa18ee309666926a75d43eecbf89f11e6cdc97789c4fd7cd9e42e2c497e992b767e8f3b')
-
-build() {
-  cd pipreqs-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pipreqs-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd pipreqs-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-pipreqs/repos/community-any/PKGBUILD (from rev 1035020, 
python-pipreqs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 00:04:06 UTC (rev 1035021)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pipreqs
+pkgver=0.4.11
+pkgrel=1
+pkgdesc="Pip requirements.txt generator based on imports in project"
+url="https://github.com/bndr/pipreqs;
+license=('MIT')
+arch=('any')
+depends=('python-docopt' 'python-yarg')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bndr/pipreqs/archive/v$pkgver.tar.gz;)
+sha512sums=('7ce21dad28d5fb672026fde1f1f324d858666d6f803c241a569f59aa20b6513f74796b25066c53d83b036321f5c743e7e362718cec524e529578817ba832839d')
+
+build() {
+  cd pipreqs-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pipreqs-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd pipreqs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Sunday, October 31, 2021 @ 00:03:58
  Author: felixonmars
Revision: 1035020

upgpkg: python-pipreqs 0.4.11-1

Modified:
  python-pipreqs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-31 00:03:52 UTC (rev 1035019)
+++ PKGBUILD2021-10-31 00:03:58 UTC (rev 1035020)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pipreqs
-pkgver=0.4.10
-pkgrel=3
+pkgver=0.4.11
+pkgrel=1
 pkgdesc="Pip requirements.txt generator based on imports in project"
 url="https://github.com/bndr/pipreqs;
 license=('MIT')
@@ -10,7 +10,7 @@
 depends=('python-docopt' 'python-yarg')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bndr/pipreqs/archive/v$pkgver.tar.gz;)
-sha512sums=('031fb48122f4e63d4df6a773567e69d8cf0746cdc846b9166d5b5c52bfa18ee309666926a75d43eecbf89f11e6cdc97789c4fd7cd9e42e2c497e992b767e8f3b')
+sha512sums=('7ce21dad28d5fb672026fde1f1f324d858666d6f803c241a569f59aa20b6513f74796b25066c53d83b036321f5c743e7e362718cec524e529578817ba832839d')
 
 build() {
   cd pipreqs-$pkgver



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Sunday, October 31, 2021 @ 00:03:52
  Author: felixonmars
Revision: 1035019

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-31 00:03:43 UTC (rev 1035018)
+++ PKGBUILD2021-10-31 00:03:52 UTC (rev 1035019)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-phonenumbers
-pkgver=8.12.35
-pkgrel=1
-pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
-arch=('any')
-url="https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('da598cb13e06e2741124ded636d2ed2216e4e6faf4129ee6f7cf9d1198a6640a0a07f1115862c302b6235e26a792af54c03abe83924652d0b152c77dd012e7cd')
-
-build() {
-  cd python-phonenumbers-$pkgver/python
-  python setup.py build
-}
-
-check() {
-  cd python-phonenumbers-$pkgver/python
-  python setup.py test
-}
-
-package() {
-  cd python-phonenumbers-$pkgver/python
-  python setup.py install -O1 --root "$pkgdir"
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 1035018, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-31 00:03:52 UTC (rev 1035019)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-phonenumbers
+pkgver=8.12.36
+pkgrel=1
+pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
+arch=('any')
+url="https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('e7ead689868228cef1196e8b00790404530d7591085ee379f1ed15f83890b1b95a0b7758f62ae72b4baccc619b6611317b6399d7e1885dc64e4220fd223b33b1')
+
+build() {
+  cd python-phonenumbers-$pkgver/python
+  python setup.py build
+}
+
+check() {
+  cd python-phonenumbers-$pkgver/python
+  python setup.py test
+}
+
+package() {
+  cd python-phonenumbers-$pkgver/python
+  python setup.py install -O1 --root "$pkgdir"
+}



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Sunday, October 31, 2021 @ 00:03:43
  Author: felixonmars
Revision: 1035018

upgpkg: python-phonenumbers 8.12.36-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 23:56:33 UTC (rev 1035017)
+++ PKGBUILD2021-10-31 00:03:43 UTC (rev 1035018)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-phonenumbers
-pkgver=8.12.35
+pkgver=8.12.36
 pkgrel=1
 pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python')
 makedepends=('python-setuptools')
 
source=("https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('da598cb13e06e2741124ded636d2ed2216e4e6faf4129ee6f7cf9d1198a6640a0a07f1115862c302b6235e26a792af54c03abe83924652d0b152c77dd012e7cd')
+sha512sums=('e7ead689868228cef1196e8b00790404530d7591085ee379f1ed15f83890b1b95a0b7758f62ae72b4baccc619b6611317b6399d7e1885dc64e4220fd223b33b1')
 
 build() {
   cd python-phonenumbers-$pkgver/python



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Saturday, October 30, 2021 @ 23:56:33
  Author: felixonmars
Revision: 1035017

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 23:56:25 UTC (rev 1035016)
+++ PKGBUILD2021-10-30 23:56:33 UTC (rev 1035017)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Matthew Sloan matt...@sloan.cc
-
-pkgname=python-pint
-pkgver=0.17
-pkgrel=1
-pkgdesc="A unit library for Python"
-arch=('any')
-license=('BSD')
-url="https://pint.readthedocs.org;
-depends=('python')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest-subtests' 'python-numpy' 'python-uncertainties')
-source=("https://pypi.io/packages/source/P/Pint/Pint-$pkgver.tar.gz;)
-sha512sums=('3e715d67b4a7b931ccaf7cdbeda4aa2338e7129840de447837f86696efb52117c6e6e832d1cc3605d160f12a631f3ce2e5dceff46be0de91460c3fec4c605146')
-
-prepare() {
-  cd Pint-$pkgver
-  sed -i 's/pkg_resources.extern.//' pint/quantity.py
-}
-
-check() {
-  cd Pint-$pkgver
-  pytest
-}
-
-package() {
-  cd Pint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pint/repos/community-any/PKGBUILD (from rev 1035016, 
python-pint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 23:56:33 UTC (rev 1035017)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Matthew Sloan matt...@sloan.cc
+
+pkgname=python-pint
+pkgver=0.18
+pkgrel=1
+pkgdesc="A unit library for Python"
+arch=('any')
+license=('BSD')
+url="https://pint.readthedocs.org;
+depends=('python')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest-subtests' 'python-numpy' 'python-uncertainties')
+source=("https://pypi.io/packages/source/P/Pint/Pint-$pkgver.tar.gz;)
+sha512sums=('46d1bb2e7e26316dd4ba077f95a57ba43d87cf1622ad6864029f2a7f7ab345925cc3cc1da674d5c21b41ec1c4c19bedff427740b7df22e7d7711b8c19f2fdbd3')
+
+prepare() {
+  cd Pint-$pkgver
+  sed -i 's/pkg_resources.extern.//' pint/quantity.py
+}
+
+check() {
+  cd Pint-$pkgver
+  pytest
+}
+
+package() {
+  cd Pint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Saturday, October 30, 2021 @ 23:56:25
  Author: felixonmars
Revision: 1035016

upgpkg: python-pint 0.18-1

Modified:
  python-pint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 22:26:14 UTC (rev 1035015)
+++ PKGBUILD2021-10-30 23:56:25 UTC (rev 1035016)
@@ -2,7 +2,7 @@
 # Contributor: Matthew Sloan matt...@sloan.cc
 
 pkgname=python-pint
-pkgver=0.17
+pkgver=0.18
 pkgrel=1
 pkgdesc="A unit library for Python"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools-scm')
 checkdepends=('python-pytest-subtests' 'python-numpy' 'python-uncertainties')
 source=("https://pypi.io/packages/source/P/Pint/Pint-$pkgver.tar.gz;)
-sha512sums=('3e715d67b4a7b931ccaf7cdbeda4aa2338e7129840de447837f86696efb52117c6e6e832d1cc3605d160f12a631f3ce2e5dceff46be0de91460c3fec4c605146')
+sha512sums=('46d1bb2e7e26316dd4ba077f95a57ba43d87cf1622ad6864029f2a7f7ab345925cc3cc1da674d5c21b41ec1c4c19bedff427740b7df22e7d7711b8c19f2fdbd3')
 
 prepare() {
   cd Pint-$pkgver



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

2021-10-30 Thread Felix Yan via arch-commits
Date: Saturday, October 30, 2021 @ 22:26:14
  Author: felixonmars
Revision: 1035015

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 1035014, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 22:26:06 UTC (rev 1035014)
+++ PKGBUILD2021-10-30 22:26:14 UTC (rev 1035015)
@@ -1,64 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=8.1.1
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
-# libgl: TODO
-# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
-# libxi: for cwebp (doc build)
-makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
-options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('5f4127d18f15e942bd30cb023b71449900a841d40421022dea4396f567a907e7825f3ce2aca1694ee08872f72d1b3b85e1b863f20647a1d61e4a9682b2983820')
-
-prepare() {
-  cd cli-$pkgver
-  mkdir -p node_modules/.bin
-  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
-
-  # Use local marked/marked-man
-  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
-
-  # Don't build twice
-  sed -i 's/install: all/install:/' Makefile
-
-  mkdir -p man/man1
-}
-
-build() {
-  cd cli-$pkgver
-  NODE_PATH=/usr/lib/node_modules make
-}
-
-package() {
-  cd cli-$pkgver
-  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  # Experimental dedup
-  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
-  rm -r "$_npmdir"/node_modules/{,.bin/}semver
-  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
-  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
-  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
-"$_npmdir"/bin/node-gyp-bin/node-gyp
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  node "$srcdir"/cli-$pkgver/bin/npm-cli.js completion > 
"$pkgdir"/usr/share/bash-completion/completions/npm
-
-  mv "$pkgdir"/usr/lib/node_modules/npm/man "$pkgdir"/usr/share/
-
-  install -Dm644 "$srcdir"/cli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 1035014, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 22:26:14 UTC (rev 1035015)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=8.1.2
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
+# libgl: TODO
+# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
+# libxi: for cwebp (doc build)
+makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
+options=('!emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
+sha512sums=('d8317209d0f2b7f53e68ded87d5020cad0b3b1491b7b2fb89f2c207d4b6f4f615ef63047b109881e3d86ae0600867e37f695d16f9033641b9c3a0575eff981d3')
+
+prepare() {
+  cd cli-$pkgver
+  mkdir -p node_modules/.bin
+  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
+
+  # Use local marked/marked-man
+  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
+
+  # Don't build twice
+  sed -i 's/install: all/install:/' Makefile
+
+  mkdir -p man/man1
+}
+
+build() {
+  cd cli-$pkgver
+  NODE_PATH=/usr/lib/node_modules make
+}
+
+package() {
+  cd cli-$pkgver
+  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Experimental dedup
+  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
+  rm -r "$_npmdir"/node_modules/{,.bin/}semver
+  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
+  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
+  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
+

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

2021-10-30 Thread Felix Yan via arch-commits
Date: Saturday, October 30, 2021 @ 22:26:06
  Author: felixonmars
Revision: 1035014

upgpkg: npm 8.1.2-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:28:23 UTC (rev 1035013)
+++ PKGBUILD2021-10-30 22:26:06 UTC (rev 1035014)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=8.1.1
+pkgver=8.1.2
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
 options=('!emptydirs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('5f4127d18f15e942bd30cb023b71449900a841d40421022dea4396f567a907e7825f3ce2aca1694ee08872f72d1b3b85e1b863f20647a1d61e4a9682b2983820')
+sha512sums=('d8317209d0f2b7f53e68ded87d5020cad0b3b1491b7b2fb89f2c207d4b6f4f615ef63047b109881e3d86ae0600867e37f695d16f9033641b9c3a0575eff981d3')
 
 prepare() {
   cd cli-$pkgver



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:28:23
  Author: foxboron
Revision: 1035013

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:28:17 UTC (rev 1035012)
+++ PKGBUILD2021-10-30 20:28:23 UTC (rev 1035013)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=python-milc
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="Opinionated Batteries-Included Python 3 CLI Framework."
-arch=("any")
-url="https://milc.clueboard.co/#/;
-license=("MIT")
-depends=("python-appdirs" "python-argcomplete" "python-colorama" "python-halo")
-makedepends=("python-setuptools")
-checkdepends=("python-semver" "python-nose2")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/clueboard/milc/archive/${pkgver}.tar.gz;)
-sha256sums=('b4ba7c099aad04cf9addc12f924d8caff23039c4674b304962c59c02594eea39')
-
-build() {
-cd "${pkgname#python-}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname#python-}-${pkgver}"
-rm tests/test_script*.py
-nose2
-}
-
-package() {
-cd "${pkgname#python-}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-milc/repos/community-any/PKGBUILD (from rev 1035012, 
python-milc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:28:23 UTC (rev 1035013)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-milc
+pkgver=1.6.5
+pkgrel=1
+pkgdesc="Opinionated Batteries-Included Python 3 CLI Framework."
+arch=("any")
+url="https://milc.clueboard.co/#/;
+license=("MIT")
+depends=("python-appdirs" "python-argcomplete" "python-colorama" "python-halo")
+makedepends=("python-setuptools")
+checkdepends=("python-semver" "python-nose2")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/clueboard/milc/archive/${pkgver}.tar.gz;)
+sha256sums=('c2ec7ca643f7bc59ed22b510cdd2ff9fb28c1778a9b98021c4386bcb6854ea08')
+
+build() {
+cd "${pkgname#python-}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname#python-}-${pkgver}"
+rm tests/test_script*.py
+nose2
+}
+
+package() {
+cd "${pkgname#python-}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:28:17
  Author: foxboron
Revision: 1035012

upgpkg: python-milc 1.6.5-1

Modified:
  python-milc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:27:32 UTC (rev 1035011)
+++ PKGBUILD2021-10-30 20:28:17 UTC (rev 1035012)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=python-milc
-pkgver=1.4.2
+pkgver=1.6.5
 pkgrel=1
 pkgdesc="Opinionated Batteries-Included Python 3 CLI Framework."
 arch=("any")
@@ -11,7 +11,7 @@
 makedepends=("python-setuptools")
 checkdepends=("python-semver" "python-nose2")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/clueboard/milc/archive/${pkgver}.tar.gz;)
-sha256sums=('b4ba7c099aad04cf9addc12f924d8caff23039c4674b304962c59c02594eea39')
+sha256sums=('c2ec7ca643f7bc59ed22b510cdd2ff9fb28c1778a9b98021c4386bcb6854ea08')
 
 build() {
 cd "${pkgname#python-}-${pkgver}"



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:27:32
  Author: foxboron
Revision: 1035011

archrelease: copy trunk to community-any

Added:
  qmk/repos/community-any/PKGBUILD
(from rev 1035010, qmk/trunk/PKGBUILD)
Deleted:
  qmk/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:27:26 UTC (rev 1035010)
+++ PKGBUILD2021-10-30 20:27:32 UTC (rev 1035011)
@@ -1,43 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Akaash Suresh 
-# Contributor: Batuhan Baserdem 
-
-pkgname=qmk
-pkgver=0.2.2
-_qmk_pkgver=0.13.26
-pkgrel=1
-pkgdesc="CLI tool for customizing supported mechanical keyboards."
-arch=('any')
-url="https://github.com/qmk/qmk_cli;
-license=('MIT')
-depends=('python-appdirs' 'python-argcomplete' 'python-colorama'
- 'python-milc' 'python-dotty-dict' 'python-jsonschema' 'git' 
- 'avr-gcc' 'arm-none-eabi-gcc' 'avr-libc'
- 'arm-none-eabi-binutils' 'arm-none-eabi-newlib' 'avr-binutils'
- 'dfu-programmer' 'dfu-util' 'avrdude' 'python-hjson' 'python-pygments'
- 'python-hid' 'python-pyusb')
-makedepends=('python-setuptools')
-optdepends=('gcc'
-'libffi'
-'libusb-compat'
-'clang: chibios-upgrader'
-'zip: some distribution script'
-'wget: some update scripts'
-'diffutils: some update scripts')
-source=("https://files.pythonhosted.org/packages/source/q/qmk/qmk-${pkgver}.tar.gz;
-
"50-qmk.rules_${pkgver}::https://raw.githubusercontent.com/qmk/qmk_firmware/${_qmk_pkgver}/util/udev/50-qmk.rules;)
-sha256sums=('1d5ab822d61692e5608c7268c588b1a6630159d9c4354e0010d220cb89d28ea2'
-'6503d05a8acae64c93ddce7ae814ba6cd20cd9c4d4501aad93bb0b9ccf427fed')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -d "${pkgdir}/usr/lib/udev/rules.d"
-  install -Dm644 ../"50-qmk.rules_${pkgver}" 
"${pkgdir}/usr/lib/udev/rules.d/50-qmk.rules"
-}

Copied: qmk/repos/community-any/PKGBUILD (from rev 1035010, qmk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:27:32 UTC (rev 1035011)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Contributor: Akaash Suresh 
+# Contributor: Batuhan Baserdem 
+
+pkgname=qmk
+pkgver=1.0.0
+_qmk_udev_pkgver=0.1.1
+pkgrel=1
+pkgdesc="CLI tool for customizing supported mechanical keyboards."
+arch=('any')
+url="https://github.com/qmk/qmk_cli;
+license=('MIT')
+depends=('python-appdirs' 'python-argcomplete' 'python-colorama'
+ 'python-milc' 'python-dotty-dict' 'python-jsonschema' 'git' 
+ 'avr-gcc' 'arm-none-eabi-gcc' 'avr-libc'
+ 'arm-none-eabi-binutils' 'arm-none-eabi-newlib' 'avr-binutils'
+ 'dfu-programmer' 'dfu-util' 'avrdude' 'python-hjson' 'python-pygments'
+ 'python-hid' 'python-pyusb')
+makedepends=('python-build' 'python-install' 'python-wheel')
+optdepends=('gcc'
+'libffi'
+'libusb-compat'
+'clang: chibios-upgrader'
+'zip: some distribution script'
+'wget: some update scripts'
+'diffutils: some update scripts')
+source=("https://files.pythonhosted.org/packages/source/q/qmk/qmk-${pkgver}.tar.gz;
+
"qmk-udev-${_qmk_udev_pkgver}.tar.gz::https://github.com/qmk/qmk_udev/archive/refs/tags/v${_qmk_udev_pkgver}.tar.gz;)
+sha256sums=('da62eec73c4548cc37b0b9be3937202dc3a301dc2f2663610ecca751a610f9ca'
+'e6cde001890e1d030d13bbe18799b76754aaea8a6d1309ce8c7956d713714920')
+
+build() {
+  make -C qmk_udev-${_qmk_udev_pkgver}
+  cd "${pkgname}-${pkgver}"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+package() {
+  make -C qmk_udev-${_qmk_udev_pkgver} DESTDIR="$pkgdir" PREFIX=/usr install
+  cd "${pkgname}-${pkgver}"
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+  chmod +x "$pkgdir"/usr/bin/*
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:27:26
  Author: foxboron
Revision: 1035010

upgpkg: qmk 1.0.0-1

Modified:
  qmk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:12:05 UTC (rev 1035009)
+++ PKGBUILD2021-10-30 20:27:26 UTC (rev 1035010)
@@ -3,8 +3,8 @@
 # Contributor: Batuhan Baserdem 
 
 pkgname=qmk
-pkgver=0.2.2
-_qmk_pkgver=0.13.26
+pkgver=1.0.0
+_qmk_udev_pkgver=0.1.1
 pkgrel=1
 pkgdesc="CLI tool for customizing supported mechanical keyboards."
 arch=('any')
@@ -16,7 +16,7 @@
  'arm-none-eabi-binutils' 'arm-none-eabi-newlib' 'avr-binutils'
  'dfu-programmer' 'dfu-util' 'avrdude' 'python-hjson' 'python-pygments'
  'python-hid' 'python-pyusb')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-install' 'python-wheel')
 optdepends=('gcc'
 'libffi'
 'libusb-compat'
@@ -25,19 +25,20 @@
 'wget: some update scripts'
 'diffutils: some update scripts')
 
source=("https://files.pythonhosted.org/packages/source/q/qmk/qmk-${pkgver}.tar.gz;
-
"50-qmk.rules_${pkgver}::https://raw.githubusercontent.com/qmk/qmk_firmware/${_qmk_pkgver}/util/udev/50-qmk.rules;)
-sha256sums=('1d5ab822d61692e5608c7268c588b1a6630159d9c4354e0010d220cb89d28ea2'
-'6503d05a8acae64c93ddce7ae814ba6cd20cd9c4d4501aad93bb0b9ccf427fed')
+
"qmk-udev-${_qmk_udev_pkgver}.tar.gz::https://github.com/qmk/qmk_udev/archive/refs/tags/v${_qmk_udev_pkgver}.tar.gz;)
+sha256sums=('da62eec73c4548cc37b0b9be3937202dc3a301dc2f2663610ecca751a610f9ca'
+'e6cde001890e1d030d13bbe18799b76754aaea8a6d1309ce8c7956d713714920')
 
 build() {
+  make -C qmk_udev-${_qmk_udev_pkgver}
   cd "${pkgname}-${pkgver}"
-  python setup.py build
+  python -m build --wheel --skip-dependency-check --no-isolation
 }
 
 package() {
+  make -C qmk_udev-${_qmk_udev_pkgver} DESTDIR="$pkgdir" PREFIX=/usr install
   cd "${pkgname}-${pkgver}"
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+  chmod +x "$pkgdir"/usr/bin/*
   install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -d "${pkgdir}/usr/lib/udev/rules.d"
-  install -Dm644 ../"50-qmk.rules_${pkgver}" 
"${pkgdir}/usr/lib/udev/rules.d/50-qmk.rules"
 }



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 20:13:24
  Author: andyrtr
Revision: 426847

archrelease: copy trunk to extra-x86_64

Added:
  libxcvt/repos/extra-x86_64/PKGBUILD
(from rev 426846, libxcvt/trunk/PKGBUILD)
Deleted:
  libxcvt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:13:18 UTC (rev 426846)
+++ PKGBUILD2021-10-30 20:13:24 UTC (rev 426847)
@@ -1,29 +0,0 @@
-# Maintainer: AndyRTR 
-
-pkgname=libxcvt
-pkgver=0.1.0
-pkgrel=1
-pkgdesc="library providing a standalone version of the X server implementation 
of the VESA CVT standard timing modelines generator"
-arch=('x86_64')
-url="https://gitlab.freedesktop.org/xorg/lib/libxcvt;
-license=('custom')
-depends=('glibc')
-makedepends=('meson')
-source=(https://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha256sums=('266ded49b8aeae5b387768f5be232c6538e321737fa07fbbc9a6f6924d271a00'
-'SKIP')
-validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
-
-build() {
-  arch-meson ${pkgname}-${pkgver} build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build #--print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" 
"${pkgname}-${pkgver}/COPYING"
-}

Copied: libxcvt/repos/extra-x86_64/PKGBUILD (from rev 426846, 
libxcvt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:13:24 UTC (rev 426847)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+
+pkgname=libxcvt
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="library providing a standalone version of the X server implementation 
of the VESA CVT standard timing modelines generator"
+arch=('x86_64')
+url="https://gitlab.freedesktop.org/xorg/lib/libxcvt;
+license=('custom')
+depends=('glibc')
+makedepends=('meson')
+source=(https://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha512sums=('50e9cd0283858823d4cfde75f06e23ffc42983272cb1f75408052fb5b76a4bb6f9de7d42d8ff9ec0dae6e95eefebc6273e03c919a92f237585db55eaf1a57005'
+'SKIP')
+#validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
+validpgpkeys=('67DC86F2623FC5FD4BB5225D14706DBE1E4B4540') # "Olivier Fourdan 
"
+
+build() {
+  arch-meson ${pkgname}-${pkgver} build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build #--print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" 
"${pkgname}-${pkgver}/COPYING"
+}



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 20:13:18
  Author: andyrtr
Revision: 426846

upgpkg: libxcvt 0.1.1-1: upstream update 0.1.1

Modified:
  libxcvt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:03:43 UTC (rev 426845)
+++ PKGBUILD2021-10-30 20:13:18 UTC (rev 426846)
@@ -1,7 +1,7 @@
 # Maintainer: AndyRTR 
 
 pkgname=libxcvt
-pkgver=0.1.0
+pkgver=0.1.1
 pkgrel=1
 pkgdesc="library providing a standalone version of the X server implementation 
of the VESA CVT standard timing modelines generator"
 arch=('x86_64')
@@ -10,9 +10,10 @@
 depends=('glibc')
 makedepends=('meson')
 
source=(https://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha256sums=('266ded49b8aeae5b387768f5be232c6538e321737fa07fbbc9a6f6924d271a00'
+sha512sums=('50e9cd0283858823d4cfde75f06e23ffc42983272cb1f75408052fb5b76a4bb6f9de7d42d8ff9ec0dae6e95eefebc6273e03c919a92f237585db55eaf1a57005'
 'SKIP')
-validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
+#validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
+validpgpkeys=('67DC86F2623FC5FD4BB5225D14706DBE1E4B4540') # "Olivier Fourdan 
"
 
 build() {
   arch-meson ${pkgname}-${pkgver} build



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:12:05
  Author: foxboron
Revision: 1035009

archrelease: copy trunk to community-x86_64

Added:
  git-lfs/repos/community-x86_64/PKGBUILD
(from rev 1035008, git-lfs/trunk/PKGBUILD)
Deleted:
  git-lfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:11:58 UTC (rev 1035008)
+++ PKGBUILD2021-10-30 20:12:05 UTC (rev 1035009)
@@ -1,39 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=git-lfs
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="Git extension for versioning large files"
-arch=('x86_64')
-url="https://git-lfs.github.com;
-license=('MIT')
-makedepends=('go' 'ruby-ronn' 'go-tools')
-depends=('git')
-source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver}?signed;)
-validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

-sha256sums=('SKIP')
-
-build(){
-  cd "$pkgname"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw 
-ldflags=-linkmode=external"
-  go generate ./commands
-  go build .
-  make man
-}
-
-check(){
-  cd "$pkgname"
-  go test -mod=vendor ./...
-}
-
-package() {
-  cd "$pkgname"
-  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1
-  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5
-}

Copied: git-lfs/repos/community-x86_64/PKGBUILD (from rev 1035008, 
git-lfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:12:05 UTC (rev 1035009)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud 
+
+pkgname=git-lfs
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Git extension for versioning large files"
+arch=('x86_64')
+url="https://git-lfs.github.com;
+license=('MIT')
+makedepends=('go' 'ruby-ronn' 'go-tools')
+depends=('git')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver}?signed;)
+validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
+
+build(){
+  cd "$pkgname"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw 
-ldflags=-linkmode=external"
+  go generate ./commands
+  go build .
+  make man
+}
+
+check(){
+  cd "$pkgname"
+  go test -mod=vendor ./...
+}
+
+package() {
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1
+  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5
+}



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:11:58
  Author: foxboron
Revision: 1035008

upgpkg: git-lfs 3.0.2-1

Modified:
  git-lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:11:23 UTC (rev 1035007)
+++ PKGBUILD2021-10-30 20:11:58 UTC (rev 1035008)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=git-lfs
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="Git extension for versioning large files"
 arch=('x86_64')



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:11:23
  Author: foxboron
Revision: 1035007

archrelease: copy trunk to community-x86_64

Added:
  tailscale/repos/community-x86_64/PKGBUILD
(from rev 1035006, tailscale/trunk/PKGBUILD)
Deleted:
  tailscale/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:11:17 UTC (rev 1035006)
+++ PKGBUILD2021-10-30 20:11:23 UTC (rev 1035007)
@@ -1,57 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: David Anderson 
-
-pkgname=tailscale
-pkgver=1.16.1
-pkgrel=1
-pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
-arch=("x86_64")
-url="https://tailscale.com;
-license=("MIT")
-makedepends=("git" "go")
-depends=("glibc")
-backup=("etc/default/tailscaled")
-_commit=4f4000fbe9d996106158ffd535cb6cb5627ae187   #refs/tags/v1.16.1^{}
-source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-cd "${pkgname}"
-go mod vendor
-}
-
-build() {
-cd "${pkgname}"
-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_LDFLAGS="\
--linkmode=external \
--X tailscale.com/version.Long=${pkgver} \
--X tailscale.com/version.Short=$(cut -d+ -f1 <<< "${pkgver}") \
--X tailscale.com/version.GitCommit=${_commit}"
-for cmd in ./cmd/tailscale ./cmd/tailscaled; do
-go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
-done
-}
-
-#TODO: Figure out why tests are failing
-# check() {
-# cd "${pkgname}"
-# go test $(go list ./... | grep -v tsdns_test)
-# }
-
-package() {
-cd "${pkgname}"
-install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
-install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
-install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tailscale/repos/community-x86_64/PKGBUILD (from rev 1035006, 
tailscale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:11:23 UTC (rev 1035007)
@@ -0,0 +1,57 @@
+# Maintainer: Morten Linderud 
+# Contributor: David Anderson 
+
+pkgname=tailscale
+pkgver=1.16.2
+pkgrel=1
+pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
+arch=("x86_64")
+url="https://tailscale.com;
+license=("MIT")
+makedepends=("git" "go")
+depends=("glibc")
+backup=("etc/default/tailscaled")
+_commit=b56ba20549aedc0e56d09dca2552ca62421b2cbd   #refs/tags/v1.16.2^{}
+source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+cd "${pkgname}"
+go mod vendor
+}
+
+build() {
+cd "${pkgname}"
+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_LDFLAGS="\
+-linkmode=external \
+-X tailscale.com/version.Long=${pkgver} \
+-X tailscale.com/version.Short=$(cut -d+ -f1 <<< "${pkgver}") \
+-X tailscale.com/version.GitCommit=${_commit}"
+for cmd in ./cmd/tailscale ./cmd/tailscaled; do
+go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
+done
+}
+
+#TODO: Figure out why tests are failing
+# check() {
+# cd "${pkgname}"
+# go test $(go list ./... | grep -v tsdns_test)
+# }
+
+package() {
+cd "${pkgname}"
+install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
+install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
+install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:11:17
  Author: foxboron
Revision: 1035006

upgpkg: tailscale 1.16.2-1

Modified:
  tailscale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 20:09:37 UTC (rev 1035005)
+++ PKGBUILD2021-10-30 20:11:17 UTC (rev 1035006)
@@ -2,7 +2,7 @@
 # Contributor: David Anderson 
 
 pkgname=tailscale
-pkgver=1.16.1
+pkgver=1.16.2
 pkgrel=1
 pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
 arch=("x86_64")
@@ -11,7 +11,7 @@
 makedepends=("git" "go")
 depends=("glibc")
 backup=("etc/default/tailscaled")
-_commit=4f4000fbe9d996106158ffd535cb6cb5627ae187   #refs/tags/v1.16.1^{}
+_commit=b56ba20549aedc0e56d09dca2552ca62421b2cbd   #refs/tags/v1.16.2^{}
 source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
 sha256sums=('SKIP')
 



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:09:37
  Author: foxboron
Revision: 1035005

archrelease: copy trunk to community-any

Added:
  salt/repos/community-any/PKGBUILD
(from rev 1035004, salt/trunk/PKGBUILD)
  salt/repos/community-any/salt.install
(from rev 1035004, salt/trunk/salt.install)
  salt/repos/community-any/salt.logrotate
(from rev 1035004, salt/trunk/salt.logrotate)
Deleted:
  salt/repos/community-any/PKGBUILD
  salt/repos/community-any/salt.install
  salt/repos/community-any/salt.logrotate

+
 PKGBUILD   |  162 +++
 salt.install   |   44 +++---
 salt.logrotate |   24 
 3 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:09:29 UTC (rev 1035004)
+++ PKGBUILD2021-10-30 20:09:37 UTC (rev 1035005)
@@ -1,81 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Morten Linderud 
-# Contributor: Sébastien Luttringer
-# Contributor: Daniel Wallace 
-# Contributor: Christer Edwards 
-# Contributor: zer0def 
-
-pkgname=salt
-pkgver=3003.3
-pkgrel=1
-
-pkgdesc='Central system and configuration manager'
-arch=('any')
-url='http://saltstack.org/'
-license=('Apache')
-
-replaces=('salt-zmq' 'salt-raet')
-conflicts=('salt-zmq' 'salt-raet')
-
-depends=('python-jinja'
- 'python-msgpack'
- 'python-yaml'
- 'python-markupsafe'
- 'python-requests'
- 'python-pyzmq'
- 'python-m2crypto'
- 'python-systemd'
- 'python-distro'
- 'python-pycryptodomex')
-optdepends=('dmidecode: decode SMBIOS/DMI tables'
-'python-pygit2: gitfs support')
-#checkdepends=('python-pytest' 'python-psutil')
-
-backup=('etc/logrotate.d/salt'
-'etc/salt/master'
-'etc/salt/minion')
-
-install=salt.install
-source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;
-salt.logrotate)
-
-sha256sums=('a6f9c8c8b5e2600ea8620b4a67371de17611beb4f8d97e4bb9b0b308a37ed1e2'
-'abecc3c1be124c4afffaaeb3ba32b60dfee8ba6dc32189edfa2ad154ecb7a215')
-
-prepare() {
-  sed -i '/^contextvars/d' $pkgname-$pkgver/requirements/base.txt
-}
-
-build() {
-  cd salt-$pkgver
-  python setup.py build
-}
-
-# TODO: Missing salt-factories, pytest-tempdir
-# check() {
-#   cd salt-$pkgver
-#   python setup.py install --root="$PWD/tmp_install" --optimize=1
-#   PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
-# }
-
-package() {
-  install -Dm644 salt.logrotate "$pkgdir"/etc/logrotate.d/salt
-
-  cd salt-$pkgver
-
-  export PYTHONHASHSEED=0
-  python setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1 --skip-build
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-any/PKGBUILD (from rev 1035004, 
salt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:09:37 UTC (rev 1035005)
@@ -0,0 +1,81 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Morten Linderud 
+# Contributor: Sébastien Luttringer
+# Contributor: Daniel Wallace 
+# Contributor: Christer Edwards 
+# Contributor: zer0def 
+
+pkgname=salt
+pkgver=3004
+pkgrel=1
+
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+
+replaces=('salt-zmq' 'salt-raet')
+conflicts=('salt-zmq' 'salt-raet')
+
+depends=('python-jinja'
+ 'python-msgpack'
+ 'python-yaml'
+ 'python-markupsafe'
+ 'python-requests'
+ 'python-pyzmq'
+ 'python-m2crypto'
+ 'python-systemd'
+ 'python-distro'
+ 'python-pycryptodomex')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python-pygit2: gitfs support')
+#checkdepends=('python-pytest' 'python-psutil')
+
+backup=('etc/logrotate.d/salt'
+'etc/salt/master'
+'etc/salt/minion')
+
+install=salt.install
+source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;
+salt.logrotate)
+
+sha256sums=('3d53561bc86e014dca2ec3dc981079be04d55ea047890cabde25e5b10bfa5b13'
+'abecc3c1be124c4afffaaeb3ba32b60dfee8ba6dc32189edfa2ad154ecb7a215')
+
+prepare() {
+  sed -i '/^contextvars/d' $pkgname-$pkgver/requirements/base.txt
+}
+
+build() {
+  cd salt-$pkgver
+  python setup.py build
+}
+
+# TODO: Missing salt-factories, 

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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 20:09:29
  Author: foxboron
Revision: 1035004

upgpkg: salt 3004-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:50:10 UTC (rev 1035003)
+++ PKGBUILD2021-10-30 20:09:29 UTC (rev 1035004)
@@ -6,7 +6,7 @@
 # Contributor: zer0def 
 
 pkgname=salt
-pkgver=3003.3
+pkgver=3004
 pkgrel=1
 
 pkgdesc='Central system and configuration manager'
@@ -39,7 +39,7 @@
 source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;
 salt.logrotate)
 
-sha256sums=('a6f9c8c8b5e2600ea8620b4a67371de17611beb4f8d97e4bb9b0b308a37ed1e2'
+sha256sums=('3d53561bc86e014dca2ec3dc981079be04d55ea047890cabde25e5b10bfa5b13'
 'abecc3c1be124c4afffaaeb3ba32b60dfee8ba6dc32189edfa2ad154ecb7a215')
 
 prepare() {
@@ -66,15 +66,16 @@
   python setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1 --skip-build
 
   # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+  install -v -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -v -Dm644 conf/minion "$pkgdir/etc/salt/minion"
 
   # systemd services
   for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+install -v -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
   done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+  install -v -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -v -Dm644 pkg/salt.zsh "$pkgdir/usr/share/zsh/site-functions/_salt"
+  install -v -Dm644 -t "$pkgdir/usr/share/fish/vendor_completions.d" 
pkg/fish-completions/*
 }
 
 # vim:set ts=2 sw=2 et:



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 20:03:43
  Author: andyrtr
Revision: 426845

archrelease: copy trunk to extra-x86_64

Added:
  xmlsec/repos/extra-x86_64/PKGBUILD
(from rev 426844, xmlsec/trunk/PKGBUILD)
Deleted:
  xmlsec/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 20:03:37 UTC (rev 426844)
+++ PKGBUILD2021-10-30 20:03:43 UTC (rev 426845)
@@ -1,36 +0,0 @@
-# Maintainer: AndyRTR 
-# Contributor: Jan de Groot 
-# Contributor: Hussam Al-Tayeb 
-
-pkgname=xmlsec
-pkgver=1.2.32
-pkgrel=1
-pkgdesc="XML Security Library is a C library based on LibXML2"
-license=('custom')
-arch=('x86_64')
-url="https://www.aleksey.com/xmlsec/index.html;
-depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
-provides=('libxmlsec1.so' 'libxmlsec1-openssl.so' 'libxmlsec1-nss.so' 
'libxmlsec1-gnutls.so' 'libxmlsec1-gcrypt.so')
-#source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.{tar.gz,sig})
 # signature file not compatible
-source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
-sha256sums=('e383702853236004e5b08e424b8afe9b53fe9f31aaa7a5382f39d9533eb7c043')
-#validpgpkeys=('') #
-
-build() {
-  cd ${pkgname}1-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}1-$pkgver
-  make -k check
-}
-
-package() {
-  cd ${pkgname}1-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: xmlsec/repos/extra-x86_64/PKGBUILD (from rev 426844, 
xmlsec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 20:03:43 UTC (rev 426845)
@@ -0,0 +1,36 @@
+# Maintainer: AndyRTR 
+# Contributor: Jan de Groot 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=xmlsec
+pkgver=1.2.33
+pkgrel=1
+pkgdesc="XML Security Library is a C library based on LibXML2"
+license=('custom')
+arch=('x86_64')
+url="https://www.aleksey.com/xmlsec/index.html;
+depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
+provides=('libxmlsec1.so' 'libxmlsec1-openssl.so' 'libxmlsec1-nss.so' 
'libxmlsec1-gnutls.so' 'libxmlsec1-gcrypt.so')
+#source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.{tar.gz,sig})
 # signature file not compatible
+source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
+sha256sums=('26041d35a20a245ed5a2fb9ee075f10825664d274220cb5190340fa87a4d0931')
+#validpgpkeys=('') #
+
+build() {
+  cd ${pkgname}1-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd ${pkgname}1-$pkgver
+  make -k check
+}
+
+package() {
+  cd ${pkgname}1-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 20:03:37
  Author: andyrtr
Revision: 426844

upgpkg: xmlsec 1.2.33-1: upstream update 1.2.33

Modified:
  xmlsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:43:48 UTC (rev 426843)
+++ PKGBUILD2021-10-30 20:03:37 UTC (rev 426844)
@@ -3,7 +3,7 @@
 # Contributor: Hussam Al-Tayeb 
 
 pkgname=xmlsec
-pkgver=1.2.32
+pkgver=1.2.33
 pkgrel=1
 pkgdesc="XML Security Library is a C library based on LibXML2"
 license=('custom')
@@ -13,7 +13,7 @@
 provides=('libxmlsec1.so' 'libxmlsec1-openssl.so' 'libxmlsec1-nss.so' 
'libxmlsec1-gnutls.so' 'libxmlsec1-gcrypt.so')
 
#source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.{tar.gz,sig})
 # signature file not compatible
 source=(https://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
-sha256sums=('e383702853236004e5b08e424b8afe9b53fe9f31aaa7a5382f39d9533eb7c043')
+sha256sums=('26041d35a20a245ed5a2fb9ee075f10825664d274220cb5190340fa87a4d0931')
 #validpgpkeys=('') #
 
 build() {



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

2021-10-30 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, October 30, 2021 @ 19:50:10
  Author: orhun
Revision: 1035003

archrelease: copy trunk to community-x86_64

Added:
  lfs/repos/community-x86_64/PKGBUILD
(from rev 1035002, lfs/trunk/PKGBUILD)
Deleted:
  lfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 19:49:59 UTC (rev 1035002)
+++ PKGBUILD2021-10-30 19:50:10 UTC (rev 1035003)
@@ -1,32 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=lfs
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="Get information on your mounted disks"
-arch=('x86_64')
-url="https://github.com/Canop/lfs;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('0cf5b67d975d91722a973ce3955b9e7f471cfa8a990f678bdb6521ac44e44776af789650e6dc022567e15309fb92f370b961262593f20b2f23bde7e3e60f042d')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lfs/repos/community-x86_64/PKGBUILD (from rev 1035002, 
lfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 19:50:10 UTC (rev 1035003)
@@ -0,0 +1,32 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=lfs
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Get information on your mounted disks"
+arch=('x86_64')
+url="https://github.com/Canop/lfs;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('a46290f7d73af225d3675ad9b72fd2c63770460d524f209da414cda3a54b2c6bc4c3d1ba0013d94bc69af5cf7a00df3934159030d2cff708c55880561814be70')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-30 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, October 30, 2021 @ 19:49:59
  Author: orhun
Revision: 1035002

upgpkg: lfs 1.2.1-1: upstream release

Modified:
  lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:46:06 UTC (rev 1035001)
+++ PKGBUILD2021-10-30 19:49:59 UTC (rev 1035002)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=lfs
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="Get information on your mounted disks"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('0cf5b67d975d91722a973ce3955b9e7f471cfa8a990f678bdb6521ac44e44776af789650e6dc022567e15309fb92f370b961262593f20b2f23bde7e3e60f042d')
+sha512sums=('a46290f7d73af225d3675ad9b72fd2c63770460d524f209da414cda3a54b2c6bc4c3d1ba0013d94bc69af5cf7a00df3934159030d2cff708c55880561814be70')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:46:06
  Author: andyrtr
Revision: 1035001

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 1035000, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-30 19:46:06 UTC (rev 1035001)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+pkgver=0.43
+pkgrel=188
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-lts-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tp_smapi
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd tp_smapi
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:46:01
  Author: andyrtr
Revision: 1035000

upgpkg: tp_smapi-lts 0.43-188: kernel rebuild

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:45:16 UTC (rev 1034999)
+++ PKGBUILD2021-10-30 19:46:01 UTC (rev 1035000)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=187
+pkgrel=188
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:45:16
  Author: andyrtr
Revision: 1034999

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 1034998, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-30 19:45:16 UTC (rev 1034999)
@@ -0,0 +1,43 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.049.02
+pkgrel=27
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/r8168-$pkgver.tar.gz.asc)
+sha256sums=('2b12d932e976f8f74b8d9545744c04beb4676dd7bc1d032dde51347ed1d8be24'
+'SKIP')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF')
+
+build() {
+   cd "r8168-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux-lts M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:45:11
  Author: andyrtr
Revision: 1034998

upgpkg: r8168-lts 8.049.02-27: kernel rebuild

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:44:21 UTC (rev 1034997)
+++ PKGBUILD2021-10-30 19:45:11 UTC (rev 1034998)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.049.02
-pkgrel=26
+pkgrel=27
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:44:21
  Author: andyrtr
Revision: 1034997

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 
1034996, acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-30 19:44:21 UTC (rev 1034997)
@@ -0,0 +1,68 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.2.1
+pkgrel=87
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+provides=('acpi_call')
+
+build() {
+  _kernver=$(

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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:44:16
  Author: andyrtr
Revision: 1034996

upgpkg: acpi_call-lts 1.2.1-87: kernel rebuild

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 18:49:39 UTC (rev 1034995)
+++ PKGBUILD2021-10-30 19:44:16 UTC (rev 1034996)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.2.1
-pkgrel=86
+pkgrel=87
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:43:48
  Author: andyrtr
Revision: 426843

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 426842, nvidia-lts/trunk/PKGBUILD)
Deleted:
  nvidia-lts/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 19:43:42 UTC (rev 426842)
+++ PKGBUILD2021-10-30 19:43:48 UTC (rev 426843)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Eric Bélanger 
-
-pkgname=nvidia-lts
-pkgver=495.44
-pkgrel=1
-epoch=1
-pkgdesc="NVIDIA drivers for linux-lts"
-arch=('x86_64')
-url="https://www.nvidia.com/;
-makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
-provides=('NVIDIA-MODULE')
-license=('custom')
-options=('!strip')
-
-build() {
-_kernver=$(
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=495.44
+pkgrel=2
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:43:42
  Author: andyrtr
Revision: 426842

upgpkg: nvidia-lts 1:495.44-2: kernel rebuild

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:37:23 UTC (rev 426841)
+++ PKGBUILD2021-10-30 19:43:42 UTC (rev 426842)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=495.44
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')



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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:37:23
  Author: andyrtr
Revision: 426841

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 426840, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  
linux-lts/repos/testing-x86_64/0002-gcc-plugins-modern-gcc-plugin-infrastructure-requres.patch
(from rev 426840, 
linux-lts/trunk/0002-gcc-plugins-modern-gcc-plugin-infrastructure-requres.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 426840, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 426840, linux-lts/trunk/config)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  151 
 0002-gcc-plugins-modern-gcc-plugin-infrastructure-requres.patch |   76 
 PKGBUILD|  200 
 config  |10330 
++
 4 files changed, 10757 insertions(+)

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


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

2021-10-30 Thread Andreas Radke via arch-commits
Date: Saturday, October 30, 2021 @ 19:37:02
  Author: andyrtr
Revision: 426840

upgpkg: linux-lts 5.10.76-1: upstream update 5.10.76

Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/config

--+
 PKGBUILD |6 +++---
 config   |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:03:34 UTC (rev 426839)
+++ PKGBUILD2021-10-30 19:37:02 UTC (rev 426840)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgbase=linux-lts
-pkgver=5.10.75
+pkgver=5.10.76
 pkgrel=1
 pkgdesc='LTS Linux'
 url="https://www.kernel.org/;
@@ -24,9 +24,9 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
 )
 # https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256sums=('0a2b2f5fefb90773190aaef4726ac363e03992aedc424b0a57eca092d084304b'
+sha256sums=('480a09ba1962862ff18df9453fa0df6ba11cbe19eefedeab81bf2c84f49e1890'
 'SKIP'
-'8dab324b9cc8c4da4ee5f90b6dc7a7538130e0217969e601e6803b4ff1926027'
+'ec0ed69545aa0cbc60251984fd81393721fcc613c9c60596605f092b45c1d7a0'
 '96a72e1652314215da7140956c3abcf495cafd00811eda3cf4ce03ec5f791f1e'
 'bb935ad2467637966185b88d18a3f9be2f37d3acdc71ed361eae326ca898d6fc')
 

Modified: config
===
--- config  2021-10-30 19:03:34 UTC (rev 426839)
+++ config  2021-10-30 19:37:02 UTC (rev 426840)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.75 Kernel Configuration
+# Linux/x86 5.10.76 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 19:03:34
  Author: arojas
Revision: 426839

archrelease: copy trunk to extra-x86_64

Added:
  kate/repos/extra-x86_64/PKGBUILD
(from rev 426838, kate/trunk/PKGBUILD)
Deleted:
  kate/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 19:03:17 UTC (rev 426838)
+++ PKGBUILD2021-10-30 19:03:34 UTC (rev 426839)
@@ -1,56 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=kate
-pkgname=(kwrite kate)
-pkgver=21.08.2
-pkgrel=1
-arch=(x86_64)
-license=(GPL LGPL FDL)
-makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor kactivities kuserfeedback)
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz{,.sig})
-sha256sums=('d68898759dd2538051124681e5928ef5fb163ca61b6cd8f59ee056cc068ea6b2'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

-  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

-
-build() {
-  cmake -B build -S $pkgbase-$pkgver \
--DBUILD_TESTING=OFF
-  cmake --build build
-}
-
-package_kwrite() {
-  pkgdesc='Text Editor'
-  groups=(kde-applications kde-utilities)
-  url='https://apps.kde.org/kwrite/'
-  depends=(ktexteditor hicolor-icon-theme)
-
-  DESTDIR="$pkgdir" cmake --install build
-
-  find "$pkgdir" -type f -name '*kate*' -exec rm {} \;
-  rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
-"$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
-"$pkgdir"/usr/share/katexmltools \
-
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{ktexteditorpreviewplugin,lspclient,tabswitcherplugin}.mo
 \
-"$pkgdir"/usr/share/plasma/plasmoids
-}
-
-package_kate() {
-  pkgdesc='Advanced Text Editor'
-  groups=(kde-applications kde-utilities)
-  url='https://apps.kde.org/kate/'
-  depends=(knewstuff ktexteditor kactivities kuserfeedback hicolor-icon-theme)
-  optdepends=('konsole: open a terminal in Kate'
-  'clang: C and C++ LSP support'
-  'python-language-server: Python LSP support'
-  'texlab: LaTeX LSP support'
-  'rust: Rust LSP support'
-  'git: git-blame plugin')
-  DESTDIR="$pkgdir" cmake --install build
-
-  find "$pkgdir" -type f -name '*kwrite*' -exec rm {} \;
-  rm -r "$pkgdir"/usr/share/doc/HTML/*/kwrite
-}

Copied: kate/repos/extra-x86_64/PKGBUILD (from rev 426838, kate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 19:03:34 UTC (rev 426839)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=kate
+pkgname=(kwrite kate)
+pkgver=21.08.2
+pkgrel=2
+arch=(x86_64)
+license=(GPL LGPL FDL)
+makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor kactivities kuserfeedback)
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz{,.sig}
+https://invent.kde.org/utilities/kate/-/commit/8328b53f.patch)
+sha256sums=('d68898759dd2538051124681e5928ef5fb163ca61b6cd8f59ee056cc068ea6b2'
+'SKIP'
+'082c4a0c985b07e0f6976f0e183c28be290b796978f362e46e3917c24d9ca4b1')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+prepare() {
+  patch -d $pkgbase-$pkgver -p1 < 8328b53f.patch # Use python-lsp-server
+}
+
+build() {
+  cmake -B build -S $pkgbase-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package_kwrite() {
+  pkgdesc='Text Editor'
+  groups=(kde-applications kde-utilities)
+  url='https://apps.kde.org/kwrite/'
+  depends=(ktexteditor hicolor-icon-theme)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  find "$pkgdir" -type f -name '*kate*' -exec rm {} \;
+  rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
+"$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
+"$pkgdir"/usr/share/katexmltools \
+
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{ktexteditorpreviewplugin,lspclient,tabswitcherplugin}.mo
 \
+"$pkgdir"/usr/share/plasma/plasmoids
+}
+
+package_kate() {
+  pkgdesc='Advanced Text Editor'
+  groups=(kde-applications kde-utilities)
+  url='https://apps.kde.org/kate/'
+  depends=(knewstuff ktexteditor kactivities kuserfeedback hicolor-icon-theme)
+  optdepends=('konsole: open a terminal in Kate'
+  'clang: C and C++ LSP support'
+  'python-lsp-server: Python LSP 

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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 19:03:17
  Author: arojas
Revision: 426838

Switch to python-lsp-server

Modified:
  kate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 19:00:24 UTC (rev 426837)
+++ PKGBUILD2021-10-30 19:03:17 UTC (rev 426838)
@@ -5,17 +5,23 @@
 pkgbase=kate
 pkgname=(kwrite kate)
 pkgver=21.08.2
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 license=(GPL LGPL FDL)
 makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor kactivities kuserfeedback)
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz{,.sig}
+https://invent.kde.org/utilities/kate/-/commit/8328b53f.patch)
 sha256sums=('d68898759dd2538051124681e5928ef5fb163ca61b6cd8f59ee056cc068ea6b2'
-'SKIP')
+'SKIP'
+'082c4a0c985b07e0f6976f0e183c28be290b796978f362e46e3917c24d9ca4b1')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

   D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

 
+prepare() {
+  patch -d $pkgbase-$pkgver -p1 < 8328b53f.patch # Use python-lsp-server
+}
+
 build() {
   cmake -B build -S $pkgbase-$pkgver \
 -DBUILD_TESTING=OFF
@@ -45,7 +51,7 @@
   depends=(knewstuff ktexteditor kactivities kuserfeedback hicolor-icon-theme)
   optdepends=('konsole: open a terminal in Kate'
   'clang: C and C++ LSP support'
-  'python-language-server: Python LSP support'
+  'python-lsp-server: Python LSP support'
   'texlab: LaTeX LSP support'
   'rust: Rust LSP support'
   'git: git-blame plugin')



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

2021-10-30 Thread Caleb Maclennan via arch-commits
Date: Saturday, October 30, 2021 @ 18:49:39
  Author: alerque
Revision: 1034995

archrelease: copy trunk to community-any

Added:
  shutter/repos/community-any/PKGBUILD
(from rev 1034994, shutter/trunk/PKGBUILD)
Deleted:
  shutter/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 18:48:25 UTC (rev 1034994)
+++ PKGBUILD2021-10-30 18:49:39 UTC (rev 1034995)
@@ -1,54 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Maintainer: Caleb Maclennan 
-# Contributor: PhotonX 
-# Contributor: Felix Yan 
-# Contributor: Shanto 
-# Contributor: Athurg 
-# Contributor: TDY 
-
-pkgname=shutter
-pkgver=0.99.1
-pkgrel=1
-pkgdesc="The feature-rich screenshot tool"
-arch=('any')
-url="https://shutter-project.org/;
-license=('GPL')
-depends=('xdg-utils' 'imagemagick' 'procps' 'librsvg' 'libwnck3'
- 'perl-glib-object-introspection'
- 'perl-number-bytes-human'
- 'perl-x11-protocol'
- 'perl-proc-simple'
- 'perl-proc-processtable'
- 'perl-net-dbus'
- 'perl-sort-naturally'
- 'perl-json'
- 'perl-json-maybexs'
- 'perl-xml-simple'
- 'perl-www-mechanize'
- 'perl-locale-gettext'
- 'perl-file-which'
- 'perl-file-basedir'
- 'perl-file-copy-recursive'
- 'perl-xml-simple'
- 'perl-carp-always'
- 'perl-gtk3'
- 'perl-gtk3-imageview>=9'
- 'perl-readonly'
- 'perl-goocanvas2'
- 'perl-goocanvas2-cairotypes'
- 'pango-perl')
-optdepends=('perl-image-exiftool: read and write EXIF data'
-'nautilus-sendto: send screenshots via mail'
-'perl-path-class: Imgur upload support'
-'perl-lwp-protocol-https: Imgur upload support'
-'perl-net-oauth: Imgur upload support'
-'bc: 3D Rotate and 3D Reflection plugins support'
-'libappindicator-gtk3: display the tray icon in some environments 
(like GNOME)')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/shutter-project/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('4d6ee699d3b31194c6685019a9493968d7a4988ee86f9348cf5aaa15c573b0a5f515ba6e5d786faf8054762ae134fea5ca2add10dbb3e14905247daf1303c751')
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make install prefix="${pkgdir}/usr"
-}
-

Copied: shutter/repos/community-any/PKGBUILD (from rev 1034994, 
shutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 18:49:39 UTC (rev 1034995)
@@ -0,0 +1,54 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Maintainer: Caleb Maclennan 
+# Contributor: PhotonX 
+# Contributor: Felix Yan 
+# Contributor: Shanto 
+# Contributor: Athurg 
+# Contributor: TDY 
+
+pkgname=shutter
+pkgver=0.99.2
+pkgrel=1
+pkgdesc="The feature-rich screenshot tool"
+arch=('any')
+url="https://shutter-project.org/;
+license=('GPL')
+depends=('xdg-utils' 'imagemagick' 'procps' 'librsvg' 'libwnck3'
+ 'perl-glib-object-introspection'
+ 'perl-number-bytes-human'
+ 'perl-x11-protocol'
+ 'perl-proc-simple'
+ 'perl-proc-processtable'
+ 'perl-net-dbus'
+ 'perl-sort-naturally'
+ 'perl-json'
+ 'perl-json-maybexs'
+ 'perl-xml-simple'
+ 'perl-www-mechanize'
+ 'perl-locale-gettext'
+ 'perl-file-which'
+ 'perl-file-basedir'
+ 'perl-file-copy-recursive'
+ 'perl-xml-simple'
+ 'perl-carp-always'
+ 'perl-gtk3'
+ 'perl-gtk3-imageview'
+ 'perl-readonly'
+ 'perl-goocanvas2'
+ 'perl-goocanvas2-cairotypes'
+ 'pango-perl')
+optdepends=('perl-image-exiftool: read and write EXIF data'
+'nautilus-sendto: send screenshots via mail'
+'perl-path-class: Imgur upload support'
+'perl-lwp-protocol-https: Imgur upload support'
+'perl-net-oauth: Imgur upload support'
+'bc: 3D Rotate and 3D Reflection plugins support'
+'libappindicator-gtk3: display the tray icon in some environments 
(like GNOME)')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/shutter-project/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('5fcb094f0e6f732da3648e58ef62aa1e5537132ffb0bff80972e1891f58fe5e63ec63bc7bec63e84268c095e3cd43d60d358be61e2d050dfcc49ffb042d34cfb')
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install prefix="${pkgdir}/usr"
+}
+



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

2021-10-30 Thread Caleb Maclennan via arch-commits
Date: Saturday, October 30, 2021 @ 18:48:25
  Author: alerque
Revision: 1034994

upgpkg: shutter 0.99.2-1

Modified:
  shutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 16:42:38 UTC (rev 1034993)
+++ PKGBUILD2021-10-30 18:48:25 UTC (rev 1034994)
@@ -7,7 +7,7 @@
 # Contributor: TDY 
 
 pkgname=shutter
-pkgver=0.99.1
+pkgver=0.99.2
 pkgrel=1
 pkgdesc="The feature-rich screenshot tool"
 arch=('any')
@@ -32,7 +32,7 @@
  'perl-xml-simple'
  'perl-carp-always'
  'perl-gtk3'
- 'perl-gtk3-imageview>=9'
+ 'perl-gtk3-imageview'
  'perl-readonly'
  'perl-goocanvas2'
  'perl-goocanvas2-cairotypes'
@@ -45,7 +45,7 @@
 'bc: 3D Rotate and 3D Reflection plugins support'
 'libappindicator-gtk3: display the tray icon in some environments 
(like GNOME)')
 
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/shutter-project/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('4d6ee699d3b31194c6685019a9493968d7a4988ee86f9348cf5aaa15c573b0a5f515ba6e5d786faf8054762ae134fea5ca2add10dbb3e14905247daf1303c751')
+sha512sums=('5fcb094f0e6f732da3648e58ef62aa1e5537132ffb0bff80972e1891f58fe5e63ec63bc7bec63e84268c095e3cd43d60d358be61e2d050dfcc49ffb042d34cfb')
 
 package() {
   cd "${pkgname}-${pkgver}"



[arch-commits] Commit in python-zc.lockfile/repos/community-any (PKGBUILD PKGBUILD)

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 16:42:38
  Author: foxboron
Revision: 1034993

archrelease: copy trunk to community-any

Added:
  python-zc.lockfile/repos/community-any/PKGBUILD
(from rev 1034992, python-zc.lockfile/trunk/PKGBUILD)
Deleted:
  python-zc.lockfile/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 16:42:32 UTC (rev 1034992)
+++ PKGBUILD2021-10-30 16:42:38 UTC (rev 1034993)
@@ -1,57 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=python-zc.lockfile
-_pkgname=${pkgbase#python-}
-pkgname=(python-$_pkgname python2-$_pkgname)
-pkgver=2.0
-pkgrel=5
-arch=('any')
-pkgdesc="Zope testing frameworks"
-url="https://github.com/zopefoundation/$_pkgname;
-license=('custom:ZPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-zope-testing' 'python2-zope-testing' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('bdb429c506064a83cb6fe0964aef6793cc20b5c954c208497a2c3d596213687b40be6d778490d3317de87ff997dfcfc9357f6e5225f48636148f1acdc9325350')
-
-prepare() {
-  cp -a $_pkgname-$pkgver{,-py2}
-}
-
-build() {
-  echo "Building python-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py build
-
-  echo "Building python2-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  echo "Running tests on python-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py test -q
-
-  echo "Running tests on python2-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver-py2
-  python2 setup.py test -q
-}
-
-package_python-zc.lockfile() {
-  depends=('python')
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-zc.lockfile() {
-  depends=('python2')
-  cd $_pkgname-$pkgver-py2
-
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-zc.lockfile/repos/community-any/PKGBUILD (from rev 1034992, 
python-zc.lockfile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 16:42:38 UTC (rev 1034993)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=python-zc.lockfile
+_pkgname=${pkgname#python-}
+pkgver=2.0
+pkgrel=6
+arch=('any')
+pkgdesc="Zope testing frameworks"
+url="https://github.com/zopefoundation/$_pkgname;
+license=('custom:ZPL')
+makedepends=('python-setuptools')
+checkdepends=('python-zope-testing')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('bdb429c506064a83cb6fe0964aef6793cc20b5c954c208497a2c3d596213687b40be6d778490d3317de87ff997dfcfc9357f6e5225f48636148f1acdc9325350')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+  python setup.py test -q
+}
+
+package() {
+  depends=('python')
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in python-zc.lockfile/trunk (PKGBUILD)

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 16:42:32
  Author: foxboron
Revision: 1034992

upgpkg: python-zc.lockfile 2.0-6 - removed python2 version

Modified:
  python-zc.lockfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 16:40:44 UTC (rev 1034991)
+++ PKGBUILD2021-10-30 16:42:32 UTC (rev 1034992)
@@ -1,44 +1,29 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
-pkgbase=python-zc.lockfile
-_pkgname=${pkgbase#python-}
-pkgname=(python-$_pkgname python2-$_pkgname)
+pkgname=python-zc.lockfile
+_pkgname=${pkgname#python-}
 pkgver=2.0
-pkgrel=5
+pkgrel=6
 arch=('any')
 pkgdesc="Zope testing frameworks"
 url="https://github.com/zopefoundation/$_pkgname;
 license=('custom:ZPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-zope-testing' 'python2-zope-testing' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+makedepends=('python-setuptools')
+checkdepends=('python-zope-testing')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
sha512sums=('bdb429c506064a83cb6fe0964aef6793cc20b5c954c208497a2c3d596213687b40be6d778490d3317de87ff997dfcfc9357f6e5225f48636148f1acdc9325350')
 
-prepare() {
-  cp -a $_pkgname-$pkgver{,-py2}
-}
-
 build() {
-  echo "Building python-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   python setup.py build
-
-  echo "Building python2-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
-  echo "Running tests on python-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver
+  cd $_pkgname-$pkgver
   python setup.py test -q
-
-  echo "Running tests on python2-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver-py2
-  python2 setup.py test -q
 }
 
-package_python-zc.lockfile() {
+package() {
   depends=('python')
   cd $_pkgname-$pkgver
 
@@ -46,12 +31,3 @@
 
   install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-zc.lockfile() {
-  depends=('python2')
-  cd $_pkgname-$pkgver-py2
-
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}



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

2021-10-30 Thread George Rawlinson via arch-commits
Date: Saturday, October 30, 2021 @ 16:40:44
  Author: grawlinson
Revision: 1034991

upgpkg: vaultwarden-web

Update makedepends: nodejs-lts-fermium -> nodejs-lts-gallium.

Modified:
  vaultwarden-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 16:39:06 UTC (rev 1034990)
+++ PKGBUILD2021-10-30 16:40:44 UTC (rev 1034991)
@@ -13,7 +13,7 @@
 url=https://github.com/dani-garcia/bw_web_builds
 license=('GPL3')
 depends=('vaultwarden')
-makedepends=('git' 'nodejs-lts-fermium' 'npm')
+makedepends=('git' 'nodejs-lts-gallium' 'npm')
 provides=('bitwarden_rs-vault' 'bitwarden_rs-web')
 replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
 install=$pkgname.install



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 16:38:46
  Author: foxboron
Revision: 1034989

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 16:38:40 UTC (rev 1034988)
+++ PKGBUILD2021-10-30 16:38:46 UTC (rev 1034989)
@@ -1,72 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Morten Linderud 
-# Contributor: Lance Chen 
-
-_pypiname=wheel
-pkgbase=python-wheel
-pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.37.0
-pkgrel=1
-pkgdesc="A built-package format for Python"
-arch=(any)
-url="https://pypi.python.org/pypi/wheel;
-license=('MIT')
-makedepends=('python-packaging' 'python-setuptools'
- 'python2-packaging' 'python2-setuptools')
-checkdepends=('python-jsonschema' 'python-pytest' 'python-keyring' 
'python-keyrings-alt'
-  'python-xdg')
-source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz;)
-sha512sums=('2e0eb1c5560a0229be9de450da8b2bc62153744abb6d8ab9a0625c150dc00d3fc3e24dbe37cc26f4ca6b6876b5c63298427b2076ee42b8f772c75010bfc135a8')
-
-prepare() {
-  # don't depend on python-coverage for tests
-  sed -i 's/--cov=wheel//' wheel-$pkgver/setup.cfg
-
-  # https://github.com/pypa/wheel/pull/365 but why?
-  rm -r wheel-$pkgver/src/wheel/vendored
-  sed -i 's/from .vendored.packaging import tags/from packaging import tags/' 
wheel-$pkgver/src/wheel/bdist_wheel.py
-
-  cp -a wheel-$pkgver{,-py2}
-}
-
-build() {
-  export PYTHONHASHSEED=0
-
-  cd "$srcdir/wheel-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/wheel-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd wheel-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
-}
-
-package_python-wheel() {
-  depends=('python-packaging')
-  optdepends=('python-keyring: for wheel.signatures')
-  optdepends=('python-xdg: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-wheel() {
-  depends=('python2-packaging')
-  optdepends=('python2-keyring: for wheel.signatures')
-  optdepends=('python2-xdg: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-wheel/repos/community-any/PKGBUILD (from rev 1034988, 
python-wheel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 16:38:46 UTC (rev 1034989)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+# Contributor: Lance Chen 
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.37.0
+pkgrel=2
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel;
+license=('MIT')
+makedepends=('python-packaging' 'python-setuptools'
+ 'python2-packaging' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python-pytest' 'python-keyring' 
'python-keyrings-alt'
+  'python-xdg')
+source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz;)
+sha512sums=('2e0eb1c5560a0229be9de450da8b2bc62153744abb6d8ab9a0625c150dc00d3fc3e24dbe37cc26f4ca6b6876b5c63298427b2076ee42b8f772c75010bfc135a8')
+
+prepare() {
+  # don't depend on python-coverage for tests
+  sed -i 's/--cov=wheel//' wheel-$pkgver/setup.cfg
+
+  # https://github.com/pypa/wheel/pull/365 but why?
+  rm -r wheel-$pkgver/src/wheel/vendored
+  sed -i 's/from .vendored.packaging import tags/from packaging import tags/' 
wheel-$pkgver/src/wheel/bdist_wheel.py
+
+  cp -a wheel-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd wheel-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" 
py.test
+}
+
+package_python-wheel() {
+  depends=('python-packaging')
+  

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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 16:38:40
  Author: foxboron
Revision: 1034988

upgpkg: python-wheel 0.37.0-2

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:24:22 UTC (rev 1034987)
+++ PKGBUILD2021-10-30 16:38:40 UTC (rev 1034988)
@@ -6,7 +6,7 @@
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
 pkgver=0.37.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A built-package format for Python"
 arch=(any)
 url="https://pypi.python.org/pypi/wheel;
@@ -48,8 +48,8 @@
 
 package_python-wheel() {
   depends=('python-packaging')
-  optdepends=('python-keyring: for wheel.signatures')
-  optdepends=('python-xdg: for wheel.signatures')
+  optdepends=('python-keyring: for wheel.signatures'
+  'python-xdg: for wheel.signatures')
 
   cd "$srcdir/$_pypiname-$pkgver"
   python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
@@ -58,9 +58,6 @@
 
 package_python2-wheel() {
   depends=('python2-packaging')
-  optdepends=('python2-keyring: for wheel.signatures')
-  optdepends=('python2-xdg: for wheel.signatures')
-
   cd "$srcdir/$_pypiname-$pkgver"
   python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
   install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"



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

2021-10-30 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 30, 2021 @ 15:24:22
  Author: yan12125
Revision: 1034987

archrelease: copy trunk to community-testing-any

Added:
  python-sure/repos/community-testing-any/
  python-sure/repos/community-testing-any/PKGBUILD
(from rev 1034986, python-sure/trunk/PKGBUILD)

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

Copied: python-sure/repos/community-testing-any/PKGBUILD (from rev 1034986, 
python-sure/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-10-30 15:24:22 UTC (rev 1034987)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-sure
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="An idiomatic testing library for python with powerful and flexible 
assertions"
+arch=('any')
+url="https://github.com/gabrielfalcao/sure;
+license=('GPL')
+depends=('python-six' 'python-mock')
+makedepends=('python-setuptools' 'git')
+checkdepends=('python-nose' 'python-rednose')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gabrielfalcao/sure/archive/$pkgver.tar.gz;)
+sha512sums=('d113b08afd63c379ec9f05169b1ad15f3bb616a1f6ad7d0ef6513e98ba7ebb7462254b2d25307906d9f63603fed4f9e4b83ccbca0ec53a2b483f9395fa0fb94a')
+
+prepare() {
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/sure-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/sure-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd sure-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-10-30 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 30, 2021 @ 15:24:08
  Author: yan12125
Revision: 1034986

upgpkg: python-sure 2.0.0-1

Both python-httpretty and python-mocket (3.10.0) build fine with
python-sure 2.0.0

Modified:
  python-sure/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:13:38 UTC (rev 1034985)
+++ PKGBUILD2021-10-30 15:24:08 UTC (rev 1034986)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-sure
-pkgver=1.4.11
-pkgrel=7
+pkgver=2.0.0
+pkgrel=1
 pkgdesc="An idiomatic testing library for python with powerful and flexible 
assertions"
 arch=('any')
 url="https://github.com/gabrielfalcao/sure;
@@ -9,9 +9,9 @@
 license=('GPL')
 depends=('python-six' 'python-mock')
 makedepends=('python-setuptools' 'git')
-checkdepends=('python-nose')
+checkdepends=('python-nose' 'python-rednose')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/gabrielfalcao/sure/archive/$pkgver.tar.gz;)
-sha512sums=('0f3601eff81074d73568014aaf81b2a3e782c95d3a62cf689031bd0c53eaa8eb531a32e4e2d16c4bee4291157f621e52857b575bcfdaf82839f8e1d0d40d3563')
+sha512sums=('d113b08afd63c379ec9f05169b1ad15f3bb616a1f6ad7d0ef6513e98ba7ebb7462254b2d25307906d9f63603fed4f9e4b83ccbca0ec53a2b483f9395fa0fb94a')
 
 prepare() {
   export LC_CTYPE=en_US.UTF-8



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

2021-10-30 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 30, 2021 @ 15:13:38
  Author: yan12125
Revision: 1034985

archrelease: copy trunk to community-testing-any

Added:
  python-mocket/repos/community-testing-any/
  python-mocket/repos/community-testing-any/PKGBUILD
(from rev 1034984, python-mocket/trunk/PKGBUILD)

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

Copied: python-mocket/repos/community-testing-any/PKGBUILD (from rev 1034984, 
python-mocket/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-10-30 15:13:38 UTC (rev 1034985)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-mocket
+pkgver=3.10.0
+pkgrel=1
+pkgdesc="Socket Mock Framework - for all kinds of socket animals, web-clients 
included - with gevent/asyncio/SSL support"
+url="https://github.com/mindflayer/python-mocket;
+license=('BSD')
+arch=('any')
+depends=('python-decorator' 'python-http-parser' 'python-magic' 
'python-urllib3')
+makedepends=('python-pipenv-to-requirements' 'python-pytest-cov' 
'python-setuptools')
+checkdepends=('pifpaf' 'python-aiohttp' 'python-gevent' 'python-mock' 
'python-pook' 'python-redis'
+  'python-sure' 'python-xxhash' 'redis')
+source=("https://github.com/mindflayer/python-mocket/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c6a07ea520ca895b4be0c86be030aa894a7ff29dd648433c41636ff63fdc90bf9b98ffde438a292da45e1e04600131314a8abbed41abcc1d86a01a34c57bf2f4')
+
+prepare() {
+  cd python-mocket-$pkgver
+  pipenv_to_requirements
+
+  sed -i 's/^python-magic.*/file_magic/' requirements.txt
+}
+
+build() {
+  cd python-mocket-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-mocket-$pkgver
+  pifpaf run redis pytest
+}
+
+package() {
+  cd python-mocket-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-10-30 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 30, 2021 @ 15:13:21
  Author: yan12125
Revision: 1034984

upgpkg: python-mocket 3.10.0-1

Part of efforts on updating python-sure to 2.0. Tests were broken with
newer urllib [1], so I update this package first to make sure tests
still work with python-sure 2.0.

[1] https://github.com/mindflayer/python-mocket/issues/151

Modified:
  python-mocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:12:25 UTC (rev 1034983)
+++ PKGBUILD2021-10-30 15:13:21 UTC (rev 1034984)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-mocket
-pkgver=3.9.40
-pkgrel=2
+pkgver=3.10.0
+pkgrel=1
 pkgdesc="Socket Mock Framework - for all kinds of socket animals, web-clients 
included - with gevent/asyncio/SSL support"
 url="https://github.com/mindflayer/python-mocket;
 license=('BSD')
@@ -12,7 +12,7 @@
 checkdepends=('pifpaf' 'python-aiohttp' 'python-gevent' 'python-mock' 
'python-pook' 'python-redis'
   'python-sure' 'python-xxhash' 'redis')
 
source=("https://github.com/mindflayer/python-mocket/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('d3f1b9c60d10cc8f803da3e465cd84bc954b885cf8cb400f85eabe8da0f144542f9992849ea86c44bc29d13e6ed3da7f61e472eac2ce81b1d9d2753539653d40')
+sha512sums=('c6a07ea520ca895b4be0c86be030aa894a7ff29dd648433c41636ff63fdc90bf9b98ffde438a292da45e1e04600131314a8abbed41abcc1d86a01a34c57bf2f4')
 
 prepare() {
   cd python-mocket-$pkgver



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 15:12:25
  Author: foxboron
Revision: 1034983

archrelease: copy trunk to community-any

Added:
  
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
(from rev 1034982, 
python-cachecontrol/trunk/0001-Remove-unnecessary-console-script.patch)
  python-cachecontrol/repos/community-any/PKGBUILD
(from rev 1034982, python-cachecontrol/trunk/PKGBUILD)
Deleted:
  
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
  python-cachecontrol/repos/community-any/PKGBUILD

--+
 0001-Remove-unnecessary-console-script.patch |   52 +--
 PKGBUILD |  109 -
 2 files changed, 80 insertions(+), 81 deletions(-)

Deleted: 0001-Remove-unnecessary-console-script.patch
===
--- 0001-Remove-unnecessary-console-script.patch2021-10-30 15:12:17 UTC 
(rev 1034982)
+++ 0001-Remove-unnecessary-console-script.patch2021-10-30 15:12:25 UTC 
(rev 1034983)
@@ -1,26 +0,0 @@
-From 5949227996ba403eecaf6fb961c2f2a6aca4d3e2 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 7 Jun 2018 12:39:59 -0400
-Subject: [PATCH] Remove unnecessary console script
-
-The purpose of this  module is to cache things, not to test if they
-*can* be cached. This clutters up the $PATH.

- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 34f5f44..95e1741 100644
 a/setup.py
-+++ b/setup.py
-@@ -19,7 +19,6 @@ setup_params = dict(
- long_description=long_description,
- install_requires=["requests", "msgpack"],
- extras_require={"filecache": ["lockfile>=0.9"], "redis": 
["redis>=2.10.5"]},
--entry_points={"console_scripts": ["doesitcache = 
cachecontrol._cmd:main"]},
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
- classifiers=[
- "Development Status :: 4 - Beta",
--- 
-2.17.1
-

Copied: 
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
 (from rev 1034982, 
python-cachecontrol/trunk/0001-Remove-unnecessary-console-script.patch)
===
--- 0001-Remove-unnecessary-console-script.patch
(rev 0)
+++ 0001-Remove-unnecessary-console-script.patch2021-10-30 15:12:25 UTC 
(rev 1034983)
@@ -0,0 +1,26 @@
+From 5949227996ba403eecaf6fb961c2f2a6aca4d3e2 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 7 Jun 2018 12:39:59 -0400
+Subject: [PATCH] Remove unnecessary console script
+
+The purpose of this  module is to cache things, not to test if they
+*can* be cached. This clutters up the $PATH.
+---
+ setup.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 34f5f44..95e1741 100644
+--- a/setup.py
 b/setup.py
+@@ -19,7 +19,6 @@ setup_params = dict(
+ long_description=long_description,
+ install_requires=["requests", "msgpack"],
+ extras_require={"filecache": ["lockfile>=0.9"], "redis": 
["redis>=2.10.5"]},
+-entry_points={"console_scripts": ["doesitcache = 
cachecontrol._cmd:main"]},
+ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ classifiers=[
+ "Development Status :: 4 - Beta",
+-- 
+2.17.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 15:12:17 UTC (rev 1034982)
+++ PKGBUILD2021-10-30 15:12:25 UTC (rev 1034983)
@@ -1,55 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=cachecontrol
-pkgbase=python-cachecontrol
-pkgname=('python-cachecontrol' 'python2-cachecontrol')
-pkgver=0.12.6
-pkgrel=4
-pkgdesc="httplib2 caching for requests"
-arch=('any')
-url="https://github.com/ionrock/${_pkgname};
-license=('Apache')
-makedepends=('python-msgpack' 'python-requests' 'python2-msgpack' 
'python2-requests'
- 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-mock' 'python-pytest' 'python-lockfile' 
'python-cherrypy')
-source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
-"0001-Remove-unnecessary-console-script.patch")
-sha256sums=('2ec120838f445bff473cd8b8206ddae3650679142976927179743fabb876f3e3'
-'a2c93d4852887152027140bdd54030d5363876b02e5eabee6a018d4e946a87b1')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-patch -p1 -i ../0001-Remove-unnecessary-console-script.patch
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-# Ignore python2 tests
-#python2 -m pytest
-}
-
-package_python-cachecontrol() {
-depends=('python-msgpack' 'python-requests')
-optdepends=('python-lockfile: for the FileCache')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py 

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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 15:12:17
  Author: foxboron
Revision: 1034982

upgpkg: python-cachecontrol 0.12.6-5 - Remove python2 optional deps

Modified:
  python-cachecontrol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:05:13 UTC (rev 1034981)
+++ PKGBUILD2021-10-30 15:12:17 UTC (rev 1034982)
@@ -4,7 +4,7 @@
 pkgbase=python-cachecontrol
 pkgname=('python-cachecontrol' 'python2-cachecontrol')
 pkgver=0.12.6
-pkgrel=4
+pkgrel=5
 pkgdesc="httplib2 caching for requests"
 arch=('any')
 url="https://github.com/ionrock/${_pkgname};
@@ -48,7 +48,6 @@
 
 package_python2-cachecontrol() {
 depends=('python2-msgpack' 'python2-requests')
-optdepends=('python2-lockfile: for the FileCache')
 
 cd "${srcdir}"/${_pkgname}-${pkgver}
 python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build



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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 15:05:13
  Author: foxboron
Revision: 1034981

archrelease: copy trunk to community-any

Added:
  
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
(from rev 1034980, 
python-cachecontrol/trunk/0001-Remove-unnecessary-console-script.patch)
  python-cachecontrol/repos/community-any/PKGBUILD
(from rev 1034980, python-cachecontrol/trunk/PKGBUILD)
Deleted:
  
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
  python-cachecontrol/repos/community-any/PKGBUILD

--+
 0001-Remove-unnecessary-console-script.patch |   52 +--
 PKGBUILD |  109 -
 2 files changed, 81 insertions(+), 80 deletions(-)

Deleted: 0001-Remove-unnecessary-console-script.patch
===
--- 0001-Remove-unnecessary-console-script.patch2021-10-30 15:04:59 UTC 
(rev 1034980)
+++ 0001-Remove-unnecessary-console-script.patch2021-10-30 15:05:13 UTC 
(rev 1034981)
@@ -1,26 +0,0 @@
-From 5949227996ba403eecaf6fb961c2f2a6aca4d3e2 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 7 Jun 2018 12:39:59 -0400
-Subject: [PATCH] Remove unnecessary console script
-
-The purpose of this  module is to cache things, not to test if they
-*can* be cached. This clutters up the $PATH.

- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 34f5f44..95e1741 100644
 a/setup.py
-+++ b/setup.py
-@@ -19,7 +19,6 @@ setup_params = dict(
- long_description=long_description,
- install_requires=["requests", "msgpack"],
- extras_require={"filecache": ["lockfile>=0.9"], "redis": 
["redis>=2.10.5"]},
--entry_points={"console_scripts": ["doesitcache = 
cachecontrol._cmd:main"]},
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
- classifiers=[
- "Development Status :: 4 - Beta",
--- 
-2.17.1
-

Copied: 
python-cachecontrol/repos/community-any/0001-Remove-unnecessary-console-script.patch
 (from rev 1034980, 
python-cachecontrol/trunk/0001-Remove-unnecessary-console-script.patch)
===
--- 0001-Remove-unnecessary-console-script.patch
(rev 0)
+++ 0001-Remove-unnecessary-console-script.patch2021-10-30 15:05:13 UTC 
(rev 1034981)
@@ -0,0 +1,26 @@
+From 5949227996ba403eecaf6fb961c2f2a6aca4d3e2 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 7 Jun 2018 12:39:59 -0400
+Subject: [PATCH] Remove unnecessary console script
+
+The purpose of this  module is to cache things, not to test if they
+*can* be cached. This clutters up the $PATH.
+---
+ setup.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 34f5f44..95e1741 100644
+--- a/setup.py
 b/setup.py
+@@ -19,7 +19,6 @@ setup_params = dict(
+ long_description=long_description,
+ install_requires=["requests", "msgpack"],
+ extras_require={"filecache": ["lockfile>=0.9"], "redis": 
["redis>=2.10.5"]},
+-entry_points={"console_scripts": ["doesitcache = 
cachecontrol._cmd:main"]},
+ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ classifiers=[
+ "Development Status :: 4 - Beta",
+-- 
+2.17.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 15:04:59 UTC (rev 1034980)
+++ PKGBUILD2021-10-30 15:05:13 UTC (rev 1034981)
@@ -1,54 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=cachecontrol
-pkgbase=python-cachecontrol
-pkgname=('python-cachecontrol' 'python2-cachecontrol')
-pkgver=0.12.6
-pkgrel=3
-pkgdesc="httplib2 caching for requests"
-arch=('any')
-url="https://github.com/ionrock/${_pkgname};
-license=('Apache')
-makedepends=('python-msgpack' 'python-requests' 'python2-msgpack' 
'python2-requests')
-checkdepends=('python-mock' 'python-pytest' 'python-lockfile' 'python-cherrypy'
-  'python2-mock' 'python2-pytest' 'python2-lockfile' 
'python2-cherrypy')
-source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
-"0001-Remove-unnecessary-console-script.patch")
-sha256sums=('2ec120838f445bff473cd8b8206ddae3650679142976927179743fabb876f3e3'
-'a2c93d4852887152027140bdd54030d5363876b02e5eabee6a018d4e946a87b1')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-patch -p1 -i ../0001-Remove-unnecessary-console-script.patch
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-python2 -m pytest
-}
-
-package_python-cachecontrol() {
-depends=('python-msgpack' 'python-requests')
-optdepends=('python-lockfile: for the FileCache')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py 

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

2021-10-30 Thread Morten Linderud via arch-commits
Date: Saturday, October 30, 2021 @ 15:04:59
  Author: foxboron
Revision: 1034980

upgpkg: python-cachecontrol 0.12.6-4 - Remove python2 checkdepends

Modified:
  python-cachecontrol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:46 UTC (rev 1034979)
+++ PKGBUILD2021-10-30 15:04:59 UTC (rev 1034980)
@@ -4,7 +4,7 @@
 pkgbase=python-cachecontrol
 pkgname=('python-cachecontrol' 'python2-cachecontrol')
 pkgver=0.12.6
-pkgrel=3
+pkgrel=4
 pkgdesc="httplib2 caching for requests"
 arch=('any')
 url="https://github.com/ionrock/${_pkgname};
@@ -11,8 +11,7 @@
 license=('Apache')
 makedepends=('python-msgpack' 'python-requests' 'python2-msgpack' 
'python2-requests'
  'python-setuptools' 'python2-setuptools')
-checkdepends=('python-mock' 'python-pytest' 'python-lockfile' 'python-cherrypy'
-  'python2-mock' 'python2-pytest' 'python2-lockfile' 
'python2-cherrypy')
+checkdepends=('python-mock' 'python-pytest' 'python-lockfile' 
'python-cherrypy')
 source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
 "0001-Remove-unnecessary-console-script.patch")
 sha256sums=('2ec120838f445bff473cd8b8206ddae3650679142976927179743fabb876f3e3'
@@ -35,7 +34,8 @@
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
 python -m pytest
-python2 -m pytest
+# Ignore python2 tests
+#python2 -m pytest
 }
 
 package_python-cachecontrol() {



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:46
  Author: jsteel
Revision: 1034979

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:40 UTC (rev 1034978)
+++ PKGBUILD2021-10-30 15:02:46 UTC (rev 1034979)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Felix Yan 
-
-pkgbase=python-boto3
-pkgname=python-boto3
-pkgver=1.18.49
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('4d94e11b974857709dc7907bd31a3eab087eafff3938286803d4d1bc850d90e4dd82be747a3a9c4725bb15e3670a12c8bd239a98df23198c498519d196279dc0')
-
-build() {
-  cd boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 1034978, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 15:02:46 UTC (rev 1034979)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgbase=python-boto3
+pkgname=python-boto3
+pkgver=1.19.7
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('40cf5341bfd7cc4cae4c542e39e4c5ec1b63ba3bfee5faedb75633e656700dd5e80a137b234b57d22cc1b7d85a2056ced4eb8b7189ab57c8f2c0269e8826811d')
+
+build() {
+  cd boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:40
  Author: jsteel
Revision: 1034978

upgpkg: python-boto3 1.19.7-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:35 UTC (rev 1034977)
+++ PKGBUILD2021-10-30 15:02:40 UTC (rev 1034978)
@@ -3,7 +3,7 @@
 
 pkgbase=python-boto3
 pkgname=python-boto3
-pkgver=1.18.49
+pkgver=1.19.7
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('4d94e11b974857709dc7907bd31a3eab087eafff3938286803d4d1bc850d90e4dd82be747a3a9c4725bb15e3670a12c8bd239a98df23198c498519d196279dc0')
+sha512sums=('40cf5341bfd7cc4cae4c542e39e4c5ec1b63ba3bfee5faedb75633e656700dd5e80a137b234b57d22cc1b7d85a2056ced4eb8b7189ab57c8f2c0269e8826811d')
 
 build() {
   cd boto3-$pkgver



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:35
  Author: jsteel
Revision: 1034977

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 1034976, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:29 UTC (rev 1034976)
+++ PKGBUILD2021-10-30 15:02:35 UTC (rev 1034977)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.20.49
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('bb6a0b2a1208c6498d7b341285772b93')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 1034976, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 15:02:35 UTC (rev 1034977)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.21.7
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('94cd9aeb35a9f9d88d3463ffb7966009')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:29
  Author: jsteel
Revision: 1034976

upgpkg: aws-cli 1.21.7-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:23 UTC (rev 1034975)
+++ PKGBUILD2021-10-30 15:02:29 UTC (rev 1034976)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.20.49
+pkgver=1.21.7
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('bb6a0b2a1208c6498d7b341285772b93')
+md5sums=('94cd9aeb35a9f9d88d3463ffb7966009')
 
 build() {
   cd $pkgname-$pkgver



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:23
  Author: jsteel
Revision: 1034975

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 15:02:12 UTC (rev 1034974)
+++ PKGBUILD2021-10-30 15:02:23 UTC (rev 1034975)
@@ -1,27 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.21.49
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('dd3699763cf2f0b5cf0b48e8c757a1ed')
-
-build() {
-  cd botocore-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 1034974, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 15:02:23 UTC (rev 1034975)
@@ -0,0 +1,27 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.22.7
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('253a8ca9456b5c87a8084dfe5ee30f79')
+
+build() {
+  cd botocore-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 15:02:12
  Author: jsteel
Revision: 1034974

upgpkg: python-botocore 1.22.7-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 14:51:59 UTC (rev 1034973)
+++ PKGBUILD2021-10-30 15:02:12 UTC (rev 1034974)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.21.49
+pkgver=1.22.7
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('dd3699763cf2f0b5cf0b48e8c757a1ed')
+md5sums=('253a8ca9456b5c87a8084dfe5ee30f79')
 
 build() {
   cd botocore-$pkgver



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 14:51:59
  Author: jsteel
Revision: 1034973

archrelease: copy trunk to community-x86_64

Added:
  pam-krb5/repos/community-x86_64/PKGBUILD
(from rev 1034972, pam-krb5/trunk/PKGBUILD)
Deleted:
  pam-krb5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 14:51:50 UTC (rev 1034972)
+++ PKGBUILD2021-10-30 14:51:59 UTC (rev 1034973)
@@ -1,33 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Mantas Mikulėnas 
-# Contributor: Kaiting Chen 
-# Contributor: Ryan Corder 
-
-pkgname=pam-krb5
-pkgver=4.10
-pkgrel=1
-pkgdesc="PAM module providing Kerberos v5 support"
-arch=('x86_64')
-url="https://www.eyrie.org/~eagle/software/pam-krb5/;
-license=('custom')
-depends=('krb5' 'pam')
-source=(https://archives.eyrie.org/software/kerberos/$pkgname-$pkgver.tar.gz{,.asc})
-sha256sums=('e9608f7b8380788d838ca22fd12a44b3c86b11090e07b02efeabc8fc4beb9f27'
-'SKIP')
-validpgpkeys=('E784364E8DDE7BB370FBD9EAD15D313882004173') # Russ Allbery 

-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-reduced-depends --libdir=/usr/lib
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: pam-krb5/repos/community-x86_64/PKGBUILD (from rev 1034972, 
pam-krb5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 14:51:59 UTC (rev 1034973)
@@ -0,0 +1,33 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Mantas Mikulėnas 
+# Contributor: Kaiting Chen 
+# Contributor: Ryan Corder 
+
+pkgname=pam-krb5
+pkgver=4.11
+pkgrel=1
+pkgdesc="PAM module providing Kerberos v5 support"
+arch=('x86_64')
+url="https://www.eyrie.org/~eagle/software/pam-krb5/;
+license=('custom')
+depends=('krb5' 'pam')
+source=(https://archives.eyrie.org/software/kerberos/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('503cbe2cb1aff4bdfda3bcf7f93f94fb6ba52c26d708934e7039b2182fe10b20'
+'SKIP')
+validpgpkeys=('E784364E8DDE7BB370FBD9EAD15D313882004173') # Russ Allbery 

+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-reduced-depends --libdir=/usr/lib
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-10-30 Thread Jonathan Steel via arch-commits
Date: Saturday, October 30, 2021 @ 14:51:50
  Author: jsteel
Revision: 1034972

upgpkg: pam-krb5 4.11-1

Modified:
  pam-krb5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 12:00:28 UTC (rev 1034971)
+++ PKGBUILD2021-10-30 14:51:50 UTC (rev 1034972)
@@ -4,7 +4,7 @@
 # Contributor: Ryan Corder 
 
 pkgname=pam-krb5
-pkgver=4.10
+pkgver=4.11
 pkgrel=1
 pkgdesc="PAM module providing Kerberos v5 support"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=('custom')
 depends=('krb5' 'pam')
 
source=(https://archives.eyrie.org/software/kerberos/$pkgname-$pkgver.tar.gz{,.asc})
-sha256sums=('e9608f7b8380788d838ca22fd12a44b3c86b11090e07b02efeabc8fc4beb9f27'
+sha256sums=('503cbe2cb1aff4bdfda3bcf7f93f94fb6ba52c26d708934e7039b2182fe10b20'
 'SKIP')
 validpgpkeys=('E784364E8DDE7BB370FBD9EAD15D313882004173') # Russ Allbery 

 



[arch-commits] Commit in nodejs-lts-gallium/repos (3 files)

2021-10-30 Thread Bruno Pagani via arch-commits
Date: Saturday, October 30, 2021 @ 12:00:28
  Author: archange
Revision: 1034971

archrelease: copy trunk to community-x86_64

Added:
  nodejs-lts-gallium/repos/community-x86_64/
  nodejs-lts-gallium/repos/community-x86_64/PKGBUILD
(from rev 1034970, nodejs-lts-gallium/trunk/PKGBUILD)
  nodejs-lts-gallium/repos/community-x86_64/ares_compat.patch
(from rev 1034970, nodejs-lts-gallium/trunk/ares_compat.patch)

---+
 PKGBUILD  |   64 
 ares_compat.patch |   19 +++
 2 files changed, 83 insertions(+)

Copied: nodejs-lts-gallium/repos/community-x86_64/PKGBUILD (from rev 1034970, 
nodejs-lts-gallium/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-10-30 12:00:28 UTC (rev 1034971)
@@ -0,0 +1,64 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Felix Yan 
+
+pkgname=nodejs-lts-gallium
+pkgver=16.13.0
+pkgrel=1
+pkgdesc="Evented I/O for V8 javascript (LTS release: Gallium)"
+arch=(x86_64)
+url="https://nodejs.org/;
+license=(MIT)
+depends=(openssl zlib icu libuv c-ares brotli libnghttp2) # http-parser
+makedepends=(python procps-ng)
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=(nodejs)
+source=(${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz
+ares_compat.patch)
+# https://nodejs.org/download/release/latest-gallium/SHASUMS256.txt.asc
+sha256sums=(32114b3dc3945ed0f95f8bc33b42c68e0ef18c408cb56122572a163d907ecbcc
+59098e466c4e438cc77ac438e7ec78ec8e508ea067ba0db1894420dc4e3154e4)
+validpgpkeys=(C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8  # Myles Borins 

+  77984A986EBC2AA786BC0F66B01FBB92821C587A  # Gibson Fahnestock 

+  B9AE9905FFD7803F25714661B63B535A4C206CA9  # Evan Lucas 

+  DD8F2338BAE7501E3DD5AC78C273792F7D83545D  # Rod Vagg 

+  B9E2F5981AA6E0CD28160D9FF13993A75599653C  # Shelley Vohr 

+  4ED778F539E3634C779C87C6D7062848A1AB005C  # Beth Griggs 

+  C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C  # Richard Lau 

+  74F12602B6F1C4E913FAA37AD3A89613643B6201) # Danielle Adams 

+
+prepare() {
+  cd node-v${pkgver}
+  patch -p1 < ../ares_compat.patch
+}
+
+build() {
+  cd node-v${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-brotli \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  make test-only
+}
+
+package() {
+  cd node-v${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Copied: nodejs-lts-gallium/repos/community-x86_64/ares_compat.patch (from rev 
1034970, nodejs-lts-gallium/trunk/ares_compat.patch)
===
--- community-x86_64/ares_compat.patch  (rev 0)
+++ community-x86_64/ares_compat.patch  2021-10-30 12:00:28 UTC (rev 1034971)
@@ -0,0 +1,19 @@
+--- a/src/cares_wrap.h
 b/src/cares_wrap.h
+@@ -22,7 +22,15 @@
+ # include 
+ #endif  // __POSIX__
+ 
+-# include 
++#if defined(__ANDROID__) || \
++defined(__MINGW32__) || \
++defined(__OpenBSD__) || \
++defined(_MSC_VER)
++
++# include 
++#else
++# include 
++#endif
+ 
+ namespace node {
+ namespace cares_wrap {



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

2021-10-30 Thread Bruno Pagani via arch-commits
Date: Saturday, October 30, 2021 @ 12:00:01
  Author: archange
Revision: 1034970

Fix pkgdesc to Gallium

Modified:
  nodejs-lts-gallium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 11:20:22 UTC (rev 1034969)
+++ PKGBUILD2021-10-30 12:00:01 UTC (rev 1034970)
@@ -4,7 +4,7 @@
 pkgname=nodejs-lts-gallium
 pkgver=16.13.0
 pkgrel=1
-pkgdesc="Evented I/O for V8 javascript (LTS release: Fermium)"
+pkgdesc="Evented I/O for V8 javascript (LTS release: Gallium)"
 arch=(x86_64)
 url="https://nodejs.org/;
 license=(MIT)



[arch-commits] Commit in (5 files)

2021-10-30 Thread Bruno Pagani via arch-commits
Date: Saturday, October 30, 2021 @ 11:20:22
  Author: archange
Revision: 1034969

Initial addition of nodejs-lts-gallium to [community]

Added:
  nodejs-lts-gallium/
  nodejs-lts-gallium/repos/
  nodejs-lts-gallium/trunk/
  nodejs-lts-gallium/trunk/PKGBUILD
  nodejs-lts-gallium/trunk/ares_compat.patch

---+
 PKGBUILD  |   64 
 ares_compat.patch |   19 +++
 2 files changed, 83 insertions(+)

Added: nodejs-lts-gallium/trunk/PKGBUILD
===
--- nodejs-lts-gallium/trunk/PKGBUILD   (rev 0)
+++ nodejs-lts-gallium/trunk/PKGBUILD   2021-10-30 11:20:22 UTC (rev 1034969)
@@ -0,0 +1,64 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Felix Yan 
+
+pkgname=nodejs-lts-gallium
+pkgver=16.13.0
+pkgrel=1
+pkgdesc="Evented I/O for V8 javascript (LTS release: Fermium)"
+arch=(x86_64)
+url="https://nodejs.org/;
+license=(MIT)
+depends=(openssl zlib icu libuv c-ares brotli libnghttp2) # http-parser
+makedepends=(python procps-ng)
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=(nodejs)
+source=(${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz
+ares_compat.patch)
+# https://nodejs.org/download/release/latest-gallium/SHASUMS256.txt.asc
+sha256sums=(32114b3dc3945ed0f95f8bc33b42c68e0ef18c408cb56122572a163d907ecbcc
+59098e466c4e438cc77ac438e7ec78ec8e508ea067ba0db1894420dc4e3154e4)
+validpgpkeys=(C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8  # Myles Borins 

+  77984A986EBC2AA786BC0F66B01FBB92821C587A  # Gibson Fahnestock 

+  B9AE9905FFD7803F25714661B63B535A4C206CA9  # Evan Lucas 

+  DD8F2338BAE7501E3DD5AC78C273792F7D83545D  # Rod Vagg 

+  B9E2F5981AA6E0CD28160D9FF13993A75599653C  # Shelley Vohr 

+  4ED778F539E3634C779C87C6D7062848A1AB005C  # Beth Griggs 

+  C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C  # Richard Lau 

+  74F12602B6F1C4E913FAA37AD3A89613643B6201) # Danielle Adams 

+
+prepare() {
+  cd node-v${pkgver}
+  patch -p1 < ../ares_compat.patch
+}
+
+build() {
+  cd node-v${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-brotli \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  make test-only
+}
+
+package() {
+  cd node-v${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Added: nodejs-lts-gallium/trunk/ares_compat.patch
===
--- nodejs-lts-gallium/trunk/ares_compat.patch  (rev 0)
+++ nodejs-lts-gallium/trunk/ares_compat.patch  2021-10-30 11:20:22 UTC (rev 
1034969)
@@ -0,0 +1,19 @@
+--- a/src/cares_wrap.h
 b/src/cares_wrap.h
+@@ -22,7 +22,15 @@
+ # include 
+ #endif  // __POSIX__
+ 
+-# include 
++#if defined(__ANDROID__) || \
++defined(__MINGW32__) || \
++defined(__OpenBSD__) || \
++defined(_MSC_VER)
++
++# include 
++#else
++# include 
++#endif
+ 
+ namespace node {
+ namespace cares_wrap {



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

2021-10-30 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 30, 2021 @ 10:27:58
  Author: foutrelis
Revision: 426833

archrelease: copy trunk to testing-x86_64

Added:
  clang/repos/testing-x86_64/PKGBUILD
(from rev 426832, clang/trunk/PKGBUILD)
  clang/repos/testing-x86_64/enable-SSP-and-PIE-by-default.patch
(from rev 426832, clang/trunk/enable-SSP-and-PIE-by-default.patch)
  clang/repos/testing-x86_64/fix-scan-build-py-executable-lookup-path.patch
(from rev 426832, 
clang/trunk/fix-scan-build-py-executable-lookup-path.patch)
Deleted:
  clang/repos/testing-x86_64/PKGBUILD
  clang/repos/testing-x86_64/enable-SSP-and-PIE-by-default.patch
  clang/repos/testing-x86_64/fix-scan-build-py-executable-lookup-path.patch

+
 PKGBUILD   |  270 
 enable-SSP-and-PIE-by-default.patch|  748 +++
 fix-scan-build-py-executable-lookup-path.patch |   62 -
 3 files changed, 541 insertions(+), 539 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 10:27:50 UTC (rev 426832)
+++ PKGBUILD2021-10-30 10:27:58 UTC (rev 426833)
@@ -1,134 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Jan "heftig" Steffens 
-
-pkgname=clang
-pkgver=13.0.0
-pkgrel=1
-pkgdesc="C language family frontend for LLVM"
-arch=('x86_64')
-url="https://clang.llvm.org/;
-license=('custom:Apache 2.0 with LLVM Exception')
-depends=('llvm-libs' 'gcc' 'compiler-rt')
-makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx')
-optdepends=('openmp: OpenMP support in clang with -fopenmp'
-'python: for scan-view and git-clang-format'
-'llvm: referenced by some clang headers')
-provides=("clang-analyzer=$pkgver" "clang-tools-extra=$pkgver")
-conflicts=('clang-analyzer' 'clang-tools-extra')
-replaces=('clang-analyzer' 'clang-tools-extra')
-_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
-source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
-$_source_base/clang-tools-extra-$pkgver.src.tar.xz{,.sig}
-$_source_base/llvm-$pkgver.src.tar.xz{,.sig}
-fix-scan-build-py-executable-lookup-path.patch
-enable-SSP-and-PIE-by-default.patch)
-sha256sums=('5d611cbb06cfb6626be46eb2f23d003b2b80f40182898daa54b1c4e8b5b9e17e'
-'SKIP'
-'428b6060a28b22adf0cdf5d827abbc2ba81809f4661ede3d02b1d3fedaa3ead5'
-'SKIP'
-'408d11708643ea826f519ff79761fcdfc12d641a2510229eec459e72f8163020'
-'SKIP'
-'578b960121c42b8db80566dcb51558409d04455b618cdd608e41b35ded36c13e'
-'67706047fc93a2e79185d344bdac48219ce042c55ddb9b9397bc98db2153ba58')
-validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

-validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

-
-# Utilizing LLVM_DISTRIBUTION_COMPONENTS to avoid
-# installing static libraries; inspired by Gentoo
-_get_distribution_components() {
-  local target
-  ninja -t targets | grep -Po 'install-\K.*(?=-stripped:)' | while read -r 
target; do
-case $target in
-  clang-libraries|distribution)
-continue
-;;
-  clang-tidy-headers)
-continue
-;;
-  clang|clangd|clang-*)
-;;
-  clang*|findAllSymbols)
-continue
-;;
-esac
-echo $target
-  done
-}
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver.src"
-  mkdir build
-  mv "$srcdir/clang-tools-extra-$pkgver.src" tools/extra
-  patch -Np2 -i ../enable-SSP-and-PIE-by-default.patch
-
-  patch -Np2 -i ../fix-scan-build-py-executable-lookup-path.patch
-
-  # Attempt to convert script to Python 3
-  2to3 -wn --no-diffs \
-
tools/extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver.src/build"
-
-  local cmake_args=(
--G Ninja
--DCMAKE_BUILD_TYPE=Release
--DCMAKE_INSTALL_PREFIX=/usr
--DLLVM_LINK_LLVM_DYLIB=ON
--DCLANG_LINK_CLANG_DYLIB=ON
--DLLVM_ENABLE_RTTI=ON
--DLLVM_BUILD_TESTS=ON
--DLLVM_INCLUDE_DOCS=ON
--DLLVM_BUILD_DOCS=ON
--DLLVM_ENABLE_SPHINX=ON
--DSPHINX_WARNINGS_AS_ERRORS=OFF
--DLLVM_EXTERNAL_LIT=/usr/bin/lit
--DLLVM_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src"
-  )
-
-  cmake .. "${cmake_args[@]}"
-  local distribution_components=$(_get_distribution_components | paste -sd\;)
-  test -n "$distribution_components"
-  cmake_args+=(-DLLVM_DISTRIBUTION_COMPONENTS="$distribution_components")
-
-  cmake .. "${cmake_args[@]}"
-  ninja
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver.src/build"
-  ninja check-clang{,-tools}
-}
-
-_python_optimize() {
-  python -m compileall "$@"
-  python -O -m compileall "$@"
-  python -OO -m compileall "$@"
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver.src/build"
-
-  DESTDIR="$pkgdir" ninja install-distribution
-  install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # 

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

2021-10-30 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 30, 2021 @ 10:27:50
  Author: foutrelis
Revision: 426832

upgpkg: clang 13.0.0-2: re-add scan-build libexec path fix

Modified:
  clang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 10:00:07 UTC (rev 426831)
+++ PKGBUILD2021-10-30 10:27:50 UTC (rev 426832)
@@ -3,7 +3,7 @@
 
 pkgname=clang
 pkgver=13.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="C language family frontend for LLVM"
 arch=('x86_64')
 url="https://clang.llvm.org/;
@@ -125,7 +125,9 @@
   # Move analyzer scripts out of /usr/libexec
   mv "$pkgdir"/usr/libexec/* "$pkgdir/usr/lib/clang/"
   rmdir "$pkgdir/usr/libexec"
-  sed -i 's|libexec|lib/clang|' 
"$pkgdir/$site_packages/libscanbuild/analyze.py"
+  sed -i 's|libexec|lib/clang|' \
+"$pkgdir/usr/bin/scan-build" \
+"$pkgdir/$site_packages/libscanbuild/analyze.py"
 
   # Compile Python scripts
   _python_optimize "$pkgdir/usr/share" "$pkgdir/$site_packages"



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

2021-10-30 Thread Ike Devolder via arch-commits
Date: Saturday, October 30, 2021 @ 10:23:54
  Author: idevolder
Revision: 1034968

archrelease: copy trunk to community-x86_64

Added:
  php-mongodb/repos/community-x86_64/PKGBUILD
(from rev 1034967, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-x86_64/mongodb.ini
(from rev 1034967, php-mongodb/trunk/mongodb.ini)
Deleted:
  php-mongodb/repos/community-x86_64/PKGBUILD
  php-mongodb/repos/community-x86_64/mongodb.ini

-+
 PKGBUILD|  104 +-
 mongodb.ini |4 +-
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 10:23:48 UTC (rev 1034967)
+++ PKGBUILD2021-10-30 10:23:54 UTC (rev 1034968)
@@ -1,52 +0,0 @@
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Felix Yan 
-# Contributor: Martin Striz < ms AT martinstriz DOT cz >
-# Contributor: Jarek Sedlacek 
-
-pkgbase=php-mongodb
-pkgname=(php-mongodb php7-mongodb)
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="MongoDB driver for PHP"
-arch=("x86_64")
-url="http://mongodb.github.io/mongo-php-driver;
-license=("Apache")
-makedepends=('php7' 'php' 're2c')
-source=(
-   "https://pecl.php.net/get/mongodb-$pkgver.tgz;
-   "mongodb.ini"
-)
-sha512sums=('72527087dc3d1e1d48d6236592c1fbafa68354e2b8e070e85180d79ffcaa82740641450808a235bb711ded16ff65ec0cbd53fb66f0da18837351a3d402c3976f'
-
'47b167ab4d761f4cf8351fef14e46c714dacae6d9a1b6d281bb87129499ee520f55f35f47c16b55ea2ecf41c67aad12439a99d3363d381b2511659b01f0b6ef0')
-
-prepare() {
-cp -a "$srcdir/mongodb-$pkgver" "$srcdir/mongodb7-$pkgver"
-}
-
-build() {
-   cd "$srcdir/mongodb-$pkgver"
-   phpize
-   ./configure --prefix=/usr
-
-   cd "$srcdir/mongodb7-$pkgver"
-   phpize7
-   ./configure --prefix=/usr
-}
-
-package_php-mongodb() {
-pkgdesc="MongoDB driver for PHP"
-depends=('php')
-backup=("etc/php/conf.d/mongodb.ini")
-   cd mongodb-$pkgver
-   make INSTALL_ROOT="$pkgdir" install
-   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
-}
-
-package_php7-mongodb() {
-pkgdesc="MongoDB driver for PHP7"
-depends=('php7')
-backup=("etc/php7/conf.d/mongodb.ini")
-   cd mongodb7-$pkgver
-   make INSTALL_ROOT="$pkgdir" install
-   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php7/conf.d/mongodb.ini"
-}

Copied: php-mongodb/repos/community-x86_64/PKGBUILD (from rev 1034967, 
php-mongodb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 10:23:54 UTC (rev 1034968)
@@ -0,0 +1,52 @@
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgbase=php-mongodb
+pkgname=(php-mongodb php7-mongodb)
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="MongoDB driver for PHP"
+arch=("x86_64")
+url="http://mongodb.github.io/mongo-php-driver;
+license=("Apache")
+makedepends=('php7' 'php' 're2c')
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz;
+   "mongodb.ini"
+)
+sha512sums=('1b55688262b28bc15f6746df68e359eb592235bc0b61769d702329b5eaf4a074bbff8b16cb56d78fb1e1a9ffb0f52fcf5d0fc78eeb743705fc31801f97e3cc05'
+
'47b167ab4d761f4cf8351fef14e46c714dacae6d9a1b6d281bb87129499ee520f55f35f47c16b55ea2ecf41c67aad12439a99d3363d381b2511659b01f0b6ef0')
+
+prepare() {
+cp -a "$srcdir/mongodb-$pkgver" "$srcdir/mongodb7-$pkgver"
+}
+
+build() {
+   cd "$srcdir/mongodb-$pkgver"
+   phpize
+   ./configure --prefix=/usr
+
+   cd "$srcdir/mongodb7-$pkgver"
+   phpize7
+   ./configure --prefix=/usr
+}
+
+package_php-mongodb() {
+pkgdesc="MongoDB driver for PHP"
+depends=('php')
+backup=("etc/php/conf.d/mongodb.ini")
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
+}
+
+package_php7-mongodb() {
+pkgdesc="MongoDB driver for PHP7"
+depends=('php7')
+backup=("etc/php7/conf.d/mongodb.ini")
+   cd mongodb7-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php7/conf.d/mongodb.ini"
+}

Deleted: mongodb.ini
===
--- mongodb.ini 2021-10-30 10:23:48 UTC (rev 1034967)
+++ mongodb.ini 2021-10-30 10:23:54 UTC (rev 1034968)
@@ -1,2 +0,0 @@
-; Tell PHP to load the MongoDB Extension on startup
-extension=mongodb.so

Copied: php-mongodb/repos/community-x86_64/mongodb.ini (from rev 1034967, 
php-mongodb/trunk/mongodb.ini)
===
--- mongodb.ini (rev 0)
+++ mongodb.ini 2021-10-30 10:23:54 UTC (rev 1034968)
@@ -0,0 +1,2 @@

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

2021-10-30 Thread Ike Devolder via arch-commits
Date: Saturday, October 30, 2021 @ 10:23:48
  Author: idevolder
Revision: 1034967

upgpkg: php-mongodb 1.11.0-1

Modified:
  php-mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 09:59:56 UTC (rev 1034966)
+++ PKGBUILD2021-10-30 10:23:48 UTC (rev 1034967)
@@ -5,7 +5,7 @@
 
 pkgbase=php-mongodb
 pkgname=(php-mongodb php7-mongodb)
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="MongoDB driver for PHP"
 arch=("x86_64")
@@ -16,7 +16,7 @@
"https://pecl.php.net/get/mongodb-$pkgver.tgz;
"mongodb.ini"
 )
-sha512sums=('72527087dc3d1e1d48d6236592c1fbafa68354e2b8e070e85180d79ffcaa82740641450808a235bb711ded16ff65ec0cbd53fb66f0da18837351a3d402c3976f'
+sha512sums=('1b55688262b28bc15f6746df68e359eb592235bc0b61769d702329b5eaf4a074bbff8b16cb56d78fb1e1a9ffb0f52fcf5d0fc78eeb743705fc31801f97e3cc05'
 
'47b167ab4d761f4cf8351fef14e46c714dacae6d9a1b6d281bb87129499ee520f55f35f47c16b55ea2ecf41c67aad12439a99d3363d381b2511659b01f0b6ef0')
 
 prepare() {



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

2021-10-30 Thread Bruno Pagani via arch-commits
Date: Saturday, October 30, 2021 @ 09:50:21
  Author: archange
Revision: 1034945

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: intel-compute-runtime/repos/community-staging-x86_64/PKGBUILD (from rev 
1034944, intel-compute-runtime/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-30 09:50:21 UTC (rev 1034945)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-compute-runtime
+pkgver=21.43.21438
+pkgrel=1
+pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
+arch=(x86_64)
+url="https://01.org/compute-runtime;
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva level-zero-headers igsc)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver level-zero-driver)
+source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('33a4626aeeb52444ec05e64cc16d3b97c878cfc5f7687f6380869a60f55376f3')
+
+build() {
+  # ${${pkgver#*.}%.*} not supported by bash?
+  cmake -B build -S compute-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_OCL_VERSION_MAJOR=${pkgver%%.*} \
+-DNEO_OCL_VERSION_MINOR=$(echo ${pkgver} | cut -d . -f2) \
+-DNEO_VERSION_BUILD=${pkgver##*.} \
+-DSUPPORT_DG1=ON \
+-DNEO_DISABLE_BUILTINS_COMPILATION=ON \
+-DSKIP_UNIT_TESTS=1 \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm755 build/bin/libocloc.so -t "${pkgdir}"/usr/lib/intel-opencl
+  install -Dm644 compute-runtime-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+  
+  ln -s $(find "${pkgdir}"/usr/lib -regex '.*libze_intel_gpu.so.[0-9]*' -exec 
basename {} \;) "${pkgdir}"/usr/lib/libze_intel_gpu.so
+}



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

2021-10-30 Thread Bruno Pagani via arch-commits
Date: Saturday, October 30, 2021 @ 09:50:00
  Author: archange
Revision: 1034944

upgpkg: intel-compute-runtime 21.43.21438-1

Tentative rebuild for LLVM13

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 09:01:10 UTC (rev 1034943)
+++ PKGBUILD2021-10-30 09:50:00 UTC (rev 1034944)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=intel-compute-runtime
-pkgver=21.42.21270
+pkgver=21.43.21438
 pkgrel=1
 pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
 arch=(x86_64)
@@ -14,14 +14,20 @@
 'libdrm: for cl_intel_va_api_media_sharing')
 provides=(opencl-driver level-zero-driver)
 
source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('cf7340e43a1574ad23a76034ae731b992a9430e09397a3376bb473a13ebdc33e')
+sha256sums=('33a4626aeeb52444ec05e64cc16d3b97c878cfc5f7687f6380869a60f55376f3')
 
 build() {
+  # ${${pkgver#*.}%.*} not supported by bash?
   cmake -B build -S compute-runtime-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_OCL_VERSION_MAJOR=${pkgver%%.*} \
+-DNEO_OCL_VERSION_MINOR=$(echo ${pkgver} | cut -d . -f2) \
+-DNEO_VERSION_BUILD=${pkgver##*.} \
 -DSUPPORT_DG1=ON \
+-DNEO_DISABLE_BUILTINS_COMPILATION=ON \
+-DSKIP_UNIT_TESTS=1 \
 -Wno-dev
   make -C build
 }



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:47:08
  Author: arojas
Revision: 426811

archrelease: copy trunk to testing-x86_64

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

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

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



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:47:01
  Author: arojas
Revision: 426810

Update to 1.46.0

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 07:45:24 UTC (rev 426809)
+++ PKGBUILD2021-10-30 07:47:01 UTC (rev 426810)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.45.1
+pkgver=1.46.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -16,7 +16,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha512sums=('320a8c9f29b58c55df98be4312d415bc406edbdfb0765aa37570cdb472a84f40c4f95a51c44c5488363c16ad6815c75b5503b32e43d94724c54117ff583c7150')
+sha512sums=('fcf3573bcc421705190c7cf0e3230f6f3028b669cb2976d29cfeb73e706deaae91ce60d0a615472e3f296454049ea5798f1e8defdd260a98895e94fea6a7a16b')
 
 build() {
   cd nghttp2-$pkgver



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:45:24
  Author: arojas
Revision: 426809

archrelease: copy trunk to testing-x86_64

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

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

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



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:45:11
  Author: arojas
Revision: 426808

Update to 1.46.0

Modified:
  libnghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 07:20:03 UTC (rev 426807)
+++ PKGBUILD2021-10-30 07:45:11 UTC (rev 426808)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=libnghttp2
-pkgver=1.45.1
+pkgver=1.46.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 conflicts=('nghttp2<1.20.0-2')
 
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha512sums=('320a8c9f29b58c55df98be4312d415bc406edbdfb0765aa37570cdb472a84f40c4f95a51c44c5488363c16ad6815c75b5503b32e43d94724c54117ff583c7150')
+sha512sums=('fcf3573bcc421705190c7cf0e3230f6f3028b669cb2976d29cfeb73e706deaae91ce60d0a615472e3f296454049ea5798f1e8defdd260a98895e94fea6a7a16b')
 
 build() {
   cd nghttp2-$pkgver



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:30:57
  Author: arojas
Revision: 1034940

archrelease: copy trunk to community-x86_64

Added:
  libstrophe/repos/community-x86_64/PKGBUILD
(from rev 1034939, libstrophe/trunk/PKGBUILD)
Deleted:
  libstrophe/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 07:30:48 UTC (rev 1034939)
+++ PKGBUILD2021-10-30 07:30:57 UTC (rev 1034940)
@@ -1,56 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgbase=libstrophe
-pkgname=('libstrophe' 'libstrophe-doc')
-pkgver=0.10.1
-pkgrel=1
-epoch=1
-pkgdesc='Simple, lightweight C library for writing XMPP clients'
-url='http://strophe.im/libstrophe/'
-arch=('x86_64')
-license=('GPL3' 'MIT')
-depends=('glibc' 'openssl' 'expat')
-makedepends=('doxygen')
-checkdepends=('check')
-source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('ed68789109ecc05122fec460b92ab360a061b786406d9afa26f83bbf062322e9523700753523ffaa994c02b282d3194fbe6e43b31aadb50a12d1bb0339b2ba5a')
-b2sums=('adf04c43ffeb5b1f79e724f9f5e2ba9e049cf5975632bb64f131f21c66881d82de8591801502ad40eb8e5eeae481a6d154e6c2625437f312202ba7ea10ae')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./configure \
---prefix=/usr
-  make
-  doxygen
-}
-
-check() {
-  make -C ${pkgbase}-${pkgver} check
-}
-
-package_libstrophe() {
-  depends+=('libexpat.so')
-  provides=('libstrophe.so')
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-}
-
-package_libstrophe-doc() {
-  pkgdesc+=' (documentation and samples)'
-  depends=()
-  options=('!strip')
-  optdepends=('libstrophe')
-  cd ${pkgbase}-${pkgver}
-  install -Dm 644 docs/html/* -t "${pkgdir}/usr/share/doc/${pkgname}/html"
-  install -Dm 644 examples/{README.md,*.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
-  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libstrophe/repos/community-x86_64/PKGBUILD (from rev 1034939, 
libstrophe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 07:30:57 UTC (rev 1034940)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=libstrophe
+pkgname=('libstrophe' 'libstrophe-doc')
+pkgver=0.11.0
+pkgrel=1
+epoch=1
+pkgdesc='Simple, lightweight C library for writing XMPP clients'
+url='http://strophe.im/libstrophe/'
+arch=('x86_64')
+license=('GPL3' 'MIT')
+depends=('glibc' 'openssl' 'expat')
+makedepends=('doxygen')
+checkdepends=('check')
+source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3e2be97405d4f41f8bbd7f30bac1c2e7ec426f7ea3ac662646192ba298e3e791e8c6ad336ba2b647cb65e8bce2e2063343004652a1f1f6cbf9958d84b262c1c3')
+b2sums=('97ff14194d82d8072339852471c60d29ba8d9ce7b25c6848c503e86d3f5bb6b5eb70a8914541adc2e331f4183f961842fd40bc274bf2c8f568e57fa54b8543f6')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure \
+--prefix=/usr
+  make
+  doxygen
+}
+
+check() {
+  make -C ${pkgbase}-${pkgver} check
+}
+
+package_libstrophe() {
+  depends+=('libexpat.so')
+  provides=('libstrophe.so')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+}
+
+package_libstrophe-doc() {
+  pkgdesc+=' (documentation and samples)'
+  depends=()
+  options=('!strip')
+  optdepends=('libstrophe')
+  cd ${pkgbase}-${pkgver}
+  install -Dm 644 docs/html/* -t "${pkgdir}/usr/share/doc/${pkgname}/html"
+  install -Dm 644 examples/{README.md,*.c} -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
+  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:30:48
  Author: arojas
Revision: 1034939

Update to 0.11.0

Modified:
  libstrophe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 05:14:26 UTC (rev 1034938)
+++ PKGBUILD2021-10-30 07:30:48 UTC (rev 1034939)
@@ -3,7 +3,7 @@
 
 pkgbase=libstrophe
 pkgname=('libstrophe' 'libstrophe-doc')
-pkgver=0.10.1
+pkgver=0.11.0
 pkgrel=1
 epoch=1
 pkgdesc='Simple, lightweight C library for writing XMPP clients'
@@ -14,8 +14,8 @@
 makedepends=('doxygen')
 checkdepends=('check')
 
source=(https://github.com/strophe/libstrophe/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('ed68789109ecc05122fec460b92ab360a061b786406d9afa26f83bbf062322e9523700753523ffaa994c02b282d3194fbe6e43b31aadb50a12d1bb0339b2ba5a')
-b2sums=('adf04c43ffeb5b1f79e724f9f5e2ba9e049cf5975632bb64f131f21c66881d82de8591801502ad40eb8e5eeae481a6d154e6c2625437f312202ba7ea10ae')
+sha512sums=('3e2be97405d4f41f8bbd7f30bac1c2e7ec426f7ea3ac662646192ba298e3e791e8c6ad336ba2b647cb65e8bce2e2063343004652a1f1f6cbf9958d84b262c1c3')
+b2sums=('97ff14194d82d8072339852471c60d29ba8d9ce7b25c6848c503e86d3f5bb6b5eb70a8914541adc2e331f4183f961842fd40bc274bf2c8f568e57fa54b8543f6')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:20:03
  Author: arojas
Revision: 426807

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 426806, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 426806, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  246 +++---
 arch-fonts.diff |  214 +++---
 2 files changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-30 07:19:47 UTC (rev 426806)
+++ PKGBUILD2021-10-30 07:20:03 UTC (rev 426807)
@@ -1,123 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(imagemagick imagemagick-doc)
-pkgver=7.1.0.12
-pkgrel=1
-pkgdesc='An image viewing/manipulation program'
-url='https://www.imagemagick.org/'
-arch=(x86_64)
-license=(custom)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip libjxl highway
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng djvulibre)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://download.imagemagick.org/ImageMagick/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('4ce43f53b7185c80f92e4e1acb639ab913ff7b4d6841ebdfdaa3028c505c7ca0'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p docpkg/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---disable-static \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-djvu \
---with-jxl \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_imagemagick() {
-  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libjxl: JPEG XL support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'djvulibre: DJVU support'
-  'pango: Text rendering'
-  'imagemagick-doc: manual and API docs')
-  options=(!emptydirs libtool)
-  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  conflicts=(imagemagick6)
-  provides=(libmagick)
-  replaces=(imagemagick6 libmagick)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-7/policy.xml
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 426806, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-30 07:20:03 UTC (rev 426807)
@@ -0,0 +1,123 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric Bélanger 
+
+pkgbase=imagemagick

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

2021-10-30 Thread Antonio Rojas via arch-commits
Date: Saturday, October 30, 2021 @ 07:19:47
  Author: arojas
Revision: 426806

Update to 7.1.0.13

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-30 04:44:39 UTC (rev 426805)
+++ PKGBUILD2021-10-30 07:19:47 UTC (rev 426806)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.1.0.12
+pkgver=7.1.0.13
 pkgrel=1
 pkgdesc='An image viewing/manipulation program'
 url='https://www.imagemagick.org/'
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 
source=(https://download.imagemagick.org/ImageMagick/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('4ce43f53b7185c80f92e4e1acb639ab913ff7b4d6841ebdfdaa3028c505c7ca0'
+sha256sums=('7eb82add552eb197775c69bae2cba8611e1293cc697f4938d92868f30373576a'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae