[arch-commits] Commit in chrono-date/trunk (3 files)

2020-07-18 Thread Brett Cornwall via arch-commits
Date: Sunday, July 19, 2020 @ 02:35:58
  Author: ainola
Revision: 664516

upgpkg: chrono-date 3.0.0-1

* Add provides=libdate-tz.so

* Add CMake build flags to conform to packaging standards

* Disable a few problematic tests. According to the date author, GCC's 
std::time_get is buggy and bugs should be raised to that project.

See:
* https://github.com/HowardHinnant/date/issues/334
* https://github.com/HowardHinnant/date/issues/455
* https://github.com/HowardHinnant/date/issues/4961

Added:
  chrono-date/trunk/disable_buggy_libstdc++_tests.patch
Modified:
  chrono-date/trunk/538-output-date-pc-for-pkg-config.patch
  chrono-date/trunk/PKGBUILD

-+
 538-output-date-pc-for-pkg-config.patch |2 -
 PKGBUILD|   52 +++---
 disable_buggy_libstdc++_tests.patch |   30 +
 3 files changed, 58 insertions(+), 26 deletions(-)

Modified: 538-output-date-pc-for-pkg-config.patch
===
--- 538-output-date-pc-for-pkg-config.patch 2020-07-19 02:34:24 UTC (rev 
664515)
+++ 538-output-date-pc-for-pkg-config.patch 2020-07-19 02:35:58 UTC (rev 
664516)
@@ -19,7 +19,7 @@
  
 +if ( BUILD_TZ_LIB )
 +  # Cflags: -I${includedir} @TZ_COMPILE_DEFINITIONS@
