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

2021-08-16 Thread Christian Hesse via arch-commits
Date: Tuesday, August 17, 2021 @ 05:55:09
  Author: eworm
Revision: 422290

archrelease: copy trunk to testing-x86_64

Added:
  git/repos/testing-x86_64/
  git/repos/testing-x86_64/PKGBUILD
(from rev 422289, git/trunk/PKGBUILD)
  git/repos/testing-x86_64/git-daemon.socket
(from rev 422289, git/trunk/git-daemon.socket)
  git/repos/testing-x86_64/git-daemon@.service
(from rev 422289, git/trunk/git-daemon@.service)
  git/repos/testing-x86_64/git-sysusers.conf
(from rev 422289, git/trunk/git-sysusers.conf)
  git/repos/testing-x86_64/git.install
(from rev 422289, git/trunk/git.install)

-+
 PKGBUILD|  127 ++
 git-daemon.socket   |9 +++
 git-daemon@.service |   14 +
 git-sysusers.conf   |1 
 git.install |   14 +
 5 files changed, 165 insertions(+)

Copied: git/repos/testing-x86_64/PKGBUILD (from rev 422289, git/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-17 05:55:09 UTC (rev 422290)
@@ -0,0 +1,127 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Dan McGee 
+
+pkgname=git
+pkgver=2.33.0
+pkgrel=1
+pkgdesc='the fast distributed version control system'
+arch=('x86_64')
+url='https://git-scm.com/'
+license=('GPL2')
+depends=('curl' 'expat' 'perl' 'perl-error' 'perl-mailtools'
+ 'openssl' 'pcre2' 'grep' 'shadow' 'zlib')
+makedepends=('python' 'libgnome-keyring' 'xmlto' 'asciidoc')
+optdepends=('tk: gitk and git gui'
+'perl-libwww: git svn'
+'perl-term-readkey: git svn and interactive.singlekey setting'
+'perl-io-socket-ssl: git send-email TLS support'
+'perl-authen-sasl: git send-email TLS support'
+'perl-mediawiki-api: git mediawiki support'
+'perl-datetime-format-iso8601: git mediawiki support'
+'perl-lwp-protocol-https: git mediawiki https support'
+'perl-cgi: gitweb (web interface) support'
+'python: git svn & git p4'
+'subversion: git svn'
+'org.freedesktop.secrets: keyring credential helper'
+'libsecret: libsecret credential helper')
+install=git.install
+validpgpkeys=('96E07AF25771955980DAD10020D04E5A713660A7') # Junio C Hamano
+source=("https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar."{xz,sign}
+'git-daemon@.service'
+'git-daemon.socket'
+'git-sysusers.conf')
+sha256sums=('bf3c6ab5f82e072aad4768f647cfb1ef60aece39855f83f080f9c0222dd20c4f'
+'SKIP'
+'14c0b67cfe116b430645c19d8c4759419657e6809dfa28f438c33a005245ad91'
+'ac4c90d62c44926e6d30d18d97767efc901076d4e0283ed812a349aece72f203'
+'7630e8245526ad80f703fac9900a1328588c503ce32b37b9f8811674fcda4a45')
+
+_make_paths=(
+  prefix='/usr'
+  gitexecdir='/usr/lib/git-core'
+  perllibdir="$(/usr/bin/perl -MConfig -wle 'print $Config{installvendorlib}')"
+)
+
+_make_options=(
+  CFLAGS="$CFLAGS"
+  LDFLAGS="$LDFLAGS"
+  INSTALL_SYMLINKS=1
+  MAN_BOLD_LITERAL=1
+  NO_PERL_CPAN_FALLBACKS=1
+  USE_LIBPCRE2=1
+)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make \
+"${_make_paths[@]}" \
+"${_make_options[@]}" \
+all man
+
+  make -C contrib/credential/gnome-keyring
+  make -C contrib/credential/libsecret
+  make -C contrib/subtree "${_make_paths[@]}" all man
+  make -C contrib/mw-to-git "${_make_paths[@]}" all
+  make -C contrib/diff-highlight "${_make_paths[@]}"
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  local jobs
+  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*') || true
+  mkdir -p /dev/shm/git-test
+  # explicitly specify SHELL to avoid a test failure in t/t9903-bash-prompt.sh
+  # which is caused by 'git rebase' trying to use builduser's SHELL inside the
+  # build chroot (i.e.: /usr/bin/nologin)
+  SHELL=/bin/sh \
+  make \
+"${_make_paths[@]}" \
+"${_make_options[@]}" \
+NO_SVN_TESTS=y \
+DEFAULT_TEST_TARGET=prove \
+GIT_PROVE_OPTS="$jobs -Q" \
+GIT_TEST_OPTS="--root=/dev/shm/git-test" \
+test
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  
+  make \
+"${_make_paths[@]}" \
+"${_make_options[@]}" \
+DESTDIR="$pkgdir" \
+install install-man
+
+  # bash completion
+  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
+  install -m 0644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git
+  # fancy git prompt
+  mkdir -p "$pkgdir"/usr/share/git/
+  install -m 0644 ./contrib/completion/git-prompt.sh 
"$pkgdir"/usr/share/git/git-prompt.sh
+  # gnome credentials helper (deprecated, but we will keep it as long there is 
no extra cost)
+  # https://gitlab.gnome.org/GNOME/libgnome-keyring/commit/6a5adea4aec93
+  install -m 0755 
contrib/credential/gnome-keyring/git-credential-gnome-keyring \
+  

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

2021-08-16 Thread Christian Hesse via arch-commits
Date: Tuesday, August 17, 2021 @ 05:55:01
  Author: eworm
Revision: 422289

upgpkg: git 2.33.0-1: new upstream release

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:11:17 UTC (rev 422288)
+++ PKGBUILD2021-08-17 05:55:01 UTC (rev 422289)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=2.32.0
+pkgver=2.33.0
 pkgrel=1
 pkgdesc='the fast distributed version control system'
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'git-daemon@.service'
 'git-daemon.socket'
 'git-sysusers.conf')
