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

2021-05-16 Thread Allan McRae via arch-commits
Date: Monday, May 17, 2021 @ 01:31:32
  Author: allan
Revision: 415612

archrelease: copy trunk to testing-x86_64

Added:
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 415611, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 415611, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf
(from rev 415611, pacman/trunk/pacman.conf)

--+
 PKGBUILD |   65 
 makepkg.conf |  150 +
 pacman.conf  |   99 +
 3 files changed, 314 insertions(+)

Copied: pacman/repos/testing-x86_64/PKGBUILD (from rev 415611, 
pacman/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-17 01:31:32 UTC (rev 415612)
@@ -0,0 +1,65 @@
+# vim: set ts=2 sw=2 et:
+# Maintainer: 
+
+pkgname=pacman
+pkgver=5.2.2
+pkgrel=4
+pkgdesc="A library-based package manager with dependency support"
+arch=('x86_64')
+url="https://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python' 'fakechroot')
+optdepends=('perl-locale-gettext: translation support in makepkg-template')
+provides=('libalpm.so')
+backup=(etc/pacman.conf
+etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf
+makepkg.conf
+
pacman-5.2.2-fix-strip-messing-up-file-attributes.patch::'https://git.archlinux.org/pacman.git/patch/?id=88d054093c1c99a697d95b26bd9aad5bc4d8e170'
+   
pacman-5.2.2-fix-debug-packages-with-gcc11.patch::'https://git.archlinux.org/pacman.git/patch/?id=bdf6aa3fb757a2363a4e708174b7d23a4997763d')
  
+sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
+'SKIP'
+'3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
+'46a7fda0f2ebd2957db1c0264ed8a659df0916ba30e1353ecc70ef47d2b118ff'
+'871fd97b3f13f1718358e4b8e046a56c0262c9042b5e3b5d60835606735798bd'
+'6be31dd7f4e1645e58c26fafaf1d9df4ba5e31b629fc3e8f4070d771571d0011')
+
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 < 
"$srcdir"/pacman-5.2.2-fix-strip-messing-up-file-attributes.patch
+  patch -Np1 < "$srcdir"/pacman-5.2.2-fix-debug-packages-with-gcc11.patch
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf" "$pkgdir/etc"
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+}

Copied: pacman/repos/testing-x86_64/makepkg.conf (from rev 415611, 
pacman/trunk/makepkg.conf)
===
--- testing-x86_64/makepkg.conf (rev 0)
+++ testing-x86_64/makepkg.conf 2021-05-17 01:31:32 UTC (rev 415612)
@@ -0,0 +1,150 @@
+#!/hint/bash
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION
+#
+#
+#-- The download utilities that makepkg should use to acquire sources
+#  Format: 'protocol::agent'
+DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
+  'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o 
%o %u'
+  'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o 
%u'
+  'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o 
%u'
+  'rsync::/usr/bin/rsync --no-motd -z %u %o'
+  'scp::/usr/bin/scp -C %u %o')
+
+# Other common tools:
+# /usr/bin/snarf
+# /usr/bin/lftpget -c
+# /usr/bin/wget
+
+#-- The package required by makepkg to download VCS sources
+#  Format: 'protocol::package'
+VCSCLIENTS=('bzr::bzr'
+'git::git'
+'hg::mercurial'
+'svn::subversion')
+
+#
+# ARCHITECTURE, COMPILE FLAGS
+#
+#
+CARCH="x86_64"
+CHOST="x86_64-pc-linux-gnu"
+
+#-- Compiler and Linker Flags
+#CPPFLAGS=""
+CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \
+

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

2021-05-16 Thread Allan McRae via arch-commits
Date: Monday, May 17, 2021 @ 01:31:05
  Author: allan
Revision: 415611

upgpkg: pacman 5.2.2-4: fix debug package compatibility with gcc-11

Modified:
  pacman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-17 01:24:06 UTC (rev 415610)
+++ PKGBUILD2021-05-17 01:31:05 UTC (rev 415611)
@@ -3,7 +3,7 @@
 
 pkgname=pacman
 pkgver=5.2.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A library-based package manager with dependency support"
 arch=('x86_64')
 url="https://www.archlinux.org/pacman/;
@@ -23,17 +23,20 @@
 
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
 pacman.conf
 makepkg.conf
-
pacman-5.2.2-fix-strip-messing-up-file-attributes.patch::'https://git.archlinux.org/pacman.git/patch/?id=88d054093c1c99a697d95b26bd9aad5bc4d8e170')
  
+
pacman-5.2.2-fix-strip-messing-up-file-attributes.patch::'https://git.archlinux.org/pacman.git/patch/?id=88d054093c1c99a697d95b26bd9aad5bc4d8e170'
+   
pacman-5.2.2-fix-debug-packages-with-gcc11.patch::'https://git.archlinux.org/pacman.git/patch/?id=bdf6aa3fb757a2363a4e708174b7d23a4997763d')
  
 sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
 'SKIP'
 '3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
 '46a7fda0f2ebd2957db1c0264ed8a659df0916ba30e1353ecc70ef47d2b118ff'