-+  set( TZ_COMPILE_DEFINITIONS 
"$,-D$,
 -D>,>" )
++  set( TZ_COMPILE_DEFINITIONS 
"$,-D$,
 -D>,>" )
 +  configure_file(date.pc.in date.pc.cf @ONLY)
 +  file( GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/date.pc"
 +INPUT "${CMAKE_CURRENT_BINARY_DIR}/date.pc.cf" )

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 02:34:24 UTC (rev 664515)
+++ PKGBUILD2020-07-19 02:35:58 UTC (rev 664516)
@@ -1,7 +1,7 @@
 # Maintainer: Brett Cornwall 
 
 pkgname=chrono-date
-pkgver=2.4.1+134+g9a0ee25
+pkgver=3.0.0
 pkgrel=1
 pkgdesc="A date and time library based on the C++11/14/17  header"
 arch=(x86_64)
@@ -11,46 +11,48 @@
 'cmake'
 'git'
 )
-# It's easiest to pin this commit and wait for a new release rather than patch
-# as a number of issues with tests/dependent packages (e.g.
-# https://github.com/Alexays/Waybar/issues/565) are present with the tagged
-# stable version.
-source=("$pkgname::git+https://github.com/HowardHinnant/date#commit=9a0ee2542848ab8625984fc8cdbfb9b5414c0082;
-
"538-output-date-pc-for-pkg-config.patch::https://patch-diff.githubusercontent.com/raw/HowardHinnant/date/pull/538.patch;)
-sha256sums=('SKIP'
-'f39ce7f1f738ebdc02948ed78be68cca10c01f9e22a4243670304eeda53a03fd')
+provides=(
+'libdate-tz.so'
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HowardHinnant/date/archive/v$pkgver.tar.gz;
+
"538-output-date-pc-for-pkg-config.patch::https://patch-diff.githubusercontent.com/raw/HowardHinnant/date/pull/538.patch;
+"disable_buggy_libstdc++_tests.patch")
+sha256sums=('87bba2eaf0ebc7ec539e5e62fc317cb80671a337c1fb1b84cb9e4d42c6dbebe3'
+'77bd5764c4807aaaba59000a5d45b71a04bc0d43eb157f8067b2be46c4314987'
+'bd770b44554790c8854dd433aa670ecb8071a69bbeb2855c97dc66570d442165')
 
-pkgver() {
-cd "$pkgname"
-git describe --always --tags | sed 's/^v//;s/-/+/g'
-}
-
 prepare() {
-cd "$pkgname"
-mkdir build
+cd "date-$pkgver"
 # https://github.com/HowardHinnant/date/issues/537
 patch -p1 < ../538-output-date-pc-for-pkg-config.patch
+
+# FIXME: one particular test suite will fail; according to the date author,
+# GCC's std::time_get is buggy and bugs should be raised to that project.
+# See:
+# https://github.com/HowardHinnant/date/issues/334
+# https://github.com/HowardHinnant/date/issues/455
+# https://github.com/HowardHinnant/date/issues/4961
+patch -p1 < ../disable_buggy_libstdc++_tests.patch
 }
 
+
 build() {
-cd "$pkgname/build"
-cmake .. \
--DCMAKE_BUILD_TYPE=Release \
+cmake -B build -S "date-$pkgver" \
+-DCMAKE_BUILD_TYPE=None \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_SHARED_LIBS=true \
 -DBUILD_TZ_LIB=true \
 -DUSE_SYSTEM_TZ_DB=true \
--DENABLE_DATE_TESTING=true
+-DENABLE_DATE_TESTING=true \
+-Wno-dev
 }
 
 check() {
-cd "$pkgname/build"
-make testit
+make -C build testit
 }
 
 package() {
-cd "$pkgname"
 make -C build DESTDIR="$pkgdir/" install
-install -Dm644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname"
-install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+install -Dm644 "date-$pkgver/LICENSE.txt" -t 
"$pkgdir/usr/share/licenses/$pkgname"
+install -Dm644 "date-$pkgver/README.md" -t "$pkgdir/usr/share/doc/$pkgname"
 }

Added: disable_buggy_libstdc++_tests.patch
===
--- disable_buggy_libstdc++_tests.patch (rev 0)
+++ disable_buggy_libstdc++_tests.patch 

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

2020-07-18 Thread Brett Cornwall via arch-commits
Date: Sunday, July 19, 2020 @ 02:36:09
  Author: ainola
Revision: 664517

archrelease: copy trunk to community-staging-x86_64

Added:
  chrono-date/repos/community-staging-x86_64/
  
chrono-date/repos/community-staging-x86_64/538-output-date-pc-for-pkg-config.patch
(from rev 664516, chrono-date/trunk/538-output-date-pc-for-pkg-config.patch)
  chrono-date/repos/community-staging-x86_64/PKGBUILD
(from rev 664516, chrono-date/trunk/PKGBUILD)
  chrono-date/repos/community-staging-x86_64/disable_buggy_libstdc++_tests.patch
(from rev 664516, chrono-date/trunk/disable_buggy_libstdc++_tests.patch)

-+
 538-output-date-pc-for-pkg-config.patch |   60 ++
 PKGBUILD|   58 +
 disable_buggy_libstdc++_tests.patch |   30 +++
 3 files changed, 148 insertions(+)

Copied: 
chrono-date/repos/community-staging-x86_64/538-output-date-pc-for-pkg-config.patch
 (from rev 664516, chrono-date/trunk/538-output-date-pc-for-pkg-config.patch)
===
--- community-staging-x86_64/538-output-date-pc-for-pkg-config.patch
(rev 0)
+++ community-staging-x86_64/538-output-date-pc-for-pkg-config.patch
2020-07-19 02:36:09 UTC (rev 664517)
@@ -0,0 +1,60 @@
+From e56b2dce7e89a92e1b9b35caa13b3e938c4cedea Mon Sep 17 00:00:00 2001
+From: Cole Mickens 
+Date: Sun, 26 Jan 2020 01:27:08 -0800
+Subject: [PATCH] CMakeLists.txt: output date.pc for pkg-config
+
+---
+ CMakeLists.txt | 15 +++
+ date.pc.in | 10 ++
+ 2 files changed, 25 insertions(+)
+ create mode 100644 date.pc.in
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f30c473..fe778e8 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -128,6 +128,15 @@ if( BUILD_TZ_LIB )
+ endif( )
+ endif( )
+ 
++if ( BUILD_TZ_LIB )
++  # Cflags: -I${includedir} @TZ_COMPILE_DEFINITIONS@
++  set( TZ_COMPILE_DEFINITIONS 
"$,-D$,
 -D>,>" )
++  configure_file(date.pc.in date.pc.cf @ONLY)
++  file( GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/date.pc"
++INPUT "${CMAKE_CURRENT_BINARY_DIR}/date.pc.cf" )
++
++endif( )
++
+ #[===[
+installation
+ #]===]
+@@ -171,6 +180,12 @@ install (
+   FILES cmake/dateConfig.cmake "${version_config}"
+   DESTINATION ${CONFIG_LOC})
+ 
++if ( BUILD_TZ_LIB )
++  install(
++FILES ${CMAKE_BINARY_DIR}/date.pc
++DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
++endif( )
++
+ #[===[
+testing
+ #]===]
+diff --git a/date.pc.in b/date.pc.in
+new file mode 100644
+index 000..b9c4623
+--- /dev/null
 b/date.pc.in
+@@ -0,0 +1,10 @@
++prefix=@CMAKE_INSTALL_PREFIX@
++exec_prefix=@CMAKE_INSTALL_BINDIR@
++libdir=@CMAKE_INSTALL_LIB@
++includedir=@CMAKE_INSTALL_INCLUDE@
++
++Name: date
++Description: A date and time library based on the C++11/14/17  header
++Version: @PACKAGE_VERSION@
++Libs: -L${libdir} -ltz
++Cflags: -I${includedir} @TZ_COMPILE_DEFINITIONS@

Copied: chrono-date/repos/community-staging-x86_64/PKGBUILD (from rev 664516, 
chrono-date/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-19 02:36:09 UTC (rev 664517)
@@ -0,0 +1,58 @@
+# Maintainer: Brett Cornwall 
+
+pkgname=chrono-date
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="A date and time library based on the C++11/14/17  header"
+arch=(x86_64)
+url="https://howardhinnant.github.io/date/date.html;
+license=('MIT')
+makedepends=(
+'cmake'
+'git'
+)
+provides=(
+'libdate-tz.so'
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HowardHinnant/date/archive/v$pkgver.tar.gz;
+
"538-output-date-pc-for-pkg-config.patch::https://patch-diff.githubusercontent.com/raw/HowardHinnant/date/pull/538.patch;
+"disable_buggy_libstdc++_tests.patch")
+sha256sums=('87bba2eaf0ebc7ec539e5e62fc317cb80671a337c1fb1b84cb9e4d42c6dbebe3'
+'77bd5764c4807aaaba59000a5d45b71a04bc0d43eb157f8067b2be46c4314987'
+'bd770b44554790c8854dd433aa670ecb8071a69bbeb2855c97dc66570d442165')
+
+prepare() {
+cd "date-$pkgver"
+# https://github.com/HowardHinnant/date/issues/537
+patch -p1 < ../538-output-date-pc-for-pkg-config.patch
+
+# FIXME: one particular test suite will fail; according to the date author,
+# GCC's std::time_get is buggy and bugs should be raised to that project.
+# See:
+# https://github.com/HowardHinnant/date/issues/334
+# https://github.com/HowardHinnant/date/issues/455
+# https://github.com/HowardHinnant/date/issues/4961
+patch -p1 < 

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

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:34:13
  Author: felixonmars
Revision: 664514

upgpkg: mitmproxy 5.2-1

Modified:
  mitmproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 02:21:38 UTC (rev 664513)
+++ PKGBUILD2020-07-19 02:34:13 UTC (rev 664514)
@@ -5,7 +5,7 @@
 # Contributor: Dobroslaw Kijowski
 
 pkgname=mitmproxy
-pkgver=5.1.1
+pkgver=5.2
 pkgrel=1
 pkgdesc='SSL-capable man-in-the-middle HTTP proxy'
 arch=('any')
@@ -22,14 +22,16 @@
 conflicts=('pathod')
 replaces=('pathod')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mitmproxy/mitmproxy/archive/v$pkgver.tar.gz;)
-sha512sums=('ac5cd82d4d89590b57625661c493aca6a702605c612ea1acd9e0d0806067d47f60085ee68260bba2a10dc343410ae6a76ea1575287a0e312e4467a4e8485c6e1')
+sha512sums=('6073c73b24618d6f64c4e99f199ebb6bc4157a3f83bfa7aff10a113f8dde823715e95bdf4202a1526dc0856d120858d32842b814327c3b98452b629fccb1790d')
 
 prepare() {
   cd $pkgname-$pkgver
 
   # Let's remove all the upper bounds and use system ca-certificatescate store
+  # urwid is pinned because the issue seems to affect Mac only
   sed -e '/certifi/d' \
   -e 's/, *<[0-9=.]*//' \
+  -e 's/,!=2.1.0//' \
   -e 's/==/>=/' \
   -i setup.py
   sed -e '/import certifi/d' \
@@ -44,7 +46,7 @@
 
 check() {
   cd $pkgname-$pkgver
-  python setup.py pytest
+  python setup.py pytest --addopts "--deselect 
test/mitmproxy/test_version.py::test_get_version"
 }
 
 package() {


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:34:24
  Author: felixonmars
Revision: 664515

archrelease: copy trunk to community-testing-any

Added:
  mitmproxy/repos/community-testing-any/
  mitmproxy/repos/community-testing-any/PKGBUILD
(from rev 664514, mitmproxy/trunk/PKGBUILD)

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

Copied: mitmproxy/repos/community-testing-any/PKGBUILD (from rev 664514, 
mitmproxy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-07-19 02:34:24 UTC (rev 664515)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Simon 'ALSimon' Gilliot 
+# Contributor: Olivier Biesmans 
+# Contributor: Dobroslaw Kijowski
+
+pkgname=mitmproxy
+pkgver=5.2
+pkgrel=1
+pkgdesc='SSL-capable man-in-the-middle HTTP proxy'
+arch=('any')
+url='https://mitmproxy.org'
+license=('MIT')
+depends=('python-blinker' 'python-brotli' 'python-click' 'python-cryptography' 
'python-flask'
+ 'python-h2' 'python-hyperframe' 'python-kaitaistruct' 'python-ldap3' 
'python-passlib'
+ 'python-protobuf' 'python-pyasn1' 'python-pyopenssl' 
'python-pyparsing' 'python-pyperclip'
+ 'python-ruamel-yaml' 'python-setuptools' 'python-sortedcontainers' 
'python-tornado'
+ 'python-urwid' 'python-wsproto' 'python-publicsuffix2' 
'python-zstandard')
+checkdepends=('python-asynctest' 'python-beautifulsoup4' 'python-parver' 
'python-pytest-runner'
+  'python-pytest-asyncio' 'python-requests' 'python-hypothesis')
+provides=('pathod')
+conflicts=('pathod')
+replaces=('pathod')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mitmproxy/mitmproxy/archive/v$pkgver.tar.gz;)
+sha512sums=('6073c73b24618d6f64c4e99f199ebb6bc4157a3f83bfa7aff10a113f8dde823715e95bdf4202a1526dc0856d120858d32842b814327c3b98452b629fccb1790d')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Let's remove all the upper bounds and use system ca-certificatescate store
+  # urwid is pinned because the issue seems to affect Mac only
+  sed -e '/certifi/d' \
+  -e 's/, *<[0-9=.]*//' \
+  -e 's/,!=2.1.0//' \
+  -e 's/==/>=/' \
+  -i setup.py
+  sed -e '/import certifi/d' \
+  -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+  -i mitmproxy/net/tls.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python setup.py pytest --addopts "--deselect 
test/mitmproxy/test_version.py::test_get_version"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:21:26
  Author: felixonmars
Revision: 664512

upgpkg: eslint 7.5.0-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 02:15:37 UTC (rev 664511)
+++ PKGBUILD2020-07-19 02:21:26 UTC (rev 664512)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=7.4.0
+pkgver=7.5.0
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('814fa5c6194f1eee391f726410681885686447dc0b1c71170bd15b5859d394491b2b264a5a05912e07fad44f335a606e23a839c4a06987d96d83736d64c545f2')
+sha512sums=('be550fd74c6c7bdb16b7d48646d72bd4b002ebb04435c40c15e57ec3912f2c4a057b7c49f1c1754a47749acce2471fd5302fbbd81e03c6b78213e391d76380e9')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:21:38
  Author: felixonmars
Revision: 664513

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 664512, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-19 02:21:26 UTC (rev 664512)
+++ PKGBUILD2020-07-19 02:21:38 UTC (rev 664513)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=7.4.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='https://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('814fa5c6194f1eee391f726410681885686447dc0b1c71170bd15b5859d394491b2b264a5a05912e07fad44f335a606e23a839c4a06987d96d83736d64c545f2')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 664512, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-19 02:21:38 UTC (rev 664513)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=7.5.0
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='https://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('be550fd74c6c7bdb16b7d48646d72bd4b002ebb04435c40c15e57ec3912f2c4a057b7c49f1c1754a47749acce2471fd5302fbbd81e03c6b78213e391d76380e9')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+  done
+}


[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:15:11
  Author: felixonmars
Revision: 664510

upgpkg: v2ray-domain-list-community 20200719015510-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 01:33:12 UTC (rev 664509)
+++ PKGBUILD2020-07-19 02:15:11 UTC (rev 664510)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20200718115842
+pkgver=20200719015510
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('0a0b5001cbf45a513ea09a198f5eec05323a5611f04a1f98299fd88274cb0a2add177b25325dfd8d74a7ae351cbd98b08fc38060d94ec6c9ad8ffd4abcd474e2')
+sha512sums=('28fc6a146699d1be2acc4858995ece49bb05cceaac9b5975d5d0486423c0ab379f624df2f4544d53dc4fa75c5ad5909fc266450b666b36eb0b69b5a08575c002')
 
 prepare() {
   mkdir .gopath


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-07-18 Thread Felix Yan via arch-commits
Date: Sunday, July 19, 2020 @ 02:15:37
  Author: felixonmars
Revision: 664511

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 664510, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-19 02:15:11 UTC (rev 664510)
+++ PKGBUILD2020-07-19 02:15:37 UTC (rev 664511)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20200718115842
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2ray/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('0a0b5001cbf45a513ea09a198f5eec05323a5611f04a1f98299fd88274cb0a2add177b25325dfd8d74a7ae351cbd98b08fc38060d94ec6c9ad8ffd4abcd474e2')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2ray
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2ray/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
664510, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-19 02:15:37 UTC (rev 664511)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20200719015510
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2ray/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('28fc6a146699d1be2acc4858995ece49bb05cceaac9b5975d5d0486423c0ab379f624df2f4544d53dc4fa75c5ad5909fc266450b666b36eb0b69b5a08575c002')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2ray
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2ray/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:33:12
  Author: anatolik
Revision: 664509

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-cqueues/repos/community-staging-x86_64/
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD
(from rev 664508, lua-cqueues/trunk/PKGBUILD)

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

Copied: lua-cqueues/repos/community-staging-x86_64/PKGBUILD (from rev 664508, 
lua-cqueues/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-19 01:33:12 UTC (rev 664509)
@@ -0,0 +1,58 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
+pkgver=20200603
+pkgrel=2
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/cqueues.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
+   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
+md5sums=('1c93648a274e780542b617d4729d4427'
+ '4eba795b85b147b2ea3fedac94bf5567')
+
+prepare() {
+   # https://github.com/wahern/cqueues/issues/239
+   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
+   cd "cqueues-rel-$pkgver"
+   patch -p1 < ../lua54.patch
+}
+
+build() {
+   cd "cqueues-rel-$pkgver"
+   make prefix=/usr
+}
+
+package_lua-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.1
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.2
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:32:56
  Author: anatolik
Revision: 664508

upgpkg: lua-cqueues 20200603-2: Lua 5.4 rebuild

Modified:
  lua-cqueues/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 01:24:29 UTC (rev 664507)
+++ PKGBUILD2020-07-19 01:32:56 UTC (rev 664508)
@@ -1,16 +1,25 @@
 # Maintainer: Daurnimator 
 
-pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues')
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
 pkgver=20200603
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='http://25thandclement.com/~william/projects/cqueues.html'
 license=('MIT')
-makedepends=('lua' 'lua51' 'lua52')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
 depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
-md5sums=('1c93648a274e780542b617d4729d4427')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
+   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
+md5sums=('1c93648a274e780542b617d4729d4427'
+ '4eba795b85b147b2ea3fedac94bf5567')
 
+prepare() {
+   # https://github.com/wahern/cqueues/issues/239
+   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
+   cd "cqueues-rel-$pkgver"
+   patch -p1 < ../lua54.patch
+}
+
 build() {
cd "cqueues-rel-$pkgver"
make prefix=/usr
@@ -20,7 +29,7 @@
pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
 
cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
@@ -39,3 +48,11 @@
make DESTDIR="$pkgdir" prefix=/usr install5.2
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
+
+package_lua53-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:24:29
  Author: anatolik
Revision: 664507

archrelease: copy trunk to community-staging-x86_64

Added:
  freeciv/repos/community-staging-x86_64/
  freeciv/repos/community-staging-x86_64/PKGBUILD
(from rev 664506, freeciv/trunk/PKGBUILD)

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

Copied: freeciv/repos/community-staging-x86_64/PKGBUILD (from rev 664506, 
freeciv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-19 01:24:29 UTC (rev 664507)
@@ -0,0 +1,26 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=freeciv
+pkgver=2.6.2
+pkgrel=2
+pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
+arch=('x86_64')
+url="http://www.freeciv.org/;
+license=('GPL')
+depends=('gtk3' 'sdl_mixer' 'lua53' 'sqlite' 'curl')
+makedepends=('python')
+backup=('etc/freeciv/database.lua')
+source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('d459c711a164fbaf215e0083aaf5784253a1492f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared --enable-sys-lua 
\
+--enable-client=gtk3 --enable-fcmp=gtk3 --enable-fcdb=sqlite3 
--enable-aimodules
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:24:11
  Author: anatolik
Revision: 664506

upgpkg: freeciv 2.6.2-2: Lua 5.4 rebuild

Modified:
  freeciv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-19 01:07:06 UTC (rev 664505)
+++ PKGBUILD2020-07-19 01:24:11 UTC (rev 664506)
@@ -2,12 +2,12 @@
 
 pkgname=freeciv
 pkgver=2.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
 arch=('x86_64')
 url="http://www.freeciv.org/;
 license=('GPL')
-depends=('gtk3' 'sdl_mixer' 'lua' 'sqlite' 'curl')
+depends=('gtk3' 'sdl_mixer' 'lua53' 'sqlite' 'curl')
 makedepends=('python')
 backup=('etc/freeciv/database.lua')
 
source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:06:47
  Author: anatolik
Revision: 664504

upgpkg: vicious 2.4.1-1: Lua 5.4 rebuild

Modified:
  vicious/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:57:13 UTC (rev 664503)
+++ PKGBUILD2020-07-19 01:06:47 UTC (rev 664504)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=vicious
-pkgver=2.3.3
+pkgver=2.4.1
 pkgrel=1
 pkgdesc='Widgets for the Awesome window manager'
 url='https://github.com/Mic92/vicious'
@@ -16,14 +16,14 @@
   'curl: for widget types accessing network resources'
 )
 
source=(https://github.com/Mic92/vicious/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('062f0e8c802a07b58d094fcc66aba7a7de242726733d31ee607a483c20c4957c')
-sha512sums=('2549fa168a8c8cebcb9ecf1eafbc7658213b6a5487839e8acbc2aaed18f0d0b8081550ee7beb93770ae7e600158e12b99b9e1c29af8a8807bb200cc1cdf75807')
+sha256sums=('02a123e77c42cb5bfff66e1bf95e5b8219ec83de91ecef5e4951be021438f3a3')
+sha512sums=('f236552815d896dc50ca6a92896d135fa4c7f31c8f8c6685909c4a2bc0b5349fe0e1ce173c58a95ccd9f6f23d0af47236d3146a75669a9eeebf18e778e6edeef')
 
 package() {
   cd ${pkgname}-$pkgver
-  install -Dm 644 *.lua -t "${pkgdir}/usr/share/lua/5.3/${pkgname}"
-  install -Dm 644 widgets/*.lua -t 
"${pkgdir}/usr/share/lua/5.3/${pkgname}/widgets"
-  install -Dm 644 contrib/*.lua -t 
"${pkgdir}/usr/share/lua/5.3/${pkgname}/contrib"
+  install -Dm 644 *.lua -t "${pkgdir}/usr/share/lua/5.4/${pkgname}"
+  install -Dm 644 widgets/*.lua -t 
"${pkgdir}/usr/share/lua/5.4/${pkgname}/widgets"
+  install -Dm 644 contrib/*.lua -t 
"${pkgdir}/usr/share/lua/5.4/${pkgname}/contrib"
   install -Dm 644 README.md Changes.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 


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

2020-07-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, July 19, 2020 @ 01:07:06
  Author: anatolik
Revision: 664505

archrelease: copy trunk to community-staging-any

Added:
  vicious/repos/community-staging-any/
  vicious/repos/community-staging-any/PKGBUILD
(from rev 664504, vicious/trunk/PKGBUILD)

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

Copied: vicious/repos/community-staging-any/PKGBUILD (from rev 664504, 
vicious/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-07-19 01:07:06 UTC (rev 664505)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sébastien Luttringer
+
+pkgname=vicious
+pkgver=2.4.1
+pkgrel=1
+pkgdesc='Widgets for the Awesome window manager'
+url='https://github.com/Mic92/vicious'
+arch=('any')
+license=('GPL2')
+depends=('lua')
+optdepends=(
+  'hddtemp: for the HDD Temp widget type'
+  'alsa-utils: for the Volume widget type'
+  'wireless_tools: for the Wireless widget type'
+  'curl: for widget types accessing network resources'
+)
+source=(https://github.com/Mic92/vicious/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('02a123e77c42cb5bfff66e1bf95e5b8219ec83de91ecef5e4951be021438f3a3')
+sha512sums=('f236552815d896dc50ca6a92896d135fa4c7f31c8f8c6685909c4a2bc0b5349fe0e1ce173c58a95ccd9f6f23d0af47236d3146a75669a9eeebf18e778e6edeef')
+
+package() {
+  cd ${pkgname}-$pkgver
+  install -Dm 644 *.lua -t "${pkgdir}/usr/share/lua/5.4/${pkgname}"
+  install -Dm 644 widgets/*.lua -t 
"${pkgdir}/usr/share/lua/5.4/${pkgname}/widgets"
+  install -Dm 644 contrib/*.lua -t 
"${pkgdir}/usr/share/lua/5.4/${pkgname}/contrib"
+  install -Dm 644 README.md Changes.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:56:46
  Author: felixonmars
Revision: 664500

archrelease: copy trunk to community-any

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

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

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

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


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:56:16
  Author: felixonmars
Revision: 664497

upgpkg: deepin-voice-note 5.7.15-1

Modified:
  deepin-voice-note/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:46:21 UTC (rev 664496)
+++ PKGBUILD2020-07-18 22:56:16 UTC (rev 664497)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-voice-note
-pkgver=5.7.14
+pkgver=5.7.15
 pkgrel=1
 pkgdesc='A lightweight memo tool to make text notes and voice recordings'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'ninja' 'qt5-tools')
 groups=('deepin-extra')
 
source=("https://github.com/linuxdeepin/deepin-voice-note/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('917ae8ca82b0cc5169c57293f4ea8e8288b29a8015cad89db682031a3253662c7b5b4cd61cc523e30edbc10fa5d981e1e49168135c5ba3f9662f149ed450c0f8')
+sha512sums=('a02cbf1fa01876dcce57f96074c51d740ee81870d4d131c5c53c4367c0c20c69ef0cd46ee4d9a181f4a32af8518d5f6cd03158b1184efd702b3a0e2b77c2c6aa')
 
 prepare() {
   cd deepin-voice-note-$pkgver


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:56:36
  Author: felixonmars
Revision: 664499

upgpkg: python-hypothesis 5.20.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:56:27 UTC (rev 664498)
+++ PKGBUILD2020-07-18 22:56:36 UTC (rev 664499)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.20.0
+pkgver=5.20.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('4ceb89fe028609e3393d6a12e060c6a4d786b61528adde8b5adfd74047870894823e3ee113f2283c7711292f71f92aba7724108277c3a61ffaab725b2acdfc19')
+sha512sums=('7d22946d5ff4a7e2001ee361592fe7f5b86cb826fec24927640898d44772bcd75b00a68f193342d62b9fec4f3d628e412d9eb502d536d0fe896625d49cf70671')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


[arch-commits] Commit in deepin-voice-note/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:56:27
  Author: felixonmars
Revision: 664498

archrelease: copy trunk to community-x86_64

Added:
  deepin-voice-note/repos/community-x86_64/PKGBUILD
(from rev 664497, deepin-voice-note/trunk/PKGBUILD)
Deleted:
  deepin-voice-note/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 22:56:16 UTC (rev 664497)
+++ PKGBUILD2020-07-18 22:56:27 UTC (rev 664498)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-voice-note
-pkgver=5.7.14
-pkgrel=1
-pkgdesc='A lightweight memo tool to make text notes and voice recordings'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-voice-note;
-license=('GPL3')
-replaces=('deepin-voice-recorder')
-depends=('deepin-qt5integration')
-makedepends=('cmake' 'ninja' 'qt5-tools')
-groups=('deepin-extra')
-source=("https://github.com/linuxdeepin/deepin-voice-note/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('917ae8ca82b0cc5169c57293f4ea8e8288b29a8015cad89db682031a3253662c7b5b4cd61cc523e30edbc10fa5d981e1e49168135c5ba3f9662f149ed450c0f8')
-
-prepare() {
-  cd deepin-voice-note-$pkgver
-  # Upstream likes to refactor code while ignoring pull requests
-  sed -i '1i#include ' src/views/middleviewdelegate.cpp 
src/views/leftviewdelegate.cpp
-  # Utterly broken code that treats all audio/mpeg as mp3 and they refused to 
fix.
-  # They really need to learn what the f**k is a codec and a container and 
they are *not* the same.
-  sed -e 's|codec.startsWith(m_defaultAudioFmt)|codec.startsWith("audio/mpeg, 
mpegversion=(int)1, layer=(int)3")|' \
-  -i src/common/vnoteaudiomanager.cpp
-}
-
-build() {
-  cd deepin-voice-note-$pkgver
-  cmake -GNinja .
-  ninja
-}
-
-package() {
-  cd deepin-voice-note-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-voice-note/repos/community-x86_64/PKGBUILD (from rev 664497, 
deepin-voice-note/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 22:56:27 UTC (rev 664498)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-voice-note
+pkgver=5.7.15
+pkgrel=1
+pkgdesc='A lightweight memo tool to make text notes and voice recordings'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-voice-note;
+license=('GPL3')
+replaces=('deepin-voice-recorder')
+depends=('deepin-qt5integration')
+makedepends=('cmake' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("https://github.com/linuxdeepin/deepin-voice-note/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('a02cbf1fa01876dcce57f96074c51d740ee81870d4d131c5c53c4367c0c20c69ef0cd46ee4d9a181f4a32af8518d5f6cd03158b1184efd702b3a0e2b77c2c6aa')
+
+prepare() {
+  cd deepin-voice-note-$pkgver
+  # Upstream likes to refactor code while ignoring pull requests
+  sed -i '1i#include ' src/views/middleviewdelegate.cpp 
src/views/leftviewdelegate.cpp
+  # Utterly broken code that treats all audio/mpeg as mp3 and they refused to 
fix.
+  # They really need to learn what the f**k is a codec and a container and 
they are *not* the same.
+  sed -e 's|codec.startsWith(m_defaultAudioFmt)|codec.startsWith("audio/mpeg, 
mpegversion=(int)1, layer=(int)3")|' \
+  -i src/common/vnoteaudiomanager.cpp
+}
+
+build() {
+  cd deepin-voice-note-$pkgver
+  cmake -GNinja .
+  ninja
+}
+
+package() {
+  cd deepin-voice-note-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-07-18 Thread Antonio Rojas via arch-commits
Date: Saturday, July 18, 2020 @ 22:46:11
  Author: arojas
Revision: 664495

Update to 3.4.3

Modified:
  kstars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:22:39 UTC (rev 664494)
+++ PKGBUILD2020-07-18 22:46:11 UTC (rev 664495)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kstars
-pkgver=3.4.2
-pkgrel=2
+pkgver=3.4.3
+pkgrel=1
 epoch=1
 pkgdesc="Desktop Planetarium"
 url="https://kde.org/applications/education/kstars/;
@@ -15,22 +15,16 @@
 makedepends=(extra-cmake-modules kdoctools eigen)
 optdepends=('xplanet: XPlanet support')
 
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('1300c0a9ef46972c56bbf2cca238b2106b7b8e6160f29dd2f057c3fdd09045ef'
+sha256sums=('c81119a85e9265991dd0fbfafdc6ba797bf3bedce64f4d5260511bafccebbe48'
 'SKIP')
 validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
 -DBUILD_TESTING=OFF
-  make
+  cmake --build build
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 }


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

2020-07-18 Thread Antonio Rojas via arch-commits
Date: Saturday, July 18, 2020 @ 22:46:21
  Author: arojas
Revision: 664496

archrelease: copy trunk to community-x86_64

Added:
  kstars/repos/community-x86_64/PKGBUILD
(from rev 664495, kstars/trunk/PKGBUILD)
Deleted:
  kstars/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 22:46:11 UTC (rev 664495)
+++ PKGBUILD2020-07-18 22:46:21 UTC (rev 664496)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kstars
-pkgver=3.4.2
-pkgrel=2
-epoch=1
-pkgdesc="Desktop Planetarium"
-url="https://kde.org/applications/education/kstars/;
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(wcslib libraw kplotting knewstuff knotifyconfig qt5-datavis3d libindi 
qt5-quickcontrols qt5-websockets qtkeychain
- breeze-icons hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools eigen)
-optdepends=('xplanet: XPlanet support')
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('1300c0a9ef46972c56bbf2cca238b2106b7b8e6160f29dd2f057c3fdd09045ef'
-'SKIP')
-validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kstars/repos/community-x86_64/PKGBUILD (from rev 664495, 
kstars/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 22:46:21 UTC (rev 664496)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kstars
+pkgver=3.4.3
+pkgrel=1
+epoch=1
+pkgdesc="Desktop Planetarium"
+url="https://kde.org/applications/education/kstars/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(wcslib libraw kplotting knewstuff knotifyconfig qt5-datavis3d libindi 
qt5-quickcontrols qt5-websockets qtkeychain
+ breeze-icons hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools eigen)
+optdepends=('xplanet: XPlanet support')
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c81119a85e9265991dd0fbfafdc6ba797bf3bedce64f4d5260511bafccebbe48'
+'SKIP')
+validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:22:39
  Author: felixonmars
Revision: 664494

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 664493, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-18 22:22:39 UTC (rev 664494)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=64
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --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
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 

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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:22:27
  Author: felixonmars
Revision: 664493

upgpkg: stack 2.3.1-64: rebuild with neat-interpolation 0.5.1.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:18:09 UTC (rev 664492)
+++ PKGBUILD2020-07-18 22:22:27 UTC (rev 664493)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=63
+pkgrel=64
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:17:59
  Author: felixonmars
Revision: 664491

upgpkg: dhall-bash 1.0.31-17: rebuild with neat-interpolation 0.5.1.1

Modified:
  dhall-bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:17:11 UTC (rev 664490)
+++ PKGBUILD2020-07-18 22:17:59 UTC (rev 664491)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-bash
 pkgver=1.0.31
-pkgrel=16
+pkgrel=17
 pkgdesc='Compile Dhall to Bash'
 url='https://dhall-lang.org'
 license=('BSD')


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:18:09
  Author: felixonmars
Revision: 664492

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-bash/repos/community-staging-x86_64/
  dhall-bash/repos/community-staging-x86_64/PKGBUILD
(from rev 664491, dhall-bash/trunk/PKGBUILD)

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

Copied: dhall-bash/repos/community-staging-x86_64/PKGBUILD (from rev 664491, 
dhall-bash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-18 22:18:09 UTC (rev 664492)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-bash
+pkgver=1.0.31
+pkgrel=17
+pkgdesc='Compile Dhall to Bash'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'dhall' 'haskell-neat-interpolation' 'haskell-shell-escape'
+ 'haskell-optparse-generic')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4ebdde3ad86630165a2241a75a9372a0933691353f9aecbc94994325952bc6b2532e2f351654f884e63fa3a23582bec6f4e3d58f7022df6ee50b80cc507c51ca')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--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
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:17:11
  Author: felixonmars
Revision: 664490

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-neat-interpolation/repos/community-staging-x86_64/
  haskell-neat-interpolation/repos/community-staging-x86_64/PKGBUILD
(from rev 664489, haskell-neat-interpolation/trunk/PKGBUILD)

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

Copied: haskell-neat-interpolation/repos/community-staging-x86_64/PKGBUILD 
(from rev 664489, haskell-neat-interpolation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-18 22:17:11 UTC (rev 664490)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=neat-interpolation
+pkgname=haskell-neat-interpolation
+pkgver=0.5.1.1
+pkgrel=1
+pkgdesc="A quasiquoter for neat and simple multiline text interpolation"
+url="https://github.com/nikita-volkov/neat-interpolation;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad4ccf934d772f038b6479adb6aa6bd8d0fa4bf6ec9c80dc7b92dcaae1ba96e611ab99dd44fe05f4b70739f9ecbb93f7332563cfc63d0fe4759872a5e8b2d9c4')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+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-neat-interpolation/trunk (PKGBUILD)

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:17:01
  Author: felixonmars
Revision: 664489

upgpkg: haskell-neat-interpolation 0.5.1.1-1: rebuild with neat-interpolation 
0.5.1.1

Modified:
  haskell-neat-interpolation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 22:14:43 UTC (rev 664488)
+++ PKGBUILD2020-07-18 22:17:01 UTC (rev 664489)
@@ -3,8 +3,8 @@
 
 _hkgname=neat-interpolation
 pkgname=haskell-neat-interpolation
-pkgver=0.5.1
-pkgrel=25
+pkgver=0.5.1.1
+pkgrel=1
 pkgdesc="A quasiquoter for neat and simple multiline text interpolation"
 url="https://github.com/nikita-volkov/neat-interpolation;
 license=("MIT")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
  'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('90c6895b3defb1e98cd94cec15a9c8e8d35fc6938e273fb294191e4b5d2b6bd0688dabe456ec36c89fa20a5b13139d96ea9606920f0307b1fa6f1e32ecbb813f')
+sha512sums=('ad4ccf934d772f038b6479adb6aa6bd8d0fa4bf6ec9c80dc7b92dcaae1ba96e611ab99dd44fe05f4b70739f9ecbb93f7332563cfc63d0fe4759872a5e8b2d9c4')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:14:43
  Author: felixonmars
Revision: 664488

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 22:14:32 UTC (rev 664487)
+++ PKGBUILD2020-07-18 22:14:43 UTC (rev 664488)
@@ -1,56 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-timeout
-pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='py.test plugin to abort hanging tests'
-arch=('any')
-license=('MIT')
-url='https://bitbucket.org/pytest-dev/pytest-timeout'
-makedepends=('python-pytest' 'python2-pytest')
-checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov' 
'python2-pytest-cov')
-source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('95cd8a3cff73a59eca64adcbb1b3a72dcdbd45760ca76a818ef3dcf4b192fd0bc82e02ce7d9f7bfbfa003d4fd1e16481bc4e94e1086cec56b81a8924f983b275')
-
-prepare() {
-  cp -a pytest-timeout-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-timeout-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-timeout-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-timeout-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-timeout-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-timeout() {
-  depends=('python-pytest')
-
-  cd pytest-timeout-$pkgver
-  python setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-timeout() {
-  depends=('python2-pytest')
-
-  cd pytest-timeout-$pkgver-py2
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-timeout/repos/community-any/PKGBUILD (from rev 664487, 
python-pytest-timeout/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 22:14:43 UTC (rev 664488)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-timeout
+pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
+pkgver=1.4.2
+pkgrel=1
+pkgdesc='py.test plugin to abort hanging tests'
+arch=('any')
+license=('MIT')
+url='https://bitbucket.org/pytest-dev/pytest-timeout'
+makedepends=('python-pytest' 'python2-pytest')
+checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov' 
'python2-pytest-cov')
+source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('062ce6c832a7139874ad8f165818c2a7d9cef4a2fe2c53a6c37d4f0a060cf920204f1d2d255e4d31953c0da268e708c1d305f362cd6d0ea103bc101ffb51b098')
+
+prepare() {
+  cp -a pytest-timeout-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-timeout-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-timeout-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-timeout-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-timeout-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-timeout() {
+  depends=('python-pytest')
+
+  cd pytest-timeout-$pkgver
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-timeout() {
+  depends=('python2-pytest')
+
+  cd pytest-timeout-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 22:14:32
  Author: felixonmars
Revision: 664487

upgpkg: python-pytest-timeout 1.4.2-1

Modified:
  python-pytest-timeout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 21:51:40 UTC (rev 664486)
+++ PKGBUILD2020-07-18 22:14:32 UTC (rev 664487)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pytest-timeout
 pkgname=('python-pytest-timeout' 'python2-pytest-timeout')
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc='py.test plugin to abort hanging tests'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-pytest' 'python2-pytest')
 checkdepends=('python-pexpect' 'python2-pexpect' 'python-pytest-cov' 
'python2-pytest-cov')
 
source=("https://github.com/pytest-dev/pytest-timeout/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('95cd8a3cff73a59eca64adcbb1b3a72dcdbd45760ca76a818ef3dcf4b192fd0bc82e02ce7d9f7bfbfa003d4fd1e16481bc4e94e1086cec56b81a8924f983b275')
+sha512sums=('062ce6c832a7139874ad8f165818c2a7d9cef4a2fe2c53a6c37d4f0a060cf920204f1d2d255e4d31953c0da268e708c1d305f362cd6d0ea103bc101ffb51b098')
 
 prepare() {
   cp -a pytest-timeout-$pkgver{,-py2}


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:51:40
  Author: ffy00
Revision: 664486

archrelease: copy trunk to community-any

Added:
  python-nmigen-boards/repos/community-any/PKGBUILD
(from rev 664485, python-nmigen-boards/trunk/PKGBUILD)
Deleted:
  python-nmigen-boards/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 21:51:31 UTC (rev 664485)
+++ PKGBUILD2020-07-18 21:51:40 UTC (rev 664486)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=nmigen-boards
-pkgname=python-$_pkgname
-_commit=86ae7919fa509c0fca75ca9717abbb4bddd2f6f6
-pkgver=r105.86ae791
-pkgrel=1
-pkgdesc='Board and connector definition files for nMigen'
-arch=('any')
-url='https://github.com/nmigen/nmigen-boards'
-license=('BSD')
-depends=('python-nmigen')
-makedepends=('git' 'python-setuptools-scm')
-source=("git+$url?commit=$pkgver")
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $_pkgname
-
-  printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
-}
-
-build() {
-  cd $_pkgname
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-nmigen-boards/repos/community-any/PKGBUILD (from rev 664485, 
python-nmigen-boards/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 21:51:40 UTC (rev 664486)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=nmigen-boards
+pkgname=python-$_pkgname
+_commit=d9264bf03b1a7ddb71017a2885383c4cec777f53
+pkgver=r133.d9264bf
+pkgrel=1
+pkgdesc='Board and connector definition files for nMigen'
+arch=('any')
+url='https://github.com/nmigen/nmigen-boards'
+license=('BSD')
+depends=('python-nmigen')
+makedepends=('git' 'python-setuptools-scm')
+source=("git+$url?commit=$pkgver")
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $_pkgname
+
+  printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+build() {
+  cd $_pkgname
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:51:31
  Author: ffy00
Revision: 664485

upgpkg: python-nmigen-boards r133.d9264bf-1

Modified:
  python-nmigen-boards/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 21:49:31 UTC (rev 664484)
+++ PKGBUILD2020-07-18 21:51:31 UTC (rev 664485)
@@ -2,8 +2,8 @@
 
 _pkgname=nmigen-boards
 pkgname=python-$_pkgname
-_commit=86ae7919fa509c0fca75ca9717abbb4bddd2f6f6
-pkgver=r105.86ae791
+_commit=d9264bf03b1a7ddb71017a2885383c4cec777f53
+pkgver=r133.d9264bf
 pkgrel=1
 pkgdesc='Board and connector definition files for nMigen'
 arch=('any')


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:49:17
  Author: ffy00
Revision: 664483

upgpkg: python-pyvcd 0.2.3-1

Modified:
  python-pyvcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 21:33:02 UTC (rev 664482)
+++ PKGBUILD2020-07-18 21:49:17 UTC (rev 664483)
@@ -2,7 +2,7 @@
 
 _pkgname=pyvcd
 pkgname=python-$_pkgname
-pkgver=0.1.7
+pkgver=0.2.3
 pkgrel=1
 pkgdesc='Python package for writing Value Change Dump (VCD) files'
 arch=('any')
@@ -10,7 +10,7 @@
 license=('MIT')
 makedepends=('python-setuptools-scm')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('9940647df4e3d18dca5a84b36a6262f7578f6b4d563d09dce841fde225b3351c8f48ca62ac44a64a4d73e8ccf2375f41697d890d008e3771cc129618b958')
+sha512sums=('0683f3c5d2e82af5b4f8b448cccf168fefa42b8f1f98fde238562d6c754d7d66366dfce83ea839056d56dd97fcb1559b8c9ce953efc5a65b13552f10aa58328f')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:49:31
  Author: ffy00
Revision: 664484

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 21:49:17 UTC (rev 664483)
+++ PKGBUILD2020-07-18 21:49:31 UTC (rev 664484)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pyvcd
-pkgname=python-$_pkgname
-pkgver=0.1.7
-pkgrel=1
-pkgdesc='Python package for writing Value Change Dump (VCD) files'
-arch=('any')
-url='https://github.com/SanDisk-Open-Source/pyvcd'
-license=('MIT')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('9940647df4e3d18dca5a84b36a6262f7578f6b4d563d09dce841fde225b3351c8f48ca62ac44a64a4d73e8ccf2375f41697d890d008e3771cc129618b958')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyvcd/repos/community-any/PKGBUILD (from rev 664483, 
python-pyvcd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 21:49:31 UTC (rev 664484)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pyvcd
+pkgname=python-$_pkgname
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='Python package for writing Value Change Dump (VCD) files'
+arch=('any')
+url='https://github.com/SanDisk-Open-Source/pyvcd'
+license=('MIT')
+makedepends=('python-setuptools-scm')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('0683f3c5d2e82af5b4f8b448cccf168fefa42b8f1f98fde238562d6c754d7d66366dfce83ea839056d56dd97fcb1559b8c9ce953efc5a65b13552f10aa58328f')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:33:02
  Author: ffy00
Revision: 664482

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 21:32:46 UTC (rev 664481)
+++ PKGBUILD2020-07-18 21:33:02 UTC (rev 664482)
@@ -1,43 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=edalize
-pkgname=python-$_pkgname
-pkgver=0.2.2
-pkgrel=1
-pkgdesc='An abstraction library for interfacing EDA tools'
-arch=('any')
-url='https://github.com/olofk/edalize'
-license=('BSD')
-depends=('python' 'python-jinja')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('48b2642ff9a072ec33ed907fd82fa63c33f7e7deeaf442972a2b0fcd10fa05715f189e213a80ef75176d87574c2ad660c5af0df5b90d8245416ae3ed29b44d18')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-prepare() {
-  rm $_pkgname-$pkgver/tests/test_spyglass.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=. pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-edalize/repos/community-any/PKGBUILD (from rev 664481, 
python-edalize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 21:33:02 UTC (rev 664482)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=edalize
+pkgname=python-$_pkgname
+pkgver=0.2.2
+pkgrel=2
+pkgdesc='An abstraction library for interfacing EDA tools'
+arch=('any')
+url='https://github.com/olofk/edalize'
+license=('BSD')
+depends=('python' 'python-jinja')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('48b2642ff9a072ec33ed907fd82fa63c33f7e7deeaf442972a2b0fcd10fa05715f189e213a80ef75176d87574c2ad660c5af0df5b90d8245416ae3ed29b44d18')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  rm tests/test_spyglass.py
+
+  sed -i '/pytest/d' setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=. pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 21:32:46
  Author: ffy00
Revision: 664481

upgpkg: python-edalize 0.2.2-2 (remove pytest from requires in metadata)

Modified:
  python-edalize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 21:24:24 UTC (rev 664480)
+++ PKGBUILD2020-07-18 21:32:46 UTC (rev 664481)
@@ -3,7 +3,7 @@
 _pkgname=edalize
 pkgname=python-$_pkgname
 pkgver=0.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='An abstraction library for interfacing EDA tools'
 arch=('any')
 url='https://github.com/olofk/edalize'
@@ -17,7 +17,11 @@
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
 prepare() {
-  rm $_pkgname-$pkgver/tests/test_spyglass.py
+  cd $_pkgname-$pkgver
+
+  rm tests/test_spyglass.py
+
+  sed -i '/pytest/d' setup.py
 }
 
 build() {


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

2020-07-18 Thread Maxim Baz via arch-commits
Date: Saturday, July 18, 2020 @ 21:24:20
  Author: maximbaz
Revision: 664479

upgpkg: croc 8.0.12-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:55:16 UTC (rev 664478)
+++ PKGBUILD2020-07-18 21:24:20 UTC (rev 664479)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=8.0.11
+pkgver=8.0.12
 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=('f2791eda8166144331d5c33226ccdc324b50b8dfa2363d63554ffd8dcedebd41')
+sha256sums=('fdf849661d172773f9b78baf76a4ff8d56dc203a77246e20d85a13ce2e6f1a30')
 
 build() {
 cd "${pkgname}-${pkgver}"


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

2020-07-18 Thread Maxim Baz via arch-commits
Date: Saturday, July 18, 2020 @ 21:24:24
  Author: maximbaz
Revision: 664480

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 21:24:20 UTC (rev 664479)
+++ PKGBUILD2020-07-18 21:24:24 UTC (rev 664480)
@@ -1,33 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=8.0.11
-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=('f2791eda8166144331d5c33226ccdc324b50b8dfa2363d63554ffd8dcedebd41')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_LDFLAGS="$LDFLAGS"
-export GOFLAGS="-buildmode=pie -trimpath -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 664479, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 21:24:24 UTC (rev 664480)
@@ -0,0 +1,33 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=8.0.12
+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=('fdf849661d172773f9b78baf76a4ff8d56dc203a77246e20d85a13ce2e6f1a30')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_LDFLAGS="$LDFLAGS"
+export GOFLAGS="-buildmode=pie -trimpath -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 isync/trunk (PKGBUILD)

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:55:10
  Author: jsteel
Revision: 664477

upgpkg: isync 1.3.2-1

Modified:
  isync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:50:00 UTC (rev 664476)
+++ PKGBUILD2020-07-18 20:55:10 UTC (rev 664477)
@@ -5,8 +5,8 @@
 # Contributor: Leslie P. Polzer 
 
 pkgname=isync
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.2
+pkgrel=1
 pkgdesc="IMAP and MailDir mailbox synchronizer"
 arch=('x86_64')
 url="http://isync.sourceforge.net;
@@ -14,7 +14,7 @@
 depends=('libsasl' 'zlib')
 
source=(https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz
 
https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz.asc)
-md5sums=('58bc3507ebe930f8fec5997430be85d5'
+md5sums=('69df20e88201aac818430b13e1f724b6'
  'SKIP')
 validpgpkeys=('96DD32BFBF9FAB04B0D95305AA283E0B2F1BB1D1'
   '63BFD037CAD71E8DFF3AEA3AC17714F08D1BDBBA')


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:55:16
  Author: jsteel
Revision: 664478

archrelease: copy trunk to community-x86_64

Added:
  isync/repos/community-x86_64/PKGBUILD
(from rev 664477, isync/trunk/PKGBUILD)
Deleted:
  isync/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:55:10 UTC (rev 664477)
+++ PKGBUILD2020-07-18 20:55:16 UTC (rev 664478)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Mark Pustjens 
-# Contributor: Geoffroy Carrier 
-# Contributor: Giorgio Lando 
-# Contributor: Leslie P. Polzer 
-
-pkgname=isync
-pkgver=1.3.1
-pkgrel=2
-pkgdesc="IMAP and MailDir mailbox synchronizer"
-arch=('x86_64')
-url="http://isync.sourceforge.net;
-license=('GPL2')
-depends=('libsasl' 'zlib')
-source=(https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz
-
https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz.asc)
-md5sums=('58bc3507ebe930f8fec5997430be85d5'
- 'SKIP')
-validpgpkeys=('96DD32BFBF9FAB04B0D95305AA283E0B2F1BB1D1'
-  '63BFD037CAD71E8DFF3AEA3AC17714F08D1BDBBA')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: isync/repos/community-x86_64/PKGBUILD (from rev 664477, 
isync/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:55:16 UTC (rev 664478)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Mark Pustjens 
+# Contributor: Geoffroy Carrier 
+# Contributor: Giorgio Lando 
+# Contributor: Leslie P. Polzer 
+
+pkgname=isync
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="IMAP and MailDir mailbox synchronizer"
+arch=('x86_64')
+url="http://isync.sourceforge.net;
+license=('GPL2')
+depends=('libsasl' 'zlib')
+source=(https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz
+
https://downloads.sourceforge.net/sourceforge/isync/$pkgname-$pkgver.tar.gz.asc)
+md5sums=('69df20e88201aac818430b13e1f724b6'
+ 'SKIP')
+validpgpkeys=('96DD32BFBF9FAB04B0D95305AA283E0B2F1BB1D1'
+  '63BFD037CAD71E8DFF3AEA3AC17714F08D1BDBBA')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:49:54
  Author: jsteel
Revision: 664475

upgpkg: python-boto3 1.14.23-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:49:48 UTC (rev 664474)
+++ PKGBUILD2020-07-18 20:49:54 UTC (rev 664475)
@@ -3,7 +3,7 @@
 
 pkgbase=python-boto3
 pkgname=python-boto3
-pkgver=1.14.20
+pkgver=1.14.23
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('d8f281d41386754c3720eeade23bb7b3c2b74176b5e0a763c5f355ed44e52f651d76a10dcc947142f0438be7c983bfc26ec8d31a1b341f55149188e6e7d6d1d8')
+sha512sums=('263b2abf3c220d3fb3d7acf4cd87266c11d3dcd5d7ffcafb0aab128b1e324d6f99c44de8abfb621b153b5fc51b9823b6b79ea5c529f6c59c548c900015bcdb5e')
 
 build() {
   cd boto3-$pkgver


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:49:48
  Author: jsteel
Revision: 664474

archrelease: copy trunk to community-any

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

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

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

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


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:50:00
  Author: jsteel
Revision: 664476

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:49:54 UTC (rev 664475)
+++ PKGBUILD2020-07-18 20:50:00 UTC (rev 664476)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Felix Yan 
-
-pkgbase=python-boto3
-pkgname=python-boto3
-pkgver=1.14.20
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('d8f281d41386754c3720eeade23bb7b3c2b74176b5e0a763c5f355ed44e52f651d76a10dcc947142f0438be7c983bfc26ec8d31a1b341f55149188e6e7d6d1d8')
-
-build() {
-  cd boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 664475, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:50:00 UTC (rev 664476)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgbase=python-boto3
+pkgname=python-boto3
+pkgver=1.14.23
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('263b2abf3c220d3fb3d7acf4cd87266c11d3dcd5d7ffcafb0aab128b1e324d6f99c44de8abfb621b153b5fc51b9823b6b79ea5c529f6c59c548c900015bcdb5e')
+
+build() {
+  cd boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:49:24
  Author: jsteel
Revision: 664471

upgpkg: python-botocore 1.17.23-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:26:36 UTC (rev 664470)
+++ PKGBUILD2020-07-18 20:49:24 UTC (rev 664471)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.17.20
+pkgver=1.17.23
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
 docutils-0.16.patch)
-md5sums=('d4c3cd3770a79a37216e31f515fe829a'
+md5sums=('7957cc6948f02e1254c6238903206d96'
  'a7cd91ca093446fa30459a9f43170b29')
 
 prepare() {


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:49:43
  Author: jsteel
Revision: 664473

upgpkg: aws-cli 1.18.100-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:49:34 UTC (rev 664472)
+++ PKGBUILD2020-07-18 20:49:43 UTC (rev 664473)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.18.97
+pkgver=1.18.100
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('21a439981e656167d3165460b3404f7d')
+md5sums=('cfb771eaf9c6b9b734c030dd1cbb8fec')
 
 build() {
   cd $pkgname-$pkgver


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

2020-07-18 Thread Jonathan Steel via arch-commits
Date: Saturday, July 18, 2020 @ 20:49:34
  Author: jsteel
Revision: 664472

archrelease: copy trunk to community-any

Added:
  python-botocore/repos/community-any/PKGBUILD
(from rev 664471, python-botocore/trunk/PKGBUILD)
  python-botocore/repos/community-any/docutils-0.16.patch
(from rev 664471, python-botocore/trunk/docutils-0.16.patch)
Deleted:
  python-botocore/repos/community-any/PKGBUILD
  python-botocore/repos/community-any/docutils-0.16.patch

-+
 PKGBUILD|   70 +-
 docutils-0.16.patch |   44 +++
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:49:24 UTC (rev 664471)
+++ PKGBUILD2020-07-18 20:49:34 UTC (rev 664472)
@@ -1,35 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.17.20
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
-docutils-0.16.patch)
-md5sums=('d4c3cd3770a79a37216e31f515fe829a'
- 'a7cd91ca093446fa30459a9f43170b29')
-
-prepare() {
-  cd botocore-$pkgver
-  # https://github.com/boto/botocore/pull/2011
-  patch -Np1 -i ../docutils-0.16.patch
-}
-
-build() {
-  cd botocore-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 664471, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:49:34 UTC (rev 664472)
@@ -0,0 +1,35 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.17.23
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+docutils-0.16.patch)
+md5sums=('7957cc6948f02e1254c6238903206d96'
+ 'a7cd91ca093446fa30459a9f43170b29')
+
+prepare() {
+  cd botocore-$pkgver
+  # https://github.com/boto/botocore/pull/2011
+  patch -Np1 -i ../docutils-0.16.patch
+}
+
+build() {
+  cd botocore-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: docutils-0.16.patch
===
--- docutils-0.16.patch 2020-07-18 20:49:24 UTC (rev 664471)
+++ docutils-0.16.patch 2020-07-18 20:49:34 UTC (rev 664472)
@@ -1,22 +0,0 @@
-From 492c79185ac2f0bec928784a0c48868b973fe6a4 Mon Sep 17 00:00:00 2001
-From: Sebastian P 
-Date: Fri, 17 Jan 2020 14:19:19 +0100
-Subject: [PATCH] setup.py: Allow use with docutils >=0.16
-

- setup.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index edc357897..555e5ef9f 100644
 a/setup.py
-+++ b/setup.py
-@@ -25,7 +25,7 @@ def find_version(*file_paths):
- 
- requires = [
- 'jmespath>=0.7.1,<1.0.0',
--'docutils>=0.10,<0.16',
-+'docutils>=0.10,<1.0.0',
- 'python-dateutil>=2.1,<3.0.0',
- ]
- 

Copied: python-botocore/repos/community-any/docutils-0.16.patch (from rev 
664471, python-botocore/trunk/docutils-0.16.patch)
===
--- docutils-0.16.patch (rev 0)
+++ docutils-0.16.patch 2020-07-18 20:49:34 UTC (rev 664472)
@@ -0,0 +1,22 @@
+From 492c79185ac2f0bec928784a0c48868b973fe6a4 Mon Sep 17 00:00:00 2001
+From: Sebastian P 
+Date: Fri, 17 Jan 2020 14:19:19 +0100
+Subject: [PATCH] setup.py: Allow use with docutils >=0.16
+
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index edc357897..555e5ef9f 100644
+--- a/setup.py
 b/setup.py
+@@ -25,7 +25,7 @@ def find_version(*file_paths):
+ 
+ requires = [
+ 'jmespath>=0.7.1,<1.0.0',
+-'docutils>=0.10,<0.16',
++'docutils>=0.10,<1.0.0',
+ 'python-dateutil>=2.1,<3.0.0',
+ ]
+ 


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

2020-07-18 Thread David Runge via arch-commits
Date: Saturday, July 18, 2020 @ 20:26:36
  Author: dvzrv
Revision: 664470

archrelease: copy trunk to community-x86_64

Added:
  new-session-manager/repos/community-x86_64/PKGBUILD
(from rev 664469, new-session-manager/trunk/PKGBUILD)
Deleted:
  new-session-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:26:31 UTC (rev 664469)
+++ PKGBUILD2020-07-18 20:26:36 UTC (rev 664470)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=new-session-manager
-pkgver=1.4.0
-pkgrel=1
-pkgdesc="Audio session manager"
-arch=('x86_64')
-url="https://github.com/linuxaudio/new-session-manager;
-license=('GPL3')
-depends=('gcc-libs' 'glibc')
-makedepends=('fltk' 'jack' 'liblo' 'meson')
-optdepends=('fltk: for nsm-legacy-gui')
-provides=('non-session-manager')
-conflicts=('non-session-manager')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxaudio/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('0cbcd0e03f774da30b35a60556a8c18621274e9f57a6fd2155e112003fe1ba46b48e831e1b42da2c6b0e4a48716386aa05a150b24c949797438be95dab897af5')
-b2sums=('aa5abfb53317cb08c2a34e4d6fa6d254c076fc8e5d4ab378726b02e375771f928fb1191fbc29afe059244ebc81205696fedc65018b39a7c637bd8a2204178382')
-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix='/usr' \
---buildtype plain \
---wrap-mode nodownload \
--D b_lto=true \
--D b_pie=true \
-build
-  ninja -C build
-}
-
-package() {
-  depends+=('libjack.so' 'liblo.so')
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  install -vDm 644 {CHANGELOG,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: new-session-manager/repos/community-x86_64/PKGBUILD (from rev 664469, 
new-session-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:26:36 UTC (rev 664470)
@@ -0,0 +1,37 @@
+# Maintainer: David Runge 
+
+pkgname=new-session-manager
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="Audio session manager"
+arch=('x86_64')
+url="https://github.com/linuxaudio/new-session-manager;
+license=('GPL3')
+depends=('gcc-libs' 'glibc')
+makedepends=('fltk' 'jack' 'liblo' 'meson')
+optdepends=('fltk: for nsm-legacy-gui')
+provides=('non-session-manager')
+conflicts=('non-session-manager')
+replaces=('non-session-manager')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxaudio/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('0cbcd0e03f774da30b35a60556a8c18621274e9f57a6fd2155e112003fe1ba46b48e831e1b42da2c6b0e4a48716386aa05a150b24c949797438be95dab897af5')
+b2sums=('aa5abfb53317cb08c2a34e4d6fa6d254c076fc8e5d4ab378726b02e375771f928fb1191fbc29afe059244ebc81205696fedc65018b39a7c637bd8a2204178382')
+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix='/usr' \
+--buildtype plain \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+build
+  ninja -C build
+}
+
+package() {
+  depends+=('libjack.so' 'liblo.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  install -vDm 644 {CHANGELOG,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in new-session-manager/trunk (PKGBUILD)

2020-07-18 Thread David Runge via arch-commits
Date: Saturday, July 18, 2020 @ 20:26:31
  Author: dvzrv
Revision: 664469

upgpkg: new-session-manager 1.4.0-2: Rebuild to replace non-session-manager.

Modified:
  new-session-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:26:00 UTC (rev 664468)
+++ PKGBUILD2020-07-18 20:26:31 UTC (rev 664469)
@@ -2,7 +2,7 @@
 
 pkgname=new-session-manager
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Audio session manager"
 arch=('x86_64')
 url="https://github.com/linuxaudio/new-session-manager;
@@ -12,6 +12,7 @@
 optdepends=('fltk: for nsm-legacy-gui')
 provides=('non-session-manager')
 conflicts=('non-session-manager')
+replaces=('non-session-manager')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxaudio/${pkgname}/archive/v${pkgver}.tar.gz;)
 
sha512sums=('0cbcd0e03f774da30b35a60556a8c18621274e9f57a6fd2155e112003fe1ba46b48e831e1b42da2c6b0e4a48716386aa05a150b24c949797438be95dab897af5')
 
b2sums=('aa5abfb53317cb08c2a34e4d6fa6d254c076fc8e5d4ab378726b02e375771f928fb1191fbc29afe059244ebc81205696fedc65018b39a7c637bd8a2204178382')


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

2020-07-18 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, July 18, 2020 @ 20:26:00
  Author: svenstaro
Revision: 664468

archrelease: copy trunk to community-x86_64

Added:
  widelands/repos/community-x86_64/PKGBUILD
(from rev 664467, widelands/trunk/PKGBUILD)
  widelands/repos/community-x86_64/widelands.desktop
(from rev 664467, widelands/trunk/widelands.desktop)
  widelands/repos/community-x86_64/widelands.png
(from rev 664467, widelands/trunk/widelands.png)
Deleted:
  
widelands/repos/community-x86_64/45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch
  widelands/repos/community-x86_64/PKGBUILD
  widelands/repos/community-x86_64/widelands.desktop
  widelands/repos/community-x86_64/widelands.png

+
 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch |   22 
 PKGBUILD   |  108 ++-
 widelands.desktop  |   16 +--
 3 files changed, 58 insertions(+), 88 deletions(-)

Deleted: 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch
===
--- 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch  2020-07-18 20:25:41 UTC 
(rev 664467)
+++ 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch  2020-07-18 20:26:00 UTC 
(rev 664468)
@@ -1,22 +0,0 @@
-From 45249a2c7172fdc2d5cd856a1ee05670f21f0db7 Mon Sep 17 00:00:00 2001
-From: franku 
-Date: Thu, 18 Jul 2019 19:30:34 +0200
-Subject: [PATCH] use link_libraries instead of set(CMAKE_EXE_LINKER_FLAGS...
-

- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index b59171f112..acb5f2c1d7 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -182,7 +182,7 @@ endif(OPTION_ASAN)
- 
- # This is set to avoid linker errors when using GLVND-libs on Linux
- if("${OpenGL_GL_PREFERENCE}" STREQUAL "GLVND")
--   set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lGL")
-+   link_libraries("GL")
-add_compile_definitions(WL_USE_GLVND)
-message(STATUS "Adding linker flags for GLVND.")
- endif()

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:25:41 UTC (rev 664467)
+++ PKGBUILD2020-07-18 20:26:00 UTC (rev 664468)
@@ -1,58 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Arkham 
-# Contributor: Christoph Zeiler 
-
-pkgname=widelands
-pkgver=20
-_realver=build${pkgver}
-pkgrel=9
-pkgdesc="A realtime strategy game with emphasis on economy and transport"
-arch=('x86_64')
-url="https://widelands.org/;
-license=('GPL')
-depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua' 
'glew' 'python' 'boost-libs')
-makedepends=('cmake' 'boost' 'mesa' 'ninja' 'git')
-replaces=('widelands-data')
-source=("git+https://github.com/widelands/widelands.git#commit=ce578db;
-$pkgname.desktop
-$pkgname.png
-45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch)
-sha512sums=('SKIP'
-
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
-
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
-
'51b1fb6bed262cc62023403c5d1bd2663c7e37ed9e89afbe11eec54a39bde8c48e1413f80b4044df5b7e972287843e1fa8bf5a8c0af7c5afa146c9f087181b7c')
-
-prepare() {
-  cd $pkgname
-
-  patch -Np1 -i "$srcdir"/45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch
-
-  mkdir -p build && cd build
-}
-
-build() {
-  cd $pkgname/build
-
-  cmake -G Ninja .. \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DWL_INSTALL_BASEDIR=/usr \
-  -DWL_INSTALL_DATADIR=/usr/share/widelands
-  ninja
-}
-
-package() {
-  cd $pkgname/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  mkdir -p "$pkgdir"/usr/bin
-  mv "$pkgdir"/usr/{widelands,wl_map_object_info,wl_map_info} "$pkgdir"/usr/bin
-  mv "$pkgdir"/usr/{VERSION,ChangeLog,CREDITS} "$pkgdir"/usr/share/widelands
-
-  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
-  mv "$pkgdir"/usr/COPYING "$pkgdir"/usr/share/licenses/$pkgname
-
-  install -Dm644 "$srcdir"/$pkgname.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
-  install -Dm644 "$srcdir"/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-}

Copied: widelands/repos/community-x86_64/PKGBUILD (from rev 664467, 
widelands/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:26:00 UTC (rev 664468)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=21
+_realver=build${pkgver}
+pkgrel=1
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('x86_64')
+url="https://widelands.org/;
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 

[arch-commits] Commit in widelands/trunk (2 files)

2020-07-18 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, July 18, 2020 @ 20:25:41
  Author: svenstaro
Revision: 664467

upgpkg: widelands 21-1

Modified:
  widelands/trunk/PKGBUILD
Deleted:
  widelands/trunk/45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch

+
 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch |   22 --
 PKGBUILD   |   34 ---
 2 files changed, 13 insertions(+), 43 deletions(-)

Deleted: 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch
===
--- 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch  2020-07-18 20:17:03 UTC 
(rev 664466)
+++ 45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch  2020-07-18 20:25:41 UTC 
(rev 664467)
@@ -1,22 +0,0 @@
-From 45249a2c7172fdc2d5cd856a1ee05670f21f0db7 Mon Sep 17 00:00:00 2001
-From: franku 
-Date: Thu, 18 Jul 2019 19:30:34 +0200
-Subject: [PATCH] use link_libraries instead of set(CMAKE_EXE_LINKER_FLAGS...
-

- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index b59171f112..acb5f2c1d7 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -182,7 +182,7 @@ endif(OPTION_ASAN)
- 
- # This is set to avoid linker errors when using GLVND-libs on Linux
- if("${OpenGL_GL_PREFERENCE}" STREQUAL "GLVND")
--   set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lGL")
-+   link_libraries("GL")
-add_compile_definitions(WL_USE_GLVND)
-message(STATUS "Adding linker flags for GLVND.")
- endif()

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:17:03 UTC (rev 664466)
+++ PKGBUILD2020-07-18 20:25:41 UTC (rev 664467)
@@ -3,48 +3,40 @@
 # Contributor: Christoph Zeiler 
 
 pkgname=widelands
-pkgver=20
+pkgver=21
 _realver=build${pkgver}
-pkgrel=9
+pkgrel=1
 pkgdesc="A realtime strategy game with emphasis on economy and transport"
 arch=('x86_64')
 url="https://widelands.org/;
 license=('GPL')
-depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua' 
'glew' 'python' 'boost-libs')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua' 
'glew' 'python' 'boost-libs' 'dbus')
 makedepends=('cmake' 'boost' 'mesa' 'ninja' 'git')
 replaces=('widelands-data')
-source=("git+https://github.com/widelands/widelands.git#commit=ce578db;
+source=("git+https://github.com/widelands/widelands.git#tag=build$pkgver;
 $pkgname.desktop
-$pkgname.png
-45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch)
+$pkgname.png)
 sha512sums=('SKIP'
 
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
-
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
-
'51b1fb6bed262cc62023403c5d1bd2663c7e37ed9e89afbe11eec54a39bde8c48e1413f80b4044df5b7e972287843e1fa8bf5a8c0af7c5afa146c9f087181b7c')
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac')
 
-prepare() {
+build() {
   cd $pkgname
 
-  patch -Np1 -i "$srcdir"/45249a2c7172fdc2d5cd856a1ee05670f21f0db7.patch
-
-  mkdir -p build && cd build
-}
-
-build() {
-  cd $pkgname/build
-
-  cmake -G Ninja .. \
+  cmake . \
+  -G Ninja . \
+  -Bbuild \
   -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_INSTALL_PREFIX=/usr \
   -DWL_INSTALL_BASEDIR=/usr \
   -DWL_INSTALL_DATADIR=/usr/share/widelands
-  ninja
+  ninja -C build
 }
 
 package() {
-  cd $pkgname/build
+  cd $pkgname
 
-  DESTDIR="$pkgdir" ninja install
+  DESTDIR="$pkgdir" ninja -C build install
 
   mkdir -p "$pkgdir"/usr/bin
   mv "$pkgdir"/usr/{widelands,wl_map_object_info,wl_map_info} "$pkgdir"/usr/bin


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

2020-07-18 Thread Morten Linderud via arch-commits
Date: Saturday, July 18, 2020 @ 20:17:03
  Author: foxboron
Revision: 664466

archrelease: copy trunk to community-x86_64

Added:
  python-reportlab/repos/community-x86_64/ChangeLog
(from rev 664465, python-reportlab/trunk/ChangeLog)
  python-reportlab/repos/community-x86_64/PKGBUILD
(from rev 664465, python-reportlab/trunk/PKGBUILD)
Deleted:
  python-reportlab/repos/community-x86_64/ChangeLog
  python-reportlab/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |   36 +++
 PKGBUILD  |   68 ++--
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2020-07-18 20:16:19 UTC (rev 664465)
+++ ChangeLog   2020-07-18 20:17:03 UTC (rev 664466)
@@ -1,18 +0,0 @@
-
-2009-02-17  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.3
-
-2008-11-03  Giovanni Scafora   
-
-   * Rebuilt against python 2.6
-
-2008-09-14  Douglas Soares de Andrade  
-
-   * Updating for x86_64: 2.2
-
-2008-09-13  Douglas Soares de Andrade  
-
-   * Adding ChangeLog
-   * Updating for i686: 2.2
-

Copied: python-reportlab/repos/community-x86_64/ChangeLog (from rev 664465, 
python-reportlab/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2020-07-18 20:17:03 UTC (rev 664466)
@@ -0,0 +1,18 @@
+
+2009-02-17  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.3
+
+2008-11-03  Giovanni Scafora   
+
+   * Rebuilt against python 2.6
+
+2008-09-14  Douglas Soares de Andrade  
+
+   * Updating for x86_64: 2.2
+
+2008-09-13  Douglas Soares de Andrade  
+
+   * Adding ChangeLog
+   * Updating for i686: 2.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 20:16:19 UTC (rev 664465)
+++ PKGBUILD2020-07-18 20:17:03 UTC (rev 664466)
@@ -1,34 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: William Rea 
-
-_origname=reportlab
-pkgname=python-reportlab
-pkgver=3.5.42
-pkgrel=3
-pkgdesc="A proven industry-strength PDF generating solution"
-arch=('x86_64')
-url="https://bitbucket.org/rptlab/reportlab;
-depends=('freetype2')
-depends=('python' 'python-pip' 'python-pillow')
-makedepends=('freetype2' 'python-pillow' 'mercurial')
-license=('BSD')
-source=(https://files.pythonhosted.org/packages/source/${_origname::1}/${_origname}/${_origname}-${pkgver}.tar.gz)
-sha256sums=('9c21f202697a6cea57b9d716288fc919d99cbabeb30222eebfc7ff77eac32744')
-
-build() {
-cd ${_origname}-${pkgver}
-python setup.py build
-}
-
-check() {
-cd ${_origname}-${pkgver}
-python setup.py tests
-rm tests/_i_am_actually_a_*
-}
-
-package() {
-cd ${_origname}-${pkgver}
-python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}

Copied: python-reportlab/repos/community-x86_64/PKGBUILD (from rev 664465, 
python-reportlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 20:17:03 UTC (rev 664466)
@@ -0,0 +1,34 @@
+# Maintainer: Morten Linderud 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: William Rea 
+
+_origname=reportlab
+pkgname=python-reportlab
+pkgver=3.5.44
+pkgrel=1
+pkgdesc="A proven industry-strength PDF generating solution"
+arch=('x86_64')
+url="https://bitbucket.org/rptlab/reportlab;
+depends=('freetype2')
+depends=('python' 'python-pip' 'python-pillow')
+makedepends=('freetype2' 'python-pillow' 'mercurial')
+license=('BSD')
+source=(https://files.pythonhosted.org/packages/source/${_origname::1}/${_origname}/${_origname}-${pkgver}.tar.gz)
+sha256sums=('670650970c7ba7164cf6340bcd182e7e933eff5d65183af98ee77b40cc25a438')
+
+build() {
+cd ${_origname}-${pkgver}
+python setup.py build
+}
+
+check() {
+cd ${_origname}-${pkgver}
+python setup.py tests
+rm tests/_i_am_actually_a_*
+}
+
+package() {
+cd ${_origname}-${pkgver}
+python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2020-07-18 Thread Morten Linderud via arch-commits
Date: Saturday, July 18, 2020 @ 20:16:19
  Author: foxboron
Revision: 664465

upgpkg: python-reportlab 3.5.44-1

Modified:
  python-reportlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 20:03:26 UTC (rev 664464)
+++ PKGBUILD2020-07-18 20:16:19 UTC (rev 664465)
@@ -4,8 +4,8 @@
 
 _origname=reportlab
 pkgname=python-reportlab
-pkgver=3.5.42
-pkgrel=3
+pkgver=3.5.44
+pkgrel=1
 pkgdesc="A proven industry-strength PDF generating solution"
 arch=('x86_64')
 url="https://bitbucket.org/rptlab/reportlab;
@@ -14,7 +14,7 @@
 makedepends=('freetype2' 'python-pillow' 'mercurial')
 license=('BSD')
 
source=(https://files.pythonhosted.org/packages/source/${_origname::1}/${_origname}/${_origname}-${pkgver}.tar.gz)
-sha256sums=('9c21f202697a6cea57b9d716288fc919d99cbabeb30222eebfc7ff77eac32744')
+sha256sums=('670650970c7ba7164cf6340bcd182e7e933eff5d65183af98ee77b40cc25a438')
 
 build() {
 cd ${_origname}-${pkgver}


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

2020-07-18 Thread David Runge via arch-commits
Date: Saturday, July 18, 2020 @ 20:03:26
  Author: dvzrv
Revision: 664464

archrelease: copy trunk to community-x86_64

Added:
  muse/repos/community-x86_64/
  muse/repos/community-x86_64/PKGBUILD
(from rev 664463, muse/trunk/PKGBUILD)

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

Copied: muse/repos/community-x86_64/PKGBUILD (from rev 664463, 
muse/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-07-18 20:03:26 UTC (rev 664464)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+
+pkgname=muse
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="A digital audio workstation with support for both Audio and MIDI"
+arch=('x86_64')
+url="https://github.com/muse-sequencer/muse;
+license=('GPL2')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' 'gtkmm' 'python-pyqt5' 'python-pyro' 'qt5-base' 
'qt5-svg')
+makedepends=('alsa-lib' 'cmake' 'dssi' 'fluidsynth' 'glib2' 'gtk2' 'jack'
+'ladspa' 'liblo' 'liblrdf' 'libsamplerate' 'libsndfile' 'lilv' 'lv2'
+'qt5-tools' 'rtaudio' 'rubberband' 'serd')
+provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/muse-sequencer/muse/archive/${pkgname}_${pkgver//./_}.tar.gz;)
+sha512sums=('a452bef94fb722f9a02c9450e9eb82f5667f4df0593a4f6b7f490c7ed77d7d6d1fde35d1e81e5493838fde0d7cdfaff523bd747ed16999b32d2fdef724f0b16c')
+b2sums=('e3fd34be7c2b5ec7685fcd0b6fd4c0457042468465fc4d0ca7ce396a556d24112c1a20c4e5195c1152953d0db89ef84afadf1028ca795c3feca4bfc0a29897bf')
+
+prepare() {
+  mv -v "${pkgname}-${pkgname}_${pkgver//./_}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # rename MusE-INSTALL_NAME to muse, because this reflects the package name
+  sed -e 's/muse-3.1/muse/g' -i "${pkgname}3/CMakeLists.txt"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_BUILD_TYPE='None' \
+-D ENABLE_PYTHON=ON \
+-Wno-dev \
+-B build \
+-S muse3
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libasound.so' 'libfluidsynth.so' 'libgdk-x11-2.0.so'
+  'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-x11-2.0.so'
+  'libinstpatch-1.0.so' 'libjack.so' 'liblilv-0.so' 'liblo.so' 'liblrdf.so'
+  'librtaudio.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
+  'libserd-0.so')
+  cd "$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install -C build
+}


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

2020-07-18 Thread Brett Cornwall via arch-commits
Date: Saturday, July 18, 2020 @ 20:01:47
  Author: ainola
Revision: 664460

archrelease: copy trunk to community-staging-x86_64

Added:
  sway/repos/community-staging-x86_64/50-systemd-user.conf
(from rev 664459, sway/trunk/50-systemd-user.conf)
  sway/repos/community-staging-x86_64/PKGBUILD
(from rev 664459, sway/trunk/PKGBUILD)
  sway/repos/community-staging-x86_64/sway-session.target
(from rev 664459, sway/trunk/sway-session.target)
  sway/repos/community-staging-x86_64/sway.service
(from rev 664459, sway/trunk/sway.service)
Deleted:
  sway/repos/community-staging-x86_64/50-systemd-user.conf
  sway/repos/community-staging-x86_64/PKGBUILD
  sway/repos/community-staging-x86_64/sway-session.target
  sway/repos/community-staging-x86_64/sway.service

--+
 50-systemd-user.conf |   14 ++--
 PKGBUILD |  140 -
 sway-session.target  |   16 ++---
 sway.service |   32 +--
 4 files changed, 101 insertions(+), 101 deletions(-)

Deleted: 50-systemd-user.conf
===
--- 50-systemd-user.conf2020-07-18 19:58:03 UTC (rev 664459)
+++ 50-systemd-user.conf2020-07-18 20:01:47 UTC (rev 664460)
@@ -1,7 +0,0 @@
-# sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
-# See FS#63021
-# Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
-
-exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
-exec hash dbus-update-activation-environment 2>/dev/null && \
- dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY 
SWAYSOCK

Copied: sway/repos/community-staging-x86_64/50-systemd-user.conf (from rev 
664459, sway/trunk/50-systemd-user.conf)
===
--- 50-systemd-user.conf(rev 0)
+++ 50-systemd-user.conf2020-07-18 20:01:47 UTC (rev 664460)
@@ -0,0 +1,7 @@
+# sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
+# See FS#63021
+# Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
+
+exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
+exec hash dbus-update-activation-environment 2>/dev/null && \
+ dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY 
SWAYSOCK

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 19:58:03 UTC (rev 664459)
+++ PKGBUILD2020-07-18 20:01:47 UTC (rev 664460)
@@ -1,70 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Brett Cornwall 
-
-pkgname=sway
-pkgver=1.5
-epoch=1
-pkgrel=1
-pkgdesc='Tiling Wayland compositor and replacement for the i3 window manager'
-arch=(x86_64)
-url='https://swaywm.org/'
-license=(MIT)
-depends=(
-  'cairo'
-  'gdk-pixbuf2'
-  'json-c'
-  'pango'
-  'polkit'
-  'pcre'
-  'swaybg'
-  'ttf-font'
-  'wlroots'
-)
-makedepends=(git meson ninja scdoc setconf wayland-protocols)
-backup=(etc/sway/config)
-optdepends=(
-  'alacritty: Terminal emulator used by the default config'
-  'dmenu: Application launcher'
-  'grim: Screenshot utility'
-  'i3status: Status line'
-  'mako: Lightweight notification daemon'
-  'slurp: Select a region'
-  'swayidle: Idle management daemon'
-  'swaylock: Screen locker'
-  'wallutils: Timed wallpapers'
-  'waybar: Highly customizable bar'
-  'xorg-server-xwayland: X11 support'
-)
-source=("https://github.com/swaywm/sway/releases/download/$pkgver/sway-$pkgver.tar.gz;
-
"https://github.com/swaywm/sway/releases/download/$pkgver/sway-$pkgver.tar.gz.sig;
-"50-systemd-user.conf")
-sha512sums=('702e44f8923a4ca05d831dd7ed76165654f113a8b2754d332c509ee844528f47c52b7f21deca78d4a79dad465cbcd0934574fff4ad9bb7a45aec3124dea5bca4'
-'SKIP'
-
'57590bc0d14c87289a4a9cd67991c6a841e54244d2a6186b5da5a08e633de2e8631959fa8c77ede211b0a5f315d920f2c1350951a53d6f2e9e81859056cb3c9e')
-validpgpkeys=('9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A') # Drew DeVault
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # Set the version information to 'Arch Linux' instead of 'makepkg'
-  sed -i "s/branch \\\'@1@\\\'/Arch Linux/g" meson.build
-}
-
-build() {
-  mkdir -p build
-  arch-meson build "$pkgname-$pkgver" -D werror=false -D b_ndebug=true
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 50-systemd-user.conf -t "$pkgdir/etc/sway/config.d/"
-
-  for util in autoname-workspaces.py inactive-windows-transparency.py 
grimshot; do
-install -Dm755 "$pkgname-$pkgver/contrib/$util" -t \
-   "$pkgdir/usr/share/$pkgname/scripts"
-  done
-}
-
-# vim: ts=2 sw=2 et

Copied: sway/repos/community-staging-x86_64/PKGBUILD (from rev 664459, 
sway/trunk/PKGBUILD)

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

2020-07-18 Thread David Runge via arch-commits
Date: Saturday, July 18, 2020 @ 19:58:03
  Author: dvzrv
Revision: 664459

Adding muse from the AUR.

Added:
  muse/
  muse/repos/
  muse/trunk/
  muse/trunk/PKGBUILD

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

Added: muse/trunk/PKGBUILD
===
--- muse/trunk/PKGBUILD (rev 0)
+++ muse/trunk/PKGBUILD 2020-07-18 19:58:03 UTC (rev 664459)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+
+pkgname=muse
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="A digital audio workstation with support for both Audio and MIDI"
+arch=('x86_64')
+url="https://github.com/muse-sequencer/muse;
+license=('GPL2')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' 'gtkmm' 'python-pyqt5' 'python-pyro' 'qt5-base' 
'qt5-svg')
+makedepends=('alsa-lib' 'cmake' 'dssi' 'fluidsynth' 'glib2' 'gtk2' 'jack'
+'ladspa' 'liblo' 'liblrdf' 'libsamplerate' 'libsndfile' 'lilv' 'lv2'
+'qt5-tools' 'rtaudio' 'rubberband' 'serd')
+provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/muse-sequencer/muse/archive/${pkgname}_${pkgver//./_}.tar.gz;)
+sha512sums=('a452bef94fb722f9a02c9450e9eb82f5667f4df0593a4f6b7f490c7ed77d7d6d1fde35d1e81e5493838fde0d7cdfaff523bd747ed16999b32d2fdef724f0b16c')
+b2sums=('e3fd34be7c2b5ec7685fcd0b6fd4c0457042468465fc4d0ca7ce396a556d24112c1a20c4e5195c1152953d0db89ef84afadf1028ca795c3feca4bfc0a29897bf')
+
+prepare() {
+  mv -v "${pkgname}-${pkgname}_${pkgver//./_}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # rename MusE-INSTALL_NAME to muse, because this reflects the package name
+  sed -e 's/muse-3.1/muse/g' -i "${pkgname}3/CMakeLists.txt"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_BUILD_TYPE='None' \
+-D ENABLE_PYTHON=ON \
+-Wno-dev \
+-B build \
+-S muse3
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libasound.so' 'libfluidsynth.so' 'libgdk-x11-2.0.so'
+  'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-x11-2.0.so'
+  'libinstpatch-1.0.so' 'libjack.so' 'liblilv-0.so' 'liblo.so' 'liblrdf.so'
+  'librtaudio.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
+  'libserd-0.so')
+  cd "$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install -C build
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 19:46:55
  Author: archange
Revision: 664458

archrelease: copy trunk to community-any

Added:
  materia-kde/repos/community-any/PKGBUILD
(from rev 664457, materia-kde/trunk/PKGBUILD)
Deleted:
  materia-kde/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 19:46:45 UTC (rev 664457)
+++ PKGBUILD2020-07-18 19:46:55 UTC (rev 664458)
@@ -1,37 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgbase=materia-kde
-pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20200523
-pkgrel=1
-pkgdesc="Materia theme for KDE Plasma 5"
-arch=(any)
-url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
-license=(GPL3)
-options=(!strip)
-source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('7ef4cff72fd6cbb1f9c6d1a6a971c1f6dd2c766acd5fa5c4ca7592aacf6ccd1a')
-
-package_materia-kde() {
-optdepends=('materia-gtk-theme: Matching GTK theme'
-'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r plasma "${pkgdir}"/usr/share
-cp -r aurorae "${pkgdir}"/usr/share
-cp -r color-schemes "${pkgdir}"/usr/share
-cp -r konsole "${pkgdir}"/usr/share
-cp -r yakuake "${pkgdir}"/usr/share
-}
-
-package_kvantum-theme-materia() {
-pkgdesc="Materia theme for KDE Plasma 5"
-depends=(kvantum-qt5)
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r Kvantum "${pkgdir}"/usr/share
-}

Copied: materia-kde/repos/community-any/PKGBUILD (from rev 664457, 
materia-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 19:46:55 UTC (rev 664458)
@@ -0,0 +1,37 @@
+# Maintainer: Bruno Pagani 
+
+pkgbase=materia-kde
+pkgname=(materia-kde kvantum-theme-materia)
+pkgver=20200713
+pkgrel=1
+pkgdesc="Materia theme for KDE Plasma 5"
+arch=(any)
+url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
+license=(GPL3)
+options=(!strip)
+source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha256sums=('550be7ddca5aa7f7a42ed37c1c89d7f7233e19f06594c5f7cb41699d7d48adca')
+
+package_materia-kde() {
+optdepends=('materia-gtk-theme: Matching GTK theme'
+'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r plasma "${pkgdir}"/usr/share
+cp -r aurorae "${pkgdir}"/usr/share
+cp -r color-schemes "${pkgdir}"/usr/share
+cp -r konsole "${pkgdir}"/usr/share
+cp -r yakuake "${pkgdir}"/usr/share
+}
+
+package_kvantum-theme-materia() {
+pkgdesc="Materia theme for KDE Plasma 5"
+depends=(kvantum-qt5)
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r Kvantum "${pkgdir}"/usr/share
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 19:46:45
  Author: archange
Revision: 664457

upgpkg: materia-kde 20200713-1

Modified:
  materia-kde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 19:19:56 UTC (rev 664456)
+++ PKGBUILD2020-07-18 19:46:45 UTC (rev 664457)
@@ -2,7 +2,7 @@
 
 pkgbase=materia-kde
 pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20200523
+pkgver=20200713
 pkgrel=1
 pkgdesc="Materia theme for KDE Plasma 5"
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL3)
 options=(!strip)
 source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('7ef4cff72fd6cbb1f9c6d1a6a971c1f6dd2c766acd5fa5c4ca7592aacf6ccd1a')
+sha256sums=('550be7ddca5aa7f7a42ed37c1c89d7f7233e19f06594c5f7cb41699d7d48adca')
 
 package_materia-kde() {
 optdepends=('materia-gtk-theme: Matching GTK theme'


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 19:19:56
  Author: ffy00
Revision: 664456

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 664455, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 664455, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 664455, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 664455, code/trunk/code.sh)
  code/repos/community-x86_64/product_json.diff
(from rev 664455, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/product_json.diff

-+
 PKGBUILD|  308 +-
 code-liveshare.diff |   24 +--
 code.js |   58 -
 code.sh |6 
 product_json.diff   |   40 +++---
 5 files changed, 218 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 19:19:29 UTC (rev 664455)
+++ PKGBUILD2020-07-18 19:19:56 UTC (rev 664456)
@@ -1,154 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-#   - ?: 11 (not in repos)
-#   - erbium: 12
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron7
-pkgver=1.47.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons'
-'x11-ssh-askpass: SSH authentication')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit;
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --preserve=mode 
VSCode-linux-$_vscode_arch/resources/app/* "$pkgdir"/usr/lib/$pkgname/
-
-  # Replace statically included binary with system copy
-  ln -sf /usr/bin/rg 

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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 19:19:29
  Author: ffy00
Revision: 664455

upgpkg: code 1.47.2-2

Modified:
  code/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 19:03:01 UTC (rev 664454)
+++ PKGBUILD2020-07-18 19:19:29 UTC (rev 664455)
@@ -13,7 +13,7 @@
 # Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
 _electron=electron7
 pkgver=1.47.2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://github.com/microsoft/vscode'
 license=('MIT')
@@ -74,7 +74,7 @@
   s|@@NAME_SHORT@@|Code|g
   s|@@NAME_LONG@@|Code - OSS|g
   s|@@NAME@@|code-oss|g
-  s|@@ICON@@|code-oss|g
+  s|@@ICON@@|com.visualstudio.code.oss|g
   s|@@EXEC@@|/usr/bin/code-oss|g
   s|@@LICENSE@@|MIT|g
   s|@@URLPROTOCOL@@|vscode|g
@@ -139,7 +139,7 @@
   install -Dm 644 $pkgname/resources/linux/code.appdata.xml 
"$pkgdir"/usr/share/metainfo/code-oss.appdata.xml
   install -Dm 644 $pkgname/resources/linux/code.desktop 
"$pkgdir"/usr/share/applications/code-oss.desktop
   install -Dm 644 $pkgname/resources/linux/code-url-handler.desktop 
"$pkgdir"/usr/share/applications/code-oss-url-handler.desktop
-  install -Dm 644 
VSCode-linux-$_vscode_arch/resources/app/resources/linux/code.png 
"$pkgdir"/usr/share/pixmaps/code-oss.png
+  install -Dm 644 
VSCode-linux-$_vscode_arch/resources/app/resources/linux/code.png 
"$pkgdir"/usr/share/pixmaps/com.visualstudio.code.oss.png
 
   # Install bash and zsh completions
   install -Dm 644 $pkgname/resources/completions/bash/code 
"$pkgdir"/usr/share/bash-completion/completions/code


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

2020-07-18 Thread Daniel M. Capella via arch-commits
Date: Saturday, July 18, 2020 @ 19:03:01
  Author: polyzen
Revision: 664454

archrelease: copy trunk to community-x86_64

Added:
  rink/repos/community-x86_64/PKGBUILD
(from rev 664453, rink/trunk/PKGBUILD)
Deleted:
  rink/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 19:02:38 UTC (rev 664453)
+++ PKGBUILD2020-07-18 19:03:01 UTC (rev 664454)
@@ -1,30 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=rink
-pkgver=0.4.5
-pkgrel=1
-pkgdesc='Unit conversion tool and library written in rust'
-arch=('x86_64')
-url=https://github.com/tiffany352/rink-rs
-license=('GPL3' 'MPL2')
-depends=('gcc-libs' 'gmp' 'openssl')
-makedepends=('rust')
-source=("rink-$pkgver.tar.gz::https://static.crates.io/crates/rink/rink-$pkgver.crate;)
-sha512sums=('8f7da00609a124f043874f0266d96d86f22ce8ff2457e8107b7d5590702dec1c137b01bcb34b7c714ca4218b6bf7bcbbaf0e9a98c814c88630bb9f089c246b0e')
-
-build() {
-  cd rink-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd rink-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd rink-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/rink
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rink/repos/community-x86_64/PKGBUILD (from rev 664453, 
rink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 19:03:01 UTC (rev 664454)
@@ -0,0 +1,30 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=rink
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Unit conversion tool and library written in rust'
+arch=('x86_64')
+url=https://github.com/tiffany352/rink-rs
+license=('GPL3' 'MPL2')
+depends=('gcc-libs' 'gmp' 'openssl')
+makedepends=('rust')
+source=("rink-$pkgver.tar.gz::https://static.crates.io/crates/rink/rink-$pkgver.crate;)
+sha512sums=('dc6b7049fceaa7f9b4084d2d513bc2524bef90cf5eccdd8e75a7044d55633f108631cf6aea6f95ab95bf9e983b302bcc6becfe7b26796e062ca5dc83e7ea9549')
+
+build() {
+  cd rink-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd rink-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd rink-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/rink
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-18 Thread Daniel M. Capella via arch-commits
Date: Saturday, July 18, 2020 @ 19:02:38
  Author: polyzen
Revision: 664453

upgpkg: rink 0.5.0-1

Modified:
  rink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 18:14:31 UTC (rev 664452)
+++ PKGBUILD2020-07-18 19:02:38 UTC (rev 664453)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=rink
-pkgver=0.4.5
+pkgver=0.5.0
 pkgrel=1
 pkgdesc='Unit conversion tool and library written in rust'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'gmp' 'openssl')
 makedepends=('rust')
 
source=("rink-$pkgver.tar.gz::https://static.crates.io/crates/rink/rink-$pkgver.crate;)
-sha512sums=('8f7da00609a124f043874f0266d96d86f22ce8ff2457e8107b7d5590702dec1c137b01bcb34b7c714ca4218b6bf7bcbbaf0e9a98c814c88630bb9f089c246b0e')
+sha512sums=('dc6b7049fceaa7f9b4084d2d513bc2524bef90cf5eccdd8e75a7044d55633f108631cf6aea6f95ab95bf9e983b302bcc6becfe7b26796e062ca5dc83e7ea9549')
 
 build() {
   cd rink-$pkgver


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 18:14:31
  Author: felixonmars
Revision: 664452

archrelease: copy trunk to community-any

Added:
  systemd-swap/repos/community-any/PKGBUILD
(from rev 664451, systemd-swap/trunk/PKGBUILD)
  systemd-swap/repos/community-any/systemd-swap.install
(from rev 664451, systemd-swap/trunk/systemd-swap.install)
Deleted:
  systemd-swap/repos/community-any/PKGBUILD
  systemd-swap/repos/community-any/systemd-swap.install

--+
 PKGBUILD |   50 -
 systemd-swap.install |   10 -
 2 files changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 18:14:18 UTC (rev 664451)
+++ PKGBUILD2020-07-18 18:14:31 UTC (rev 664452)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Timofey Titovets 
-
-pkgname=systemd-swap
-pkgver=4.3.1
-pkgrel=1
-pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
-arch=('any')
-url="https://github.com/Nefelim4ag/systemd-swap;
-license=('GPL3')
-depends=('systemd' 'bash')
-backup=('etc/systemd/swap.conf')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
-sha512sums=('a064df5f278ab157496909920733e53daed6beb1754140a71ae8ec73793d1ca829fa6d6ce344f493b3d785cb1f391f0e989f22d8204ffd018d530a0bf2dee69f')
-
-build() {
-  cd systemd-swap-$pkgver
-  make
-}
-
-package() {
-  cd systemd-swap-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: systemd-swap/repos/community-any/PKGBUILD (from rev 664451, 
systemd-swap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 18:14:31 UTC (rev 664452)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: Timofey Titovets 
+
+pkgname=systemd-swap
+pkgver=4.3.2
+pkgrel=1
+pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
+arch=('any')
+url="https://github.com/Nefelim4ag/systemd-swap;
+license=('GPL3')
+depends=('systemd' 'bash')
+backup=('etc/systemd/swap.conf')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
+sha512sums=('8c738dc4ec01dd61ce7adb875e7870158b74593676cea846172d3c1236d1406d19f8789652d73515297d7e0327e5d2883e36b6330a5bd085d11c44bd4937b9d9')
+
+build() {
+  cd systemd-swap-$pkgver
+  make
+}
+
+package() {
+  cd systemd-swap-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: systemd-swap.install
===
--- systemd-swap.install2020-07-18 18:14:18 UTC (rev 664451)
+++ systemd-swap.install2020-07-18 18:14:31 UTC (rev 664452)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [[ $(vercmp "$2" 3) < 0 ]]; then
-echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
-  fi
-}

Copied: systemd-swap/repos/community-any/systemd-swap.install (from rev 664451, 
systemd-swap/trunk/systemd-swap.install)
===
--- systemd-swap.install(rev 0)
+++ systemd-swap.install2020-07-18 18:14:31 UTC (rev 664452)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  if [[ $(vercmp "$2" 3) < 0 ]]; then
+echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
+  fi
+}


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 18:14:18
  Author: felixonmars
Revision: 664451

upgpkg: systemd-swap 4.3.2-1

Modified:
  systemd-swap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 17:47:05 UTC (rev 664450)
+++ PKGBUILD2020-07-18 18:14:18 UTC (rev 664451)
@@ -2,7 +2,7 @@
 # Contributor: Timofey Titovets 
 
 pkgname=systemd-swap
-pkgver=4.3.1
+pkgver=4.3.2
 pkgrel=1
 pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
 arch=('any')
@@ -12,7 +12,7 @@
 backup=('etc/systemd/swap.conf')
 install="$pkgname.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
-sha512sums=('a064df5f278ab157496909920733e53daed6beb1754140a71ae8ec73793d1ca829fa6d6ce344f493b3d785cb1f391f0e989f22d8204ffd018d530a0bf2dee69f')
+sha512sums=('8c738dc4ec01dd61ce7adb875e7870158b74593676cea846172d3c1236d1406d19f8789652d73515297d7e0327e5d2883e36b6330a5bd085d11c44bd4937b9d9')
 
 build() {
   cd systemd-swap-$pkgver


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

2020-07-18 Thread Morten Linderud via arch-commits
Date: Saturday, July 18, 2020 @ 17:46:58
  Author: foxboron
Revision: 664449

upgpkg: qutebrowser 1.13.1-1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 17:40:36 UTC (rev 664448)
+++ PKGBUILD2020-07-18 17:46:58 UTC (rev 664449)
@@ -4,8 +4,8 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.13.0
-pkgrel=2
+pkgver=1.13.1
+pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
 url="https://www.qutebrowser.org/;
@@ -24,7 +24,7 @@
 
source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
 
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('d3e930ad6705fecf707d221ac253b60352d8cac91cc2ed88d68169cd2a5000f7'
+sha256sums=('2896851f07c6258cf8991975eed200ca8477ae393a6a7a40249035b2f36ee2d8'
 'SKIP')
 
 build() {


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

2020-07-18 Thread Morten Linderud via arch-commits
Date: Saturday, July 18, 2020 @ 17:47:05
  Author: foxboron
Revision: 664450

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 664449, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 17:46:58 UTC (rev 664449)
+++ PKGBUILD2020-07-18 17:47:05 UTC (rev 664450)
@@ -1,39 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Lukas Fleischer 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.13.0
-pkgrel=2
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="https://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback with qt5-webkit backend"
-"gst-plugins-base: media playback with qt5-webkit backend"
-"gst-plugins-good: media playback with qt5-webkit backend"
-"gst-plugins-bad: media playback with qt5-webkit backend"
-"gst-plugins-ugly: media playback with qt5-webkit backend"
-"pdfjs: displaying PDF in-browser"
-"qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('d3e930ad6705fecf707d221ac253b60352d8cac91cc2ed88d68169cd2a5000f7'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-export PYTHONHASHSEED=0
-make -f misc/Makefile all
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 664449, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 17:47:05 UTC (rev 664450)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Lukas Fleischer 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.13.1
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('2896851f07c6258cf8991975eed200ca8477ae393a6a7a40249035b2f36ee2d8'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+export PYTHONHASHSEED=0
+make -f misc/Makefile all
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2020-07-18 Thread Antonio Rojas via arch-commits
Date: Saturday, July 18, 2020 @ 17:45:36
  Author: arojas
Revision: 392264

archrelease: copy trunk to extra-x86_64

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

+
 PKGBUILD   |  248 +++
 arch-fonts.diff|  214 -
 imagemagick-inkscape-1.0.patch |   26 ++--
 3 files changed, 244 insertions(+), 244 deletions(-)

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

Copied: imagemagick/repos/extra-x86_64/PKGBUILD 

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

2020-07-18 Thread Antonio Rojas via arch-commits
Date: Saturday, July 18, 2020 @ 17:45:20
  Author: arojas
Revision: 392263

Update to 7.0.10.24

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 01:28:30 UTC (rev 392262)
+++ PKGBUILD2020-07-18 17:45:20 UTC (rev 392263)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.23
+pkgver=7.0.10.24
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -17,7 +17,7 @@
 source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff
 imagemagick-inkscape-1.0.patch)
-sha256sums=('882cecda27265526eb4e7ce7e2cf6f74c018bcbbd34bc9ddd3c67fb3e9184103'
+sha256sums=('8f8d4715ac995aaae14dc1567608a05833764c13cd0c16cbac2a3a8e229e7f43'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
 'dd856b0d7b5b98535d2bc61dfa995f4162677486c1eac14b384668a28a60af30')


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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:40:36
  Author: wild
Revision: 664448

archrelease: copy trunk to community-x86_64

Added:
  dub/repos/community-x86_64/PKGBUILD
(from rev 664447, dub/trunk/PKGBUILD)
Deleted:
  dub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 17:40:31 UTC (rev 664447)
+++ PKGBUILD2020-07-18 17:40:36 UTC (rev 664448)
@@ -1,40 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-
-pkgname=dub
-pkgver=1.21.0
-pkgrel=1
-pkgdesc="Developer package manager for D programming language"
-arch=('x86_64')
-url="https://github.com/dlang/dub;
-license=('MIT')
-groups=('dlang')
-makedepends=('ldc')
-depends=('liblphobos' 'curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
-sha512sums=('d85be6e35f51e34d34afce71fe902b8ef623c6f49ed6f5f755dded5bceda49416f9d625377136b928d0f95496e57999f0dd57a4cea796360edd34c72556debd7')
-
-build() {
-   cd "$pkgname-$pkgver"
-
-   echo Generating version file...
-   echo "module dub.version_;" > source/dub/version_.d
-   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
-
-   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
-L--build-id @build-files.txt
-}
-
-package() {
-   # binaries
-   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
-
-   # license
-   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   # bash, fish and zsh completion
-   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
-   install -Dm644 "$pkgname-$pkgver/scripts/fish-completion/dub.fish" 
"$pkgdir/usr/share/fish/vendor_completions.d/dub.fish"
-   install -Dm644 "$pkgname-$pkgver/scripts/zsh-completion/_dub" 
"$pkgdir/usr/share/zsh/site-functions/_dub"
-}

Copied: dub/repos/community-x86_64/PKGBUILD (from rev 664447, 
dub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 17:40:36 UTC (rev 664448)
@@ -0,0 +1,40 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasuns 
+# Contributor: Moritz Maxeiner 
+
+pkgname=dub
+pkgver=1.22.0
+pkgrel=1
+pkgdesc="Developer package manager for D programming language"
+arch=('x86_64')
+url="https://github.com/dlang/dub;
+license=('MIT')
+groups=('dlang')
+makedepends=('ldc')
+depends=('liblphobos' 'curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
+sha512sums=('61f923916be1f16e8f77c228c53724e69e532573140674da902c374b63f3ca1f66b0da323a9c3a131f98af48e7755b5d3b70d33433fa0deb733215da2b4cd6b2')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   echo Generating version file...
+   echo "module dub.version_;" > source/dub/version_.d
+   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
+
+   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
-L--build-id @build-files.txt
+}
+
+package() {
+   # binaries
+   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
+
+   # license
+   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   # bash, fish and zsh completion
+   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
+   install -Dm644 "$pkgname-$pkgver/scripts/fish-completion/dub.fish" 
"$pkgdir/usr/share/fish/vendor_completions.d/dub.fish"
+   install -Dm644 "$pkgname-$pkgver/scripts/zsh-completion/_dub" 
"$pkgdir/usr/share/zsh/site-functions/_dub"
+}


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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:39:52
  Author: wild
Revision: 664443

upgpkg: dmd 1:2.093.0-1: Updated to 2.093.0

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 16:32:17 UTC (rev 664442)
+++ PKGBUILD2020-07-18 17:39:52 UTC (rev 664443)
@@ -11,7 +11,7 @@
 pkgdesc='D programming language compiler and standard library'
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.092.1
+pkgver=2.093.0
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -27,7 +27,7 @@
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'4d49529f57e7394e4e8bfbed0ae7b899bebe4cfe04e787097591c985103c7d8e'
+'832e40e71fbc8b6994cdd5a93068b49c4bc37667e7e3fc2f4395949e77f7e815'
 'SKIP'
 '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
 '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')


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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:40:16
  Author: wild
Revision: 664446

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 664445, dtools/trunk/PKGBUILD)
  dtools/repos/community-x86_64/autodetect.diff
(from rev 664445, dtools/trunk/autodetect.diff)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD
  dtools/repos/community-x86_64/autodetect.diff

-+
 PKGBUILD|   98 +++---
 autodetect.diff |   94 +--
 2 files changed, 96 insertions(+), 96 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 17:40:10 UTC (rev 664445)
+++ PKGBUILD2020-07-18 17:40:16 UTC (rev 664446)
@@ -1,49 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-
-pkgname=dtools
-pkgver=2.092.1
-pkgrel=1
-pkgdesc='Ancilliary tools for the D programming language'
-license=('Boost')
-groups=('dlang')
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('dmd' 'libphobos')
-provides=('ddemangle' 'dustmite' 'rdmd')
-conflicts=('ddemangle' 'dustmite' 'rdmd')
-depends=('curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
-'autodetect.diff')
-sha512sums=('84d69e2b5e073bc038f438304060a490bc41c740eba14599b911aa66cc40b0f4ba1fa55536c77f01c6964210025283a3c6d32768493e9ca1e021eadaaa38f8b2'
-
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
-
-build() {
-DMD=dmd
-
-# Add $LDFLAGS and $CXXFLAGS to the compilation
-_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
-
-cd tools-$pkgver
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
-done
-}
-
-package() {
-cd tools-$pkgver
-
-mkdir -p "$pkgdir/usr/bin"
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
-done
-
-cd "$pkgdir"
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-ln -s dtools-ddemangle usr/bin/ddemangle
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 664445, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 17:40:16 UTC (rev 664446)
@@ -0,0 +1,49 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasunse 
+
+pkgname=dtools
+pkgver=2.093.0
+pkgrel=1
+pkgdesc='Ancilliary tools for the D programming language'
+license=('Boost')
+groups=('dlang')
+arch=('x86_64')
+url='https://www.dlang.org'
+makedepends=('dmd' 'libphobos')
+provides=('ddemangle' 'dustmite' 'rdmd')
+conflicts=('ddemangle' 'dustmite' 'rdmd')
+depends=('curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
+'autodetect.diff')
+sha512sums=('e22cef21b37b05f7abf98e514c836fef1de58eebc219a2c9b6178de336f1b82d4ece87376722dd0a07b6b8803b7bf9cbe9d015a089f709c319f327d7577e35da'
+
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
+
+build() {
+DMD=dmd
+
+# Add $LDFLAGS and $CXXFLAGS to the compilation
+_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
+
+cd tools-$pkgver
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
+done
+}
+
+package() {
+cd tools-$pkgver
+
+mkdir -p "$pkgdir/usr/bin"
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
+done
+
+cd "$pkgdir"
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+ln -s dtools-ddemangle usr/bin/ddemangle
+}

Deleted: autodetect.diff
===
--- autodetect.diff 2020-07-18 17:40:10 UTC (rev 664445)
+++ autodetect.diff 2020-07-18 17:40:16 UTC (rev 664446)
@@ -1,47 +0,0 @@
-diff --git a/rdmd.d b/rdmd.d
-index bd82637..390d533 100644
 a/rdmd.d
-+++ b/rdmd.d
-@@ -52,7 +52,32 @@ else version (LDC)
- else
- static assert(false, "Unknown compiler");
- 
--private string compiler = defaultCompiler;
-+private string compiler;
-+
-+void chooseCompiler(ref string 

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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:40:31
  Author: wild
Revision: 664447

upgpkg: dub 1.22.0-1: Updated to 1.22.0

Modified:
  dub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 17:40:16 UTC (rev 664446)
+++ PKGBUILD2020-07-18 17:40:31 UTC (rev 664447)
@@ -4,7 +4,7 @@
 # Contributor: Moritz Maxeiner 
 
 pkgname=dub
-pkgver=1.21.0
+pkgver=1.22.0
 pkgrel=1
 pkgdesc="Developer package manager for D programming language"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('ldc')
 depends=('liblphobos' 'curl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
-sha512sums=('d85be6e35f51e34d34afce71fe902b8ef623c6f49ed6f5f755dded5bceda49416f9d625377136b928d0f95496e57999f0dd57a4cea796360edd34c72556debd7')
+sha512sums=('61f923916be1f16e8f77c228c53724e69e532573140674da902c374b63f3ca1f66b0da323a9c3a131f98af48e7755b5d3b70d33433fa0deb733215da2b4cd6b2')
 
 build() {
cd "$pkgname-$pkgver"


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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:40:00
  Author: wild
Revision: 66

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 664443, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 664443, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
(from rev 664443, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-+
 PKGBUILD|  272 +++---
 dmd-doc.desktop |   14 +-
 dmd.conf|   10 -
 3 files changed, 148 insertions(+), 148 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 17:39:52 UTC (rev 664443)
+++ PKGBUILD2020-07-18 17:40:00 UTC (rev 66)
@@ -1,136 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc='D programming language compiler and standard library'
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.092.1
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('git' 'ldc')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver;
-"git+https://github.com/dlang/druntime.git#tag=v$pkgver;
-"git+https://github.com/dlang/phobos.git#tag=v$pkgver;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig;
-'dmd.conf'
-'dmd-doc.desktop')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'4d49529f57e7394e4e8bfbed0ae7b899bebe4cfe04e787097591c985103c7d8e'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-'4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
-# Key from https://dlang.org/gpg_keys.html
-validpgpkeys=('F46A10D0AB44C3D15DD65797BCDD73FFC3EB6146') # Martin Nowak 

-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-# We only want to extract the docs & samples, not the prebuild executables
-tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-
-# Make sure the version is not -dirty
-sed -i "s/\.git/.nope/" "$srcdir"/dmd/src/build.d
-
-# Add $LDFLAGS and $CXXFLAGS to the compilation
-# '-link-defaultlib-shared=false' statically links dmd to liblphobos
-_dflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ -L=/g")
-sed -i "s/--called-from-make/& CXXFLAGS=\"$CXXFLAGS\" 
DFLAGS='-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut -d\" -f2 | tail 
-c+4 | sed "s/,/ -L=/g") -flto=full'/" "$srcdir"/dmd/src/posix.mak
-}
-
-build() {
-cd "$srcdir"/dmd
-make -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 ENABLE_LTO=1 
HOST_DMD=ldmd2
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-# This requires object.d to compile, thus need to be after druntime is 
built
-cd "$srcdir"/dmd
-make -C docs DMD=ldmd2
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-'dmd-docs: documentation and sample code for D'
-)
-provides=("d-compiler=$pkgver")
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd 
"$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp generated/docs/man/man1/dmd.1 "$pkgdir"/usr/share/man/man1/
-cp -r generated/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-pkgdesc="Documentation and sample code for D programming language"
-depends=('dmd')
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-mkdir -p "$pkgdir"/usr/share/applications
-install -Dm644 "$srcdir"/dmd-doc.desktop 
"$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r samples/* "$pkgdir"/usr/share/d/samples/
-
-mkdir -p 

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

2020-07-18 Thread Dan Printzell via arch-commits
Date: Saturday, July 18, 2020 @ 17:40:10
  Author: wild
Revision: 664445

upgpkg: dtools 2.093.0-1: Updated to 2.093.0

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 17:40:00 UTC (rev 66)
+++ PKGBUILD2020-07-18 17:40:10 UTC (rev 664445)
@@ -3,7 +3,7 @@
 # Contributor: Mihails Strasunse 
 
 pkgname=dtools
-pkgver=2.092.1
+pkgver=2.093.0
 pkgrel=1
 pkgdesc='Ancilliary tools for the D programming language'
 license=('Boost')
@@ -16,7 +16,7 @@
 depends=('curl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
 'autodetect.diff')
-sha512sums=('84d69e2b5e073bc038f438304060a490bc41c740eba14599b911aa66cc40b0f4ba1fa55536c77f01c6964210025283a3c6d32768493e9ca1e021eadaaa38f8b2'
+sha512sums=('e22cef21b37b05f7abf98e514c836fef1de58eebc219a2c9b6178de336f1b82d4ece87376722dd0a07b6b8803b7bf9cbe9d015a089f709c319f327d7577e35da'
 
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
 
 build() {


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 16:32:05
  Author: archange
Revision: 664441

upgpkg: libressl 3.2.0-1

Modified:
  libressl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 16:26:53 UTC (rev 664440)
+++ PKGBUILD2020-07-18 16:32:05 UTC (rev 664441)
@@ -5,7 +5,7 @@
 # Contributor: kpcyrd 
 
 pkgname=libressl
-pkgver=3.1.2
+pkgver=3.2.0
 pkgrel=1
 pkgdesc="Free version of the TLS/crypto stack forked from OpenSSL"
 arch=(x86_64)
@@ -15,8 +15,7 @@
 optdepends=(ca-certificates)
 backup=(etc/libressl/openssl.cnf)
 
source=(https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${pkgver}.tar.gz{,.asc})
-sha256sums=('f88a2f7ea617149a34e40c022d9912963f00eaa6109af421317525e6c978d892'
-'SKIP')
+sha256sums=('47bd2eb4b4503e47c02efa7e67d2fcd95c7eac6bc9d06b343a1b4705793ed1d5' 
'SKIP')
 validpgpkeys=(A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5) # Brent Cook 

 
 prepare() {


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 16:32:17
  Author: archange
Revision: 664442

archrelease: copy trunk to community-x86_64

Added:
  libressl/repos/community-x86_64/PKGBUILD
(from rev 664441, libressl/trunk/PKGBUILD)
Deleted:
  libressl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 16:32:05 UTC (rev 664441)
+++ PKGBUILD2020-07-18 16:32:17 UTC (rev 664442)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Bruno Pagani 
-# Contributor: Maarten de Vries 
-# Contributor: Reventlov 
-# Contributor: kpcyrd 
-
-pkgname=libressl
-pkgver=3.1.2
-pkgrel=1
-pkgdesc="Free version of the TLS/crypto stack forked from OpenSSL"
-arch=(x86_64)
-url="https://www.libressl.org/;
-license=(ISC custom:OpenSSL)
-depends=(glibc)
-optdepends=(ca-certificates)
-backup=(etc/libressl/openssl.cnf)
-source=(https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${pkgver}.tar.gz{,.asc})
-sha256sums=('f88a2f7ea617149a34e40c022d9912963f00eaa6109af421317525e6c978d892'
-'SKIP')
-validpgpkeys=(A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5) # Brent Cook 

-
-prepare() {
-cd ${pkgname}-${pkgver}
-autoreconf -vfi
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---with-openssldir=/etc/libressl \
---libdir=/usr/lib/libressl \
---includedir=/usr/include/libressl \
---program-prefix "libressl-"
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-
-# Remove symlink man pages, that actually points to OpenSSL ones since the 
prefix is not accounted for
-for manlink in $(find -L "${pkgdir}"/usr/share/man/man3/ -type l) ;
-do
-rm "${manlink}" ;
-done
-}

Copied: libressl/repos/community-x86_64/PKGBUILD (from rev 664441, 
libressl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 16:32:17 UTC (rev 664442)
@@ -0,0 +1,53 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Bruno Pagani 
+# Contributor: Maarten de Vries 
+# Contributor: Reventlov 
+# Contributor: kpcyrd 
+
+pkgname=libressl
+pkgver=3.2.0
+pkgrel=1
+pkgdesc="Free version of the TLS/crypto stack forked from OpenSSL"
+arch=(x86_64)
+url="https://www.libressl.org/;
+license=(ISC custom:OpenSSL)
+depends=(glibc)
+optdepends=(ca-certificates)
+backup=(etc/libressl/openssl.cnf)
+source=(https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${pkgver}.tar.gz{,.asc})
+sha256sums=('47bd2eb4b4503e47c02efa7e67d2fcd95c7eac6bc9d06b343a1b4705793ed1d5' 
'SKIP')
+validpgpkeys=(A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5) # Brent Cook 

+
+prepare() {
+cd ${pkgname}-${pkgver}
+autoreconf -vfi
+}
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--with-openssldir=/etc/libressl \
+--libdir=/usr/lib/libressl \
+--includedir=/usr/include/libressl \
+--program-prefix "libressl-"
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+
+# Remove symlink man pages, that actually points to OpenSSL ones since the 
prefix is not accounted for
+for manlink in $(find -L "${pkgdir}"/usr/share/man/man3/ -type l) ;
+do
+rm "${manlink}" ;
+done
+}


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 16:26:53
  Author: felixonmars
Revision: 664440

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 664439, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 16:26:40 UTC (rev 664439)
+++ PKGBUILD2020-07-18 16:26:53 UTC (rev 664440)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20200717144302
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2ray/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('476bd6e1339d332aa3a966f297d254dbf92b478a2bea564368a5a9f5211d04a1de3119f9be83a38dc15a221785d7b913a575c62a088e58eb97682c7b7602683f')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2ray
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2ray/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
664439, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 16:26:53 UTC (rev 664440)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20200718115842
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2ray/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('0a0b5001cbf45a513ea09a198f5eec05323a5611f04a1f98299fd88274cb0a2add177b25325dfd8d74a7ae351cbd98b08fc38060d94ec6c9ad8ffd4abcd474e2')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2ray
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2ray/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 16:26:40
  Author: felixonmars
Revision: 664439

upgpkg: v2ray-domain-list-community 20200718115842-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:50:25 UTC (rev 664438)
+++ PKGBUILD2020-07-18 16:26:40 UTC (rev 664439)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20200717144302
+pkgver=20200718115842
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('476bd6e1339d332aa3a966f297d254dbf92b478a2bea564368a5a9f5211d04a1de3119f9be83a38dc15a221785d7b913a575c62a088e58eb97682c7b7602683f')
+sha512sums=('0a0b5001cbf45a513ea09a198f5eec05323a5611f04a1f98299fd88274cb0a2add177b25325dfd8d74a7ae351cbd98b08fc38060d94ec6c9ad8ffd4abcd474e2')
 
 prepare() {
   mkdir .gopath


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:50:17
  Author: archange
Revision: 664437

upgpkg: libjcat 0.1.3-1

Modified:
  libjcat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:44:20 UTC (rev 664436)
+++ PKGBUILD2020-07-18 15:50:17 UTC (rev 664437)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=libjcat
-pkgver=0.1.2
+pkgver=0.1.3
 pkgrel=1
 pkgdesc="Library for reading and writing Jcat files"
 arch=(x86_64)
@@ -10,13 +10,12 @@
 depends=(gobject-introspection-runtime json-glib gnutls gpgme)
 makedepends=(meson gobject-introspection gtk-doc vala help2man)
 
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('b54d58c3c587230356c0c456aa3170f1965f7bc550666a69182810efa3d301d3'
-'SKIP')
+sha256sums=('8b8585cc34f1b2e87d21c6eab8a1081cf6aa45294339bb5fca8a8437a17d2b73' 
'SKIP')
 validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes 

 
 build() {
 arch-meson ${pkgname}-${pkgver} build -D gtkdoc=true
-ninja -v -C build
+meson compile -C build
 }
 
 check() {


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:50:25
  Author: archange
Revision: 664438

archrelease: copy trunk to community-x86_64

Added:
  libjcat/repos/community-x86_64/PKGBUILD
(from rev 664437, libjcat/trunk/PKGBUILD)
Deleted:
  libjcat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:50:17 UTC (rev 664437)
+++ PKGBUILD2020-07-18 15:50:25 UTC (rev 664438)
@@ -1,29 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=libjcat
-pkgver=0.1.2
-pkgrel=1
-pkgdesc="Library for reading and writing Jcat files"
-arch=(x86_64)
-url="https://github.com/hughsie/libjcat;
-license=(LGPL)
-depends=(gobject-introspection-runtime json-glib gnutls gpgme)
-makedepends=(meson gobject-introspection gtk-doc vala help2man)
-source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('b54d58c3c587230356c0c456aa3170f1965f7bc550666a69182810efa3d301d3'
-'SKIP')
-validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes 

-
-build() {
-arch-meson ${pkgname}-${pkgver} build -D gtkdoc=true
-ninja -v -C build
-}
-
-check() {
-meson test -C build --print-errorlogs
-}
-
-package() {
-DESTDIR="${pkgdir}" meson install -C build
-rm -r "${pkgdir}"/usr/{lib,share}/installed-tests/
-}

Copied: libjcat/repos/community-x86_64/PKGBUILD (from rev 664437, 
libjcat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:50:25 UTC (rev 664438)
@@ -0,0 +1,28 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=libjcat
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="Library for reading and writing Jcat files"
+arch=(x86_64)
+url="https://github.com/hughsie/libjcat;
+license=(LGPL)
+depends=(gobject-introspection-runtime json-glib gnutls gpgme)
+makedepends=(meson gobject-introspection gtk-doc vala help2man)
+source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('8b8585cc34f1b2e87d21c6eab8a1081cf6aa45294339bb5fca8a8437a17d2b73' 
'SKIP')
+validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes 

+
+build() {
+arch-meson ${pkgname}-${pkgver} build -D gtkdoc=true
+meson compile -C build
+}
+
+check() {
+meson test -C build --print-errorlogs
+}
+
+package() {
+DESTDIR="${pkgdir}" meson install -C build
+rm -r "${pkgdir}"/usr/{lib,share}/installed-tests/
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:44:11
  Author: archange
Revision: 664435

upgpkg: kvantum-qt5 0.16.0-1

Modified:
  kvantum-qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:37:29 UTC (rev 664434)
+++ PKGBUILD2020-07-18 15:44:11 UTC (rev 664435)
@@ -2,7 +2,7 @@
 
 _pkgname=Kvantum
 pkgname=kvantum-qt5
-pkgver=0.15.3
+pkgver=0.16.0
 pkgrel=1
 pkgdesc="SVG-based theme engine for Qt5 (including config tool and extra 
themes)"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(qt5-base qt5-svg qt5-x11extras libx11 libxext hicolor-icon-theme 
kwindowsystem)
 makedepends=(cmake qt5-tools)
 source=(${url}/archive/V${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a34b54956d772c19d98b1ef62d9bc3b9c20fa0aa7602c1d508332500e805cec0')
+sha256sums=('3dba7eb2793e9763f55777bc12d1b72fab1a8b9cdbb0f8b96b264845b26c3985')
 
 build() {
   cmake -B build -S ${_pkgname}-${pkgver}/${_pkgname} 
-DCMAKE_INSTALL_PREFIX=/usr


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:44:20
  Author: archange
Revision: 664436

archrelease: copy trunk to community-x86_64

Added:
  kvantum-qt5/repos/community-x86_64/PKGBUILD
(from rev 664435, kvantum-qt5/trunk/PKGBUILD)
Deleted:
  kvantum-qt5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:44:11 UTC (rev 664435)
+++ PKGBUILD2020-07-18 15:44:20 UTC (rev 664436)
@@ -1,23 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkgname=Kvantum
-pkgname=kvantum-qt5
-pkgver=0.15.3
-pkgrel=1
-pkgdesc="SVG-based theme engine for Qt5 (including config tool and extra 
themes)"
-arch=(x86_64)
-url="https://github.com/tsujan/Kvantum;
-license=(GPL)
-depends=(qt5-base qt5-svg qt5-x11extras libx11 libxext hicolor-icon-theme 
kwindowsystem)
-makedepends=(cmake qt5-tools)
-source=(${url}/archive/V${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a34b54956d772c19d98b1ef62d9bc3b9c20fa0aa7602c1d508332500e805cec0')
-
-build() {
-  cmake -B build -S ${_pkgname}-${pkgver}/${_pkgname} 
-DCMAKE_INSTALL_PREFIX=/usr
-  make -C build
-}
-
-package() {
-  make -C build DESTDIR="${pkgdir}" install
-}

Copied: kvantum-qt5/repos/community-x86_64/PKGBUILD (from rev 664435, 
kvantum-qt5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:44:20 UTC (rev 664436)
@@ -0,0 +1,23 @@
+# Maintainer: Bruno Pagani 
+
+_pkgname=Kvantum
+pkgname=kvantum-qt5
+pkgver=0.16.0
+pkgrel=1
+pkgdesc="SVG-based theme engine for Qt5 (including config tool and extra 
themes)"
+arch=(x86_64)
+url="https://github.com/tsujan/Kvantum;
+license=(GPL)
+depends=(qt5-base qt5-svg qt5-x11extras libx11 libxext hicolor-icon-theme 
kwindowsystem)
+makedepends=(cmake qt5-tools)
+source=(${url}/archive/V${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('3dba7eb2793e9763f55777bc12d1b72fab1a8b9cdbb0f8b96b264845b26c3985')
+
+build() {
+  cmake -B build -S ${_pkgname}-${pkgver}/${_pkgname} 
-DCMAKE_INSTALL_PREFIX=/usr
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:37:26
  Author: archange
Revision: 664433

archrelease: copy trunk to community-x86_64

Added:
  klavaro/repos/community-x86_64/PKGBUILD
(from rev 664432, klavaro/trunk/PKGBUILD)
Deleted:
  klavaro/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:37:17 UTC (rev 664432)
+++ PKGBUILD2020-07-18 15:37:26 UTC (rev 664433)
@@ -1,27 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-pkgname=klavaro
-pkgver=3.09
-pkgrel=3
-pkgdesc="Free touch typing tutor program"
-arch=('x86_64')
-url="http://klavaro.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gtk3' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('espeakup: voice output')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('9983e501563a4d05e429700a2bd5bb078ac43b2f0d4014864e3cac42e0a1f589')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's|/usr/share/icons/hicolor/24x24/apps/klavaro.png|klavaro|' \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-}

Copied: klavaro/repos/community-x86_64/PKGBUILD (from rev 664432, 
klavaro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:37:26 UTC (rev 664433)
@@ -0,0 +1,26 @@
+# Maintainer: Bruno Pagani 
+# Contirbutor: Lukas Jirkovsky 
+
+pkgname=klavaro
+pkgver=3.10
+pkgrel=1
+pkgdesc="Free touch typing tutor program"
+arch=(x86_64)
+url="https://klavaro.sourceforge.io;
+license=(GPL2)
+depends=(curl gtk3)
+makedepends=(intltool)
+optdepends=('espeakup: voice output')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('25e1387aa1553447fa759f364e5930985cf8ca3f27b5f8f802d5e0d86c6edf4a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:37:17
  Author: archange
Revision: 664432

upgpkg: klavaro 3.10-1

+PKGBUILD linting

Modified:
  klavaro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:37:13 UTC (rev 664431)
+++ PKGBUILD2020-07-18 15:37:17 UTC (rev 664432)
@@ -1,27 +1,26 @@
-# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+# Contirbutor: Lukas Jirkovsky 
+
 pkgname=klavaro
-pkgver=3.09
-pkgrel=3
+pkgver=3.10
+pkgrel=1
 pkgdesc="Free touch typing tutor program"
-arch=('x86_64')
-url="http://klavaro.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gtk3' 'hicolor-icon-theme')
-makedepends=('intltool')
+arch=(x86_64)
+url="https://klavaro.sourceforge.io;
+license=(GPL2)
+depends=(curl gtk3)
+makedepends=(intltool)
 optdepends=('espeakup: voice output')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('9983e501563a4d05e429700a2bd5bb078ac43b2f0d4014864e3cac42e0a1f589')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('25e1387aa1553447fa759f364e5930985cf8ca3f27b5f8f802d5e0d86c6edf4a')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's|/usr/share/icons/hicolor/24x24/apps/klavaro.png|klavaro|' \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 15:37:29
  Author: felixonmars
Revision: 664434

archrelease: copy trunk to community-any

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

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

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

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


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

2020-07-18 Thread Felix Yan via arch-commits
Date: Saturday, July 18, 2020 @ 15:37:13
  Author: felixonmars
Revision: 664431

upgpkg: python-hypothesis 5.20.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:20:19 UTC (rev 664430)
+++ PKGBUILD2020-07-18 15:37:13 UTC (rev 664431)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.19.3
+pkgver=5.20.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('530525a7d88ec474105265d87c4bda1a4fbb44ca5ad1881c35841953c79c1b0bdf321a1c65a311fe6a0874e0a82c9bb7700be57069eacf865cc5f9a65602330f')
+sha512sums=('4ceb89fe028609e3393d6a12e060c6a4d786b61528adde8b5adfd74047870894823e3ee113f2283c7711292f71f92aba7724108277c3a61ffaab725b2acdfc19')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:20:06
  Author: archange
Revision: 664429

upgpkg: libva-utils 2.8.0-1

Modified:
  libva-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:19:47 UTC (rev 664428)
+++ PKGBUILD2020-07-18 15:20:06 UTC (rev 664429)
@@ -2,7 +2,7 @@
 # Contributor: Sean V Kelley 
 
 pkgname=libva-utils
-pkgver=2.7.1
+pkgver=2.8.0
 pkgrel=1
 pkgdesc="Intel VA-API Media Applications and Scripts for libva"
 arch=(x86_64)
@@ -11,15 +11,14 @@
 depends=(libva)
 makedepends=(mesa meson)
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('9cf35b971001e7143dda14207b6891c12619a72a2ab99a9133b3da5b9c4d97dd')
+sha256sums=('b9d7c2c75d71911ebc7f09b76c439d9491b4b6db96b37fe78119f8a89f6c0d52')
 
 build() {
-cd ${pkgname}-${pkgver}
-arch-meson ../build
-ninja -v -C ../build
+arch-meson ${pkgname}-${pkgver} build
+meson compile -C build
 }
 
 package() {
-DESTDIR="${pkgdir}" ninja -C build install
+DESTDIR="${pkgdir}" meson install -C build
 install -Dm644 ${pkgname}-${pkgver}/COPYING -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
 }


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:20:19
  Author: archange
Revision: 664430

archrelease: copy trunk to community-x86_64

Added:
  libva-utils/repos/community-x86_64/PKGBUILD
(from rev 664429, libva-utils/trunk/PKGBUILD)
Deleted:
  libva-utils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:20:06 UTC (rev 664429)
+++ PKGBUILD2020-07-18 15:20:19 UTC (rev 664430)
@@ -1,25 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Sean V Kelley 
-
-pkgname=libva-utils
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="Intel VA-API Media Applications and Scripts for libva"
-arch=(x86_64)
-url="https://github.com/intel/libva-utils;
-license=(custom)
-depends=(libva)
-makedepends=(mesa meson)
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('9cf35b971001e7143dda14207b6891c12619a72a2ab99a9133b3da5b9c4d97dd')
-
-build() {
-cd ${pkgname}-${pkgver}
-arch-meson ../build
-ninja -v -C ../build
-}
-
-package() {
-DESTDIR="${pkgdir}" ninja -C build install
-install -Dm644 ${pkgname}-${pkgver}/COPYING -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: libva-utils/repos/community-x86_64/PKGBUILD (from rev 664429, 
libva-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:20:19 UTC (rev 664430)
@@ -0,0 +1,24 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Sean V Kelley 
+
+pkgname=libva-utils
+pkgver=2.8.0
+pkgrel=1
+pkgdesc="Intel VA-API Media Applications and Scripts for libva"
+arch=(x86_64)
+url="https://github.com/intel/libva-utils;
+license=(custom)
+depends=(libva)
+makedepends=(mesa meson)
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('b9d7c2c75d71911ebc7f09b76c439d9491b4b6db96b37fe78119f8a89f6c0d52')
+
+build() {
+arch-meson ${pkgname}-${pkgver} build
+meson compile -C build
+}
+
+package() {
+DESTDIR="${pkgdir}" meson install -C build
+install -Dm644 ${pkgname}-${pkgver}/COPYING -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:19:39
  Author: archange
Revision: 664427

upgpkg: intel-compute-runtime 20.27.17231-1

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 15:01:31 UTC (rev 664426)
+++ PKGBUILD2020-07-18 15:19:39 UTC (rev 664427)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=intel-compute-runtime
-pkgver=20.18.16699
+pkgver=20.27.17231
 pkgrel=1
 pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
 arch=(x86_64)
@@ -14,11 +14,9 @@
 'libdrm: for cl_intel_va_api_media_sharing')
 provides=(opencl-driver level-zero-driver)
 
source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('04576130cbb72af19ef6c79092105af7c06df95d7b17769d8fd815fe81c42b12')
+sha256sums=('962c1a95ce9ef22df60ea50cfc8ee915b7f7ee1363e703c0a3222760fe9f273e')
 
 build() {
-export CFLAGS+=" ${CPPFLAGS}"
-export CXXFLAGS+=" ${CPPFLAGS}"
 cmake -B build -S compute-runtime-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:19:47
  Author: archange
Revision: 664428

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:19:39 UTC (rev 664427)
+++ PKGBUILD2020-07-18 15:19:47 UTC (rev 664428)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-compute-runtime
-pkgver=20.18.16699
-pkgrel=1
-pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
-arch=(x86_64)
-url="https://01.org/compute-runtime;
-license=(MIT)
-depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
-makedepends=(cmake libva level-zero-headers)
-optdepends=('libva: for cl_intel_va_api_media_sharing'
-'libdrm: for cl_intel_va_api_media_sharing')
-provides=(opencl-driver level-zero-driver)
-source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('04576130cbb72af19ef6c79092105af7c06df95d7b17769d8fd815fe81c42b12')
-
-build() {
-export CFLAGS+=" ${CPPFLAGS}"
-export CXXFLAGS+=" ${CPPFLAGS}"
-cmake -B build -S compute-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -Dm755 build/bin/libocloc.so -t "${pkgdir}"/usr/lib/intel-opencl
-install -Dm644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-
-local _lz_sover
-local _lz_major
-_lz_sover=$(find "${pkgdir}"/usr/lib -type f -name 
'libze_intel_gpu.so.*.*.*' | sed 's/^.*\.so\.//')
-_lz_major=${_lz_sover%%.*}
-ln -s libze_intel_gpu.so.${_lz_sover} 
"${pkgdir}"/usr/lib/libze_intel_gpu.so
-ln -s libze_intel_gpu.so.${_lz_sover} 
"${pkgdir}"/usr/lib/libze_intel_gpu.so.${_lz_major}
-}

Copied: intel-compute-runtime/repos/community-x86_64/PKGBUILD (from rev 664427, 
intel-compute-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:19:47 UTC (rev 664428)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-compute-runtime
+pkgver=20.27.17231
+pkgrel=1
+pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
+arch=(x86_64)
+url="https://01.org/compute-runtime;
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva level-zero-headers)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver level-zero-driver)
+source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('962c1a95ce9ef22df60ea50cfc8ee915b7f7ee1363e703c0a3222760fe9f273e')
+
+build() {
+cmake -B build -S compute-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm755 build/bin/libocloc.so -t "${pkgdir}"/usr/lib/intel-opencl
+install -Dm644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+
+local _lz_sover
+local _lz_major
+_lz_sover=$(find "${pkgdir}"/usr/lib -type f -name 
'libze_intel_gpu.so.*.*.*' | sed 's/^.*\.so\.//')
+_lz_major=${_lz_sover%%.*}
+ln -s libze_intel_gpu.so.${_lz_sover} 
"${pkgdir}"/usr/lib/libze_intel_gpu.so
+ln -s libze_intel_gpu.so.${_lz_sover} 
"${pkgdir}"/usr/lib/libze_intel_gpu.so.${_lz_major}
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:01:31
  Author: archange
Revision: 664426

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 15:01:18 UTC (rev 664425)
+++ PKGBUILD2020-07-18 15:01:31 UTC (rev 664426)
@@ -1,28 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Daniel Bermond 
-
-pkgname=intel-media-driver
-pkgver=20.1.1
-pkgrel=1
-pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
-arch=(x86_64)
-url="https://github.com/intel/media-driver/;
-license=(MIT BSD)
-depends=(gcc-libs intel-gmmlib libva libpciaccess)
-makedepends=(cmake)
-source=("https://github.com/${pkgname/-//}/archive/${pkgname%-*}-${pkgver}.tar.gz;)
-sha256sums=('dbca37ba8383cd4d1f3e15fa906f03457ebdb5a118d2459d8f9cd477e0f3d4d4')
-
-build() {
-cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DINSTALL_DRIVER_SYSCONF=OFF \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="$pkgdir" install
-install -Dm644 ${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: intel-media-driver/repos/community-x86_64/PKGBUILD (from rev 664425, 
intel-media-driver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 15:01:31 UTC (rev 664426)
@@ -0,0 +1,28 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Daniel Bermond 
+
+pkgname=intel-media-driver
+pkgver=20.2.0
+pkgrel=1
+pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
+arch=(x86_64)
+url="https://github.com/intel/media-driver/;
+license=(MIT BSD)
+depends=(gcc-libs intel-gmmlib libva libpciaccess)
+makedepends=(cmake)
+source=("https://github.com/${pkgname/-//}/archive/${pkgname%-*}-${pkgver}.tar.gz;)
+sha256sums=('1cdd40517d9fee51e3760beea23d2a19c2d5fcb1d6a9ed2bc0af7318d0d3100f')
+
+build() {
+cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_DRIVER_SYSCONF=OFF \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="$pkgdir" install
+install -Dm644 ${pkgname#*-}-${pkgname%-*}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 15:01:18
  Author: archange
Revision: 664425

upgpkg: intel-media-driver 20.2.0-1

Modified:
  intel-media-driver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 14:53:15 UTC (rev 664424)
+++ PKGBUILD2020-07-18 15:01:18 UTC (rev 664425)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=intel-media-driver
-pkgver=20.1.1
+pkgver=20.2.0
 pkgrel=1
 pkgdesc="Intel Media Driver for VAAPI — Broadwell+ iGPUs"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(gcc-libs intel-gmmlib libva libpciaccess)
 makedepends=(cmake)
 
source=("https://github.com/${pkgname/-//}/archive/${pkgname%-*}-${pkgver}.tar.gz;)
-sha256sums=('dbca37ba8383cd4d1f3e15fa906f03457ebdb5a118d2459d8f9cd477e0f3d4d4')
+sha256sums=('1cdd40517d9fee51e3760beea23d2a19c2d5fcb1d6a9ed2bc0af7318d0d3100f')
 
 build() {
 cmake -B build -S ${pkgname#*-}-${pkgname%-*}-${pkgver} \


[arch-commits] Commit in intel-graphics-compiler/trunk (010-igc-fix-build.patch)

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 14:53:15
  Author: archange
Revision: 664424

Remove leftover patch

Deleted:
  intel-graphics-compiler/trunk/010-igc-fix-build.patch

-+
 010-igc-fix-build.patch |   19 ---
 1 file changed, 19 deletions(-)

Deleted: 010-igc-fix-build.patch
===
--- 010-igc-fix-build.patch 2020-07-18 14:50:08 UTC (rev 664423)
+++ 010-igc-fix-build.patch 2020-07-18 14:53:15 UTC (rev 664424)
@@ -1,19 +0,0 @@
-diff --git a/IGC/CMakeLists.txt b/IGC/CMakeLists.txt
-index 8c9a5fcc..3b5e88cf 100644
 a/IGC/CMakeLists.txt
-+++ b/IGC/CMakeLists.txt
-@@ -3271,8 +3271,12 @@ endif()
- if(LLVM_LINK_LLVM_DYLIB)
- # LLVM was built and configured in a way that tools (in our case IGC) 
should be linked
- # against single LLVM dynamic library.
--set(IGC_BUILD__LLVM_LIBS_TO_LINK 
"/usr/local/lib/libLLVM-${LLVM_VERSION_MAJOR}.so")
--message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
-+find_library(IGC_BUILD__LLVM_LIBS_TO_LINK 
"libLLVM-${LLVM_VERSION_MAJOR}.so")
-+if(IGC_BUILD__LLVM_LIBS_TO_LINK)
-+  message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
-+else()
-+  message(FATAL_ERROR "[IGC] Could not find the LLVM dylib. Aborting.")
-+endif()
- else()
- # LLVM was built into multiple libraries (static or shared).
- message(STATUS "[IGC] Link against LLVM static or shared component libs")


[arch-commits] Commit in intel-graphics-compiler/trunk (PKGBUILD)

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 14:49:56
  Author: archange
Revision: 664422

upgpkg: intel-graphics-compiler 1:1.0.4241-1

Modified:
  intel-graphics-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 14:26:21 UTC (rev 664421)
+++ PKGBUILD2020-07-18 14:49:56 UTC (rev 664422)
@@ -3,7 +3,7 @@
 
 pkgname=intel-graphics-compiler
 epoch=1
-pkgver=1.0.3899
+pkgver=1.0.4241
 pkgrel=1
 pkgdesc="Intel Graphics Compiler for OpenCL"
 arch=(x86_64)
@@ -12,15 +12,9 @@
 depends=(llvm-libs intel-opencl-clang)
 makedepends=(cmake clang llvm zlib python)
 options=(!emptydirs)
-source=("${url}/archive/igc-${pkgver}.tar.gz"
-"010-igc-fix-build.patch")
-sha256sums=('fcb721a40a88e1c9bbd45281ba003cf519eaf648435896071bc1e8a80ef05e71'
-'ce2df5488a57a84e33a1a9eae8d8198b6b21c589e2a3d9deabae141e34a095aa')
+source=(${url}/archive/igc-${pkgver}.tar.gz)
+sha256sums=('1f24daa4c4ca411a77944d466f5b3c6f59ae21f5dd266b38da68f9124e116ff9')
 
-prepare() {
-patch -d ${pkgname}-igc-${pkgver} -Np1 -i 
"${srcdir}"/010-igc-fix-build.patch
-}
-
 build() {
 cmake -B build -S ${pkgname}-igc-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \


[arch-commits] Commit in intel-graphics-compiler/repos/community-x86_64 (4 files)

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 14:50:08
  Author: archange
Revision: 664423

archrelease: copy trunk to community-x86_64

Added:
  intel-graphics-compiler/repos/community-x86_64/010-igc-fix-build.patch
(from rev 664422, intel-graphics-compiler/trunk/010-igc-fix-build.patch)
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD
(from rev 664422, intel-graphics-compiler/trunk/PKGBUILD)
Deleted:
  intel-graphics-compiler/repos/community-x86_64/010-igc-fix-build.patch
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD

-+
 010-igc-fix-build.patch |   38 
 PKGBUILD|   72 +-
 2 files changed, 52 insertions(+), 58 deletions(-)

Deleted: 010-igc-fix-build.patch
===
--- 010-igc-fix-build.patch 2020-07-18 14:49:56 UTC (rev 664422)
+++ 010-igc-fix-build.patch 2020-07-18 14:50:08 UTC (rev 664423)
@@ -1,19 +0,0 @@
-diff --git a/IGC/CMakeLists.txt b/IGC/CMakeLists.txt
-index 8c9a5fcc..3b5e88cf 100644
 a/IGC/CMakeLists.txt
-+++ b/IGC/CMakeLists.txt
-@@ -3271,8 +3271,12 @@ endif()
- if(LLVM_LINK_LLVM_DYLIB)
- # LLVM was built and configured in a way that tools (in our case IGC) 
should be linked
- # against single LLVM dynamic library.
--set(IGC_BUILD__LLVM_LIBS_TO_LINK 
"/usr/local/lib/libLLVM-${LLVM_VERSION_MAJOR}.so")
--message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
-+find_library(IGC_BUILD__LLVM_LIBS_TO_LINK 
"libLLVM-${LLVM_VERSION_MAJOR}.so")
-+if(IGC_BUILD__LLVM_LIBS_TO_LINK)
-+  message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
-+else()
-+  message(FATAL_ERROR "[IGC] Could not find the LLVM dylib. Aborting.")
-+endif()
- else()
- # LLVM was built into multiple libraries (static or shared).
- message(STATUS "[IGC] Link against LLVM static or shared component libs")

Copied: intel-graphics-compiler/repos/community-x86_64/010-igc-fix-build.patch 
(from rev 664422, intel-graphics-compiler/trunk/010-igc-fix-build.patch)
===
--- 010-igc-fix-build.patch (rev 0)
+++ 010-igc-fix-build.patch 2020-07-18 14:50:08 UTC (rev 664423)
@@ -0,0 +1,19 @@
+diff --git a/IGC/CMakeLists.txt b/IGC/CMakeLists.txt
+index 8c9a5fcc..3b5e88cf 100644
+--- a/IGC/CMakeLists.txt
 b/IGC/CMakeLists.txt
+@@ -3271,8 +3271,12 @@ endif()
+ if(LLVM_LINK_LLVM_DYLIB)
+ # LLVM was built and configured in a way that tools (in our case IGC) 
should be linked
+ # against single LLVM dynamic library.
+-set(IGC_BUILD__LLVM_LIBS_TO_LINK 
"/usr/local/lib/libLLVM-${LLVM_VERSION_MAJOR}.so")
+-message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
++find_library(IGC_BUILD__LLVM_LIBS_TO_LINK 
"libLLVM-${LLVM_VERSION_MAJOR}.so")
++if(IGC_BUILD__LLVM_LIBS_TO_LINK)
++  message(STATUS "[IGC] Link against LLVM dylib 
${IGC_BUILD__LLVM_LIBS_TO_LINK}")
++else()
++  message(FATAL_ERROR "[IGC] Could not find the LLVM dylib. Aborting.")
++endif()
+ else()
+ # LLVM was built into multiple libraries (static or shared).
+ message(STATUS "[IGC] Link against LLVM static or shared component libs")

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 14:49:56 UTC (rev 664422)
+++ PKGBUILD2020-07-18 14:50:08 UTC (rev 664423)
@@ -1,39 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-graphics-compiler
-epoch=1
-pkgver=1.0.3899
-pkgrel=1
-pkgdesc="Intel Graphics Compiler for OpenCL"
-arch=(x86_64)
-url="https://github.com/intel/intel-graphics-compiler;
-license=(MIT)
-depends=(llvm-libs intel-opencl-clang)
-makedepends=(cmake clang llvm zlib python)
-options=(!emptydirs)
-source=("${url}/archive/igc-${pkgver}.tar.gz"
-"010-igc-fix-build.patch")
-sha256sums=('fcb721a40a88e1c9bbd45281ba003cf519eaf648435896071bc1e8a80ef05e71'
-'ce2df5488a57a84e33a1a9eae8d8198b6b21c589e2a3d9deabae141e34a095aa')
-
-prepare() {
-patch -d ${pkgname}-igc-${pkgver} -Np1 -i 
"${srcdir}"/010-igc-fix-build.patch
-}
-
-build() {
-cmake -B build -S ${pkgname}-igc-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
--DIGC_PREFERRED_LLVM_VERSION='10.0.0' \
--DINSTALL_GENX_IR=ON \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-graphics-compiler/repos/community-x86_64/PKGBUILD (from rev 
664422, intel-graphics-compiler/trunk/PKGBUILD)

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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 14:26:21
  Author: archange
Revision: 664421

archrelease: copy trunk to community-x86_64

Added:
  intel-gmmlib/repos/community-x86_64/PKGBUILD
(from rev 664420, intel-gmmlib/trunk/PKGBUILD)
Deleted:
  intel-gmmlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 14:26:10 UTC (rev 664420)
+++ PKGBUILD2020-07-18 14:26:21 UTC (rev 664421)
@@ -1,35 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Daniel Bermond 
-
-pkgname=intel-gmmlib
-pkgver=20.1.1
-pkgrel=1
-pkgdesc="Intel Graphics Memory Management Library"
-arch=(x86_64)
-url="https://github.com/intel/gmmlib/;
-license=(MIT)
-depends=(gcc-libs)
-makedepends=(cmake)
-provides=(gmmlib)
-conflicts=(gmmlib)
-replaces=(gmmlib)
-options=(!emptydirs)
-source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('821755657cf51f59d8f3f443c99e3ec9f28d897ff65c219c6a119e4acb5a2ac7')
-
-build() {
-export CFLAGS+=" ${CPPFLAGS}"
-export CXXFLAGS+=" ${CPPFLAGS}"
-cmake -B build -S gmmlib-${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DRUN_TEST_SUITE=ON \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -D -m644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: intel-gmmlib/repos/community-x86_64/PKGBUILD (from rev 664420, 
intel-gmmlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 14:26:21 UTC (rev 664421)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Daniel Bermond 
+
+pkgname=intel-gmmlib
+pkgver=20.2.2
+pkgrel=1
+pkgdesc="Intel Graphics Memory Management Library"
+arch=(x86_64)
+url="https://github.com/intel/gmmlib/;
+license=(MIT)
+depends=(gcc-libs)
+makedepends=(cmake)
+provides=(gmmlib)
+conflicts=(gmmlib)
+replaces=(gmmlib)
+options=(!emptydirs)
+source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b3dfb193549b7385d68d959b31fa4670fef69161ca808bc9268a213bffba84f2')
+
+build() {
+export CFLAGS+=" ${CPPFLAGS}"
+export CXXFLAGS+=" ${CPPFLAGS}"
+cmake -B build -S gmmlib-${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DRUN_TEST_SUITE=ON \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 14:26:10
  Author: archange
Revision: 664420

upgpkg: intel-gmmlib 20.2.2-1

Modified:
  intel-gmmlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 14:06:46 UTC (rev 664419)
+++ PKGBUILD2020-07-18 14:26:10 UTC (rev 664420)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=intel-gmmlib
-pkgver=20.1.1
+pkgver=20.2.2
 pkgrel=1
 pkgdesc="Intel Graphics Memory Management Library"
 arch=(x86_64)
@@ -15,7 +15,7 @@
 replaces=(gmmlib)
 options=(!emptydirs)
 
source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('821755657cf51f59d8f3f443c99e3ec9f28d897ff65c219c6a119e4acb5a2ac7')
+sha256sums=('b3dfb193549b7385d68d959b31fa4670fef69161ca808bc9268a213bffba84f2')
 
 build() {
 export CFLAGS+=" ${CPPFLAGS}"
@@ -31,5 +31,5 @@
 
 package() {
 make -C build DESTDIR="${pkgdir}" install
-install -D -m644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+install -Dm644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
 }


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 14:06:46
  Author: ffy00
Revision: 664419

archrelease: copy trunk to community-x86_64

Added:
  easy-pdk/repos/community-x86_64/
  easy-pdk/repos/community-x86_64/PKGBUILD
(from rev 664418, easy-pdk/trunk/PKGBUILD)

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

Copied: easy-pdk/repos/community-x86_64/PKGBUILD (from rev 664418, 
easy-pdk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-07-18 14:06:46 UTC (rev 664419)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=easy-pdk-programmer-software
+pkgname=easy-pdk
+pkgver=1.3
+pkgrel=1
+pkgdesc='Easy PDK programmer for PADAUK microcontroller'
+arch=('x86_64')
+url='https://github.com/free-pdk/easy-pdk-programmer-software'
+license=('GPL')
+makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib' 'dfu-util')
+optdepends=('dfu-util: flash the programmer')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('d9c21ddc258018a45da2864b03b8f507a71b4086251867cad1cf157fa651ae211dded6717ee4920d8d417712c72e5dc47445271c4000e43f2dfcffa2e93fc1ab')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  make
+
+  cd Firmware/source
+
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  install -Dm 755 easypdkprog "$pkgdir"/usr/bin/easypdkprog
+
+  install -Dm 644 Linux_udevrules/70-stm32vcp.rules 
"$pkgdir"/usr/lib/udev/rules.d/70-stm32vcp.rules
+
+  install -Dm 644 Firmware/source/build/EASYPDKPROG.bin 
"$pkgdir"/usr/share/$pkgname/EASYPDKPROG.bin
+  install -Dm 644 Firmware/source/build/EASYPDKPROG.dfu 
"$pkgdir"/usr/share/$pkgname/EASYPDKPROG.dfu
+}
+


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

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 14:06:32
  Author: ffy00
Revision: 664418

upgpkg: easy-pdk 1.3-1

Added:
  easy-pdk/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 14:06:32 UTC (rev 664418)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=easy-pdk-programmer-software
+pkgname=easy-pdk
+pkgver=1.3
+pkgrel=1
+pkgdesc='Easy PDK programmer for PADAUK microcontroller'
+arch=('x86_64')
+url='https://github.com/free-pdk/easy-pdk-programmer-software'
+license=('GPL')
+makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib' 'dfu-util')
+optdepends=('dfu-util: flash the programmer')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('d9c21ddc258018a45da2864b03b8f507a71b4086251867cad1cf157fa651ae211dded6717ee4920d8d417712c72e5dc47445271c4000e43f2dfcffa2e93fc1ab')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  make
+
+  cd Firmware/source
+
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  install -Dm 755 easypdkprog "$pkgdir"/usr/bin/easypdkprog
+
+  install -Dm 644 Linux_udevrules/70-stm32vcp.rules 
"$pkgdir"/usr/lib/udev/rules.d/70-stm32vcp.rules
+
+  install -Dm 644 Firmware/source/build/EASYPDKPROG.bin 
"$pkgdir"/usr/share/$pkgname/EASYPDKPROG.bin
+  install -Dm 644 Firmware/source/build/EASYPDKPROG.dfu 
"$pkgdir"/usr/share/$pkgname/EASYPDKPROG.dfu
+}
+


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

2020-07-18 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, July 18, 2020 @ 13:56:54
  Author: yan12125
Revision: 664417

archrelease: copy trunk to community-any

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

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

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

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

Deleted: postgresql-12.diff
===
--- postgresql-12.diff  2020-07-18 13:55:53 UTC (rev 664416)
+++ postgresql-12.diff  2020-07-18 13:56:54 UTC (rev 664417)
@@ -1,17 +0,0 @@
-diff --git a/test/test_copy.py b/test/test_copy.py
-index e46b8d2..847fef3 100644
 a/test/test_copy.py
-+++ b/test/test_copy.py
-@@ -71,10 +71,10 @@ def test_copy_from_with_error(db_table):
- arg = {
- 'S': 'ERROR',
- 'C': '22P02',
--'M': 'invalid input syntax for integer: ""',
-+'M': 'invalid input syntax for type integer: ""',
- 'W': 'COPY t1, line 2, column f1: ""',
-  

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

2020-07-18 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, July 18, 2020 @ 13:55:53
  Author: yan12125
Revision: 664416

upgpkg: python-pg8000 1.16.1-1; the test issue is fixed upstream

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-18 13:43:42 UTC (rev 664415)
+++ PKGBUILD2020-07-18 13:55:53 UTC (rev 664416)
@@ -2,7 +2,7 @@
 # Contributor: quomoow 
 
 pkgname=python-pg8000
-pkgver=1.16.0
+pkgver=1.16.1
 pkgrel=1
 pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
 arch=(any)
@@ -11,17 +11,12 @@
 makedepends=(python-setuptools)
 checkdepends=(python-pytest python-pytest-mock python-pytz pifpaf postgresql)
 depends=(python python-scramp)
-source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;
-postgresql-12.diff)
-sha256sums=('dbba2061f4e5f7a405bdd7839ddfd1e180b1a4844279f21eb77bed3808bee4af'
-'31693ddabeb8d772949ecbfd0f917223802be85039a613e083ecdeee417576db')
+source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;)
+sha256sums=('8af9ba3e1edf249b50b13f9f654aa6d39dd66c959fbbf041a4b66cefeb05c7d9')
 
 prepare() {
   cd pg8000-$pkgver
 
-  # https://github.com/tlocke/pg8000/issues/46
-  patch -Np1 -i ../postgresql-12.diff
-
   # Remove upper bounds of dependencies
   sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
   diff -u setup.py{.orig,} || true

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


[arch-commits] Commit in (easy-pdk easy-pdk/repos easy-pdk/trunk)

2020-07-18 Thread Filipe Laíns via arch-commits
Date: Saturday, July 18, 2020 @ 13:43:42
  Author: ffy00
Revision: 664415

add root structure

Added:
  easy-pdk/
  easy-pdk/repos/
  easy-pdk/trunk/


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

2020-07-18 Thread Bruno Pagani via arch-commits
Date: Saturday, July 18, 2020 @ 13:33:58
  Author: archange
Revision: 664414

archrelease: copy trunk to community-x86_64

Added:
  gnome-firmware/repos/community-x86_64/PKGBUILD
(from rev 664413, gnome-firmware/trunk/PKGBUILD)
Deleted:
  gnome-firmware/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-18 13:33:49 UTC (rev 664413)
+++ PKGBUILD2020-07-18 13:33:58 UTC (rev 664414)
@@ -1,32 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=gnome-firmware
-pkgver=3.34.0
-pkgrel=1
-pkgdesc="Manage firmware on devices supported by fwupd"
-arch=(x86_64)
-url="https://gitlab.gnome.org/hughsie/gnome-firmware-updater;
-license=(GPL2)
-depends=(gtk3 glib2 fwupd libxmlb libsoup systemd)
-makedepends=(meson help2man)
-source=(https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz
-
gnome-firmware-fix-help2man-build.patch::https://gitlab.gnome.org/hughsie/gnome-firmware-updater/commit/cb93d1522e6ef927ee458e40eddc793f85c8a746.patch
-
gnome-firmware-fix-headless-build.patch::https://gitlab.gnome.org/hughsie/gnome-firmware-updater/commit/c4f076f2c902080618e0c27dec924fd0019f68a3.patch)
-sha256sums=('bd33a3db43b6e5ab873cbbe304ac60e6fb4f56c9a6b1135a90561c51dfaed668'
-'3250081789f57e308c073ee2b27fa8519f0be586a4f036ef046abc55b2c4c6d7'
-'a53e8f89c7915c79f9f00bb5863af363a3452f6225f2f27007179cc3f962abe4')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-patch -p1 -i ../gnome-firmware-fix-help2man-build.patch
-patch -p1 -i ../gnome-firmware-fix-headless-build.patch
-}
-
-build() {
-   arch-meson ${pkgname}-${pkgver} build
-   ninja -C build
-}
-
-package() {
-   DESTDIR="$pkgdir" ninja -C build install
-}

Copied: gnome-firmware/repos/community-x86_64/PKGBUILD (from rev 664413, 
gnome-firmware/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-18 13:33:58 UTC (rev 664414)
@@ -0,0 +1,22 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=gnome-firmware
+pkgver=3.36.0
+pkgrel=1
+pkgdesc="Manage firmware on devices supported by fwupd"
+arch=(x86_64)
+url="https://gitlab.gnome.org/hughsie/gnome-firmware-updater;
+license=(GPL2)
+depends=(gtk3 glib2 fwupd libxmlb libsoup systemd)
+makedepends=(meson help2man)
+source=(https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('085da82f7c4a027abcd8cbc2c66da92158eff723d4cdffc1cf032ebd590215f4')
+
+build() {
+   arch-meson ${pkgname}-${pkgver} build
+   meson compile -C build
+}
+
+package() {
+   DESTDIR="${pkgdir}" meson install -C build
+}


  1   2   >