-sha256sums=('68a841da3c4389847ecd3301c25eb7e4a51d07edf5f0168615ad6179e3a83623'
+sha256sums=('bf3c6ab5f82e072aad4768f647cfb1ef60aece39855f83f080f9c0222dd20c4f'
 'SKIP'
 '14c0b67cfe116b430645c19d8c4759419657e6809dfa28f438c33a005245ad91'
 'ac4c90d62c44926e6d30d18d97767efc901076d4e0283ed812a349aece72f203'



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

2021-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Tuesday, August 17, 2021 @ 02:45:34
  Author: yan12125
Revision: 1001116

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-17 02:45:19 UTC (rev 1001115)
+++ PKGBUILD2021-08-17 02:45:34 UTC (rev 1001116)
@@ -1,34 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: xRemaLx 
-
-pkgname=python-klein
-pkgver=20.6.0
-pkgrel=3
-arch=(any)
-pkgdesc='A web micro-framework built on werkzeug and twisted.web'
-url='https://github.com/twisted/klein'
-license=(MIT)
-depends=(python python-attrs python-hyperlink python-incremental python-six
- python-tubes python-twisted python-werkzeug python-zope-interface)
-makedepends=(python-setuptools)
-checkdepends=(python-hypothesis python-mock python-treq python-pytest)
-source=("https://github.com/twisted/klein/archive/$pkgver/klein-$pkgver.tar.gz;)
-sha512sums=('1cba04a365fd9c7185e2f2472f617f875ee9cec41ac97940dda4a145811cefcbbe34f11e1f306656dc43d88b49e66bfcb5efb72d25283bbc8a0729b2fc5e2fca')
-
-build() {
-  cd klein-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd klein-$pkgver
-  # klein tests are broken with treq 20.4.1
-  # https://github.com/twisted/klein/issues/339
-  pytest -v src/klein/test -k 'not test_customParameterValidation and not 
test_handlingGET'
-}
-
-package() {
-  cd klein-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-klein/repos/community-any/PKGBUILD (from rev 1001115, 
python-klein/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-17 02:45:34 UTC (rev 1001116)
@@ -0,0 +1,32 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: xRemaLx 
+
+pkgname=python-klein
+pkgver=21.8.0
+pkgrel=1
+arch=(any)
+pkgdesc='A web micro-framework built on werkzeug and twisted.web'
+url='https://github.com/twisted/klein'
+license=(MIT)
+depends=(python python-attrs python-hyperlink python-incremental
+ python-tubes python-twisted python-werkzeug python-zope-interface)
+makedepends=(python-setuptools)
+checkdepends=(python-hypothesis python-treq python-pytest)
+source=("https://github.com/twisted/klein/archive/$pkgver/klein-$pkgver.tar.gz;)
+sha512sums=('f0e10e3b92f19dc6b42f071d836b4179af033955fb6a1feb05918c85901741577f8dddc335ead1a4c1181690709abd73bca755c6a7a402d79d7a4bfb196bca58')
+
+build() {
+  cd klein-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd klein-$pkgver
+  pytest src/klein/test
+}
+
+package() {
+  cd klein-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in python-klein/trunk (PKGBUILD fix-tests.diff)

2021-08-16 Thread Chih-Hsuan Yen via arch-commits
Date: Tuesday, August 17, 2021 @ 02:45:19
  Author: yan12125
Revision: 1001115

upgpkg: python-klein 21.8.0-1; python-six is no longer needed after [1]

[1] https://github.com/twisted/klein/pull/384

Modified:
  python-klein/trunk/PKGBUILD
Deleted:
  python-klein/trunk/fix-tests.diff

+
 PKGBUILD   |   17 +++--
 fix-tests.diff |   69 ---
 2 files changed, 5 insertions(+), 81 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 02:31:21 UTC (rev 1001114)
+++ PKGBUILD2021-08-17 02:45:19 UTC (rev 1001115)
@@ -2,26 +2,19 @@
 # Contributor: xRemaLx 
 
 pkgname=python-klein
-pkgver=20.6.0
-pkgrel=3
+pkgver=21.8.0
+pkgrel=1
 arch=(any)
 pkgdesc='A web micro-framework built on werkzeug and twisted.web'
 url='https://github.com/twisted/klein'
 license=(MIT)
-depends=(python python-attrs python-hyperlink python-incremental python-six
+depends=(python python-attrs python-hyperlink python-incremental
  python-tubes python-twisted python-werkzeug python-zope-interface)
 makedepends=(python-setuptools)
 checkdepends=(python-hypothesis python-treq python-pytest)
-source=("https://github.com/twisted/klein/archive/$pkgver/klein-$pkgver.tar.gz;
-"fix-tests.diff")
-sha512sums=('1cba04a365fd9c7185e2f2472f617f875ee9cec41ac97940dda4a145811cefcbbe34f11e1f306656dc43d88b49e66bfcb5efb72d25283bbc8a0729b2fc5e2fca'
-
'bbe07e6c9f067265cb962654930632707d61b046709907711ceeaea8b1e691b6cee54b75b1602e2f636251e4a82dd662524dc12e6fb877ef12b7474b9e6e6874')
+source=("https://github.com/twisted/klein/archive/$pkgver/klein-$pkgver.tar.gz;)
+sha512sums=('f0e10e3b92f19dc6b42f071d836b4179af033955fb6a1feb05918c85901741577f8dddc335ead1a4c1181690709abd73bca755c6a7a402d79d7a4bfb196bca58')
 
-prepare() {
-  cd klein-$pkgver
-  patch -Np1 -i ../fix-tests.diff
-}
-
 build() {
   cd klein-$pkgver
   python setup.py build

Deleted: fix-tests.diff
===
--- fix-tests.diff  2021-08-17 02:31:21 UTC (rev 1001114)
+++ fix-tests.diff  2021-08-17 02:45:19 UTC (rev 1001115)
@@ -1,69 +0,0 @@
-diff -ur klein-20.6.0.orig/src/klein/test/_strategies.py 
klein-20.6.0/src/klein/test/_strategies.py
 klein-20.6.0.orig/src/klein/test/_strategies.py2020-06-08 
10:52:04.0 +0800
-+++ klein-20.6.0/src/klein/test/_strategies.py 2021-06-20 18:35:54.019437139 
+0800
-@@ -24,7 +24,6 @@
- 
- from idna import IDNAError, check_label, encode as idna_encode
- 
--from twisted.python.compat import _PY3, unicode
- 
- 
- __all__ = ()
-@@ -34,8 +33,9 @@
- DrawCallable = Callable[[Callable[..., T]], T]
- 
- 
--if _PY3:
-+if True:
- unichr = chr
-+unicode = str
- 
- 
- def idna_characters():  # pragma: no cover
-diff -ur klein-20.6.0.orig/src/klein/test/test_resource.py 
klein-20.6.0/src/klein/test/test_resource.py
 klein-20.6.0.orig/src/klein/test/test_resource.py  2020-06-08 
10:52:04.0 +0800
-+++ klein-20.6.0/src/klein/test/test_resource.py   2021-06-20 
18:42:53.065083517 +0800
-@@ -13,7 +13,6 @@
- from twisted.internet.defer import CancelledError, Deferred, fail, succeed
- from twisted.internet.error import ConnectionLost
- from twisted.internet.unix import Server
--from twisted.python.compat import _PY3, unicode
- from twisted.trial.unittest import SynchronousTestCase
- from twisted.web import server
- from twisted.web.http_headers import Headers
-@@ -34,6 +33,8 @@
- ensure_utf8_bytes,
- )
- 
-+unicode = str
-+
- 
- def requestMock(
- path,
-@@ -610,7 +611,7 @@
- request.setHeader.assert_has_calls(
- [
- call(b"Content-Type", b"text/html; charset=utf-8"),
--call(b"Content-Length", b"259"),
-+call(b"Content-Length", b"258"),
- call(b"Location", b"http://localhost:8080/foo/;),
- ]
- )
-@@ -1116,7 +1117,7 @@
- repr(_URLDecodeError(ValueError)),
- )
- 
--if _PY3:
-+if True:
- test_urlDecodeErrorReprPy2.skip = "Only works on Py2"  # type: ignore
- else:
- test_urlDecodeErrorReprPy3.skip = "Only works on Py3"  # type: ignore
-@@ -1319,7 +1320,7 @@
- self.assertIdentical(resource.ensure_utf8_bytes, ensure_utf8_bytes)
- 
- 
--if _PY3:
-+if True:
- import sys
- 
- if sys.version_info >= (3, 5):



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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 02:31:21
  Author: svenstaro
Revision: 1001114

archrelease: copy trunk to community-x86_64

Added:
  ogre-next/repos/community-x86_64/
  ogre-next/repos/community-x86_64/PKGBUILD
(from rev 1001113, ogre-next/trunk/PKGBUILD)
  ogre-next/repos/community-x86_64/fix-includes.patch
(from rev 1001113, ogre-next/trunk/fix-includes.patch)
  ogre-next/repos/community-x86_64/ogre-next.install
(from rev 1001113, ogre-next/trunk/ogre-next.install)

+
 PKGBUILD   |   62 +++
 fix-includes.patch |   37 ++
 ogre-next.install  |3 ++
 3 files changed, 102 insertions(+)

Copied: ogre-next/repos/community-x86_64/PKGBUILD (from rev 1001113, 
ogre-next/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-08-17 02:31:21 UTC (rev 1001114)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre-next
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib' 'openvr')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'ninja' 
'cppunit')
+conflicts=('ogre')
+install=ogre-next.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/v${pkgver}.tar.gz;
+fix-includes.patch)
+sha512sums=('c16dac0c9e02efd45f6c3189e0600b739e551d78f4794160701377a9c1b4e24b4868a774a35c80d7f2cade44abe04128bc46949ca497a44867b55f378ede028b'
+
'a8c70b4ee692cded9c97a0101e59bede0f4c0c2445d075b15bb20e0a3cf1e0c9af3cedde2e3b8524d2430e7b338869eb9d41d5853e9cf1510688a9ddf4f4b19f')
+
+prepare() {
+  cd ogre-next-${pkgver}
+  patch -Np1 -i "${srcdir}"/fix-includes.patch
+}
+
+build() {
+  cd ogre-next-${pkgver}
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+-DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+-DOGRE_BUILD_TESTS=ON \
+-DOGRE_INSTALL_SAMPLES_SOURCE=ON
+
+  ninja -C build
+  ninja -C build OgreDoc
+}
+
+check() {
+  cd ogre-next-${pkgver}
+
+  # Upstream pls
+  # ninja -C build test
+}
+
+package() {
+  cd ogre-next-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  mkdir -p "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Sample_* "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
+  install -Dm644 Docs/License.html 
"${pkgdir}"/usr/share/licenses/${pkgname}/License.html
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ogre-next/repos/community-x86_64/fix-includes.patch (from rev 1001113, 
ogre-next/trunk/fix-includes.patch)
===
--- community-x86_64/fix-includes.patch (rev 0)
+++ community-x86_64/fix-includes.patch 2021-08-17 02:31:21 UTC (rev 1001114)
@@ -0,0 +1,37 @@
+diff --git a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h 
b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
+index 89184c450..9a606231d 100644
+--- a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
 b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
+@@ -27,6 +27,7 @@ THE SOFTWARE
+ #define __OgreDefaultWorkQueueStandard_H__
+ 
+ #include "../OgreWorkQueue.h"
++#include "ogrestd/vector.h"
+ 
+ namespace Ogre
+ {
+diff --git a/OgreMain/src/OgrePlatformInformation.cpp 
b/OgreMain/src/OgrePlatformInformation.cpp
+index f4a8462d2..d6b00d120 100644
+--- a/OgreMain/src/OgrePlatformInformation.cpp
 b/OgreMain/src/OgrePlatformInformation.cpp
+@@ -44,7 +44,7 @@ THE SOFTWARE.
+ #if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID
+ #include 
+ #else
+-#include 
++#include 
+ #endif
+ #endif
+ 
+diff --git a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp 
b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
+index f39b4232e..9ae3039b0 100644
+--- a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
 b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
+@@ -17,6 +17,7 @@
+ #include "OgreDescriptorSetTexture.h"
+ #include "OgreHlmsManager.h"
+ #include "OgreRoot.h"
++#include "OgreHlmsDatablock.h"
+ 
+ namespace Ogre
+ {

Copied: ogre-next/repos/community-x86_64/ogre-next.install (from rev 1001113, 
ogre-next/trunk/ogre-next.install)
===
--- community-x86_64/ogre-next.install  (rev 0)
+++ community-x86_64/ogre-next.install  2021-08-17 02:31:21 UTC (rev 1001114)
@@ -0,0 

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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 02:31:08
  Author: svenstaro
Revision: 1001113

upgpkg: ogre-next 2.2.4-1

Modified:
  ogre-next/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 01:56:05 UTC (rev 1001112)
+++ PKGBUILD2021-08-17 02:31:08 UTC (rev 1001113)
@@ -7,13 +7,12 @@
 url='http://www.ogre3d.org'
 license=('custom:MIT')
 depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
- 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib' 'openvr')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'ninja' 
'cppunit')
 conflicts=('ogre')
 install=ogre-next.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/v${pkgver}.tar.gz;
 fix-includes.patch)
-optdepends=('python: python bindings')
 
sha512sums=('c16dac0c9e02efd45f6c3189e0600b739e551d78f4794160701377a9c1b4e24b4868a774a35c80d7f2cade44abe04128bc46949ca497a44867b55f378ede028b'
 
'a8c70b4ee692cded9c97a0101e59bede0f4c0c2445d075b15bb20e0a3cf1e0c9af3cedde2e3b8524d2430e7b338869eb9d41d5853e9cf1510688a9ddf4f4b19f')
 
@@ -33,19 +32,13 @@
 -DOGRE_CONFIG_THREADS=1 \
 -DOGRE_CONFIG_THREAD_PROVIDER="std" \
 -DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
--DOGRE_USE_BOOST=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+-DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
 -DOGRE_BUILD_TESTS=ON \
 -DOGRE_INSTALL_SAMPLES_SOURCE=ON
 
   ninja -C build
   ninja -C build OgreDoc
-  # All of these are broken
-  # -DOGRE_BUILD_COMPONENT_TERRAIN=ON \
-  # -DOGRE_BUILD_COMPONENT_VOLUME=ON \
-  # -DOGRE_BUILD_COMPONENT_PAGING=ON \
-  # -DOGRE_BUILD_COMPONENT_PROPERTY=ON \
-  # -DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
-  # -DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
 }
 
 check() {



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

2021-08-16 Thread George Rawlinson via arch-commits
Date: Tuesday, August 17, 2021 @ 01:56:05
  Author: grawlinson
Revision: 1001112

archrelease: copy trunk to community-x86_64

Added:
  elvish/repos/community-x86_64/
  elvish/repos/community-x86_64/PKGBUILD
(from rev 100, elvish/trunk/PKGBUILD)
  elvish/repos/community-x86_64/elvish.install
(from rev 100, elvish/trunk/elvish.install)

+
 PKGBUILD   |   57 +++
 elvish.install |   14 +
 2 files changed, 71 insertions(+)

Copied: elvish/repos/community-x86_64/PKGBUILD (from rev 100, 
elvish/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-08-17 01:56:05 UTC (rev 1001112)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson 
+# Contributor: Haochen Tong 
+# Contributor: Qi Xiao 
+
+pkgname=elvish
+pkgver=0.15.0
+pkgrel=3
+pkgdesc="A friendly and expressive Unix shell"
+arch=('x86_64')
+url="https://github.com/elves/elvish;
+license=('BSD')
+makedepends=('git' 'go')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('51ccf4bf51e1d750ee10b95b67c819f3d81b5bf494c0257bd7cc20d16a7de0a4e6ff61623d1fe358c3ce2d9cb360af4732a899c66a831bae66f967bb061b2c8a')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir build
+  go mod vendor
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=vendor \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+-X github.com/elves/elvish/pkg/buildinfo.Reproducible=true \
+-X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  go test -v -race ./...
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" build/elvish
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Copied: elvish/repos/community-x86_64/elvish.install (from rev 100, 
elvish/trunk/elvish.install)
===
--- community-x86_64/elvish.install (rev 0)
+++ community-x86_64/elvish.install 2021-08-17 01:56:05 UTC (rev 1001112)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/bin/elvish$' etc/shells || echo '/bin/elvish' >> etc/shells
+  grep -qe '^/usr/bin/elvish$' etc/shells || echo '/usr/bin/elvish' >> 
etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -i -r '/^(\/usr)?\/bin\/elvish$/d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:55:22
  Author: svenstaro
Revision: 100

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 1001110, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 1001110, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/fix-includes.patch
  ogre/repos/community-x86_64/ogre.install

+
 PKGBUILD   |  134 +--
 fix-includes.patch |   37 --
 ogre.install   |6 +-
 3 files changed, 69 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-17 01:55:12 UTC (rev 1001110)
+++ PKGBUILD2021-08-17 01:55:22 UTC (rev 100)
@@ -1,68 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=13.0.0
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
- 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
-install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
-optdepends=('python: python bindings')
-sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
-
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
-
-prepare() {
-  cd ogre-${pkgver}
-  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
-}
-
-build() {
-  cd ogre-${pkgver}
-
-  cmake \
--Bbuild \
--GNinja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_CONFIG_ENABLE_JSON=ON \
--DOGRE_CONFIG_THREADS=1 \
--DOGRE_CONFIG_THREAD_PROVIDER="std" \
--DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
--DOGRE_BUILD_COMPONENT_TERRAIN=ON \
--DOGRE_BUILD_COMPONENT_VOLUME=ON \
--DOGRE_BUILD_COMPONENT_PAGING=ON \
--DOGRE_BUILD_COMPONENT_PROPERTY=ON \
--DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
--DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
--DOGRE_USE_BOOST=ON \
--DOGRE_BUILD_TESTS=ON \
--DOGRE_INSTALL_SAMPLES_SOURCE=ON
-
-  ninja -C build
-  ninja -C build OgreDoc
-  # All of these are broken
-}
-
-check() {
-  cd ogre-${pkgver}
-
-  # Upstream pls
-  # ninja -C build test
-}
-
-package() {
-  cd ogre-${pkgver}
-
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  mkdir -p "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 1001110, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-17 01:55:22 UTC (rev 100)
@@ -0,0 +1,66 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=13.0.0
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+install=ogre.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
+optdepends=('python: python bindings')
+sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
+
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
+
+prepare() {
+  cd ogre-${pkgver}
+  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
+}
+
+build() {
+  cd ogre-${pkgver}
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+-DOGRE_BUILD_COMPONENT_VOLUME=ON \
+-DOGRE_BUILD_COMPONENT_PAGING=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+-DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
+-DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+

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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:55:12
  Author: svenstaro
Revision: 1001110

upgpkg: ogre 13.0.0-2: Enable tests

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 01:55:04 UTC (rev 1001109)
+++ PKGBUILD2021-08-17 01:55:12 UTC (rev 1001110)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=ogre
 pkgver=13.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
 url='http://www.ogre3d.org'
@@ -44,14 +44,12 @@
 
   ninja -C build
   ninja -C build OgreDoc
-  # All of these are broken
 }
 
 check() {
   cd ogre-${pkgver}
 
-  # Upstream pls
-  # ninja -C build test
+  ninja -C build test
 }
 
 package() {



[arch-commits] Commit in (5 files)

2021-08-16 Thread George Rawlinson via arch-commits
Date: Tuesday, August 17, 2021 @ 01:55:04
  Author: grawlinson
Revision: 1001109

addpkg: elvish 0.15.0-3

Added:
  elvish/
  elvish/repos/
  elvish/trunk/
  elvish/trunk/PKGBUILD
  elvish/trunk/elvish.install

+
 PKGBUILD   |   57 +++
 elvish.install |   14 +
 2 files changed, 71 insertions(+)

Added: elvish/trunk/PKGBUILD
===
--- elvish/trunk/PKGBUILD   (rev 0)
+++ elvish/trunk/PKGBUILD   2021-08-17 01:55:04 UTC (rev 1001109)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson 
+# Contributor: Haochen Tong 
+# Contributor: Qi Xiao 
+
+pkgname=elvish
+pkgver=0.15.0
+pkgrel=3
+pkgdesc="A friendly and expressive Unix shell"
+arch=('x86_64')
+url="https://github.com/elves/elvish;
+license=('BSD')
+makedepends=('git' 'go')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('51ccf4bf51e1d750ee10b95b67c819f3d81b5bf494c0257bd7cc20d16a7de0a4e6ff61623d1fe358c3ce2d9cb360af4732a899c66a831bae66f967bb061b2c8a')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir build
+  go mod vendor
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=vendor \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+-X github.com/elves/elvish/pkg/buildinfo.Reproducible=true \
+-X github.com/elves/elvish/pkg/buildinfo.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  go test -v -race ./...
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" build/elvish
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Added: elvish/trunk/elvish.install
===
--- elvish/trunk/elvish.install (rev 0)
+++ elvish/trunk/elvish.install 2021-08-17 01:55:04 UTC (rev 1001109)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -qe '^/bin/elvish$' etc/shells || echo '/bin/elvish' >> etc/shells
+  grep -qe '^/usr/bin/elvish$' etc/shells || echo '/usr/bin/elvish' >> 
etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -i -r '/^(\/usr)?\/bin\/elvish$/d' etc/shells
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Nicola Squartini via arch-commits
Date: Tuesday, August 17, 2021 @ 01:27:48
  Author: tensor5
Revision: 1001108

archrelease: copy trunk to community-x86_64

Added:
  min/repos/community-x86_64/PKGBUILD
(from rev 1001107, min/trunk/PKGBUILD)
  min/repos/community-x86_64/icon.patch
(from rev 1001107, min/trunk/icon.patch)
  min/repos/community-x86_64/min.desktop
(from rev 1001107, min/trunk/min.desktop)
  min/repos/community-x86_64/min.js
(from rev 1001107, min/trunk/min.js)
Deleted:
  min/repos/community-x86_64/PKGBUILD
  min/repos/community-x86_64/icon.patch
  min/repos/community-x86_64/min.desktop
  min/repos/community-x86_64/min.js

-+
 PKGBUILD|  176 +-
 icon.patch  |   22 +++
 min.desktop |   20 +++---
 min.js  |   58 +--
 4 files changed, 138 insertions(+), 138 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-17 01:27:06 UTC (rev 1001107)
+++ PKGBUILD2021-08-17 01:27:48 UTC (rev 1001108)
@@ -1,88 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=min
-pkgver=1.20.0
-_commit=e0eaf138ba0fd2a63162bad9642485d53c6118fa
-pkgrel=1
-pkgdesc='A fast, minimal browser that protects your privacy'
-arch=('x86_64')
-url='https://minbrowser.org/'
-license=('Apache')
-depends=('electron' 'libsecret')
-makedepends=('git' 'npm')
-options=(!emptydirs)
-source=("git+https://github.com/minbrowser/min.git#commit=${_commit};
-'min.desktop'
-'min.js'
-'icon.patch')
-sha256sums=('SKIP'
-'a069caac07638ca2bafde5f96a4db646ec7484741ff9b44788c2e159b5142650'
-'c22324184b72b3fad5a0aadb4e18182414e0294c5596c26426adc204fd473258'
-'2067c03bd0a781d8a16000c5a0351b2315ce439531e8300265f9c95576d599c4')
-
-prepare() {
-cd ${pkgname}
-
-patch -Np1 -i "${srcdir}"/icon.patch
-}
-
-build() {
-cd ${pkgname}
-
-npm install
-npm run build
-rm -r node_modules
-
-npm install --production --no-optional
-}
-
-package() {
-cd ${pkgname}
-
-appdir=/usr/lib/${pkgname}
-
-install -dm755 "${pkgdir}"${appdir}
-cp -r * "${pkgdir}"${appdir}
-
-install -dm755 "${pkgdir}"/usr/share/icons/hicolor/256x256/apps
-mv icons/icon256.png \
-"${pkgdir}"/usr/share/icons/hicolor/256x256/apps/${pkgname}.png
-
-install -Dm755 "${srcdir}"/${pkgname}.js "${pkgdir}"/usr/bin/${pkgname}
-install -Dm644 "${srcdir}"/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-
-# Clean up
-rm "${pkgdir}"${appdir}/dist/build.js
-rm -r "${pkgdir}"${appdir}/icons
-rm -r "${pkgdir}"${appdir}/localization
-rm -r "${pkgdir}"${appdir}/main
-rm -r "${pkgdir}"${appdir}/scripts
-find "${pkgdir}"${appdir} \
--name "package.json" \
--exec sed -e "s|${srcdir}/${pkgname}|${appdir}|" \
--i {} \; \
--or -name ".*" -prune -exec rm -r '{}' \; \
--or -name "*.Makefile" -exec rm '{}' \; \
--or -name "*.h" -exec rm '{}' \; \
--or -name "*.c" -exec rm '{}' \; \
--or -name "*.cc" -exec rm '{}' \; \
--or -name "*.gypi" -exec rm '{}' \; \
--or -name "*.mk" -exec rm '{}' \; \
--or -name "Gruntfile.js" -exec rm '{}' \; \
--or -name "Makefile" -exec rm '{}' \; \
--or -name "bin" -prune -exec rm -r '{}' \; \
--or -name "bin.js" -exec rm '{}' \; \
--or -name "bower.json" -exec rm '{}' \; \
--or -name "cli.js" -exec rm '{}' \; \
--or -name "cmd.js" -exec rm '{}' \; \
--or -name "coffee" -prune -exec rm -r '{}' \; \
--or -name "example" -prune -exec rm -r '{}' \; \
--or -name "examples" -prune -exec rm -r '{}' \; \
--or -name "gulpfile.js" -exec rm '{}' \; \
--or -name "man" -prune -exec rm -r '{}' \; \
--or -name "obj.target" -prune -exec rm -r '{}' \; \
--or -name "scripts" -prune -exec rm -r '{}' \; \
--or -name "test" -prune -exec rm -r '{}' \; \
--or -name "tests" -prune -exec rm -r '{}' \;
-}

Copied: min/repos/community-x86_64/PKGBUILD (from rev 1001107, 
min/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-17 01:27:48 UTC (rev 1001108)
@@ -0,0 +1,88 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=min
+pkgver=1.21.0
+_commit=9016402b986fb8c63c0136cdefbbed56eabbc833
+pkgrel=1
+pkgdesc='A fast, minimal browser that protects your privacy'
+arch=('x86_64')
+url='https://minbrowser.org/'
+license=('Apache')
+depends=('electron' 'libsecret')
+makedepends=('git' 'npm')
+options=(!emptydirs)
+source=("git+https://github.com/minbrowser/min.git#commit=${_commit};
+'min.desktop'
+'min.js'
+'icon.patch')
+sha256sums=('SKIP'
+'a069caac07638ca2bafde5f96a4db646ec7484741ff9b44788c2e159b5142650'
+

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

2021-08-16 Thread Nicola Squartini via arch-commits
Date: Tuesday, August 17, 2021 @ 01:27:06
  Author: tensor5
Revision: 1001107

upgpkg: min 1.21.0-1

Modified:
  min/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 01:23:01 UTC (rev 1001106)
+++ PKGBUILD2021-08-17 01:27:06 UTC (rev 1001107)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=min
-pkgver=1.20.0
-_commit=e0eaf138ba0fd2a63162bad9642485d53c6118fa
+pkgver=1.21.0
+_commit=9016402b986fb8c63c0136cdefbbed56eabbc833
 pkgrel=1
 pkgdesc='A fast, minimal browser that protects your privacy'
 arch=('x86_64')



[arch-commits] Commit in ogre/trunk (fix-includes.patch)

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:23:01
  Author: svenstaro
Revision: 1001106

Delete old patch

Deleted:
  ogre/trunk/fix-includes.patch

+
 fix-includes.patch |   37 -
 1 file changed, 37 deletions(-)

Deleted: fix-includes.patch
===
--- fix-includes.patch  2021-08-17 01:21:45 UTC (rev 1001105)
+++ fix-includes.patch  2021-08-17 01:23:01 UTC (rev 1001106)
@@ -1,37 +0,0 @@
-diff --git a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h 
b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
-index 89184c450..9a606231d 100644
 a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
-+++ b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
-@@ -27,6 +27,7 @@ THE SOFTWARE
- #define __OgreDefaultWorkQueueStandard_H__
- 
- #include "../OgreWorkQueue.h"
-+#include "ogrestd/vector.h"
- 
- namespace Ogre
- {
-diff --git a/OgreMain/src/OgrePlatformInformation.cpp 
b/OgreMain/src/OgrePlatformInformation.cpp
-index f4a8462d2..d6b00d120 100644
 a/OgreMain/src/OgrePlatformInformation.cpp
-+++ b/OgreMain/src/OgrePlatformInformation.cpp
-@@ -44,7 +44,7 @@ THE SOFTWARE.
- #if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID
- #include 
- #else
--#include 
-+#include 
- #endif
- #endif
- 
-diff --git a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp 
b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
-index f39b4232e..9ae3039b0 100644
 a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
-+++ b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
-@@ -17,6 +17,7 @@
- #include "OgreDescriptorSetTexture.h"
- #include "OgreHlmsManager.h"
- #include "OgreRoot.h"
-+#include "OgreHlmsDatablock.h"
- 
- namespace Ogre
- {



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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:21:45
  Author: svenstaro
Revision: 1001105

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 1001104, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/fix-includes.patch
(from rev 1001104, ogre/trunk/fix-includes.patch)
  ogre/repos/community-x86_64/ogre.install
(from rev 1001104, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/fix-includes.patch
  ogre/repos/community-x86_64/ogre.install

+
 PKGBUILD   |  136 +--
 fix-includes.patch |   74 +--
 ogre.install   |6 +-
 3 files changed, 108 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-17 01:21:32 UTC (rev 1001104)
+++ PKGBUILD2021-08-17 01:21:45 UTC (rev 1001105)
@@ -1,68 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=2.2.4
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
-install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/v${pkgver}.tar.gz;
-fix-includes.patch)
-optdepends=('python: python bindings')
-sha512sums=('c16dac0c9e02efd45f6c3189e0600b739e551d78f4794160701377a9c1b4e24b4868a774a35c80d7f2cade44abe04128bc46949ca497a44867b55f378ede028b'
-
'a8c70b4ee692cded9c97a0101e59bede0f4c0c2445d075b15bb20e0a3cf1e0c9af3cedde2e3b8524d2430e7b338869eb9d41d5853e9cf1510688a9ddf4f4b19f')
-
-prepare() {
-  cd ogre-next-${pkgver}
-  patch -Np1 -i "${srcdir}"/fix-includes.patch
-}
-
-build() {
-  cd ogre-next-${pkgver}
-
-  cmake \
--Bbuild \
--GNinja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_CONFIG_ENABLE_JSON=TRUE \
--DOGRE_CONFIG_THREADS=1 \
--DOGRE_CONFIG_THREAD_PROVIDER="std" \
--DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
--DOGRE_USE_BOOST=TRUE \
--DOGRE_BUILD_TESTS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE
-
-  ninja -C build
-  ninja -C build OgreDoc
-  # All of these are broken
-  # -DOGRE_BUILD_COMPONENT_TERRAIN=ON \
-  # -DOGRE_BUILD_COMPONENT_VOLUME=ON \
-  # -DOGRE_BUILD_COMPONENT_PAGING=ON \
-  # -DOGRE_BUILD_COMPONENT_PROPERTY=ON \
-  # -DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
-  # -DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
-}
-
-check() {
-  cd ogre-next-${pkgver}
-
-  # Upstream pls
-  # ninja -C build test
-}
-
-package() {
-  cd ogre-next-${pkgver}
-
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  mkdir -p "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/Sample_* "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
-  install -Dm644 Docs/License.html 
"${pkgdir}"/usr/share/licenses/${pkgname}/License.html
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 1001104, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-17 01:21:45 UTC (rev 1001105)
@@ -0,0 +1,68 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=13.0.0
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+install=ogre.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
+optdepends=('python: python bindings')
+sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
+
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
+
+prepare() {
+  cd ogre-${pkgver}
+  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
+}
+
+build() {
+  cd ogre-${pkgver}
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+-DOGRE_BUILD_COMPONENT_VOLUME=ON \
+-DOGRE_BUILD_COMPONENT_PAGING=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+

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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:21:32
  Author: svenstaro
Revision: 1001104

upgpkg: ogre 13.0.0-1

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 01:21:20 UTC (rev 1001103)
+++ PKGBUILD2021-08-17 01:21:32 UTC (rev 1001104)
@@ -1,54 +1,54 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=ogre
-pkgver=2.2.4
-pkgrel=2
+pkgver=13.0.0
+pkgrel=1
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
 url='http://www.ogre3d.org'
 license=('custom:MIT')
 depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
 makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
 install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/v${pkgver}.tar.gz;
-fix-includes.patch)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
 optdepends=('python: python bindings')
-sha512sums=('c16dac0c9e02efd45f6c3189e0600b739e551d78f4794160701377a9c1b4e24b4868a774a35c80d7f2cade44abe04128bc46949ca497a44867b55f378ede028b'
-
'a8c70b4ee692cded9c97a0101e59bede0f4c0c2445d075b15bb20e0a3cf1e0c9af3cedde2e3b8524d2430e7b338869eb9d41d5853e9cf1510688a9ddf4f4b19f')
+sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
+
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
 
 prepare() {
-  cd ogre-next-${pkgver}
-  patch -Np1 -i "${srcdir}"/fix-includes.patch
+  cd ogre-${pkgver}
+  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
 }
 
 build() {
-  cd ogre-next-${pkgver}
+  cd ogre-${pkgver}
 
   cmake \
 -Bbuild \
 -GNinja \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_CONFIG_ENABLE_JSON=TRUE \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
 -DOGRE_CONFIG_THREADS=1 \
 -DOGRE_CONFIG_THREAD_PROVIDER="std" \
 -DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
--DOGRE_USE_BOOST=TRUE \
--DOGRE_BUILD_TESTS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE
+-DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+-DOGRE_BUILD_COMPONENT_VOLUME=ON \
+-DOGRE_BUILD_COMPONENT_PAGING=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+-DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
+-DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+-DOGRE_USE_BOOST=ON \
+-DOGRE_BUILD_TESTS=ON \
+-DOGRE_INSTALL_SAMPLES_SOURCE=ON
 
   ninja -C build
   ninja -C build OgreDoc
   # All of these are broken
-  # -DOGRE_BUILD_COMPONENT_TERRAIN=ON \
-  # -DOGRE_BUILD_COMPONENT_VOLUME=ON \
-  # -DOGRE_BUILD_COMPONENT_PAGING=ON \
-  # -DOGRE_BUILD_COMPONENT_PROPERTY=ON \
-  # -DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
-  # -DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
 }
 
 check() {
-  cd ogre-next-${pkgver}
+  cd ogre-${pkgver}
 
   # Upstream pls
   # ninja -C build test
@@ -55,14 +55,14 @@
 }
 
 package() {
-  cd ogre-next-${pkgver}
+  cd ogre-${pkgver}
 
   DESTDIR="${pkgdir}" ninja -C build install
 
   mkdir -p "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/Sample_* "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
   mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
-  install -Dm644 Docs/License.html 
"${pkgdir}"/usr/share/licenses/${pkgname}/License.html
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in (6 files)

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 01:21:20
  Author: svenstaro
Revision: 1001103

Add ogre-next as opposed to classic ogre

Added:
  ogre-next/
  ogre-next/repos/
  ogre-next/trunk/
  ogre-next/trunk/PKGBUILD
  ogre-next/trunk/fix-includes.patch
  ogre-next/trunk/ogre-next.install

+
 PKGBUILD   |   69 +++
 fix-includes.patch |   37 +++
 ogre-next.install  |3 ++
 3 files changed, 109 insertions(+)

Added: ogre-next/trunk/PKGBUILD
===
--- ogre-next/trunk/PKGBUILD(rev 0)
+++ ogre-next/trunk/PKGBUILD2021-08-17 01:21:20 UTC (rev 1001103)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre-next
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+conflicts=('ogre')
+install=ogre-next.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/v${pkgver}.tar.gz;
+fix-includes.patch)
+optdepends=('python: python bindings')
+sha512sums=('c16dac0c9e02efd45f6c3189e0600b739e551d78f4794160701377a9c1b4e24b4868a774a35c80d7f2cade44abe04128bc46949ca497a44867b55f378ede028b'
+
'a8c70b4ee692cded9c97a0101e59bede0f4c0c2445d075b15bb20e0a3cf1e0c9af3cedde2e3b8524d2430e7b338869eb9d41d5853e9cf1510688a9ddf4f4b19f')
+
+prepare() {
+  cd ogre-next-${pkgver}
+  patch -Np1 -i "${srcdir}"/fix-includes.patch
+}
+
+build() {
+  cd ogre-next-${pkgver}
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_USE_BOOST=ON \
+-DOGRE_BUILD_TESTS=ON \
+-DOGRE_INSTALL_SAMPLES_SOURCE=ON
+
+  ninja -C build
+  ninja -C build OgreDoc
+  # All of these are broken
+  # -DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+  # -DOGRE_BUILD_COMPONENT_VOLUME=ON \
+  # -DOGRE_BUILD_COMPONENT_PAGING=ON \
+  # -DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+  # -DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
+  # -DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+}
+
+check() {
+  cd ogre-next-${pkgver}
+
+  # Upstream pls
+  # ninja -C build test
+}
+
+package() {
+  cd ogre-next-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  mkdir -p "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Sample_* "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
+  install -Dm644 Docs/License.html 
"${pkgdir}"/usr/share/licenses/${pkgname}/License.html
+}
+
+# vim:set ts=2 sw=2 et:

Added: ogre-next/trunk/fix-includes.patch
===
--- ogre-next/trunk/fix-includes.patch  (rev 0)
+++ ogre-next/trunk/fix-includes.patch  2021-08-17 01:21:20 UTC (rev 1001103)
@@ -0,0 +1,37 @@
+diff --git a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h 
b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
+index 89184c450..9a606231d 100644
+--- a/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
 b/OgreMain/include/Threading/OgreDefaultWorkQueueStandard.h
+@@ -27,6 +27,7 @@ THE SOFTWARE
+ #define __OgreDefaultWorkQueueStandard_H__
+ 
+ #include "../OgreWorkQueue.h"
++#include "ogrestd/vector.h"
+ 
+ namespace Ogre
+ {
+diff --git a/OgreMain/src/OgrePlatformInformation.cpp 
b/OgreMain/src/OgrePlatformInformation.cpp
+index f4a8462d2..d6b00d120 100644
+--- a/OgreMain/src/OgrePlatformInformation.cpp
 b/OgreMain/src/OgrePlatformInformation.cpp
+@@ -44,7 +44,7 @@ THE SOFTWARE.
+ #if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID
+ #include 
+ #else
+-#include 
++#include 
+ #endif
+ #endif
+ 
+diff --git a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp 
b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
+index f39b4232e..9ae3039b0 100644
+--- a/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
 b/Samples/2.0/Tutorials/Tutorial_Terrain/src/Terra/Terra.cpp
+@@ -17,6 +17,7 @@
+ #include "OgreDescriptorSetTexture.h"
+ #include "OgreHlmsManager.h"
+ #include "OgreRoot.h"
++#include "OgreHlmsDatablock.h"
+ 
+ namespace Ogre
+ {

Added: ogre-next/trunk/ogre-next.install
===
--- ogre-next/trunk/ogre-next.install   (rev 0)
+++ ogre-next/trunk/ogre-next.install   2021-08-17 01:21:20 UTC (rev 1001103)
@@ -0,0 +1,3 @@
+post_install() {
+echo "Ogre samples are in /opt/ogre/samples"
+}



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

2021-08-16 Thread George Rawlinson via arch-commits
Date: Tuesday, August 17, 2021 @ 01:05:53
  Author: grawlinson
Revision: 1001102

archrelease: copy trunk to community-x86_64

Added:
  zoxide/repos/community-x86_64/
  zoxide/repos/community-x86_64/PKGBUILD
(from rev 1001101, zoxide/trunk/PKGBUILD)

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

Copied: zoxide/repos/community-x86_64/PKGBUILD (from rev 1001101, 
zoxide/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-08-17 01:05:53 UTC (rev 1001102)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson 
+# Contributor: desbma
+
+pkgname=zoxide
+pkgver=0.7.4
+pkgrel=2
+pkgdesc="A smarter cd command for your terminal"
+arch=('x86_64')
+url="https://github.com/ajeetdsouza/zoxide;
+license=('MIT')
+makedepends=('rust')
+optdepends=(
+  'fzf: for interactive selection'
+  'bash-completion: for shell auto-completion'
+  'fish: for shell auto-completion'
+  'zsh: for shell auto-completion'
+)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('4aab73e81fae7f749e57fd5ab7e77f5819650b8cc112885ae7fd97d5ddadf306247e0f965875d7369280a32a40d00ac9e1f34189096ad166d7fe33bcccfe663f')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" "target/release/$pkgname"
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+
+  # man pages
+  install -vDm644 -t "$pkgdir/usr/share/man/man1" man/*.1
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # shell auto-completions
+  cd contrib/completions
+  install -vDm644 -t "$pkgdir/usr/share/zsh/site-functions" _zoxide
+  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_completions.d" zoxide.fish
+  install -vDm644 zoxide.bash 
"$pkgdir/usr/share/bash-completion/completions/zoxide"
+}



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

2021-08-16 Thread George Rawlinson via arch-commits
Date: Tuesday, August 17, 2021 @ 00:49:28
  Author: grawlinson
Revision: 1001101

addpkg: zoxide 0.7.4-2

Added:
  zoxide/
  zoxide/repos/
  zoxide/trunk/
  zoxide/trunk/PKGBUILD

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

Added: zoxide/trunk/PKGBUILD
===
--- zoxide/trunk/PKGBUILD   (rev 0)
+++ zoxide/trunk/PKGBUILD   2021-08-17 00:49:28 UTC (rev 1001101)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson 
+# Contributor: desbma
+
+pkgname=zoxide
+pkgver=0.7.4
+pkgrel=2
+pkgdesc="A smarter cd command for your terminal"
+arch=('x86_64')
+url="https://github.com/ajeetdsouza/zoxide;
+license=('MIT')
+makedepends=('rust')
+optdepends=(
+  'fzf: for interactive selection'
+  'bash-completion: for shell auto-completion'
+  'fish: for shell auto-completion'
+  'zsh: for shell auto-completion'
+)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('4aab73e81fae7f749e57fd5ab7e77f5819650b8cc112885ae7fd97d5ddadf306247e0f965875d7369280a32a40d00ac9e1f34189096ad166d7fe33bcccfe663f')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" "target/release/$pkgname"
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+
+  # man pages
+  install -vDm644 -t "$pkgdir/usr/share/man/man1" man/*.1
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # shell auto-completions
+  cd contrib/completions
+  install -vDm644 -t "$pkgdir/usr/share/zsh/site-functions" _zoxide
+  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_completions.d" zoxide.fish
+  install -vDm644 zoxide.bash 
"$pkgdir/usr/share/bash-completion/completions/zoxide"
+}



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, August 17, 2021 @ 00:38:41
  Author: kgizdov
Revision: 1001100

archrelease: copy trunk to community-testing-x86_64

Added:
  tensorflow/repos/community-testing-x86_64/
  tensorflow/repos/community-testing-x86_64/48935.patch
(from rev 1001099, tensorflow/trunk/48935.patch)
  tensorflow/repos/community-testing-x86_64/PKGBUILD
(from rev 1001099, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-testing-x86_64/build-against-actual-mkl.patch
(from rev 1001099, tensorflow/trunk/build-against-actual-mkl.patch)
  tensorflow/repos/community-testing-x86_64/fix-c++17-compat.patch
(from rev 1001099, tensorflow/trunk/fix-c++17-compat.patch)
  tensorflow/repos/community-testing-x86_64/openssl-1.1.patch
(from rev 1001099, tensorflow/trunk/openssl-1.1.patch)
  tensorflow/repos/community-testing-x86_64/test.py
(from rev 1001099, tensorflow/trunk/test.py)

+
 48935.patch|  353 +++
 PKGBUILD   |  327 
 build-against-actual-mkl.patch |   37 
 fix-c++17-compat.patch |   11 +
 openssl-1.1.patch  |   24 ++
 test.py|   12 +
 6 files changed, 764 insertions(+)

Copied: tensorflow/repos/community-testing-x86_64/48935.patch (from rev 
1001099, tensorflow/trunk/48935.patch)
===
--- community-testing-x86_64/48935.patch(rev 0)
+++ community-testing-x86_64/48935.patch2021-08-17 00:38:41 UTC (rev 
1001100)
@@ -0,0 +1,353 @@
+From 0f8fde42d09b199d02cf5d9d79fe76ebf1d260ef Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:13:40 +0200
+Subject: [PATCH 1/7] Fix NumPy 1.20 error with np.prod()
+
+Reference: #47691, https://stackoverflow.com/questions/66373169
+---
+ tensorflow/python/ops/array_ops.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tensorflow/python/ops/array_ops.py 
b/tensorflow/python/ops/array_ops.py
+index 519f2ef26fcef..d143ee96a2fc9 100644
+--- a/tensorflow/python/ops/array_ops.py
 b/tensorflow/python/ops/array_ops.py
+@@ -36,6 +36,7 @@
+ from tensorflow.python.framework.constant_op import constant
+ from tensorflow.python.ops import gen_array_ops
+ from tensorflow.python.ops import gen_math_ops
++from tensorflow.python.ops import math_ops
+ # go/tf-wildcard-import
+ # pylint: disable=wildcard-import
+ from tensorflow.python.ops.gen_array_ops import *
+@@ -2894,7 +2895,7 @@ def matrix_set_diag(
+ 
+ def _constant_if_small(value, shape, dtype, name):
+   try:
+-if np.prod(shape) < 1000:
++if math_ops.reduce_prod(shape) < 1000:
+   return constant(value, shape=shape, dtype=dtype, name=name)
+   except TypeError:
+ # Happens when shape is a Tensor, list with Tensor elements, etc.
+
+From 86cbf87703876330b5818b7f170489356d9d2c86 Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:34:12 +0200
+Subject: [PATCH 2/7] relax upper bounds for NumPy and SciPy in pip installs
+
+---
+ .../tools/pip_package/setup_with_binary.py |  2 +-
+ .../install/install_centos_pip_packages.sh |  6 +++---
+ .../ci_build/install/install_pip_packages.sh   |  4 ++--
+ .../install/install_pip_packages_by_version.sh |  2 +-
+ .../install/install_python3.6_pip_packages.sh  |  2 +-
+ tensorflow/tools/pip_package/setup.py  |  2 +-
+ 7 files changed, 18 insertions(+), 18 deletions(-)
+
+diff --git a/tensorflow/lite/tools/pip_package/setup_with_binary.py 
b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+index 6b9fe534bb2b1..ae06df8245521 100644
+--- a/tensorflow/lite/tools/pip_package/setup_with_binary.py
 b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+@@ -67,5 +67,5 @@
+ package_dir={'': '.'},
+ package_data={'': ['*.so', '*.pyd']},
+ install_requires=[
+-'numpy ~= 1.19.2',  # Higher versions have a compatibility issue.
++'numpy >= 1.19.2 , <1.21',
+ ])
+diff --git a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh 
b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+index b9906b9378c79..ab0a766bf22b0 100755
+--- a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
 b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+@@ -55,17 +55,17 @@ pip2 install --upgrade protobuf==3.6.1
+ pip3 install --upgrade protobuf==3.16.0
+ 
+ pip2 install --upgrade numpy==1.14.5
+-pip3 install --upgrade numpy~=1.19.2
++pip3 install --upgrade numpy>=1.19.2
+ 
+ pip2 install scipy==1.2.2
+-pip3 install scipy==1.4.1
++pip3 install scipy>=1.4.1
+ 
+ pip2 install scikit-learn==0.18.1
+ pip3 install scikit-learn==0.18.1
+ 
+ # pandas required by `inflow`
+ pip2 install pandas==0.19.2
+-pip3 install pandas==0.19.2
++pip3 install pandas>=0.19.2
+ 
+ # Benchmark tests require the following:
+ pip2 install psutil
+diff --git 

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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, August 17, 2021 @ 00:38:18
  Author: kgizdov
Revision: 1001099

upgpkg: tensorflow 2.6.0-2: cuda 11.4.1 rebuild

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-17 00:26:45 UTC (rev 1001098)
+++ PKGBUILD2021-08-17 00:38:18 UTC (rev 1001099)
@@ -7,7 +7,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=2.6.0
 _pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
@@ -107,9 +107,9 @@
   export TF_IGNORE_MAX_BAZEL_VERSION=1
   export TF_MKL_ROOT=/opt/intel/mkl
   export NCCL_INSTALL_PATH=/usr
-  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc-10
-  export HOST_C_COMPILER=/usr/bin/gcc-10
-  export HOST_CXX_COMPILER=/usr/bin/g++-10
+  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc
+  export HOST_C_COMPILER=/usr/bin/gcc
+  export HOST_CXX_COMPILER=/usr/bin/g++
   export TF_CUDA_CLANG=0  # Clang currently disabled because it's not 
compatible at the moment.
   export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
   export TF_CUDA_PATHS=/opt/cuda,/usr/lib,/usr
@@ -120,8 +120,8 @@
   # add latest PTX for future compatibility
   export 
TF_CUDA_COMPUTE_CAPABILITIES=sm_52,sm_53,sm_60,sm_61,sm_62,sm_70,sm_72,sm_75,sm_80,sm_86,compute_86
 
-  export CC=gcc-10
-  export CXX=g++-10
+  export CC=gcc
+  export CXX=g++
 
   export BAZEL_ARGS="--config=mkl -c opt"
 }



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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 00:26:45
  Author: svenstaro
Revision: 1001098

archrelease: copy trunk to community-x86_64

Added:
  usd/repos/community-x86_64/PKGBUILD
(from rev 1001097, usd/trunk/PKGBUILD)
  usd/repos/community-x86_64/demangle-fix.patch
(from rev 1001097, usd/trunk/demangle-fix.patch)
  usd/repos/community-x86_64/gcc11.patch
(from rev 1001097, usd/trunk/gcc11.patch)
  usd/repos/community-x86_64/pyside2-uic
(from rev 1001097, usd/trunk/pyside2-uic)
Deleted:
  usd/repos/community-x86_64/PKGBUILD
  usd/repos/community-x86_64/demangle-fix.patch
  usd/repos/community-x86_64/gcc11.patch
  usd/repos/community-x86_64/pyside2-uic

+
 PKGBUILD   |   95 ---
 demangle-fix.patch |   36 +--
 gcc11.patch|   24 ++--
 pyside2-uic|4 +-
 4 files changed, 78 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-17 00:26:32 UTC (rev 1001097)
+++ PKGBUILD2021-08-17 00:26:45 UTC (rev 1001098)
@@ -1,49 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: bartus 
-pkgname=usd
-pkgver=21.05
-pkgrel=6
-pkgdesc="3D VFX pipeline interchange file format"
-arch=('x86_64')
-url="https://graphics.pixar.com/usd/docs/index.html;
-license=('Apache')
-depends=('boost-libs' 'glew' 'opensubdiv' 'python' 'pyside2' 'python-opengl' 
'ptex')
-makedepends=('boost' 'cmake' 'intel-tbb' 'ninja' 'qt5-base')
-provides=("usd=${pkgver}")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/PixarAnimationStudios/USD/archive/v${pkgver}.tar.gz;
-'demangle-fix.patch'
-'gcc11.patch'
-'pyside2-uic')
-sha256sums=('165d0e1e45385076121268eba0da2a0ba4a7e5c2b8eab9ab26fb2fcd81a1a478'
-'99ea5fba92842d0215e5188662a066e0cc714ed4dea9c8663cb6239f6c1afbd0'
-'663352c8932a0b48230087284f4f5c540876f6a5adab3d4d1a7ee7b3a4ad6462'
-'bf2d902eddd24d4c3498f05a89f0d867df8a6cbd921214131c14a28152e4ffbe')
-
-prepare() {
-  cd USD-${pkgver}
-  patch -Np1 -i ../demangle-fix.patch
-  patch -Np1 -i ../gcc11.patch
-}
-
-build() {
-  cd USD-${pkgver}
-  cmake \
--B build \
--G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPXR_USE_PYTHON_3=ON \
--DPXR_BUILD_IMAGING=ON \
--DPXR_BUILD_TESTS=OFF \
--DPXR_BUILD_MONOLITHIC=ON \
--DPYSIDE_BIN_DIR="$srcdir"
-  ninja -C build
-}
-
-package() {
-  cd USD-${pkgver}
-  DESTDIR="$pkgdir" ninja -C build install
-
-  mv "$pkgdir"/usr/lib/python "$pkgdir"/usr/lib/python3.9
-}
-
-# vim:set ts=2 sw=2 et:

Copied: usd/repos/community-x86_64/PKGBUILD (from rev 1001097, 
usd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-17 00:26:45 UTC (rev 1001098)
@@ -0,0 +1,46 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: bartus 
+pkgname=usd
+pkgver=21.08
+pkgrel=1
+pkgdesc="3D VFX pipeline interchange file format"
+arch=('x86_64')
+url="https://graphics.pixar.com/usd/docs/index.html;
+license=('Apache')
+depends=('boost-libs' 'glew' 'opensubdiv' 'python' 'pyside2' 'python-opengl' 
'ptex')
+makedepends=('boost' 'cmake' 'intel-tbb' 'ninja' 'qt5-base')
+provides=("usd=${pkgver}")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PixarAnimationStudios/USD/archive/v${pkgver}.tar.gz;
+'gcc11.patch'
+'pyside2-uic')
+sha256sums=('c124c2d99922800f82dcbd0765d38a4f79443880e550ecb1e0532a334f359526'
+'663352c8932a0b48230087284f4f5c540876f6a5adab3d4d1a7ee7b3a4ad6462'
+'bf2d902eddd24d4c3498f05a89f0d867df8a6cbd921214131c14a28152e4ffbe')
+
+prepare() {
+  cd USD-${pkgver}
+  patch -Np1 -i ../gcc11.patch
+}
+
+build() {
+  cd USD-${pkgver}
+  cmake \
+-B build \
+-G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPXR_USE_PYTHON_3=ON \
+-DPXR_BUILD_IMAGING=ON \
+-DPXR_BUILD_TESTS=OFF \
+-DPXR_BUILD_MONOLITHIC=ON \
+-DPYSIDE_BIN_DIR="$srcdir"
+  ninja -C build
+}
+
+package() {
+  cd USD-${pkgver}
+  DESTDIR="$pkgdir" ninja -C build install
+
+  mv "$pkgdir"/usr/lib/python "$pkgdir"/usr/lib/python3.9
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: demangle-fix.patch
===
--- demangle-fix.patch  2021-08-17 00:26:32 UTC (rev 1001097)
+++ demangle-fix.patch  2021-08-17 00:26:45 UTC (rev 1001098)
@@ -1,18 +0,0 @@
 USD-21.02/pxr/base/arch/demangle.cpp.orig   2021-01-20 09:13:57.0 
+0900
-+++ USD-21.02/pxr/base/arch/demangle.cpp2021-02-05 16:37:27.154126908 
+0900
-@@ -36,6 +36,7 @@ using std::string;
- #if (ARCH_COMPILER_GCC_MAJOR == 3 && ARCH_COMPILER_GCC_MINOR >= 1) || \
- ARCH_COMPILER_GCC_MAJOR > 3 || defined(ARCH_COMPILER_CLANG)
- #define _AT_LEAST_GCC_THREE_ONE_OR_CLANG
-+#include 
- #endif
- 
- PXR_NAMESPACE_OPEN_SCOPE
-@@ -138,7 +139,6 @@ _StripPxrInternalNamespace(string* name)
- #endif
- 

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

2021-08-16 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 17, 2021 @ 00:26:32
  Author: svenstaro
Revision: 1001097

upgpkg: usd 21.08-1

Modified:
  usd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 23:32:30 UTC (rev 1001096)
+++ PKGBUILD2021-08-17 00:26:32 UTC (rev 1001097)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: bartus 
 pkgname=usd
-pkgver=21.05
-pkgrel=6
+pkgver=21.08
+pkgrel=1
 pkgdesc="3D VFX pipeline interchange file format"
 arch=('x86_64')
 url="https://graphics.pixar.com/usd/docs/index.html;
@@ -11,17 +11,14 @@
 makedepends=('boost' 'cmake' 'intel-tbb' 'ninja' 'qt5-base')
 provides=("usd=${pkgver}")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/PixarAnimationStudios/USD/archive/v${pkgver}.tar.gz;
-'demangle-fix.patch'
 'gcc11.patch'
 'pyside2-uic')
-sha256sums=('165d0e1e45385076121268eba0da2a0ba4a7e5c2b8eab9ab26fb2fcd81a1a478'
-'99ea5fba92842d0215e5188662a066e0cc714ed4dea9c8663cb6239f6c1afbd0'
+sha256sums=('c124c2d99922800f82dcbd0765d38a4f79443880e550ecb1e0532a334f359526'
 '663352c8932a0b48230087284f4f5c540876f6a5adab3d4d1a7ee7b3a4ad6462'
 'bf2d902eddd24d4c3498f05a89f0d867df8a6cbd921214131c14a28152e4ffbe')
 
 prepare() {
   cd USD-${pkgver}
-  patch -Np1 -i ../demangle-fix.patch
   patch -Np1 -i ../gcc11.patch
 }
 



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 23:32:30
  Author: polyzen
Revision: 1001096

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 23:32:12 UTC (rev 1001095)
+++ PKGBUILD2021-08-16 23:32:30 UTC (rev 1001096)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Shane Stone 
-
-_name=pdftotext
-pkgname=python-pdftotext
-pkgver=2.1.6
-pkgrel=1
-pkgdesc='Simple PDF text extraction'
-arch=('x86_64')
-url=https://github.com/jalan/pdftotext
-license=('MIT')
-depends=('poppler' 'python')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('caf8ddbaeaf0a5897f07655a71747242addab2e695e84c5d47f2ea92dfe2a594')
-b2sums=('02135a03cb604421ab32ee1317265b3404e343b1ceabfbbeaa4973bc85dfd7fb3b92dd23611b0d9077ff8641bda256932d9457112fb27f974aac3be80747c695')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" python 
-m unittest discover tests
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pdftotext/repos/community-x86_64/PKGBUILD (from rev 1001095, 
python-pdftotext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 23:32:30 UTC (rev 1001096)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Shane Stone 
+
+_name=pdftotext
+pkgname=python-pdftotext
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Simple PDF text extraction'
+arch=('x86_64')
+url=https://github.com/jalan/pdftotext
+license=('MIT')
+depends=('poppler' 'python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('efbbfb14cf37ed7ab2c71936bae44707dfed6bb3be7ea5214e9c44c8c258c7af')
+b2sums=('4e196e8c4242826018e4a2d202e63eeb7f83863c5fce52d490d699d779909fffa44883043ddcff31738185a5b61cca0f2a651194a1f60f80dd595262325f0696')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" python 
-m unittest discover tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 23:32:12
  Author: polyzen
Revision: 1001095

upgpkg: python-pdftotext 2.2.0-1

Modified:
  python-pdftotext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 23:14:05 UTC (rev 1001094)
+++ PKGBUILD2021-08-16 23:32:12 UTC (rev 1001095)
@@ -3,7 +3,7 @@
 
 _name=pdftotext
 pkgname=python-pdftotext
-pkgver=2.1.6
+pkgver=2.2.0
 pkgrel=1
 pkgdesc='Simple PDF text extraction'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('poppler' 'python')
 makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('caf8ddbaeaf0a5897f07655a71747242addab2e695e84c5d47f2ea92dfe2a594')
-b2sums=('02135a03cb604421ab32ee1317265b3404e343b1ceabfbbeaa4973bc85dfd7fb3b92dd23611b0d9077ff8641bda256932d9457112fb27f974aac3be80747c695')
+sha256sums=('efbbfb14cf37ed7ab2c71936bae44707dfed6bb3be7ea5214e9c44c8c258c7af')
+b2sums=('4e196e8c4242826018e4a2d202e63eeb7f83863c5fce52d490d699d779909fffa44883043ddcff31738185a5b61cca0f2a651194a1f60f80dd595262325f0696')
 
 build() {
   cd $_name-$pkgver



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

2021-08-16 Thread Orhun Parmaksiz via arch-commits
Date: Monday, August 16, 2021 @ 21:29:54
  Author: orhun
Revision: 1001090

archrelease: copy trunk to community-x86_64

Added:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD
(from rev 1001089, taskwarrior-tui/trunk/PKGBUILD)
Deleted:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 21:29:20 UTC (rev 1001089)
+++ PKGBUILD2021-08-16 21:29:54 UTC (rev 1001090)
@@ -1,41 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=taskwarrior-tui
-pkgver=0.13.31
-pkgrel=1
-pkgdesc="A terminal user interface for taskwarrior"
-arch=('x86_64')
-url="https://github.com/kdheepak/taskwarrior-tui;
-license=('MIT')
-depends=('task')
-makedepends=('rust' 'git' 'pandoc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('a63b082fd06205f40120395056167c772dc3a8e3e65fe298a7f2c91b032539a2'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked --all-features
-  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export TASKRC="../taskwarrior-testdata/.taskrc"
-  export TASKDATA="../taskwarrior-testdata/.task"
-  cargo test --release --locked --all-features
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
-  install -Dm 644 "completions/$pkgname.bash" 
"${pkgdir}/usr/share/bash-completion/completions/$pkgname"
-  install -Dm 644 "completions/$pkgname.fish" -t 
"${pkgdir}/usr/share/fish/vendor_completions.d"
-  install -Dm 644 "completions/_$pkgname" -t 
"${pkgdir}/usr/share/zsh/site-functions"
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskwarrior-tui/repos/community-x86_64/PKGBUILD (from rev 1001089, 
taskwarrior-tui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 21:29:54 UTC (rev 1001090)
@@ -0,0 +1,41 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=taskwarrior-tui
+pkgver=0.13.32
+pkgrel=1
+pkgdesc="A terminal user interface for taskwarrior"
+arch=('x86_64')
+url="https://github.com/kdheepak/taskwarrior-tui;
+license=('MIT')
+depends=('task')
+makedepends=('rust' 'git' 'pandoc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+"git+https://github.com/kdheepak/taskwarrior-testdata;)
+sha256sums=('cfae05e79a1fad594503a36de287c2756afd5ad4514ae613f7cd0e4ed656dbe8'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked --all-features
+  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export TASKRC="../taskwarrior-testdata/.taskrc"
+  export TASKDATA="../taskwarrior-testdata/.task"
+  cargo test --release --locked --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
+  install -Dm 644 "completions/$pkgname.bash" 
"${pkgdir}/usr/share/bash-completion/completions/$pkgname"
+  install -Dm 644 "completions/$pkgname.fish" -t 
"${pkgdir}/usr/share/fish/vendor_completions.d"
+  install -Dm 644 "completions/_$pkgname" -t 
"${pkgdir}/usr/share/zsh/site-functions"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-16 Thread Orhun Parmaksiz via arch-commits
Date: Monday, August 16, 2021 @ 21:29:20
  Author: orhun
Revision: 1001089

upgpkg: taskwarrior-tui 0.13.32-1: upstream release

Modified:
  taskwarrior-tui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 21:28:11 UTC (rev 1001088)
+++ PKGBUILD2021-08-16 21:29:20 UTC (rev 1001089)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=taskwarrior-tui
-pkgver=0.13.31
+pkgver=0.13.32
 pkgrel=1
 pkgdesc="A terminal user interface for taskwarrior"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('rust' 'git' 'pandoc')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 "git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('a63b082fd06205f40120395056167c772dc3a8e3e65fe298a7f2c91b032539a2'
+sha256sums=('cfae05e79a1fad594503a36de287c2756afd5ad4514ae613f7cd0e4ed656dbe8'
 'SKIP')
 
 build() {



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 21:28:11
  Author: polyzen
Revision: 1001088

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 21:27:49 UTC (rev 1001087)
+++ PKGBUILD2021-08-16 21:28:11 UTC (rev 1001088)
@@ -1,43 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Josh Holbrook 
-
-pkgname=python-pyee
-pkgver=8.1.0
-pkgrel=3
-pkgdesc="Port of node.js's EventEmitter to python"
-arch=('any')
-url=https://github.com/jfhbrook/pyee
-license=('MIT')
-depends=('python-trio' 'python-twisted')
-makedepends=('python-setuptools')
-checkdepends=('python-mock' 'python-pytest'{,-asyncio,-trio})
-source=("https://files.pythonhosted.org/packages/source/p/pyee/pyee-$pkgver.tar.gz;)
-sha256sums=('92dacc5bd2bdb8f95aa8dd2585d47ca1c4840e2adb95ccf90034d64f725bfd31')
-b2sums=('5e8553cd1e7fde1dec101e101611faa409c24743cce87d4c2a968207af33ee6af66fae1e2a34453375769d845be25f55c1e78c3beeb65381f5f4b257b15b45f1')
-
-prepare() {
-  cd pyee-$pkgver
-  # Remove setup_requres list
-  sed -i '/setup_requires/,/\],/d' setup.py
-}
-
-build() {
-  cd pyee-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pyee-$pkgver
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" pytest
-}
-
-package() {
-  cd pyee-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyee/repos/community-any/PKGBUILD (from rev 1001087, 
python-pyee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 21:28:11 UTC (rev 1001088)
@@ -0,0 +1,43 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Josh Holbrook 
+
+pkgname=python-pyee
+pkgver=8.2.2
+pkgrel=1
+pkgdesc="Port of node.js's EventEmitter to python"
+arch=('any')
+url=https://github.com/jfhbrook/pyee
+license=('MIT')
+depends=('python-trio' 'python-twisted')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-pytest-asyncio' 'python-pytest-trio')
+source=("https://files.pythonhosted.org/packages/source/p/pyee/pyee-$pkgver.tar.gz;)
+sha256sums=('5c7e60f8df95710dbe17550e16ce0153f83990c00ef744841b43f371ed53ebea')
+b2sums=('f9bd02e1afc78bf51b9267b3a88e4f3ebbfb1342e105fa4175f6fafb4ed0163ef5abb8a006e1ac264f60dfd5ca062068b21c306c5eeead7d929bdd9304e36d14')
+
+prepare() {
+  cd pyee-$pkgver
+  # Remove setup_requres list
+  sed -i '/setup_requires/,/\],/d' setup.py
+}
+
+build() {
+  cd pyee-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pyee-$pkgver
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  PYTHONPATH="$PWD/temp/$sitepackages" pytest
+}
+
+package() {
+  cd pyee-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 21:27:49
  Author: polyzen
Revision: 1001087

upgpkg: python-pyee 8.2.2-1

Modified:
  python-pyee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 21:20:21 UTC (rev 1001086)
+++ PKGBUILD2021-08-16 21:27:49 UTC (rev 1001087)
@@ -2,8 +2,8 @@
 # Contributor: Josh Holbrook 
 
 pkgname=python-pyee
-pkgver=8.1.0
-pkgrel=3
+pkgver=8.2.2
+pkgrel=1
 pkgdesc="Port of node.js's EventEmitter to python"
 arch=('any')
 url=https://github.com/jfhbrook/pyee
@@ -10,10 +10,10 @@
 license=('MIT')
 depends=('python-trio' 'python-twisted')
 makedepends=('python-setuptools')
-checkdepends=('python-mock' 'python-pytest'{,-asyncio,-trio})
+checkdepends=('python-mock' 'python-pytest-asyncio' 'python-pytest-trio')
 
source=("https://files.pythonhosted.org/packages/source/p/pyee/pyee-$pkgver.tar.gz;)
-sha256sums=('92dacc5bd2bdb8f95aa8dd2585d47ca1c4840e2adb95ccf90034d64f725bfd31')
-b2sums=('5e8553cd1e7fde1dec101e101611faa409c24743cce87d4c2a968207af33ee6af66fae1e2a34453375769d845be25f55c1e78c3beeb65381f5f4b257b15b45f1')
+sha256sums=('5c7e60f8df95710dbe17550e16ce0153f83990c00ef744841b43f371ed53ebea')
+b2sums=('f9bd02e1afc78bf51b9267b3a88e4f3ebbfb1342e105fa4175f6fafb4ed0163ef5abb8a006e1ac264f60dfd5ca062068b21c306c5eeead7d929bdd9304e36d14')
 
 prepare() {
   cd pyee-$pkgver
@@ -31,7 +31,7 @@
   mkdir -p temp
   local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
   python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" pytest
+  PYTHONPATH="$PWD/temp/$sitepackages" pytest
 }
 
 package() {



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

2021-08-16 Thread Morten Linderud via arch-commits
Date: Monday, August 16, 2021 @ 21:20:21
  Author: foxboron
Revision: 1001086

archrelease: copy trunk to community-testing-x86_64

Added:
  go/repos/community-testing-x86_64/
  go/repos/community-testing-x86_64/PKGBUILD
(from rev 1001085, go/trunk/PKGBUILD)

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

Copied: go/repos/community-testing-x86_64/PKGBUILD (from rev 1001085, 
go/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-16 21:20:21 UTC (rev 1001086)
@@ -0,0 +1,87 @@
+# Maintainer: Morten Linderud 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgname=go
+epoch=2
+pkgver=1.17
+pkgrel=1
+pkgdesc='Core compiler tools for the Go programming language'
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go perl)
+replaces=(go-pie)
+provides=(go-pie)
+options=(!strip staticlibs)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
+validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
+sha256sums=('3a70e5055509f347c0fb831ca07a2bf3b531068f349b14a3c652e9b5b67beb5d'
+'SKIP')
+
+build() {
+  export GOARCH=amd64
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+  export GOPATH="$srcdir/"
+  export GOROOT="$srcdir/$pkgname"
+  export GOBIN="$GOROOT/bin"
+
+  cd "$pkgname/src"
+  ./make.bash --no-clean -v
+
+  PATH="$GOBIN:$PATH" go install -v std
+}
+
+check() {
+  export GOARCH=amd64
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+  export GOROOT="$srcdir/$pkgname"
+  export GOBIN="$GOROOT/bin"
+  export PATH="$srcdir/$pkgname/bin:$PATH"
+  export GO_TEST_TIMEOUT_SCALE=3
+
+  cd $pkgname/src
+  ./run.bash --no-rebuild -v -v -v -k
+}
+
+package() {
+  cd "$pkgname"
+
+  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go" 
\
+"$pkgdir/usr/lib/go/pkg/linux_amd64_"{dynlink,race}
+
+  # TODO: Make split package for source files?
+  # This saves around 100 MB.
+  # Rest of the size is from the duplicate _race and _dynlib .a files
+  # cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
+  cp -a bin pkg src lib "$pkgdir/usr/lib/go"
+  cp -r doc/* "$pkgdir/usr/share/doc/go"
+
+  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
+  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
+  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
+
+  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
+
+  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
+
+  # TODO: Figure out if really needed
+  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
+  find "$pkgdir/usr/lib/go" -name "testdata" -type d -prune -exec rm -rf "{}" 
\;
+  find "$pkgdir/usr/lib/go" -name "*_test.go" -exec rm -rf "{}" \;
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ts=2 sw=2 et



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

2021-08-16 Thread Morten Linderud via arch-commits
Date: Monday, August 16, 2021 @ 21:20:16
  Author: foxboron
Revision: 1001085

upgpkg: go 2:1.17-1 - Gopher have been sent to fat trimming

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 21:00:34 UTC (rev 1001084)
+++ PKGBUILD2021-08-16 21:20:16 UTC (rev 1001085)
@@ -13,7 +13,7 @@
 
 pkgname=go
 epoch=2
-pkgver=1.16.7
+pkgver=1.17
 pkgrel=1
 pkgdesc='Core compiler tools for the Go programming language'
 arch=(x86_64)
@@ -25,7 +25,7 @@
 options=(!strip staticlibs)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
 validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
-sha256sums=('1a9f2894d3d878729f7045072f30becebe243524cf2fce4e0a7b248b1e0654ac'
+sha256sums=('3a70e5055509f347c0fb831ca07a2bf3b531068f349b14a3c652e9b5b67beb5d'
 'SKIP')
 
 build() {
@@ -39,8 +39,7 @@
   cd "$pkgname/src"
   ./make.bash --no-clean -v
 
-  PATH="$GOBIN:$PATH" go install -v -race std
-  PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
+  PATH="$GOBIN:$PATH" go install -v std
 }
 
 check() {
@@ -50,12 +49,9 @@
   export GOROOT="$srcdir/$pkgname"
   export GOBIN="$GOROOT/bin"
   export PATH="$srcdir/$pkgname/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
+  export GO_TEST_TIMEOUT_SCALE=3
 
   cd $pkgname/src
-  # rm os/signal/signal_cgo_test.go  # TODO: There is a bug somewhere.
-  #  # Should only affect containers
-  #  # so lets just say No.
   ./run.bash --no-rebuild -v -v -v -k
 }
 
@@ -62,8 +58,14 @@
 package() {
   cd "$pkgname"
 
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
+  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go" 
\
+"$pkgdir/usr/lib/go/pkg/linux_amd64_"{dynlink,race}
+
+  # TODO: Make split package for source files?
+  # This saves around 100 MB.
+  # Rest of the size is from the duplicate _race and _dynlib .a files
+  # cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
+  cp -a bin pkg src lib "$pkgdir/usr/lib/go"
   cp -r doc/* "$pkgdir/usr/share/doc/go"
 
   ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
@@ -76,6 +78,8 @@
 
   # TODO: Figure out if really needed
   rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
+  find "$pkgdir/usr/lib/go" -name "testdata" -type d -prune -exec rm -rf "{}" 
\;
+  find "$pkgdir/usr/lib/go" -name "*_test.go" -exec rm -rf "{}" \;
 
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }



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

2021-08-16 Thread Orhun Parmaksiz via arch-commits
Date: Monday, August 16, 2021 @ 21:00:34
  Author: orhun
Revision: 1001084

archrelease: copy trunk to community-x86_64

Added:
  helix/repos/community-x86_64/PKGBUILD
(from rev 1001083, helix/trunk/PKGBUILD)
  helix/repos/community-x86_64/helix-full-relro.patch
(from rev 1001083, helix/trunk/helix-full-relro.patch)
  helix/repos/community-x86_64/helix.install
(from rev 1001083, helix/trunk/helix.install)
  helix/repos/community-x86_64/helix.sh
(from rev 1001083, helix/trunk/helix.sh)
Deleted:
  helix/repos/community-x86_64/PKGBUILD
  helix/repos/community-x86_64/helix.install
  helix/repos/community-x86_64/helix.sh

+
 PKGBUILD   |  245 +++
 helix-full-relro.patch |   10 +
 helix.install  |6 -
 helix.sh   |6 -
 4 files changed, 140 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 21:00:20 UTC (rev 1001083)
+++ PKGBUILD2021-08-16 21:00:34 UTC (rev 1001084)
@@ -1,121 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Wojciech Kępka (wojci...@wkepka.dev)
-
-pkgname=helix
-pkgver=0.3.0
-_gitcommit=44566ea812eed023c89ab49b59f62e76ef2bd6c7
-pkgrel=4
-pkgdesc="A post-modern modal text editor"
-arch=('x86_64')
-url="https://helix-editor.com;
-license=('MPL2')
-depends=('bash')
-makedepends=('rust' 'git')
-install="$pkgname.install"
-source=("${pkgname}::git+https://github.com/helix-editor/helix.git#commit=${_gitcommit};
-  
"${pkgname}-tree-sitter-julia::git+https://github.com/tree-sitter/tree-sitter-julia;
-  
"${pkgname}-tree-sitter-cpp::git+https://github.com/tree-sitter/tree-sitter-cpp;
-  
"${pkgname}-tree-sitter-python::git+https://github.com/tree-sitter/tree-sitter-python;
-  
"${pkgname}-tree-sitter-javascript::git+https://github.com/tree-sitter/tree-sitter-javascript;
-  
"${pkgname}-tree-sitter-html::git+https://github.com/tree-sitter/tree-sitter-html;
-  
"${pkgname}-tree-sitter-php::git+https://github.com/tree-sitter/tree-sitter-php;
-  
"${pkgname}-tree-sitter-bash::git+https://github.com/tree-sitter/tree-sitter-bash;
-  
"${pkgname}-tree-sitter-scala::git+https://github.com/tree-sitter/tree-sitter-scala;
-  
"${pkgname}-tree-sitter-typescript::git+https://github.com/tree-sitter/tree-sitter-typescript;
-  
"${pkgname}-tree-sitter-rust::git+https://github.com/tree-sitter/tree-sitter-rust;
-  
"${pkgname}-tree-sitter-json::git+https://github.com/tree-sitter/tree-sitter-json;
-  
"${pkgname}-tree-sitter-elixir::git+https://github.com/IceDragon200/tree-sitter-elixir;
-  "${pkgname}-tree-sitter-nix::git+https://github.com/cstrahan/tree-sitter-nix;
-  
"${pkgname}-tree-sitter-c-sharp::git+https://github.com/tree-sitter/tree-sitter-c-sharp;
-  
"${pkgname}-tree-sitter-ruby::git+https://github.com/tree-sitter/tree-sitter-ruby;
-  
"${pkgname}-tree-sitter-java::git+https://github.com/tree-sitter/tree-sitter-java;
-  
"${pkgname}-tree-sitter-agda::git+https://github.com/tree-sitter/tree-sitter-agda;
-  
"${pkgname}-tree-sitter-css::git+https://github.com/tree-sitter/tree-sitter-css;
-  
"${pkgname}-tree-sitter-go::git+https://github.com/tree-sitter/tree-sitter-go;
-  
"${pkgname}-tree-sitter-haskell::git+https://github.com/tree-sitter/tree-sitter-haskell;
-  
"${pkgname}-tree-sitter-latex::git+https://github.com/latex-lsp/tree-sitter-latex;
-  
"${pkgname}-tree-sitter-toml::git+https://github.com/ikatyang/tree-sitter-toml;
-  
"${pkgname}-tree-sitter-swift::git+https://github.com/tree-sitter/tree-sitter-swift;
-  "${pkgname}-tree-sitter-c::git+https://github.com/tree-sitter/tree-sitter-c;
-  "$pkgname.sh"
-)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'f782c93bc0f2c7b27ec62fb2ba36e11b3354c3953405f8d2017b039c9eac500a')
-
-prepare() {
-  cd "$pkgname"
-  git submodule init
-
-  git config submodule."helix-syntax/languages/tree-sitter-cpp".url 
"${srcdir}/${pkgname}"-tree-sitter-cpp
-  git config submodule."helix-syntax/languages/tree-sitter-javascript".url 
"${srcdir}/${pkgname}"-tree-sitter-javascript
-  git config submodule."helix-syntax/languages/tree-sitter-julia".url 
"${srcdir}/${pkgname}"-tree-sitter-julia
-  git config submodule."helix-syntax/languages/tree-sitter-python".url 
"${srcdir}/${pkgname}"-tree-sitter-python
-  git config submodule."helix-syntax/languages/tree-sitter-typescript".url 
"${srcdir}/${pkgname}"-tree-sitter-typescript
-  git config submodule."helix-syntax/languages/tree-sitter-agda".url 

[arch-commits] Commit in helix/trunk (PKGBUILD helix-full-relro.patch)

2021-08-16 Thread Orhun Parmaksiz via arch-commits
Date: Monday, August 16, 2021 @ 21:00:20
  Author: orhun
Revision: 1001083

upgpkg: helix 0.4.1-1: upstream release

Added:
  helix/trunk/helix-full-relro.patch
Modified:
  helix/trunk/PKGBUILD

+
 PKGBUILD   |   13 -
 helix-full-relro.patch |   10 ++
 2 files changed, 18 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 20:48:50 UTC (rev 1001082)
+++ PKGBUILD2021-08-16 21:00:20 UTC (rev 1001083)
@@ -2,9 +2,9 @@
 # Contributor: Wojciech Kępka (wojci...@wkepka.dev)
 
 pkgname=helix
-pkgver=0.3.0
-_gitcommit=44566ea812eed023c89ab49b59f62e76ef2bd6c7
-pkgrel=4
+pkgver=0.4.1
+_gitcommit=1caedc18ca47d07b30a5997c092f2683cce3042e
+pkgrel=1
 pkgdesc="A post-modern modal text editor"
 arch=('x86_64')
 url="https://helix-editor.com;
@@ -38,6 +38,7 @@
   
"${pkgname}-tree-sitter-swift::git+https://github.com/tree-sitter/tree-sitter-swift;
   "${pkgname}-tree-sitter-c::git+https://github.com/tree-sitter/tree-sitter-c;
   "$pkgname.sh"
+  "$pkgname-full-relro.patch"
 )
 sha256sums=('SKIP'
 'SKIP'
@@ -64,12 +65,14 @@
 'SKIP'
 'SKIP'
 'SKIP'
-'f782c93bc0f2c7b27ec62fb2ba36e11b3354c3953405f8d2017b039c9eac500a')
+'f782c93bc0f2c7b27ec62fb2ba36e11b3354c3953405f8d2017b039c9eac500a'
+'34014564164fec6a8ffaa1c9ff2436eb74662224ea4920ca165e9fe500b51554')
 
 prepare() {
   cd "$pkgname"
+  patch -p0 -i "../$pkgname-full-relro.patch"
+
   git submodule init
-
   git config submodule."helix-syntax/languages/tree-sitter-cpp".url 
"${srcdir}/${pkgname}"-tree-sitter-cpp
   git config submodule."helix-syntax/languages/tree-sitter-javascript".url 
"${srcdir}/${pkgname}"-tree-sitter-javascript
   git config submodule."helix-syntax/languages/tree-sitter-julia".url 
"${srcdir}/${pkgname}"-tree-sitter-julia

Added: helix-full-relro.patch
===
--- helix-full-relro.patch  (rev 0)
+++ helix-full-relro.patch  2021-08-16 21:00:20 UTC (rev 1001083)
@@ -0,0 +1,10 @@
+--- helix-syntax/build.rs   2021-08-16 23:27:58.754526393 +0300
 helix-syntax/build.rs   2021-08-16 23:28:52.307814345 +0300
+@@ -105,6 +105,7 @@
+ }
+ }
+ command.arg("-xc").arg(parser_path);
++command.arg("-Wl,-z,relro,-z,now");
+ }
+ 
+ let output = command



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 20:48:50
  Author: polyzen
Revision: 1001082

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 20:48:29 UTC (rev 1001081)
+++ PKGBUILD2021-08-16 20:48:50 UTC (rev 1001082)
@@ -1,46 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: robertfoster
-# Contributor: Ista Zahn 
-
-_name=pyppeteer
-pkgname=python-pyppeteer
-pkgver=0.2.5
-pkgrel=2
-pkgdesc='Headless chrome/chromium automation library'
-arch=('any')
-url=https://github.com/pyppeteer/pyppeteer
-license=('MIT')
-depends=('python-appdirs' 'python-pyee' 'python-tqdm' 'python-urllib3'
- 'python-websockets')
-makedepends=('python-build' 'python-install' 'python-poetry')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('c2974be1afa13b17f7ecd120d265d8b8cd324d536a231c3953ca872b68aba4af')
-b2sums=('16c07b0c6a8267a9bb42d58a592391caa9fc614b577f157d73ad6f3bee690b7ff44b17f2c5488bbfe5d68b9c2f70b6092e3c6a53cc9c8d5507195eccb9f88c4e')
-
-prepare() {
-  cd $_name-$pkgver
-  # Remove include list https://github.com/pypa/wheel/issues/92
-  sed -i '/^include/,/]/d' pyproject.toml
-}
-
-build() {
-  cd $_name-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-package() {
-  cd $_name-$pkgver
-  export PYTHONHASHSEED=0
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-
-  # https://github.com/FFY00/python-install/pull/6
-  chmod +x "$pkgdir"/usr/bin/*
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s $site_packages/$_name-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyppeteer/repos/community-any/PKGBUILD (from rev 1001081, 
python-pyppeteer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 20:48:50 UTC (rev 1001082)
@@ -0,0 +1,45 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: robertfoster
+# Contributor: Ista Zahn 
+
+_name=pyppeteer
+pkgname=python-pyppeteer
+pkgver=0.2.6
+pkgrel=1
+pkgdesc='Headless chrome/chromium automation library'
+arch=('any')
+url=https://github.com/pyppeteer/pyppeteer
+license=('MIT')
+depends=('python-appdirs' 'python-importlib-metadata' 'python-pyee'
+ 'python-tqdm' 'python-urllib3' 'python-websockets')
+makedepends=('python-build' 'python-install' 'python-poetry-core')
+source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
+b2sums=('30f6cffcf753d9d802bb2dba1b9b87fafe578b90014dace858d72e8f3e091047994b461050f19f29cf78da24dd95f7b107618b9d4f370800b82faf16ed7bedc1')
+
+prepare() {
+  cd $_name-$pkgver
+  # Remove include list https://github.com/pypa/wheel/issues/92
+  sed -i '/^include/,/]/d' pyproject.toml
+}
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+package() {
+  cd $_name-$pkgver
+  export PYTHONHASHSEED=0
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # https://github.com/FFY00/python-install/pull/6
+  chmod +x "$pkgdir"/usr/bin/*
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s $site_packages/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 20:48:29
  Author: polyzen
Revision: 1001081

upgpkg: python-pyppeteer 0.2.6-1

Modified:
  python-pyppeteer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 20:23:16 UTC (rev 1001080)
+++ PKGBUILD2021-08-16 20:48:29 UTC (rev 1001081)
@@ -4,18 +4,17 @@
 
 _name=pyppeteer
 pkgname=python-pyppeteer
-pkgver=0.2.5
-pkgrel=2
+pkgver=0.2.6
+pkgrel=1
 pkgdesc='Headless chrome/chromium automation library'
 arch=('any')
 url=https://github.com/pyppeteer/pyppeteer
 license=('MIT')
-depends=('python-appdirs' 'python-pyee' 'python-tqdm' 'python-urllib3'
- 'python-websockets')
-makedepends=('python-build' 'python-install' 'python-poetry')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('c2974be1afa13b17f7ecd120d265d8b8cd324d536a231c3953ca872b68aba4af')
-b2sums=('16c07b0c6a8267a9bb42d58a592391caa9fc614b577f157d73ad6f3bee690b7ff44b17f2c5488bbfe5d68b9c2f70b6092e3c6a53cc9c8d5507195eccb9f88c4e')
+depends=('python-appdirs' 'python-importlib-metadata' 'python-pyee'
+ 'python-tqdm' 'python-urllib3' 'python-websockets')
+makedepends=('python-build' 'python-install' 'python-poetry-core')
+source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
+b2sums=('30f6cffcf753d9d802bb2dba1b9b87fafe578b90014dace858d72e8f3e091047994b461050f19f29cf78da24dd95f7b107618b9d4f370800b82faf16ed7bedc1')
 
 prepare() {
   cd $_name-$pkgver



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

2021-08-16 Thread Maxim Baz via arch-commits
Date: Monday, August 16, 2021 @ 20:23:16
  Author: maximbaz
Revision: 1001080

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 20:23:13 UTC (rev 1001079)
+++ PKGBUILD2021-08-16 20:23:16 UTC (rev 1001080)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=9.2.1
-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=('606f67db1b5f085e77bb36e4b4037f93c23d30f88d823867000c526e7e01885d')
-
-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 1001079, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 20:23:16 UTC (rev 1001080)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.3.0
+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=('aa4cbb9e3dac804ffb5c23b3a3dd23853a1476b315f7e550467956fa4cdcec3a')
+
+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-08-16 Thread Maxim Baz via arch-commits
Date: Monday, August 16, 2021 @ 20:23:13
  Author: maximbaz
Revision: 1001079

upgpkg: croc 9.3.0-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 19:22:49 UTC (rev 1001078)
+++ PKGBUILD2021-08-16 20:23:13 UTC (rev 1001079)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=9.2.1
+pkgver=9.3.0
 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=('606f67db1b5f085e77bb36e4b4037f93c23d30f88d823867000c526e7e01885d')
+sha256sums=('aa4cbb9e3dac804ffb5c23b3a3dd23853a1476b315f7e550467956fa4cdcec3a')
 
 build() {
 cd "${pkgname}-${pkgver}"



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 19:22:49
  Author: felixonmars
Revision: 1001078

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 19:22:40 UTC (rev 1001077)
+++ PKGBUILD2021-08-16 19:22:49 UTC (rev 1001078)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-flexmock
-pkgver=0.10.5
-pkgrel=1
-pkgdesc="Mock/Stub/Spy library for Python"
-arch=('any')
-license=('BSD')
-url="https://has207.github.com/flexmock;
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/bkabrda/flexmock/archive/$pkgver.tar.gz;)
-sha512sums=('d56adeb04d15103021649c7834513a8c934e4efb1270fad81a62a923a95d77d6c3f8e88c9bcdb05614fae953585249cf6cbb3792fb79965a67da6f3be8a1df08')
-
-export LC_CTYPE=en_US.UTF-8
-
-build() {
-  cd "$srcdir"/flexmock-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/flexmock-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd flexmock-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flexmock/repos/community-any/PKGBUILD (from rev 1001077, 
python-flexmock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 19:22:49 UTC (rev 1001078)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-flexmock
+pkgver=0.10.6
+pkgrel=1
+pkgdesc="Mock/Stub/Spy library for Python"
+arch=('any')
+license=('BSD')
+url="https://has207.github.com/flexmock;
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/bkabrda/flexmock/archive/$pkgver.tar.gz;)
+sha512sums=('4df6dc1f7e00e6a48635b65797adc6e3ec409503542a01780fbce33e27957b6dd05f2e8c193eb730e4666493f7142012bd1674b2f9356a0060ae1b0129c19859')
+
+export LC_CTYPE=en_US.UTF-8
+
+build() {
+  cd "$srcdir"/flexmock-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/flexmock-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd flexmock-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 19:22:40
  Author: felixonmars
Revision: 1001077

upgpkg: python-flexmock 0.10.6-1

Modified:
  python-flexmock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 18:09:31 UTC (rev 1001076)
+++ PKGBUILD2021-08-16 19:22:40 UTC (rev 1001077)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-flexmock
-pkgver=0.10.5
+pkgver=0.10.6
 pkgrel=1
 pkgdesc="Mock/Stub/Spy library for Python"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/bkabrda/flexmock/archive/$pkgver.tar.gz;)
-sha512sums=('d56adeb04d15103021649c7834513a8c934e4efb1270fad81a62a923a95d77d6c3f8e88c9bcdb05614fae953585249cf6cbb3792fb79965a67da6f3be8a1df08')
+sha512sums=('4df6dc1f7e00e6a48635b65797adc6e3ec409503542a01780fbce33e27957b6dd05f2e8c193eb730e4666493f7142012bd1674b2f9356a0060ae1b0129c19859')
 
 export LC_CTYPE=en_US.UTF-8
 



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:09:31
  Author: shibumi
Revision: 1001076

archrelease: copy trunk to community-x86_64

Added:
  istio/repos/community-x86_64/PKGBUILD
(from rev 1001075, istio/trunk/PKGBUILD)
Deleted:
  istio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 18:09:25 UTC (rev 1001075)
+++ PKGBUILD2021-08-16 18:09:31 UTC (rev 1001076)
@@ -1,33 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Arturo Penen 
-
-pkgname=istio
-pkgver=1.10.3
-pkgrel=1
-pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
-arch=('x86_64')
-url='https://github.com/istio/istio'
-license=('Apache')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
-sha512sums=('ec5e5a0a01cb283604c4ffb9ff6e681f085a374afd682fa36df48ec3a3bf61d6bde5dc7cb239017c467a946b87f6cefc70e35183cc921ab15fe928591c842c06')
-
-build() {
-  cd $pkgname-$pkgver
-  export VERSION=$pkgver
-  export TAG=$pkgver
-  export BUILD_WITH_CONTAINER=0
-  make build
-}
-
-package() {
-  install -Dm 755 "${srcdir}/$pkgname-$pkgver/out/linux_amd64/istioctl" 
"${pkgdir}/usr/bin/istioctl"
-
-  # Populate bash and zsh completions
-  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions"
-  install -dm 755 "${pkgdir}/usr/share/zsh/site-functions"
-  "${pkgdir}/usr/bin/istioctl" collateral --bash
-  mv istioctl.bash "${pkgdir}/usr/share/bash-completion/completions/istioctl"
-  "${pkgdir}/usr/bin/istioctl" collateral --zsh
-  mv _istioctl  "${pkgdir}/usr/share/zsh/site-functions/_istioctl"
-}

Copied: istio/repos/community-x86_64/PKGBUILD (from rev 1001075, 
istio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 18:09:31 UTC (rev 1001076)
@@ -0,0 +1,33 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Arturo Penen 
+
+pkgname=istio
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
+arch=('x86_64')
+url='https://github.com/istio/istio'
+license=('Apache')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
+sha512sums=('e911d6af01ff01cbe619ec6d5bb623676784822b93218ff9bbfb89b3bc4f8e2d94a90faf1cd4598b3613d1de1156fe1515d00076f6688603657517a843fe8316')
+
+build() {
+  cd $pkgname-$pkgver
+  export VERSION=$pkgver
+  export TAG=$pkgver
+  export BUILD_WITH_CONTAINER=0
+  make build
+}
+
+package() {
+  install -Dm 755 "${srcdir}/$pkgname-$pkgver/out/linux_amd64/istioctl" 
"${pkgdir}/usr/bin/istioctl"
+
+  # Populate bash and zsh completions
+  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions"
+  install -dm 755 "${pkgdir}/usr/share/zsh/site-functions"
+  "${pkgdir}/usr/bin/istioctl" collateral --bash
+  mv istioctl.bash "${pkgdir}/usr/share/bash-completion/completions/istioctl"
+  "${pkgdir}/usr/bin/istioctl" collateral --zsh
+  mv _istioctl  "${pkgdir}/usr/share/zsh/site-functions/_istioctl"
+}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:09:25
  Author: shibumi
Revision: 1001075

upgpkg: istio 1.11.0-1

Modified:
  istio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 18:05:50 UTC (rev 1001074)
+++ PKGBUILD2021-08-16 18:09:25 UTC (rev 1001075)
@@ -2,7 +2,7 @@
 # Contributor: Arturo Penen 
 
 pkgname=istio
-pkgver=1.10.3
+pkgver=1.11.0
 pkgrel=1
 pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('Apache')
 makedepends=('go')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
-sha512sums=('ec5e5a0a01cb283604c4ffb9ff6e681f085a374afd682fa36df48ec3a3bf61d6bde5dc7cb239017c467a946b87f6cefc70e35183cc921ab15fe928591c842c06')
+sha512sums=('e911d6af01ff01cbe619ec6d5bb623676784822b93218ff9bbfb89b3bc4f8e2d94a90faf1cd4598b3613d1de1156fe1515d00076f6688603657517a843fe8316')
 
 build() {
   cd $pkgname-$pkgver



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:05:50
  Author: shibumi
Revision: 1001074

archrelease: copy trunk to community-x86_64

Added:
  terragrunt/repos/community-x86_64/PKGBUILD
(from rev 1001073, terragrunt/trunk/PKGBUILD)
Deleted:
  terragrunt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 18:05:42 UTC (rev 1001073)
+++ PKGBUILD2021-08-16 18:05:50 UTC (rev 1001074)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Benjamin Denhartog 
-# Contributor: Andreas 'Segaja' Schleifer 
-
-pkgname=terragrunt
-pkgver=0.31.1
-pkgrel=1
-pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
-url='https://github.com/gruntwork-io/terragrunt'
-arch=('x86_64')
-makedepends=('git' 'go')
-depends=('glibc' 'terraform')
-license=('MIT')
-source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('127490a12f542089adcc4e8a609eae5042d25b25b1271405132189253fc73685')
-b2sums=('3849a8327afef7adeea2323598772598fda0a6ef55273f3a43b0da11583f60011b2683f6d789ae2e68f7cdbc16f4a6db42ec1301eabd973000ec9b5a689d3971')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export GO11MODULE=on
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
main.VERSION=${pkgver}" \
-.
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: terragrunt/repos/community-x86_64/PKGBUILD (from rev 1001073, 
terragrunt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 18:05:50 UTC (rev 1001074)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Benjamin Denhartog 
+# Contributor: Andreas 'Segaja' Schleifer 
+
+pkgname=terragrunt
+pkgver=0.31.3
+pkgrel=1
+pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
+url='https://github.com/gruntwork-io/terragrunt'
+arch=('x86_64')
+makedepends=('git' 'go')
+depends=('glibc' 'terraform')
+license=('MIT')
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('275aa436f29d0a86c99c1c4bcb12c9fc416657994e26ba56130c9bf37d7a84ba')
+b2sums=('cd22cfa38b4b5006c3f8a706de83bc65e200533f21db4dc1fa31cfed72a263a100ff5884d55af34b34f2608691fa53c5dc51daa6ff85b7954dab5d67c8ee0503')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export GO11MODULE=on
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
main.VERSION=${pkgver}" \
+.
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:05:42
  Author: shibumi
Revision: 1001073

upgpkg: terragrunt 0.31.3-1

Modified:
  terragrunt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 18:03:44 UTC (rev 1001072)
+++ PKGBUILD2021-08-16 18:05:42 UTC (rev 1001073)
@@ -3,7 +3,7 @@
 # Contributor: Andreas 'Segaja' Schleifer 
 
 pkgname=terragrunt
-pkgver=0.31.1
+pkgver=0.31.3
 pkgrel=1
 pkgdesc='Thin wrapper for Terraform that provides extra tools for working with 
multiple Terraform modules'
 url='https://github.com/gruntwork-io/terragrunt'
@@ -12,8 +12,8 @@
 depends=('glibc' 'terraform')
 license=('MIT')
 source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('127490a12f542089adcc4e8a609eae5042d25b25b1271405132189253fc73685')
-b2sums=('3849a8327afef7adeea2323598772598fda0a6ef55273f3a43b0da11583f60011b2683f6d789ae2e68f7cdbc16f4a6db42ec1301eabd973000ec9b5a689d3971')
+sha256sums=('275aa436f29d0a86c99c1c4bcb12c9fc416657994e26ba56130c9bf37d7a84ba')
+b2sums=('cd22cfa38b4b5006c3f8a706de83bc65e200533f21db4dc1fa31cfed72a263a100ff5884d55af34b34f2608691fa53c5dc51daa6ff85b7954dab5d67c8ee0503')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:03:44
  Author: shibumi
Revision: 1001072

archrelease: copy trunk to community-x86_64

Added:
  popeye/repos/community-x86_64/PKGBUILD
(from rev 1001071, popeye/trunk/PKGBUILD)
Deleted:
  popeye/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 18:03:38 UTC (rev 1001071)
+++ PKGBUILD2021-08-16 18:03:44 UTC (rev 1001072)
@@ -1,34 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=popeye
-pkgver=0.9.0
-pkgrel=2
-pkgdesc="Kubernetes cluster resource sanitizer"
-arch=('x86_64')
-url="https://github.com/derailed/popeye;
-license=('Apache')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
-sha512sums=('fdd056e1d04c654d2a18e8f6fbc5e48c00e351be5677375080fd69a27084f9540ec5b72854cb56b7738bb37758fba7f8b1d17e04cfeadc05504d564e6518fbd0')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-  go build .
-  chmod +x ./popeye
-}
-
-check(){
-  cd "${pkgname}-${pkgver}"
-  go test ./...
-}
-
-package(){
-  cd "${pkgname}-${pkgver}"
-  install -Dsm755 ./popeye "${pkgdir}/usr/bin/popeye"
-}

Copied: popeye/repos/community-x86_64/PKGBUILD (from rev 1001071, 
popeye/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 18:03:44 UTC (rev 1001072)
@@ -0,0 +1,34 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=popeye
+pkgver=0.9.7
+pkgrel=1
+pkgdesc="Kubernetes cluster resource sanitizer"
+arch=('x86_64')
+url="https://github.com/derailed/popeye;
+license=('Apache')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
+sha512sums=('d8e351c232393659ea081df25f15aab18a3e80fda51064d8c1574d284156021f21d1c5b1234774650a23378a90dd1902f6c7a2c213b5ef6105829e5ad4ea9334')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+  go build .
+  chmod +x ./popeye
+}
+
+check(){
+  cd "${pkgname}-${pkgver}"
+  go test ./...
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+  install -Dsm755 ./popeye "${pkgdir}/usr/bin/popeye"
+}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:03:38
  Author: shibumi
Revision: 1001071

upgpkg: popeye 0.9.7-1

Modified:
  popeye/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 18:00:17 UTC (rev 1001070)
+++ PKGBUILD2021-08-16 18:03:38 UTC (rev 1001071)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=popeye
-pkgver=0.9.0
-pkgrel=2
+pkgver=0.9.7
+pkgrel=1
 pkgdesc="Kubernetes cluster resource sanitizer"
 arch=('x86_64')
 url="https://github.com/derailed/popeye;
@@ -10,7 +10,7 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/derailed/popeye/archive/v${pkgver}.tar.gz;)
-sha512sums=('fdd056e1d04c654d2a18e8f6fbc5e48c00e351be5677375080fd69a27084f9540ec5b72854cb56b7738bb37758fba7f8b1d17e04cfeadc05504d564e6518fbd0')
+sha512sums=('d8e351c232393659ea081df25f15aab18a3e80fda51064d8c1574d284156021f21d1c5b1234774650a23378a90dd1902f6c7a2c213b5ef6105829e5ad4ea9334')
 
 build(){
   cd "${pkgname}-${pkgver}"



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:00:17
  Author: shibumi
Revision: 1001070

archrelease: copy trunk to community-x86_64

Added:
  operator-sdk/repos/community-x86_64/PKGBUILD
(from rev 1001069, operator-sdk/trunk/PKGBUILD)
Deleted:
  operator-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 18:00:11 UTC (rev 1001069)
+++ PKGBUILD2021-08-16 18:00:17 UTC (rev 1001070)
@@ -1,44 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=operator-sdk
-pkgver=1.10.1
-pkgrel=1
-pkgdesc="SDK for building Kubernetes applications"
-arch=('x86_64')
-url="https://github.com/operator-framework/operator-sdk;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('57246fd6c7422f1b65b13ee16a68ce45f8aac895fd7579448cbabcd5323480806556c9b0750ee8176eca9ad4aa1e0708fefc624835a6dc1b50708cd281fa13d2')
-b2sums=('79cffe2bee971e86bd466f2675c4d45cf191c3c5c847567bfb97f148033fdf26bb26687275eb4de0e603a12eb270fa5290de1e4f288e05b5912710d7d3986396')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
-}
-
-build() {
-  cd "${PACKAGE_ROOT}"
-  export CGO_ENABLED=1
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
-}
-
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
-  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
-  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
-}

Copied: operator-sdk/repos/community-x86_64/PKGBUILD (from rev 1001069, 
operator-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 18:00:17 UTC (rev 1001070)
@@ -0,0 +1,44 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=operator-sdk
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="SDK for building Kubernetes applications"
+arch=('x86_64')
+url="https://github.com/operator-framework/operator-sdk;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
+sha512sums=('1a2287bdc23f68a572f501f8f408e6aa83d1968fd1b871d08ff80d9b6df3ca193e6a789c8ba51b41d90e3fa38dc8b9f3e7a621d68361c34852ddc70f1e207c8f')
+b2sums=('81be537f82268dddabd3b3c9863abb63cd135a08ed5708afb3d8cbca2dbca712b395150b7a1b55ac027c9cf1a2ffb361edca33400905014173831ad248e06592')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
+}
+
+build() {
+  cd "${PACKAGE_ROOT}"
+  export CGO_ENABLED=1
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
+}
+
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
+  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
+}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 18:00:11
  Author: shibumi
Revision: 1001069

upgpkg: operator-sdk 1.11.0-1

Modified:
  operator-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:54:22 UTC (rev 1001068)
+++ PKGBUILD2021-08-16 18:00:11 UTC (rev 1001069)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=operator-sdk
-pkgver=1.10.1
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="SDK for building Kubernetes applications"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('57246fd6c7422f1b65b13ee16a68ce45f8aac895fd7579448cbabcd5323480806556c9b0750ee8176eca9ad4aa1e0708fefc624835a6dc1b50708cd281fa13d2')
-b2sums=('79cffe2bee971e86bd466f2675c4d45cf191c3c5c847567bfb97f148033fdf26bb26687275eb4de0e603a12eb270fa5290de1e4f288e05b5912710d7d3986396')
+sha512sums=('1a2287bdc23f68a572f501f8f408e6aa83d1968fd1b871d08ff80d9b6df3ca193e6a789c8ba51b41d90e3fa38dc8b9f3e7a621d68361c34852ddc70f1e207c8f')
+b2sums=('81be537f82268dddabd3b3c9863abb63cd135a08ed5708afb3d8cbca2dbca712b395150b7a1b55ac027c9cf1a2ffb361edca33400905014173831ad248e06592')
 
 prepare() {
   export GOPATH="${srcdir}"



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:54:22
  Author: shibumi
Revision: 1001068

archrelease: copy trunk to community-x86_64

Added:
  fluxctl/repos/community-x86_64/PKGBUILD
(from rev 1001067, fluxctl/trunk/PKGBUILD)
Deleted:
  fluxctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:54:09 UTC (rev 1001067)
+++ PKGBUILD2021-08-16 17:54:22 UTC (rev 1001068)
@@ -1,36 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=fluxctl
-_pkgname=flux
-pkgver=1.23.1
-pkgrel=1
-pkgdesc="Controller for the GitOps Kubernetes operator flux"
-arch=('x86_64')
-url="https://github.com/fluxcd/flux;
-license=('Apache')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
-sha512sums=('43c7161d9e96ab9ac311f966fcd6a6ee9b9c391fc04b028584ca36aeddc93bc16b274b4d2c069e98a5e69f45a4a477d87233b49d0cd243a56c55f6c944c72e79')
-b2sums=('80fd5f85a174fd0ba3817f184876ddac82c59fb752f51b317849bb048f23882e9c08ce6b657aa0daad0abf1c9db69bce9834845d3f9caccfbd4213999fcc6219')
-
-build() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-w -X main.version="${pkgver}" -linkmode=external" .
-  chmod +x ./fluxctl
-}
-
-check() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  go test ./...
-}
-
-package() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  install -Dsm755 ./fluxctl "${pkgdir}/usr/bin/fluxctl"
-}

Copied: fluxctl/repos/community-x86_64/PKGBUILD (from rev 1001067, 
fluxctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:54:22 UTC (rev 1001068)
@@ -0,0 +1,36 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=fluxctl
+_pkgname=flux
+pkgver=1.23.2
+pkgrel=1
+pkgdesc="Controller for the GitOps Kubernetes operator flux"
+arch=('x86_64')
+url="https://github.com/fluxcd/flux;
+license=('Apache')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
+sha512sums=('2d92360aa4667cd0e76fb5e3e226352cf78e4a79de093eadd4c00c9b8d196740a7830cd074bb1cdbee9082d3b942942d5076dcb6b714df385fdfd204757e2d69')
+b2sums=('9fb44e437ca63167c51343c623a05c815697f4c7e55d7eeb944639a37b2b4c08733d3e15467d5dbb0604dfb6b807d73f46fba12848fe4a586a8a9e830ffb79d6')
+
+build() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-w -X main.version="${pkgver}" -linkmode=external" .
+  chmod +x ./fluxctl
+}
+
+check() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  go test ./...
+}
+
+package() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  install -Dsm755 ./fluxctl "${pkgdir}/usr/bin/fluxctl"
+}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:54:09
  Author: shibumi
Revision: 1001067

upgpkg: fluxctl 1.23.2-1

Modified:
  fluxctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:47:38 UTC (rev 1001066)
+++ PKGBUILD2021-08-16 17:54:09 UTC (rev 1001067)
@@ -2,7 +2,7 @@
 
 pkgname=fluxctl
 _pkgname=flux
-pkgver=1.23.1
+pkgver=1.23.2
 pkgrel=1
 pkgdesc="Controller for the GitOps Kubernetes operator flux"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
-sha512sums=('43c7161d9e96ab9ac311f966fcd6a6ee9b9c391fc04b028584ca36aeddc93bc16b274b4d2c069e98a5e69f45a4a477d87233b49d0cd243a56c55f6c944c72e79')
-b2sums=('80fd5f85a174fd0ba3817f184876ddac82c59fb752f51b317849bb048f23882e9c08ce6b657aa0daad0abf1c9db69bce9834845d3f9caccfbd4213999fcc6219')
+sha512sums=('2d92360aa4667cd0e76fb5e3e226352cf78e4a79de093eadd4c00c9b8d196740a7830cd074bb1cdbee9082d3b942942d5076dcb6b714df385fdfd204757e2d69')
+b2sums=('9fb44e437ca63167c51343c623a05c815697f4c7e55d7eeb944639a37b2b4c08733d3e15467d5dbb0604dfb6b807d73f46fba12848fe4a586a8a9e830ffb79d6')
 
 build() {
   cd "${_pkgname}-${pkgver}/cmd/fluxctl"



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:47:38
  Author: shibumi
Revision: 1001066

archrelease: copy trunk to community-x86_64

Added:
  skaffold/repos/community-x86_64/PKGBUILD
(from rev 1001065, skaffold/trunk/PKGBUILD)
  skaffold/repos/community-x86_64/build_info.patch
(from rev 1001065, skaffold/trunk/build_info.patch)
Deleted:
  skaffold/repos/community-x86_64/PKGBUILD
  skaffold/repos/community-x86_64/build_info.patch

--+
 PKGBUILD |  124 ++---
 build_info.patch |   46 +--
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:47:31 UTC (rev 1001065)
+++ PKGBUILD2021-08-16 17:47:38 UTC (rev 1001066)
@@ -1,62 +0,0 @@
-# Maintainer Christian Rebischke 
-# Maintainer: Fredy García 
-# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
-# Contributor: Stefan Cocora 
-
-pkgname=skaffold
-pkgver=1.29.0
-pkgrel=1
-pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
-arch=("x86_64")
-url="https://github.com/GoogleContainerTools/${pkgname};
-license=("Apache")
-depends=("docker")
-makedepends=("go")
-optdepends=(
-  "minikube: To use Minikube"
-  "kubectl: For Kubernetes support"
-  "bash-completion: Tab autocompletion"
-)
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
-)
-sha256sums=('f12b1f608e8f7095bc5976c40c0c80417ee0a24ae7752012f51074539f311046')
-b2sums=('f8a82eeed53c66b69633878c9b6dd02ec8cafec76ea3efe076feb4dae5b852235750addd484800d0aed7c1dbdc4e780dc7e1d849776af51a09f70b4b0466857a')
-_commit="39371bb996a3c39c3d4fa8749cabe173c5f45b3a"
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  rm -rf "${srcdir}/gopath"
-  mkdir -p "${srcdir}/gopath/bin"
-  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
-  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-}
-
-build() {
-  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-  export GOPATH="${srcdir}/gopath"
-  export PATH="${PATH}:${GOPATH}/bin"
-  export VERSION="v${pkgver}"
-  export COMMIT="${_commit}"
-  export TREE_STATE="clean"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -mod=readonly -modcacherw -x -v 
-ldflags=-linkmode=external"
-  make install
-
-  # To avoid issues deleting directories next time
-  go clean --modcache
-
-  # Create completion files
-  "${srcdir}/gopath/bin/${pkgname}" completion bash > 
"${srcdir}/${pkgname}-completion.bash"
-  "${srcdir}/gopath/bin/${pkgname}" completion zsh > 
"${srcdir}/${pkgname}-completion.zsh"
-}
-
-package() {
-  install -Dm755 "${srcdir}/gopath/bin/${pkgname}" 
"${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.bash" 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_skaffold"
-}

Copied: skaffold/repos/community-x86_64/PKGBUILD (from rev 1001065, 
skaffold/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:47:38 UTC (rev 1001066)
@@ -0,0 +1,62 @@
+# Maintainer Christian Rebischke 
+# Maintainer: Fredy García 
+# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
+# Contributor: Stefan Cocora 
+
+pkgname=skaffold
+pkgver=1.30.0
+pkgrel=1
+pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
+arch=("x86_64")
+url="https://github.com/GoogleContainerTools/${pkgname};
+license=("Apache")
+depends=("docker")
+makedepends=("go")
+optdepends=(
+  "minikube: To use Minikube"
+  "kubectl: For Kubernetes support"
+  "bash-completion: Tab autocompletion"
+)
+source=(
+  
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
+)
+sha256sums=('3a40dc813a1e6ca786566c3eb3c6099aadb66e590798bc8bcd774aa09357b764')
+b2sums=('19b0c9bf7a5a0779e277bb7b0fb7dc944aa5ddaf82e52072c7846b23e7830920875e6dd89475de66320cbe325ddb18b96122aa66404cd6759fe376c601bbfba7')
+_commit="dd7e764da6f11eba1047e0773570c1a8c12ff160"
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  rm -rf "${srcdir}/gopath"
+  mkdir -p "${srcdir}/gopath/bin"
+  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
+  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+}
+
+build() {
+  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+  export GOPATH="${srcdir}/gopath"
+  export PATH="${PATH}:${GOPATH}/bin"
+  export VERSION="v${pkgver}"
+  export COMMIT="${_commit}"

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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:47:31
  Author: shibumi
Revision: 1001065

upgpkg: skaffold 1.30.0-1

Modified:
  skaffold/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:42:18 UTC (rev 1001064)
+++ PKGBUILD2021-08-16 17:47:31 UTC (rev 1001065)
@@ -4,7 +4,7 @@
 # Contributor: Stefan Cocora 
 
 pkgname=skaffold
-pkgver=1.29.0
+pkgver=1.30.0
 pkgrel=1
 pkgdesc="A command line tool that facilitates continuous development for 
Kubernetes applications"
 arch=("x86_64")
@@ -20,9 +20,9 @@
 source=(
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz;
 )
-sha256sums=('f12b1f608e8f7095bc5976c40c0c80417ee0a24ae7752012f51074539f311046')
-b2sums=('f8a82eeed53c66b69633878c9b6dd02ec8cafec76ea3efe076feb4dae5b852235750addd484800d0aed7c1dbdc4e780dc7e1d849776af51a09f70b4b0466857a')
-_commit="39371bb996a3c39c3d4fa8749cabe173c5f45b3a"
+sha256sums=('3a40dc813a1e6ca786566c3eb3c6099aadb66e590798bc8bcd774aa09357b764')
+b2sums=('19b0c9bf7a5a0779e277bb7b0fb7dc944aa5ddaf82e52072c7846b23e7830920875e6dd89475de66320cbe325ddb18b96122aa66404cd6759fe376c601bbfba7')
+_commit="dd7e764da6f11eba1047e0773570c1a8c12ff160"
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in kubectl-cert-manager/repos/community-x86_64 (2 files)

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:42:18
  Author: shibumi
Revision: 1001064

archrelease: copy trunk to community-x86_64

Added:
  kubectl-cert-manager/repos/community-x86_64/PKGBUILD
(from rev 1001063, kubectl-cert-manager/trunk/PKGBUILD)
Deleted:
  kubectl-cert-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:42:11 UTC (rev 1001063)
+++ PKGBUILD2021-08-16 17:42:18 UTC (rev 1001064)
@@ -1,45 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: ml <>
-pkgname=kubectl-cert-manager
-pkgver=1.4.3
-pkgrel=1
-pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
-arch=('x86_64' 'aarch64')
-url='https://github.com/jetstack/cert-manager'
-license=('Apache')
-depends=('kubectl')
-makedepends=('git' 'go')
-groups=('kubectl-plugins')
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('5d653aa06f72542c0a907959abee834c627a07a33137bf662f8800ad5f282c24d6ec2c1d9dbbf2a3ee17deab4dd10f7ed1d241f796dba4bb159803ccb5ef2ce2')
-b2sums=('13a787cb0149dff4d70d15d934b7b98483fb40ea281af0a4404f3de499f0b4fa255908e22402750f6be7ab6afa9abd532df316fd50a40261085f91f49baf29dd')
-
-build() {
-  local _x _commit
-  _commit=$(bsdcat "$pkgname-$pkgver.tar.gz" | git get-tar-commit-id)
-  _x=(
-AppVersion="v$pkgver"
-AppGitCommit="${_commit:?}"
-AppGitState="clean"
-  )
-
-  cd cert-manager-"$pkgver"
-  export CGO_ENABLED=1
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export GOFLAGS='-buildmode=pie -trimpath -modcacherw -mod=readonly'
-  go build -ldflags="-linkmode=external 
${_x[*]/#/-X=github.com/jetstack/cert-manager/pkg/util.}" ./cmd/ctl
-}
-
-check() {
-  cd cert-manager-"$pkgver"
-  # we don't want e2e and other tests that explicitly want bazel
-  go test -short ./cmd/ctl/...
-}
-
-package() {
-  cd cert-manager-"$pkgver"
-  install -Dm755 ctl "$pkgdir"/usr/bin/kubectl-cert_manager
-}

Copied: kubectl-cert-manager/repos/community-x86_64/PKGBUILD (from rev 1001063, 
kubectl-cert-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:42:18 UTC (rev 1001064)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Rebischke 
+# Contributor: ml <>
+pkgname=kubectl-cert-manager
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
+arch=('x86_64' 'aarch64')
+url='https://github.com/jetstack/cert-manager'
+license=('Apache')
+depends=('kubectl')
+makedepends=('git' 'go')
+groups=('kubectl-plugins')
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('26d4c7ac3a106bbd6fa1bfce5789f4a2c2469820a5f680d974b8d256077ffad14fa67b16a670c6398a848a95b5fdfccaeaf831824f14bc43be812199be77a2db')
+b2sums=('712a1a0a2bcfac84dc0dce8424fb7a1724c3dea4775660eb1984ea09d4893c3be95624f7ac384627530e4e77ba35e36426376ef5f125878ee16eb16d74adccda')
+
+build() {
+  local _x _commit
+  _commit=$(bsdcat "$pkgname-$pkgver.tar.gz" | git get-tar-commit-id)
+  _x=(
+AppVersion="v$pkgver"
+AppGitCommit="${_commit:?}"
+AppGitState="clean"
+  )
+
+  cd cert-manager-"$pkgver"
+  export CGO_ENABLED=1
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS='-buildmode=pie -trimpath -modcacherw -mod=readonly'
+  go build -ldflags="-linkmode=external 
${_x[*]/#/-X=github.com/jetstack/cert-manager/pkg/util.}" ./cmd/ctl
+}
+
+check() {
+  cd cert-manager-"$pkgver"
+  # we don't want e2e and other tests that explicitly want bazel
+  go test -short ./cmd/ctl/...
+}
+
+package() {
+  cd cert-manager-"$pkgver"
+  install -Dm755 ctl "$pkgdir"/usr/bin/kubectl-cert_manager
+}



[arch-commits] Commit in kubectl-cert-manager/trunk (PKGBUILD)

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:42:11
  Author: shibumi
Revision: 1001063

upgpkg: kubectl-cert-manager 1.5.1-1

Modified:
  kubectl-cert-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:39:38 UTC (rev 1001062)
+++ PKGBUILD2021-08-16 17:42:11 UTC (rev 1001063)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 # Contributor: ml <>
 pkgname=kubectl-cert-manager
-pkgver=1.4.3
+pkgver=1.5.1
 pkgrel=1
 pkgdesc='Automatically provision and manage TLS certificates in Kubernetes'
 arch=('x86_64' 'aarch64')
@@ -11,8 +11,8 @@
 makedepends=('git' 'go')
 groups=('kubectl-plugins')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('5d653aa06f72542c0a907959abee834c627a07a33137bf662f8800ad5f282c24d6ec2c1d9dbbf2a3ee17deab4dd10f7ed1d241f796dba4bb159803ccb5ef2ce2')
-b2sums=('13a787cb0149dff4d70d15d934b7b98483fb40ea281af0a4404f3de499f0b4fa255908e22402750f6be7ab6afa9abd532df316fd50a40261085f91f49baf29dd')
+sha512sums=('26d4c7ac3a106bbd6fa1bfce5789f4a2c2469820a5f680d974b8d256077ffad14fa67b16a670c6398a848a95b5fdfccaeaf831824f14bc43be812199be77a2db')
+b2sums=('712a1a0a2bcfac84dc0dce8424fb7a1724c3dea4775660eb1984ea09d4893c3be95624f7ac384627530e4e77ba35e36426376ef5f125878ee16eb16d74adccda')
 
 build() {
   local _x _commit



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:39:38
  Author: shibumi
Revision: 1001062

archrelease: copy trunk to community-x86_64

Added:
  pulumi/repos/community-x86_64/PKGBUILD
(from rev 1001061, pulumi/trunk/PKGBUILD)
Deleted:
  pulumi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:39:31 UTC (rev 1001061)
+++ PKGBUILD2021-08-16 17:39:38 UTC (rev 1001062)
@@ -1,75 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Christoph Gysin 
-
-pkgname=pulumi
-pkgver=3.9.1
-pkgrel=1
-pkgdesc='Modern Infrastructure as Code'
-arch=('x86_64')
-url="https://github.com/$pkgname/$pkgname;
-license=('GPL')
-depends=('glibc')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('8e57951518c9fe0ee0c1899017540b73d5a4204d4146e43b1acee9cfdfd142c3')
-b2sums=('a8149cf44baa2a58e8179dc61cfb3f1a92e3d9cdc0cd88a73f2a3ded6034792136ce2e8417ee5534ebafe5c166ba5ea30e1ef08ff155d17538448b7b949ca2b3')
-
-_plugins=(
-  "nodejs/cmd/pulumi-language-nodejs"
-  "python/cmd/pulumi-language-python"
-  "dotnet/cmd/pulumi-language-dotnet"
-  "go/pulumi-language-go"
-)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  # Build the `pulumi` executable
-  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
-  go build \
--ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
--o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
-"./cmd/${pkgname}" \
-
-  # Build the plugins
-  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
-  for plugin in "${_plugins[@]}"; do
-plugin_name=${plugin##*/}
-go build \
-  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
-  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
-  "./${plugin}"
-
-# Add possible executor
-if [ -f "${plugin}-exec" ]; then
-  cp "${plugin}-exec" "${srcdir}/${pkgname}-${pkgver}/bin/"
-fi
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Install all executables
-  for f in ./bin/*; do
-install -D -m 755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
-  done
-
-  # Generate Bash completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion bash) \
-"${pkgdir}/etc/bash_completion.d/${pkgname}"
-
-  # Generate ZSH completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion zsh) \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pulumi/repos/community-x86_64/PKGBUILD (from rev 1001061, 
pulumi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:39:38 UTC (rev 1001062)
@@ -0,0 +1,75 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Christoph Gysin 
+
+pkgname=pulumi
+pkgver=3.10.1
+pkgrel=1
+pkgdesc='Modern Infrastructure as Code'
+arch=('x86_64')
+url="https://github.com/$pkgname/$pkgname;
+license=('GPL')
+depends=('glibc')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('78462bdf5afa4129c2d2d72cfedbfd08ae19ea5c3014e5ec9bf029736405f665')
+b2sums=('8df9ce0f9bb28cc3e04e04d2ba9301fa4e5e272a9b3f49d82b93dadf094a6bea2a9e5031e6f98752656a1c86c7180d3b31930f2712f52d2574b88d033cf4352d')
+
+_plugins=(
+  "nodejs/cmd/pulumi-language-nodejs"
+  "python/cmd/pulumi-language-python"
+  "dotnet/cmd/pulumi-language-dotnet"
+  "go/pulumi-language-go"
+)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  # Build the `pulumi` executable
+  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
+  go build \
+-ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+-o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
+"./cmd/${pkgname}" \
+
+  # Build the plugins
+  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
+  for plugin in "${_plugins[@]}"; do
+plugin_name=${plugin##*/}
+go build \
+  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
+  "./${plugin}"
+
+# Add possible executor
+if [ -f "${plugin}-exec" ]; then
+  cp "${plugin}-exec" 

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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:39:31
  Author: shibumi
Revision: 1001061

upgpkg: pulumi 3.10.1-1

Modified:
  pulumi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:35:06 UTC (rev 1001060)
+++ PKGBUILD2021-08-16 17:39:31 UTC (rev 1001061)
@@ -2,7 +2,7 @@
 # Contributor: Christoph Gysin 
 
 pkgname=pulumi
-pkgver=3.9.1
+pkgver=3.10.1
 pkgrel=1
 pkgdesc='Modern Infrastructure as Code'
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('glibc')
 makedepends=('go')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('8e57951518c9fe0ee0c1899017540b73d5a4204d4146e43b1acee9cfdfd142c3')
-b2sums=('a8149cf44baa2a58e8179dc61cfb3f1a92e3d9cdc0cd88a73f2a3ded6034792136ce2e8417ee5534ebafe5c166ba5ea30e1ef08ff155d17538448b7b949ca2b3')
+sha256sums=('78462bdf5afa4129c2d2d72cfedbfd08ae19ea5c3014e5ec9bf029736405f665')
+b2sums=('8df9ce0f9bb28cc3e04e04d2ba9301fa4e5e272a9b3f49d82b93dadf094a6bea2a9e5031e6f98752656a1c86c7180d3b31930f2712f52d2574b88d033cf4352d')
 
 _plugins=(
   "nodejs/cmd/pulumi-language-nodejs"



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:35:06
  Author: shibumi
Revision: 1001060

archrelease: copy trunk to community-x86_64

Added:
  hcloud/repos/community-x86_64/PKGBUILD
(from rev 1001059, hcloud/trunk/PKGBUILD)
Deleted:
  hcloud/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:34:59 UTC (rev 1001059)
+++ PKGBUILD2021-08-16 17:35:06 UTC (rev 1001060)
@@ -1,49 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Konrad Tegtmeier 
-
-_pkgname=cli
-pkgname=hcloud
-pkgver=1.26.1
-pkgrel=1
-pkgdesc="CLI for Hetzner Cloud"
-arch=('x86_64')
-url="https://github.com/hetznercloud/cli;
-license=('MIT')
-optdepends=('bash-completion: tab auto-completion'
-'zsh: tab auto-completion')
-makedepends=('go-pie')
-depends=('glibc')
-provides=('hcloud')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hetznercloud/cli/archive/refs/tags/v${pkgver}.tar.gz;)
-sha512sums=('1450db0b6b90e3539018dcb4dc867af4dfe9eadb557b2e5a1fce8ba7f84ffba356ff771f9c49876a8f192c0b5f554dcec27d53b24be5772876dc0384ca4000b8')
-
-build() {
-  export CGO_ENABLED=1
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  cd "cli-${pkgver}"
-  go build \
--ldflags "-linkmode=external -w -X 
github.com/hetznercloud/cli/internal/version.Version=${pkgver}" \
-github.com/hetznercloud/cli/cmd/hcloud
-  chmod +x ./hcloud
-}
-
-check() {
-  cd "cli-${pkgver}"
-  go test -v -x ./...
-}
-
-package() {
-  cd "cli-${pkgver}"
-  install -Dsm755 ./hcloud "${pkgdir}/usr/bin/hcloud"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  mkdir -p 
"$pkgdir"/usr/share/{bash-completion/completions,zsh/site-functions,fish/vendor_completions.d}
-  ./hcloud completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/hcloud"
-  ./hcloud completion zsh > "${pkgdir}/usr/share/zsh/site-functions/_hcloud"
-  ./hcloud completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/hcloud.fish"
-}

Copied: hcloud/repos/community-x86_64/PKGBUILD (from rev 1001059, 
hcloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:35:06 UTC (rev 1001060)
@@ -0,0 +1,49 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Konrad Tegtmeier 
+
+_pkgname=cli
+pkgname=hcloud
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="CLI for Hetzner Cloud"
+arch=('x86_64')
+url="https://github.com/hetznercloud/cli;
+license=('MIT')
+optdepends=('bash-completion: tab auto-completion'
+'zsh: tab auto-completion')
+makedepends=('go-pie')
+depends=('glibc')
+provides=('hcloud')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hetznercloud/cli/archive/refs/tags/v${pkgver}.tar.gz;)
+sha512sums=('4a1d2186eb73df67ab1958bc874e3fcc286a0f717359bc47b2fbf015f612683ec8c2edf1712f7f89372b9059bc92b618fbed25e2bee2d188f3ab660aeee3efa3')
+
+build() {
+  export CGO_ENABLED=1
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  cd "cli-${pkgver}"
+  go build \
+-ldflags "-linkmode=external -w -X 
github.com/hetznercloud/cli/internal/version.Version=${pkgver}" \
+github.com/hetznercloud/cli/cmd/hcloud
+  chmod +x ./hcloud
+}
+
+check() {
+  cd "cli-${pkgver}"
+  go test -v -x ./...
+}
+
+package() {
+  cd "cli-${pkgver}"
+  install -Dsm755 ./hcloud "${pkgdir}/usr/bin/hcloud"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mkdir -p 
"$pkgdir"/usr/share/{bash-completion/completions,zsh/site-functions,fish/vendor_completions.d}
+  ./hcloud completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/hcloud"
+  ./hcloud completion zsh > "${pkgdir}/usr/share/zsh/site-functions/_hcloud"
+  ./hcloud completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/hcloud.fish"
+}



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

2021-08-16 Thread Christian Rebischke via arch-commits
Date: Monday, August 16, 2021 @ 17:34:59
  Author: shibumi
Revision: 1001059

upgpkg: hcloud 1.27.0-1

Modified:
  hcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:12:18 UTC (rev 1001058)
+++ PKGBUILD2021-08-16 17:34:59 UTC (rev 1001059)
@@ -4,7 +4,7 @@
 
 _pkgname=cli
 pkgname=hcloud
-pkgver=1.26.1
+pkgver=1.27.0
 pkgrel=1
 pkgdesc="CLI for Hetzner Cloud"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 depends=('glibc')
 provides=('hcloud')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hetznercloud/cli/archive/refs/tags/v${pkgver}.tar.gz;)
-sha512sums=('1450db0b6b90e3539018dcb4dc867af4dfe9eadb557b2e5a1fce8ba7f84ffba356ff771f9c49876a8f192c0b5f554dcec27d53b24be5772876dc0384ca4000b8')
+sha512sums=('4a1d2186eb73df67ab1958bc874e3fcc286a0f717359bc47b2fbf015f612683ec8c2edf1712f7f89372b9059bc92b618fbed25e2bee2d188f3ab660aeee3efa3')
 
 build() {
   export CGO_ENABLED=1



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 17:12:18
  Author: polyzen
Revision: 1001058

archrelease: copy trunk to community-x86_64

Added:
  rust-analyzer/repos/community-x86_64/PKGBUILD
(from rev 1001057, rust-analyzer/trunk/PKGBUILD)
Deleted:
  rust-analyzer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:12:00 UTC (rev 1001057)
+++ PKGBUILD2021-08-16 17:12:18 UTC (rev 1001058)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2021-08-09
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc='Experimental Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://rust-analyzer.github.io/
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust')
-makedepends=('git')
-source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked
-}
-
-build() {
-  cd $pkgname
-  cargo build --release --locked --offline
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 1001057, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:12:18 UTC (rev 1001058)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2021-08-16
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc='Experimental Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://rust-analyzer.github.io/
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust')
+makedepends=('git')
+source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked
+}
+
+build() {
+  cd $pkgname
+  cargo build --release --locked --offline
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-16 Thread Daniel M. Capella via arch-commits
Date: Monday, August 16, 2021 @ 17:12:00
  Author: polyzen
Revision: 1001057

upgpkg: rust-analyzer 20210816-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:38:10 UTC (rev 1001056)
+++ PKGBUILD2021-08-16 17:12:00 UTC (rev 1001057)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2021-08-09
+_pkgver=2021-08-16
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Experimental Rust compiler front-end for IDEs'



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 17:11:17
  Author: heftig
Revision: 422288

archrelease: copy trunk to extra-x86_64

Added:
  libsrtp/repos/extra-x86_64/PKGBUILD
(from rev 422287, libsrtp/trunk/PKGBUILD)
Deleted:
  libsrtp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:11:09 UTC (rev 422287)
+++ PKGBUILD2021-08-16 17:11:17 UTC (rev 422288)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Sergej Pupykin 
-# Contributor: Yejun Yang 
-# Contributor: Michal Krenek 
-
-pkgname=libsrtp
-pkgver=2.3.0
-pkgrel=1
-epoch=1
-pkgdesc="Library for SRTP (Secure Realtime Transport Protocol)"
-url="https://github.com/cisco/libsrtp;
-arch=(x86_64)
-license=(BSD)
-depends=(openssl)
-makedepends=(git)
-checkdepends=(libpcap procps-ng)
-options=(staticlibs)
-_commit=d02d2e379c297e93a9033d7b653135f732ee  # tags/v2.3.0
-source=("git+https://github.com/cisco/libsrtp#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Fixup pkgver: There are tags like v1.5.4 but also "moving" tags like v1 
and v1.5
-  git tag | grep -Pv '^v\d+.\d+.\d+$' | xargs git tag -d
-
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --enable-openssl
-  make all
-  make shared_library  # Keep separate to link test apps against static lib
-}
-
-check() {
-  cd $pkgname
-  make runtest
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE
-}

Copied: libsrtp/repos/extra-x86_64/PKGBUILD (from rev 422287, 
libsrtp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:11:17 UTC (rev 422288)
@@ -0,0 +1,54 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Yejun Yang 
+# Contributor: Michal Krenek 
+
+pkgname=libsrtp
+pkgver=2.4.0
+pkgrel=1
+epoch=1
+pkgdesc="Library for SRTP (Secure Realtime Transport Protocol)"
+url="https://github.com/cisco/libsrtp;
+arch=(x86_64)
+license=(BSD)
+depends=(nss)
+makedepends=(git meson libpcap doxygen)
+checkdepends=(procps-ng)
+provides=("libsrtp${pkgver%%.*}.so")
+_commit=063e3652feae15ec48614a91d32757781e6251b4  # tags/v2.4.0
+source=("git+https://github.com/cisco/libsrtp#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Fixup pkgver: There are tags like v1.5.4 but also "moving" tags like v1 
and v1.5
+  git tag | grep -Pv '^v\d+.\d+.\d+$' | xargs git tag -d
+}
+
+build() {
+  arch-meson $pkgname build \
+--buildtype release \
+-D crypto-library=nss \
+-D crypto-library-kdf=disabled
+  meson compile -C build
+  meson compile -C build doc
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+
+  mkdir -p "$pkgdir/usr/share/doc"
+  cp -a build/html "$pkgdir/usr/share/doc/$pkgname"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/LICENSE
+}



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 17:11:09
  Author: heftig
Revision: 422287

2.4.0-1

Modified:
  libsrtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 17:05:06 UTC (rev 422286)
+++ PKGBUILD2021-08-16 17:11:09 UTC (rev 422287)
@@ -1,10 +1,10 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Sergej Pupykin 
 # Contributor: Yejun Yang 
 # Contributor: Michal Krenek 
 
 pkgname=libsrtp
-pkgver=2.3.0
+pkgver=2.4.0
 pkgrel=1
 epoch=1
 pkgdesc="Library for SRTP (Secure Realtime Transport Protocol)"
@@ -11,11 +11,11 @@
 url="https://github.com/cisco/libsrtp;
 arch=(x86_64)
 license=(BSD)
-depends=(openssl)
-makedepends=(git)
-checkdepends=(libpcap procps-ng)
-options=(staticlibs)
-_commit=d02d2e379c297e93a9033d7b653135f732ee  # tags/v2.3.0
+depends=(nss)
+makedepends=(git meson libpcap doxygen)
+checkdepends=(procps-ng)
+provides=("libsrtp${pkgver%%.*}.so")
+_commit=063e3652feae15ec48614a91d32757781e6251b4  # tags/v2.4.0
 source=("git+https://github.com/cisco/libsrtp#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -29,24 +29,26 @@
 
   # Fixup pkgver: There are tags like v1.5.4 but also "moving" tags like v1 
and v1.5
   git tag | grep -Pv '^v\d+.\d+.\d+$' | xargs git tag -d
-
-  autoreconf -fvi
 }
 
 build() {
-  cd $pkgname
-  ./configure --prefix=/usr --enable-openssl
-  make all
-  make shared_library  # Keep separate to link test apps against static lib
+  arch-meson $pkgname build \
+--buildtype release \
+-D crypto-library=nss \
+-D crypto-library-kdf=disabled
+  meson compile -C build
+  meson compile -C build doc
 }
 
 check() {
-  cd $pkgname
-  make runtest
+  meson test -C build --print-errorlogs
 }
 
 package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE
+  meson install -C build --destdir "$pkgdir"
+
+  mkdir -p "$pkgdir/usr/share/doc"
+  cp -a build/html "$pkgdir/usr/share/doc/$pkgname"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/LICENSE
 }



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 17:05:06
  Author: heftig
Revision: 422286

archrelease: copy trunk to extra-x86_64

Added:
  pavucontrol/repos/extra-x86_64/PKGBUILD
(from rev 422285, pavucontrol/trunk/PKGBUILD)
Deleted:
  pavucontrol/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 17:04:28 UTC (rev 422285)
+++ PKGBUILD2021-08-16 17:05:06 UTC (rev 422286)
@@ -1,40 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Daniel J Griffiths 
-# Contributor: Corrado Primier 
-# Contributor: William Rea 
-
-pkgname=pavucontrol
-pkgdesc="PulseAudio Volume Control"
-pkgver=4.0
-pkgrel=2
-epoch=1
-arch=(x86_64)
-url="https://freedesktop.org/software/pulseaudio/pavucontrol/;
-license=(GPL)
-depends=(libcanberra-pulse gtkmm3 libsigc++)
-makedepends=(intltool lynx git)
-optdepends=("pulseaudio: Audio backend")
-_commit=57cf49f1e8675d58bf215c2fd9ba3b8c01cf254a  # tags/v4.0^0
-source=("git+https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pavucontrol
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd pavucontrol
-  NOCONFIGURE=1 ./bootstrap.sh
-}
-
-build() {
-  cd pavucontrol
-  ./configure --prefix=/usr --enable-gtk3
-  make
-}
-
-package() {
-  cd pavucontrol
-  make DESTDIR="$pkgdir" install
-}

Copied: pavucontrol/repos/extra-x86_64/PKGBUILD (from rev 422285, 
pavucontrol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 17:05:06 UTC (rev 422286)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel J Griffiths 
+# Contributor: Corrado Primier 
+# Contributor: William Rea 
+
+pkgname=pavucontrol
+pkgver=5.0
+pkgrel=1
+epoch=1
+pkgdesc="PulseAudio Volume Control"
+url="https://freedesktop.org/software/pulseaudio/pavucontrol/;
+arch=(x86_64)
+license=(GPL)
+depends=(libcanberra-pulse gtkmm3 libsigc++ json-glib)
+makedepends=(intltool lynx git)
+optdepends=("pulseaudio: Audio backend")
+_commit=14e7cc0a215a708d845adf5eab715ec598814bb4  # tags/v5.0^0
+source=("git+https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pavucontrol
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd pavucontrol
+  NOCONFIGURE=1 ./bootstrap.sh
+}
+
+build() {
+  cd pavucontrol
+  ./configure --prefix=/usr --enable-gtk3
+  make
+}
+
+package() {
+  cd pavucontrol
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 17:04:28
  Author: heftig
Revision: 422285

5.0-1

Modified:
  pavucontrol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:38:25 UTC (rev 422284)
+++ PKGBUILD2021-08-16 17:04:28 UTC (rev 422285)
@@ -1,20 +1,20 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Daniel J Griffiths 
 # Contributor: Corrado Primier 
 # Contributor: William Rea 
 
 pkgname=pavucontrol
+pkgver=5.0
+pkgrel=1
+epoch=1
 pkgdesc="PulseAudio Volume Control"
-pkgver=4.0
-pkgrel=2
-epoch=1
+url="https://freedesktop.org/software/pulseaudio/pavucontrol/;
 arch=(x86_64)
-url="https://freedesktop.org/software/pulseaudio/pavucontrol/;
 license=(GPL)
-depends=(libcanberra-pulse gtkmm3 libsigc++)
+depends=(libcanberra-pulse gtkmm3 libsigc++ json-glib)
 makedepends=(intltool lynx git)
 optdepends=("pulseaudio: Audio backend")
-_commit=57cf49f1e8675d58bf215c2fd9ba3b8c01cf254a  # tags/v4.0^0
+_commit=14e7cc0a215a708d845adf5eab715ec598814bb4  # tags/v5.0^0
 
source=("git+https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:38:10
  Author: kgizdov
Revision: 1001056

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/
  blender/repos/community-testing-x86_64/D8063-cuda11.diff
(from rev 1001055, blender/trunk/D8063-cuda11.diff)
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 1001055, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/blender-openexr3.patch
(from rev 1001055, blender/trunk/blender-openexr3.patch)
  blender/repos/community-testing-x86_64/cuda11.patch
(from rev 1001055, blender/trunk/cuda11.patch)
  blender/repos/community-testing-x86_64/embree.patch
(from rev 1001055, blender/trunk/embree.patch)

+
 D8063-cuda11.diff  |  105 +++
 PKGBUILD   |   90 
 blender-openexr3.patch |   42 ++
 cuda11.patch   |   91 
 embree.patch   |   43 +++
 5 files changed, 371 insertions(+)

Copied: blender/repos/community-testing-x86_64/D8063-cuda11.diff (from rev 
1001055, blender/trunk/D8063-cuda11.diff)
===
--- community-testing-x86_64/D8063-cuda11.diff  (rev 0)
+++ community-testing-x86_64/D8063-cuda11.diff  2021-08-16 16:38:10 UTC (rev 
1001056)
@@ -0,0 +1,105 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -375,7 +375,7 @@
+ option(WITH_CYCLES_CUBIN_COMPILER   "Build cubins with nvrtc based compiler 
instead of nvcc" OFF)
+ option(WITH_CYCLES_CUDA_BUILD_SERIAL "Build cubins one after another (useful 
on machines with limited RAM)" OFF)
+ mark_as_advanced(WITH_CYCLES_CUDA_BUILD_SERIAL)
+-set(CYCLES_CUDA_BINARIES_ARCH sm_30 sm_35 sm_37 sm_50 sm_52 sm_60 sm_61 sm_70 
sm_75 CACHE STRING "CUDA architectures to build binaries for")
++set(CYCLES_CUDA_BINARIES_ARCH sm_30 sm_35 sm_37 sm_50 sm_52 sm_60 sm_61 sm_70 
sm_75 sm_80 CACHE STRING "CUDA architectures to build binaries for")
+ mark_as_advanced(CYCLES_CUDA_BINARIES_ARCH)
+ unset(PLATFORM_DEFAULT)
+ option(WITH_CYCLES_LOGGING  "Build Cycles with logging support" ON)
+diff --git a/build_files/cmake/config/blender_release.cmake 
b/build_files/cmake/config/blender_release.cmake
+--- a/build_files/cmake/config/blender_release.cmake
 b/build_files/cmake/config/blender_release.cmake
+@@ -52,7 +52,7 @@
+ set(WITH_MEM_JEMALLOC  ON  CACHE BOOL "" FORCE)
+ set(WITH_CYCLES_CUDA_BINARIES  ON  CACHE BOOL "" FORCE)
+ set(WITH_CYCLES_CUBIN_COMPILER OFF CACHE BOOL "" FORCE)
+-set(CYCLES_CUDA_BINARIES_ARCH 
sm_30;sm_35;sm_37;sm_50;sm_52;sm_60;sm_61;sm_70;sm_75 CACHE STRING "" FORCE)
++set(CYCLES_CUDA_BINARIES_ARCH 
sm_30;sm_35;sm_37;sm_50;sm_52;sm_60;sm_61;sm_70;sm_75;sm_80 CACHE STRING "" 
FORCE)
+ set(WITH_CYCLES_DEVICE_OPTIX   ON CACHE BOOL "" FORCE)
+ 
+ # platform dependent options
+diff --git a/intern/cycles/CMakeLists.txt b/intern/cycles/CMakeLists.txt
+--- a/intern/cycles/CMakeLists.txt
 b/intern/cycles/CMakeLists.txt
+@@ -313,7 +313,7 @@
+   set(MAX_MSVC 1910)
+ elseif(${CUDA_VERSION} EQUAL "9.1")
+   set(MAX_MSVC 1911)
+-elseif(${CUDA_VERSION} LESS "11.0")
++elseif(${CUDA_VERSION} LESS "12.0")
+   set(MAX_MSVC 1999)
+ endif()
+ if(NOT MSVC_VERSION LESS ${MAX_MSVC} OR CMAKE_C_COMPILER_ID MATCHES 
"Clang")
+diff --git a/intern/cycles/kernel/CMakeLists.txt 
b/intern/cycles/kernel/CMakeLists.txt
+--- a/intern/cycles/kernel/CMakeLists.txt
 b/intern/cycles/kernel/CMakeLists.txt
+@@ -485,8 +485,12 @@
+   foreach(arch ${CYCLES_CUDA_BINARIES_ARCH})
+ if(${arch} MATCHES "sm_2.")
+   message(STATUS "CUDA binaries for ${arch} are no longer supported, 
skipped.")
++elseif(${arch} MATCHES "sm_30" AND ${CUDA_VERSION} GREATER 109)
++  message(STATUS "CUDA binaries for ${arch} are no longer supported, 
skipped.")
+ elseif(${arch} MATCHES "sm_7." AND ${CUDA_VERSION} LESS 100)
+   message(STATUS "CUDA binaries for ${arch} require CUDA 10.0+, skipped.")
++elseif(${arch} MATCHES "sm_8." AND ${CUDA_VERSION} LESS 110)
++  message(STATUS "CUDA binaries for ${arch} require CUDA 11.0+, skipped.")
+ else()
+   # Compile regular kernel
+   CYCLES_CUDA_KERNEL_ADD(${arch} ${prev_arch} filter "" 
"${cuda_filter_sources}" FALSE)
+@@ -525,6 +529,11 @@
+   set(cuda_flags ${cuda_flags}
+ -D __KERNEL_DEBUG__)
+ endif()
++set(OPTIX_TARGET 30)
++if(${CUDA_VERSION} GREATER 109) #cuda 11
++  set(OPTIX_TARGET 52)
++endif()
++
+ if(WITH_CYCLES_CUBIN_COMPILER)
+ 
+   # Needed to find libnvrtc-builtins.so. Can't do it from inside
+@@ -536,7 +545,6 @@
+ set(CUBIN_CC_ENV ${CMAKE_COMMAND}
+   -E env LD_LIBRARY_PATH="${CUDA_TOOLKIT_ROOT_DIR}/lib64")
+   endif()
+-
+   add_custom_command(
+ OUTPUT 

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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 16:38:25
  Author: heftig
Revision: 422284

archrelease: copy trunk to extra-x86_64

Added:
  vala/repos/extra-x86_64/PKGBUILD
(from rev 422282, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 16:38:24 UTC (rev 422283)
+++ PKGBUILD2021-08-16 16:38:25 UTC (rev 422284)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.52.4
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
-makedepends=(libxslt vala git help2man autoconf-archive)
-checkdepends=(dbus libx11 gobject-introspection)
-provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
-conflicts=(valadoc)
-replaces=(valadoc)
-_commit=bf729240fe600c0b20b814a015efd773cc3d06b3  # tags/0.52.4^0
-source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 422282, vala/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 16:38:25 UTC (rev 422284)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.52.5
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
+makedepends=(libxslt vala git help2man autoconf-archive)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=f8bad6ef427c15af35e49a92f653f0c84ba989fc  # tags/0.52.5^0
+source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in gi-docgen/repos/extra-any (PKGBUILD PKGBUILD)

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 16:38:24
  Author: heftig
Revision: 422283

archrelease: copy trunk to extra-any

Added:
  gi-docgen/repos/extra-any/PKGBUILD
(from rev 422282, gi-docgen/trunk/PKGBUILD)
Deleted:
  gi-docgen/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 16:38:01 UTC (rev 422282)
+++ PKGBUILD2021-08-16 16:38:24 UTC (rev 422283)
@@ -1,36 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gi-docgen
-pkgver=2021.6
-pkgrel=1
-pkgdesc="Documentation generator for GObject-based libraries"
-url="https://gnome.pages.gitlab.gnome.org/gi-docgen/;
-arch=(any)
-license=(Apache GPL3)
-depends=(python-jinja python-markdown python-markupsafe python-pygments
- python-toml python-typogrify)
-makedepends=(python-setuptools git)
-_commit=cb76996ba9ef7a1634ab9bde30c77c3bbb47c8db  # tags/2021.6^0
-source=("git+https://gitlab.gnome.org/GNOME/gi-docgen.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  cd $pkgname
-  python setup.py build
-}
-
-package() {
-  cd $pkgname
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set sw=2 et:

Copied: gi-docgen/repos/extra-any/PKGBUILD (from rev 422282, 
gi-docgen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 16:38:24 UTC (rev 422283)
@@ -0,0 +1,36 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gi-docgen
+pkgver=2021.7
+pkgrel=1
+pkgdesc="Documentation generator for GObject-based libraries"
+url="https://gnome.pages.gitlab.gnome.org/gi-docgen/;
+arch=(any)
+license=(Apache GPL3)
+depends=(python-jinja python-markdown python-markupsafe python-pygments
+ python-toml python-typogrify)
+makedepends=(python-setuptools git)
+_commit=8401357079fdd2f61bff0e110d7379635b73ead8  # tags/2021.7^0
+source=("git+https://gitlab.gnome.org/GNOME/gi-docgen.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  cd $pkgname
+  python setup.py build
+}
+
+package() {
+  cd $pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set sw=2 et:



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:38:02
  Author: kgizdov
Revision: 1001055

upgpkg: blender 17:2.93.2-2: cuda 11.4.1 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:29:10 UTC (rev 1001054)
+++ PKGBUILD2021-08-16 16:38:02 UTC (rev 1001055)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=2.93.2
-pkgrel=1
+pkgrel=2
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 16:38:01
  Author: heftig
Revision: 422282

2021.7-1

Modified:
  gi-docgen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:38:01 UTC (rev 422281)
+++ PKGBUILD2021-08-16 16:38:01 UTC (rev 422282)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gi-docgen
-pkgver=2021.6
+pkgver=2021.7
 pkgrel=1
 pkgdesc="Documentation generator for GObject-based libraries"
 url="https://gnome.pages.gitlab.gnome.org/gi-docgen/;
@@ -10,7 +10,7 @@
 depends=(python-jinja python-markdown python-markupsafe python-pygments
  python-toml python-typogrify)
 makedepends=(python-setuptools git)
-_commit=cb76996ba9ef7a1634ab9bde30c77c3bbb47c8db  # tags/2021.6^0
+_commit=8401357079fdd2f61bff0e110d7379635b73ead8  # tags/2021.7^0
 source=("git+https://gitlab.gnome.org/GNOME/gi-docgen.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-08-16 Thread Jan Steffens via arch-commits
Date: Monday, August 16, 2021 @ 16:38:01
  Author: heftig
Revision: 422281

0.52.5-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:14:38 UTC (rev 422280)
+++ PKGBUILD2021-08-16 16:38:01 UTC (rev 422281)
@@ -4,7 +4,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.52.4
+pkgver=0.52.5
 pkgrel=1
 pkgdesc='Compiler for the GObject type system'
 url='https://wiki.gnome.org/Projects/Vala'
@@ -16,7 +16,7 @@
 provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
 conflicts=(valadoc)
 replaces=(valadoc)
-_commit=bf729240fe600c0b20b814a015efd773cc3d06b3  # tags/0.52.4^0
+_commit=f8bad6ef427c15af35e49a92f653f0c84ba989fc  # tags/0.52.5^0
 source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:29:10
  Author: kgizdov
Revision: 1001054

archrelease: copy trunk to community-testing-x86_64

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

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

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

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



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:29:01
  Author: kgizdov
Revision: 1001053

upgpkg: arrayfire 3.8.0-11: cuda 11.4.1 rebuild

Modified:
  arrayfire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 16:04:25 UTC (rev 1001052)
+++ PKGBUILD2021-08-16 16:29:01 UTC (rev 1001053)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=arrayfire
 pkgver=3.8.0
-pkgrel=10
+pkgrel=11
 pkgdesc="High performance software library for parallel computing with an 
easy-to-use API"
 arch=('x86_64')
 url='https://arrayfire.com'
@@ -42,7 +42,7 @@
   -DAF_BUILD_DOCS=ON \
   
-DCUDA_architecture_build_targets="5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5;8.0;8.6;8.6+PTX"
 \
   -DCMAKE_BUILD_TYPE=Release \
-  -DCUDA_HOST_COMPILER=/usr/bin/gcc-10 \
+  -DCUDA_HOST_COMPILER=/usr/bin/gcc \
   -DBoost_NO_BOOST_CMAKE=ON
 
   ninja -C build



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 16:14:38
  Author: anatolik
Revision: 422280

archrelease: copy trunk to testing-x86_64

Added:
  snappy/repos/testing-x86_64/
  snappy/repos/testing-x86_64/PKGBUILD
(from rev 422279, snappy/trunk/PKGBUILD)
  snappy/repos/testing-x86_64/snappy.pc
(from rev 422279, snappy/trunk/snappy.pc)

---+
 PKGBUILD  |   66 
 snappy.pc |   10 +
 2 files changed, 76 insertions(+)

Copied: snappy/repos/testing-x86_64/PKGBUILD (from rev 422279, 
snappy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-16 16:14:38 UTC (rev 422280)
@@ -0,0 +1,66 @@
+# Maintainer: Dave Reisner 
+# Contributor: Antony Male >
+
+pkgname=snappy
+pkgver=1.1.9
+pkgrel=1
+pkgdesc='A fast compressor/decompressor library'
+arch=('x86_64')
+url="https://google.github.io/snappy/;
+license=('BSD')
+depends=('glibc' 'gcc-libs')
+checkdepends=('zlib')
+makedepends=('cmake' 'clang' 'gtest' 'benchmark')
+source=("https://github.com/google/snappy/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+snappy.pc
+
system_gtest.patch::https://github.com/google/snappy/commit/114df35e84ad95b6d5afbcf69aa85a14ff029000.patch
+
fix_inline.patch::https://github.com/google/snappy/pull/128/commits/0c716d435abe65250100c2caea0e5126ac4e14bd.patch)
+sha256sums=('75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7'
+'d210ff4d3ffe9a987b974a8387d967af66a93bf90d72fedce94a2159d937813e'
+'ca96fd9e72f35ea63af82f19ff1ca93441bf5ea6b3f53ef4b974e83c249d8e3e'
+'ad79190b274df5ddabf14eddd2bb0d9a091ee7d44e4afde89febf9a8f783fdce')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -p1 < ../system_gtest.patch # https://github.com/google/snappy/pull/132
+  patch -p1 < ../fix_inline.patch # https://github.com/google/snappy/pull/128
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # compile without assertions
+  CXXFLAGS+=\ -DNDEBUG
+
+  # export CXX=clang++
+
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DBUILD_SHARED_LIBS=yes \
+-DSNAPPY_USE_BUNDLED_GTEST=OFF \
+-DSNAPPY_USE_BUNDLED_BENCHMARK_LIB=OFF \
+.
+
+  make
+}
+
+check() {
+  # compile without assertions
+  CXXFLAGS+=\ -DNDEBUG
+
+  make -C "$pkgname-$pkgver" test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -m644 -D COPYING "$pkgdir/usr/share/licenses/snappy/LICENSE"
+
+  # upstream dropped the pkgconfig file and isn't interested in adding it back.
+  # https://github.com/google/snappy/pull/55
+  install -Dm644 "$srcdir/snappy.pc" "$pkgdir/usr/lib/pkgconfig/snappy.pc"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: snappy/repos/testing-x86_64/snappy.pc (from rev 422279, 
snappy/trunk/snappy.pc)
===
--- testing-x86_64/snappy.pc(rev 0)
+++ testing-x86_64/snappy.pc2021-08-16 16:14:38 UTC (rev 422280)
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: snappy
+Description: A fast compression/decompression library
+Version: 1.1.4
+Libs: -L${libdir} -lsnappy
+Cflags: -I${includedir}



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 16:14:11
  Author: anatolik
Revision: 422279

upgpkg: snappy 1.1.9-1

Modified:
  snappy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:14:28 UTC (rev 422278)
+++ PKGBUILD2021-08-16 16:14:11 UTC (rev 422279)
@@ -2,8 +2,8 @@
 # Contributor: Antony Male >
 
 pkgname=snappy
-pkgver=1.1.8
-pkgrel=2
+pkgver=1.1.9
+pkgrel=1
 pkgdesc='A fast compressor/decompressor library'
 arch=('x86_64')
 url="https://google.github.io/snappy/;
@@ -10,12 +10,22 @@
 license=('BSD')
 depends=('glibc' 'gcc-libs')
 checkdepends=('zlib')
-makedepends=('cmake' 'clang')
+makedepends=('cmake' 'clang' 'gtest' 'benchmark')
 
source=("https://github.com/google/snappy/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-snappy.pc)
-md5sums=('70e48cba7fecf289153d009791c9977f'
- '4b491e29a8142fedd11472306f5c1192')
+snappy.pc
+
system_gtest.patch::https://github.com/google/snappy/commit/114df35e84ad95b6d5afbcf69aa85a14ff029000.patch
+
fix_inline.patch::https://github.com/google/snappy/pull/128/commits/0c716d435abe65250100c2caea0e5126ac4e14bd.patch)
+sha256sums=('75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7'
+'d210ff4d3ffe9a987b974a8387d967af66a93bf90d72fedce94a2159d937813e'
+'ca96fd9e72f35ea63af82f19ff1ca93441bf5ea6b3f53ef4b974e83c249d8e3e'
+'ad79190b274df5ddabf14eddd2bb0d9a091ee7d44e4afde89febf9a8f783fdce')
 
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -p1 < ../system_gtest.patch # https://github.com/google/snappy/pull/132
+  patch -p1 < ../fix_inline.patch # https://github.com/google/snappy/pull/128
+}
+
 build() {
   cd "$pkgname-$pkgver"
 
@@ -28,6 +38,8 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
 -DBUILD_SHARED_LIBS=yes \
+-DSNAPPY_USE_BUNDLED_GTEST=OFF \
+-DSNAPPY_USE_BUNDLED_BENCHMARK_LIB=OFF \
 .
 
   make



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:04:25
  Author: kgizdov
Revision: 1001052

archrelease: copy trunk to community-testing-x86_64

Added:
  opensubdiv/repos/community-testing-x86_64/
  opensubdiv/repos/community-testing-x86_64/PKGBUILD
(from rev 1001051, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-testing-x86_64/cuda11.patch
(from rev 1001051, opensubdiv/trunk/cuda11.patch)
  opensubdiv/repos/community-testing-x86_64/python3.patch
(from rev 1001051, opensubdiv/trunk/python3.patch)

---+
 PKGBUILD  |   47 ++
 cuda11.patch  |   17 ++
 python3.patch |  139 
 3 files changed, 203 insertions(+)

Copied: opensubdiv/repos/community-testing-x86_64/PKGBUILD (from rev 1001051, 
opensubdiv/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-16 16:04:25 UTC (rev 1001052)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.4.4
+pkgrel=5
+pkgdesc="An Open-Source subdivision surface library"
+arch=(x86_64)
+url="http://graphics.pixar.com/opensubdiv;
+license=('APACHE')
+depends=('ptex' 'intel-tbb' 'libxcursor' 'xorg-xrandr' 'libxinerama')
+makedepends=('cmake' 'doxygen' 'glfw' 'glew' 'python' 'python-pygments' 
'python-docutils' 'opencl-headers' 'cuda')
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;
+python3.patch
+cuda11.patch)
+sha512sums=('fc8f28b79347015c8991150535c1339e695d96947c72fadd4fa27b546a0813c1125cd175ee03bed5aacdb3609f74c4e526ef70103d1195ba9f7df041e73ea9fb'
+
'10f1f63e07d59deb4d91ba04448bb360efff0e41202bb6737caffbce09ba244efb349fe25b24880420b80fdadb268aed84923464af0d66ee1a36e4ba8f96cfd5'
+
'a9f15c1c2c66d5ecfd4b9b9e8f5a5a455488c5745def284fc5f1ac22f4429974de2b85c6da5289c0290ec9a02c2e2d022fcd760e5d37f532a0cd8c479c7f2d1a')
+
+prepare() {
+  cd "OpenSubdiv-${pkgver//./_}"
+
+  patch -Np1 -i "${srcdir}"/python3.patch
+  patch -Np1 -i "${srcdir}"/cuda11.patch
+  mkdir build
+}
+
+build() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  # wtf
+  mkdir -p CMakeFiles/osd_static_gpu.dir/osd
+
+  cmake .. \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DOSD_CUDA_NVCC_FLAGS='--gpu-architecture=compute_52' \
+  -DCUDA_HOST_COMPILER=/usr/bin/g++ \
+  -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd "OpenSubdiv-${pkgver//./_}"/build
+
+  DESTDIR="$pkgdir/" make install
+
+  rm -rf "${pkgdir}"/usr/bin
+}

Copied: opensubdiv/repos/community-testing-x86_64/cuda11.patch (from rev 
1001051, opensubdiv/trunk/cuda11.patch)
===
--- community-testing-x86_64/cuda11.patch   (rev 0)
+++ community-testing-x86_64/cuda11.patch   2021-08-16 16:04:25 UTC (rev 
1001052)
@@ -0,0 +1,17 @@
+diff --color -aur OpenSubdiv-3_4_4-old/CMakeLists.txt 
OpenSubdiv-3_4_4-new/CMakeLists.txt
+--- OpenSubdiv-3_4_4-old/CMakeLists.txt2021-06-14 16:59:54.699746298 
+0300
 OpenSubdiv-3_4_4-new/CMakeLists.txt2021-06-14 17:01:32.976412136 
+0300
+@@ -586,8 +586,12 @@
+ if (NOT DEFINED OSD_CUDA_NVCC_FLAGS)
+ if (CUDA_VERSION_MAJOR LESS 6)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_11 )
+-else()
++elseif (CUDA_VERSION_MAJOR LESS 9)
+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_20 )
++elseif (CUDA_VERSION_MAJOR LESS 11)
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_35 )
++else()
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_52 )
+ endif()
+ endif()
+ endif()

Copied: opensubdiv/repos/community-testing-x86_64/python3.patch (from rev 
1001051, opensubdiv/trunk/python3.patch)
===
--- community-testing-x86_64/python3.patch  (rev 0)
+++ community-testing-x86_64/python3.patch  2021-08-16 16:04:25 UTC (rev 
1001052)
@@ -0,0 +1,139 @@
+diff --git a/documentation/CMakeLists.txt b/documentation/CMakeLists.txt
+index 32b12a3d..581159ca 100644
+--- a/documentation/CMakeLists.txt
 b/documentation/CMakeLists.txt
+@@ -54,7 +54,7 @@ else()
+ 
+ endif()
+ 
+-find_package(PythonInterp 2.6)
++find_package(PythonInterp 3.8)
+ 
+ # ReST - HTML documentation
+ if (DOCUTILS_FOUND AND PYTHONINTERP_FOUND)
+diff --git a/documentation/processHtml.py b/documentation/processHtml.py
+index 1a81df59..5e610ea8 100755
+--- a/documentation/processHtml.py
 b/documentation/processHtml.py
+@@ -25,9 +25,8 @@
+ 
+ import os
+ import sys
+-import string
+ import re
+-import HTMLParser
++import html.parser as HTMLParser
+ 
+ class HtmlToTextParser(HTMLParser.HTMLParser):
+ def __init__(self):
+@@ 

[arch-commits] Commit in opensubdiv/trunk (PKGBUILD cuda11.patch)

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 16:04:19
  Author: kgizdov
Revision: 1001051

upgpkg: opensubdiv 3.4.4-5: cuda 11.4.1 rebuild

Modified:
  opensubdiv/trunk/PKGBUILD
  opensubdiv/trunk/cuda11.patch

--+
 PKGBUILD |8 
 cuda11.patch |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 15:56:18 UTC (rev 1001050)
+++ PKGBUILD2021-08-16 16:04:19 UTC (rev 1001051)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=opensubdiv
 pkgver=3.4.4
-pkgrel=4
+pkgrel=5
 pkgdesc="An Open-Source subdivision surface library"
 arch=(x86_64)
 url="http://graphics.pixar.com/opensubdiv;
@@ -13,7 +13,7 @@
 cuda11.patch)
 
sha512sums=('fc8f28b79347015c8991150535c1339e695d96947c72fadd4fa27b546a0813c1125cd175ee03bed5aacdb3609f74c4e526ef70103d1195ba9f7df041e73ea9fb'
 
'10f1f63e07d59deb4d91ba04448bb360efff0e41202bb6737caffbce09ba244efb349fe25b24880420b80fdadb268aed84923464af0d66ee1a36e4ba8f96cfd5'
-
'e67d270496b56f6337698ee7bd9f1a0c945e75cd963e5f9dd451414c92c12382525190d691de269d783cffebed0b0dae5bd8fd94e555d7bb94ae06034edc375f')
+
'a9f15c1c2c66d5ecfd4b9b9e8f5a5a455488c5745def284fc5f1ac22f4429974de2b85c6da5289c0290ec9a02c2e2d022fcd760e5d37f532a0cd8c479c7f2d1a')
 
 prepare() {
   cd "OpenSubdiv-${pkgver//./_}"
@@ -31,8 +31,8 @@
 
   cmake .. \
   -DCMAKE_BUILD_TYPE=Release \
-  -DOSD_CUDA_NVCC_FLAGS='--gpu-architecture=sm_52' \
-  -DCUDA_HOST_COMPILER=/usr/bin/g++-10 \
+  -DOSD_CUDA_NVCC_FLAGS='--gpu-architecture=compute_52' \
+  -DCUDA_HOST_COMPILER=/usr/bin/g++ \
   -DCMAKE_INSTALL_PREFIX=/usr
 
   make

Modified: cuda11.patch
===
--- cuda11.patch2021-08-16 15:56:18 UTC (rev 1001050)
+++ cuda11.patch2021-08-16 16:04:19 UTC (rev 1001051)
@@ -11,7 +11,7 @@
 +elseif (CUDA_VERSION_MAJOR LESS 11)
 +set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_35 )
 +else()
-+set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_37 )
++set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_52 )
  endif()
  endif()
  endif()



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 15:56:18
  Author: anatolik
Revision: 1001050

archrelease: copy trunk to community-testing-x86_64

Added:
  usbredir/repos/community-testing-x86_64/
  usbredir/repos/community-testing-x86_64/PKGBUILD
(from rev 1001049, usbredir/trunk/PKGBUILD)

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

Copied: usbredir/repos/community-testing-x86_64/PKGBUILD (from rev 1001049, 
usbredir/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-16 15:56:18 UTC (rev 1001050)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Stefano Facchini 
+
+pkgname=usbredir
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="USB traffic redirection protocol"
+arch=('x86_64')
+url="https://www.spice-space.org/usbredir.html;
+license=('GPL2' 'LGPL2.1')
+depends=('libusb' 'glib2')
+makedepends=('meson')
+source=(https://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.xz)
+sha256sums=('72dd5f3aa90dfbc0510b5149bb5b1654c8f21fdc405dfce7b5dc163dcff19cba')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  arch-meson . build
+  meson compile -C build
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  meson install -C build --destdir="$pkgdir"
+}



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 15:56:00
  Author: anatolik
Revision: 1001049

upgpkg: usbredir 0.11.0-1

Modified:
  usbredir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 15:43:28 UTC (rev 1001048)
+++ PKGBUILD2021-08-16 15:56:00 UTC (rev 1001049)
@@ -2,24 +2,29 @@
 # Maintainer: Stefano Facchini 
 
 pkgname=usbredir
-pkgver=0.9.0
+pkgver=0.11.0
 pkgrel=1
 pkgdesc="USB traffic redirection protocol"
 arch=('x86_64')
-url="https://spice-space.org/page/UsbRedir;
+url="https://www.spice-space.org/usbredir.html;
 license=('GPL2' 'LGPL2.1')
-depends=('libusb')
+depends=('libusb' 'glib2')
+makedepends=('meson')
 source=(https://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.xz)
-sha256sums=('a3e167bf42bc7fe02c3c9db27d7767f1b8ce41b99ad14a4b0d0a60abe8bf56a6')
+sha256sums=('72dd5f3aa90dfbc0510b5149bb5b1654c8f21fdc405dfce7b5dc163dcff19cba')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
-  autoreconf -fi
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
+  arch-meson . build
+  meson compile -C build
 }
 
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  meson test -C build --print-errorlogs
+}
+
 package() {
   cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  meson install -C build --destdir="$pkgdir"
 }



[arch-commits] Commit in switchboard-plug-online-accounts/repos/community-x86_64 (2 files)

2021-08-16 Thread Maxime Gauduin via arch-commits
Date: Monday, August 16, 2021 @ 15:43:28
  Author: alucryd
Revision: 1001048

archrelease: copy trunk to community-x86_64

Added:
  switchboard-plug-online-accounts/repos/community-x86_64/PKGBUILD
(from rev 1001047, switchboard-plug-online-accounts/trunk/PKGBUILD)
Deleted:
  switchboard-plug-online-accounts/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 15:43:24 UTC (rev 1001047)
+++ PKGBUILD2021-08-16 15:43:28 UTC (rev 1001048)
@@ -1,48 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=switchboard-plug-online-accounts
-pkgver=6.0.0
-pkgrel=1
-pkgdesc='Switchboard Online Accounts Plug'
-arch=(x86_64)
-url=https://github.com/elementary/switchboard-plug-onlineaccounts
-license=(GPL2)
-groups=(pantheon)
-depends=(
-  glib2
-  glibc
-  gtk3
-  json-glib
-  libedataserver-1.2.so
-  libedataserverui-1.2.so
-  libgee
-  libgranite.so
-  libhandy-1.so
-  libswitchboard-2.0.so
-  rest
-  webkit2gtk
-)
-makedepends=(
-  git
-  meson
-  vala
-)
-_tag=a01cbe594b9fb60294c58659d329af73f59c6495
-source=(switchboard-plug-online-accounts::git+https://github.com/elementary/switchboard-plug-onlineaccounts.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
-  cd switchboard-plug-online-accounts
-  git describe --tags
-}
-
-build() {
-  arch-meson switchboard-plug-online-accounts build
-  meson compile -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: switchboard-plug-online-accounts/repos/community-x86_64/PKGBUILD (from 
rev 1001047, switchboard-plug-online-accounts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 15:43:28 UTC (rev 1001048)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=switchboard-plug-online-accounts
+pkgver=6.1.0
+pkgrel=1
+pkgdesc='Switchboard Online Accounts Plug'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard-plug-onlineaccounts
+license=(GPL2)
+groups=(pantheon)
+depends=(
+  glib2
+  glibc
+  gtk3
+  json-glib
+  libedataserver-1.2.so
+  libedataserverui-1.2.so
+  libgee
+  libgranite.so
+  libhandy-1.so
+  libswitchboard-2.0.so
+  rest
+  webkit2gtk
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+_tag=856a3c29e7c07d06ae8d2774536f52ef1733a1a1
+source=(switchboard-plug-online-accounts::git+https://github.com/elementary/switchboard-plug-onlineaccounts.git#tag=${_tag})
+sha256sums=(SKIP)
+
+prepare() {
+  cd switchboard-plug-online-accounts
+  git cherry-pick -n 7923f25e9156d50c24621b0dbce0ab0e67b39e7f
+  git cherry-pick -n 8973efbee9f05314d8806160e63900c9c5ec1de3
+}
+
+pkgver() {
+  cd switchboard-plug-online-accounts
+  git describe --tags
+}
+
+build() {
+  arch-meson switchboard-plug-online-accounts build
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in switchboard-plug-online-accounts/trunk (PKGBUILD)

2021-08-16 Thread Maxime Gauduin via arch-commits
Date: Monday, August 16, 2021 @ 15:43:24
  Author: alucryd
Revision: 1001047

upgpkg: switchboard-plug-online-accounts 6.1.0-1

Modified:
  switchboard-plug-online-accounts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 15:36:40 UTC (rev 1001046)
+++ PKGBUILD2021-08-16 15:43:24 UTC (rev 1001047)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=switchboard-plug-online-accounts
-pkgver=6.0.0
+pkgver=6.1.0
 pkgrel=1
 pkgdesc='Switchboard Online Accounts Plug'
 arch=(x86_64)
@@ -27,10 +27,16 @@
   meson
   vala
 )
-_tag=a01cbe594b9fb60294c58659d329af73f59c6495
+_tag=856a3c29e7c07d06ae8d2774536f52ef1733a1a1
 
source=(switchboard-plug-online-accounts::git+https://github.com/elementary/switchboard-plug-onlineaccounts.git#tag=${_tag})
 sha256sums=(SKIP)
 
+prepare() {
+  cd switchboard-plug-online-accounts
+  git cherry-pick -n 7923f25e9156d50c24621b0dbce0ab0e67b39e7f
+  git cherry-pick -n 8973efbee9f05314d8806160e63900c9c5ec1de3
+}
+
 pkgver() {
   cd switchboard-plug-online-accounts
   git describe --tags



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 15:33:17
  Author: anatolik
Revision: 1001044

archrelease: copy trunk to community-testing-x86_64

Added:
  revive/repos/community-testing-x86_64/PKGBUILD
(from rev 1001043, revive/trunk/PKGBUILD)
Deleted:
  revive/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 15:32:53 UTC (rev 1001043)
+++ PKGBUILD2021-08-16 15:33:17 UTC (rev 1001044)
@@ -1,35 +0,0 @@
-# Contributor: Dimitris Kiziridis 
-
-pkgname=revive
-pkgver=1.0.9
-pkgrel=1
-pkgdesc="faster, stricter, configurable, extensible, and beautiful drop-in 
replacement for golint"
-arch=('x86_64')
-url='https://revive.run'
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mgechev/revive/archive/v${pkgver}.tar.gz;)
-sha256sums=('5b80b65ca5a76b1d52e66eff5f2f217f11a3f7ec137deeb2314986b45dfcada9')
-
-build() {
-  cd revive-${pkgver}
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
-  go build
-}
-
-check() {
-  cd revive-${pkgver}/test
-  go test || true
-}
-
-package() {
-  cd revive-${pkgver}
-  install -Dm755 revive "${pkgdir}/usr/bin/revive"
-  install -Dm644 defaults.toml "${pkgdir}/etc/revive/revive.toml"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: revive/repos/community-testing-x86_64/PKGBUILD (from rev 1001043, 
revive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 15:33:17 UTC (rev 1001044)
@@ -0,0 +1,35 @@
+# Contributor: Dimitris Kiziridis 
+
+pkgname=revive
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="faster, stricter, configurable, extensible, and beautiful drop-in 
replacement for golint"
+arch=('x86_64')
+url='https://revive.run'
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mgechev/revive/archive/v${pkgver}.tar.gz;)
+sha256sums=('69ae0acec45afff55f45dd10de4aea97164d0c6391456af378bb5129ff903eeb')
+
+build() {
+  cd revive-${pkgver}
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
+  go build
+}
+
+check() {
+  cd revive-${pkgver}/test
+  go test || true
+}
+
+package() {
+  cd revive-${pkgver}
+  install -Dm755 revive "${pkgdir}/usr/bin/revive"
+  install -Dm644 defaults.toml "${pkgdir}/etc/revive/revive.toml"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-08-16 Thread Anatol Pomozov via arch-commits
Date: Monday, August 16, 2021 @ 15:32:53
  Author: anatolik
Revision: 1001043

upgpkg: revive 1.1.0-1

Modified:
  revive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 15:16:45 UTC (rev 1001042)
+++ PKGBUILD2021-08-16 15:32:53 UTC (rev 1001043)
@@ -1,7 +1,7 @@
 # Contributor: Dimitris Kiziridis 
 
 pkgname=revive
-pkgver=1.0.9
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="faster, stricter, configurable, extensible, and beautiful drop-in 
replacement for golint"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mgechev/revive/archive/v${pkgver}.tar.gz;)
-sha256sums=('5b80b65ca5a76b1d52e66eff5f2f217f11a3f7ec137deeb2314986b45dfcada9')
+sha256sums=('69ae0acec45afff55f45dd10de4aea97164d0c6391456af378bb5129ff903eeb')
 
 build() {
   cd revive-${pkgver}



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:57:06
  Author: felixonmars
Revision: 1001036

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad-contrib/repos/community-staging-x86_64/
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 1001035, xmonad-contrib/trunk/PKGBUILD)
  xmonad-contrib/repos/community-staging-x86_64/ghc9.patch
(from rev 1001035, xmonad-contrib/trunk/ghc9.patch)

+
 PKGBUILD   |   45 +
 ghc9.patch |   37 +
 2 files changed, 82 insertions(+)

Copied: xmonad-contrib/repos/community-staging-x86_64/PKGBUILD (from rev 
1001035, xmonad-contrib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:57:06 UTC (rev 1001036)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: orbisvicis 
+
+pkgname=xmonad-contrib
+pkgver=0.16
+pkgrel=123
+pkgdesc='Add-ons for xmonad'
+url='https://xmonad.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc-libs' 'xmonad' 'sh' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-random'
+ 'haskell-old-time')
+makedepends=('ghc' 'uusi')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad-contrib/archive/v${pkgver}.tar.gz
+ghc9.patch)
+sha512sums=('68f93ef6bcc1f2b3f5422c35a9ddcf846c75c1e9d8e6177750f4fad8dec818642e0a7159d295a381f0656c85b1f52382af1e32d577a825c4fcbdfa4c131581cc'
+
'aced6dbfa91edbbb46e6cf29593a12e73df0cd89ad66de5ab646c8e6b9a49b54c93478c3e589377a106b3bc6c5d68246aecd2d662870b33421f2c0ee70995c6c')
+
+prepare() {
+  uusi -d semigroups -u X11 ${pkgname}-${pkgver}/${pkgname}.cabal
+  patch -d ${pkgname}-${pkgver} -p1 < ghc9.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup.lhs configure -O --enable-shared 
--enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr -fuse_xft --libsubdir=\$compiler/site-local/\$pkgid 
\
+ --docdir=/usr/share/doc/${pkgname}
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup.lhs copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}

Copied: xmonad-contrib/repos/community-staging-x86_64/ghc9.patch (from rev 
1001035, xmonad-contrib/trunk/ghc9.patch)
===
--- community-staging-x86_64/ghc9.patch (rev 0)
+++ community-staging-x86_64/ghc9.patch 2021-08-16 14:57:06 UTC (rev 1001036)
@@ -0,0 +1,37 @@
+From 1033818631a5007aa53a8bba56c5b7bd7c25af3a Mon Sep 17 00:00:00 2001
+From: Sergey Alirzaev 
+Date: Fri, 26 Mar 2021 05:19:31 +0300
+Subject: [PATCH] ghc-9.0.1 compatibility fixes
+
+---
+ CHANGES.md   | 2 ++
+ XMonad/Actions/GridSelect.hs | 2 +-
+ XMonad/Layout/NoBorders.hs   | 2 +-
+ 3 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/XMonad/Actions/GridSelect.hs b/XMonad/Actions/GridSelect.hs
+index 69bb4f1b2..a0c46b880 100644
+--- a/XMonad/Actions/GridSelect.hs
 b/XMonad/Actions/GridSelect.hs
+@@ -388,7 +388,7 @@ updateElementsWithColorizer colorizer elementmap = do
+ stdHandle :: Event -> TwoD a (Maybe a) -> TwoD a (Maybe a)
+ stdHandle (ButtonEvent { ev_event_type = t, ev_x = x, ev_y = y }) 
contEventloop
+ | t == buttonRelease = do
+-s @  TwoDState { td_paneX = px, td_paneY = py,
++s@TwoDState { td_paneX = px, td_paneY = py,
+  td_gsconfig = (GSConfig ch cw _ _ _ _ _ _ _ _) } <- 
get
+ let gridX = (fi x - (px - cw) `div` 2) `div` cw
+ gridY = (fi y - (py - ch) `div` 2) `div` ch
+diff --git a/XMonad/Layout/NoBorders.hs b/XMonad/Layout/NoBorders.hs
+index 0c340e6b2..e08570cef 100644
+--- a/XMonad/Layout/NoBorders.hs
 b/XMonad/Layout/NoBorders.hs
+@@ -38,7 +38,7 @@ import   XMonad.Layout.LayoutModifier
+ import qualified XMonad.StackSetas W
+ import qualified XMonad.Util.Rectangle  as R
+ 
+-import   Data.List
++import   Data.List  hiding (singleton)
+ import   Data.Monoid
+ import qualified Data.Map   as M
+ import   Data.Function  (on)



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:56:53
  Author: felixonmars
Revision: 1001035

upgpkg: xmonad-contrib 0.16-123: rebuild with X11 1.10.1

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:55:37 UTC (rev 1001034)
+++ PKGBUILD2021-08-16 14:56:53 UTC (rev 1001035)
@@ -6,7 +6,7 @@
 
 pkgname=xmonad-contrib
 pkgver=0.16
-pkgrel=122
+pkgrel=123
 pkgdesc='Add-ons for xmonad'
 url='https://xmonad.org/'
 arch=('x86_64')



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:55:37
  Author: felixonmars
Revision: 1001034

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 1001033, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 1001033, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:55:37 UTC (rev 1001034)
@@ -0,0 +1,69 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.38
+pkgrel=34
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-parsec-numbers'
+ 'haskell-regex-compat' 'haskell-old-locale'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('6dd142496e71f0e4b222d0b88f4518fe0544d52122ed3b474f6f55c34a0e9c61bf25121c50efbcab481847ca00045f06de1cb5bda0c78c9bc303473a8cac656a')
+
+prepare() {
+  cd xmobar-${pkgver}
+  uusi -u base xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  runhaskell setup build
+  runhaskell setup register --gen-script
+  runhaskell setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:55:26
  Author: felixonmars
Revision: 1001033

upgpkg: xmobar 0.38-34: rebuild with X11 1.10.1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:54:26 UTC (rev 1001032)
+++ PKGBUILD2021-08-16 14:55:26 UTC (rev 1001033)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.38
-pkgrel=33
+pkgrel=34
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:54:26
  Author: felixonmars
Revision: 1001032

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad/repos/community-staging-x86_64/
  xmonad/repos/community-staging-x86_64/PKGBUILD
(from rev 1001031, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-x86_64/dynamic-compilation.patch
(from rev 1001031, xmonad/trunk/dynamic-compilation.patch)
  xmonad/repos/community-staging-x86_64/xmonad.svg
(from rev 1001031, xmonad/trunk/xmonad.svg)

---+
 PKGBUILD  |   73 +
 dynamic-compilation.patch |   11 ++
 xmonad.svg|   77 
 3 files changed, 161 insertions(+)

Copied: xmonad/repos/community-staging-x86_64/PKGBUILD (from rev 1001031, 
xmonad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:54:26 UTC (rev 1001032)
@@ -0,0 +1,73 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: shild 
+
+pkgname=xmonad
+pkgver=0.15
+pkgrel=143
+pkgdesc='Lightweight X11 tiled window manager written in Haskell'
+url='https://xmonad.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc' 'haskell-x11' 'sh' 'haskell-utf8-string' 
'haskell-extensible-exceptions'
+ 'haskell-data-default' 'haskell-setlocale')
+makedepends=('gendesk' 'uusi')
+optdepends=('xorg-xmessage: for displaying visual error messages')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad/archive/v${pkgver}.tar.gz
+
$pkgname-ghc9.patch::https://github.com/xmonad/xmonad/commit/2a1a18023a15d13247148638edf29ca6bf9c3bce.patch
+dynamic-compilation.patch
+xmonad.svg)
+sha512sums=('07bf61a1355548679d264e62423dfe6c4ee886aff28ac748588aa7f4f9a4f1bf2afabb1104451fa56f5a3989d79b6044f479d2804e416940e02f52f18b443996'
+
'9b4d20ec1bc24770981ff4848734074d75ffe474d641fa3f3e17e6507bce2aaa0684638a1778cbeea0b209d9cd06793abc8f62fbc0dad0e196f866390bb878b3'
+
'abc598ebc4b55917186cd4d549fc970f53905f820d394ada9a092c08d8833050ad18b23e2f4fd7f281487da2db5b0ca058600e995ac97b18d3be4c62071562d6'
+
'31f0ceb724a9931aeda75ab706c8908b5d8341af4df50ab1d749814baacb748ad3622601cd99ac03bf936b698fcd854b23d1541e1772306e3337a13a79b110b6')
+
+prepare() {
+  gendesk --pkgname "${pkgname}" --pkgdesc "${pkgdesc}"
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/dynamic-compilation.patch"
+  patch -p1 -i "${srcdir}/$pkgname-ghc9.patch"
+  uusi -u X11 ${pkgname}.cabal
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  runhaskell Setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--docdir="/usr/share/doc/${pkgname}" \
+--datasubdir="${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+
+  runhaskell Setup.lhs copy --destdir="${pkgdir}"
+
+  # Requires pandoc, regex-posix, Pretty and cabal
+  #runhaskell util/GenerateManpage.hs
+
+  install -Dm 644 man/xmonad.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/xmonad"
+  install -Dm 644 "$srcdir/xmonad.svg" -t "${pkgdir}/usr/share/pixmaps"
+  install -Dm 644 "$srcdir/xmonad.desktop" -t "${pkgdir}/usr/share/xsessions"
+}
+
+# vim: ts=2 sw=2 et:

Copied: xmonad/repos/community-staging-x86_64/dynamic-compilation.patch (from 
rev 1001031, xmonad/trunk/dynamic-compilation.patch)
===
--- community-staging-x86_64/dynamic-compilation.patch  
(rev 0)
+++ community-staging-x86_64/dynamic-compilation.patch  2021-08-16 14:54:26 UTC 
(rev 1001032)
@@ -0,0 +1,11 @@
+diff -ura xmonad-0.13.orig/src/XMonad/Core.hs xmonad-0.13/src/XMonad/Core.hs
+--- xmonad-0.13.orig/src/XMonad/Core.hs2017-06-23 17:13:06.154600231 
+0300
 xmonad-0.13/src/XMonad/Core.hs 2017-06-23 17:13:51.021867441 +0300
+@@ -626,6 +626,7 @@
+   , "-ilib"
+   , "-fforce-recomp"
+   , "-main-is", "main"
++  , "-dynamic"
+   , "-v0"

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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:54:10
  Author: felixonmars
Revision: 1001031

upgpkg: xmonad 0.15-143: rebuild with X11 1.10.1

Modified:
  xmonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:53:36 UTC (rev 1001030)
+++ PKGBUILD2021-08-16 14:54:10 UTC (rev 1001031)
@@ -6,7 +6,7 @@
 
 pkgname=xmonad
 pkgver=0.15
-pkgrel=142
+pkgrel=143
 pkgdesc='Lightweight X11 tiled window manager written in Haskell'
 url='https://xmonad.org/'
 arch=('x86_64')



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:53:36
  Author: felixonmars
Revision: 1001030

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad-utils/repos/community-staging-x86_64/
  xmonad-utils/repos/community-staging-x86_64/PKGBUILD
(from rev 1001029, xmonad-utils/trunk/PKGBUILD)

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

Copied: xmonad-utils/repos/community-staging-x86_64/PKGBUILD (from rev 1001029, 
xmonad-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:53:36 UTC (rev 1001030)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Contributor: Leif Warner 
+
+pkgname=xmonad-utils
+pkgver=0.1.3.3
+pkgrel=148
+pkgdesc='Small collection of X utilities'
+url='https://hackage.haskell.org/package/xmonad-utils'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'ghc-libs' 'gmp' 'libffi' 'libxrandr' 'haskell-x11' 
'haskell-random' 'haskell-unix'
+ 'libxcrypt' 'libcrypt.so' 'libx11')
+makedepends=('ghc')
+options=('!emptydirs')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('45a5db08e2e8fce4a11f929107c29d5073b897cbe83af0ea24ee2e691b72e2f8')
+sha512sums=('f969a0b75107266ec5f74edc06075a1ede72857311d8e0494bf5b567d18e0a9d6e5b046dbb2a34783c2eafc18be9576b86aa78415306974718031a7dd652418c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:53:25
  Author: felixonmars
Revision: 1001029

upgpkg: xmonad-utils 0.1.3.3-148: rebuild with X11 1.10.1

Modified:
  xmonad-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:52:57 UTC (rev 1001028)
+++ PKGBUILD2021-08-16 14:53:25 UTC (rev 1001029)
@@ -3,7 +3,7 @@
 
 pkgname=xmonad-utils
 pkgver=0.1.3.3
-pkgrel=147
+pkgrel=148
 pkgdesc='Small collection of X utilities'
 url='https://hackage.haskell.org/package/xmonad-utils'
 arch=('x86_64')



[arch-commits] Commit in haskell-x11-xft/repos (2 files)

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:52:57
  Author: felixonmars
Revision: 1001028

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-x11-xft/repos/community-staging-x86_64/
  haskell-x11-xft/repos/community-staging-x86_64/PKGBUILD
(from rev 1001027, haskell-x11-xft/trunk/PKGBUILD)

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

Copied: haskell-x11-xft/repos/community-staging-x86_64/PKGBUILD (from rev 
1001027, haskell-x11-xft/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:52:57 UTC (rev 1001028)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=X11-xft
+pkgname=haskell-x11-xft
+pkgver=0.3.1
+pkgrel=175
+pkgdesc="Bindings to the Xft, X Free Type interface library, and some Xrender 
parts"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('LGPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-x11' 'haskell-utf8-string' 'libxft')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz)
+sha512sums=('8f40db25453227ef9ce53b05a0c6af869e3a2efdb1d9b9ad683baf52601f320c85b09f0e514bb6ffeb17516d9b75c6772aa49613bb96272d56f06788118b7cfe')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-x11-xft/trunk (PKGBUILD)

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:52:46
  Author: felixonmars
Revision: 1001027

upgpkg: haskell-x11-xft 0.3.1-175: rebuild with X11 1.10.1

Modified:
  haskell-x11-xft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:52:21 UTC (rev 1001026)
+++ PKGBUILD2021-08-16 14:52:46 UTC (rev 1001027)
@@ -3,7 +3,7 @@
 _hkgname=X11-xft
 pkgname=haskell-x11-xft
 pkgver=0.3.1
-pkgrel=174
+pkgrel=175
 pkgdesc="Bindings to the Xft, X Free Type interface library, and some Xrender 
parts"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('LGPL')



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:52:21
  Author: felixonmars
Revision: 1001026

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-x11/repos/community-staging-x86_64/
  haskell-x11/repos/community-staging-x86_64/PKGBUILD
(from rev 1001025, haskell-x11/trunk/PKGBUILD)

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

Copied: haskell-x11/repos/community-staging-x86_64/PKGBUILD (from rev 1001025, 
haskell-x11/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-16 14:52:21 UTC (rev 1001026)
@@ -0,0 +1,39 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: shild 
+# Maintainer: Vesa Kaihlavirta 
+
+_hkgname=X11
+pkgname=haskell-x11
+pkgver=1.10.1
+pkgrel=1
+pkgdesc="A Haskell binding to the X11 graphics library."
+arch=(x86_64)
+url="https://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
+license=('BSD')
+depends=('ghc-libs' 'libx11' 'libxinerama' 'libxrandr' 'libxss' 
'haskell-data-default-class')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
+sha512sums=('ef4c3103c098a41542c4a70b7f1fb1429ff01fecf64e23cd45e65422ad3690f17456a5a8fed5f7060d93606b07ba7e6d7425b35bbfa78f4582b7550247162ceb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-08-16 Thread Felix Yan via arch-commits
Date: Monday, August 16, 2021 @ 14:52:11
  Author: felixonmars
Revision: 1001025

upgpkg: haskell-x11 1.10.1-1: rebuild with X11 1.10.1

Modified:
  haskell-x11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:50:34 UTC (rev 1001024)
+++ PKGBUILD2021-08-16 14:52:11 UTC (rev 1001025)
@@ -4,8 +4,8 @@
 
 _hkgname=X11
 pkgname=haskell-x11
-pkgver=1.10
-pkgrel=3
+pkgver=1.10.1
+pkgrel=1
 pkgdesc="A Haskell binding to the X11 graphics library."
 arch=(x86_64)
 url="https://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
@@ -13,7 +13,7 @@
 depends=('ghc-libs' 'libx11' 'libxinerama' 'libxrandr' 'libxss' 
'haskell-data-default-class')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
-sha512sums=('7976a151edf9a54e4278f65903ec6b177211f8209039c4e2747abddd9ed86db51a6e65c5359297443b5ade513d9ca8e452cff033d9d0261f3fb027113765bb89')
+sha512sums=('ef4c3103c098a41542c4a70b7f1fb1429ff01fecf64e23cd45e65422ad3690f17456a5a8fed5f7060d93606b07ba7e6d7425b35bbfa78f4582b7550247162ceb')
 
 build() {
 cd $_hkgname-$pkgver



[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2021-08-16 Thread Andrew Crerar via arch-commits
Date: Monday, August 16, 2021 @ 14:50:34
  Author: andrewsc
Revision: 1001024

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 1001023, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 14:50:16 UTC (rev 1001023)
+++ PKGBUILD2021-08-16 14:50:34 UTC (rev 1001024)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=92.0b3
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('fd6112b5e8f6e3f8905abc0cd8e7cd972a185f683229c5c85339d04d9b8201d4d59c7ec4e631c390c231aac26c7e37437789344296d00d32f28fb24ddabe078a'
-
'1e658fdca6bde023ba10904d757a6b3119336971ad5c7cd8ab96cf93523674715ece0c4bd2b0ee7e46f4abb498f011ac39cee4e201ce5a433a031a01d1bfd36b'
-
'a5771f05f4e520b79512505f2a9a41348c306771760d70615c82e48c0dd22a87d437dc3dcfb5e60e6b0353ed36708335b9972895c76d5615fc3fe4e91e0ba8f4'
-

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2021-08-16 Thread Andrew Crerar via arch-commits
Date: Monday, August 16, 2021 @ 14:50:16
  Author: andrewsc
Revision: 1001023

upgpkg: firefox-developer-edition-i18n 92.0b4-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:34:33 UTC (rev 1001022)
+++ PKGBUILD2021-08-16 14:50:16 UTC (rev 1001023)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=92.0b3
+pkgver=92.0b4
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('fd6112b5e8f6e3f8905abc0cd8e7cd972a185f683229c5c85339d04d9b8201d4d59c7ec4e631c390c231aac26c7e37437789344296d00d32f28fb24ddabe078a'
-
'1e658fdca6bde023ba10904d757a6b3119336971ad5c7cd8ab96cf93523674715ece0c4bd2b0ee7e46f4abb498f011ac39cee4e201ce5a433a031a01d1bfd36b'
-
'a5771f05f4e520b79512505f2a9a41348c306771760d70615c82e48c0dd22a87d437dc3dcfb5e60e6b0353ed36708335b9972895c76d5615fc3fe4e91e0ba8f4'
-
'987eb3a34ecea84e45dff7c9a426de37a7133f98942fc7c6279f7ed157ebd510b6ba1cf9fb204e2f4b0b1bcc04cb7924bc37165afe449cd80ba04c492d73cbef'
-
'52f7deca50488a836c32d146b6330d27d9abe7b0cbccfbdedd9717c6768153a92b79ef9a1cca1ed2eb34bc3933a673787a1bfa037de1840a9f320494a5024406'
-
'66c8e19c1f4cc8857b959670e48e15a603c38cf289c1b01e86ab03d6459f7bf7dcc0b00571a26a041fdc751e89bd330eb1ffa1efc919f2dec856c4385521e76f'
-
'76466449c0401643ca26f62686dfaf6fb78866929889d6d9ecc26982f8ce6ae6423ac23b64910886a6d7a79e1e6b037679049c61cbc8f405e602616957dd5733'
-
'8048a4176847ef5a2de1149f0134e215c236d0ee45de72de5866e315c4c4364d2cb255c91af02efb235041445310800289247ec035ff9b4dc3021a204814b101'
-
'09504e2aed988aea467de99a92ec6099eb812ceebf7ab15dcb1c76c7c5b9b0a2937a26fdae8c390c2a73e0c681b120fecc04610a9c8f1f04157a93383df39f60'
-
'7ee64bb051be4801830a9fe262a80ea1dd279f8a92dc8da82cec1ca825a4dab2abfe17db13832d74e83ece103693437adab18e04673d8841374e6b98167abe9f'
-
'20bb8414bf75ddf08aff3fb73e27ca8aeca9737c05ef0ad8e0e22f138f078e21d57b38a2254bcc1129c564673006f77b03065d22bafdb19a4bf5cb54de6f9f5c'
-
'79bf8789abb445eef8d54d2c69478fee14221e27804ae929616093aeca3526e3e16499e92ae9ebb1bbe2b14a7e78c25dd62eca40f3c4bb0dffba01cbbb52e6e3'
-
'9605f44d50b388ec4a9bf1b8258a2ee3846d55046eadb54a332357c0425b7c955b5b086a9dad31922ef94882be9d8e65ae1f2d7aae92446f244e548ab4196bc8'
-
'924941dfb9c4f2161303d4d605b6088182648741537ce425d5bffd39d5aee93e3769ea2a76c335317151866ceaa618f93a7c60108f43017446a21ec342c0dd8b'
-
'0bb00591e2fdca7e94ee8c6f5c5e3f2ea0723447e29a10fb79b2ebd40e9c37457b0c318f3f8d22c4d7f2a15e885d44a8250a9d2dd1bfc61ffcd6c443b78f651e'
-
'b32294ebeea529f168669fbfb607c35b43a0edf07e7d6bfec6ffae43d8f245c4d2adc65bcde3d3bc633ed7cf10bdab77556f7d6f076a668a1af46143f0940905'
-
'aaedefa8e77c17a2d132ecb2c2defc3e893c100a324677eaf3a47340e7551b5f5a40968e96623dbed56e1a7083f93e516630c0c589f56e4e2555615e06db15ab'
-
'c6e89b451e11fd6a485326f605ba6d9d4b5c142b29ca6e5a5c30e5a60478f4dd8fb7e2e0cb687238a3b8a1373124b915ee8dd7cd54a3114ec0ff99602b5ad285'
-
'c74b9ca631773fd0c86cdf77a4c153455f4b560f6d62fd6ea6c6374967a7281db24c7872830abafc7929aede015827f537bca995571ecb1bfedf9cae0ac548fc'
-
'17f04ca3cf90e1e69c7d1245e8497348bc9f1825d80ccea910e9b70ddb2766d8f299e366cfd8009782b911e56624f84c0a3368e81dbcc2794bcf8af9a004ec00'
-
'9616e2473861e73e69613b47f5212b50811ed6eb9721fd2f556c76144d7343d975330065561f66cfdb45085f57f2029d63bebb38e59c89cf2fa6aa983c170a31'
-
'51d4dd2e7f00349300392152a54320db18b009a46be137d679045093169c72eb617a491a05852664ddf608485498a53f9e622934ec600fd8b19fcfc3bb151fdd'
-
'b11ae7e4b1e5ed6fa422cb1ab1ae22a29451391e40a46bdf95dac66a4baa70bda9304b7c6d991697318ffcd1dfd698e66aa1b05a11e0296f6b185af385009a57'
-
'3ca510461614e0741ca694820ec907e192b085aca4abd13d7cb616432e824ab7175757055873fd7c3d3b6fe89c2cd3de72a53f105b7bde863c54c63d65b613c9'
-
'3e3b8fe7cba43b7fe9a5bf20dfc219e262887fc14cc80dc3bb4d337fbae675d2cbe4da8679c0b8f957434bf130b5bdf70474d28bfd1fa4b20e0ab7a1e2b85e82'
-
'a6a9bfad11a5d988ac44ebb2028680dd08c177696a12c0c95245eada5157cf988918f1db969bc75ec6d7d0ce870413ddbb5b35ee70a8eb72946e95e869cfd41d'
-
'e77947f748bb3eb0d2522d352f417d02c3ef591cdf08dabd4c28e9ba6968407510b04230add9922ec1bee321dce6a495f11588f0bce63e70331a68e47d1bad3d'
-
'1c46751b6cd0cc8e8dfe25f40e852806052722279db986272262681d0644cab65b2d156a5dec5217650f60cec37a488ac1693a307ca06a5f1bdbac7fdb235a1b'
-

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

2021-08-16 Thread Daurnimator via arch-commits
Date: Monday, August 16, 2021 @ 14:34:33
  Author: daurnimator
Revision: 1001022

archrelease: copy trunk to community-x86_64

Added:
  grafana-agent/repos/community-x86_64/
  grafana-agent/repos/community-x86_64/PKGBUILD
(from rev 1001021, grafana-agent/trunk/PKGBUILD)
  grafana-agent/repos/community-x86_64/grafana-agent.service
(from rev 1001021, grafana-agent/trunk/grafana-agent.service)
  grafana-agent/repos/community-x86_64/grafana-agent.sysusers
(from rev 1001021, grafana-agent/trunk/grafana-agent.sysusers)
  grafana-agent/repos/community-x86_64/grafana-agent.tmpfiles
(from rev 1001021, grafana-agent/trunk/grafana-agent.tmpfiles)

+
 PKGBUILD   |   62 +++
 grafana-agent.service  |   31 +++
 grafana-agent.sysusers |2 +
 grafana-agent.tmpfiles |1 
 4 files changed, 96 insertions(+)

Copied: grafana-agent/repos/community-x86_64/PKGBUILD (from rev 1001021, 
grafana-agent/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-08-16 14:34:33 UTC (rev 1001022)
@@ -0,0 +1,62 @@
+# Maintainer: Daurnimator 
+
+pkgname=('grafana-agent' 'grafana-agentctl')
+pkgver=0.18.2
+pkgrel=1
+pkgdesc='Grafana Agent is a telemetry collector for sending metrics, logs, and 
trace data to the opinionated Grafana observability stack'
+url='https://github.com/grafana/agent'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go')
+source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/agent/archive/v$pkgver.tar.gz
+grafana-agent.sysusers grafana-agent.service grafana-agent.tmpfiles)
+sha512sums=('c39d5cb0d356dd1ed412e44c548e112768ed58520722b07be0e00fe84e07ed944ebdd7d738f8b2e309870b5b0c803df3987814547f06cc42e3f89193e61f9f1c'
+
'1e58f6273562fd6ddeae41bb6d223230ed301199af6bd2f85fa3d2c1e6352952c600cd4488ad769069519c42b6863be84aaa2c93c88f696e5a0bedbb93758d0e'
+
'3f8debbc4732009f54c063d70c2dce4846b81b829f495d25a431fef857077c83949d777f763de8c106fb8d1cf0bd7e874680db8387b4811704b1a303932fa090'
+
'3a4c4896b2454272b5a2d53ba5aa7009fa5b42a573fef521afb5d9712e53119539c4195d2b149d04d086c5fa197ccf7dc9bbdc407efb55514e3c92b994121fa8')
+
+build() {
+  cd "agent-$pkgver"
+
+  for path in cmd/agent cmd/agentctl; do
+go build \
+  -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags " \
+ -X github.com/grafana/agent/pkg/build.Version=$pkgver
+ -X github.com/grafana/agent/pkg/build.BuildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH})
+ -linkmode external
+ -extldflags \"${LDFLAGS}\"" \
+  "./$path"
+  done
+}
+
+check() {
+  cd "agent-$pkgver"
+
+  go test -v ./...
+}
+
+package_grafana-agent() {
+  backup=('etc/grafana-agent.yaml')
+
+  cd "agent-$pkgver"
+
+  install -Dm755 agent "$pkgdir/usr/bin/grafana-agent"
+  install -Dm644 packaging/grafana-agent.yaml "$pkgdir/etc/grafana-agent.yaml"
+
+  install -Dm644 "$srcdir/grafana-agent.sysusers" 
"$pkgdir/usr/lib/sysusers.d/grafana-agent.conf"
+  install -Dm644 "$srcdir/grafana-agent.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/grafana-agent.conf"
+  install -Dm644 "$srcdir/grafana-agent.service" 
"$pkgdir/usr/lib/systemd/system/grafana-agent.service"
+}
+
+package_grafana-agentctl() {
+  pkgdesc="provides utilities for interacting with Grafana Agent"
+
+  cd "agent-$pkgver"
+
+  install -Dm755 -t "$pkgdir"/usr/bin agentctl
+}

Copied: grafana-agent/repos/community-x86_64/grafana-agent.service (from rev 
1001021, grafana-agent/trunk/grafana-agent.service)
===
--- community-x86_64/grafana-agent.service  (rev 0)
+++ community-x86_64/grafana-agent.service  2021-08-16 14:34:33 UTC (rev 
1001022)
@@ -0,0 +1,31 @@
+[Unit]
+Description=Grafana Agent monitoring system and forwarder
+Documentation=https://grafana.com/docs/agent/
+Wants=network-online.target
+After=network-online.target
+
+[Service]
+Restart=always
+Environment=HOSTNAME=%H
+ExecStart=/usr/bin/grafana-agent --config.file /etc/grafana-agent.yaml
+User=grafana-agent
+# If running the Agent in scraping service mode, you will want to override 
this value with
+# something larger to allow the Agent to gracefully leave the cluster. 4800s 
is recommend.
+TimeoutStopSec=20s
+SendSIGKILL=no
+
+NoNewPrivileges=true
+MemoryDenyWriteExecute=true
+RestrictRealtime=true
+
+ProtectHome=true
+ProtectSystem=strict
+ReadWritePaths=/var/lib/grafana-agent
+PrivateTmp=true
+
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectControlGroups=true
+
+[Install]
+WantedBy=multi-user.target

Copied: grafana-agent/repos/community-x86_64/grafana-agent.sysusers (from rev 
1001021, grafana-agent/trunk/grafana-agent.sysusers)

[arch-commits] Commit in grafana-agent/trunk (PKGBUILD grafana-agent.service)

2021-08-16 Thread Daurnimator via arch-commits
Date: Monday, August 16, 2021 @ 14:34:12
  Author: daurnimator
Revision: 1001021

Fix incorrect ExecStart; use shorter Description

Modified:
  grafana-agent/trunk/PKGBUILD
  grafana-agent/trunk/grafana-agent.service

---+
 PKGBUILD  |2 +-
 grafana-agent.service |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:19:22 UTC (rev 1001020)
+++ PKGBUILD2021-08-16 14:34:12 UTC (rev 1001021)
@@ -13,7 +13,7 @@
 grafana-agent.sysusers grafana-agent.service grafana-agent.tmpfiles)
 
sha512sums=('c39d5cb0d356dd1ed412e44c548e112768ed58520722b07be0e00fe84e07ed944ebdd7d738f8b2e309870b5b0c803df3987814547f06cc42e3f89193e61f9f1c'
 
'1e58f6273562fd6ddeae41bb6d223230ed301199af6bd2f85fa3d2c1e6352952c600cd4488ad769069519c42b6863be84aaa2c93c88f696e5a0bedbb93758d0e'
-
'1902dfa919fc68503d464073c4d2e4497a0eab06a9eedabc2dc09b9b18d75f28ffc73b161c83dbc9c6c2fbd0a3d24e721b4c92aff3a02e3b3675e5baa0396c55'
+
'3f8debbc4732009f54c063d70c2dce4846b81b829f495d25a431fef857077c83949d777f763de8c106fb8d1cf0bd7e874680db8387b4811704b1a303932fa090'
 
'3a4c4896b2454272b5a2d53ba5aa7009fa5b42a573fef521afb5d9712e53119539c4195d2b149d04d086c5fa197ccf7dc9bbdc407efb55514e3c92b994121fa8')
 
 build() {

Modified: grafana-agent.service
===
--- grafana-agent.service   2021-08-16 14:19:22 UTC (rev 1001020)
+++ grafana-agent.service   2021-08-16 14:34:12 UTC (rev 1001021)
@@ -1,5 +1,5 @@
 [Unit]
-Description=Grafana Agent is a telemetry collector for sending metrics, logs, 
and trace data to the opinionated Grafana observability stack.
+Description=Grafana Agent monitoring system and forwarder
 Documentation=https://grafana.com/docs/agent/
 Wants=network-online.target
 After=network-online.target
@@ -7,7 +7,7 @@
 [Service]
 Restart=always
 Environment=HOSTNAME=%H
-ExecStart=/usr/bin/grafana-agent --config.file /etc/grafana-agent.yaml 
--log.level $LOG_LEVEL $CUSTOM_ARGS
+ExecStart=/usr/bin/grafana-agent --config.file /etc/grafana-agent.yaml
 User=grafana-agent
 # If running the Agent in scraping service mode, you will want to override 
this value with
 # something larger to allow the Agent to gracefully leave the cluster. 4800s 
is recommend.



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

2021-08-16 Thread Andrew Crerar via arch-commits
Date: Monday, August 16, 2021 @ 14:18:59
  Author: andrewsc
Revision: 1001019

upgpkg: firefox-developer-edition 92.0b4-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:17:23 UTC (rev 1001018)
+++ PKGBUILD2021-08-16 14:18:59 UTC (rev 1001019)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=92.0b3
+pkgver=92.0b4
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -23,7 +23,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop)
-sha512sums=('a1d542cd604e3092655be87093ef52e2119d937b4b89095a5a662e1c9332c9e8828744ec659a27eeb995a5efd1dd5608084112c5ad137217ef9f957d2e1e'
+sha512sums=('014407b5d1fb325538f3f64a97123fb5f6131432220ad0c3337e6e8e1343fde8171e64bb561a387bcaebdecf8b73453a8046c288da24fbb19ee11cf631f6fcf2'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'8df3228209334aaaddec9c761c063e61ebbf3e75c6b249db9347dc4cabb79d912ccc8abdcfe4fab63387f2a0e09b4f3c9edf3b7e25aa0fd00ee56bcc7e9dde2c'



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 14:17:23
  Author: kgizdov
Revision: 1001018

archrelease: copy trunk to community-testing-x86_64

Added:
  magma/repos/community-testing-x86_64/
  magma/repos/community-testing-x86_64/PKGBUILD
(from rev 1001017, magma/trunk/PKGBUILD)
  magma/repos/community-testing-x86_64/add_cuda86_arch.patch
(from rev 1001017, magma/trunk/add_cuda86_arch.patch)

---+
 PKGBUILD  |   55 
 add_cuda86_arch.patch |   19 
 2 files changed, 74 insertions(+)

Copied: magma/repos/community-testing-x86_64/PKGBUILD (from rev 1001017, 
magma/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-16 14:17:23 UTC (rev 1001018)
@@ -0,0 +1,55 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: bartus 
+# Contributor: pingplug 
+# Contributor: cornholio 
+
+pkgname=magma
+pkgver=2.6.1
+pkgrel=2
+pkgdesc="Matrix Algebra on GPU and Multicore Architectures"
+arch=('x86_64')
+url="https://icl.cs.utk.edu/magma/;
+license=('custom')
+depends=('blas' 'lapack' 'cuda')
+makedepends=('gcc-fortran' 'cmake' 'ninja')
+optdepends=('python: for examples and tests'
+'gcc-fortran: Fortran interface')
+source=("${pkgname}-${pkgver}.tar.gz::http://icl.cs.utk.edu/projectsfiles/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;
+'add_cuda86_arch.patch')
+sha256sums=('6cd83808c6e8bc7a44028e05112b3ab4e579bcc73202ed14733f1127e213'
+'896a6b66b4e3c10fab9bb3ae27b6783c2fad3ebd5e204d62da9fdec443bd6c15')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/add_cuda86_arch.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  CC=/usr/bin/gcc \
+  CXX=/usr/bin/g++ \
+  FC=/usr/bin/gfortran \
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-DGPU_TARGET="sm_52 sm_53 sm_60 sm_61 sm_62 sm_70 sm_72 sm_75 sm_80 sm_86"
+  ninja -C build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  DESTDIR="${pkgdir}" ninja -Cbuild install
+
+  install -d "${pkgdir}"/usr/share/magma/example
+  cp -r "${srcdir}"/magma-${pkgver}/example/* 
"${pkgdir}"/usr/share/magma/example/
+  install -d "${pkgdir}"/usr/share/magma/testing
+  cp -r "${srcdir}"/magma-${pkgver}/testing/* 
"${pkgdir}"/usr/share/magma/testing/
+  install -Dm644 "${srcdir}"/magma-${pkgver}/COPYRIGHT 
"${pkgdir}"/usr/share/licenses/magma/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: magma/repos/community-testing-x86_64/add_cuda86_arch.patch (from rev 
1001017, magma/trunk/add_cuda86_arch.patch)
===
--- community-testing-x86_64/add_cuda86_arch.patch  
(rev 0)
+++ community-testing-x86_64/add_cuda86_arch.patch  2021-08-16 14:17:23 UTC 
(rev 1001018)
@@ -0,0 +1,19 @@
+diff --color -aur magma-2.6.1-old/CMakeLists.txt magma-2.6.1-new/CMakeLists.txt
+--- magma-2.6.1-old/CMakeLists.txt  2021-07-13 01:35:20.0 +0300
 magma-2.6.1-new/CMakeLists.txt  2021-07-21 11:02:28.014236200 +0300
+@@ -294,6 +294,15 @@
+ message( STATUS "compile for CUDA arch 8.0 (Ampere)" )
+ endif()
+ 
++if (GPU_TARGET MATCHES sm_86)
++if (NOT MIN_ARCH)
++set( MIN_ARCH 860 )
++endif()
++set( NV_SM ${NV_SM} -gencode arch=compute_86,code=sm_86 )
++set( NV_COMP-gencode arch=compute_86,code=compute_86 )
++message( STATUS "compile for CUDA arch 8.6 (Ampere)" )
++endif()
++
+ if (NOT MIN_ARCH)
+ message( FATAL_ERROR "GPU_TARGET must contain one or more of Fermi, 
Kepler, Maxwell, Pascal, Volta, Turing, Ampere, or valid sm_[0-9][0-9]" )
+ endif()



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

2021-08-16 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 16, 2021 @ 14:17:17
  Author: kgizdov
Revision: 1001017

upgpkg: magma 2.6.1-2: cuda 11.4.1 rebuild

Modified:
  magma/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-16 14:16:14 UTC (rev 1001016)
+++ PKGBUILD2021-08-16 14:17:17 UTC (rev 1001017)
@@ -5,7 +5,7 @@
 
 pkgname=magma
 pkgver=2.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Matrix Algebra on GPU and Multicore Architectures"
 arch=('x86_64')
 url="https://icl.cs.utk.edu/magma/;



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

2021-08-16 Thread Maxim Baz via arch-commits
Date: Monday, August 16, 2021 @ 14:16:14
  Author: maximbaz
Revision: 1001016

archrelease: copy trunk to community-x86_64

Added:
  waybar/repos/community-x86_64/PKGBUILD
(from rev 1001015, waybar/trunk/PKGBUILD)
Deleted:
  waybar/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-16 14:16:10 UTC (rev 1001015)
+++ PKGBUILD2021-08-16 14:16:14 UTC (rev 1001016)
@@ -1,63 +0,0 @@
-# Maintainer: Brett Cornwall 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-pkgname=waybar
-pkgver=0.9.7
-pkgrel=5
-pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
-arch=('x86_64')
-url="https://github.com/Alexays/Waybar/;
-license=('MIT')
-depends=(
-'gtkmm3'
-'libjsoncpp.so'
-'libsigc++'
-'fmt'
-'wayland'
-'libdate-tz.so'
-'libspdlog.so'
-'gtk-layer-shell'
-'libpulse'
-'libnl'
-'libappindicator-gtk3'
-'libdbusmenu-gtk3'
-'libmpdclient'
-'libsndio.so'
-)
-makedepends=(
-'cmake'
-'meson'
-'scdoc' # For generating manpages
-'wayland-protocols'
-)
-optdepends=(
-'otf-font-awesome: Icons in the default configuration'
-)
-source=(
-
"$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;
-"https://github.com/Alexays/Waybar/pull/1144.patch;
-)
-sha256sums=('0d23573e0f6ce6e3f3eb4d1d7313848b924429268f3becd81649a391ae7703e7'
-'24e27ce50647cec5ad4d5e667c22b538d404fa865e8aba2a0dadac2166502a95')
-
-prepare() {
-cd "Waybar-$pkgver"
-# libfmt >=8.0.0 compatibility, merged upstream but not yet released.
-patch -Np1 -i ../1144.patch
-}
-
-build() {
-cd "Waybar-$pkgver"
-meson --prefix=/usr \
-  --buildtype=plain \
-  --auto-features=enabled \
-  --wrap-mode=nodownload \
-  build
-ninja -C build
-}
-
-package() {
-cd "Waybar-$pkgver"
-DESTDIR="$pkgdir" ninja -C build install
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: waybar/repos/community-x86_64/PKGBUILD (from rev 1001015, 
waybar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-16 14:16:14 UTC (rev 1001016)
@@ -0,0 +1,57 @@
+# Maintainer: Brett Cornwall 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=waybar
+pkgver=0.9.8
+pkgrel=1
+pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
+arch=('x86_64')
+url="https://github.com/Alexays/Waybar/;
+license=('MIT')
+depends=(
+'gtkmm3'
+'libjsoncpp.so'
+'libsigc++'
+'fmt'
+'wayland'
+'libdate-tz.so'
+'libspdlog.so'
+'gtk-layer-shell'
+'libevdev'
+'libpulse'
+'libnl'
+'libappindicator-gtk3'
+'libdbusmenu-gtk3'
+'libmpdclient'
+'libsndio.so'
+'libxkbcommon'
+)
+makedepends=(
+'cmake'
+'meson'
+'scdoc' # For generating manpages
+'wayland-protocols'
+)
+optdepends=(
+'otf-font-awesome: Icons in the default configuration'
+)
+source=(
+
"$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;
+)
+sha256sums=('3f067c484aaee3e7d8ded382e72c280a92913b0c4e8a20d0ac9afdf8baf19405')
+
+build() {
+cd "Waybar-$pkgver"
+meson --prefix=/usr \
+  --buildtype=plain \
+  --auto-features=enabled \
+  --wrap-mode=nodownload \
+  build
+ninja -C build
+}
+
+package() {
+cd "Waybar-$pkgver"
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



  1   2   3   4   >