-'871fd97b3f13f1718358e4b8e046a56c0262c9042b5e3b5d60835606735798bd')
+'871fd97b3f13f1718358e4b8e046a56c0262c9042b5e3b5d60835606735798bd'
+'6be31dd7f4e1645e58c26fafaf1d9df4ba5e31b629fc3e8f4070d771571d0011')
 
 
 prepare() {
   cd "$pkgname-$pkgver"
-  patch -Np1 < ../pacman-5.2.2-fix-strip-messing-up-file-attributes.patch
+  patch -Np1 < 
"$srcdir"/pacman-5.2.2-fix-strip-messing-up-file-attributes.patch
+  patch -Np1 < "$srcdir"/pacman-5.2.2-fix-debug-packages-with-gcc11.patch
 }
 
 build() {


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Monday, May 17, 2021 @ 00:30:38
  Author: felixonmars
Revision: 935980

upgpkg: python-dnslib 0.9.16-1

Modified:
  python-dnslib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-17 00:18:57 UTC (rev 935979)
+++ PKGBUILD2021-05-17 00:30:38 UTC (rev 935980)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-dnslib
-pkgver=0.9.14
-pkgrel=2
+pkgver=0.9.16
+pkgrel=1
 pkgdesc="Simple library to encode/decode DNS wire-format packets"
 arch=('any')
 url="https://bitbucket.org/paulc/dnslib;
@@ -9,7 +9,7 @@
 license=('custom:BSD')
 depends=('python')
 source=("https://pypi.io/packages/source/d/dnslib/dnslib-$pkgver.tar.gz;)
-sha512sums=('75638ae5ac238ae60151bdf52f678be2afa21da429670ebf1eb4dfda04e871d171664995b52690fd921aeee28d25630d0fad015677471e68563ba04dbbbd52f6')
+sha512sums=('debe8a68cd88224a42aec3800683e803f8928dfd67645b58e0fd7f74eff6b22bad09a84e7b322c3e19e7aecb7b70ea086a2ab4b3f8d91c11dc3efc6f8b288ff2')
 
 package() {
   cd dnslib-$pkgver


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Monday, May 17, 2021 @ 00:30:53
  Author: felixonmars
Revision: 935981

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-17 00:30:38 UTC (rev 935980)
+++ PKGBUILD2021-05-17 00:30:53 UTC (rev 935981)
@@ -1,17 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-dnslib
-pkgver=0.9.14
-pkgrel=2
-pkgdesc="Simple library to encode/decode DNS wire-format packets"
-arch=('any')
-url="https://bitbucket.org/paulc/dnslib;
-license=('custom:BSD')
-depends=('python')
-source=("https://pypi.io/packages/source/d/dnslib/dnslib-$pkgver.tar.gz;)
-sha512sums=('75638ae5ac238ae60151bdf52f678be2afa21da429670ebf1eb4dfda04e871d171664995b52690fd921aeee28d25630d0fad015677471e68563ba04dbbbd52f6')
-
-package() {
-  cd dnslib-$pkgver
-  python setup.py install -O1 --root="$pkgdir"
-}

Copied: python-dnslib/repos/community-any/PKGBUILD (from rev 935980, 
python-dnslib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-17 00:30:53 UTC (rev 935981)
@@ -0,0 +1,17 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-dnslib
+pkgver=0.9.16
+pkgrel=1
+pkgdesc="Simple library to encode/decode DNS wire-format packets"
+arch=('any')
+url="https://bitbucket.org/paulc/dnslib;
+license=('custom:BSD')
+depends=('python')
+source=("https://pypi.io/packages/source/d/dnslib/dnslib-$pkgver.tar.gz;)
+sha512sums=('debe8a68cd88224a42aec3800683e803f8928dfd67645b58e0fd7f74eff6b22bad09a84e7b322c3e19e7aecb7b70ea086a2ab4b3f8d91c11dc3efc6f8b288ff2')
+
+package() {
+  cd dnslib-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+}


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Monday, May 17, 2021 @ 00:18:57
  Author: kpcyrd
Revision: 935979

archrelease: copy trunk to community-x86_64

Added:
  intel-media-sdk/repos/community-x86_64/PKGBUILD
(from rev 935978, intel-media-sdk/trunk/PKGBUILD)
Deleted:
  intel-media-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-17 00:18:40 UTC (rev 935978)
+++ PKGBUILD2021-05-17 00:18:57 UTC (rev 935979)
@@ -1,59 +0,0 @@
-# Maintainer: Daniel Bermond 
-
-pkgbase=intel-media-sdk
-pkgname=('intel-media-sdk' 'libmfx')
-pkgver=20.5.1
-pkgrel=1
-pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
-arch=('x86_64')
-url='https://software.intel.com/en-us/media-sdk/'
-license=('MIT')
-makedepends=('libdrm' 'libva' 'wayland' 'intel-media-driver'
- 'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python'
- 'opencl-headers' 'opencl-clhpp' 'ocl-icd' 'intel-compute-runtime')
-source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;)
-sha256sums=('047986646f185313df2159fd44bccd870e173bb1cae9c2501ac6b9774bfd424b')
-
-build() {
-cmake -B build -S "MediaSDK-intel-mediasdk-${pkgver}" \
--DBUILD_ALL:BOOL='ON' \
--DBUILD_TOOLS:BOOL='ON' \
--DCMAKE_BUILD_TYPE:STRING='None' \
--DCMAKE_INSTALL_PREFIX:PATH='/usr' \
--DENABLE_ITT:BOOL='OFF' \
--DENABLE_OPENCL:BOOL='ON' \
--DENABLE_WAYLAND:BOOL='ON' \
--DENABLE_X11_DRI3:BOOL='ON' \
--Wno-dev
-make -C build
-}
-
-check() {
-make -C build test
-}
-
-package_intel-media-sdk() {
-depends=('libdrm' 'libva' 'wayland' "libmfx=${pkgver}" 
'intel-media-driver')
-optdepends=('ocl-icd: for rotate_opencl plugin'
-'intel-compute-runtime: for rotate_opencl plugin')
-
-make -C build DESTDIR="$pkgdir" install
-ln -s ../share/mfx/samples/libcttmetrics.so 
"${pkgdir}/usr/lib/libcttmetrics.so"
-install -D -m644 "MediaSDK-intel-mediasdk-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-
-# remove core component libmfx
-[ -d 'libmfx' ] && rm -rf libmfx
-mkdir -p libmfx/{include,lib/pkgconfig}
-mv "${pkgdir}/usr/include/mfx" libmfx/include
-mv "${pkgdir}/usr/lib/libmfx.so"* libmfx/lib
-mv "${pkgdir}/usr/lib/pkgconfig/"{,lib}mfx.pc libmfx/lib/pkgconfig
-rm -d "${pkgdir}/usr/include"
-}
-
-package_libmfx() {
-pkgdesc='Intel Media SDK dispatcher library'
-depends=('gcc-libs')
-
-mv libmfx "${pkgdir}/usr"
-install -D -m644 "MediaSDK-intel-mediasdk-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: intel-media-sdk/repos/community-x86_64/PKGBUILD (from rev 935978, 
intel-media-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-17 00:18:57 UTC (rev 935979)
@@ -0,0 +1,66 @@
+# Maintainer: Daniel Bermond 
+
+pkgbase=intel-media-sdk
+pkgname=('intel-media-sdk' 'libmfx')
+pkgver=21.1.3
+pkgrel=1
+pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
+arch=('x86_64')
+url='https://software.intel.com/en-us/media-sdk/'
+license=('MIT')
+makedepends=('libdrm' 'libva' 'wayland' 'intel-media-driver'
+ 'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python'
+ 'opencl-headers' 'opencl-clhpp' 'ocl-icd' 'intel-compute-runtime')
+source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;
+
"https://github.com/Intel-Media-SDK/MediaSDK/commit/f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch;)
+sha256sums=('718e68e3be78fcdc2dea0e3cd4714c38df2d451d7c8afef840c9c07e82bd4cb9'
+'ec78fdcd4a492ce75c81129d3834763ff04e4a73fbc16f6e5890e5cb8c191fdb')
+
+prepare() {
+cd MediaSDK-intel-mediasdk-${pkgver}
+patch -p1 -i ../f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch
+}
+
+build() {
+cmake -B build -S "MediaSDK-intel-mediasdk-${pkgver}" \
+-DBUILD_ALL:BOOL='ON' \
+-DBUILD_TOOLS:BOOL='ON' \
+-DCMAKE_BUILD_TYPE:STRING='None' \
+-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+-DENABLE_ITT:BOOL='OFF' \
+-DENABLE_OPENCL:BOOL='ON' \
+-DENABLE_WAYLAND:BOOL='ON' \
+-DENABLE_X11_DRI3:BOOL='ON' \
+-Wno-dev
+make -C build
+}
+
+check() {
+make -C build test
+}
+
+package_intel-media-sdk() {
+depends=('libdrm' 'libva' 'wayland' "libmfx=${pkgver}" 
'intel-media-driver')
+optdepends=('ocl-icd: for rotate_opencl plugin'
+'intel-compute-runtime: for rotate_opencl plugin')
+
+make -C build DESTDIR="$pkgdir" install
+ln -s ../share/mfx/samples/libcttmetrics.so 
"${pkgdir}/usr/lib/libcttmetrics.so"
+

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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Monday, May 17, 2021 @ 00:18:40
  Author: kpcyrd
Revision: 935978

upgpkg: intel-media-sdk 21.1.3-1

Modified:
  intel-media-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-17 00:10:00 UTC (rev 935977)
+++ PKGBUILD2021-05-17 00:18:40 UTC (rev 935978)
@@ -2,7 +2,7 @@
 
 pkgbase=intel-media-sdk
 pkgname=('intel-media-sdk' 'libmfx')
-pkgver=20.5.1
+pkgver=21.1.3
 pkgrel=1
 pkgdesc='API to access hardware-accelerated video on Intel Gen graphics 
hardware platforms'
 arch=('x86_64')
@@ -11,9 +11,16 @@
 makedepends=('libdrm' 'libva' 'wayland' 'intel-media-driver'
  'cmake' 'libpciaccess' 'libx11' 'libxcb' 'python'
  'opencl-headers' 'opencl-clhpp' 'ocl-icd' 'intel-compute-runtime')
-source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;)
-sha256sums=('047986646f185313df2159fd44bccd870e173bb1cae9c2501ac6b9774bfd424b')
+source=("https://github.com/Intel-Media-SDK/MediaSDK/archive/intel-mediasdk-${pkgver}.tar.gz;
+
"https://github.com/Intel-Media-SDK/MediaSDK/commit/f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch;)
+sha256sums=('718e68e3be78fcdc2dea0e3cd4714c38df2d451d7c8afef840c9c07e82bd4cb9'
+'ec78fdcd4a492ce75c81129d3834763ff04e4a73fbc16f6e5890e5cb8c191fdb')
 
+prepare() {
+cd MediaSDK-intel-mediasdk-${pkgver}
+patch -p1 -i ../f6925886f27a39eed2e43c5b7b6c342d00f7a970.patch
+}
+
 build() {
 cmake -B build -S "MediaSDK-intel-mediasdk-${pkgver}" \
 -DBUILD_ALL:BOOL='ON' \


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

2021-05-16 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, May 17, 2021 @ 00:10:00
  Author: svenstaro
Revision: 935977

archrelease: copy trunk to community-x86_64

Added:
  tensorboard/repos/community-x86_64/PKGBUILD
(from rev 935976, tensorboard/trunk/PKGBUILD)
Deleted:
  tensorboard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-17 00:09:41 UTC (rev 935976)
+++ PKGBUILD2021-05-17 00:10:00 UTC (rev 935977)
@@ -1,55 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Konstantin Gizdov 
-
-pkgname=tensorboard
-pkgver=2.5.0
-pkgrel=1
-pkgdesc="TensorFlow's Visualization Toolkit"
-url='https://github.com/tensorflow/tensorboard'
-arch=('x86_64')
-license=('APACHE')
-depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
- 'python-html5lib' 'python-protobuf' 'python-grpcio' 
'python-google-auth-oauthlib'
- 'python-tensorboard_plugin_wit' 'absl-py')
-optdepends=('python-tensorflow: advanced features for TensorBoard')
-makedepends=('bazel' 'python-setuptools' 'tree')
-source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
-sha512sums=('f2c8e9d23dbfab2f21e90034275593a8761596afa5bc464b45a43058daf914d6d11425869e8d66c6be7cf057da9f2f9bc464e9df1f0a4dbab23a8c07b39f7a4d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  bazel build --experimental_repo_remote_exec tensorboard:tensorboard
-  bazel build --experimental_repo_remote_exec 
//tensorboard/pip_package:build_pip_package
-
-  mkdir pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
-  cp 
tensorboard/pip_package/{README.rst,MANIFEST.in,setup.py,requirements.txt} 
pypackage
-  cp README.md pypackage
-  cd pypackage
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd pypackage
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  rm -r "$pkgdir"/usr/lib/python3.9/site-packages/external/
-
-  
_requires="$pkgdir"/usr/lib/python3.9/site-packages/tensorboard-${pkgver}-py3.9.egg-info/requires.txt
-  # This is ugly: We need to patch it to use current bleach and html5lib
-  # because old ones are not even compatible with Python 3.6 and we don't have
-  # those in Arch of course.
-  sed -i 's/bleach==.*/bleach/' ${_requires}
-  sed -i 's/html5lib==.*/html5lib/' ${_requires}
-  # Other ugly hack: workaround for issues 650
-  # https://github.com/tensorflow/tensorboard/issues/650
-  sed -i '/^futures/d' ${_requires}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tensorboard/repos/community-x86_64/PKGBUILD (from rev 935976, 
tensorboard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-17 00:10:00 UTC (rev 935977)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Konstantin Gizdov 
+
+pkgname=tensorboard
+pkgver=2.5.0
+pkgrel=2
+pkgdesc="TensorFlow's Visualization Toolkit"
+url='https://github.com/tensorflow/tensorboard'
+arch=('x86_64')
+license=('APACHE')
+depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
+ 'python-html5lib' 'python-protobuf' 'python-grpcio' 
'python-google-auth-oauthlib'
+ 'python-tensorboard_plugin_wit' 'absl-py')
+makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
+optdepends=('python-tensorflow: advanced features for TensorBoard')
+source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
+sha512sums=('f2c8e9d23dbfab2f21e90034275593a8761596afa5bc464b45a43058daf914d6d11425869e8d66c6be7cf057da9f2f9bc464e9df1f0a4dbab23a8c07b39f7a4d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  bazel build //tensorboard
+  bazel build //tensorboard/pip_package:build_pip_package
+
+  cd tensorboard/data/server
+  cargo build --release
+  python pip_package/build.py --server-binary target/release/rustboard 
--out-dir /tmp
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
+  cp 
tensorboard/pip_package/{README.rst,MANIFEST.in,setup.py,requirements.txt} 
pypackage
+  cp README.md pypackage
+  cd pypackage
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  pip install --root "$pkgdir" /tmp/*.whl
+
+  

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

2021-05-16 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, May 17, 2021 @ 00:09:41
  Author: svenstaro
Revision: 935976

upgpkg: tensorboard 2.5.0-2: Add tensorboard-data-server support (FS#70882)

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 23:26:01 UTC (rev 935975)
+++ PKGBUILD2021-05-17 00:09:41 UTC (rev 935976)
@@ -3,7 +3,7 @@
 
 pkgname=tensorboard
 pkgver=2.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
  'python-html5lib' 'python-protobuf' 'python-grpcio' 
'python-google-auth-oauthlib'
  'python-tensorboard_plugin_wit' 'absl-py')
+makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
 optdepends=('python-tensorflow: advanced features for TensorBoard')
-makedepends=('bazel' 'python-setuptools' 'tree')
 
source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
 
sha512sums=('f2c8e9d23dbfab2f21e90034275593a8761596afa5bc464b45a43058daf914d6d11425869e8d66c6be7cf057da9f2f9bc464e9df1f0a4dbab23a8c07b39f7a4d')
 
@@ -19,9 +19,14 @@
 build() {
   cd "$pkgname-$pkgver"
 
-  bazel build --experimental_repo_remote_exec tensorboard:tensorboard
-  bazel build --experimental_repo_remote_exec 
//tensorboard/pip_package:build_pip_package
+  bazel build //tensorboard
+  bazel build //tensorboard/pip_package:build_pip_package
 
+  cd tensorboard/data/server
+  cargo build --release
+  python pip_package/build.py --server-binary target/release/rustboard 
--out-dir /tmp
+  cd "$srcdir/$pkgname-$pkgver"
+
   mkdir pypackage
   cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
   cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
@@ -36,6 +41,8 @@
 
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
+  pip install --root "$pkgdir" /tmp/*.whl
+
   cd pypackage
   python setup.py install --root="$pkgdir" --optimize=1
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 23:26:01
  Author: kpcyrd
Revision: 935975

archrelease: copy trunk to community-x86_64

Added:
  movit/repos/community-x86_64/PKGBUILD
(from rev 935974, movit/trunk/PKGBUILD)
Deleted:
  movit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 23:25:46 UTC (rev 935974)
+++ PKGBUILD2021-05-16 23:26:01 UTC (rev 935975)
@@ -1,28 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Evert Vorster 
-# Contributor: Martin Sandsmark 
-
-pkgname=movit
-pkgver=1.6.3
-pkgrel=1
-pkgdesc="The modern video toolkit"
-arch=('x86_64')
-url="https://movit.sesse.net/;
-license=('GPL')
-depends=('fftw' 'libepoxy')
-makedepends=('eigen' 'gtest' 'sdl2')
-source=(https://movit.sesse.net/$pkgname-$pkgver.tar.gz)
-sha256sums=('eb19f109ec99d6050de5267d059c7b351d3d5e39c77d43ca348a95f474a99498')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: movit/repos/community-x86_64/PKGBUILD (from rev 935974, 
movit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 23:26:01 UTC (rev 935975)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Evert Vorster 
+# Contributor: Martin Sandsmark 
+
+pkgname=movit
+pkgver=1.6.3
+pkgrel=2
+pkgdesc="The modern video toolkit"
+arch=('x86_64')
+url="https://movit.sesse.net/;
+license=('GPL')
+depends=('fftw' 'libepoxy')
+makedepends=('eigen' 'gtest' 'sdl2')
+source=(https://movit.sesse.net/$pkgname-$pkgver.tar.gz)
+sha256sums=('eb19f109ec99d6050de5267d059c7b351d3d5e39c77d43ca348a95f474a99498')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make GTEST_DIR=/usr/src/googletest
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 23:25:46
  Author: kpcyrd
Revision: 935974

upgpkg: movit 1.6.3-2 - Fix FTBFS

Modified:
  movit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 23:04:10 UTC (rev 935973)
+++ PKGBUILD2021-05-16 23:25:46 UTC (rev 935974)
@@ -4,7 +4,7 @@
 
 pkgname=movit
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="The modern video toolkit"
 arch=('x86_64')
 url="https://movit.sesse.net/;
@@ -18,7 +18,7 @@
   cd $pkgname-$pkgver
 
   ./configure --prefix=/usr
-  make
+  make GTEST_DIR=/usr/src/googletest
 }
 
 package() {


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 23:04:10
  Author: kpcyrd
Revision: 935973

archrelease: copy trunk to community-x86_64

Added:
  scanmem/repos/community-x86_64/PKGBUILD
(from rev 935972, scanmem/trunk/PKGBUILD)
Deleted:
  scanmem/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 23:03:59 UTC (rev 935972)
+++ PKGBUILD2021-05-16 23:04:10 UTC (rev 935973)
@@ -1,67 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Michael P 
-# Contributor: Aaron Griffin 
-# Contributor: Elmo Todurov 
-# Contributor: Alexander De Sousa 
-
-pkgbase=scanmem
-pkgname=('scanmem' 'libscanmem' 'gameconqueror')
-pkgver=0.17
-pkgrel=4
-pkgdesc='Memory scanner designed to isolate the address of an arbitrary 
variable in an executing process'
-url='https://github.com/scanmem/scanmem'
-arch=('x86_64')
-license=('GPL3')
-makedepends=('intltool' 'gtk3' 'python-gobject' 'polkit' 'glibc' 'readline')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('f02054b91322cf41517506158fcb74554e9fc6644e696f8aa25e5acf162d374b')
-sha512sums=('6d74f3d1d3492d41cabc342cfd1189815536dcbd57857d8a92e05c5dcaebcb9b1df886aee706c56eaf3344737070ea0fe852eef164ef3fe7907f66c626d8523e')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  ./autogen.sh
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./configure --enable-gui --prefix=/usr
-  make
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  make check
-}
-
-package_scanmem() {
-  depends=('libscanmem' 'glibc' 'readline')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}/usr/"{include,lib}
-  rm -rf 
"${pkgdir}/usr/share/"{gameconqueror,appdata,applications,icons,locale,polkit-1}
-  rm "${pkgdir}"{/usr/bin/gameconqueror,/usr/share/man/man1/gameconqueror.1}
-}
-
-package_libscanmem() {
-  depends=('readline')
-  pkgdesc+=" (library)"
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}/usr/bin"
-  rm -r "${pkgdir}/usr/share"
-}
-
-package_gameconqueror() {
-  depends=('libscanmem' 'gtk3' 'python' 'python-gobject' 'polkit')
-  pkgdesc+=" (gtk GUI)"
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}/usr/"{include,lib,share/doc}
-  rm "${pkgdir}"{/usr/bin/scanmem,/usr/share/man/man1/scanmem.1}
-}
-
-# vim: ts=2 sw=2 et:

Copied: scanmem/repos/community-x86_64/PKGBUILD (from rev 935972, 
scanmem/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 23:04:10 UTC (rev 935973)
@@ -0,0 +1,68 @@
+# Maintainer: Levente Polyak 
+# Contributor: Michael P 
+# Contributor: Aaron Griffin 
+# Contributor: Elmo Todurov 
+# Contributor: Alexander De Sousa 
+
+pkgbase=scanmem
+pkgname=('scanmem' 'libscanmem' 'gameconqueror')
+pkgver=0.17
+pkgrel=5
+pkgdesc='Memory scanner designed to isolate the address of an arbitrary 
variable in an executing process'
+url='https://github.com/scanmem/scanmem'
+arch=('x86_64')
+license=('GPL3')
+makedepends=('intltool' 'gtk3' 'python-gobject' 'polkit' 'glibc' 'readline')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz)
+sha256sums=('f02054b91322cf41517506158fcb74554e9fc6644e696f8aa25e5acf162d374b')
+sha512sums=('6d74f3d1d3492d41cabc342cfd1189815536dcbd57857d8a92e05c5dcaebcb9b1df886aee706c56eaf3344737070ea0fe852eef164ef3fe7907f66c626d8523e')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  ./autogen.sh
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  export PYTHONHASHSEED=0
+  ./configure --enable-gui --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  make check
+}
+
+package_scanmem() {
+  depends=('libscanmem' 'glibc' 'readline')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/"{include,lib}
+  rm -rf 
"${pkgdir}/usr/share/"{gameconqueror,appdata,applications,icons,locale,polkit-1}
+  rm "${pkgdir}"{/usr/bin/gameconqueror,/usr/share/man/man1/gameconqueror.1}
+}
+
+package_libscanmem() {
+  depends=('readline')
+  pkgdesc+=" (library)"
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/bin"
+  rm -r "${pkgdir}/usr/share"
+}
+
+package_gameconqueror() {
+  depends=('libscanmem' 'gtk3' 'python' 'python-gobject' 'polkit')
+  pkgdesc+=" (gtk GUI)"
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/"{include,lib,share/doc}
+  rm "${pkgdir}"{/usr/bin/scanmem,/usr/share/man/man1/scanmem.1}
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 23:03:59
  Author: kpcyrd
Revision: 935972

upgpkg: scanmem 0.17-5 - reproducible builds bytecode

Modified:
  scanmem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:54:47 UTC (rev 935971)
+++ PKGBUILD2021-05-16 23:03:59 UTC (rev 935972)
@@ -7,7 +7,7 @@
 pkgbase=scanmem
 pkgname=('scanmem' 'libscanmem' 'gameconqueror')
 pkgver=0.17
-pkgrel=4
+pkgrel=5
 pkgdesc='Memory scanner designed to isolate the address of an arbitrary 
variable in an executing process'
 url='https://github.com/scanmem/scanmem'
 arch=('x86_64')
@@ -25,6 +25,7 @@
 
 build() {
   cd ${pkgbase}-${pkgver}
+  export PYTHONHASHSEED=0
   ./configure --enable-gui --prefix=/usr
   make
 }


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:54:47
  Author: kpcyrd
Revision: 935971

archrelease: copy trunk to community-any

Added:
  scapy/repos/community-any/PKGBUILD
(from rev 935970, scapy/trunk/PKGBUILD)
Deleted:
  scapy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:54:36 UTC (rev 935970)
+++ PKGBUILD2021-05-16 22:54:47 UTC (rev 935971)
@@ -1,56 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-# Contributor: Ebubekir KARUL 
-# Contributor: s1gma,shirokuro
-
-pkgbase=scapy
-pkgname=('scapy' 'python-scapy')
-pkgver=2.4.5
-pkgrel=1
-pkgdesc='Powerful interactive packet manipulation program written in Python'
-url='http://www.secdev.org/projects/scapy/'
-arch=('any')
-license=('GPL2')
-makedepends=('tcpdump' 'python-setuptools')
-checkdepends=('python-cryptography' 'python-pyx' 'python-matplotlib'
-  'graphviz' 'sox')
-source=(https://github.com/secdev/scapy/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('cd2aadf020f60102c0fc1c54a2542985adc9371572d3088376c613e1b71f8c53')
-sha512sums=('b5ccd689f7bd4fbbb86921a35360b94ec7a738b494f16e4764828689835296016bc476825add798406e4d32761d8df90b41ce7e38049afdabf98397b1bf5982a')
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  # Run only main tests, without network access
-  cd ${pkgbase}-${pkgver}/test
-  ./run_tests -K netaccess -F
-}
-
-package_scapy() {
-  depends=('python' 'python-scapy')
-  pkgdesc+=' (tools)'
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --skip-build --root="${pkgdir}" --prefix=/usr
-  install -d "${pkgdir}/usr/share/doc"
-  ln -sf /usr/share/doc/python-scapy "${pkgdir}/usr/share/doc/${pkgname}"
-  rm -r "${pkgdir}/usr/lib"
-}
-
-package_python-scapy() {
-  pkgdesc+=' (library)'
-  depends=('tcpdump' 'python')
-  optdepends=('python-cryptography: WEP, IPsec and SSL/TLS support'
-  'python-pyx: psdump() and pdfdump() functions'
-  'python-matplotlib: plotting support'
-  'graphviz: conversations() method support'
-  'sox: for VOIP support')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --skip-build --root="${pkgdir}" --prefix=/usr
-  install -Dm 644 doc/scapy/*.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  rm -r "${pkgdir}"{/usr/bin,/usr/share/man}
-}
-
-# vim: ts=2 sw=2 et:

Copied: scapy/repos/community-any/PKGBUILD (from rev 935970, 
scapy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:54:47 UTC (rev 935971)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+# Contributor: Ebubekir KARUL 
+# Contributor: s1gma,shirokuro
+
+pkgbase=scapy
+pkgname=('scapy' 'python-scapy')
+pkgver=2.4.5
+pkgrel=2
+pkgdesc='Powerful interactive packet manipulation program written in Python'
+url='http://www.secdev.org/projects/scapy/'
+arch=('any')
+license=('GPL2')
+makedepends=('tcpdump' 'python-setuptools')
+checkdepends=('python-cryptography' 'python-pyx' 'python-matplotlib'
+  'graphviz' 'sox')
+source=(https://github.com/secdev/scapy/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('cd2aadf020f60102c0fc1c54a2542985adc9371572d3088376c613e1b71f8c53')
+sha512sums=('b5ccd689f7bd4fbbb86921a35360b94ec7a738b494f16e4764828689835296016bc476825add798406e4d32761d8df90b41ce7e38049afdabf98397b1bf5982a')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+check() {
+  # Run only main tests, without network access
+  cd ${pkgbase}-${pkgver}/test
+  ./run_tests -K netaccess -F
+}
+
+package_scapy() {
+  depends=('python' 'python-scapy')
+  pkgdesc+=' (tools)'
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 --skip-build --root="${pkgdir}" --prefix=/usr
+  install -d "${pkgdir}/usr/share/doc"
+  ln -sf /usr/share/doc/python-scapy "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -r "${pkgdir}/usr/lib"
+}
+
+package_python-scapy() {
+  pkgdesc+=' (library)'
+  depends=('tcpdump' 'python')
+  optdepends=('python-cryptography: WEP, IPsec and SSL/TLS support'
+  'python-pyx: psdump() and pdfdump() functions'
+  'python-matplotlib: plotting support'
+  'graphviz: conversations() method support'
+  'sox: for VOIP support')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 --skip-build --root="${pkgdir}" --prefix=/usr
+  install -Dm 644 doc/scapy/*.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -r "${pkgdir}"{/usr/bin,/usr/share/man}
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:54:36
  Author: kpcyrd
Revision: 935970

upgpkg: scapy 2.4.5-2 - reproducible builds bytecode

Modified:
  scapy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:52:15 UTC (rev 935969)
+++ PKGBUILD2021-05-16 22:54:36 UTC (rev 935970)
@@ -6,7 +6,7 @@
 pkgbase=scapy
 pkgname=('scapy' 'python-scapy')
 pkgver=2.4.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Powerful interactive packet manipulation program written in Python'
 url='http://www.secdev.org/projects/scapy/'
 arch=('any')
@@ -20,6 +20,7 @@
 
 build() {
   cd ${pkgbase}-${pkgver}
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:52:15
  Author: kpcyrd
Revision: 935969

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:52:04 UTC (rev 935968)
+++ PKGBUILD2021-05-16 22:52:15 UTC (rev 935969)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-protego
-pkgver=0.1.16
-pkgrel=3
-pkgdesc="A pure-Python robots.txt parser with support for modern conventions"
-url="https://github.com/scrapy/protego;
-license=('BSD')
-arch=('any')
-depends=('python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scrapy/protego/archive/$pkgver.tar.gz;)
-sha512sums=('3f029f34c4da6dc612dcdd747f56d421dca60f163315e0f72497435dbd74da77a5a02ee35f15774aad431e2b6e69a582c038d435ba0c07a53b3f0c83cb1c958a')
-
-build() {
-  cd protego-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd protego-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd protego-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-protego/repos/community-any/PKGBUILD (from rev 935968, 
python-protego/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:52:15 UTC (rev 935969)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-protego
+pkgver=0.1.16
+pkgrel=4
+pkgdesc="A pure-Python robots.txt parser with support for modern conventions"
+url="https://github.com/scrapy/protego;
+license=('BSD')
+arch=('any')
+depends=('python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scrapy/protego/archive/$pkgver.tar.gz;)
+sha512sums=('3f029f34c4da6dc612dcdd747f56d421dca60f163315e0f72497435dbd74da77a5a02ee35f15774aad431e2b6e69a582c038d435ba0c07a53b3f0c83cb1c958a')
+
+build() {
+  cd protego-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+check() {
+  cd protego-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd protego-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:52:04
  Author: kpcyrd
Revision: 935968

upgpkg: python-protego 0.1.16-4 - reproducible builds bytecode

Modified:
  python-protego/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:49:07 UTC (rev 935967)
+++ PKGBUILD2021-05-16 22:52:04 UTC (rev 935968)
@@ -2,7 +2,7 @@
 
 pkgname=python-protego
 pkgver=0.1.16
-pkgrel=3
+pkgrel=4
 pkgdesc="A pure-Python robots.txt parser with support for modern conventions"
 url="https://github.com/scrapy/protego;
 license=('BSD')
@@ -15,6 +15,7 @@
 
 build() {
   cd protego-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:49:07
  Author: kpcyrd
Revision: 935967

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:48:55 UTC (rev 935966)
+++ PKGBUILD2021-05-16 22:49:07 UTC (rev 935967)
@@ -1,40 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: David Runge 
-# Contributor: Peter Baldwin 
-
-pkgname=python-jinja
-pkgver=3.0.0
-pkgrel=2
-pkgdesc="A simple pythonic template language written in Python"
-arch=('any')
-url="https://palletsprojects.com/p/jinja/;
-license=('BSD')
-depends=('python-setuptools' 'python-markupsafe')
-optdepends=('python-babel: for i18n support')
-checkdepends=('python-pytest')
-source=(https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
-sha256sums=('ea8d7dd814ce9df6de6a761ec7f1cac98afe305b8cdc4aaae4e114b8d8ce24c5')
-
-build() {
-  cd Jinja2-$pkgver
-  python3 setup.py build
-}
-
-check() {
-  cd Jinja2-$pkgver
-  # https://github.com/pypa/setuptools/issues/2466
-  PYTHONPATH=build/lib pytest \
-   --deselect tests/test_loader.py::test_package_dir_source \
-   --deselect tests/test_loader.py::test_package_dir_list \
-   --deselect tests/test_loader.py::test_package_zip_source \
-   --deselect tests/test_loader.py::test_package_zip_list
-}
-
-package() {
-  cd Jinja2-$pkgver
-  export PYTHONHASHSEED=0
-  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-jinja/repos/community-any/PKGBUILD (from rev 935966, 
python-jinja/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:49:07 UTC (rev 935967)
@@ -0,0 +1,41 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: David Runge 
+# Contributor: Peter Baldwin 
+
+pkgname=python-jinja
+pkgver=3.0.0
+pkgrel=3
+pkgdesc="A simple pythonic template language written in Python"
+arch=('any')
+url="https://palletsprojects.com/p/jinja/;
+license=('BSD')
+depends=('python-setuptools' 'python-markupsafe')
+optdepends=('python-babel: for i18n support')
+checkdepends=('python-pytest')
+source=(https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
+sha256sums=('ea8d7dd814ce9df6de6a761ec7f1cac98afe305b8cdc4aaae4e114b8d8ce24c5')
+
+build() {
+  cd Jinja2-$pkgver
+  export PYTHONHASHSEED=0
+  python3 setup.py build
+}
+
+check() {
+  cd Jinja2-$pkgver
+  # https://github.com/pypa/setuptools/issues/2466
+  PYTHONPATH=build/lib pytest \
+   --deselect tests/test_loader.py::test_package_dir_source \
+   --deselect tests/test_loader.py::test_package_dir_list \
+   --deselect tests/test_loader.py::test_package_zip_source \
+   --deselect tests/test_loader.py::test_package_zip_list
+}
+
+package() {
+  cd Jinja2-$pkgver
+  export PYTHONHASHSEED=0
+  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:48:55
  Author: kpcyrd
Revision: 935966

upgpkg: python-jinja 3.0.0-3 - reproducible builds bytecode

Modified:
  python-jinja/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:47:21 UTC (rev 935965)
+++ PKGBUILD2021-05-16 22:48:55 UTC (rev 935966)
@@ -4,7 +4,7 @@
 
 pkgname=python-jinja
 pkgver=3.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A simple pythonic template language written in Python"
 arch=('any')
 url="https://palletsprojects.com/p/jinja/;
@@ -17,6 +17,7 @@
 
 build() {
   cd Jinja2-$pkgver
+  export PYTHONHASHSEED=0
   python3 setup.py build
 }
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:47:21
  Author: kpcyrd
Revision: 935965

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:47:10 UTC (rev 935964)
+++ PKGBUILD2021-05-16 22:47:21 UTC (rev 935965)
@@ -1,35 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Tarmo Heiskanen 
-
-pkgname=python-flask
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Micro webdevelopment framework for Python'
-url='http://flask.pocoo.org/'
-arch=('any')
-license=('custom:BSD')
-depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 'python-click')
-makedepends=('python-setuptools'  'python-werkzeug' 'python-jinja' 
'python-itsdangerous' 'python-click')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask/archive/${pkgver}.tar.gz;)
-sha512sums=('648c96b877ddcd260346b96c16706fc590de21932b68e15f0e169cc03b01681e2ff8b68561aa4477c5012c0620161b4fd2ac07223145bf819d1f1867e0a3e7af')
-
-build() {
-  cd "flask-$pkgver"
-  python setup.py build
-}
-
-# check() {
-#   cd "flask-$pkgver"
-#   python setup.py test
-# }
-
-package() {
-  cd "flask-$pkgver"
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-flask/repos/community-any/PKGBUILD (from rev 935964, 
python-flask/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:47:21 UTC (rev 935965)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Tarmo Heiskanen 
+
+pkgname=python-flask
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Micro webdevelopment framework for Python'
+url='http://flask.pocoo.org/'
+arch=('any')
+license=('custom:BSD')
+depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 'python-click')
+makedepends=('python-setuptools'  'python-werkzeug' 'python-jinja' 
'python-itsdangerous' 'python-click')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask/archive/${pkgver}.tar.gz;)
+sha512sums=('648c96b877ddcd260346b96c16706fc590de21932b68e15f0e169cc03b01681e2ff8b68561aa4477c5012c0620161b4fd2ac07223145bf819d1f1867e0a3e7af')
+
+build() {
+  cd "flask-$pkgver"
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+# check() {
+#   cd "flask-$pkgver"
+#   python setup.py test
+# }
+
+package() {
+  cd "flask-$pkgver"
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:47:10
  Author: kpcyrd
Revision: 935964

upgpkg: python-flask 2.0.0-2 - reproducible builds bytecode

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:45:05 UTC (rev 935963)
+++ PKGBUILD2021-05-16 22:47:10 UTC (rev 935964)
@@ -5,7 +5,7 @@
 
 pkgname=python-flask
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -17,6 +17,7 @@
 
 build() {
   cd "flask-$pkgver"
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:45:05
  Author: kpcyrd
Revision: 935963

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:44:50 UTC (rev 935962)
+++ PKGBUILD2021-05-16 22:45:05 UTC (rev 935963)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Dan Serban
-# Contributor: Richard Murri
-
-pkgname=python-werkzeug
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Swiss Army knife of Python web development'
-url='http://werkzeug.pocoo.org/'
-arch=('any')
-license=('custom:BSD')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-timeout' 'python-requests' 
'python-pytest-xprocess')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/werkzeug/archive/${pkgver}.tar.gz;)
-sha512sums=('8c8e36a58fe53ac4ad3152a34145c726a9145782262b9d47be7bfe9a8e127666b0d0c0c50d305277a153298644732efe37e3785ceaa5b11394adfeb70d86e70d')
-
-build() {
-  cd "werkzeug-$pkgver"
-
-  python setup.py build
-}
-
-# check() {
-#   cd "werkzeug-$pkgver"
-#   PYTHONPATH="$PWD/build/lib" pytest
-# }
-
-package() {
-  cd "werkzeug-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-werkzeug/repos/community-any/PKGBUILD (from rev 935962, 
python-werkzeug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:45:05 UTC (rev 935963)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Dan Serban
+# Contributor: Richard Murri
+
+pkgname=python-werkzeug
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Swiss Army knife of Python web development'
+url='http://werkzeug.pocoo.org/'
+arch=('any')
+license=('custom:BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-timeout' 'python-requests' 
'python-pytest-xprocess')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/werkzeug/archive/${pkgver}.tar.gz;)
+sha512sums=('8c8e36a58fe53ac4ad3152a34145c726a9145782262b9d47be7bfe9a8e127666b0d0c0c50d305277a153298644732efe37e3785ceaa5b11394adfeb70d86e70d')
+
+build() {
+  cd "werkzeug-$pkgver"
+
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+# check() {
+#   cd "werkzeug-$pkgver"
+#   PYTHONPATH="$PWD/build/lib" pytest
+# }
+
+package() {
+  cd "werkzeug-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:44:50
  Author: kpcyrd
Revision: 935962

upgpkg: python-werkzeug 2.0.0-2 - reproducible builds bytecode

Modified:
  python-werkzeug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:33:01 UTC (rev 935961)
+++ PKGBUILD2021-05-16 22:44:50 UTC (rev 935962)
@@ -6,7 +6,7 @@
 
 pkgname=python-werkzeug
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Swiss Army knife of Python web development'
 url='http://werkzeug.pocoo.org/'
 arch=('any')
@@ -20,6 +20,7 @@
 build() {
   cd "werkzeug-$pkgver"
 
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


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

2021-05-16 Thread Fabio Castelli via arch-commits
Date: Sunday, May 16, 2021 @ 22:33:01
  Author: muflone
Revision: 935961

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:30:42 UTC (rev 935960)
+++ PKGBUILD2021-05-16 22:33:01 UTC (rev 935961)
@@ -1,112 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Arne Hoch 
-
-pkgname=dbeaver
-pkgver=21.0.4
-pkgrel=1
-pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
-arch=('x86_64')
-url="https://dbeaver.io/;
-license=("Apache")
-depends=('java-runtime>=11' 'gtk3' 'gtk-update-icon-cache' 'libsecret')
-makedepends=('maven' 'java-runtime<15')
-optdepends=('dbeaver-plugin-office: export data in Microsoft Office Excel 
format'
-'dbeaver-plugin-svg-format: save diagrams in SVG format')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/dbeaver/dbeaver/archive/${pkgver}.tar.gz;
-"${pkgname}.desktop"
-"${pkgname}.sh"
-"${pkgname}.profile.gz"
-"${pkgname}.hook"
-"${pkgname}.install")
-sha256sums=('c946fa92679edabd41d5c5f482d2572e837860f0c62450aed9bbcd836aa00cf4'
-'27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
-'406a2980806c394670e88b1ae70134900be376c2ea4a4216610591cc8b557526'
-'1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'
-'f8b763ca210bfa4d9a4e407b656ba4f5d1bf2f3f54c67044f7a4dd0c3625fc22'
-'f8d65dd933049b587a5815ea75a30ef944300b812df383ca1c2dcd68280bc7ab')
-install="${pkgname}.install"
-
-prepare() {
-  # Fix version number in profile file
-  gzip --decompress --keep --stdout "${pkgname}.profile.gz" | 
-sed "s/DBEAVER_VERSION/${pkgver}/g" |
-gzip -9 > "${pkgname}.profile-${pkgver}.gz"
-
-  # Avoid the use of any Java 15, actually incompatible with the build
-  export JAVA_HOME="/usr/lib/jvm/$(archlinux-java status | tail -n +2 | sort | 
cut -d ' ' -f 3 | sort -nr -k 2 -t '-' | grep -v '15-openjdk' -m 1)"
-  
-  cd "${pkgname}-${pkgver}"
-
-  # Download dependencies during prepare FS#55873
-  # https://bugs.archlinux.org/task/55873
-  export MAVEN_OPTS="-Xmx2048m"
-  mvn --batch-mode validate
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  mvn --batch-mode package
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/product/community"
-  # Install icons into /usr/share/icons/hicolor
-  for _size in 16 32 48 64 128 256 512
-  do
-install -m 644 -D "icons-sources/icon_${_size}x${_size}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_size}x${_size}/apps/dbeaver.png"
-  done
-
-  # Move into the target directory
-  cd "target/products/org.jkiss.dbeaver.core.product/linux/gtk/${CARCH}"
-
-  # Initially install everything into /usr/lib/dbeaver
-  install -m 755 -d "${pkgdir}/usr/lib"
-  cp -r "dbeaver" "${pkgdir}/usr/lib/${pkgname}"
-
-  # Move shared data to /usr/share/dbeaver
-  cd "${pkgdir}/usr/lib/${pkgname}"
-  install -m 755 -d "${pkgdir}/usr/share/${pkgname}"
-  for _file in configuration features p2 .eclipseproduct artifacts.xml 
dbeaver.ini readme.txt
-  do
-mv "${_file}" "${pkgdir}/usr/share/${pkgname}"
-ln -s "/usr/share/${pkgname}/${_file}" .
-  done
-
-  # Install additional licenses
-  install -m 755 -d "${pkgdir}/usr/share/licenses"
-  mv licenses "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Install icons
-  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
-  mv dbeaver.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  mv icon.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
-
-  # Install executable script into /usr/bin
-  install -m 755 -d "${pkgdir}/usr/bin"
-  install -m 755 "${srcdir}/dbeaver.sh" "${pkgdir}/usr/bin/${pkgname}"
-
-  # Install application launcher into /usr/share/applications

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

2021-05-16 Thread Fabio Castelli via arch-commits
Date: Sunday, May 16, 2021 @ 22:30:42
  Author: muflone
Revision: 935960

upgpkg: dbeaver 21.0.5-1

Modified:
  dbeaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 22:21:41 UTC (rev 935959)
+++ PKGBUILD2021-05-16 22:30:42 UTC (rev 935960)
@@ -2,7 +2,7 @@
 # Contributor: Arne Hoch 
 
 pkgname=dbeaver
-pkgver=21.0.4
+pkgver=21.0.5
 pkgrel=1
 pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 "${pkgname}.profile.gz"
 "${pkgname}.hook"
 "${pkgname}.install")
-sha256sums=('c946fa92679edabd41d5c5f482d2572e837860f0c62450aed9bbcd836aa00cf4'
+sha256sums=('f22bf927a56802cd93052c2ea82fc87b469aeb2e666011aedb0171c4d0de9275'
 '27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
 '406a2980806c394670e88b1ae70134900be376c2ea4a4216610591cc8b557526'
 '1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:21:41
  Author: kpcyrd
Revision: 935959

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 22:21:26 UTC (rev 935958)
+++ PKGBUILD2021-05-16 22:21:41 UTC (rev 935959)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=hstspreload
-pkgname=python-hstspreload
-pkgver=2020.7.7
-pkgrel=3
-pkgdesc="Chromium HSTS Preload list as a Python package"
-arch=('any')
-url="https://github.com/sethmlarson/${_pkgname};
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools')
-#checkdepends=('python-pytest' 'python-urllib3')
-#source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha512sums=('6d35ab04556ef4a3bfac3686d7dff5bf6327f4afe723bcdc72894206a09c0b727bba7456f9b05b58b61f9c35975c9b897e28f09df0397bd676b8ac03fe712860')
-b2sums=('1eb636660c0036bc6f29188fa1f8d34b86e18895afd81f7acd367d79e1dd8cee682d8940a73e33949931d3601810287a6af6eaf246b8700326d86601e7458782')
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-# This runs around 230k tests, checking to see if the online list matches the 
current one.
-# It can take 5 minutes just to collect the tests. They're not distributed in 
the PyPI tarball.
-#check() {
-#cd "${srcdir}"/${_pkgname}-${pkgver}
-#
-#python -m pytest
-#}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-hstspreload/repos/community-any/PKGBUILD (from rev 935958, 
python-hstspreload/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 22:21:41 UTC (rev 935959)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=hstspreload
+pkgname=python-hstspreload
+pkgver=2020.12.22
+pkgrel=1
+pkgdesc="Chromium HSTS Preload list as a Python package"
+arch=('any')
+url="https://github.com/sethmlarson/${_pkgname};
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+#checkdepends=('python-pytest' 'python-urllib3')
+#source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('19e92c4f4f0d3d9693f4540ce6c730b748eecbdb75b05ba7b25d64cef7afe0c6c8477c7b0a35bb8b8105269689e7dae6b1ff109e953b4aac375fb9903e4ffaf6')
+b2sums=('a9695c15ec624fd8322ac713a05109d5a1921abca6e37846357c9dec96f5f55cd8ecefdd915416f0ef88e42913999b946e18012d0df925e58b496d6822c0dbb8')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+export PYTHONHASHSEED=0
+python setup.py build
+}
+
+# This runs around 230k tests, checking to see if the online list matches the 
current one.
+# It can take 5 minutes just to collect the tests. They're not distributed in 
the PyPI tarball.
+#check() {
+#cd "${srcdir}"/${_pkgname}-${pkgver}
+#
+#python -m pytest
+#}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 22:21:26
  Author: kpcyrd
Revision: 935958

upgpkg: python-hstspreload 2020.12.22-1

Modified:
  python-hstspreload/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 21:54:16 UTC (rev 935957)
+++ PKGBUILD2021-05-16 22:21:26 UTC (rev 935958)
@@ -2,8 +2,8 @@
 
 _pkgname=hstspreload
 pkgname=python-hstspreload
-pkgver=2020.7.7
-pkgrel=3
+pkgver=2020.12.22
+pkgrel=1
 pkgdesc="Chromium HSTS Preload list as a Python package"
 arch=('any')
 url="https://github.com/sethmlarson/${_pkgname};
@@ -13,12 +13,13 @@
 #checkdepends=('python-pytest' 'python-urllib3')
 #source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha512sums=('6d35ab04556ef4a3bfac3686d7dff5bf6327f4afe723bcdc72894206a09c0b727bba7456f9b05b58b61f9c35975c9b897e28f09df0397bd676b8ac03fe712860')
-b2sums=('1eb636660c0036bc6f29188fa1f8d34b86e18895afd81f7acd367d79e1dd8cee682d8940a73e33949931d3601810287a6af6eaf246b8700326d86601e7458782')
+sha512sums=('19e92c4f4f0d3d9693f4540ce6c730b748eecbdb75b05ba7b25d64cef7afe0c6c8477c7b0a35bb8b8105269689e7dae6b1ff109e953b4aac375fb9903e4ffaf6')
+b2sums=('a9695c15ec624fd8322ac713a05109d5a1921abca6e37846357c9dec96f5f55cd8ecefdd915416f0ef88e42913999b946e18012d0df925e58b496d6822c0dbb8')
 
 build() {
 cd "${srcdir}"/${_pkgname}-${pkgver}
 
+export PYTHONHASHSEED=0
 python setup.py build
 }
 


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 21:54:16
  Author: kpcyrd
Revision: 935957

archrelease: copy trunk to community-any

Added:
  ponysay/repos/community-any/PKGBUILD
(from rev 935956, ponysay/trunk/PKGBUILD)
  ponysay/repos/community-any/fix-do-not-compare-literal.patch
(from rev 935956, ponysay/trunk/fix-do-not-compare-literal.patch)
Deleted:
  ponysay/repos/community-any/PKGBUILD
  ponysay/repos/community-any/fix-do-not-compare-literal.patch

--+
 PKGBUILD |   64 ++--
 fix-do-not-compare-literal.patch |   72 ++---
 2 files changed, 72 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 21:53:59 UTC (rev 935956)
+++ PKGBUILD2021-05-16 21:54:16 UTC (rev 935957)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Erkin Batu Altunbaş 
-
-pkgname=ponysay
-pkgver=3.0.3
-pkgrel=3
-pkgdesc="cowsay reimplemention for ponies"
-url="http://erkin.github.com/ponysay/;
-arch=('any')
-license=('GPL3')
-depends=('python' 'bash')
-makedepends=('git')
-source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;
-fix-do-not-compare-literal.patch)
-sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7'
-
'372e26a1293d05a37821a5edcbfc2ebb41d751ba4226fa503c07e815c1bb32b6c000293c584babd96e48614bf3b9c4321deb8b28587a37a56783a434615ddeb5')
-
-prepare() {
-  cd "$srcdir/erkin-ponysay-"*
-
-  patch -Np1 -i "$srcdir"/fix-do-not-compare-literal.patch
-}
-
-package() {
-  cd "$srcdir/erkin-ponysay-"*
-
-  python3 setup.py --prefix=/usr --dest-dir="$pkgdir" --freedom=partial 
--everything --with-pdf=/usr/share/doc/ponysay --without-pdf-compression install
-}

Copied: ponysay/repos/community-any/PKGBUILD (from rev 935956, 
ponysay/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 21:54:16 UTC (rev 935957)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Erkin Batu Altunbaş 
+
+pkgname=ponysay
+pkgver=3.0.3
+pkgrel=4
+pkgdesc="cowsay reimplemention for ponies"
+url="https://github.com/erkin/ponysay;
+arch=('any')
+license=('GPL3')
+depends=('python' 'bash')
+makedepends=('git')
+source=(https://github.com/erkin/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+fix-do-not-compare-literal.patch)
+sha512sums=('d6ff905404192bdc207952a4a914458d7f25ddcfcea95763ae277a2a3bc7ab33e86a0a229c1b10ff7295b7a89d6e1b61406feefb6bdf9026f4076d0ed70dbe93'
+
'372e26a1293d05a37821a5edcbfc2ebb41d751ba4226fa503c07e815c1bb32b6c000293c584babd96e48614bf3b9c4321deb8b28587a37a56783a434615ddeb5')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i ../fix-do-not-compare-literal.patch
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHONHASHSEED=0
+  python setup.py build --freedom=partial --everything
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py --prefix=/usr --dest-dir="${pkgdir}" --freedom=partial 
--everything \
+--with-pdf=/usr/share/doc/ponysay --without-pdf-compression \
+--without-info-compression  \
+--without-man-compression \
+install
+}

Deleted: fix-do-not-compare-literal.patch
===
--- fix-do-not-compare-literal.patch2021-05-16 21:53:59 UTC (rev 935956)
+++ fix-do-not-compare-literal.patch2021-05-16 21:54:16 UTC (rev 935957)
@@ -1,36 +0,0 @@
-From 69c23e3ae1e1e9e9f1ee3a06a706d755a4b1de48 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?M=C3=93ZES=20=C3=81d=C3=A1m=20Istv=C3=A1n?=
- 
-Date: Sat, 16 Nov 2019 09:58:28 +0100
-Subject: [PATCH] fix: do not compare literal with "is not"
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Python3.8 issued the following warning on each ponysay invocation:
-
-/bin/ponysay/backend.py:294: SyntaxWarning: "is not" with a literal. Did you 
mean "!="?
-
-This has been corrected here.
-
-Signed-off-by: MÓZES Ádám István 

- src/backend.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/backend.py b/src/backend.py
-index 2cc539a5..82ff1496 100644
 a/src/backend.py
-+++ b/src/backend.py
-@@ -291,7 +291,7 @@ class Backend():
- props = dollar[7:]
- if len(props) > 0:
- if ',' in props:
--if props[0] is not ',':
-+if props[0] != ',':
- w = props[:props.index(',')]
- h = int(props[props.index(',') + 1:])
- else:
--- 
-2.25.1
-

Copied: 

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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 21:53:59
  Author: kpcyrd
Revision: 935956

upgpkg: ponysay 3.0.3-4 - reproducible build fixes

Modified:
  ponysay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 21:17:01 UTC (rev 935955)
+++ PKGBUILD2021-05-16 21:53:59 UTC (rev 935956)
@@ -3,26 +3,34 @@
 
 pkgname=ponysay
 pkgver=3.0.3
-pkgrel=3
+pkgrel=4
 pkgdesc="cowsay reimplemention for ponies"
-url="http://erkin.github.com/ponysay/;
+url="https://github.com/erkin/ponysay;
 arch=('any')
 license=('GPL3')
 depends=('python' 'bash')
 makedepends=('git')
-source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;
+source=(https://github.com/erkin/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
 fix-do-not-compare-literal.patch)
-sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7'
+sha512sums=('d6ff905404192bdc207952a4a914458d7f25ddcfcea95763ae277a2a3bc7ab33e86a0a229c1b10ff7295b7a89d6e1b61406feefb6bdf9026f4076d0ed70dbe93'
 
'372e26a1293d05a37821a5edcbfc2ebb41d751ba4226fa503c07e815c1bb32b6c000293c584babd96e48614bf3b9c4321deb8b28587a37a56783a434615ddeb5')
 
 prepare() {
-  cd "$srcdir/erkin-ponysay-"*
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i ../fix-do-not-compare-literal.patch
+}
 
-  patch -Np1 -i "$srcdir"/fix-do-not-compare-literal.patch
+build() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHONHASHSEED=0
+  python setup.py build --freedom=partial --everything
 }
 
 package() {
-  cd "$srcdir/erkin-ponysay-"*
-
-  python3 setup.py --prefix=/usr --dest-dir="$pkgdir" --freedom=partial 
--everything --with-pdf=/usr/share/doc/ponysay --without-pdf-compression install
+  cd "${pkgname}-${pkgver}"
+  python setup.py --prefix=/usr --dest-dir="${pkgdir}" --freedom=partial 
--everything \
+--with-pdf=/usr/share/doc/ponysay --without-pdf-compression \
+--without-info-compression  \
+--without-man-compression \
+install
 }


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 21:17:01
  Author: kpcyrd
Revision: 935955

archrelease: copy trunk to community-any

Added:
  ansible/repos/community-any/PKGBUILD
(from rev 935954, ansible/trunk/PKGBUILD)
Deleted:
  ansible/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 21:16:45 UTC (rev 935954)
+++ PKGBUILD2021-05-16 21:17:01 UTC (rev 935955)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=ansible
-pkgver=3.4.0
-pkgrel=1
-pkgdesc='Official assortment of Ansible collections'
-arch=('any')
-url='https://pypi.org/project/ansible/'
-license=('GPL3')
-depends=('python' 'ansible-core')
-provides=('python-ansible_collections')
-optdepends=('python-pyopenssl: openssl modules'
-'python-dnspython: for dig lookup'
-'python-ovirt-engine-sdk: ovirt support'
-'python-boto3: aws_s3 module'
-'python-ldap: ldap support'
-'python-proxmoxer: proxmos modules'
-'python-openstacksdk: OpenStack module'
-'acme-tiny: openssl_certificate module')
-makedepends=('python-setuptools')
-source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('0316c6bde7f6be80f7a5855cc711989483b202fd434a5aca9e23045f26671e9b9927a1100ef7b29098a533dd02704ade906dd5b17d2c870f727aa51c5c5ba5a7')
-
-build() {
-  cd ansible-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ansible-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 935954, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 21:17:01 UTC (rev 935955)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=ansible
+pkgver=3.4.0
+pkgrel=2
+pkgdesc='Official assortment of Ansible collections'
+arch=('any')
+url='https://pypi.org/project/ansible/'
+license=('GPL3')
+depends=('python' 'ansible-core')
+provides=('python-ansible_collections')
+optdepends=('python-pyopenssl: openssl modules'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-ldap: ldap support'
+'python-proxmoxer: proxmos modules'
+'python-openstacksdk: OpenStack module'
+'acme-tiny: openssl_certificate module')
+makedepends=('python-setuptools')
+source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('0316c6bde7f6be80f7a5855cc711989483b202fd434a5aca9e23045f26671e9b9927a1100ef7b29098a533dd02704ade906dd5b17d2c870f727aa51c5c5ba5a7')
+
+build() {
+  cd ansible-${pkgver}
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+package() {
+  cd ansible-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
+}


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

2021-05-16 Thread Kpcyrd via arch-commits
Date: Sunday, May 16, 2021 @ 21:16:45
  Author: kpcyrd
Revision: 935954

upgpkg: ansible 3.4.0-2 - reproducible builds bytecode 

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 20:38:31 UTC (rev 935953)
+++ PKGBUILD2021-05-16 21:16:45 UTC (rev 935954)
@@ -2,7 +2,7 @@
 
 pkgname=ansible
 pkgver=3.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Official assortment of Ansible collections'
 arch=('any')
 url='https://pypi.org/project/ansible/'
@@ -23,6 +23,7 @@
 
 build() {
   cd ansible-${pkgver}
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


[arch-commits] Commit in broadcom-wl-dkms/repos/community-x86_64 (30 files)

2021-05-16 Thread Alexander Rødseth via arch-commits
Date: Sunday, May 16, 2021 @ 20:38:31
  Author: arodseth
Revision: 935953

archrelease: copy trunk to community-x86_64

Added:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
(from rev 935952, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
(from rev 935952, broadcom-wl-dkms/trunk/002-rdtscl.patch)
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
(from rev 935952, broadcom-wl-dkms/trunk/003-linux47.patch)
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
(from rev 935952, broadcom-wl-dkms/trunk/004-linux48.patch)
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
(from rev 935952, 
broadcom-wl-dkms/trunk/005-debian-fix-kernel-warnings.patch)
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
(from rev 935952, broadcom-wl-dkms/trunk/006-linux411.patch)
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
(from rev 935952, broadcom-wl-dkms/trunk/007-linux412.patch)
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
(from rev 935952, broadcom-wl-dkms/trunk/008-linux415.patch)
  broadcom-wl-dkms/repos/community-x86_64/009-fix_mac_profile_discrepancy.patch
(from rev 935952, 
broadcom-wl-dkms/trunk/009-fix_mac_profile_discrepancy.patch)
  broadcom-wl-dkms/repos/community-x86_64/010-linux56.patch
(from rev 935952, broadcom-wl-dkms/trunk/010-linux56.patch)
  broadcom-wl-dkms/repos/community-x86_64/011-linux59.patch
(from rev 935952, broadcom-wl-dkms/trunk/011-linux59.patch)
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
(from rev 935952, broadcom-wl-dkms/trunk/PKGBUILD)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
(from rev 935952, broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
(from rev 935952, broadcom-wl-dkms/trunk/broadcom-wl-dkms.install)
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in
(from rev 935952, broadcom-wl-dkms/trunk/dkms.conf.in)
Deleted:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
  broadcom-wl-dkms/repos/community-x86_64/009-fix_mac_profile_discrepancy.patch
  broadcom-wl-dkms/repos/community-x86_64/010-linux56.patch
  broadcom-wl-dkms/repos/community-x86_64/011-linux59.patch
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in

---+
 001-null-pointer-fix.patch|   54 ++--
 002-rdtscl.patch  |   44 +--
 003-linux47.patch |  218 
 004-linux48.patch |  128 -
 005-debian-fix-kernel-warnings.patch  |  322 
 006-linux411.patch|   54 ++--
 007-linux412.patch|  136 +-
 008-linux415.patch|   92 +++---
 009-fix_mac_profile_discrepancy.patch |   28 +-
 010-linux56.patch |  110 
 011-linux59.patch |  422 
 PKGBUILD  |  132 +-
 broadcom-wl-dkms.conf |   17 -
 broadcom-wl-dkms.install  |   28 +-
 dkms.conf.in  |   30 +-
 15 files changed, 907 insertions(+), 908 deletions(-)

Deleted: 001-null-pointer-fix.patch
===
--- 001-null-pointer-fix.patch  2021-05-16 20:36:01 UTC (rev 935952)
+++ 001-null-pointer-fix.patch  2021-05-16 20:38:31 UTC (rev 935953)
@@ -1,27 +0,0 @@
-Description: Fixing null pointer crash
-
-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
-Bug-Ubuntu: https://launchpad.net/bugs/1415880
-Last-Update: 2015-08-18
-

- src/wl/sys/wl_linux.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
-index 860b935..295156f 100644
 a/src/wl/sys/wl_linux.c
-+++ b/src/wl/sys/wl_linux.c
-@@ -2157,8 +2157,8 @@ wl_start(struct sk_buff *skb, struct net_device *dev)
-   wlif = WL_DEV_IF(dev);
-   wl = WL_INFO(dev);
- 
-+  skb->prev = NULL;
-   if (WL_ALL_PASSIVE_ENAB(wl) || (WL_RTR() && WL_CONFIG_SMP())) {
--  skb->prev = NULL;
- 
-   TXQ_LOCK(wl);
- 
--- 
-1.9.1
-

Copied: 

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

2021-05-16 Thread Alexander Rødseth via arch-commits
Date: Sunday, May 16, 2021 @ 20:36:01
  Author: arodseth
Revision: 935952

upgpkg: broadcom-wl-dkms 6.30.223.271-28

Modified:
  broadcom-wl-dkms/trunk/PKGBUILD
  broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf

---+
 PKGBUILD  |4 ++--
 broadcom-wl-dkms.conf |1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:58:06 UTC (rev 935951)
+++ PKGBUILD2021-05-16 20:36:01 UTC (rev 935952)
@@ -6,7 +6,7 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=27
+pkgrel=28
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=(x86_64)
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -28,7 +28,7 @@
 '010-linux56.patch'
 '011-linux59.patch'
 
"https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-${pkgver//./_}.tar.gz;)
-b2sums=('ebb08bcb36762d77e48c713461adb22ac41f2d3409da1244f339ca4c562a99f6c5fe5dec7da3180c2f82e1678f0d7592fae1891f84eef9cf71c81ca6cfade5b1'
+b2sums=('7c4eaa825a37358509a08e5105665eeabc9f097945b6fa163cd5722b00638da5889f5466bd2c5f1b01172f2d0c9fb195f6e18329f2880adb2774406684cbc4c0'
 
'07ed5e7771e363628fa2cadb12fb0801162c533802590d969bd6e3438c42fc2fc4523653b1fd8e19fd7a4f5cc82e26c2a7a8a0c8b81dbc4dce42cf79d5d9904f'
 
'038150b9a50025dbd3c81d09755956216b83c0b54db29dc4bfbc3b46bd67cf4640ad643d69ba7f8d486f52cedeb00929b97e02152e72404e6126a05855f97d6f'
 
'bbc80e1ac01683ccc2d940212347fc11c74bdc252d492ca79a292015ac25df6a153ac97cb6c0f0a8d51c1c33d5dc0de4fdd61b1958499b946dc817d29646b72f'

Modified: broadcom-wl-dkms.conf
===
--- broadcom-wl-dkms.conf   2021-05-16 19:58:06 UTC (rev 935951)
+++ broadcom-wl-dkms.conf   2021-05-16 20:36:01 UTC (rev 935952)
@@ -6,4 +6,3 @@
 blacklist brcmfmac
 blacklist brcmsmac
 blacklist ssb
-blacklist tg3


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

2021-05-16 Thread Antonio Rojas via arch-commits
Date: Sunday, May 16, 2021 @ 20:08:18
  Author: arojas
Revision: 415597

archrelease: copy trunk to extra-x86_64

Added:
  wxmaxima/repos/extra-x86_64/PKGBUILD
(from rev 415596, wxmaxima/trunk/PKGBUILD)
Deleted:
  wxmaxima/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 20:08:09 UTC (rev 415596)
+++ PKGBUILD2021-05-16 20:08:18 UTC (rev 415597)
@@ -1,31 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Angelo Theodorou 
-# Contributor: Vinay S Shastry 
-
-pkgname=wxmaxima
-pkgver=21.05.0
-pkgrel=1
-pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
-arch=('x86_64')
-url="https://wxmaxima-developers.github.io/wxmaxima/;
-license=('GPL2')
-depends=('maxima' 'wxgtk3')
-makedepends=('cmake')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${pkgver}.tar.gz;)
-sha256sums=('4d42f4c5e76dbea2c37c74a6d5acc066f01fdf61cdeed1668c500b8eaf9ed48b')
-
-build() {
-  cmake -B build -S ${pkgname}-Version-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3
-  cmake --build build
-}
-
-#check() {
-#  cd ${pkgname}-Version-${pkgver}
-#  ./src/wxmaxima test/testbench_simple.wxmx
-#}
-
-package() {
-  DESTDIR="${pkgdir}" cmake --install build
-}

Copied: wxmaxima/repos/extra-x86_64/PKGBUILD (from rev 415596, 
wxmaxima/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 20:08:18 UTC (rev 415597)
@@ -0,0 +1,31 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Angelo Theodorou 
+# Contributor: Vinay S Shastry 
+
+pkgname=wxmaxima
+pkgver=21.05.1
+pkgrel=1
+pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
+arch=('x86_64')
+url="https://wxmaxima-developers.github.io/wxmaxima/;
+license=('GPL2')
+depends=('maxima' 'wxgtk3')
+makedepends=('cmake')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${pkgver}.tar.gz;)
+sha256sums=('4fadfc195f0eff883486f98d636f97700374f7899781dc4527efcd567a6486fc')
+
+build() {
+  cmake -B build -S ${pkgname}-Version-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3
+  cmake --build build
+}
+
+#check() {
+#  cd ${pkgname}-Version-${pkgver}
+#  ./src/wxmaxima test/testbench_simple.wxmx
+#}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --install build
+}


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

2021-05-16 Thread Antonio Rojas via arch-commits
Date: Sunday, May 16, 2021 @ 20:08:09
  Author: arojas
Revision: 415596

Update to 21.05.1

Modified:
  wxmaxima/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:10:37 UTC (rev 415595)
+++ PKGBUILD2021-05-16 20:08:09 UTC (rev 415596)
@@ -3,7 +3,7 @@
 # Contributor: Vinay S Shastry 
 
 pkgname=wxmaxima
-pkgver=21.05.0
+pkgver=21.05.1
 pkgrel=1
 pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('maxima' 'wxgtk3')
 makedepends=('cmake')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${pkgver}.tar.gz;)
-sha256sums=('4d42f4c5e76dbea2c37c74a6d5acc066f01fdf61cdeed1668c500b8eaf9ed48b')
+sha256sums=('4fadfc195f0eff883486f98d636f97700374f7899781dc4527efcd567a6486fc')
 
 build() {
   cmake -B build -S ${pkgname}-Version-${pkgver} \


[arch-commits] Commit in ruby-webmock (4 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:58:06
  Author: bastelfreak
Revision: 935951

archrelease: copy trunk to community-any

Added:
  ruby-webmock/repos/
  ruby-webmock/repos/community-any/
  ruby-webmock/repos/community-any/PKGBUILD
(from rev 935950, ruby-webmock/trunk/PKGBUILD)
  ruby-webmock/repos/community-any/disable-unneeded-dependencies.patch
(from rev 935950, ruby-webmock/trunk/disable-unneeded-dependencies.patch)

-+
 PKGBUILD|   56 ++
 disable-unneeded-dependencies.patch |   19 +++
 2 files changed, 75 insertions(+)

Copied: ruby-webmock/repos/community-any/PKGBUILD (from rev 935950, 
ruby-webmock/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-05-16 19:58:06 UTC (rev 935951)
@@ -0,0 +1,56 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+
+_gemname='webmock'
+pkgname="ruby-${_gemname}"
+pkgver=3.13.0
+pkgrel=1
+pkgdesc='Allows stubbing HTTP requests and setting expectations on HTTP 
requests.'
+arch=('any')
+url='https://github.com/bblimke/webmock'
+license=('MIT')
+makedepends=('ruby-rdoc')
+checkdepends=('ruby-rake' 'ruby-minitest' 'ruby-test-unit' 'ruby-rspec')
+depends=('ruby' 'ruby-crack' 'ruby-hashdiff' 'ruby-addressable')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
+'disable-unneeded-dependencies.patch')
+sha512sums=('aab53f941af5e7f2b099b8f00ce6727acf841f943f28b54ae40415752aa289e87a6867d2c5ab2568b7055f9edd33679bb51408d543202cd5e6a3525d9c77c839'
+
'd946429e8f4f90ef263e8b28b4b536b2d81a46f48076a64f5a68ea06fa9abb19470c9bd14035d086d8e054b0df9085f5793b1aa38ffda576b5161852ddae64aa')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # we build based on a tar ball, so `git` won't work
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec" 
spec/quality_spec.rb
+
+  # disable unneeded dependencies
+  patch --forward --verbose --strip=1 
--input='../disable-unneeded-dependencies.patch'
+  sed --in-place '/bundler/d' Rakefile
+  sed --in-place '/Bundler/d' Rakefile
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake minitest
+  rake test
+
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+  rm -rf 
"${pkgdir}/${_gemdir}/gems/${_gemname}-${pkgver}/"{test,spec,minitest,.gemtest,.gitignore,.travis.yml}
+}
+
+# vim: ts=2 sw=2 et:

Copied: ruby-webmock/repos/community-any/disable-unneeded-dependencies.patch 
(from rev 935950, ruby-webmock/trunk/disable-unneeded-dependencies.patch)
===
--- repos/community-any/disable-unneeded-dependencies.patch 
(rev 0)
+++ repos/community-any/disable-unneeded-dependencies.patch 2021-05-16 
19:58:06 UTC (rev 935951)
@@ -0,0 +1,19 @@
+diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
+index 7a219fc..cfe0c53 100644
+--- a/spec/spec_helper.rb
 b/spec/spec_helper.rb
+@@ -1,14 +1,5 @@
+ require 'rubygems'
+ require 'httpclient'
+-unless RUBY_PLATFORM =~ /java/
+-  require 'curb'
+-  require 'patron'
+-  require 'em-http'
+-  require 'typhoeus'
+-end
+-if RUBY_PLATFORM =~ /java/
+-  require 'manticore'
+-end
+ 
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))


[arch-commits] Commit in (4 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:57:58
  Author: bastelfreak
Revision: 935950

add ruby-webmock

Added:
  ruby-webmock/
  ruby-webmock/trunk/
  ruby-webmock/trunk/PKGBUILD
  ruby-webmock/trunk/disable-unneeded-dependencies.patch

-+
 PKGBUILD|   56 ++
 disable-unneeded-dependencies.patch |   19 +++
 2 files changed, 75 insertions(+)

Added: ruby-webmock/trunk/PKGBUILD
===
--- ruby-webmock/trunk/PKGBUILD (rev 0)
+++ ruby-webmock/trunk/PKGBUILD 2021-05-16 19:57:58 UTC (rev 935950)
@@ -0,0 +1,56 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+
+_gemname='webmock'
+pkgname="ruby-${_gemname}"
+pkgver=3.13.0
+pkgrel=1
+pkgdesc='Allows stubbing HTTP requests and setting expectations on HTTP 
requests.'
+arch=('any')
+url='https://github.com/bblimke/webmock'
+license=('MIT')
+makedepends=('ruby-rdoc')
+checkdepends=('ruby-rake' 'ruby-minitest' 'ruby-test-unit' 'ruby-rspec')
+depends=('ruby' 'ruby-crack' 'ruby-hashdiff' 'ruby-addressable')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
+'disable-unneeded-dependencies.patch')
+sha512sums=('aab53f941af5e7f2b099b8f00ce6727acf841f943f28b54ae40415752aa289e87a6867d2c5ab2568b7055f9edd33679bb51408d543202cd5e6a3525d9c77c839'
+
'd946429e8f4f90ef263e8b28b4b536b2d81a46f48076a64f5a68ea06fa9abb19470c9bd14035d086d8e054b0df9085f5793b1aa38ffda576b5161852ddae64aa')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # we build based on a tar ball, so `git` won't work
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec" 
spec/quality_spec.rb
+
+  # disable unneeded dependencies
+  patch --forward --verbose --strip=1 
--input='../disable-unneeded-dependencies.patch'
+  sed --in-place '/bundler/d' Rakefile
+  sed --in-place '/Bundler/d' Rakefile
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake minitest
+  rake test
+
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+  rm -rf 
"${pkgdir}/${_gemdir}/gems/${_gemname}-${pkgver}/"{test,spec,minitest,.gemtest,.gitignore,.travis.yml}
+}
+
+# vim: ts=2 sw=2 et:

Added: ruby-webmock/trunk/disable-unneeded-dependencies.patch
===
--- ruby-webmock/trunk/disable-unneeded-dependencies.patch  
(rev 0)
+++ ruby-webmock/trunk/disable-unneeded-dependencies.patch  2021-05-16 
19:57:58 UTC (rev 935950)
@@ -0,0 +1,19 @@
+diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
+index 7a219fc..cfe0c53 100644
+--- a/spec/spec_helper.rb
 b/spec/spec_helper.rb
+@@ -1,14 +1,5 @@
+ require 'rubygems'
+ require 'httpclient'
+-unless RUBY_PLATFORM =~ /java/
+-  require 'curb'
+-  require 'patron'
+-  require 'em-http'
+-  require 'typhoeus'
+-end
+-if RUBY_PLATFORM =~ /java/
+-  require 'manticore'
+-end
+ 
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:55:11
  Author: bastelfreak
Revision: 935949

archrelease: copy trunk to community-any

Added:
  ruby-hashdiff/repos/community-any/
  ruby-hashdiff/repos/community-any/PKGBUILD
(from rev 935948, ruby-hashdiff/trunk/PKGBUILD)

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

Copied: ruby-hashdiff/repos/community-any/PKGBUILD (from rev 935948, 
ruby-hashdiff/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-05-16 19:55:11 UTC (rev 935949)
@@ -0,0 +1,61 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+
+_gemname='hashdiff'
+pkgname="ruby-${_gemname}"
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Library to compute the smallest difference between two hashes'
+arch=('any')
+url="https://github.com/liufengyun/${_gemname};
+license=('MIT')
+makedepends=('ruby-rdoc' 'ruby-bundler')
+checkdepends=('ruby-rake' 'ruby-rspec')
+depends=('ruby')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('014e4eb6b84dd0266c7db4dd570be96df1c557ab16ccd060adbe2f464647032e58fd75d97ea05b452b773e4969665d59f08779e9d44562ea73ede8738f1e6219')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # use `find` instead of `git`, since we have a tar ball and not a VCS 
repository
+  sed --in-place 's/git ls-files.*`/find`/g' "${_gemname}.gemspec"
+  sed --in-place '/test_files/d' "${_gemname}.gemspec"
+
+  # rubocop would test if the code works on a legay ruby platform
+  sed --in-place '/rubocop/d' Rakefile
+  sed --in-place '/RuboCop/d' Rakefile
+
+  # loading bundler isn't required and often triggers side effects
+  # because it wants *all* gems from gemspec + Gemfile
+  sed --in-place '/Bundler/d' Rakefile
+  sed --in-place '/Bundler/d' Rakefile
+
+  # the project has a few dependencies for releasing
+  sed --in-place '/bluecloth/d' "${_gemname}.gemspec"
+  sed --in-place '/rubocop/d' "${_gemname}.gemspec"
+  sed --in-place '/yard/d' "${_gemname}.gemspec"
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake spec
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:54:08
  Author: bastelfreak
Revision: 935948

add ruby-hashdiff

Added:
  ruby-hashdiff/
  ruby-hashdiff/repos/
  ruby-hashdiff/trunk/
  ruby-hashdiff/trunk/PKGBUILD

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

Added: ruby-hashdiff/trunk/PKGBUILD
===
--- ruby-hashdiff/trunk/PKGBUILD(rev 0)
+++ ruby-hashdiff/trunk/PKGBUILD2021-05-16 19:54:08 UTC (rev 935948)
@@ -0,0 +1,61 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+
+_gemname='hashdiff'
+pkgname="ruby-${_gemname}"
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Library to compute the smallest difference between two hashes'
+arch=('any')
+url="https://github.com/liufengyun/${_gemname};
+license=('MIT')
+makedepends=('ruby-rdoc' 'ruby-bundler')
+checkdepends=('ruby-rake' 'ruby-rspec')
+depends=('ruby')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('014e4eb6b84dd0266c7db4dd570be96df1c557ab16ccd060adbe2f464647032e58fd75d97ea05b452b773e4969665d59f08779e9d44562ea73ede8738f1e6219')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # use `find` instead of `git`, since we have a tar ball and not a VCS 
repository
+  sed --in-place 's/git ls-files.*`/find`/g' "${_gemname}.gemspec"
+  sed --in-place '/test_files/d' "${_gemname}.gemspec"
+
+  # rubocop would test if the code works on a legay ruby platform
+  sed --in-place '/rubocop/d' Rakefile
+  sed --in-place '/RuboCop/d' Rakefile
+
+  # loading bundler isn't required and often triggers side effects
+  # because it wants *all* gems from gemspec + Gemfile
+  sed --in-place '/Bundler/d' Rakefile
+  sed --in-place '/Bundler/d' Rakefile
+
+  # the project has a few dependencies for releasing
+  sed --in-place '/bluecloth/d' "${_gemname}.gemspec"
+  sed --in-place '/rubocop/d' "${_gemname}.gemspec"
+  sed --in-place '/yard/d' "${_gemname}.gemspec"
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake spec
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:51:22
  Author: anthraxx
Revision: 935947

archrelease: copy trunk to community-any

Added:
  tmuxp/repos/community-any/PKGBUILD
(from rev 935946, tmuxp/trunk/PKGBUILD)
  tmuxp/repos/community-any/tmuxp-click-8.0.patch
(from rev 935946, tmuxp/trunk/tmuxp-click-8.0.patch)
Deleted:
  tmuxp/repos/community-any/PKGBUILD

---+
 PKGBUILD  |  102 
 tmuxp-click-8.0.patch |   38 +
 2 files changed, 91 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:51:13 UTC (rev 935946)
+++ PKGBUILD2021-05-16 19:51:22 UTC (rev 935947)
@@ -1,49 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=tmuxp
-pkgver=1.7.2
-pkgrel=1
-pkgdesc="Tmux session manager built on libtmux"
-arch=('any')
-url="https://tmuxp.git-pull.com/en/latest/;
-license=('MIT')
-depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
-checkdepends=('python-pytest' 'python-pytest-rerunfailures')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('35f71fa9da9b6149f0bef72bbe1ff108422d813236e7a8e599c9fea46fadd437f8947e2206a05041a7bbf41338b4adb0558c1f6a0b5b38a08af76fb48aae5549')
-b2sums=('1c3d4628dfbbbe2c985438c58384bc051b457fd8d7e913ad0727874ee9f24aabdc9034f2f79c65f3f98e3ad7ed615fa5995561d6cb455178345f48361f5955a3')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # remove all hard version pinning:
-  # https://github.com/tmux-python/tmuxp/issues/432
-  sed -e 's/==/>=/g' -i requirements/*.txt
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # test_workspacebuilder.py::test_pane_order does not return:
-  # https://github.com/tmux-python/tmuxp/issues/377
-  pytest -v -k "not test_pane_order"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}/"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  # docs
-  install -vDm 644 {CHANGES,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 examples/*.{json,yaml} \
--t "${pkgdir}/usr/share/doc/${pkgname}/examples/"
-}
-
-# vim:set ts=2 sw=2 et:}

Copied: tmuxp/repos/community-any/PKGBUILD (from rev 935946, 
tmuxp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:51:22 UTC (rev 935947)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+
+pkgname=tmuxp
+pkgver=1.7.2
+pkgrel=2
+pkgdesc="Tmux session manager built on libtmux"
+arch=('any')
+url="https://tmuxp.git-pull.com/en/latest/;
+license=('MIT')
+depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
+checkdepends=('python-pytest' 'python-pytest-rerunfailures')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+tmuxp-click-8.0.patch)
+sha512sums=('35f71fa9da9b6149f0bef72bbe1ff108422d813236e7a8e599c9fea46fadd437f8947e2206a05041a7bbf41338b4adb0558c1f6a0b5b38a08af76fb48aae5549'
+
'5017ee56ad37e3e1400a9cc1d535bd64053b198cc91a3edd87fd3cd37a3a2c3f155d4a7d5d68d4c5e16ea1308c0e4521badfafce1d23aa34370cea60bf625751')
+b2sums=('1c3d4628dfbbbe2c985438c58384bc051b457fd8d7e913ad0727874ee9f24aabdc9034f2f79c65f3f98e3ad7ed615fa5995561d6cb455178345f48361f5955a3'
+
'ed3d357564c84a52e20e6cf1081de2b7d2624bda157dda1de9e976d65f6a731fba1ca35682b4431d8b637667dd9fe6f8eb2b1e5d3a11cb94160b0ac6ca1753d4')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 < ../tmuxp-click-8.0.patch
+  # remove all hard version pinning:
+  # https://github.com/tmux-python/tmuxp/issues/432
+  sed -e 's/==/>=/g' -i requirements/*.txt
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # test_workspacebuilder.py::test_pane_order does not return:
+  # https://github.com/tmux-python/tmuxp/issues/377
+  pytest -v -k "not test_pane_order"
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}/"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # docs
+  install -vDm 644 {CHANGES,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 examples/*.{json,yaml} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/examples/"
+}
+
+# vim:set ts=2 sw=2 et:}

Copied: tmuxp/repos/community-any/tmuxp-click-8.0.patch (from rev 935946, 
tmuxp/trunk/tmuxp-click-8.0.patch)
===
--- 

[arch-commits] Commit in tmuxp/trunk (PKGBUILD tmuxp-click-8.0.patch)

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:51:13
  Author: anthraxx
Revision: 935946

upgpkg: tmuxp 1.7.2-2: click 8.0 compatibility

Added:
  tmuxp/trunk/tmuxp-click-8.0.patch
Modified:
  tmuxp/trunk/PKGBUILD

---+
 PKGBUILD  |   12 
 tmuxp-click-8.0.patch |   38 ++
 2 files changed, 46 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:50:02 UTC (rev 935945)
+++ PKGBUILD2021-05-16 19:51:13 UTC (rev 935946)
@@ -2,7 +2,7 @@
 
 pkgname=tmuxp
 pkgver=1.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Tmux session manager built on libtmux"
 arch=('any')
 url="https://tmuxp.git-pull.com/en/latest/;
@@ -9,12 +9,16 @@
 license=('MIT')
 depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
 checkdepends=('python-pytest' 'python-pytest-rerunfailures')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('35f71fa9da9b6149f0bef72bbe1ff108422d813236e7a8e599c9fea46fadd437f8947e2206a05041a7bbf41338b4adb0558c1f6a0b5b38a08af76fb48aae5549')
-b2sums=('1c3d4628dfbbbe2c985438c58384bc051b457fd8d7e913ad0727874ee9f24aabdc9034f2f79c65f3f98e3ad7ed615fa5995561d6cb455178345f48361f5955a3')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+tmuxp-click-8.0.patch)
+sha512sums=('35f71fa9da9b6149f0bef72bbe1ff108422d813236e7a8e599c9fea46fadd437f8947e2206a05041a7bbf41338b4adb0558c1f6a0b5b38a08af76fb48aae5549'
+
'5017ee56ad37e3e1400a9cc1d535bd64053b198cc91a3edd87fd3cd37a3a2c3f155d4a7d5d68d4c5e16ea1308c0e4521badfafce1d23aa34370cea60bf625751')
+b2sums=('1c3d4628dfbbbe2c985438c58384bc051b457fd8d7e913ad0727874ee9f24aabdc9034f2f79c65f3f98e3ad7ed615fa5995561d6cb455178345f48361f5955a3'
+
'ed3d357564c84a52e20e6cf1081de2b7d2624bda157dda1de9e976d65f6a731fba1ca35682b4431d8b637667dd9fe6f8eb2b1e5d3a11cb94160b0ac6ca1753d4')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
+  patch -Np1 < ../tmuxp-click-8.0.patch
   # remove all hard version pinning:
   # https://github.com/tmux-python/tmuxp/issues/432
   sed -e 's/==/>=/g' -i requirements/*.txt

Added: tmuxp-click-8.0.patch
===
--- tmuxp-click-8.0.patch   (rev 0)
+++ tmuxp-click-8.0.patch   2021-05-16 19:51:13 UTC (rev 935946)
@@ -0,0 +1,38 @@
+From 760832ff3b23a0edf5969b2cb307b55a863c424d Mon Sep 17 00:00:00 2001
+From: Sam Lunt 
+Date: Thu, 13 May 2021 16:48:22 -0500
+Subject: [PATCH] set colors to be an int, not a string
+
+---
+ tmuxp/cli.py | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/tmuxp/cli.py b/tmuxp/cli.py
+index 74f5142c..9f7b91a9 100644
+--- a/tmuxp/cli.py
 b/tmuxp/cli.py
+@@ -564,7 +564,7 @@ def load_workspace(
+ ``tmux -S ``
+ new_session_name: str, options
+ ``tmux new -s ``
+-colors : str, optional
++colors : int, optional
+ '-2'
+ Force tmux to support 256 colors
+ detached : bool
+@@ -1013,6 +1013,7 @@ def command_freeze(session_name, socket_name, 
socket_path, force):
+ @click.option(
+ 'colors',
+ '-2',
++type=int,
+ flag_value=256,
+ default=True,
+ help='Force tmux to assume the terminal supports 256 colours.',
+@@ -1020,6 +1021,7 @@ def command_freeze(session_name, socket_name, 
socket_path, force):
+ @click.option(
+ 'colors',
+ '-8',
++type=int,
+ flag_value=88,
+ help='Like -2, but indicates that the terminal supports 88 colours.',
+ )


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:50:02
  Author: bastelfreak
Revision: 935945

archrelease: copy trunk to community-any

Added:
  ruby-crack/repos/community-any/
  ruby-crack/repos/community-any/PKGBUILD
(from rev 935944, ruby-crack/trunk/PKGBUILD)

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

Copied: ruby-crack/repos/community-any/PKGBUILD (from rev 935944, 
ruby-crack/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-05-16 19:50:02 UTC (rev 935945)
@@ -0,0 +1,52 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Simon Kohlmeyer 
+
+_gemname='crack'
+pkgname="ruby-${_gemname}"
+pkgver=0.4.4
+pkgrel=3
+pkgdesc='Really simple JSON and XML parsing, ripped from Merb and Rails.'
+arch=('any')
+url='https://github.com/jnunemaker/crack/'
+license=('MIT')
+makedepends=('ruby-rdoc')
+depends=('ruby' 'ruby-safe_yaml' 'ruby-rexml')
+checkdepends=('ruby-minitest')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('3f86c76718a3c2a65ee11b15434035396c2355a8562bdb642432a659b52c3e811e930318e0dc2df3ff06bd53ac14d0694471e425420ae3b7971f5d4f818bba87')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # we build with a tar ball, so `git` won't work
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
+
+  # `rake` isn't an actual dependency, so we can remove it
+  sed --in-place '/rake/d' Gemfile
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  # the project doesn't use rake tasks for test
+  # this is based on:
+  # 
https://github.com/jnunemaker/crack/blob/4ecf9cf5f721dea61b8fa86280180142ead35312/script/test#L23
+  ruby -I lib -I test -r rubygems -e 'Dir["test/**/*_test.rb"].each { |f| load 
f }'
+}
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -Dm 644 README.md History -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:49:55
  Author: bastelfreak
Revision: 935944

add ruby-crack

Added:
  ruby-crack/
  ruby-crack/repos/
  ruby-crack/trunk/
  ruby-crack/trunk/PKGBUILD

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

Added: ruby-crack/trunk/PKGBUILD
===
--- ruby-crack/trunk/PKGBUILD   (rev 0)
+++ ruby-crack/trunk/PKGBUILD   2021-05-16 19:49:55 UTC (rev 935944)
@@ -0,0 +1,52 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Simon Kohlmeyer 
+
+_gemname='crack'
+pkgname="ruby-${_gemname}"
+pkgver=0.4.4
+pkgrel=3
+pkgdesc='Really simple JSON and XML parsing, ripped from Merb and Rails.'
+arch=('any')
+url='https://github.com/jnunemaker/crack/'
+license=('MIT')
+makedepends=('ruby-rdoc')
+depends=('ruby' 'ruby-safe_yaml' 'ruby-rexml')
+checkdepends=('ruby-minitest')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('3f86c76718a3c2a65ee11b15434035396c2355a8562bdb642432a659b52c3e811e930318e0dc2df3ff06bd53ac14d0694471e425420ae3b7971f5d4f818bba87')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # we build with a tar ball, so `git` won't work
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
+
+  # `rake` isn't an actual dependency, so we can remove it
+  sed --in-place '/rake/d' Gemfile
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  # the project doesn't use rake tasks for test
+  # this is based on:
+  # 
https://github.com/jnunemaker/crack/blob/4ecf9cf5f721dea61b8fa86280180142ead35312/script/test#L23
+  ruby -I lib -I test -r rubygems -e 'Dir["test/**/*_test.rb"].each { |f| load 
f }'
+}
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -Dm 644 README.md History -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Balló György via arch-commits
Date: Sunday, May 16, 2021 @ 19:28:04
  Author: bgyorgy
Revision: 935943

archrelease: copy trunk to community-x86_64

Added:
  libffado/repos/community-x86_64/PKGBUILD
(from rev 935942, libffado/trunk/PKGBUILD)
  libffado/repos/community-x86_64/libffado-2.4.2-python38.patch
(from rev 935942, libffado/trunk/libffado-2.4.2-python38.patch)
Deleted:
  libffado/repos/community-x86_64/PKGBUILD
  libffado/repos/community-x86_64/libffado-2.4.2-python38.patch

---+
 PKGBUILD  |  115 
 libffado-2.4.2-python38.patch |   48 
 2 files changed, 83 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:27:58 UTC (rev 935942)
+++ PKGBUILD2021-05-16 19:28:04 UTC (rev 935943)
@@ -1,56 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: galiyo...@gmail.com
-# Contributor: Jon Kristian Nilsen 
-
-pkgname=libffado
-pkgver=2.4.4
-pkgrel=2
-pkgdesc="Driver for FireWire audio devices"
-arch=('x86_64')
-url="http://www.ffado.org/;
-license=('GPL3')
-depends=('gcc-libs' 'glibc' 'glibmm' 'hicolor-icon-theme' 'libavc1394'
-'libiec61883' 'libxml++' 'python-dbus')
-makedepends=('alsa-lib' 'dbus-c++' 'jack' 'libconfig' 'python-pyqt5' 'scons')
-optdepends=('python-pyqt5: ffado-mixer')
-provides=('libffado.so')
-source=("http://www.ffado.org/files/${pkgname}-${pkgver}.tgz;)
-sha512sums=('065b7f9ce9bf58320c02353b63ed17b3610d0ee8a2de58de27159b2190e39c779094b01ae1123c087387e6077375e646b564b9e7717b192865b2f1f22a3acc80')
-b2sums=('70d3b17f7d7317acc63351faaefb27fa850664015134887f0508b4a76aabbf6e9573f87eb2dd9792ac5f4f4b06ac7c872afa33af6af0341e6cceeb43e7a79526')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # fix icon name, so it's coherent with XDG desktop file name
-  sed -e 's/hi64-apps-ffado/ffado-mixer/g' \
-  -i support/xdg/ffado.org-ffadomixer.desktop
-}
-
-build() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${pkgname}-${pkgver}"
-  scons PREFIX=/usr \
-DEBUG=no \
-CUSTOM_ENV=True \
-MANDIR='/usr/share/man' \
-PYTHON_INTERPRETER='/usr/bin/python3' \
-PYPKGDIR="/usr/lib/python${python_version}/site-packages" \
-UDEVDIR='/usr/lib/udev/rules.d'
-}
-
-package() {
-  depends+=('libasound.so' 'libconfig++.so' 'libdbus-c++-1.so' )
-  cd "${pkgname}-${pkgver}"
-  scons DESTDIR="${pkgdir}" WILL_DEAL_WITH_XDG_MYSELF="True" install
-
-  # XDG
-  install -vDm 644 support/xdg/ffado.org-ffadomixer.desktop \
-"${pkgdir}/usr/share/applications/ffado-mixer.desktop"
-  install -vDm 644 support/xdg/hi64-apps-ffado.png \
-"${pkgdir}/usr/share/icons/hicolor/64x64/apps/ffado-mixer.png"
-
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" -vDm 644 {AUTHORS,README}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libffado/repos/community-x86_64/PKGBUILD (from rev 935942, 
libffado/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:28:04 UTC (rev 935943)
@@ -0,0 +1,59 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: galiyo...@gmail.com
+# Contributor: Jon Kristian Nilsen 
+
+pkgname=libffado
+pkgver=2.4.4
+pkgrel=3
+pkgdesc="Driver for FireWire audio devices"
+arch=('x86_64')
+url="http://www.ffado.org/;
+license=('GPL3')
+depends=('gcc-libs' 'glibc' 'glibmm' 'hicolor-icon-theme' 'libavc1394'
+'libiec61883' 'libxml++' 'python-dbus')
+makedepends=('alsa-lib' 'dbus-c++' 'jack' 'libconfig' 'python-pyqt5' 'scons')
+optdepends=('python-pyqt5: ffado-mixer')
+provides=('libffado.so')
+source=("http://www.ffado.org/files/${pkgname}-${pkgver}.tgz;)
+sha512sums=('065b7f9ce9bf58320c02353b63ed17b3610d0ee8a2de58de27159b2190e39c779094b01ae1123c087387e6077375e646b564b9e7717b192865b2f1f22a3acc80')
+b2sums=('70d3b17f7d7317acc63351faaefb27fa850664015134887f0508b4a76aabbf6e9573f87eb2dd9792ac5f4f4b06ac7c872afa33af6af0341e6cceeb43e7a79526')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix icon name, so it's coherent with XDG desktop file name
+  sed -e 's/hi64-apps-ffado/ffado-mixer/g' \
+  -i support/xdg/ffado.org-ffadomixer.desktop
+  # fix id, so it's coherent with XDG desktop file name
+  sed -e 's/ffado.org-ffadomixer.desktop/ffado-mixer.desktop/g' \
+  -i support/xdg/ffado-mixer.appdata.xml
+}
+
+build() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  cd "${pkgname}-${pkgver}"
+  scons PREFIX=/usr \
+DEBUG=no \
+CUSTOM_ENV=True \
+MANDIR='/usr/share/man' \
+PYTHON_INTERPRETER='/usr/bin/python3' \
+PYPKGDIR="/usr/lib/python${python_version}/site-packages" \
+UDEVDIR='/usr/lib/udev/rules.d'
+}
+
+package() {
+  depends+=('libasound.so' 'libconfig++.so' 

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

2021-05-16 Thread Balló György via arch-commits
Date: Sunday, May 16, 2021 @ 19:27:58
  Author: bgyorgy
Revision: 935942

upgpkg: libffado 2.4.4-3: fix metainfo id, so it's coherent with XDG desktop 
file name

Modified:
  libffado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:24:23 UTC (rev 935941)
+++ PKGBUILD2021-05-16 19:27:58 UTC (rev 935942)
@@ -5,7 +5,7 @@
 
 pkgname=libffado
 pkgver=2.4.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Driver for FireWire audio devices"
 arch=('x86_64')
 url="http://www.ffado.org/;
@@ -24,6 +24,9 @@
   # fix icon name, so it's coherent with XDG desktop file name
   sed -e 's/hi64-apps-ffado/ffado-mixer/g' \
   -i support/xdg/ffado.org-ffadomixer.desktop
+  # fix id, so it's coherent with XDG desktop file name
+  sed -e 's/ffado.org-ffadomixer.desktop/ffado-mixer.desktop/g' \
+  -i support/xdg/ffado-mixer.appdata.xml
 }
 
 build() {


[arch-commits] Commit in ruby27-httpclient/repos/community-testing-any (4 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:24:23
  Author: bastelfreak
Revision: 935941

archrelease: copy trunk to community-testing-any

Added:
  ruby27-httpclient/repos/community-testing-any/PKGBUILD
(from rev 935940, ruby27-httpclient/trunk/PKGBUILD)
  ruby27-httpclient/repos/community-testing-any/disable-broken-TLS-test.patch
(from rev 935940, ruby27-httpclient/trunk/disable-broken-TLS-test.patch)
Deleted:
  ruby27-httpclient/repos/community-testing-any/PKGBUILD
  ruby27-httpclient/repos/community-testing-any/disable-broken-TLS-test.patch

---+
 PKGBUILD  |  122 
 disable-broken-TLS-test.patch |   42 ++---
 2 files changed, 83 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:24:15 UTC (rev 935940)
+++ PKGBUILD2021-05-16 19:24:23 UTC (rev 935941)
@@ -1,60 +0,0 @@
-# Maintainer: Tim Meusel 
-# Contributor: Christian Rebischke 
-# Contributor: farwayer 
-# Contributor: Tim Meusel 
-
-_gemname='httpclient'
-pkgname="ruby27-${_gemname}"
-pkgver=2.8.3
-pkgrel=1
-pkgdesc='gives something like the functionality of libwww-perl (LWP) in Ruby'
-arch=('any')
-url="https://github.com/nahi/${_gemname};
-license=('RUBY')
-makedepends=('ruby27-rdoc')
-depends=('ruby2.7')
-options=(!emptydirs)
-source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
-'disable-broken-TLS-test.patch')
-sha512sums=('b65b5adb97af069d7ff6b6f4cccd6a42c6d9c88b797e9495768fe1f36a6bd93defe50190edc201de5e39c4e306ba0bd17a8ff2f8eba4d636dacafa06c172967d'
-
'fcdb88f83ea1663f1f21113f7943223ffc1c69dc0f1305d74e8a96b3752f905c1bfa3727f2eb9dae9742db16d222ba5971a072b065a6c7ce535615b51fdb8712')
-
-prepare() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-
-  # Allow latest gem dependencies
-  sed --in-place 's|~>|>=|g' Gemfile
-
-  # fix wrong license name in gemspec
-  sed --in-place "s/'ruby'/'Ruby'/" "${_gemname}.gemspec"
-
-  # don't load the bundler setup. That would require us to
-  # provide all 'development' dependencies
-  sed --in-place '/setup/d' Rakefile
-
-  # test_auth.rb does a bunch of windows specific NTLM tests
-  # they don't apply to Arch
-  rm test/test_auth.rb
-
-  # one test verifies the openssl store.
-  # a) this test has nothing to do with the actual httpclient
-  # b) the used certificate is expiried so the test fails
-  patch --forward --verbose --strip=1 
--input='../disable-broken-TLS-test.patch'
-}
-
-build() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  gem-2.7 build "${_gemname}.gemspec"
-}
-
-package() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  local _gemdir="$(gem-2.7 env gemdir)"
-  gem-2.7 install --verbose --ignore-dependencies --no-user-install 
--install-dir "${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" 
"${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby27-httpclient/repos/community-testing-any/PKGBUILD (from rev 
935940, ruby27-httpclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:24:23 UTC (rev 935941)
@@ -0,0 +1,62 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: farwayer 
+# Contributor: Tim Meusel 
+
+_gemname='httpclient'
+pkgname="ruby27-${_gemname}"
+pkgver=2.8.3
+pkgrel=2
+pkgdesc='gives something like the functionality of libwww-perl (LWP) in Ruby'
+arch=('any')
+url="https://github.com/nahi/${_gemname};
+license=('RUBY')
+makedepends=('ruby27-rdoc')
+depends=('ruby2.7')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
+'disable-broken-TLS-test.patch')
+sha512sums=('b65b5adb97af069d7ff6b6f4cccd6a42c6d9c88b797e9495768fe1f36a6bd93defe50190edc201de5e39c4e306ba0bd17a8ff2f8eba4d636dacafa06c172967d'
+
'fcdb88f83ea1663f1f21113f7943223ffc1c69dc0f1305d74e8a96b3752f905c1bfa3727f2eb9dae9742db16d222ba5971a072b065a6c7ce535615b51fdb8712')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # Allow latest gem dependencies
+  sed --in-place 's|~>|>=|g' Gemfile
+
+  # fix wrong license name in gemspec
+  sed --in-place "s/'ruby'/'Ruby'/" "${_gemname}.gemspec"
+
+  # don't load the bundler setup. That would require us to
+  # provide all 'development' dependencies
+  sed --in-place '/setup/d' Rakefile
+
+  # test_auth.rb does a bunch of windows specific NTLM tests
+  # they don't apply to Arch
+  rm test/test_auth.rb
+
+  # one test verifies the openssl store.
+  # a) this test has nothing to do with the actual httpclient
+  # b) the used certificate is expiried so the test fails
+  patch --forward --verbose --strip=1 
--input='../disable-broken-TLS-test.patch'
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem-2.7 build 

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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:24:15
  Author: bastelfreak
Revision: 935940

prefix executable with ruby27- to prevent conflicts

Modified:
  ruby27-httpclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:21:23 UTC (rev 935939)
+++ PKGBUILD2021-05-16 19:24:15 UTC (rev 935940)
@@ -6,7 +6,7 @@
 _gemname='httpclient'
 pkgname="ruby27-${_gemname}"
 pkgver=2.8.3
-pkgrel=1
+pkgrel=2
 pkgdesc='gives something like the functionality of libwww-perl (LWP) in Ruby'
 arch=('any')
 url="https://github.com/nahi/${_gemname};
@@ -55,6 +55,8 @@
   install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
 
   rm -rf "${pkgdir}/${_gemdir}/cache"
+
+  mv "${pkgdir}/usr/bin/${_gemname}" "${pkgdir}/usr/bin/ruby27-${_gemname}"
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby27-hocon/repos/community-testing-any (PKGBUILD PKGBUILD)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:21:23
  Author: bastelfreak
Revision: 935939

archrelease: copy trunk to community-testing-any

Added:
  ruby27-hocon/repos/community-testing-any/PKGBUILD
(from rev 935938, ruby27-hocon/trunk/PKGBUILD)
Deleted:
  ruby27-hocon/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:21:17 UTC (rev 935938)
+++ PKGBUILD2021-05-16 19:21:23 UTC (rev 935939)
@@ -1,51 +0,0 @@
-# Maintainer: Tim Meusel 
-# Contributor: Christian Rebischke 
-
-_gemname='hocon'
-_reponame="ruby-${_gemname}"
-pkgname="ruby27-${_gemname}"
-pkgver=1.3.1
-pkgrel=1
-pkgdesc='A collection of text algorithms: Levenshtein, Soundex, Metaphone, 
Double Metaphone, Porter Stemming'
-arch=('any')
-url="https://github.com/puppetlabs/${_reponame};
-license=('Apache')
-depends=('ruby2.7')
-makedepends=('ruby27-rdoc')
-checkdepends=('ruby27-rspec')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-options=("!emptydirs")
-sha512sums=('c73cfd8d6c77751d1d2a35d85cad2f2eef700a01e8b8de9449c0c9dfefe8d4a80c4a79dd3db8ee4a6d2c3649f26d6780cbe05fe9b067de05ee3711b00faf4255')
-
-prepare() {
-  cd "${srcdir}/${_reponame}-${pkgver}"
-
-  # update the gemspec to allow newer versions of rake
-  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
-
-  # fix wrong license name in gemspec
-  sed --in-place 's/Apache License, v2/Apache-2.0/' "${_gemname}.gemspec"
-}
-
-build() {
-  cd "${srcdir}/${_reponame}-${pkgver}"
-  gem-2.7 build "${_gemname}.gemspec"
-}
-
-check() {
-  cd "${srcdir}/${_reponame}-${pkgver}"
-  ruby27-rspec spec
-}
-
-package() {
-  cd "${srcdir}/${_reponame}-${pkgver}"
-  local _gemdir="$(gem-2.7 env gemdir)"
-  gem-2.7 install --verbose --ignore-dependencies --no-user-install 
--install-dir "${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" 
"${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  install -Dm 644 CHANGELOG.md HISTORY.md README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby27-hocon/repos/community-testing-any/PKGBUILD (from rev 935938, 
ruby27-hocon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:21:23 UTC (rev 935939)
@@ -0,0 +1,54 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+
+_gemname='hocon'
+_reponame="ruby-${_gemname}"
+pkgname="ruby27-${_gemname}"
+pkgver=1.3.1
+pkgrel=2
+pkgdesc='A collection of text algorithms: Levenshtein, Soundex, Metaphone, 
Double Metaphone, Porter Stemming'
+arch=('any')
+url="https://github.com/puppetlabs/${_reponame};
+license=('Apache')
+depends=('ruby2.7')
+makedepends=('ruby27-rdoc')
+checkdepends=('ruby27-rspec')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+options=("!emptydirs")
+sha512sums=('c73cfd8d6c77751d1d2a35d85cad2f2eef700a01e8b8de9449c0c9dfefe8d4a80c4a79dd3db8ee4a6d2c3649f26d6780cbe05fe9b067de05ee3711b00faf4255')
+
+prepare() {
+  cd "${srcdir}/${_reponame}-${pkgver}"
+
+  # update the gemspec to allow newer versions of rake
+  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
+
+  # fix wrong license name in gemspec
+  sed --in-place 's/Apache License, v2/Apache-2.0/' "${_gemname}.gemspec"
+}
+
+build() {
+  cd "${srcdir}/${_reponame}-${pkgver}"
+  gem-2.7 build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_reponame}-${pkgver}"
+  ruby27-rspec spec
+}
+
+package() {
+  cd "${srcdir}/${_reponame}-${pkgver}"
+  local _gemdir="$(gem-2.7 env gemdir)"
+  gem-2.7 install --verbose --ignore-dependencies --no-user-install 
--install-dir "${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" 
"${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -Dm 644 CHANGELOG.md HISTORY.md README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+
+  mv "${pkgdir}/usr/bin/hocon" "${pkgdir}/usr/bin/ruby27-hocon"
+
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 19:21:17
  Author: bastelfreak
Revision: 935938

prefix executable with ruby27- to prevent conflicts

Modified:
  ruby27-hocon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:08:47 UTC (rev 935937)
+++ PKGBUILD2021-05-16 19:21:17 UTC (rev 935938)
@@ -5,7 +5,7 @@
 _reponame="ruby-${_gemname}"
 pkgname="ruby27-${_gemname}"
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A collection of text algorithms: Levenshtein, Soundex, Metaphone, 
Double Metaphone, Porter Stemming'
 arch=('any')
 url="https://github.com/puppetlabs/${_reponame};
@@ -46,6 +46,9 @@
   install -Dm 644 CHANGELOG.md HISTORY.md README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
 
   rm -rf "${pkgdir}/${_gemdir}/cache"
+
+  mv "${pkgdir}/usr/bin/hocon" "${pkgdir}/usr/bin/ruby27-hocon"
+
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in vim/repos/extra-x86_64 (8 files)

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:10:37
  Author: anthraxx
Revision: 415595

archrelease: copy trunk to extra-x86_64

Added:
  vim/repos/extra-x86_64/PKGBUILD
(from rev 415594, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 415594, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/vimdoc.hook
(from rev 415594, vim/trunk/vimdoc.hook)
  vim/repos/extra-x86_64/vimrc
(from rev 415594, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimdoc.hook
  vim/repos/extra-x86_64/vimrc

---+
 PKGBUILD  |  420 
 archlinux.vim |   92 ++--
 vimdoc.hook   |   22 +-
 vimrc |   36 ++--
 4 files changed, 285 insertions(+), 285 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:10:31 UTC (rev 415594)
+++ PKGBUILD2021-05-16 19:10:37 UTC (rev 415595)
@@ -1,210 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths 
-# Contributor: Christian Hesse 
-# Contributor: Eli Schwartz 
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.2.2845
-_versiondir=82
-pkgrel=1
-pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
-url='https://www.vim.org'
-arch=('x86_64')
-license=('custom:vim')
-makedepends=('glibc' 'libgcrypt' 'gpm' 'python2' 'python' 'ruby' 'libxt' 
'gtk3' 'lua'
- 'gawk' 'tcl' 'pcre' 'zlib' 'libcanberra')
-source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
-vimrc
-archlinux.vim
-vimdoc.hook)
-sha256sums=('0b4998199b616e055b4f785b166c97b5c30323d398071c796f9c7199a314af45'
-'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
-'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
-'8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('7ef4b3504f0b6b31be6f50cfc5ffa54576c38a3ba4a95a94646bde1bab18b45db6cf35ab6765cf424befdfa8e5c4384c5a0317832bc4aead0d2f3d5a723d2d8d'
-
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
-
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
-
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')
-
-prepare() {
-  (cd vim-${pkgver}/src
-# define the place for the global (g)vimrc file (set to /etc/vimrc)
-sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h
-sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
-autoconf
-  )
-  cp -a vim-${pkgver} gvim-${pkgver}
-}
-
-build() {
-  echo "Building vim..."
-  (cd vim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=no \
-  --disable-gui \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic \
-  --disable-canberra
-make
-  )
-
-  echo "Building gvim..."
-  (cd gvim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=yes \
-  --enable-gui=gtk3 \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic \
-  --enable-canberra
-make
-  )
-}
-
-check() {
-  cd vim-${pkgver}
-  TERM=xterm make -j1 test
-}
-
-package_vim-runtime() {
-  pkgdesc+=' (shared runtime)'
-  optdepends=('sh: support for some tools and macros'
-  'python: demoserver example tool'
-  'gawk: mve tools upport')
-  backup=('etc/vimrc')
-
-  cd vim-${pkgver}
-
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-  # man and bin files belong to 'vim'
-  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
-
-  # Don't forget logtalk.dict
-  install -Dm 644 runtime/ftplugin/logtalk.dict \
-"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
-
-  # rc files
-  

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

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:10:31
  Author: anthraxx
Revision: 415594

upgpkg: vim 8.2.2859-1

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 19:10:22 UTC (rev 415593)
+++ PKGBUILD2021-05-16 19:10:31 UTC (rev 415594)
@@ -9,7 +9,7 @@
 
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.2.2845
+pkgver=8.2.2859
 _versiondir=82
 pkgrel=1
 pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
@@ -22,11 +22,11 @@
 vimrc
 archlinux.vim
 vimdoc.hook)
-sha256sums=('0b4998199b616e055b4f785b166c97b5c30323d398071c796f9c7199a314af45'
+sha256sums=('65d03672ee6f6d44ec6fadbdf04c9b76a943bdfeee51e74fb68563f591edcf54'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
 '8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('7ef4b3504f0b6b31be6f50cfc5ffa54576c38a3ba4a95a94646bde1bab18b45db6cf35ab6765cf424befdfa8e5c4384c5a0317832bc4aead0d2f3d5a723d2d8d'
+sha512sums=('5b89235d0d4a0ef7bb5a6f583746dd2b4faa0ab68363c0ff6e9e5d9f260551577928b2e3e639a2ac8a4f3450cb2160e8159f34ea55028f0b24a8d4c1da9d83dd'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
 
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')


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

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:10:22
  Author: anthraxx
Revision: 415593

archrelease: copy trunk to extra-x86_64

Added:
  dav1d/repos/extra-x86_64/PKGBUILD
(from rev 415592, dav1d/trunk/PKGBUILD)
Deleted:
  dav1d/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:10:19 UTC (rev 415592)
+++ PKGBUILD2021-05-16 19:10:22 UTC (rev 415593)
@@ -1,58 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=dav1d
-pkgname=(dav1d dav1d-doc)
-pkgver=0.8.2
-pkgrel=1
-pkgdesc='AV1 cross-platform decoder focused on speed and correctness'
-url='https://code.videolan.org/videolan/dav1d/'
-arch=('x86_64')
-license=('BSD')
-makedepends=('meson' 'ninja' 'nasm' 'doxygen' 'graphviz' 'xxhash')
-source=(https://downloads.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc}
-
https://code.videolan.org/videolan/dav1d-test-data/-/archive/${pkgver}/dav1d-test-data-${pkgver}.tar.gz)
-sha512sums=('c2d69adcc1f26c8700592e08306828aeaa3bf035e90a09bce4f2a494678645f37d4d0c5fc201eb4c369099f8f27e1325ca3421264aa1c2ffdad94868cc0504af'
-'SKIP'
-
'36400a954c312b03e66b14c2b133d17bd3fe1c63013c37f04b75c4f35c55d6d7244029fc4f11d81e832f154d3946cc50145023b7750e2b2a9586d6a6a577c572')
-b2sums=('4c08122506bda64a1a9abd237d2aa5cf1d1e3a84bea34ae96589bb577eebf74432bcfb219da69f79c8656539193299feb19f4e54b9f537a06a10449e3117fa83'
-'SKIP'
-
'3e53c9c0d2c62910ab252c6a30229833b40c2fd6c77d3d965dd015bb0467d8e6c129423e4228c5a5ae8b9bdeeab9a196786178209011a4bffa2d6890393509ff')
-validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release 
Signing Key
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  ln -s "${srcdir}/dav1d-test-data-${pkgver}" tests/dav1d-test-data
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  arch-meson -Dtestdata_tests=true build
-  ninja -C build all doc/html
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}/build
-  meson test
-}
-
-package_dav1d() {
-  depends=('glibc')
-  provides=('libdav1d.so')
-  optdepends=('dav1d-doc: HTML documentation')
-
-  cd ${pkgbase}-${pkgver}
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm 644 README.md CONTRIBUTING.md NEWS -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_dav1d-doc() {
-  pkgdesc+=" (documentation)"
-
-  cd ${pkgbase}-${pkgver}
-  install -d "${pkgdir}/usr/share/doc/${pkgbase}"
-  cp -r build/doc/html -t "${pkgdir}/usr/share/doc/${pkgbase}"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: dav1d/repos/extra-x86_64/PKGBUILD (from rev 415592, 
dav1d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:10:22 UTC (rev 415593)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=dav1d
+pkgname=(dav1d dav1d-doc)
+pkgver=0.9.0
+pkgrel=1
+pkgdesc='AV1 cross-platform decoder focused on speed and correctness'
+url='https://code.videolan.org/videolan/dav1d/'
+arch=('x86_64')
+license=('BSD')
+makedepends=('meson' 'ninja' 'nasm' 'doxygen' 'graphviz' 'xxhash')
+source=(https://downloads.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc}
+
https://code.videolan.org/videolan/dav1d-test-data/-/archive/${pkgver}/dav1d-test-data-${pkgver}.tar.gz)
+sha512sums=('46ead83042ab951eb4c79c458e060875174739a8a0efd8d34fdcb6ad3c094093f629d16f467c1dbd37a125bba31d0a7b051933540e38c675eade25fefc80ed75'
+'SKIP'
+
'38a7542c2cf742b5aa97b6c785f3376c8b78b00659ab87ba5a030d4d659bd66dd39813f23a0606fc1a736b8878b60ca85daa804d254f1bd73018fb7afa57873d')
+b2sums=('261331fb339c4f5e1f854310dd5ee5f0d9d7730385c5eaa5c097a26daa2d92b4283ade127dffbec776da2737f1269797cfdda516d3531e8ac1c0947c431e6e68'
+'SKIP'
+
'ef029fa912e6cee0a3931b0ff4427c860b09be4683fc8a098a2dcf0dd09db7b3e8c822e19b02b66e20fb4c8494b3650019b44276eb1aadc8134da26b910dc570')
+validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release 
Signing Key
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  ln -s "${srcdir}/dav1d-test-data-${pkgver}" tests/dav1d-test-data
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  arch-meson -Dtestdata_tests=true build
+  ninja -C build all doc/html
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}/build
+  meson test
+}
+
+package_dav1d() {
+  depends=('glibc')
+  provides=('libdav1d.so')
+  optdepends=('dav1d-doc: HTML documentation')
+
+  cd ${pkgbase}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 README.md CONTRIBUTING.md NEWS -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_dav1d-doc() {
+  

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

2021-05-16 Thread Levente Polyak via arch-commits
Date: Sunday, May 16, 2021 @ 19:10:19
  Author: anthraxx
Revision: 415592

upgpkg: dav1d 0.9.0-1

Modified:
  dav1d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 10:43:58 UTC (rev 415591)
+++ PKGBUILD2021-05-16 19:10:19 UTC (rev 415592)
@@ -2,7 +2,7 @@
 
 pkgbase=dav1d
 pkgname=(dav1d dav1d-doc)
-pkgver=0.8.2
+pkgver=0.9.0
 pkgrel=1
 pkgdesc='AV1 cross-platform decoder focused on speed and correctness'
 url='https://code.videolan.org/videolan/dav1d/'
@@ -11,12 +11,12 @@
 makedepends=('meson' 'ninja' 'nasm' 'doxygen' 'graphviz' 'xxhash')
 
source=(https://downloads.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc}
 
https://code.videolan.org/videolan/dav1d-test-data/-/archive/${pkgver}/dav1d-test-data-${pkgver}.tar.gz)
-sha512sums=('c2d69adcc1f26c8700592e08306828aeaa3bf035e90a09bce4f2a494678645f37d4d0c5fc201eb4c369099f8f27e1325ca3421264aa1c2ffdad94868cc0504af'
+sha512sums=('46ead83042ab951eb4c79c458e060875174739a8a0efd8d34fdcb6ad3c094093f629d16f467c1dbd37a125bba31d0a7b051933540e38c675eade25fefc80ed75'
 'SKIP'
-
'36400a954c312b03e66b14c2b133d17bd3fe1c63013c37f04b75c4f35c55d6d7244029fc4f11d81e832f154d3946cc50145023b7750e2b2a9586d6a6a577c572')
-b2sums=('4c08122506bda64a1a9abd237d2aa5cf1d1e3a84bea34ae96589bb577eebf74432bcfb219da69f79c8656539193299feb19f4e54b9f537a06a10449e3117fa83'
+
'38a7542c2cf742b5aa97b6c785f3376c8b78b00659ab87ba5a030d4d659bd66dd39813f23a0606fc1a736b8878b60ca85daa804d254f1bd73018fb7afa57873d')
+b2sums=('261331fb339c4f5e1f854310dd5ee5f0d9d7730385c5eaa5c097a26daa2d92b4283ade127dffbec776da2737f1269797cfdda516d3531e8ac1c0947c431e6e68'
 'SKIP'
-
'3e53c9c0d2c62910ab252c6a30229833b40c2fd6c77d3d965dd015bb0467d8e6c129423e4228c5a5ae8b9bdeeab9a196786178209011a4bffa2d6890393509ff')
+
'ef029fa912e6cee0a3931b0ff4427c860b09be4683fc8a098a2dcf0dd09db7b3e8c822e19b02b66e20fb4c8494b3650019b44276eb1aadc8134da26b910dc570')
 validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release 
Signing Key
 
 prepare() {


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

2021-05-16 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, May 16, 2021 @ 19:08:47
  Author: orhun
Revision: 935937

archrelease: copy trunk to community-x86_64

Added:
  arch-repro-status/repos/community-x86_64/PKGBUILD
(from rev 935936, arch-repro-status/trunk/PKGBUILD)
Deleted:
  arch-repro-status/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 19:08:37 UTC (rev 935936)
+++ PKGBUILD2021-05-16 19:08:47 UTC (rev 935937)
@@ -1,31 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=arch-repro-status
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Check the reproducibility status of your Arch Linux packages"
-arch=('x86_64')
-url="https://gitlab.archlinux.org/archlinux/arch-repro-status;
-license=('MIT')
-depends=('pacman')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha512sums=('96edc92abf6e08d46df5e8c046ec487ef86df1e97af5043bc124896d3cf4a01d5a96cf79db293aadaaed99fa55c42bb9b42df1cb1614a2b6f6d63e3f26379d16')
-
-build() {
-  cd "$pkgname-v$pkgver"
-  cargo build --release --locked
-}
-
-check() {
-  cd "$pkgname-v$pkgver"
-  cargo test --release --locked
-}
-
-package() {
-  cd "$pkgname-v$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"
-  install -Dm 644 "man/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
-}

Copied: arch-repro-status/repos/community-x86_64/PKGBUILD (from rev 935936, 
arch-repro-status/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 19:08:47 UTC (rev 935937)
@@ -0,0 +1,31 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=arch-repro-status
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Check the reproducibility status of your Arch Linux packages"
+arch=('x86_64')
+url="https://gitlab.archlinux.org/archlinux/arch-repro-status;
+license=('MIT')
+depends=('pacman')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha512sums=('cf1e02e97fcc013a342e7fe1f1f9ac70a975ac58d37d34557c70a8df76e7d2b26c306c7b2b60de662bca7298e126901ad3ba9657b168f5ca53a87d1fe2c560fe')
+
+build() {
+  cd "$pkgname-v$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "$pkgname-v$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$pkgname-v$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"
+  install -Dm 644 "man/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
+}


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

2021-05-16 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, May 16, 2021 @ 19:08:37
  Author: orhun
Revision: 935936

upgpkg: arch-repro-status 1.1.0-1: upstream release

Modified:
  arch-repro-status/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:53:40 UTC (rev 935935)
+++ PKGBUILD2021-05-16 19:08:37 UTC (rev 935936)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=arch-repro-status
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="Check the reproducibility status of your Arch Linux packages"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('pacman')
 makedepends=('rust')
 
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha512sums=('96edc92abf6e08d46df5e8c046ec487ef86df1e97af5043bc124896d3cf4a01d5a96cf79db293aadaaed99fa55c42bb9b42df1cb1614a2b6f6d63e3f26379d16')
+sha512sums=('cf1e02e97fcc013a342e7fe1f1f9ac70a975ac58d37d34557c70a8df76e7d2b26c306c7b2b60de662bca7298e126901ad3ba9657b168f5ca53a87d1fe2c560fe')
 
 build() {
   cd "$pkgname-v$pkgver"


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Sunday, May 16, 2021 @ 18:53:40
  Author: felixonmars
Revision: 935935

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 18:53:28 UTC (rev 935934)
+++ PKGBUILD2021-05-16 18:53:40 UTC (rev 935935)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-django
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="A Django plugin for py.test"
-arch=('any')
-license=('BSD')
-url="https://github.com/pytest-dev/pytest-django;
-depends=('python-pytest')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-django' 'python-pytest-xdist')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/v$pkgver.tar.gz;)
-sha512sums=('2dcaa80f3ebb67984d3849cea5de296388990ca65a607f995b89bd67e2d8964f944100bccb42a32bb75c7009849619e50421c2dce077037ce0440233dbdc13f1')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD" \
-  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
-py.test tests
-}
-
-package() {
-  cd pytest-django-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pytest-django/repos/community-any/PKGBUILD (from rev 935934, 
python-pytest-django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 18:53:40 UTC (rev 935935)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-django
+pkgver=4.3.0
+pkgrel=1
+pkgdesc="A Django plugin for py.test"
+arch=('any')
+license=('BSD')
+url="https://github.com/pytest-dev/pytest-django;
+depends=('python-pytest')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-django' 'python-pytest-xdist')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/v$pkgver.tar.gz;)
+sha512sums=('3c3ac31ed75daa29ab473ef3b87b5c66333cf7ccd8d217eb120b7899f463aafe5982b1e867e26e3b9ab51f312612fbc3d9f1ed9169815507816267fd4de76757')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd "$srcdir"/pytest-django-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-django-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD" \
+  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
+py.test tests
+}
+
+package() {
+  cd pytest-django-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Sunday, May 16, 2021 @ 18:53:28
  Author: felixonmars
Revision: 935934

upgpkg: python-pytest-django 4.3.0-1

Modified:
  python-pytest-django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:52:48 UTC (rev 935933)
+++ PKGBUILD2021-05-16 18:53:28 UTC (rev 935934)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pytest-django
-pkgver=4.2.0
+pkgver=4.3.0
 pkgrel=1
 pkgdesc="A Django plugin for py.test"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools-scm')
 checkdepends=('python-django' 'python-pytest-xdist')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/v$pkgver.tar.gz;)
-sha512sums=('2dcaa80f3ebb67984d3849cea5de296388990ca65a607f995b89bd67e2d8964f944100bccb42a32bb75c7009849619e50421c2dce077037ce0440233dbdc13f1')
+sha512sums=('3c3ac31ed75daa29ab473ef3b87b5c66333cf7ccd8d217eb120b7899f463aafe5982b1e867e26e3b9ab51f312612fbc3d9f1ed9169815507816267fd4de76757')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Sunday, May 16, 2021 @ 18:52:48
  Author: felixonmars
Revision: 935933

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 18:52:37 UTC (rev 935932)
+++ PKGBUILD2021-05-16 18:52:48 UTC (rev 935933)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: gmes78 
-
-pkgname=python-qasync
-pkgver=0.15.0
-pkgrel=1
-pkgdesc="Python library for using asyncio in Qt-based applications"
-arch=(any)
-url="https://github.com/CabbageDevelopment/qasync;
-license=('BSD')
-depends=('python' 'qt5-python-bindings')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pyqt5' 'pyside2' 'xorg-server-xvfb')
-source=("https://github.com/CabbageDevelopment/qasync/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('ac70a01644789f00fcc33c36ce7718db332af88ba6d2077220436dc4307b477ffeb85eaa96c72e713ddb41eadd0f0cf7ce051be1905f254b6267cea111cafa70')
-
-build() {
-  cd qasync-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd qasync-$pkgver
-  QT_API=PyQt5 xvfb-run python -m pytest
-  QT_API=PySide2 xvfb-run python -m pytest
-}
-
-package() {
-  cd qasync-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: python-qasync/repos/community-any/PKGBUILD (from rev 935932, 
python-qasync/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 18:52:48 UTC (rev 935933)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: gmes78 
+
+pkgname=python-qasync
+pkgver=0.16.0
+pkgrel=1
+pkgdesc="Python library for using asyncio in Qt-based applications"
+arch=(any)
+url="https://github.com/CabbageDevelopment/qasync;
+license=('BSD')
+depends=('python' 'qt5-python-bindings')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pyqt5' 'pyside2' 'xorg-server-xvfb')
+source=("https://github.com/CabbageDevelopment/qasync/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('f73035cd4f5d52fdaaba0f974840630900b7382bf53282dfe772ab8bb1b07e9af38722fe4c51cdf4f185e67b7a3d796998cb027382d833642ff48b523315d1bd')
+
+build() {
+  cd qasync-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd qasync-$pkgver
+  QT_API=PyQt5 xvfb-run python -m pytest
+  QT_API=PySide2 xvfb-run python -m pytest
+}
+
+package() {
+  cd qasync-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2021-05-16 Thread Felix Yan via arch-commits
Date: Sunday, May 16, 2021 @ 18:52:37
  Author: felixonmars
Revision: 935932

upgpkg: python-qasync 0.16.0-1

Modified:
  python-qasync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:47:10 UTC (rev 935931)
+++ PKGBUILD2021-05-16 18:52:37 UTC (rev 935932)
@@ -2,7 +2,7 @@
 # Contributor: gmes78 
 
 pkgname=python-qasync
-pkgver=0.15.0
+pkgver=0.16.0
 pkgrel=1
 pkgdesc="Python library for using asyncio in Qt-based applications"
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pyqt5' 'pyside2' 'xorg-server-xvfb')
 
source=("https://github.com/CabbageDevelopment/qasync/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('ac70a01644789f00fcc33c36ce7718db332af88ba6d2077220436dc4307b477ffeb85eaa96c72e713ddb41eadd0f0cf7ce051be1905f254b6267cea111cafa70')
+sha512sums=('f73035cd4f5d52fdaaba0f974840630900b7382bf53282dfe772ab8bb1b07e9af38722fe4c51cdf4f185e67b7a3d796998cb027382d833642ff48b523315d1bd')
 
 build() {
   cd qasync-$pkgver


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

2021-05-16 Thread Ike Devolder via arch-commits
Date: Sunday, May 16, 2021 @ 18:47:10
  Author: idevolder
Revision: 935931

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  164 ++--
 default   |8 
 eula.html | 1754 -
 opera |   26 
 opera.install |   78 +-
 privacy.html  | 1672 +++
 terms.html| 1986 
 7 files changed, 2844 insertions(+), 2844 deletions(-)

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


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

2021-05-16 Thread Ike Devolder via arch-commits
Date: Sunday, May 16, 2021 @ 18:47:00
  Author: idevolder
Revision: 935930

upgpkg: opera 76.0.4017.123-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:37:30 UTC (rev 935929)
+++ PKGBUILD2021-05-16 18:47:00 UTC (rev 935930)
@@ -9,7 +9,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=76.0.4017.107
+pkgver=76.0.4017.123
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="https://www.opera.com/;
@@ -30,7 +30,7 @@
 'terms.html'
 'privacy.html'
 )
-sha512sums=('6f85067e3a1425222ad88a9f20422610eaad458c59de63e7de2c55c95a334493dc512ec5dcb9f088652fd9212af90165bdd6c12c504a62c1c067e90e2c995e54'
+sha512sums=('4d9bf598645da8bee22d8f1d04e849cd3bb8985819dc464e2d2d02245d29a8d5a3a7023e5656168746bb5f4c51bbb5170c4dba83f69168dd19807be1f6fdf6c7'
 
'7e854e4c972785b8941f60117fbe4b88baeb8d7ca845ef2e10e8064043411da73821ba1ab0068df61e902f242a3ce355b51ffa9eab5397ff3ae3b5defd1be496'
 
'ddb1773877fcfd7d9674e63263a80f9dd5a3ba414cda4cc6c411c88d49c1d5175eede66d9362558ddd53c928c723101e4e110479ae88b8aec4d2366ec179297f'
 
'56e0877b7827636871a3c3f0c582603049bcfe192938453a91737b15d2d7f61a3e811f76fe223851a953f64e602503ca860287dc4825b07bb2438acca39f2ffe'


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

2021-05-16 Thread Maxim Baz via arch-commits
Date: Sunday, May 16, 2021 @ 18:37:30
  Author: maximbaz
Revision: 935929

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 935928, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 18:37:25 UTC (rev 935928)
+++ PKGBUILD2021-05-16 18:37:30 UTC (rev 935929)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=9.1.3
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('45272cbb7e8564e8b10b3e9d73ba3d3e8eed29441f2ffa39502e7c822d991188')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 935928, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 18:37:30 UTC (rev 935929)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.1.4
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('a65f5004106858a74ec3834e232cff9a16728582700afff58c244c806438cc88')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2021-05-16 Thread Maxim Baz via arch-commits
Date: Sunday, May 16, 2021 @ 18:37:25
  Author: maximbaz
Revision: 935928

upgpkg: croc 9.1.4-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:12:03 UTC (rev 935927)
+++ PKGBUILD2021-05-16 18:37:25 UTC (rev 935928)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=9.1.3
+pkgver=9.1.4
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('45272cbb7e8564e8b10b3e9d73ba3d3e8eed29441f2ffa39502e7c822d991188')
+sha256sums=('a65f5004106858a74ec3834e232cff9a16728582700afff58c244c806438cc88')
 
 build() {
 cd "${pkgname}-${pkgver}"


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

2021-05-16 Thread Balló György via arch-commits
Date: Sunday, May 16, 2021 @ 18:12:03
  Author: bgyorgy
Revision: 935927

Add qt5-svg to dependencies

The application won't run without it.

Modified:
  feeluown/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 18:07:33 UTC (rev 935926)
+++ PKGBUILD2021-05-16 18:12:03 UTC (rev 935927)
@@ -9,7 +9,7 @@
 url="https://github.com/feeluown/FeelUOwn;
 license=('GPL3')
 depends=('python-qasync' 'python-pyqt5' 'mpv' 'python-opengl' 'python-janus' 
'python-requests'
- 'python-tomlkit' 'python-pydantic')
+ 'python-tomlkit' 'python-pydantic' 'qt5-svg')
 makedepends=('python-setuptools' 'python-pip')
 optdepends=('feeluown-local' 'feeluown-netease' 'feeluown-kuwo' 
'feeluown-qqmusic')
 groups=('feeluown-full')


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

2021-05-16 Thread Balló György via arch-commits
Date: Sunday, May 16, 2021 @ 18:07:33
  Author: bgyorgy
Revision: 935926

Add qt5-svg to dependencies

Needed for the icons to display.

Modified:
  qliveplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:52:06 UTC (rev 935925)
+++ PKGBUILD2021-05-16 18:07:33 UTC (rev 935926)
@@ -9,7 +9,7 @@
 url="https://github.com/IsoaSFlus/QLivePlayer;
 license=('GPL2')
 depends=('ffmpeg' 'mpv' 'python-aiohttp' 'qt5-base' 'qt5-quickcontrols2' 
'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'python')
+ 'qt5-quickcontrols' 'python' 'qt5-svg')
 makedepends=('extra-cmake-modules' 'ninja')
 optdepends=('python-protobuf: for YouTube LiveChat support'
 'streamlink: for foreign streaming service support')


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:52:06
  Author: ffy00
Revision: 935925

archrelease: copy trunk to community-any

Added:
  repo/repos/community-any/PKGBUILD
(from rev 935924, repo/trunk/PKGBUILD)
Deleted:
  repo/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:52:02 UTC (rev 935924)
+++ PKGBUILD2021-05-16 16:52:06 UTC (rev 935925)
@@ -1,24 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=repo
-pkgver=2.12.2
-pkgrel=1
-
-pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
-url="https://android.googlesource.com/tools/repo;
-arch=('any')
-license=("APACHE")
-
-depends=("git" "python")
-
-validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65'
-  '16530D5E920F5C65') # Repo Maintainer 
-source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed;)
-
-sha256sums=('SKIP')
-
-package() {
-  cd repo
-  install -D -m 755 repo "$pkgdir/usr/bin/repo"
-  install -D -m 644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
-}

Copied: repo/repos/community-any/PKGBUILD (from rev 935924, repo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:52:06 UTC (rev 935925)
@@ -0,0 +1,24 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=repo
+pkgver=2.15
+pkgrel=1
+
+pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
+url="https://android.googlesource.com/tools/repo;
+arch=('any')
+license=("APACHE")
+
+depends=("git" "python")
+
+validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65'
+  '16530D5E920F5C65') # Repo Maintainer 
+source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed;)
+
+sha256sums=('SKIP')
+
+package() {
+  cd repo
+  install -D -m 755 repo "$pkgdir/usr/bin/repo"
+  install -D -m 644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:52:02
  Author: ffy00
Revision: 935924

upgpkg: repo 2.15-1

Modified:
  repo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:50:43 UTC (rev 935923)
+++ PKGBUILD2021-05-16 16:52:02 UTC (rev 935924)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=repo
-pkgver=2.12.2
+pkgver=2.15
 pkgrel=1
 
 pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:50:43
  Author: ffy00
Revision: 935923

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:50:35 UTC (rev 935922)
+++ PKGBUILD2021-05-16 16:50:43 UTC (rev 935923)
@@ -1,38 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=userpath
-pkgname=python-$_pkgname
-pkgver=1.4.2
-pkgrel=1
-pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
-arch=('any')
-url='https://github.com/ofek/userpath'
-license=('MIT' 'Apache')
-depends=('python' 'python-click' 'python-distro')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('09e6e75244d4364e8a1325f30414b0d5076c1d07a3c369e8164c0e46c753437f9122d00eb14faaed98292881cd78141bab7302fd35831aac4485027df7a18951')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE-MIT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
-  install -Dm 644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE-APACHE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-userpath/repos/community-any/PKGBUILD (from rev 935922, 
python-userpath/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:50:43 UTC (rev 935923)
@@ -0,0 +1,38 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=userpath
+pkgname=python-$_pkgname
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
+arch=('any')
+url='https://github.com/ofek/userpath'
+license=('MIT' 'Apache')
+depends=('python' 'python-click' 'python-distro')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('9d1cf71ef95f6eba7a14ae77dea5bc993868b5e3655cd993bd0bead1b69fd41fc84429fc31585021026c8a18377b74bc2a9a2d5654bbd57c05063cda21e43d2a')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python setup.py pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE-MIT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
+  install -Dm 644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE-APACHE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:50:35
  Author: ffy00
Revision: 935922

upgpkg: python-userpath 1.5.0-1

Modified:
  python-userpath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:49:18 UTC (rev 935921)
+++ PKGBUILD2021-05-16 16:50:35 UTC (rev 935922)
@@ -2,7 +2,7 @@
 
 _pkgname=userpath
 pkgname=python-$_pkgname
-pkgver=1.4.2
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('09e6e75244d4364e8a1325f30414b0d5076c1d07a3c369e8164c0e46c753437f9122d00eb14faaed98292881cd78141bab7302fd35831aac4485027df7a18951')
+sha512sums=('9d1cf71ef95f6eba7a14ae77dea5bc993868b5e3655cd993bd0bead1b69fd41fc84429fc31585021026c8a18377b74bc2a9a2d5654bbd57c05063cda21e43d2a')
 
 build() {
   cd $_pkgname-$pkgver


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:49:14
  Author: ffy00
Revision: 935920

upgpkg: python-solidpython 1.1.1-1

Modified:
  python-solidpython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:48:19 UTC (rev 935919)
+++ PKGBUILD2021-05-16 16:49:14 UTC (rev 935920)
@@ -2,8 +2,8 @@
 
 _pkgname=SolidPython
 pkgname=python-solidpython
-pkgver=1.0.1
-pkgrel=4
+pkgver=1.1.1
+pkgrel=1
 pkgdesc='Python frontend for solid modelling that compiles to OpenSCAD'
 arch=('any')
 url='https://github.com/SolidCode/SolidPython'
@@ -11,7 +11,7 @@
 depends=('python-euclid3' 'python-pypng' 'python-prettytable' 'python-regex')
 makedepends=('python-setuptools' 'python-dephell')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('4b2c9193be5389b12759f94fd9aa448dfa96b860fd182e6b17bb9106c83bdff1627a858eeaa46fcfd30b41c418f3986adc9d06cd5bbf2ecf18e31a44abce0816')
+sha512sums=('fa8b28e6d0adf9cdfa762a85adcd5f8dea3ea5a4136d51dc836b333dc701475b82802af226edbef785185a3e124d778d02f1fecee931475e96e88facbfb4e79e')
 
 prepare() {
   cd $_pkgname-$pkgver


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:49:18
  Author: ffy00
Revision: 935921

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:49:14 UTC (rev 935920)
+++ PKGBUILD2021-05-16 16:49:18 UTC (rev 935921)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=SolidPython
-pkgname=python-solidpython
-pkgver=1.0.1
-pkgrel=4
-pkgdesc='Python frontend for solid modelling that compiles to OpenSCAD'
-arch=('any')
-url='https://github.com/SolidCode/SolidPython'
-license=('LGPL')
-depends=('python-euclid3' 'python-pypng' 'python-prettytable' 'python-regex')
-makedepends=('python-setuptools' 'python-dephell')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('4b2c9193be5389b12759f94fd9aa448dfa96b860fd182e6b17bb9106c83bdff1627a858eeaa46fcfd30b41c418f3986adc9d06cd5bbf2ecf18e31a44abce0816')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  sed -i -e '/tox/d' -e 's|regex = "^2019.4"|regex = ">=2019.4"|' 
pyproject.toml
-
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=$(pwd) solid/test/run_all_tests.sh
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-solidpython/repos/community-any/PKGBUILD (from rev 935920, 
python-solidpython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:49:18 UTC (rev 935921)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=SolidPython
+pkgname=python-solidpython
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='Python frontend for solid modelling that compiles to OpenSCAD'
+arch=('any')
+url='https://github.com/SolidCode/SolidPython'
+license=('LGPL')
+depends=('python-euclid3' 'python-pypng' 'python-prettytable' 'python-regex')
+makedepends=('python-setuptools' 'python-dephell')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('fa8b28e6d0adf9cdfa762a85adcd5f8dea3ea5a4136d51dc836b333dc701475b82802af226edbef785185a3e124d778d02f1fecee931475e96e88facbfb4e79e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  sed -i -e '/tox/d' -e 's|regex = "^2019.4"|regex = ">=2019.4"|' 
pyproject.toml
+
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=$(pwd) solid/test/run_all_tests.sh
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:48:19
  Author: ffy00
Revision: 935919

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:48:15 UTC (rev 935918)
+++ PKGBUILD2021-05-16 16:48:19 UTC (rev 935919)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pygithub
-pkgver=1.54.1
-pkgrel=1
-pkgdesc="Use the full Github API v3"
-arch=('any')
-license=('LGPL')
-url="https://github.com/PyGithub/PyGithub;
-depends=('python-deprecated' 'python-pyjwt' 'python-requests')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-cryptography' 'python-httpretty' 
'python-parameterized')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/PyGithub/PyGithub/archive/v$pkgver.tar.gz;)
-sha512sums=('72aecef168c8741b773560bee31b0b6159abeea97cc9f659363ff9204eed610686fdaf6461dab0c643adf00140a53aa86d70b9011b39522650aa872f02e5e67e')
-
-build() {
-  cd PyGithub-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd PyGithub-$pkgver
-  python -m pytest
-}
-
-package() {
-  cd PyGithub-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pygithub/repos/community-any/PKGBUILD (from rev 935918, 
python-pygithub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:48:19 UTC (rev 935919)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pygithub
+pkgver=1.55
+pkgrel=1
+pkgdesc="Use the full Github API v3"
+arch=('any')
+license=('LGPL')
+url="https://github.com/PyGithub/PyGithub;
+depends=('python-deprecated' 'python-pyjwt' 'python-requests' 'python-pynacl')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-cryptography' 'python-httpretty' 
'python-parameterized')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PyGithub/PyGithub/archive/v$pkgver.tar.gz;)
+sha512sums=('7ea9e67428e98330f90f1d78e5a003dbe1a6d5cd98b6c729f2030a73d21b4a72a7957382c888fac0b7bae4a409cfb53473a19e7e73df46b251df0327871e173a')
+
+build() {
+  cd PyGithub-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd PyGithub-$pkgver
+  python -m pytest
+}
+
+package() {
+  cd PyGithub-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:48:15
  Author: ffy00
Revision: 935918

upgpkg: python-pygithub 1.55-1

Modified:
  python-pygithub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:46:54 UTC (rev 935917)
+++ PKGBUILD2021-05-16 16:48:15 UTC (rev 935918)
@@ -1,17 +1,17 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pygithub
-pkgver=1.54.1
+pkgver=1.55
 pkgrel=1
 pkgdesc="Use the full Github API v3"
 arch=('any')
 license=('LGPL')
 url="https://github.com/PyGithub/PyGithub;
-depends=('python-deprecated' 'python-pyjwt' 'python-requests')
+depends=('python-deprecated' 'python-pyjwt' 'python-requests' 'python-pynacl')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-cryptography' 'python-httpretty' 
'python-parameterized')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/PyGithub/PyGithub/archive/v$pkgver.tar.gz;)
-sha512sums=('72aecef168c8741b773560bee31b0b6159abeea97cc9f659363ff9204eed610686fdaf6461dab0c643adf00140a53aa86d70b9011b39522650aa872f02e5e67e')
+sha512sums=('7ea9e67428e98330f90f1d78e5a003dbe1a6d5cd98b6c729f2030a73d21b4a72a7957382c888fac0b7bae4a409cfb53473a19e7e73df46b251df0327871e173a')
 
 build() {
   cd PyGithub-$pkgver


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:46:54
  Author: bastelfreak
Revision: 935917

archrelease: copy trunk to community-any

Added:
  ruby-unf/repos/community-any/PKGBUILD
(from rev 935916, ruby-unf/trunk/PKGBUILD)
Deleted:
  ruby-unf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:46:45 UTC (rev 935916)
+++ PKGBUILD2021-05-16 16:46:54 UTC (rev 935917)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Mario Finelli 
-# Contributor: Tim Meusel 
-
-_gemname='unf'
-pkgname="ruby-${_gemname}"
-pkgver=0.2.0.beta2
-pkgrel=5
-pkgdesc='Wrapper library to bring Unicode Normalization Form support to 
Ruby/JRuby.'
-arch=('any')
-url='https://github.com/knu/ruby-unf'
-license=('BSD')
-makedepends=('ruby-rdoc' 'ruby-bundler')
-checkdepends=('ruby-rake')
-depends=('ruby')
-options=(!emptydirs)
-source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
-sha512sums=('5fddb66913db6c143e68fea623be7c01636dff0d7ba74fd08b59f4e53672b3345fe518053ded1efb9fc9f44fef4097b607dadda796309fc91baa59d096493b82')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # we build based on a tar ball, so `git` won't work here
-  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  gem build "${_gemname}.gemspec"
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  rake test
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  local _gemdir="$(gem env gemdir)"
-  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-unf/repos/community-any/PKGBUILD (from rev 935916, 
ruby-unf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:46:54 UTC (rev 935917)
@@ -0,0 +1,47 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Mario Finelli 
+
+_gemname='unf'
+pkgname="ruby-${_gemname}"
+pkgver=0.2.0.beta2
+pkgrel=6
+pkgdesc='Wrapper library to bring Unicode Normalization Form support to 
Ruby/JRuby.'
+arch=('any')
+url='https://github.com/knu/ruby-unf'
+license=('BSD')
+makedepends=('ruby-rdoc' 'ruby-bundler')
+checkdepends=('ruby-rake')
+depends=('ruby')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('5fddb66913db6c143e68fea623be7c01636dff0d7ba74fd08b59f4e53672b3345fe518053ded1efb9fc9f44fef4097b607dadda796309fc91baa59d096493b82')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # we build based on a tar ball, so `git` won't work here
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  rake test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:46:45
  Author: bastelfreak
Revision: 935916

cleanup PKGBUILD

Modified:
  ruby-unf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:44:38 UTC (rev 935915)
+++ PKGBUILD2021-05-16 16:46:45 UTC (rev 935916)
@@ -1,11 +1,11 @@
-# Maintainer: Christian Rebischke 
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
 # Contributor: Mario Finelli 
-# Contributor: Tim Meusel 
 
 _gemname='unf'
 pkgname="ruby-${_gemname}"
 pkgver=0.2.0.beta2
-pkgrel=5
+pkgrel=6
 pkgdesc='Wrapper library to bring Unicode Normalization Form support to 
Ruby/JRuby.'
 arch=('any')
 url='https://github.com/knu/ruby-unf'


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:44:38
  Author: ffy00
Revision: 935915

archrelease: copy trunk to community-x86_64

Added:
  prjtrellis-db/repos/community-x86_64/PKGBUILD
(from rev 935914, prjtrellis-db/trunk/PKGBUILD)
Deleted:
  prjtrellis-db/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:44:33 UTC (rev 935914)
+++ PKGBUILD2021-05-16 16:44:38 UTC (rev 935915)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_prj=trellis
-_targets=ECP5
-_commit=717478b757a702bbc7e3e11a5fbecee2a64f7922
-pkgname=prj$_prj-db
-pkgver=r115.717478b
-pkgrel=3
-pkgdesc='Project Trellis (Lattice ECP5 bit-stream format) database'
-arch=('x86_64')
-url="https://github.com/SymbiFlow/$pkgname;
-license=('custom:CC0')
-makedepends=('git')
-source=("git+$url.git#commit=$_commit")
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-
-  printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
-}
-
-package() {
-  cd $pkgname
-
-  install -dm 755 "$pkgdir"/usr/share/$_prj/database
-  cp -r --no-preserve=ownership devices.json $_targets 
"$pkgdir"/usr/share/$_prj/database/
-
-  install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-

Copied: prjtrellis-db/repos/community-x86_64/PKGBUILD (from rev 935914, 
prjtrellis-db/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:44:38 UTC (rev 935915)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_prj=trellis
+_targets=ECP5
+_commit=f7f8375101dfa7f7d5ccb654ff8fcae73356ce48
+pkgname=prj$_prj-db
+pkgver=r262.f7f8375
+pkgrel=1
+pkgdesc='Project Trellis (Lattice ECP5 bit-stream format) database'
+arch=('x86_64')
+url="https://github.com/YosysHQ/$pkgname;
+license=('custom:CC0')
+makedepends=('git')
+source=("git+$url.git#commit=$_commit")
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+
+  printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+package() {
+  cd $pkgname
+
+  install -dm 755 "$pkgdir"/usr/share/$_prj/database
+  cp -r --no-preserve=ownership devices.json $_targets 
"$pkgdir"/usr/share/$_prj/database/
+
+  install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:44:33
  Author: ffy00
Revision: 935914

upgpkg: prjtrellis-db r262.f7f8375-1

Modified:
  prjtrellis-db/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:38:46 UTC (rev 935913)
+++ PKGBUILD2021-05-16 16:44:33 UTC (rev 935914)
@@ -2,13 +2,13 @@
 
 _prj=trellis
 _targets=ECP5
-_commit=717478b757a702bbc7e3e11a5fbecee2a64f7922
+_commit=f7f8375101dfa7f7d5ccb654ff8fcae73356ce48
 pkgname=prj$_prj-db
-pkgver=r115.717478b
-pkgrel=3
+pkgver=r262.f7f8375
+pkgrel=1
 pkgdesc='Project Trellis (Lattice ECP5 bit-stream format) database'
 arch=('x86_64')
-url="https://github.com/SymbiFlow/$pkgname;
+url="https://github.com/YosysHQ/$pkgname;
 license=('custom:CC0')
 makedepends=('git')
 source=("git+$url.git#commit=$_commit")


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:38:46
  Author: ffy00
Revision: 935913

archrelease: copy trunk to community-x86_64

Added:
  entr/repos/community-x86_64/PKGBUILD
(from rev 935912, entr/trunk/PKGBUILD)
Deleted:
  entr/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:38:43 UTC (rev 935912)
+++ PKGBUILD2021-05-16 16:38:46 UTC (rev 935913)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=entr
-pkgver=4.8
-pkgrel=1
-pkgdesc='Run arbitrary commands when files change'
-arch=('x86_64')
-url='http://eradman.com/entrproject'
-license=('MIT')
-validpgpkeys=('519151D83E83D40A232B4D615C418B8631BC7C26' '5C418B8631BC7C26') # 
Eric Radman 
-source=("$url/code/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('fc99a257fe9a30a9b08f0b6283f9ee3b65c38362744842dd976a4ac7749df7f6ff630235443af17f664f9cbf2a197dbb8c1114fe491e675921745294b4fa4d8f'
-'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  export PREFIX='/usr'
-
-  ./configure
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  make test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: entr/repos/community-x86_64/PKGBUILD (from rev 935912, 
entr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:38:46 UTC (rev 935913)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=entr
+pkgver=4.9
+pkgrel=1
+pkgdesc='Run arbitrary commands when files change'
+arch=('x86_64')
+url='http://eradman.com/entrproject'
+license=('MIT')
+validpgpkeys=('519151D83E83D40A232B4D615C418B8631BC7C26' '5C418B8631BC7C26') # 
Eric Radman 
+source=("$url/code/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('b05595be5ae1c6fbd39ea886331b9b77563460d03eae8889c7ad0cc156a44c6f50477dc3448eefe715e124a79ab08b9baf7c53a9059dcf137e5782bf7b499751'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  export PREFIX='/usr'
+
+  ./configure
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:38:43
  Author: ffy00
Revision: 935912

upgpkg: entr 4.9-1

Modified:
  entr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:38:19 UTC (rev 935911)
+++ PKGBUILD2021-05-16 16:38:43 UTC (rev 935912)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=entr
-pkgver=4.8
+pkgver=4.9
 pkgrel=1
 pkgdesc='Run arbitrary commands when files change'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=('MIT')
 validpgpkeys=('519151D83E83D40A232B4D615C418B8631BC7C26' '5C418B8631BC7C26') # 
Eric Radman 
 source=("$url/code/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('fc99a257fe9a30a9b08f0b6283f9ee3b65c38362744842dd976a4ac7749df7f6ff630235443af17f664f9cbf2a197dbb8c1114fe491e675921745294b4fa4d8f'
+sha512sums=('b05595be5ae1c6fbd39ea886331b9b77563460d03eae8889c7ad0cc156a44c6f50477dc3448eefe715e124a79ab08b9baf7c53a9059dcf137e5782bf7b499751'
 'SKIP')
 
 build() {


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:38:19
  Author: bastelfreak
Revision: 935911

archrelease: copy trunk to community-any

Added:
  ruby-domain_name/repos/community-any/PKGBUILD
(from rev 935910, ruby-domain_name/trunk/PKGBUILD)
Deleted:
  ruby-domain_name/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:37:58 UTC (rev 935910)
+++ PKGBUILD2021-05-16 16:38:19 UTC (rev 935911)
@@ -1,50 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Mario Finelli 
-# Contributor: Tim Meusel 
-
-_gemname='domain_name'
-pkgname="ruby-${_gemname}"
-pkgver=0.5.20190701
-pkgrel=3
-pkgdesc='Domain Name manipulation library for Ruby'
-arch=('any')
-url='https://github.com/knu/ruby-domain_name'
-license=('BSD' 'MPL2')
-makedepends=('ruby-rdoc' 'ruby-bundler')
-checkdepends=('ruby-rake' 'ruby-minitest' 'ruby-test-unit')
-depends=('ruby' 'ruby-unf')
-options=(!emptydirs)
-source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
-sha512sums=('d2aaa3236177cd196fde6e48acfde4c9858c7c7acd25a5e7fbdf8f30e2f71ca144ba1036e3820e2a8870877d259c96b948650464171a69208cbc947d9fa663f3')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # allow latest dependencies
-  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
-
-  # we built with a tar ball, so `git` won't wwork
-  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  gem build "${_gemname}.gemspec"
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  rake test
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  local _gemdir="$(gem env gemdir)"
-  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-domain_name/repos/community-any/PKGBUILD (from rev 935910, 
ruby-domain_name/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:38:19 UTC (rev 935911)
@@ -0,0 +1,51 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Mario Finelli 
+# Contributor: Tim Meusel 
+
+_gemname='domain_name'
+pkgname="ruby-${_gemname}"
+pkgver=0.5.20190701
+pkgrel=4
+pkgdesc='Domain Name manipulation library for Ruby'
+arch=('any')
+url='https://github.com/knu/ruby-domain_name'
+license=('BSD' 'MPL2')
+makedepends=('ruby-rdoc' 'ruby-bundler')
+checkdepends=('ruby-rake' 'ruby-minitest' 'ruby-test-unit')
+depends=('ruby' 'ruby-unf')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('d2aaa3236177cd196fde6e48acfde4c9858c7c7acd25a5e7fbdf8f30e2f71ca144ba1036e3820e2a8870877d259c96b948650464171a69208cbc947d9fa663f3')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # allow latest dependencies
+  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
+
+  # we built with a tar ball, so `git` won't wwork
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  rake test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:37:58
  Author: bastelfreak
Revision: 935910

cleanup PKGBUILD

Modified:
  ruby-domain_name/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:37:45 UTC (rev 935909)
+++ PKGBUILD2021-05-16 16:37:58 UTC (rev 935910)
@@ -1,4 +1,5 @@
-# Maintainer: Christian Rebischke 
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
 # Contributor: Mario Finelli 
 # Contributor: Tim Meusel 
 
@@ -5,7 +6,7 @@
 _gemname='domain_name'
 pkgname="ruby-${_gemname}"
 pkgver=0.5.20190701
-pkgrel=3
+pkgrel=4
 pkgdesc='Domain Name manipulation library for Ruby'
 arch=('any')
 url='https://github.com/knu/ruby-domain_name'


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

2021-05-16 Thread Thore Bödecker via arch-commits
Date: Sunday, May 16, 2021 @ 16:37:45
  Author: foxxx0
Revision: 935909

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:37:41 UTC (rev 935908)
+++ PKGBUILD2021-05-16 16:37:45 UTC (rev 935909)
@@ -1,50 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Ian Beringer 
-
-pkgname=python-kubernetes
-_pkgbase="${pkgname#python-}"
-_kubernetes_base_commit=2da2b981ca806b25487ad92d01a2164815c18517
-pkgver=12.0.1
-pkgrel=2
-license=('Apache')
-pkgdesc='Python client for the kubernetes API'
-arch=('any')
-url='https://github.com/kubernetes-client/python'
-depends=('python' 'python-certifi' 'python-six' 'python-dateutil'
- 'python-urllib3' 'python-yaml' 'python-google-auth'
- 'python-websocket-client' 'python-requests' 'python-requests-oauthlib'
- 'python-adal')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pluggy' 'python-py' 'python-mock' 
'python-recommonmark' 'python-isort' 'python-nose')
-source=("${_pkgbase}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
-
"${_pkgbase}-base-${_kubernetes_base_commit}.tar.gz::https://github.com/kubernetes-client/python-base/archive/${_kubernetes_base_commit}.tar.gz;)
-sha256sums=('6d0770a25db9e4e6b4188cf7485c32bef3f0317f729cca19c9af0b6f7d275dc8'
-'ffc9f2384399c8b97ed7114f64d2efde88e385a2c31a92e083651f4fd1b9b860')
-
-prepare() {
-  cd "${srcdir}"
-
-  mv -v "python-${pkgver}" "${_pkgbase}-${pkgver}"
-  mv -v "python-base-${_kubernetes_base_commit}" 
"${_pkgbase}-base-${_kubernetes_base_commit}"
-
-  # their "base" has been split out to a git submodule, so include it via 
symlink
-  rm -vrf "${_pkgbase}-${pkgver}/kubernetes/base"
-  ln -vsf "${srcdir}/${_pkgbase}-base-${_kubernetes_base_commit}" 
"${_pkgbase}-${pkgver}/kubernetes/base"
-}
-
-build() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  export PYTHONPATH="${PWD}"
-  py.test -vvv -s --ignore=kubernetes/e2e_test
-}
-
-package() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-kubernetes/repos/community-any/PKGBUILD (from rev 935908, 
python-kubernetes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:37:45 UTC (rev 935909)
@@ -0,0 +1,50 @@
+# Maintainer: Thore Bödecker 
+# Contributor: Ian Beringer 
+
+pkgname=python-kubernetes
+_pkgbase="${pkgname#python-}"
+_kubernetes_base_commit=b4d3aad42dc23e7a6c0e5c032691f8dc385a786c
+pkgver=17.17.0
+pkgrel=1
+license=('Apache')
+pkgdesc='Python client for the kubernetes API'
+arch=('any')
+url='https://github.com/kubernetes-client/python'
+depends=('python' 'python-certifi' 'python-six' 'python-dateutil'
+ 'python-urllib3' 'python-yaml' 'python-google-auth'
+ 'python-websocket-client' 'python-requests' 'python-requests-oauthlib'
+ 'python-adal')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pluggy' 'python-py' 'python-mock' 
'python-recommonmark' 'python-isort' 'python-nose')
+source=("${_pkgbase}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
+
"${_pkgbase}-base-${_kubernetes_base_commit}.tar.gz::https://github.com/kubernetes-client/python-base/archive/${_kubernetes_base_commit}.tar.gz;)
+sha256sums=('9e9c5f6c897f5a70d2680bcadb6792e87d6521c717e347ea9c42db150325'
+'c76a4f51e662132da2d29cafafe6aeab1778d7e546dc7c918ec6f3e1d4943871')
+
+prepare() {
+  cd "${srcdir}"
+
+  mv -v "python-${pkgver}" "${_pkgbase}-${pkgver}"
+  mv -v "python-base-${_kubernetes_base_commit}" 
"${_pkgbase}-base-${_kubernetes_base_commit}"
+
+  # their "base" has been split out to a git submodule, so include it via 
symlink
+  rm -vrf "${_pkgbase}-${pkgver}/kubernetes/base"
+  ln -vsf "${srcdir}/${_pkgbase}-base-${_kubernetes_base_commit}" 
"${_pkgbase}-${pkgver}/kubernetes/base"
+}
+
+build() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  export PYTHONPATH="${PWD}"
+  py.test -vvv -s --ignore=kubernetes/e2e_test
+}
+
+package() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2021-05-16 Thread Thore Bödecker via arch-commits
Date: Sunday, May 16, 2021 @ 16:37:41
  Author: foxxx0
Revision: 935908

upgpkg: python-kubernetes 17.17.0-1: update to upstream release 17.17.0

Modified:
  python-kubernetes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:37:15 UTC (rev 935907)
+++ PKGBUILD2021-05-16 16:37:41 UTC (rev 935908)
@@ -3,9 +3,9 @@
 
 pkgname=python-kubernetes
 _pkgbase="${pkgname#python-}"
-_kubernetes_base_commit=2da2b981ca806b25487ad92d01a2164815c18517
-pkgver=12.0.1
-pkgrel=2
+_kubernetes_base_commit=b4d3aad42dc23e7a6c0e5c032691f8dc385a786c
+pkgver=17.17.0
+pkgrel=1
 license=('Apache')
 pkgdesc='Python client for the kubernetes API'
 arch=('any')
@@ -18,8 +18,8 @@
 checkdepends=('python-pytest' 'python-pluggy' 'python-py' 'python-mock' 
'python-recommonmark' 'python-isort' 'python-nose')
 source=("${_pkgbase}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
 
"${_pkgbase}-base-${_kubernetes_base_commit}.tar.gz::https://github.com/kubernetes-client/python-base/archive/${_kubernetes_base_commit}.tar.gz;)
-sha256sums=('6d0770a25db9e4e6b4188cf7485c32bef3f0317f729cca19c9af0b6f7d275dc8'
-'ffc9f2384399c8b97ed7114f64d2efde88e385a2c31a92e083651f4fd1b9b860')
+sha256sums=('9e9c5f6c897f5a70d2680bcadb6792e87d6521c717e347ea9c42db150325'
+'c76a4f51e662132da2d29cafafe6aeab1778d7e546dc7c918ec6f3e1d4943871')
 
 prepare() {
   cd "${srcdir}"


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:37:15
  Author: ffy00
Revision: 935907

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:37:11 UTC (rev 935906)
+++ PKGBUILD2021-05-16 16:37:15 UTC (rev 935907)
@@ -1,55 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=fastapi
-pkgname=python-$_pkgname
-pkgver=0.63.0
-pkgrel=1
-pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
-arch=('any')
-url='https://github.com/tiangolo/fastapi'
-license=('MIT')
-depends=('python-starlette' 'python-pydantic')
-optdepends=('python-requests' 'python-aiofiles' 'python-jinja' 
'python-itsdangerous'
-'python-yaml' 'python-graphene' 'python-ujson' 'python-orjson'
-'python-email-validator' 'python-python-multipart')
-makedepends=('python-setuptools' 'python-dephell')
-checkdepends=('python-pytest-runner' 'python-pytest-cov' 'mypy'
-  'python-requests' 'python-aiofiles' 'python-jinja' 
'python-itsdangerous'
-  'python-yaml' 'python-graphene' 'python-ujson' 'python-orjson'
-  'python-email-validator'  'python-pyjwt' 'python-sqlalchemy'
-  'python-peewee' 'python-flask' 'python-passlib'
-  'python-bcrypt' 'python-httpx' 'python-python-multipart'
-  'python-databases' 'python-aiosqlite' 'python-jose')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('9fa931f913daab19294f32cb2153c9355e93783cf5765beda6e5cdb15e3f2564867c100700ac33ba5daf9779b730952afc692f9460bd41a594e101d601b10210')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  dephell deps convert --from pyproject.toml --to setup.py
-
-  # don't pin starlette dependency
-  sed -i 's|starlette.*"|starlette"|' pyproject.toml
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-
-  mypy -p fastapi
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-fastapi/repos/community-any/PKGBUILD (from rev 935906, 
python-fastapi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:37:15 UTC (rev 935907)
@@ -0,0 +1,55 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=fastapi
+pkgname=python-$_pkgname
+pkgver=0.65.1
+pkgrel=1
+pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
+arch=('any')
+url='https://github.com/tiangolo/fastapi'
+license=('MIT')
+depends=('python-starlette' 'python-pydantic')
+optdepends=('python-requests' 'python-aiofiles' 'python-jinja' 
'python-itsdangerous'
+'python-yaml' 'python-graphene' 'python-ujson' 'python-orjson'
+'python-email-validator' 'python-python-multipart')
+makedepends=('python-setuptools' 'python-dephell')
+checkdepends=('python-pytest-runner' 'python-pytest-cov' 'mypy'
+  'python-requests' 'python-aiofiles' 'python-jinja' 
'python-itsdangerous'
+  'python-yaml' 'python-graphene' 'python-ujson' 'python-orjson'
+  'python-email-validator'  'python-pyjwt' 'python-sqlalchemy'
+  'python-peewee' 'python-flask' 'python-passlib'
+  'python-bcrypt' 'python-httpx' 'python-python-multipart'
+  'python-databases' 'python-aiosqlite' 'python-jose')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('8ddfaf4fd0daeb638d4e83dcc529be24e7f9fadcd01fb4446d93aabf86f380b1eed979589761a0b81776332bcebde4e8050bf555fd0f0ca391b5ee32a500462a')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  dephell deps convert --from pyproject.toml --to setup.py
+
+  # don't pin starlette dependency
+  sed -i 's|starlette.*"|starlette"|' pyproject.toml
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python setup.py pytest
+
+  mypy -p fastapi
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:37:11
  Author: ffy00
Revision: 935906

upgpkg: python-fastapi 0.65.1-1

Modified:
  python-fastapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:35:06 UTC (rev 935905)
+++ PKGBUILD2021-05-16 16:37:11 UTC (rev 935906)
@@ -2,7 +2,7 @@
 
 _pkgname=fastapi
 pkgname=python-$_pkgname
-pkgver=0.63.0
+pkgver=0.65.1
 pkgrel=1
 pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
 arch=('any')
@@ -21,7 +21,7 @@
   'python-bcrypt' 'python-httpx' 'python-python-multipart'
   'python-databases' 'python-aiosqlite' 'python-jose')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('9fa931f913daab19294f32cb2153c9355e93783cf5765beda6e5cdb15e3f2564867c100700ac33ba5daf9779b730952afc692f9460bd41a594e101d601b10210')
+sha512sums=('8ddfaf4fd0daeb638d4e83dcc529be24e7f9fadcd01fb4446d93aabf86f380b1eed979589761a0b81776332bcebde4e8050bf555fd0f0ca391b5ee32a500462a')
 
 prepare() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in ruby-http-cookie/repos/community-any (PKGBUILD PKGBUILD)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:35:06
  Author: bastelfreak
Revision: 935905

archrelease: copy trunk to community-any

Added:
  ruby-http-cookie/repos/community-any/PKGBUILD
(from rev 935904, ruby-http-cookie/trunk/PKGBUILD)
Deleted:
  ruby-http-cookie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:34:59 UTC (rev 935904)
+++ PKGBUILD2021-05-16 16:35:06 UTC (rev 935905)
@@ -1,56 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Sigmund Vestergaard 
-# Contributor: Tim Meusel 
-
-_gemname='http-cookie'
-pkgname="ruby-${_gemname}"
-pkgver=1.0.3
-pkgrel=6
-pkgdesc='Ruby library to handle HTTP Cookies based on RFC 6265'
-arch=('any')
-url='https://github.com/sparklemotion/http-cookie'
-license=('MIT')
-makedepends=('ruby-rdoc' 'ruby-bundler')
-checkdepends=('ruby-rake' 'ruby-test-unit')
-depends=('ruby' 'ruby-domain_name')
-options=(!emptydirs)
-source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
-sha512sums=('a06ab81253b527d115570568b3b4db9dfb32d19bae274f96d6e2a719a99ee66f4f6abc03359043b8ced78458264433902d7edf01f58ca09472ce2e0cefdd33c0')
-
-prepare() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-
-  # allow latest gem dependencies
-  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
-
-  # disable simplecov reporting.
-  # it's not required and just adds another dependency
-  sed --in-place '/simplecov_start.rb/d' Rakefile
-  sed --in-place '/simplecov/d' "${_gemname}.gemspec"
-
-  # Don't load rubygems.
-  # It would require us to install all development gems
-  sed --in-place '/rubygems/d' test/helper.rb
-}
-
-build() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  gem build "${_gemname}.gemspec"
-}
-
-check() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  rake test
-}
-
-package() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  local _gemdir="$(gem env gemdir)"
-  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-http-cookie/repos/community-any/PKGBUILD (from rev 935904, 
ruby-http-cookie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:35:06 UTC (rev 935905)
@@ -0,0 +1,57 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Sigmund Vestergaard 
+# Contributor: Tim Meusel 
+
+_gemname='http-cookie'
+pkgname="ruby-${_gemname}"
+pkgver=1.0.3
+pkgrel=7
+pkgdesc='Ruby library to handle HTTP Cookies based on RFC 6265'
+arch=('any')
+url='https://github.com/sparklemotion/http-cookie'
+license=('MIT')
+makedepends=('ruby-rdoc' 'ruby-bundler')
+checkdepends=('ruby-rake' 'ruby-test-unit')
+depends=('ruby' 'ruby-domain_name')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('a06ab81253b527d115570568b3b4db9dfb32d19bae274f96d6e2a719a99ee66f4f6abc03359043b8ced78458264433902d7edf01f58ca09472ce2e0cefdd33c0')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # allow latest gem dependencies
+  sed --in-place 's|git ls-files|find|' "${_gemname}.gemspec"
+
+  # disable simplecov reporting.
+  # it's not required and just adds another dependency
+  sed --in-place '/simplecov_start.rb/d' Rakefile
+  sed --in-place '/simplecov/d' "${_gemname}.gemspec"
+
+  # Don't load rubygems.
+  # It would require us to install all development gems
+  sed --in-place '/rubygems/d' test/helper.rb
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake test
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-http-cookie/trunk (PKGBUILD)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:34:59
  Author: bastelfreak
Revision: 935904

cleanup PKGBUILD

Modified:
  ruby-http-cookie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:33:05 UTC (rev 935903)
+++ PKGBUILD2021-05-16 16:34:59 UTC (rev 935904)
@@ -1,4 +1,5 @@
-# Maintainer: Christian Rebischke 
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
 # Contributor: Sigmund Vestergaard 
 # Contributor: Tim Meusel 
 
@@ -5,7 +6,7 @@
 _gemname='http-cookie'
 pkgname="ruby-${_gemname}"
 pkgver=1.0.3
-pkgrel=6
+pkgrel=7
 pkgdesc='Ruby library to handle HTTP Cookies based on RFC 6265'
 arch=('any')
 url='https://github.com/sparklemotion/http-cookie'


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:33:05
  Author: bastelfreak
Revision: 935903

archrelease: copy trunk to community-testing-any

Added:
  ruby27-httpclient/repos/community-testing-any/
  ruby27-httpclient/repos/community-testing-any/PKGBUILD
(from rev 935902, ruby27-httpclient/trunk/PKGBUILD)
  ruby27-httpclient/repos/community-testing-any/disable-broken-TLS-test.patch
(from rev 935902, ruby27-httpclient/trunk/disable-broken-TLS-test.patch)

---+
 PKGBUILD  |   60 
 disable-broken-TLS-test.patch |   21 ++
 2 files changed, 81 insertions(+)

Copied: ruby27-httpclient/repos/community-testing-any/PKGBUILD (from rev 
935902, ruby27-httpclient/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-05-16 16:33:05 UTC (rev 935903)
@@ -0,0 +1,60 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: farwayer 
+# Contributor: Tim Meusel 
+
+_gemname='httpclient'
+pkgname="ruby27-${_gemname}"
+pkgver=2.8.3
+pkgrel=1
+pkgdesc='gives something like the functionality of libwww-perl (LWP) in Ruby'
+arch=('any')
+url="https://github.com/nahi/${_gemname};
+license=('RUBY')
+makedepends=('ruby27-rdoc')
+depends=('ruby2.7')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
+'disable-broken-TLS-test.patch')
+sha512sums=('b65b5adb97af069d7ff6b6f4cccd6a42c6d9c88b797e9495768fe1f36a6bd93defe50190edc201de5e39c4e306ba0bd17a8ff2f8eba4d636dacafa06c172967d'
+
'fcdb88f83ea1663f1f21113f7943223ffc1c69dc0f1305d74e8a96b3752f905c1bfa3727f2eb9dae9742db16d222ba5971a072b065a6c7ce535615b51fdb8712')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # Allow latest gem dependencies
+  sed --in-place 's|~>|>=|g' Gemfile
+
+  # fix wrong license name in gemspec
+  sed --in-place "s/'ruby'/'Ruby'/" "${_gemname}.gemspec"
+
+  # don't load the bundler setup. That would require us to
+  # provide all 'development' dependencies
+  sed --in-place '/setup/d' Rakefile
+
+  # test_auth.rb does a bunch of windows specific NTLM tests
+  # they don't apply to Arch
+  rm test/test_auth.rb
+
+  # one test verifies the openssl store.
+  # a) this test has nothing to do with the actual httpclient
+  # b) the used certificate is expiried so the test fails
+  patch --forward --verbose --strip=1 
--input='../disable-broken-TLS-test.patch'
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem-2.7 build "${_gemname}.gemspec"
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem-2.7 env gemdir)"
+  gem-2.7 install --verbose --ignore-dependencies --no-user-install 
--install-dir "${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" 
"${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
ruby27-httpclient/repos/community-testing-any/disable-broken-TLS-test.patch 
(from rev 935902, ruby27-httpclient/trunk/disable-broken-TLS-test.patch)
===
--- community-testing-any/disable-broken-TLS-test.patch 
(rev 0)
+++ community-testing-any/disable-broken-TLS-test.patch 2021-05-16 16:33:05 UTC 
(rev 935903)
@@ -0,0 +1,21 @@
+diff --git a/test/test_ssl.rb b/test/test_ssl.rb
+index 2e634d7..2c779d3 100644
+--- a/test/test_ssl.rb
 b/test/test_ssl.rb
+@@ -80,16 +80,6 @@ end
+ assert(str.scan(/^hello$/)[0])
+   end
+ 
+-  def test_verification_without_httpclient
+-raw_cert = "-BEGIN 
CERTIFICATE-\nMIIDOTCCAiGgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBCMRMwEQYKCZImiZPyLGQB\nGRYDb3JnMRkwFwYKCZImiZPyLGQBGRYJcnVieS1sYW5nMRAwDgYDVQQDDAdSdWJ5\nIENBMB4XDTE2MDgxMDE3MjEzNFoXDTE3MDgxMDE3MjEzNFowSzETMBEGCgmSJomT\n8ixkARkWA29yZzEZMBcGCgmSJomT8ixkARkWCXJ1YnktbGFuZzEZMBcGA1UEAwwQ\nUnVieSBjZXJ0aWZpY2F0ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJCfsSXpSMpmZCVa+ZCM+QDgomnhDlvnrGDq6pasTaIspGTXgws+7r8Dt/cNe6EH\nHJpRH2cGRiO4yPcfcT9eS4X7k8OC4f33wHfACOmLu6LeoNE8ujmSk6L6WzLUI+sE\nnLZbFrXxoAo4XHsm8vEG9C+jEoXZ1p+47wrAGaDwDQTnzlMy4dT9pRQEJP2G/Rry\nUkuZn8SUWmh3/YS78iaSzsNF1cgE1ealHOrPPFDjiCGDaH/LHyUPYlbFSLZ/B7Qx\nLxi5sePLcywWq/EJrmWpgeVTDjtNijsdKv/A3qkY+fm/oD0pzt7XsfJaP9YKNyJO\nQFdxWZeiPcDF+Hwf+IwSr+kCAwEAAaMxMC8wDgYDVR0PAQH/BAQDAgeAMB0GA1Ud\nDgQWBBQNvzYzJyXemGhxbA8NMXLolDnPyjANBgkqhkiG9w0BAQsFAAOCAQEARIJV\noKejGlOTn71QutnNnu07UtTu0IHs6YqjYzzND+m4JXLN+wvYm72AFUG0b1L7dRg0\niK8XjQrlNQNVqP1Mc6tffchy20neOPOHeiO6qTdRU8P2S8D3Uwe+1qhgxjfE+cWc\nwZmWxYK4HA8c58PxWMqrkr2QqXD
 
plG9KWLvOgrtPGiLLZcQSKhvvB63QzItHBDU6\nRayiJY3oPkK/HrIvFlySqFqzWmuyknkciOFywEHQMz/tcSFJ2QFpPj/tBz9VXohH\nZ8KscmfhZrTPBjo+ky1lz/WraWoz4LMiLnkC2ABczWLRSawu+v3Irx1NFJngt05e\npqwtqIUeg7j+JLiTaA==\n-END
 CERTIFICATE-"
+-raw_ca_cert 

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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:32:44
  Author: ffy00
Revision: 935902

archrelease: copy trunk to community-any

Added:
  liquidctl/repos/community-any/PKGBUILD
(from rev 935901, liquidctl/trunk/PKGBUILD)
Deleted:
  liquidctl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:32:43 UTC (rev 935901)
+++ PKGBUILD2021-05-16 16:32:44 UTC (rev 935902)
@@ -1,47 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=liquidctl
-pkgver=1.6.0
-pkgrel=1
-arch=('any')
-url='https://github.com/liquidctl/liquidctl'
-license=('GPL3')
-pkgdesc='Cross-platform CLI and Python drivers for AIO liquid coolers and 
other devices'
-depends=('python' 'python-docopt' 'python-pyusb' 'python-hidapi' 
'python-colorlog' 'i2c-tools')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-pytest')
-source=("git+$url.git?signed#tag=v$pkgver")
-validpgpkeys=('23F335ED4E829797734B22F65841AF7406AF7AD0') # Jonas Tadeu Silva 
Malaco Filho 
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname
-
-  export DIST_NAME='Arch Linux'
-  export DIST_PACKAGE="$pkgver-$pkgrel"
-
-  python setup.py build
-
-  gzip liquidctl.8
-}
-
-check() {
-  cd $pkgname
-
-  mkdir runtime
-  XDG_RUNTIME_DIR=runtime python -m pytest
-}
-
-package() {
-  cd $pkgname
-
-  python setup.py install --root "$pkgdir" --skip-build -O1
-
-  install -Dm 644 extra/linux/71-liquidctl.rules 
"$pkgdir"/usr/lib/udev/rules.d/71-liquidctl.rules
-
-  # Install documentation
-  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
-  cp -r -a --no-preserve=ownership docs/* "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm 644 liquidctl.8.gz "$pkgdir"/usr/share/man/man8/liquidctl.8.gz
-}
-

Copied: liquidctl/repos/community-any/PKGBUILD (from rev 935901, 
liquidctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:32:44 UTC (rev 935902)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=liquidctl
+pkgver=1.6.1
+pkgrel=1
+arch=('any')
+url='https://github.com/liquidctl/liquidctl'
+license=('GPL3')
+pkgdesc='Cross-platform CLI and Python drivers for AIO liquid coolers and 
other devices'
+depends=('python' 'python-docopt' 'python-pyusb' 'python-hidapi' 
'python-colorlog' 'i2c-tools')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("git+$url.git?signed#tag=v$pkgver")
+validpgpkeys=('23F335ED4E829797734B22F65841AF7406AF7AD0') # Jonas Tadeu Silva 
Malaco Filho 
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  export DIST_NAME='Arch Linux'
+  export DIST_PACKAGE="$pkgver-$pkgrel"
+
+  python setup.py build
+
+  gzip liquidctl.8
+}
+
+check() {
+  cd $pkgname
+
+  mkdir runtime
+  XDG_RUNTIME_DIR=runtime python -m pytest
+}
+
+package() {
+  cd $pkgname
+
+  python setup.py install --root "$pkgdir" --skip-build -O1
+
+  install -Dm 644 extra/linux/71-liquidctl.rules 
"$pkgdir"/usr/lib/udev/rules.d/71-liquidctl.rules
+
+  # Install documentation
+  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+  cp -r -a --no-preserve=ownership docs/* "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm 644 liquidctl.8.gz "$pkgdir"/usr/share/man/man8/liquidctl.8.gz
+}
+


[arch-commits] Commit in (5 files)

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:32:43
  Author: bastelfreak
Revision: 935901

Add ruby27-httpclient

Added:
  ruby27-httpclient/
  ruby27-httpclient/repos/
  ruby27-httpclient/trunk/
  ruby27-httpclient/trunk/PKGBUILD
  ruby27-httpclient/trunk/disable-broken-TLS-test.patch

---+
 PKGBUILD  |   60 
 disable-broken-TLS-test.patch |   21 ++
 2 files changed, 81 insertions(+)

Added: ruby27-httpclient/trunk/PKGBUILD
===
--- ruby27-httpclient/trunk/PKGBUILD(rev 0)
+++ ruby27-httpclient/trunk/PKGBUILD2021-05-16 16:32:43 UTC (rev 935901)
@@ -0,0 +1,60 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: farwayer 
+# Contributor: Tim Meusel 
+
+_gemname='httpclient'
+pkgname="ruby27-${_gemname}"
+pkgver=2.8.3
+pkgrel=1
+pkgdesc='gives something like the functionality of libwww-perl (LWP) in Ruby'
+arch=('any')
+url="https://github.com/nahi/${_gemname};
+license=('RUBY')
+makedepends=('ruby27-rdoc')
+depends=('ruby2.7')
+options=(!emptydirs)
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz"
+'disable-broken-TLS-test.patch')
+sha512sums=('b65b5adb97af069d7ff6b6f4cccd6a42c6d9c88b797e9495768fe1f36a6bd93defe50190edc201de5e39c4e306ba0bd17a8ff2f8eba4d636dacafa06c172967d'
+
'fcdb88f83ea1663f1f21113f7943223ffc1c69dc0f1305d74e8a96b3752f905c1bfa3727f2eb9dae9742db16d222ba5971a072b065a6c7ce535615b51fdb8712')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+
+  # Allow latest gem dependencies
+  sed --in-place 's|~>|>=|g' Gemfile
+
+  # fix wrong license name in gemspec
+  sed --in-place "s/'ruby'/'Ruby'/" "${_gemname}.gemspec"
+
+  # don't load the bundler setup. That would require us to
+  # provide all 'development' dependencies
+  sed --in-place '/setup/d' Rakefile
+
+  # test_auth.rb does a bunch of windows specific NTLM tests
+  # they don't apply to Arch
+  rm test/test_auth.rb
+
+  # one test verifies the openssl store.
+  # a) this test has nothing to do with the actual httpclient
+  # b) the used certificate is expiried so the test fails
+  patch --forward --verbose --strip=1 
--input='../disable-broken-TLS-test.patch'
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem-2.7 build "${_gemname}.gemspec"
+}
+
+package() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem-2.7 env gemdir)"
+  gem-2.7 install --verbose --ignore-dependencies --no-user-install 
--install-dir "${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" 
"${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}
+
+# vim: ts=2 sw=2 et:

Added: ruby27-httpclient/trunk/disable-broken-TLS-test.patch
===
--- ruby27-httpclient/trunk/disable-broken-TLS-test.patch   
(rev 0)
+++ ruby27-httpclient/trunk/disable-broken-TLS-test.patch   2021-05-16 
16:32:43 UTC (rev 935901)
@@ -0,0 +1,21 @@
+diff --git a/test/test_ssl.rb b/test/test_ssl.rb
+index 2e634d7..2c779d3 100644
+--- a/test/test_ssl.rb
 b/test/test_ssl.rb
+@@ -80,16 +80,6 @@ end
+ assert(str.scan(/^hello$/)[0])
+   end
+ 
+-  def test_verification_without_httpclient
+-raw_cert = "-BEGIN 
CERTIFICATE-\nMIIDOTCCAiGgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBCMRMwEQYKCZImiZPyLGQB\nGRYDb3JnMRkwFwYKCZImiZPyLGQBGRYJcnVieS1sYW5nMRAwDgYDVQQDDAdSdWJ5\nIENBMB4XDTE2MDgxMDE3MjEzNFoXDTE3MDgxMDE3MjEzNFowSzETMBEGCgmSJomT\n8ixkARkWA29yZzEZMBcGCgmSJomT8ixkARkWCXJ1YnktbGFuZzEZMBcGA1UEAwwQ\nUnVieSBjZXJ0aWZpY2F0ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJCfsSXpSMpmZCVa+ZCM+QDgomnhDlvnrGDq6pasTaIspGTXgws+7r8Dt/cNe6EH\nHJpRH2cGRiO4yPcfcT9eS4X7k8OC4f33wHfACOmLu6LeoNE8ujmSk6L6WzLUI+sE\nnLZbFrXxoAo4XHsm8vEG9C+jEoXZ1p+47wrAGaDwDQTnzlMy4dT9pRQEJP2G/Rry\nUkuZn8SUWmh3/YS78iaSzsNF1cgE1ealHOrPPFDjiCGDaH/LHyUPYlbFSLZ/B7Qx\nLxi5sePLcywWq/EJrmWpgeVTDjtNijsdKv/A3qkY+fm/oD0pzt7XsfJaP9YKNyJO\nQFdxWZeiPcDF+Hwf+IwSr+kCAwEAAaMxMC8wDgYDVR0PAQH/BAQDAgeAMB0GA1Ud\nDgQWBBQNvzYzJyXemGhxbA8NMXLolDnPyjANBgkqhkiG9w0BAQsFAAOCAQEARIJV\noKejGlOTn71QutnNnu07UtTu0IHs6YqjYzzND+m4JXLN+wvYm72AFUG0b1L7dRg0\niK8XjQrlNQNVqP1Mc6tffchy20neOPOHeiO6qTdRU8P2S8D3Uwe+1qhgxjfE+cWc\nwZmWxYK4HA8c58PxWMqrkr2QqXD
 
plG9KWLvOgrtPGiLLZcQSKhvvB63QzItHBDU6\nRayiJY3oPkK/HrIvFlySqFqzWmuyknkciOFywEHQMz/tcSFJ2QFpPj/tBz9VXohH\nZ8KscmfhZrTPBjo+ky1lz/WraWoz4LMiLnkC2ABczWLRSawu+v3Irx1NFJngt05e\npqwtqIUeg7j+JLiTaA==\n-END
 CERTIFICATE-"
+-raw_ca_cert = "-BEGIN 

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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:32:41
  Author: ffy00
Revision: 935900

upgpkg: liquidctl 1.6.1-1

Modified:
  liquidctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:30:33 UTC (rev 935899)
+++ PKGBUILD2021-05-16 16:32:41 UTC (rev 935900)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=liquidctl
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 arch=('any')
 url='https://github.com/liquidctl/liquidctl'


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:30:33
  Author: ffy00
Revision: 935899

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:30:30 UTC (rev 935898)
+++ PKGBUILD2021-05-16 16:30:33 UTC (rev 935899)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pipx
-pkgname=python-$_pkgname
-pkgver=0.16.1.0
-pkgrel=1
-pkgdesc='Install and Run Python Applications in Isolated Environments'
-arch=('any')
-url='https://github.com/pipxproject/pipx'
-license=('MIT' 'BSD')
-depends=('python' 'python-userpath' 'python-argcomplete' 'python-colorama' 
'python-packaging')
-makedepends=('python-setuptools')
-checkdepends=('python-tox' 'python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('658d3185512b33f4dd543bee395acc54d463c8a59f6bb2e971070af28cd568823df1b4eed9159c57bf19f0b9e028ca13ca07005e5adbb564a4f5c29e1cbe180c')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  nox
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pipx/repos/community-any/PKGBUILD (from rev 935898, 
python-pipx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:30:33 UTC (rev 935899)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pipx
+pkgname=python-$_pkgname
+pkgver=0.16.2.1
+pkgrel=1
+pkgdesc='Install and Run Python Applications in Isolated Environments'
+arch=('any')
+url='https://github.com/pipxproject/pipx'
+license=('MIT' 'BSD')
+depends=('python' 'python-userpath' 'python-argcomplete' 'python-colorama' 
'python-packaging')
+makedepends=('python-setuptools')
+checkdepends=('python-tox' 'python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('cbdf86168ac64a4641adf9c2bf9309e494a1285e4c4fb6502cd01766b0dedec2c898adf9d534e4cc32a5d89e8916d2bba02584337ef257a67ebe31b4e7a7effc')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  nox
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:30:30
  Author: ffy00
Revision: 935898

upgpkg: python-pipx 0.16.2.1-1

Modified:
  python-pipx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:30:23 UTC (rev 935897)
+++ PKGBUILD2021-05-16 16:30:30 UTC (rev 935898)
@@ -2,7 +2,7 @@
 
 _pkgname=pipx
 pkgname=python-$_pkgname
-pkgver=0.16.1.0
+pkgver=0.16.2.1
 pkgrel=1
 pkgdesc='Install and Run Python Applications in Isolated Environments'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-tox' 'python-pytest')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('658d3185512b33f4dd543bee395acc54d463c8a59f6bb2e971070af28cd568823df1b4eed9159c57bf19f0b9e028ca13ca07005e5adbb564a4f5c29e1cbe180c')
+sha512sums=('cbdf86168ac64a4641adf9c2bf9309e494a1285e4c4fb6502cd01766b0dedec2c898adf9d534e4cc32a5d89e8916d2bba02584337ef257a67ebe31b4e7a7effc')
 
 build() {
   cd $_pkgname-$pkgver


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

2021-05-16 Thread Thore Bödecker via arch-commits
Date: Sunday, May 16, 2021 @ 16:30:04
  Author: foxxx0
Revision: 935896

upgpkg: ceph 15.2.12-1: update to upstream release 15.2.12

Modified:
  ceph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:28:02 UTC (rev 935895)
+++ PKGBUILD2021-05-16 16:30:04 UTC (rev 935896)
@@ -4,7 +4,7 @@
 pkgbase='ceph'
 pkgname=('ceph' 'ceph-libs' 'ceph-mgr')
 _zstdver=1.4.9
-pkgver=15.2.10
+pkgver=15.2.12
 pkgrel=1
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64')
@@ -64,7 +64,7 @@
   # https://github.com/ceph/ceph/pull/34846
   'backport_mgr_disabled_modules_workaround_PR34846.patch'
 )
-sha512sums=('20202c07a068f99d5ce56b1969f703f996ad34c201ea3ab9bb05ea278afac71ccba43fb03e9de641dc3ab9692eecfcc6f52ff1ac03e13a1dc2f939bd8159fc2d'
+sha512sums=('08266a2e9a7ca5a37e03f340873571fd012c630dd898a87241cd97c29760b2bf41fe64c8883e7b08e0f83c26245072cd26e69ecb1db02378d1ec38335ba1cd0f'
 
'4354001c1abd9a0c385ba7bd529e3638fb6660b6a88d4e49706d4ac21c81b8e829303a20fb5445730bdac18c4865efb10bc809c1cd56d743c12aa9a52e160049'
 
'f529db9c094f9ae26428bf1fdfcc91c6d783d400980e0f0d802d2cf13c2be2931465ef568907e03841ff76a369a1447e7371f8799d8526edb9a513ba5c6db133'
 
'9e6bb46d5bbdc5d93f4f026b2a8d6bdb692d9ea6e7018c1bb0188d95ea8574c76238d968b340fd67ddaa3d8183b310e393e3549dc3a63a795fde696413b0ca94'
@@ -146,6 +146,7 @@
 
   export CFLAGS+=" ${CPPFLAGS}"
   export CXXFLAGS+=" ${CPPFLAGS}"
+  export PYTHON_VERSION="$(python --version | awk '{print $2}')"
   export PYTHON_INCLUDE_DIR="$(python -c "from sysconfig import get_path; 
print(get_path('include'))")"
   export CMAKE_BUILD_TYPE='RelWithDebInfo'
   export CMAKE_WARN_UNUSED_CLI=no
@@ -162,7 +163,7 @@
 -DCMAKE_VERBOSE_MAKEFILE=ON \
 -DENABLE_GIT_VERSION=ON \
 -DWITH_PYTHON2=OFF \
--DWITH_PYTHON3=ON \
+-DWITH_PYTHON3="${PYTHON_VERSION}" \
 -DMGR_PYTHON_VERSION=3 \
 -DPYTHON_INCLUDE_DIR="${PYTHON_INCLUDE_DIR:?}" \
 -DWITH_BABELTRACE=OFF \


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:28:02
  Author: ffy00
Revision: 935895

archrelease: copy trunk to community-x86_64

Added:
  stlink/repos/community-x86_64/PKGBUILD
(from rev 935894, stlink/trunk/PKGBUILD)
  stlink/repos/community-x86_64/stlink.install
(from rev 935894, stlink/trunk/stlink.install)
Deleted:
  stlink/repos/community-x86_64/PKGBUILD
  stlink/repos/community-x86_64/stlink.install

+
 PKGBUILD   |   66 +++
 stlink.install |   44 ++--
 2 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:27:56 UTC (rev 935894)
+++ PKGBUILD2021-05-16 16:28:02 UTC (rev 935895)
@@ -1,33 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=stlink
-pkgver=1.6.1
-pkgrel=1
-pkgdesc='Firmware programmer for STM32 STLINK v1/v2 protocol'
-arch=(x86_64)
-url='https://github.com/texane/stlink'
-license=(BSD)
-# Add support for gtk3-based GUI
-depends=(libusb)
-makedepends=(cmake gtk3)
-optdepends=('gtk3: GUI application')
-install=stlink.install
-source=($pkgname-$pkgver.zip::https://github.com/texane/stlink/archive/v$pkgver.zip)
-sha256sums=('859af69fae8dc0751178c93a0558c55a99f4c57c17287ca32c8344021d56f170')
-
-build() {
-  cd stlink-$pkgver
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
--DSTLINK_UDEV_RULES_DIR=/usr/lib/udev/rules.d \
--DSTLINK_MODPROBED_DIR=/usr/lib/modprobe.d
-  make
-}
-
-package() {
-  cd stlink-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  rm "$pkgdir"/usr/lib/libstlink.a
-}

Copied: stlink/repos/community-x86_64/PKGBUILD (from rev 935894, 
stlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:28:02 UTC (rev 935895)
@@ -0,0 +1,33 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=stlink
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Firmware programmer for STM32 STLINK v1/v2 protocol'
+arch=(x86_64)
+url='https://github.com/texane/stlink'
+license=(BSD)
+# Add support for gtk3-based GUI
+depends=(libusb)
+makedepends=(cmake gtk3)
+optdepends=('gtk3: GUI application')
+install=stlink.install
+source=($pkgname-$pkgver.zip::https://github.com/texane/stlink/archive/v$pkgver.zip)
+sha256sums=('dd2fde56c701b9084f6c60c5d2549673150b596f06cffe1334f498013a97f0e1')
+
+build() {
+  cd stlink-$pkgver
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
+-DSTLINK_UDEV_RULES_DIR=/usr/lib/udev/rules.d \
+-DSTLINK_MODPROBED_DIR=/usr/lib/modprobe.d
+  make
+}
+
+package() {
+  cd stlink-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm "$pkgdir"/usr/lib/libstlink.a
+}

Deleted: stlink.install
===
--- stlink.install  2021-05-16 16:27:56 UTC (rev 935894)
+++ stlink.install  2021-05-16 16:28:02 UTC (rev 935895)
@@ -1,22 +0,0 @@
-msg() {
-  udevadm control --reload-rules
-  echo "You may have to reload the usb-storage module."
-  echo "To do this use"
-  echo "modprobe -r usb-storage && modprobe usb-storage"
-}
-
-# arg 1:  the new package version
-post_install() {
-  msg
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  msg
-}
-
-# arg 1:  the old package version
-post_remove() {
-  msg
-}

Copied: stlink/repos/community-x86_64/stlink.install (from rev 935894, 
stlink/trunk/stlink.install)
===
--- stlink.install  (rev 0)
+++ stlink.install  2021-05-16 16:28:02 UTC (rev 935895)
@@ -0,0 +1,22 @@
+msg() {
+  udevadm control --reload-rules
+  echo "You may have to reload the usb-storage module."
+  echo "To do this use"
+  echo "modprobe -r usb-storage && modprobe usb-storage"
+}
+
+# arg 1:  the new package version
+post_install() {
+  msg
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  msg
+}
+
+# arg 1:  the old package version
+post_remove() {
+  msg
+}


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:27:56
  Author: ffy00
Revision: 935894

upgpkg: stlink 1.7.0-1

Modified:
  stlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:25:03 UTC (rev 935893)
+++ PKGBUILD2021-05-16 16:27:56 UTC (rev 935894)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=stlink
-pkgver=1.6.1
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Firmware programmer for STM32 STLINK v1/v2 protocol'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 optdepends=('gtk3: GUI application')
 install=stlink.install
 
source=($pkgname-$pkgver.zip::https://github.com/texane/stlink/archive/v$pkgver.zip)
-sha256sums=('859af69fae8dc0751178c93a0558c55a99f4c57c17287ca32c8344021d56f170')
+sha256sums=('dd2fde56c701b9084f6c60c5d2549673150b596f06cffe1334f498013a97f0e1')
 
 build() {
   cd stlink-$pkgver


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:25:03
  Author: ffy00
Revision: 935893

archrelease: copy trunk to community-any

Added:
  python-myst-parser/repos/community-any/PKGBUILD
(from rev 935892, python-myst-parser/trunk/PKGBUILD)
Deleted:
  python-myst-parser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:24:59 UTC (rev 935892)
+++ PKGBUILD2021-05-16 16:25:03 UTC (rev 935893)
@@ -1,46 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=MyST-Parser
-pkgname=python-myst-parser
-pkgver=0.13.6
-pkgrel=1
-pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
-arch=('any')
-url='https://github.com/executablebooks/MyST-Parser'
-license=('MIT')
-depends=('python-markdown-it-py' 'python-mdit_py_plugins' 'python-yaml' 
'python-docutils' 'python-sphinx' 'python-jinja')
-optdepends=('python-linkify-it-py: linkify support')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-beautifulsoup4' 'python-linkify-it-py')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"fix-tests.patch::$url/pull/320.patch")
-sha512sums=('c0f080e328c7c91fe110bc900dbbba560a61e1a8f6777d680d0a4ebd55c7d919cbf323a875967b614714ced45e1b45877bc01fbcb2dbd305006c6bd67530a138'
-
'f2af70ed802ccdc6605aed98d7acaf3ebba50dbc870daa84a56654ecf5767fd778f09d40af6e067610b32906de5f19243decf177dc79324b6746c43ea0c1')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  patch -p1 -i ../fix-tests.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python -m pytest -k 'not test_sphinx_builds'
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-myst-parser/repos/community-any/PKGBUILD (from rev 935892, 
python-myst-parser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:25:03 UTC (rev 935893)
@@ -0,0 +1,38 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=MyST-Parser
+pkgname=python-myst-parser
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
+arch=('any')
+url='https://github.com/executablebooks/MyST-Parser'
+license=('MIT')
+depends=('python-markdown-it-py' 'python-mdit_py_plugins' 'python-yaml' 
'python-docutils' 'python-sphinx' 'python-jinja')
+optdepends=('python-linkify-it-py: linkify support')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-beautifulsoup4' 'python-linkify-it-py')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('d7dad306fd4d285e6e7e6e1e7508ee79fdd851448fe971634063c686a54eb5a2c9b34e6241d0489faf985d4280859aaa7040ab56880c9f01d6df525d82495acb')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest -k 'not test_sphinx_builds and not test_fixtures'
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:24:59
  Author: ffy00
Revision: 935892

upgpkg: python-myst-parser 0.14.0-1

Modified:
  python-myst-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:18:41 UTC (rev 935891)
+++ PKGBUILD2021-05-16 16:24:59 UTC (rev 935892)
@@ -2,7 +2,7 @@
 
 _pkgname=MyST-Parser
 pkgname=python-myst-parser
-pkgver=0.13.6
+pkgver=0.14.0
 pkgrel=1
 pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
 arch=('any')
@@ -12,17 +12,9 @@
 optdepends=('python-linkify-it-py: linkify support')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-beautifulsoup4' 'python-linkify-it-py')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"fix-tests.patch::$url/pull/320.patch")
-sha512sums=('c0f080e328c7c91fe110bc900dbbba560a61e1a8f6777d680d0a4ebd55c7d919cbf323a875967b614714ced45e1b45877bc01fbcb2dbd305006c6bd67530a138'
-
'f2af70ed802ccdc6605aed98d7acaf3ebba50dbc870daa84a56654ecf5767fd778f09d40af6e067610b32906de5f19243decf177dc79324b6746c43ea0c1')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('d7dad306fd4d285e6e7e6e1e7508ee79fdd851448fe971634063c686a54eb5a2c9b34e6241d0489faf985d4280859aaa7040ab56880c9f01d6df525d82495acb')
 
-prepare() {
-  cd $_pkgname-$pkgver
-
-  patch -p1 -i ../fix-tests.patch
-}
-
 build() {
   cd $_pkgname-$pkgver
 
@@ -32,7 +24,7 @@
 check() {
   cd $_pkgname-$pkgver
 
-  python -m pytest -k 'not test_sphinx_builds'
+  python -m pytest -k 'not test_sphinx_builds and not test_fixtures'
 }
 
 package() {


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:18:41
  Author: ffy00
Revision: 935891

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-16 16:18:37 UTC (rev 935890)
+++ PKGBUILD2021-05-16 16:18:41 UTC (rev 935891)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=mdit-py-plugins
-pkgname=python-mdit_py_plugins
-pkgver=0.2.6
-pkgrel=1
-pkgdesc='Collection of core plugins for markdown-it-py'
-arch=('any')
-url='https://github.com/executablebooks/mdit-py-plugins'
-license=('MIT')
-depends=('python-markdown-it-py')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-regressions')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('d123296d1c5851c87942620129c622c23c5924b685e4fbb8fef8ebe9572a298d4e696fcc8b15806b249ba341a2b01f773feccb45044842a843766d01be4664ee')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python -m pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-mdit_py_plugins/repos/community-any/PKGBUILD (from rev 935890, 
python-mdit_py_plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-16 16:18:41 UTC (rev 935891)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=mdit-py-plugins
+pkgname=python-mdit_py_plugins
+pkgver=0.2.8
+pkgrel=1
+pkgdesc='Collection of core plugins for markdown-it-py'
+arch=('any')
+url='https://github.com/executablebooks/mdit-py-plugins'
+license=('MIT')
+depends=('python-markdown-it-py')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-regressions')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('61a8f5f729e385faded47d88cef0745cb195f410a93382712a675a690f2fdf7518107370c09ee813756924acdd380b43b274fbb153c1600fabac46c2d0e3f426')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-16 Thread Filipe Laíns via arch-commits
Date: Sunday, May 16, 2021 @ 16:18:37
  Author: ffy00
Revision: 935890

upgpkg: python-mdit_py_plugins 0.2.8-1

Modified:
  python-mdit_py_plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-16 16:16:19 UTC (rev 935889)
+++ PKGBUILD2021-05-16 16:18:37 UTC (rev 935890)
@@ -2,7 +2,7 @@
 
 _pkgname=mdit-py-plugins
 pkgname=python-mdit_py_plugins
-pkgver=0.2.6
+pkgver=0.2.8
 pkgrel=1
 pkgdesc='Collection of core plugins for markdown-it-py'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-regressions')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('d123296d1c5851c87942620129c622c23c5924b685e4fbb8fef8ebe9572a298d4e696fcc8b15806b249ba341a2b01f773feccb45044842a843766d01be4664ee')
+sha512sums=('61a8f5f729e385faded47d88cef0745cb195f410a93382712a675a690f2fdf7518107370c09ee813756924acdd380b43b274fbb153c1600fabac46c2d0e3f426')
 
 build() {
   cd $_pkgname-$pkgver


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

2021-05-16 Thread Tim Meusel via arch-commits
Date: Sunday, May 16, 2021 @ 16:16:19
  Author: bastelfreak
Revision: 935889

archrelease: copy trunk to community-testing-any

Added:
  puppet/repos/community-testing-any/
  puppet/repos/community-testing-any/PKGBUILD
(from rev 935888, puppet/trunk/PKGBUILD)
  puppet/repos/community-testing-any/puppet.install
(from rev 935888, puppet/trunk/puppet.install)
  puppet/repos/community-testing-any/ruby30.patch
(from rev 935888, puppet/trunk/ruby30.patch)

+
 PKGBUILD   |  117 +++
 puppet.install |5 ++
 ruby30.patch   |   49 +++
 3 files changed, 171 insertions(+)

Copied: puppet/repos/community-testing-any/PKGBUILD (from rev 935888, 
puppet/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-05-16 16:16:19 UTC (rev 935889)
@@ -0,0 +1,117 @@
+# Maintainer: Tim Meusel 
+# Contributor: Christian Rebischke 
+# Contributor: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Xavion 
+# Contributor: Miah Johnson 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+# Contributor: Tim Meusel 
+
+pkgname=puppet
+pkgver=6.22.1
+pkgrel=1
+pkgdesc='Server automation framework and application'
+arch=('any')
+url='https://puppet.com/products/open-source-projects'
+license=('Apache')
+depends=('ruby2.7' 'facter' 'hiera' 'ruby27-semantic_puppet' 'ruby27-augeas'
+'ruby27-shadow' 'ruby27-concurrent' 'ruby27-multi_json' 
'ruby27-puppet-resource_api'
+'ruby27-httpclient' 'ruby27-deep_merge' 'ruby27-sync')
+makedepends=('git' 'ruby27-rake')
+#checkdepends=('ruby-rspec' 'ruby-yard')
+backup=('etc/puppetlabs/puppet/auth.conf'
+'etc/puppetlabs/puppet/puppet.conf'
+'etc/puppetlabs/puppet/hiera.yaml')
+install="$pkgname.install"
+
+_augeas_commit=8e2d9aa99f43941a37cdd08e191efb6d5bba154a
+_cron_commit=b4e1054fdc2f819b6f45821afe954e7b24620958
+_host_commit=34dca65fe54ba08bd764691e2619371c213df70b
+_mount_commit=1e56e2588058551360269472823bf3426c5e1900
+_selinux_commit=d07dfb309c575a0528396f16673780ec9d4a39d4
+_sshkeys_commit=313a6cfa7580141a8e9a1c07c187b9ad7643435e
+_yumrepo_commit=4bf78c89309e2539342aaed5b9c92ea6a0a96281
+_zfs_commit=04da7f3099541216600167587d4b1dd82144b038
+_zone_commit=7880999cdcf15b9a3594b78a06e47399c78baba1
+
+source=("https://github.com/puppetlabs/puppet/archive/${pkgver}/puppet-${pkgver}.tar.gz;
+
"augeas_core::git+https://github.com/puppetlabs/puppetlabs-augeas_core#commit=${_augeas_commit};
+
"cron_core::git+https://github.com/puppetlabs/puppetlabs-cron_core#commit=${_cron_commit};
+
"host_core::git+https://github.com/puppetlabs/puppetlabs-host_core#commit=${_host_commit};
+
"mount_core::git+https://github.com/puppetlabs/puppetlabs-mount_core#commit=${_mount_commit};
+
"selinux_core::git+https://github.com/puppetlabs/puppetlabs-selinux_core#commit=${_selinux_commit};
+
"sshkeys_core::git+https://github.com/puppetlabs/puppetlabs-sshkeys_core#commit=${_sshkeys_commit};
+
"yumrepo_core::git+https://github.com/puppetlabs/puppetlabs-yumrepo_core#commit=${_yumrepo_commit};
+
"zfs_core::git+https://github.com/puppetlabs/puppetlabs-zfs_core#commit=${_zfs_commit};
+
"zone_core::git+https://github.com/puppetlabs/puppetlabs-zone_core#commit=${_zone_commit};
+)
+sha512sums=('b69622141546d14a600d69fb04ed91ddc9aeee4f8ff25c979b5f640aed16c271d25ce8abb7e6408fa55f7d8a09321ef68355e12088c629c7b3f8a721cdaa8b37'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+conflicts=('puppet5')
+provides=('puppet')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # FS#45044: fix file location
+  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # This breaks right now due to missing dependencies
+  #rake --tasks  # show all tasks
+  #rake commits # requires a git repo
+  #rake warnings# requires a git repo
+  #rake spec# run tests single threaded
+  #rake parallel:spec[8]
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  local _gemdir="$(gem-2.7 env gemdir)"
+
+  # install the gemspec file
+  # this allows other gems to load puppet as a library (for example 
puppet-strings)
+  install -Dm644 .gemspec 
"${pkgdir}/${_gemdir}/specifications/puppet-${pkgver}.gemspec"
+
+  # generate manpages | this breaks right now..
+  #rake gen_manpages
+
+  ruby-2.7 install.rb --destdir="$pkgdir" --sitelibdir="$( ruby-2.7 -e 'puts 
RbConfig::CONFIG["vendorlibdir"]' )"
+
+  install -d "$pkgdir"/usr/lib/{sysusers.d,tmpfiles.d}
+
+  echo 'u puppet 52 "Puppet" /var/lib/puppet' > 

  1   2   3   4   >