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

2020-09-15 Thread Nicola Squartini via arch-commits
Date: Wednesday, September 16, 2020 @ 02:02:49
  Author: tensor5
Revision: 707226

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 707225, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 707225, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 707225, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

+
 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch |   21 ---
 PKGBUILD   |  142 +++
 use-system-qpid-proton.patch   |   26 
 use-system-rust.patch  |   28 ++--
 zcashd.service |   18 +-
 5 files changed, 92 insertions(+), 143 deletions(-)

Deleted: 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
===
--- 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  2020-09-16 02:01:59 UTC 
(rev 707225)
+++ 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  2020-09-16 02:02:49 UTC 
(rev 707226)
@@ -1,21 +0,0 @@
-From 08662fa09a14c68b1048ee4384b25dfd9ad0463f Mon Sep 17 00:00:00 2001
-From: Taylor Hornby 
-Date: Sun, 24 May 2020 16:49:13 -0600
-Subject: [PATCH] Add missing  header for std::invalid_argument
-

- src/crypto/equihash.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/crypto/equihash.h b/src/crypto/equihash.h
-index 556b87d090..7cd97ff600 100644
 a/src/crypto/equihash.h
-+++ b/src/crypto/equihash.h
-@@ -13,6 +13,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-16 02:01:59 UTC (rev 707225)
+++ PKGBUILD2020-09-16 02:02:49 UTC (rev 707226)
@@ -1,73 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=3.1.0
-_commit=65f0a4736acd9adeb91f11899bcee3439068c771
-pkgrel=1
-pkgdesc='Permissionless financial system employing zero-knowledge security'
-arch=('x86_64')
-url='https://z.cash/'
-license=('MIT')
-depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
-makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'0d9c089e1b9eddc127936dbc12984804f3ad65c35845a336368cc9fce22ae784fb486a9a74b5cf34f42739779b42c18084f0558c9c1c74f18c6d8999596c7af6'
-
'1267fc174df81a80a1b0f2e1a6bbaaa6fa95402c83bc6a8678b582ed6c7f7a02eeed0f61c9600496aa782f9fb9fec6dc9ac419d366d059306a5c4f97a5a166f0'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../use-system-qpid-proton.patch
-patch -Np1 -i ../use-system-rust.patch
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages="bdb utfcpp"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
-make RUST_TARGET="${BUILD}"
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-export RUST_TARGET="$(./depends/config.guess)"
-./qa/zcash/full_test_suite.py || true
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" RUST_TARGET="$(./depends/config.guess)" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/user ../zcashd.service
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 707225, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-16 02:02:49 UTC (rev 707226)
@@ -0,0 +1,69 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash

[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-qpid-proton.patch)

2020-09-15 Thread Nicola Squartini via arch-commits
Date: Wednesday, September 16, 2020 @ 02:01:59
  Author: tensor5
Revision: 707225

upgpkg: zcash 4.0.0-1

Modified:
  zcash/trunk/PKGBUILD
Deleted:
  zcash/trunk/use-system-qpid-proton.patch

--+
 PKGBUILD |   12 
 use-system-qpid-proton.patch |   26 --
 2 files changed, 4 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:59:24 UTC (rev 707224)
+++ PKGBUILD2020-09-16 02:01:59 UTC (rev 707225)
@@ -1,22 +1,20 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=3.1.0
-_commit=65f0a4736acd9adeb91f11899bcee3439068c771
+pkgver=4.0.0
+_commit=5e7e9687fc87a2426bafef2837174eac52978b4c
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
+depends=('boost-libs' 'libevent' 'zeromq')
 makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
 checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
 'use-system-rust.patch'
 'zcashd.service')
 sha512sums=('SKIP'
-
'0d9c089e1b9eddc127936dbc12984804f3ad65c35845a336368cc9fce22ae784fb486a9a74b5cf34f42739779b42c18084f0558c9c1c74f18c6d8999596c7af6'
 
'1267fc174df81a80a1b0f2e1a6bbaaa6fa95402c83bc6a8678b582ed6c7f7a02eeed0f61c9600496aa782f9fb9fec6dc9ac419d366d059306a5c4f97a5a166f0'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
@@ -26,7 +24,6 @@
 # Set gitattributes on src/clientversion.cpp
 git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
 
-patch -Np1 -i ../use-system-qpid-proton.patch
 patch -Np1 -i ../use-system-rust.patch
 }
 
@@ -45,8 +42,7 @@
 
 ./autogen.sh
 depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
+--enable-online-rust
 make RUST_TARGET="${BUILD}"
 }
 

Deleted: use-system-qpid-proton.patch
===
--- use-system-qpid-proton.patch2020-09-15 23:59:24 UTC (rev 707224)
+++ use-system-qpid-proton.patch2020-09-16 02:01:59 UTC (rev 707225)
@@ -1,26 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -672,17 +672,13 @@
- [],
- [AC_MSG_WARN([Proton headers not found, disabling Proton support])
- use_proton=no])
-- AC_CHECK_LIB([qpid-proton-cpp-static], [main],
--[PROTON_LIBS="-lqpid-proton-cpp-static"],
--[AC_MSG_WARN([Proton qpid-proton-cpp-static library not found, disabling 
Proton support])
-+ AC_CHECK_LIB([qpid-proton-cpp], [main],
-+[PROTON_LIBS="-lqpid-proton-cpp"],
-+[AC_MSG_WARN([Proton qpid-proton-cpp library not found, disabling Proton 
support])
- use_proton=no])
-- AC_CHECK_LIB([qpid-proton-core-static], [main],
--[PROTON_LIBS+=" -lqpid-proton-core-static"],
--[AC_MSG_WARN([Proton qpid-proton-core-static library not found, disabling 
Proton support])
--use_proton=no])
-- AC_CHECK_LIB([qpid-proton-static], [main],
--[PROTON_LIBS+=" -lqpid-proton-static"],
--[AC_MSG_WARN([Proton qpid-proton-static library not found, disabling 
Proton support])
-+ AC_CHECK_LIB([qpid-proton-core], [main],
-+[PROTON_LIBS+=" -lqpid-proton-core"],
-+[AC_MSG_WARN([Proton qpid-proton-core library not found, disabling Proton 
support])
- use_proton=no])
- fi
- if test x$use_proton = xyes; then


[arch-commits] Commit in riscv32-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:59:21
  Author: ffy00
Revision: 707223

upgpkg: riscv32-elf-binutils 2.35-1

Modified:
  riscv32-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:56:48 UTC (rev 707222)
+++ PKGBUILD2020-09-15 23:59:21 UTC (rev 707223)
@@ -3,8 +3,8 @@
 
 _target=riscv32-elf
 pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=2
+pkgver=2.35
+pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV32 (bare-metal) target'
 arch=(x86_64)
 url='https://www.gnu.org/software/binutils/'
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in riscv32-elf-binutils/repos/community-x86_64 (2 files)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:59:24
  Author: ffy00
Revision: 707224

archrelease: copy trunk to community-x86_64

Added:
  riscv32-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707223, riscv32-elf-binutils/trunk/PKGBUILD)
Deleted:
  riscv32-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:59:21 UTC (rev 707223)
+++ PKGBUILD2020-09-15 23:59:24 UTC (rev 707224)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=riscv32-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=2
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV32 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: riscv32-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707223, 
riscv32-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:59:24 UTC (rev 707224)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=riscv32-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV32 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in nds32le-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:56:45
  Author: ffy00
Revision: 707221

upgpkg: nds32le-elf-binutils 2.35-1

Modified:
  nds32le-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:55:24 UTC (rev 707220)
+++ PKGBUILD2020-09-15 23:56:45 UTC (rev 707221)
@@ -3,7 +3,7 @@
 
 _target=nds32le-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the Andes 32 little-endian (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in nds32le-elf-binutils/repos/community-x86_64 (2 files)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:56:48
  Author: ffy00
Revision: 707222

archrelease: copy trunk to community-x86_64

Added:
  nds32le-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707221, nds32le-elf-binutils/trunk/PKGBUILD)
Deleted:
  nds32le-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:56:45 UTC (rev 707221)
+++ PKGBUILD2020-09-15 23:56:48 UTC (rev 707222)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=nds32le-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the Andes 32 little-endian (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: nds32le-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707221, 
nds32le-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:56:48 UTC (rev 707222)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=nds32le-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the Andes 32 little-endian (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in riscv64-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:55:20
  Author: ffy00
Revision: 707219

upgpkg: riscv64-elf-binutils 2.35-1

Modified:
  riscv64-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:53:57 UTC (rev 707218)
+++ PKGBUILD2020-09-15 23:55:20 UTC (rev 707219)
@@ -3,7 +3,7 @@
 
 _target=riscv64-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV64 (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in riscv64-elf-binutils/repos/community-x86_64 (2 files)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:55:24
  Author: ffy00
Revision: 707220

archrelease: copy trunk to community-x86_64

Added:
  riscv64-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707219, riscv64-elf-binutils/trunk/PKGBUILD)
Deleted:
  riscv64-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:55:20 UTC (rev 707219)
+++ PKGBUILD2020-09-15 23:55:24 UTC (rev 707220)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=riscv64-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV64 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: riscv64-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707219, 
riscv64-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:55:24 UTC (rev 707220)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=riscv64-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the RISCV64 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in ppc64le-elf-binutils/repos/community-x86_64 (2 files)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:53:57
  Author: ffy00
Revision: 707218

archrelease: copy trunk to community-x86_64

Added:
  ppc64le-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707217, ppc64le-elf-binutils/trunk/PKGBUILD)
Deleted:
  ppc64le-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:53:54 UTC (rev 707217)
+++ PKGBUILD2020-09-15 23:53:57 UTC (rev 707218)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=ppc64le-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the PowerPC 64 LE (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: ppc64le-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707217, 
ppc64le-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:53:57 UTC (rev 707218)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=ppc64le-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the PowerPC 64 LE (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in ppc64le-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:53:54
  Author: ffy00
Revision: 707217

upgpkg: ppc64le-elf-binutils 2.35-1

Modified:
  ppc64le-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:50:01 UTC (rev 707216)
+++ PKGBUILD2020-09-15 23:53:54 UTC (rev 707217)
@@ -3,7 +3,7 @@
 
 _target=ppc64le-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the PowerPC 64 LE (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in lm32-elf-binutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:50:01
  Author: ffy00
Revision: 707216

archrelease: copy trunk to community-x86_64

Added:
  lm32-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707215, lm32-elf-binutils/trunk/PKGBUILD)
Deleted:
  lm32-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:49:58 UTC (rev 707215)
+++ PKGBUILD2020-09-15 23:50:01 UTC (rev 707216)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=lm32-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=2
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the LatticeMico32 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: lm32-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707215, 
lm32-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:50:01 UTC (rev 707216)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=lm32-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the LatticeMico32 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in lm32-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:49:58
  Author: ffy00
Revision: 707215

upgpkg: lm32-elf-binutils 2.35-1

Modified:
  lm32-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:48:00 UTC (rev 707214)
+++ PKGBUILD2020-09-15 23:49:58 UTC (rev 707215)
@@ -3,8 +3,8 @@
 
 _target=lm32-elf
 pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=2
+pkgver=2.35
+pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the LatticeMico32 (bare-metal) target'
 arch=(x86_64)
 url='https://www.gnu.org/software/binutils/'
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in or1k-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:47:57
  Author: ffy00
Revision: 707213

upgpkg: or1k-elf-binutils 2.35-1

Modified:
  or1k-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:47:49 UTC (rev 707212)
+++ PKGBUILD2020-09-15 23:47:57 UTC (rev 707213)
@@ -3,7 +3,7 @@
 
 _target=or1k-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the OpenRISC 1000 (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in sh2-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:47:34
  Author: ffy00
Revision: 707209

upgpkg: sh2-elf-binutils 2.35-1

Modified:
  sh2-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:40:35 UTC (rev 707208)
+++ PKGBUILD2020-09-15 23:47:34 UTC (rev 707209)
@@ -3,7 +3,7 @@
 
 _target=sh2-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 2 (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in sh4-elf-binutils/trunk (PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:47:38
  Author: ffy00
Revision: 707210

upgpkg: sh4-elf-binutils 2.35-1

Modified:
  sh4-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:47:34 UTC (rev 707209)
+++ PKGBUILD2020-09-15 23:47:38 UTC (rev 707210)
@@ -3,7 +3,7 @@
 
 _target=sh4-elf
 pkgname=$_target-binutils
-pkgver=2.34
+pkgver=2.35
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 4 (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
 'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 


[arch-commits] Commit in or1k-elf-binutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:48:00
  Author: ffy00
Revision: 707214

archrelease: copy trunk to community-x86_64

Added:
  or1k-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707213, or1k-elf-binutils/trunk/PKGBUILD)
Deleted:
  or1k-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:47:57 UTC (rev 707213)
+++ PKGBUILD2020-09-15 23:48:00 UTC (rev 707214)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=or1k-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the OpenRISC 1000 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/or1k-elf-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: or1k-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707213, 
or1k-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:48:00 UTC (rev 707214)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=or1k-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the OpenRISC 1000 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in sh2-elf-binutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:47:49
  Author: ffy00
Revision: 707212

archrelease: copy trunk to community-x86_64

Added:
  sh2-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707211, sh2-elf-binutils/trunk/PKGBUILD)
Deleted:
  sh2-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:47:41 UTC (rev 707211)
+++ PKGBUILD2020-09-15 23:47:49 UTC (rev 707212)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=sh2-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 2 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: sh2-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707211, 
sh2-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:47:49 UTC (rev 707212)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=sh2-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 2 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


[arch-commits] Commit in sh4-elf-binutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:47:41
  Author: ffy00
Revision: 707211

archrelease: copy trunk to community-x86_64

Added:
  sh4-elf-binutils/repos/community-x86_64/PKGBUILD
(from rev 707210, sh4-elf-binutils/trunk/PKGBUILD)
Deleted:
  sh4-elf-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:47:38 UTC (rev 707210)
+++ PKGBUILD2020-09-15 23:47:41 UTC (rev 707211)
@@ -1,63 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=sh4-elf
-pkgname=$_target-binutils
-pkgver=2.34
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 4 (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
-sha512sums=('f47e7304e102c7bbc97958a08093e27796b9051d1567ce4fbb723d39ef3e29efa325ee14a1bdcc462a925a7f9bbbc9aee28294c6dc23850f371030f3835a8067'
-'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}
-

Copied: sh4-elf-binutils/repos/community-x86_64/PKGBUILD (from rev 707210, 
sh4-elf-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:47:41 UTC (rev 707211)
@@ -0,0 +1,63 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=sh4-elf
+pkgname=$_target-binutils
+pkgver=2.35
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the SuperH SH 4 (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2"{,.sig})
+sha512sums=('826c1fdac2dd7b2326c4fc5449a585cf0c1f979a98c6ee062bab5ebd6bc657e697c468fc3a4c3c5a7fa383a4902e8cacd27e1752707bbaf042b36b2653469947'
+'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/$_target-{dlltool,windres,windmc}*
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}
+


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

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:40:31
  Author: ffy00
Revision: 707207

upgpkg: shotcut 20.09.13-1

Modified:
  shotcut/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:27:14 UTC (rev 707206)
+++ PKGBUILD2020-09-15 23:40:31 UTC (rev 707207)
@@ -3,7 +3,7 @@
 
 pkgname=shotcut
 pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=20.07.11
+pkgver=20.09.13
 pkgrel=1
 arch=('x86_64')
 url='https://www.shotcut.org'
@@ -15,7 +15,7 @@
 makedepends=('qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
 'melt.patch')
-sha512sums=('8590855f252dbf1a1e4aed078da93ea730e4dec2c67420f57babf59e37a8f4d76c808a14872ae68fa400e5057e9be9d42c567c4f0db3e869eefd5115b814d30b'
+sha512sums=('28b967eb26c6f78a0e8ff53cca115708df68129c843ad29e25e4fbf8838c0db5e84f30681a7c3d24f22cd19f6a452e6b7d87b6e0122652385b9d4095f472'
 
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
 
 prepare() {


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

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:40:35
  Author: ffy00
Revision: 707208

archrelease: copy trunk to community-x86_64

Added:
  shotcut/repos/community-x86_64/PKGBUILD
(from rev 707207, shotcut/trunk/PKGBUILD)
  shotcut/repos/community-x86_64/melt.patch
(from rev 707207, shotcut/trunk/melt.patch)
Deleted:
  shotcut/repos/community-x86_64/PKGBUILD
  shotcut/repos/community-x86_64/melt.patch

+
 PKGBUILD   |   96 +--
 melt.patch |   26 +++
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:40:31 UTC (rev 707207)
+++ PKGBUILD2020-09-15 23:40:35 UTC (rev 707208)
@@ -1,48 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: nfnty 
-
-pkgname=shotcut
-pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=20.07.11
-pkgrel=1
-arch=('x86_64')
-url='https://www.shotcut.org'
-license=('GPL3')
-depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
- 'qt5-quickcontrols' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras'
- 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 
'ladspa')
-optdepends=('swh-plugins: Several audio filters')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
-'melt.patch')
-sha512sums=('8590855f252dbf1a1e4aed078da93ea730e4dec2c67420f57babf59e37a8f4d76c808a14872ae68fa400e5057e9be9d42c567c4f0db3e869eefd5115b814d30b'
-
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 < ../melt.patch
-}
-
-build() {
-  mkdir $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  qmake .. \
-PREFIX='/usr' \
-QMAKE_CFLAGS_RELEASE="$CFLAGS" \
-QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
-SHOTCUT_VERSION=ARCH-$pkgver \
-DEFINES+=SHOTCUT_NOUPGRADE
-
-  make
-
-  lrelease ../translations/*.ts
-}
-
-package() {
-cd $pkgname-$pkgver/build
-
-make INSTALL_ROOT="$pkgdir" install
-}
-

Copied: shotcut/repos/community-x86_64/PKGBUILD (from rev 707207, 
shotcut/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:40:35 UTC (rev 707208)
@@ -0,0 +1,48 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: nfnty 
+
+pkgname=shotcut
+pkgdesc='Cross-platform Qt based Video Editor'
+pkgver=20.09.13
+pkgrel=1
+arch=('x86_64')
+url='https://www.shotcut.org'
+license=('GPL3')
+depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
+ 'qt5-quickcontrols' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras'
+ 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 
'ladspa')
+optdepends=('swh-plugins: Several audio filters')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
+'melt.patch')
+sha512sums=('28b967eb26c6f78a0e8ff53cca115708df68129c843ad29e25e4fbf8838c0db5e84f30681a7c3d24f22cd19f6a452e6b7d87b6e0122652385b9d4095f472'
+
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 < ../melt.patch
+}
+
+build() {
+  mkdir $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  qmake .. \
+PREFIX='/usr' \
+QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
+SHOTCUT_VERSION=ARCH-$pkgver \
+DEFINES+=SHOTCUT_NOUPGRADE
+
+  make
+
+  lrelease ../translations/*.ts
+}
+
+package() {
+cd $pkgname-$pkgver/build
+
+make INSTALL_ROOT="$pkgdir" install
+}
+

Deleted: melt.patch
===
--- melt.patch  2020-09-15 23:40:31 UTC (rev 707207)
+++ melt.patch  2020-09-15 23:40:35 UTC (rev 707208)
@@ -1,13 +0,0 @@
-diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
-index f5390e4..693a089 100644
 a/src/jobs/meltjob.cpp
-+++ b/src/jobs/meltjob.cpp
-@@ -50,7 +50,7 @@ void MeltJob::start()
- #ifdef Q_OS_WIN
- QFileInfo meltPath(shotcutPath, "qmelt.exe");
- #else
--QFileInfo meltPath(shotcutPath, "qmelt");
-+QFileInfo meltPath(shotcutPath, "melt");
- #endif
- setReadChannel(QProcess::StandardError);
- QStringList args;

Copied: shotcut/repos/community-x86_64/melt.patch (from rev 707207, 
shotcut/trunk/melt.patch)
===
--- melt.patch  (rev 0)
+++ melt.patch  2020-09-15 23:40:35 UTC (rev 707208)
@@ -0,0 +1,13 @@
+diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
+index f5390e4..693a089 100644
+--- a/src/jobs/meltjob.cpp
 

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

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:27:06
  Author: ffy00
Revision: 707205

upgpkg: arduino-cli 0.13.0-1

Modified:
  arduino-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 20:39:12 UTC (rev 707204)
+++ PKGBUILD2020-09-15 23:27:06 UTC (rev 707205)
@@ -1,7 +1,7 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=arduino-cli
-pkgver=0.12.1
+pkgver=0.13.0
 pkgrel=1
 arch=('x86_64')
 pkgdesc='Arduino command line interface'


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

2020-09-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 15, 2020 @ 23:27:14
  Author: ffy00
Revision: 707206

archrelease: copy trunk to community-x86_64

Added:
  arduino-cli/repos/community-x86_64/PKGBUILD
(from rev 707205, arduino-cli/trunk/PKGBUILD)
Deleted:
  arduino-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 23:27:06 UTC (rev 707205)
+++ PKGBUILD2020-09-15 23:27:14 UTC (rev 707206)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=arduino-cli
-pkgver=0.12.1
-pkgrel=1
-arch=('x86_64')
-pkgdesc='Arduino command line interface'
-url='https://github.com/arduino/arduino-cli'
-license=('GPL3')
-groups=('arduino')
-makedepends=('go' 'git')
-source=("git+$url.git#tag=$pkgver")
-sha512sums=('SKIP')
-
-build(){
-  cd $pkgname
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build \
--ldflags "-X 
github.com/arduino/arduino-cli/version.versionString=$pkgver-arch -X 
github.com/arduino/arduino-cli/version.commit=$(git rev-parse HEAD)" \
--v .
-}
-
-package() {
-  install -Dm 755 $pkgname/$pkgname "$pkgdir"/usr/bin/$pkgname
-}
-

Copied: arduino-cli/repos/community-x86_64/PKGBUILD (from rev 707205, 
arduino-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 23:27:14 UTC (rev 707206)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=arduino-cli
+pkgver=0.13.0
+pkgrel=1
+arch=('x86_64')
+pkgdesc='Arduino command line interface'
+url='https://github.com/arduino/arduino-cli'
+license=('GPL3')
+groups=('arduino')
+makedepends=('go' 'git')
+source=("git+$url.git#tag=$pkgver")
+sha512sums=('SKIP')
+
+build(){
+  cd $pkgname
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build \
+-ldflags "-X 
github.com/arduino/arduino-cli/version.versionString=$pkgver-arch -X 
github.com/arduino/arduino-cli/version.commit=$(git rev-parse HEAD)" \
+-v .
+}
+
+package() {
+  install -Dm 755 $pkgname/$pkgname "$pkgdir"/usr/bin/$pkgname
+}
+


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 20:39:12
  Author: foxboron
Revision: 707204

archrelease: copy trunk to community-x86_64

Added:
  k9s/repos/community-x86_64/PKGBUILD
(from rev 707203, k9s/trunk/PKGBUILD)
Deleted:
  k9s/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 20:39:05 UTC (rev 707203)
+++ PKGBUILD2020-09-15 20:39:12 UTC (rev 707204)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.21.10
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=99e2a988e6593f1d8efa5ac0f7b3c366d83d3780   #refs/tags/v0.21.10^{}
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make VERSION=v$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 707203, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 20:39:12 UTC (rev 707204)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.22.0
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=58d2bfe9e36286bd20fc7c8ab5c8353524a71642   #refs/tags/v0.22.0
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make VERSION=v$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 20:39:05
  Author: foxboron
Revision: 707203

upgpkg: k9s 0.22.0-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 20:07:27 UTC (rev 707202)
+++ PKGBUILD2020-09-15 20:39:05 UTC (rev 707203)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.21.10
+pkgver=0.22.0
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=99e2a988e6593f1d8efa5ac0f7b3c366d83d3780   #refs/tags/v0.21.10^{}
+_commit=58d2bfe9e36286bd20fc7c8ab5c8353524a71642   #refs/tags/v0.22.0
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-09-15 Thread Levente Polyak via arch-commits
Date: Tuesday, September 15, 2020 @ 20:37:10
  Author: anthraxx
Revision: 396160

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 396159, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 396159, linux-hardened/trunk/config)
  linux-hardened/repos/extra-x86_64/sphinx-workaround.patch
(from rev 396159, linux-hardened/trunk/sphinx-workaround.patch)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config
  linux-hardened/repos/extra-x86_64/sphinx-workaround.patch

-+
 PKGBUILD|  412 
 config  |21984 +++---
 sphinx-workaround.patch |   26 
 3 files changed, 11211 insertions(+), 11211 deletions(-)

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


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

2020-09-15 Thread Levente Polyak via arch-commits
Date: Tuesday, September 15, 2020 @ 20:37:05
  Author: anthraxx
Revision: 396159

upgpkg: linux-hardened 5.8.9.a-1

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

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:30:18 UTC (rev 396158)
+++ PKGBUILD2020-09-15 20:37:05 UTC (rev 396159)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.8.8.a
+pkgver=5.8.9.a
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -28,11 +28,11 @@
   '65EEFE022108E2B708CBFCF7F9E712E59AF5F22A'  # Daniel Micay
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('33f61bb3e99a4b8bcc0fdfc7e7d72071795bccba465184665a9ae7bd7f00a976'
+sha256sums=('99d8bc1b82f17d7d79f9af4a94af4c0e3772159e9e6e278761bde8569f93e15f'
 'SKIP'
-'7fa446a0f2a0814ee8684a51dddbc892eedc677b2a17b3eae59c87b22a9aa65a'
+'958c847cb628402af8e67eabea894992b5a523a8fed27e2c4a5ac03462ff21a4'
 'SKIP'
-'9fffec016a87f809d591cd6388fa8eb43fdf7de65f26891cab44a24684a6da5d'
+'568eda7ea744fbba8f39c4c3f036e9799fbdc1fccaa2dd635a2ee7fa596d6145'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-09-15 16:30:18 UTC (rev 396158)
+++ config  2020-09-15 20:37:05 UTC (rev 396159)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.8.8 Kernel Configuration
+# Linux/x86 5.8.9 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 20:07:27
  Author: felixonmars
Revision: 707202

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 20:07:19 UTC (rev 707201)
+++ PKGBUILD2020-09-15 20:07:27 UTC (rev 707202)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.35.2
-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' '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' 'python-black')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('f17b7783d689986703bc6755a7dc30e8bfd4977a128954481067780d14b1b3f4bbfb21751a607a215357b5d300ad4e06ce951b81059ac8638c84005d682e2398')
-
-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 install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 707201, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 20:07:27 UTC (rev 707202)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.35.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' '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' 'python-black')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('d862cba17444b36fa05877419495b5e49e8686980e0203da388e2dc4e528ace928f0bcb244afc8512f97bf466f2e5a2a421a2c873053849af61de71421d5c61a')
+
+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 install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 20:07:19
  Author: felixonmars
Revision: 707201

upgpkg: python-hypothesis 5.35.3-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:49:00 UTC (rev 707200)
+++ PKGBUILD2020-09-15 20:07:19 UTC (rev 707201)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.35.2
+pkgver=5.35.3
 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' 'python-black')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('f17b7783d689986703bc6755a7dc30e8bfd4977a128954481067780d14b1b3f4bbfb21751a607a215357b5d300ad4e06ce951b81059ac8638c84005d682e2398')
+sha512sums=('d862cba17444b36fa05877419495b5e49e8686980e0203da388e2dc4e528ace928f0bcb244afc8512f97bf466f2e5a2a421a2c873053849af61de71421d5c61a')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:49:00
  Author: felixonmars
Revision: 707200

archrelease: copy trunk to community-x86_64

Added:
  dtkwidget/repos/community-x86_64/PKGBUILD
(from rev 707199, dtkwidget/trunk/PKGBUILD)
Deleted:
  dtkwidget/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:48:51 UTC (rev 707199)
+++ PKGBUILD2020-09-15 19:49:00 UTC (rev 707200)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=dtkwidget
-pkgver=5.2.2.12
-pkgrel=1
-pkgdesc='Deepin graphical user interface library'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dtkwidget;
-license=('LGPL3')
-depends=('deepin-qt-dbus-factory' 'dtkcore' 'dtkgui' 'librsvg' 
'qt5-multimedia' 'qt5-svg'
- 'qt5-x11extras' 'startup-notification')
-makedepends=('qt5-tools')
-replaces=('deepin-tool-kit')
-conflicts=('deepin-tool-kit<0.3.4')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
-sha512sums=('f4a1b69a65dddf998871d80f6b646fefe7359294ecdc69d60739e030ab72debc423b5ba240597cde7d531df4d177b3a7d0b0ff6bff1c21f2c29a45a321db8d4f')
-
-build() {
-  cd dtkwidget-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dtkwidget-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: dtkwidget/repos/community-x86_64/PKGBUILD (from rev 707199, 
dtkwidget/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:49:00 UTC (rev 707200)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwidget
+pkgver=5.2.2.13
+pkgrel=1
+pkgdesc='Deepin graphical user interface library'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dtkwidget;
+license=('LGPL3')
+depends=('deepin-qt-dbus-factory' 'dtkcore' 'dtkgui' 'librsvg' 
'qt5-multimedia' 'qt5-svg'
+ 'qt5-x11extras' 'startup-notification')
+makedepends=('qt5-tools')
+replaces=('deepin-tool-kit')
+conflicts=('deepin-tool-kit<0.3.4')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
+sha512sums=('7d41319914154e2939097d81267322d95a30701bd55527eb469e033c18dea9197f7b9a93e0e3d7fb8548ebc4e6a20226cef1079f678350fdba344020f3a192f2')
+
+build() {
+  cd dtkwidget-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwidget-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:48:51
  Author: felixonmars
Revision: 707199

upgpkg: dtkwidget 5.2.2.13-1

Modified:
  dtkwidget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:48:45 UTC (rev 707198)
+++ PKGBUILD2020-09-15 19:48:51 UTC (rev 707199)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=dtkwidget
-pkgver=5.2.2.12
+pkgver=5.2.2.13
 pkgrel=1
 pkgdesc='Deepin graphical user interface library'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 replaces=('deepin-tool-kit')
 conflicts=('deepin-tool-kit<0.3.4')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
-sha512sums=('f4a1b69a65dddf998871d80f6b646fefe7359294ecdc69d60739e030ab72debc423b5ba240597cde7d531df4d177b3a7d0b0ff6bff1c21f2c29a45a321db8d4f')
+sha512sums=('7d41319914154e2939097d81267322d95a30701bd55527eb469e033c18dea9197f7b9a93e0e3d7fb8548ebc4e6a20226cef1079f678350fdba344020f3a192f2')
 
 build() {
   cd dtkwidget-$pkgver


[arch-commits] Commit in golang-github-linuxdeepin-go-dbus-factory/repos/community-any (2 files)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:48:45
  Author: felixonmars
Revision: 707198

archrelease: copy trunk to community-any

Added:
  golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD
(from rev 707197, golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD)
Deleted:
  golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:48:36 UTC (rev 707197)
+++ PKGBUILD2020-09-15 19:48:45 UTC (rev 707198)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=golang-github-linuxdeepin-go-dbus-factory
-pkgver=1.8.0.21
-pkgrel=1
-pkgdesc='GO DBus factory for DDE'
-arch=('any')
-url="https://github.com/linuxdeepin/go-dbus-factory;
-license=('GPL3')
-depends=('golang-deepin-lib')
-makedepends=('go' 'git')
-provides=('deepin-go-dbus-factory')
-conflicts=('deepin-go-dbus-factory')
-replaces=('deepin-go-dbus-factory')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('955b0b6e5faa63afdd7eccfb6a050240df9849e450098e6ab20ec7c3cc20c341e712975996abfac3a04f25e9a7b7a7cf45b3fac1f2710176dae9c46d67ab5c62')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p "$srcdir"/build/src/github.com/linuxdeepin
-  cp -a "$srcdir"/go-dbus-factory-$pkgver 
"$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-
-  go get github.com/godbus/dbus github.com/fsnotify/fsnotify
-}
-
-build() {
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  make bin
-
-  # Suggested by upstream: don't run
-  # ./gen.sh
-}
-
-check() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  go test -v $(go list ./...)
-}
-
-package() {
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  install -dm755 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory
-  cp -a com.* org.* net.* object_manager 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory/
-}

Copied: golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD 
(from rev 707197, golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:48:45 UTC (rev 707198)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=golang-github-linuxdeepin-go-dbus-factory
+pkgver=1.8.0.22
+pkgrel=1
+pkgdesc='GO DBus factory for DDE'
+arch=('any')
+url="https://github.com/linuxdeepin/go-dbus-factory;
+license=('GPL3')
+depends=('golang-deepin-lib')
+makedepends=('go' 'git')
+provides=('deepin-go-dbus-factory')
+conflicts=('deepin-go-dbus-factory')
+replaces=('deepin-go-dbus-factory')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
+sha512sums=('8c9cd4481e7349ab46de93810b965ef0faa29eacb3636b11efc6bd43724e2d304950211486f06d0c9529683cb6ea5ef223d951fa953159bc8ed26945850c3a1d')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p "$srcdir"/build/src/github.com/linuxdeepin
+  cp -a "$srcdir"/go-dbus-factory-$pkgver 
"$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+
+  go get github.com/godbus/dbus github.com/fsnotify/fsnotify
+}
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  make bin
+
+  # Suggested by upstream: don't run
+  # ./gen.sh
+}
+
+check() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  go test -v $(go list ./...)
+}
+
+package() {
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  install -dm755 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory
+  cp -a com.* org.* net.* object_manager 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory/
+}


[arch-commits] Commit in golang-github-linuxdeepin-go-dbus-factory/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:48:36
  Author: felixonmars
Revision: 707197

upgpkg: golang-github-linuxdeepin-go-dbus-factory 1.8.0.22-1

Modified:
  golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:42:20 UTC (rev 707196)
+++ PKGBUILD2020-09-15 19:48:36 UTC (rev 707197)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=golang-github-linuxdeepin-go-dbus-factory
-pkgver=1.8.0.21
+pkgver=1.8.0.22
 pkgrel=1
 pkgdesc='GO DBus factory for DDE'
 arch=('any')
@@ -15,7 +15,7 @@
 conflicts=('deepin-go-dbus-factory')
 replaces=('deepin-go-dbus-factory')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('955b0b6e5faa63afdd7eccfb6a050240df9849e450098e6ab20ec7c3cc20c341e712975996abfac3a04f25e9a7b7a7cf45b3fac1f2710176dae9c46d67ab5c62')
+sha512sums=('8c9cd4481e7349ab46de93810b965ef0faa29eacb3636b11efc6bd43724e2d304950211486f06d0c9529683cb6ea5ef223d951fa953159bc8ed26945850c3a1d')
 
 prepare() {
   export GOPATH="$srcdir/build:/usr/share/gocode"


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:42:20
  Author: felixonmars
Revision: 707196

archrelease: copy trunk to community-x86_64

Added:
  shadowsocks-libev/repos/community-x86_64/PKGBUILD
(from rev 707195, shadowsocks-libev/trunk/PKGBUILD)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-redir@.service
(from rev 707195, shadowsocks-libev/trunk/shadowsocks-libev-redir@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-server@.service
(from rev 707195, shadowsocks-libev/trunk/shadowsocks-libev-server@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-tunnel@.service
(from rev 707195, shadowsocks-libev/trunk/shadowsocks-libev-tunnel@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev.install
(from rev 707195, shadowsocks-libev/trunk/shadowsocks-libev.install)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev@.service
(from rev 707195, shadowsocks-libev/trunk/shadowsocks-libev@.service)
Deleted:
  shadowsocks-libev/repos/community-x86_64/PKGBUILD
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-redir@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-server@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-tunnel@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev.install
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev@.service

---+
 PKGBUILD  |   98 ++--
 shadowsocks-libev-redir@.service  |   28 +-
 shadowsocks-libev-server@.service |   28 +-
 shadowsocks-libev-tunnel@.service |   28 +-
 shadowsocks-libev.install |   20 +++
 shadowsocks-libev@.service|   28 +-
 6 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:42:03 UTC (rev 707195)
+++ PKGBUILD2020-09-15 19:42:20 UTC (rev 707196)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: jiangxq 
-# Contributor: zh8 
-# Contributor: 4679kun 
-
-pkgname=shadowsocks-libev
-pkgver=3.3.4
-pkgrel=1
-pkgdesc='A lightweight secured socks5 proxy for embedded devices and low end 
boxes'
-arch=('x86_64')
-url='https://github.com/shadowsocks/shadowsocks-libev'
-license=('GPL3')
-depends=('libcap' 'mbedtls' 'libsodium' 'libev' 'c-ares' 'pcre' 'libcorkipset' 
'libbloom')
-makedepends=('asciidoc' 'xmlto')
-install=${pkgname}.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/$pkgname/archive/v$pkgver.tar.gz;
-'shadowsocks-libev@.service'
-'shadowsocks-libev-server@.service'
-'shadowsocks-libev-redir@.service'
-'shadowsocks-libev-tunnel@.service')
-
-sha512sums=('4fb9e4a62f86f1504aab71022b5078a1f97b1f14da82c7b456dc9eaed23be990430769f37b7c2855c266be40ec215237bb0a40d254dffac8556ec4719cc9aa6d'
-
'434a05a265bdd895bfaadfb3d46a38782779955c2637bc923a6dc708f4bf780af898a6c90884a453c4920c7ee41e38855cfbf1a2fc03fb663c4ef262a24c62e6'
-
'fd1742bab0e8b66ccc3dabdd2f0e78f8b0a7b478b22e66826ca8394644e81518fcb51cfe20019fe104a63269312db7db24cd3c7b570a92091c1252913761e201'
-
'1edbaeecbdc3b94e9ffd6559569a096d5204c0086b59294c8ab04bd9a40dafd5f81cccf7590676920913d249117aa3bd4c5ea18be41af8b8011f4888ddb62f67'
-
'370db87042d64e74226bf5514e104647ea94daf280407e83ee5efe21ff4007428fd4bcdc06fb09264e7da8037b79030c3f79fd7d69e67413ac4aa439c4dc01bb')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  sed -i 's|AC_CONFIG_FILES(\[libbloom/Makefile libcork/Makefile 
libipset/Makefile\])||' configure.ac
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-shared --enable-system-shared-lib
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-  install -Dm644 "$srcdir/shadowsocks-libev@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks-libev@.service"
-  install -Dm644 "$srcdir/shadowsocks-libev-server@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks-libev-server@.service"
-  install -Dm644 "$srcdir/shadowsocks-libev-redir@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks-libev-redir@.service"
-  install -Dm644 "$srcdir/shadowsocks-libev-tunnel@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks-libev-tunnel@.service"
-}

Copied: shadowsocks-libev/repos/community-x86_64/PKGBUILD (from rev 707195, 
shadowsocks-libev/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:42:20 UTC (rev 707196)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: jiangxq 
+# Contributor: zh8 
+# Contributor: 4679kun 
+
+pkgname=shadowsocks-libev
+pkgver=3.3.5
+pkgrel=1
+pkgdesc='A lightweight secured socks5 proxy for embedded devices and low end 
boxes'

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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:41:40
  Author: felixonmars
Revision: 707194

archrelease: copy trunk to community-x86_64

Added:
  python-pyrsistent/repos/community-x86_64/LICENCE.mit
(from rev 707193, python-pyrsistent/trunk/LICENCE.mit)
  python-pyrsistent/repos/community-x86_64/PKGBUILD
(from rev 707193, python-pyrsistent/trunk/PKGBUILD)
Deleted:
  python-pyrsistent/repos/community-x86_64/LICENCE.mit
  python-pyrsistent/repos/community-x86_64/PKGBUILD

-+
 LICENCE.mit |   44 +--
 PKGBUILD|   72 +-
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: LICENCE.mit
===
--- LICENCE.mit 2020-09-15 19:41:30 UTC (rev 707193)
+++ LICENCE.mit 2020-09-15 19:41:40 UTC (rev 707194)
@@ -1,22 +0,0 @@
-Copyright (c) 2015 Tobias Gustafsson
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Copied: python-pyrsistent/repos/community-x86_64/LICENCE.mit (from rev 707193, 
python-pyrsistent/trunk/LICENCE.mit)
===
--- LICENCE.mit (rev 0)
+++ LICENCE.mit 2020-09-15 19:41:40 UTC (rev 707194)
@@ -0,0 +1,22 @@
+Copyright (c) 2015 Tobias Gustafsson
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:41:30 UTC (rev 707193)
+++ PKGBUILD2020-09-15 19:41:40 UTC (rev 707194)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pyrsistent
-pkgver=0.17.2
-pkgrel=1
-pkgdesc="Persistent/Functional/Immutable data structures"
-arch=('x86_64')
-license=('MIT')
-url="https://github.com/tobgu/pyrsistent;
-depends=('python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-hypothesis')
-source=("https://pypi.io/packages/source/p/pyrsistent/pyrsistent-$pkgver.tar.gz;
-LICENCE.mit)
-sha512sums=('58b78457481b188b65bfbe29da1318128795732b8c98ff89b1bdec1741d821807ae12ae79115b2c4881f328dd8853e7ae48b0406e0e7fc69fca3c41fcd6f'
-
'036bd5cc2a62b004576ecc50a84dc7d187d8108f52cb886f7e32bed324327af2dc132100e1c8f1dd2ce35b774f74898020f04a315e5137319deda18a449e791a')
-
-prepare() {
-  sed -i 's/<5//g' pyrsistent-$pkgver/setup.py
-}
-
-build() {
-  cd pyrsistent-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pyrsistent-$pkgver
-  python -m pytest
-}
-
-package() {
-  cd pyrsistent-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 ../LICENCE.mit 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE.mit
-}

Copied: python-pyrsistent/repos/community-x86_64/PKGBUILD (from rev 707193, 
python-pyrsistent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:41:40 UTC 

[arch-commits] Commit in shadowsocks-libev/trunk (5 files)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:42:03
  Author: felixonmars
Revision: 707195

upgpkg: shadowsocks-libev 3.3.5-1

Modified:
  shadowsocks-libev/trunk/PKGBUILD
  shadowsocks-libev/trunk/shadowsocks-libev-redir@.service
  shadowsocks-libev/trunk/shadowsocks-libev-server@.service
  shadowsocks-libev/trunk/shadowsocks-libev-tunnel@.service
  shadowsocks-libev/trunk/shadowsocks-libev@.service

---+
 PKGBUILD  |   12 ++--
 shadowsocks-libev-redir@.service  |2 +-
 shadowsocks-libev-server@.service |2 +-
 shadowsocks-libev-tunnel@.service |2 +-
 shadowsocks-libev@.service|2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:41:40 UTC (rev 707194)
+++ PKGBUILD2020-09-15 19:42:03 UTC (rev 707195)
@@ -4,7 +4,7 @@
 # Contributor: 4679kun 
 
 pkgname=shadowsocks-libev
-pkgver=3.3.4
+pkgver=3.3.5
 pkgrel=1
 pkgdesc='A lightweight secured socks5 proxy for embedded devices and low end 
boxes'
 arch=('x86_64')
@@ -19,11 +19,11 @@
 'shadowsocks-libev-redir@.service'
 'shadowsocks-libev-tunnel@.service')
 
-sha512sums=('4fb9e4a62f86f1504aab71022b5078a1f97b1f14da82c7b456dc9eaed23be990430769f37b7c2855c266be40ec215237bb0a40d254dffac8556ec4719cc9aa6d'
-
'434a05a265bdd895bfaadfb3d46a38782779955c2637bc923a6dc708f4bf780af898a6c90884a453c4920c7ee41e38855cfbf1a2fc03fb663c4ef262a24c62e6'
-
'fd1742bab0e8b66ccc3dabdd2f0e78f8b0a7b478b22e66826ca8394644e81518fcb51cfe20019fe104a63269312db7db24cd3c7b570a92091c1252913761e201'
-
'1edbaeecbdc3b94e9ffd6559569a096d5204c0086b59294c8ab04bd9a40dafd5f81cccf7590676920913d249117aa3bd4c5ea18be41af8b8011f4888ddb62f67'
-
'370db87042d64e74226bf5514e104647ea94daf280407e83ee5efe21ff4007428fd4bcdc06fb09264e7da8037b79030c3f79fd7d69e67413ac4aa439c4dc01bb')
+sha512sums=('c0cc869b4b7661ebd348bd5559c6a17c44b66a5f42374d97023adcfb525d934da3ed96245ff792ebc74870d30dd8f71fadcd89c79b2cd8a98d551ff7592508d0'
+
'eac17ca83d9f754a82a8fbb1c98bfaf0aa0ea3017cb834bca354b77948decd23c58211aef9824498a28d2dd9d227fb75ae14fe63e59090e83a37fd0ca4d1dc73'
+
'462c79ef946bd1e7d575e816d7aff02449c38f776e9c407f22ed6e68bc42087cff7c53cc963ad120601ef8901f10c6981808dad30c8026ab06829a35a2b854c0'
+
'90cd2e75759399aebe0a6c96a7d40fb8328b80d10e210ce1ef0f730ba4e48b1d19f509ed21ef28af1dd10217fa4f2389b6cdabd0fb7e9273d5102cb06e65a369'
+
'0a657839825902ba305bdceada25534f32350cc8fd914dd49e0e2bc81e81d5ef1a01f5f09a96f24a21b1e1008ac2960c1713431e4f5127d2f4e8eaca51d44527')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver

Modified: shadowsocks-libev-redir@.service
===
--- shadowsocks-libev-redir@.service2020-09-15 19:41:40 UTC (rev 707194)
+++ shadowsocks-libev-redir@.service2020-09-15 19:42:03 UTC (rev 707195)
@@ -4,7 +4,7 @@
 Wants=network-online.target
 
 [Service]
-Type=simple
+Type=exec
 User=nobody
 CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
 ExecStart=/usr/bin/ss-redir -c /etc/shadowsocks/%i.json

Modified: shadowsocks-libev-server@.service
===
--- shadowsocks-libev-server@.service   2020-09-15 19:41:40 UTC (rev 707194)
+++ shadowsocks-libev-server@.service   2020-09-15 19:42:03 UTC (rev 707195)
@@ -4,7 +4,7 @@
 Wants=network-online.target
 
 [Service]
-Type=simple
+Type=exec
 User=nobody
 CapabilityBoundingSet=CAP_NET_BIND_SERVICE
 ExecStart=/usr/bin/ss-server -c /etc/shadowsocks/%i.json

Modified: shadowsocks-libev-tunnel@.service
===
--- shadowsocks-libev-tunnel@.service   2020-09-15 19:41:40 UTC (rev 707194)
+++ shadowsocks-libev-tunnel@.service   2020-09-15 19:42:03 UTC (rev 707195)
@@ -4,7 +4,7 @@
 Wants=network-online.target
 
 [Service]
-Type=simple
+Type=exec
 User=nobody
 CapabilityBoundingSet=CAP_NET_BIND_SERVICE
 ExecStart=/usr/bin/ss-tunnel -c /etc/shadowsocks/%i.json

Modified: shadowsocks-libev@.service
===
--- shadowsocks-libev@.service  2020-09-15 19:41:40 UTC (rev 707194)
+++ shadowsocks-libev@.service  2020-09-15 19:42:03 UTC (rev 707195)
@@ -4,7 +4,7 @@
 Wants=network-online.target
 
 [Service]
-Type=simple
+Type=exec
 User=nobody
 CapabilityBoundingSet=CAP_NET_BIND_SERVICE
 ExecStart=/usr/bin/ss-local -c /etc/shadowsocks/%i.json


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:41:30
  Author: felixonmars
Revision: 707193

upgpkg: python-pyrsistent 0.17.3-1

Modified:
  python-pyrsistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:41:11 UTC (rev 707192)
+++ PKGBUILD2020-09-15 19:41:30 UTC (rev 707193)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pyrsistent
-pkgver=0.17.2
+pkgver=0.17.3
 pkgrel=1
 pkgdesc="Persistent/Functional/Immutable data structures"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest' 'python-hypothesis')
 
source=("https://pypi.io/packages/source/p/pyrsistent/pyrsistent-$pkgver.tar.gz;
 LICENCE.mit)
-sha512sums=('58b78457481b188b65bfbe29da1318128795732b8c98ff89b1bdec1741d821807ae12ae79115b2c4881f328dd8853e7ae48b0406e0e7fc69fca3c41fcd6f'
+sha512sums=('2d18e1d4cfe9a0a576fd363f466ba920094af0b1cbbb49aec11b32df6c23e59f6552235a496838dab00928cc7f6dad2a4a8aaa0b52cb6a38eba6faedd12846c8'
 
'036bd5cc2a62b004576ecc50a84dc7d187d8108f52cb886f7e32bed324327af2dc132100e1c8f1dd2ce35b774f74898020f04a315e5137319deda18a449e791a')
 
 prepare() {


[arch-commits] Commit in perl-test-simple/repos/community-any (PKGBUILD PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:40:59
  Author: felixonmars
Revision: 707190

archrelease: copy trunk to community-any

Added:
  perl-test-simple/repos/community-any/PKGBUILD
(from rev 707189, perl-test-simple/trunk/PKGBUILD)
Deleted:
  perl-test-simple/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:40:50 UTC (rev 707189)
+++ PKGBUILD2020-09-15 19:40:59 UTC (rev 707190)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-test-simple
-pkgver=1.302180
-pkgrel=1
-pkgdesc="Basic utilities for writing tests"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Test-Simple;
-depends=('perl')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
-sha512sums=('969c58dac4ee74eda8872f415fa376a2a33385d30b869da4397b93c96152d80f5da79b75185f1f092f46bdafff433cd2161879f9c7821ebf01763b7903a5c1d4')
-
-build() {
-  cd Test-Simple-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test-Simple-$pkgver
-  make test
-}
-
-package() {
-  cd Test-Simple-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-test-simple/repos/community-any/PKGBUILD (from rev 707189, 
perl-test-simple/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:40:59 UTC (rev 707190)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-test-simple
+pkgver=1.302181
+pkgrel=1
+pkgdesc="Basic utilities for writing tests"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Test-Simple;
+depends=('perl')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
+sha512sums=('a13e5bbfce4e70493e8071c32bec3089e9182d82838579d7cc5c068e1b1db0707371ff3fae3191fa5c0dde11ab4851b17ed98fbc4d66c838910895669eabfffd')
+
+build() {
+  cd Test-Simple-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test-Simple-$pkgver
+  make test
+}
+
+package() {
+  cd Test-Simple-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in deepin-qt-dbus-factory/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:40:23
  Author: felixonmars
Revision: 707187

upgpkg: deepin-qt-dbus-factory 5.3.0.15-1

Modified:
  deepin-qt-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:38:34 UTC (rev 707186)
+++ PKGBUILD2020-09-15 19:40:23 UTC (rev 707187)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-qt-dbus-factory
-pkgver=5.3.0.14
-pkgrel=2
+pkgver=5.3.0.15
+pkgrel=1
 pkgdesc='A repository stores auto-generated Qt5 dbus code (libdframeworkdbus)'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-qt-dbus-factory;
@@ -12,7 +12,7 @@
 depends=('qt5-base')
 makedepends=('dtkcore' 'python')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('1a547f07664a048c1f76aa5d63c45c8e0303fb74881c0994076f37e74ab369833739167606f36231132bf14720b28bd8e5a9f9ab22e8d7eb928278b2fd44a125')
+sha512sums=('c8c04717af9272c35cff44a8a7e16f5a6cd7146acc951bef5dcde3f9fdfc47dd2e05e0182dad8e97a6989a080f1394c0ae1ad531b7c6e288e965b63c04d46a1d')
 
 build() {
   cd dde-qt-dbus-factory-$pkgver


[arch-commits] Commit in deepin-qt-dbus-factory/repos/community-x86_64 (2 files)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:40:32
  Author: felixonmars
Revision: 707188

archrelease: copy trunk to community-x86_64

Added:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD
(from rev 707187, deepin-qt-dbus-factory/trunk/PKGBUILD)
Deleted:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:40:23 UTC (rev 707187)
+++ PKGBUILD2020-09-15 19:40:32 UTC (rev 707188)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-qt-dbus-factory
-pkgver=5.3.0.14
-pkgrel=2
-pkgdesc='A repository stores auto-generated Qt5 dbus code (libdframeworkdbus)'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-qt-dbus-factory;
-license=('GPL3')
-depends=('qt5-base')
-makedepends=('dtkcore' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('1a547f07664a048c1f76aa5d63c45c8e0303fb74881c0994076f37e74ab369833739167606f36231132bf14720b28bd8e5a9f9ab22e8d7eb928278b2fd44a125')
-
-build() {
-  cd dde-qt-dbus-factory-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-qt-dbus-factory-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD (from rev 
707187, deepin-qt-dbus-factory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:40:32 UTC (rev 707188)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-qt-dbus-factory
+pkgver=5.3.0.15
+pkgrel=1
+pkgdesc='A repository stores auto-generated Qt5 dbus code (libdframeworkdbus)'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-qt-dbus-factory;
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('dtkcore' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz;)
+sha512sums=('c8c04717af9272c35cff44a8a7e16f5a6cd7146acc951bef5dcde3f9fdfc47dd2e05e0182dad8e97a6989a080f1394c0ae1ad531b7c6e288e965b63c04d46a1d')
+
+build() {
+  cd dde-qt-dbus-factory-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-qt-dbus-factory-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


[arch-commits] Commit in perl-test-mockmodule/repos/community-any (PKGBUILD PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:41:11
  Author: felixonmars
Revision: 707192

archrelease: copy trunk to community-any

Added:
  perl-test-mockmodule/repos/community-any/PKGBUILD
(from rev 707191, perl-test-mockmodule/trunk/PKGBUILD)
Deleted:
  perl-test-mockmodule/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:41:03 UTC (rev 707191)
+++ PKGBUILD2020-09-15 19:41:11 UTC (rev 707192)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-test-mockmodule
-pkgver=0.173.0
-pkgrel=3
-pkgdesc="Override subroutines in a module for unit testing"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl-super')
-makedepends=('perl-module-build')
-checkdepends=('perl-test-pod' 'perl-test-pod-coverage' 'perl-test-warnings')
-url='https://search.cpan.org/dist/Test-MockModule'
-source=("https://search.cpan.org/CPAN/authors/id/G/GF/GFRANKS/Test-MockModule-v$pkgver.tar.gz;)
-sha512sums=('45aa0a224f406f675ce17d8a62c40cdacf8aea88bb826a0404017f464346fb9177a720a8687449a03bc5593d4df52c45fc2c43a5c70d80aabede7d41e6f5a02a')
-
-build() {
-  cd "$srcdir/Test-MockModule-v$pkgver"
-  perl Build.PL installdirs=vendor
-  perl Build
-}
-
-check() {
-  cd "$srcdir/Test-MockModule-v$pkgver"
-  perl Build test
-}
-
-package() {
-  cd "$srcdir/Test-MockModule-v$pkgver"
-  perl Build install destdir="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-test-mockmodule/repos/community-any/PKGBUILD (from rev 707191, 
perl-test-mockmodule/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:41:11 UTC (rev 707192)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-test-mockmodule
+pkgver=0.174.0
+pkgrel=1
+pkgdesc="Override subroutines in a module for unit testing"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-super')
+makedepends=('perl-module-build')
+checkdepends=('perl-test-pod' 'perl-test-pod-coverage' 'perl-test-warnings')
+url='https://search.cpan.org/dist/Test-MockModule'
+source=("https://search.cpan.org/CPAN/authors/id/G/GF/GFRANKS/Test-MockModule-v$pkgver.tar.gz;)
+sha512sums=('dacff732b966d545d34350935518f359efe12ebe8774f1cd1eb3ddbe6075cd5e11df938e5224d26df8b6b4463c163ec3f5b8129e1020c43cd28dc3499d33')
+
+build() {
+  cd "$srcdir/Test-MockModule-v$pkgver"
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd "$srcdir/Test-MockModule-v$pkgver"
+  perl Build test
+}
+
+package() {
+  cd "$srcdir/Test-MockModule-v$pkgver"
+  perl Build install destdir="$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-test-mockmodule/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:41:03
  Author: felixonmars
Revision: 707191

upgpkg: perl-test-mockmodule 0.174.0-1

Modified:
  perl-test-mockmodule/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:40:59 UTC (rev 707190)
+++ PKGBUILD2020-09-15 19:41:03 UTC (rev 707191)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-test-mockmodule
-pkgver=0.173.0
-pkgrel=3
+pkgver=0.174.0
+pkgrel=1
 pkgdesc="Override subroutines in a module for unit testing"
 arch=('any')
 license=('PerlArtistic' 'GPL')
@@ -12,7 +12,7 @@
 checkdepends=('perl-test-pod' 'perl-test-pod-coverage' 'perl-test-warnings')
 url='https://search.cpan.org/dist/Test-MockModule'
 
source=("https://search.cpan.org/CPAN/authors/id/G/GF/GFRANKS/Test-MockModule-v$pkgver.tar.gz;)
-sha512sums=('45aa0a224f406f675ce17d8a62c40cdacf8aea88bb826a0404017f464346fb9177a720a8687449a03bc5593d4df52c45fc2c43a5c70d80aabede7d41e6f5a02a')
+sha512sums=('dacff732b966d545d34350935518f359efe12ebe8774f1cd1eb3ddbe6075cd5e11df938e5224d26df8b6b4463c163ec3f5b8129e1020c43cd28dc3499d33')
 
 build() {
   cd "$srcdir/Test-MockModule-v$pkgver"


[arch-commits] Commit in perl-test-simple/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:40:50
  Author: felixonmars
Revision: 707189

upgpkg: perl-test-simple 1.302181-1

Modified:
  perl-test-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:40:32 UTC (rev 707188)
+++ PKGBUILD2020-09-15 19:40:50 UTC (rev 707189)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-test-simple
-pkgver=1.302180
+pkgver=1.302181
 pkgrel=1
 pkgdesc="Basic utilities for writing tests"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
-sha512sums=('969c58dac4ee74eda8872f415fa376a2a33385d30b869da4397b93c96152d80f5da79b75185f1f092f46bdafff433cd2161879f9c7821ebf01763b7903a5c1d4')
+sha512sums=('a13e5bbfce4e70493e8071c32bec3089e9182d82838579d7cc5c068e1b1db0707371ff3fae3191fa5c0dde11ab4851b17ed98fbc4d66c838910895669eabfffd')
 
 build() {
   cd Test-Simple-$pkgver


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:38:24
  Author: felixonmars
Revision: 707185

upgpkg: python-pytest-django 3.10.0-1

Modified:
  python-pytest-django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:31:22 UTC (rev 707184)
+++ PKGBUILD2020-09-15 19:38:24 UTC (rev 707185)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pytest-django
-pkgver=3.9.0
+pkgver=3.10.0
 pkgrel=1
 pkgdesc="A Django plugin for py.test"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools-scm')
 checkdepends=('python-django' 'python-pytest-xdist')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/v$pkgver.tar.gz;)
-sha512sums=('6b33fdaac71504620fdeae53d2d4ada75494ece9c623c2e1933421cb12134da03879c5c74d7b22569a8f7c4837d699748018876c1943a4a8228fcfe123bc2a6a')
+sha512sums=('7f66fa9287fb80082018613ec3b15a0da3f7a13075e85f0a2eff9e13358c993e56245c441d952d13f232bf7e49a05c799b4affbb844e90abaac736d86bb0a6c9')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:38:34
  Author: felixonmars
Revision: 707186

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:38:24 UTC (rev 707185)
+++ PKGBUILD2020-09-15 19:38:34 UTC (rev 707186)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-django
-pkgver=3.9.0
-pkgrel=1
-pkgdesc="A Django plugin for py.test"
-arch=('any')
-license=('BSD')
-url="https://github.com/pytest-dev/pytest-django;
-depends=('python-pytest')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-django' 'python-pytest-xdist')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/v$pkgver.tar.gz;)
-sha512sums=('6b33fdaac71504620fdeae53d2d4ada75494ece9c623c2e1933421cb12134da03879c5c74d7b22569a8f7c4837d699748018876c1943a4a8228fcfe123bc2a6a')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH:$PWD" \
-  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
-py.test tests
-}
-
-package() {
-  cd pytest-django-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

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


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:31:22
  Author: felixonmars
Revision: 707184

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-uri-encode/repos/community-staging-x86_64/
  haskell-uri-encode/repos/community-staging-x86_64/PKGBUILD
(from rev 707183, haskell-uri-encode/trunk/PKGBUILD)

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

Copied: haskell-uri-encode/repos/community-staging-x86_64/PKGBUILD (from rev 
707183, haskell-uri-encode/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 19:31:22 UTC (rev 707184)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uri-encode
+pkgname=haskell-uri-encode
+pkgver=1.5.0.6
+pkgrel=26
+pkgdesc="Unicode aware uri-encoding"
+url="https://github.com/silkapp/uri-encode;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network-uri' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('35bebd95960910fb6790c6de396ac861b396eba9ced90f9167e6a2d7bac43ccb8fb3baa5245b54475ce679ddbc5f7af6da665852ea65e6ea89dbf6e014f224db')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-tools -fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:31:13
  Author: felixonmars
Revision: 707183

upgpkg: haskell-uri-encode 1.5.0.6-26: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-uri-encode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:30:49 UTC (rev 707182)
+++ PKGBUILD2020-09-15 19:31:13 UTC (rev 707183)
@@ -4,7 +4,7 @@
 _hkgname=uri-encode
 pkgname=haskell-uri-encode
 pkgver=1.5.0.6
-pkgrel=25
+pkgrel=26
 pkgdesc="Unicode aware uri-encoding"
 url="https://github.com/silkapp/uri-encode;
 license=("BSD")


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:30:49
  Author: felixonmars
Revision: 707182

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
707181, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 19:30:49 UTC (rev 707182)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.12.0.2
+pkgrel=78
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath;
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network-uri' 'haskell-pandoc-types'
+ 'haskell-syb' 'haskell-xml')
+makedepends=('ghc' 'haskell-temporary' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d5b3418492495f59b493bc418e68f4e66f7d2b4eb1293b540b1eb00312a7cded7eb4dba9b178224d311a1999fefac49b5cbb5caa50a85296292cb35d5806dfc6')
+
+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 \
+-fnetwork-uri -f-executable
+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-texmath/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:30:41
  Author: felixonmars
Revision: 707181

upgpkg: haskell-texmath 0.12.0.2-78: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:29:02 UTC (rev 707180)
+++ PKGBUILD2020-09-15 19:30:41 UTC (rev 707181)
@@ -4,7 +4,7 @@
 _hkgname=texmath
 pkgname=haskell-texmath
 pkgver=0.12.0.2
-pkgrel=77
+pkgrel=78
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath;
 license=("GPL2")


[arch-commits] Commit in haskell-snap-server/repos/community-staging-x86_64 (2 files)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:29:02
  Author: felixonmars
Revision: 707180

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 707179, haskell-snap-server/trunk/PKGBUILD)
Deleted:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 19:28:52 UTC (rev 707179)
+++ PKGBUILD2020-09-15 19:29:02 UTC (rev 707180)
@@ -1,61 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=snap-server
-pkgname=haskell-snap-server
-pkgver=1.1.1.2
-pkgrel=110
-pkgdesc="A web server for the Snap Framework"
-url="https://github.com/snapframework/snap-server;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
- 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
- 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
- 'haskell-vector')
-makedepends=('ghc')
-checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
-  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
-  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
-  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('a11bb92ce8774269704ce8c045bddf4aad15816cfb447453e8010bfce7aff2a08b38d3c99a400ab3882cb9e0b2f0b1f9af69adc56c1b28df53dc3fdd44042e30')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i -e '/bytestring-builder/d;s/< *1.2/<2/' $_hkgname.cabal
-echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---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
-}

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
707179, haskell-snap-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 19:29:02 UTC (rev 707180)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.2
+pkgrel=111
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a11bb92ce8774269704ce8c045bddf4aad15816cfb447453e8010bfce7aff2a08b38d3c99a400ab3882cb9e0b2f0b1f9af69adc56c1b28df53dc3fdd44042e30')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d;s/< *1.2/<2/' $_hkgname.cabal
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+

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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:28:52
  Author: felixonmars
Revision: 707179

upgpkg: haskell-snap-server 1.1.1.2-111: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:27:08 UTC (rev 707178)
+++ PKGBUILD2020-09-15 19:28:52 UTC (rev 707179)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.2
-pkgrel=110
+pkgrel=111
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('BSD')


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:27:08
  Author: felixonmars
Revision: 707178

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-streams/repos/community-staging-x86_64/
  haskell-http-streams/repos/community-staging-x86_64/PKGBUILD
(from rev 707177, haskell-http-streams/trunk/PKGBUILD)

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
707177, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 19:27:08 UTC (rev 707178)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.7.2
+pkgrel=55
+pkgdesc="An HTTP client using io-streams"
+url="https://github.com/afcowie/http-streams;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-io-streams' 'haskell-hsopenssl'
+ 'haskell-openssl-streams' 'haskell-unordered-containers' 
'haskell-aeson'
+ 'haskell-http-common' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-aeson-pretty' 'haskell-hspec'
+ 'haskell-hspec-expectations' 'haskell-snap-core' 
'haskell-snap-server'
+ 'haskell-system-fileio' 'haskell-system-filepath')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('1028e7a102fc189ddd20d353492306d506f24f0408a234e0ec2b01c11737bc9ffec76a5609e18e355ef838663ec412ce3b358d8223deea7dd4c35ada5223f3ea')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:26:59
  Author: felixonmars
Revision: 707177

upgpkg: haskell-http-streams 0.8.7.2-55: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 19:25:45 UTC (rev 707176)
+++ PKGBUILD2020-09-15 19:26:59 UTC (rev 707177)
@@ -3,7 +3,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.7.2
-pkgrel=54
+pkgrel=55
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams;
 license=('BSD')


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:25:45
  Author: felixonmars
Revision: 707176

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 707175, haskell-snap-server/trunk/PKGBUILD)

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

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
707175, haskell-snap-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 19:25:45 UTC (rev 707176)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.2
+pkgrel=110
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a11bb92ce8774269704ce8c045bddf4aad15816cfb447453e8010bfce7aff2a08b38d3c99a400ab3882cb9e0b2f0b1f9af69adc56c1b28df53dc3fdd44042e30')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d;s/< *1.2/<2/' $_hkgname.cabal
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--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-snap-server/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 19:25:35
  Author: felixonmars
Revision: 707175

upgpkg: haskell-snap-server 1.1.1.2-110: rebuild pass 1, specified --nocheck

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 18:50:24 UTC (rev 707174)
+++ PKGBUILD2020-09-15 19:25:35 UTC (rev 707175)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.2
-pkgrel=109
+pkgrel=110
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('BSD')


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:50:24
  Author: dvzrv
Revision: 707174

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 18:50:09 UTC (rev 707173)
+++ PKGBUILD2020-09-15 18:50:24 UTC (rev 707174)
@@ -1,59 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-haystack
-pkgname=python-django-haystack
-pkgver=2.8.1.r109.g7773b7f9
-pkgrel=1
-pkgdesc="Modular search for Django"
-arch=('any')
-url="https://github.com/django-haystack/django-haystack;
-license=('BSD')
-depends=('python-django' 'python-six')
-makedepends=('git' 'python-setuptools_scm')
-checkdepends=('gdal' 'python-coverage' 'python-dateutil' 'python-elasticsearch'
-'python-geopy' 'python-mock' 'python-nose' 'python-pysolr' 'python-requests'
-'python-pytest' 'python-whoosh')
-optdepends=('python-elasticsearch: interface with an elasticsearch instance as 
search backend'
-'python-pysolr: interface with a solr instance as search backend'
-'python-whoosh: use whoosh as search backend'
-'python-xapian-haystack: use python-xapian as search backend')
-# everything's broken:
-# https://github.com/django-haystack/django-haystack/issues/1673
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-source=("${_name}-${pkgver}::git+https://github.com/django-haystack/django-haystack#commit=7773b7f95599701d391983df6bacbe394033c0a6;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname-$pkgver"
-  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  sed -e 's/==/>=/g' -i setup.py
-  # remove test, which is not working
-  rm -rv test_haystack/test_management_commands.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-haystack/repos/community-any/PKGBUILD (from rev 707173, 
python-django-haystack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 18:50:24 UTC (rev 707174)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+
+_name=django-haystack
+pkgname=python-django-haystack
+pkgver=3.0
+pkgrel=1
+pkgdesc="Modular search for Django"
+arch=('any')
+url="https://github.com/django-haystack/django-haystack;
+license=('BSD')
+depends=('python-django' 'python-six')
+makedepends=('git' 'python-setuptools_scm')
+checkdepends=('gdal' 'python-coverage' 'python-dateutil' 'python-elasticsearch'
+'python-geopy' 'python-mock' 'python-nose' 'python-pysolr' 'python-requests'
+'python-pytest' 'python-whoosh')
+optdepends=('python-elasticsearch: interface with an elasticsearch instance as 
search backend'
+'python-pysolr: interface with a solr instance as search backend'
+'python-whoosh: use whoosh as search backend'
+'python-xapian-haystack: use python-xapian as search backend')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('466ac18bbb6d6add1482d9debdffd195a2049c6c287cc4620e4db2ce4a702c97ca8ffb3ce048dc6c278dc50be701daab4f32b05a71c94ac67645890afb9f49bf')
+b2sums=('0766711b127dfa1515583998058f588bea1619a792d6eef353da569a212b94c36683c0a743bdabee563c473f19f3197800bd585faf0b4eb39663b5ffbac6d6b8')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # remove useless version pinning
+  sed -e 's/==/>=/g' -i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:50:09
  Author: dvzrv
Revision: 707173

upgpkg: python-django-haystack 3.0-1: Upgrade to 3.0.

Switch to pypi.org source tarball for source.
Minor cleanups.

Modified:
  python-django-haystack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 18:32:07 UTC (rev 707172)
+++ PKGBUILD2020-09-15 18:50:09 UTC (rev 707173)
@@ -2,7 +2,7 @@
 
 _name=django-haystack
 pkgname=python-django-haystack
-pkgver=2.8.1.r109.g7773b7f9
+pkgver=3.0
 pkgrel=1
 pkgdesc="Modular search for Django"
 arch=('any')
@@ -17,23 +17,15 @@
 'python-pysolr: interface with a solr instance as search backend'
 'python-whoosh: use whoosh as search backend'
 'python-xapian-haystack: use python-xapian as search backend')
-# everything's broken:
-# https://github.com/django-haystack/django-haystack/issues/1673
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-source=("${_name}-${pkgver}::git+https://github.com/django-haystack/django-haystack#commit=7773b7f95599701d391983df6bacbe394033c0a6;)
-sha512sums=('SKIP')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('466ac18bbb6d6add1482d9debdffd195a2049c6c287cc4620e4db2ce4a702c97ca8ffb3ce048dc6c278dc50be701daab4f32b05a71c94ac67645890afb9f49bf')
+b2sums=('0766711b127dfa1515583998058f588bea1619a792d6eef353da569a212b94c36683c0a743bdabee563c473f19f3197800bd585faf0b4eb39663b5ffbac6d6b8')
 
-pkgver() {
-  cd "$pkgname-$pkgver"
-  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
   cd "$pkgname-$pkgver"
+  # remove useless version pinning
   sed -e 's/==/>=/g' -i setup.py
-  # remove test, which is not working
-  rm -rv test_haystack/test_management_commands.py
 }
 
 build() {
@@ -50,9 +42,8 @@
 package() {
   cd "$pkgname-$pkgver"
   python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
+  --optimize=1 \
+  --root="${pkgdir}"
   install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:31:55
  Author: dvzrv
Revision: 707171

upgpkg: radicale 3.0.6-1: Upgrade to 3.0.6.

Modified:
  radicale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 18:21:57 UTC (rev 707170)
+++ PKGBUILD2020-09-15 18:31:55 UTC (rev 707171)
@@ -5,7 +5,7 @@
 
 pkgname=radicale
 _name=Radicale
-pkgver=3.0.5
+pkgver=3.0.6
 pkgrel=1
 pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
 arch=('any')
@@ -22,11 +22,11 @@
 "${pkgname}-sysusers.conf"
 "${pkgname}-tmpfiles.conf"
 "${pkgname}.service")
-sha512sums=('a4d1cea271e167bea70ca40bf51062e42073802ad89abf92c34ea15546a3878e8a22db8a7508ab271a772237e202eb13386daaf27af9b87e35a831b0d065c9a4'
+sha512sums=('e9741547395fae8886ad84b6807422ebb196f5293d484f5f6136498058576cff697e28c117216f151d56494af83593347ceee40a6efa21272b803d0f301a396d'
 
'56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
 
'9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
 
'6f411daf18fbeeb7cc8626652f4b87ac6ec5e4ec1212821c426de711c907be41ab995d5b35be4ff0d663edb1028f99d6c07a53158acf519e7560e230c022c986')
-b2sums=('d1123d643d5e774081b281cdada8904f11cdf4eb566f7afd452be646554ebb731de9a69c41e1fce4a53ac45e31003766fb7ef146e5c1d3ff52bd5bb2c7a80cd8'
+b2sums=('fa4b70c9920d518df6c939395eca857c237a75218b90ada45564f2d84266d65df12898e4efbb52905829948061e10e72b5442943fd5061a28447330ae8d491e8'
 
'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
 
'41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
 
'5ae0e87d4235a864ca482a6701e0631cdaccc3dceef71237d5bd708be08c3b7e1890793d01f8c51eaa108a097cfefbb31abb71cf69b195c0f50f95720965391f')
@@ -49,8 +49,8 @@
   cd "${pkgname}-${pkgver}"
   mkdir -vp testdir
   python setup.py install --skip-build \
---optimize=1 \
---root="testdir"
+  --optimize=1 \
+  --root="testdir"
   export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
   pytest -v
 }


[arch-commits] Commit in radicale/repos/community-any (10 files)

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:32:07
  Author: dvzrv
Revision: 707172

archrelease: copy trunk to community-any

Added:
  radicale/repos/community-any/PKGBUILD
(from rev 707171, radicale/trunk/PKGBUILD)
  radicale/repos/community-any/radicale-sysusers.conf
(from rev 707171, radicale/trunk/radicale-sysusers.conf)
  radicale/repos/community-any/radicale-tmpfiles.conf
(from rev 707171, radicale/trunk/radicale-tmpfiles.conf)
  radicale/repos/community-any/radicale.install
(from rev 707171, radicale/trunk/radicale.install)
  radicale/repos/community-any/radicale.service
(from rev 707171, radicale/trunk/radicale.service)
Deleted:
  radicale/repos/community-any/PKGBUILD
  radicale/repos/community-any/radicale-sysusers.conf
  radicale/repos/community-any/radicale-tmpfiles.conf
  radicale/repos/community-any/radicale.install
  radicale/repos/community-any/radicale.service

+
 PKGBUILD   |  160 +++
 radicale-sysusers.conf |2 
 radicale-tmpfiles.conf |4 -
 radicale.install   |   16 ++--
 radicale.service   |   76 +++---
 5 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 18:31:55 UTC (rev 707171)
+++ PKGBUILD2020-09-15 18:32:07 UTC (rev 707172)
@@ -1,80 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Moritz Lipp 
-# Contributor: fordprefect 
-# Contributor: Thor77 
-
-pkgname=radicale
-_name=Radicale
-pkgver=3.0.5
-pkgrel=1
-pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
-arch=('any')
-url="https://radicale.org/;
-license=('GPL3')
-depends=('python-bcrypt' 'python-dateutil' 'python-defusedxml' 'python-passlib'
-'python-setuptools' 'python-vobject')
-checkdepends=('python-pytest' 'python-pytest-runner' 'python-waitress')
-backup=('etc/radicale/config'
-'etc/radicale/rights'
-'etc/radicale/users')
-install="${pkgname}.install"
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz;
-"${pkgname}-sysusers.conf"
-"${pkgname}-tmpfiles.conf"
-"${pkgname}.service")
-sha512sums=('a4d1cea271e167bea70ca40bf51062e42073802ad89abf92c34ea15546a3878e8a22db8a7508ab271a772237e202eb13386daaf27af9b87e35a831b0d065c9a4'
-
'56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
-
'9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
-
'6f411daf18fbeeb7cc8626652f4b87ac6ec5e4ec1212821c426de711c907be41ab995d5b35be4ff0d663edb1028f99d6c07a53158acf519e7560e230c022c986')
-b2sums=('d1123d643d5e774081b281cdada8904f11cdf4eb566f7afd452be646554ebb731de9a69c41e1fce4a53ac45e31003766fb7ef146e5c1d3ff52bd5bb2c7a80cd8'
-
'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
-
'41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
-
'5ae0e87d4235a864ca482a6701e0631cdaccc3dceef71237d5bd708be08c3b7e1890793d01f8c51eaa108a097cfefbb31abb71cf69b195c0f50f95720965391f')
-
-prepare() {
-  mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
-  cd ${pkgname}-${pkgver}
-  # removing flake8, isort and coverage
-  sed -e '/addopts/d' -i setup.cfg
-  touch "users"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${pkgname}-${pkgver}"
-  mkdir -vp testdir
-  python setup.py install --skip-build \
---optimize=1 \
---root="testdir"
-  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  # config
-  install -vDm 644 {config,rights,users} -t "${pkgdir}/etc/${pkgname}/"
-  # wsgi
-  install -vDm 644 "${pkgname}.wsgi" \
--t "${pkgdir}/usr/share/${pkgname}/"
-  # systemd service
-  install -vDm 644 "${srcdir}/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  # sysusers.d
-  install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
-"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-  # tmpfiles.d
-  install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
-"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
-  # docs
-  install -vDm 644 {NEWS,README}.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}
-

Copied: radicale/repos/community-any/PKGBUILD (from rev 707171, 
radicale/trunk/PKGBUILD)
===

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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:21:57
  Author: dvzrv
Revision: 707170

archrelease: copy trunk to community-x86_64

Added:
  qtractor/repos/community-x86_64/PKGBUILD
(from rev 707169, qtractor/trunk/PKGBUILD)
Deleted:
  qtractor/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 18:21:48 UTC (rev 707169)
+++ PKGBUILD2020-09-15 18:21:57 UTC (rev 707170)
@@ -1,45 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: speps 
-# Contributor: Philipp Überbacher 
-
-pkgname=qtractor
-pkgver=0.9.16
-pkgrel=1
-pkgdesc="Audio/MIDI multitrack sequencer"
-arch=('x86_64')
-url="http://qtractor.org/;
-license=('GPL2')
-groups=('pro-audio')
-depends=('glibc' 'gcc-libs' 'hicolor-icon-theme' 'libmad' 'qt5-base'
-'qt5-x11extras' 'zlib')
-makedepends=('alsa-lib' 'aubio' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg'
-'libsamplerate' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'qt5-tools' 'rubberband'
-'suil')
-optdepends=('new-session-manager: for session management')
-source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('7312b73bccf79e1ca2cadb0bf33b492b221a65fec9894225e78512d63a9ac65b8387edb854607c44cc8a7ecd72758437c5c67ef901e58e495b09c0f48bbda01a')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libaubio.so' 'libjack.so' 'liblilv-0.so' 'liblo.so'
-  'libogg.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
-  'libsuil-0.so' 'libvorbisenc.so' 'libvorbisfile.so' 'libvorbis.so' )
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {AUTHORS,README,README.VST,TODO}
-}
-# vim:set ts=2 sw=2 et:

Copied: qtractor/repos/community-x86_64/PKGBUILD (from rev 707169, 
qtractor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 18:21:57 UTC (rev 707170)
@@ -0,0 +1,44 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: speps 
+# Contributor: Philipp Überbacher 
+
+pkgname=qtractor
+pkgver=0.9.17
+pkgrel=1
+pkgdesc="Audio/MIDI multitrack sequencer"
+arch=('x86_64')
+url="https://qtractor.sourceforge.io/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('glibc' 'gcc-libs' 'hicolor-icon-theme' 'libmad' 'qt5-base'
+'qt5-x11extras' 'zlib')
+makedepends=('alsa-lib' 'aubio' 'cmake' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg'
+'libsamplerate' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'qt5-tools' 'rubberband'
+'suil')
+optdepends=('new-session-manager: for session management')
+provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host')
+source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9392eb594920be5c826613bfd75be93ac006a718c14256b20bf8d6af23f9316f56c801e5422548b9387ccfd4fe3ba926f1a01cacc2324eab1ca66255f02c9c93')
+b2sums=('2cb387484203fcd6511a87364db9ed00d4d21452948abc0bad7d2775f022ab9a224537a8300a46ec220ddc497d071072456ed4e46a3e73c52954b5992bb1ba52')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libasound.so' 'libaubio.so' 'libjack.so' 'liblilv-0.so' 'liblo.so'
+  'libogg.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
+  'libsuil-0.so' 'libvorbisenc.so' 'libvorbisfile.so' 'libvorbis.so' )
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install -C build
+  # docs
+  install -vDm 644 {AUTHORS,README,README.VST,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 18:21:48
  Author: dvzrv
Revision: 707169

upgpkg: qtractor 0.9.17-1: Upgrade to 0.9.17.

Switch to cmake as build system.
Update upstream url to TLS guarded sourceforge page.

Modified:
  qtractor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 17:14:11 UTC (rev 707168)
+++ PKGBUILD2020-09-15 18:21:48 UTC (rev 707169)
@@ -4,32 +4,32 @@
 # Contributor: Philipp Überbacher 
 
 pkgname=qtractor
-pkgver=0.9.16
+pkgver=0.9.17
 pkgrel=1
 pkgdesc="Audio/MIDI multitrack sequencer"
 arch=('x86_64')
-url="http://qtractor.org/;
+url="https://qtractor.sourceforge.io/;
 license=('GPL2')
 groups=('pro-audio')
 depends=('glibc' 'gcc-libs' 'hicolor-icon-theme' 'libmad' 'qt5-base'
 'qt5-x11extras' 'zlib')
-makedepends=('alsa-lib' 'aubio' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg'
+makedepends=('alsa-lib' 'aubio' 'cmake' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg'
 'libsamplerate' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'qt5-tools' 'rubberband'
 'suil')
 optdepends=('new-session-manager: for session management')
+provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host')
 
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('7312b73bccf79e1ca2cadb0bf33b492b221a65fec9894225e78512d63a9ac65b8387edb854607c44cc8a7ecd72758437c5c67ef901e58e495b09c0f48bbda01a')
+sha512sums=('9392eb594920be5c826613bfd75be93ac006a718c14256b20bf8d6af23f9316f56c801e5422548b9387ccfd4fe3ba926f1a01cacc2324eab1ca66255f02c9c93')
+b2sums=('2cb387484203fcd6511a87364db9ed00d4d21452948abc0bad7d2775f022ab9a224537a8300a46ec220ddc497d071072456ed4e46a3e73c52954b5992bb1ba52')
 
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
 build() {
   cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
 }
 
 package() {
@@ -37,9 +37,8 @@
   'libogg.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
   'libsuil-0.so' 'libvorbisenc.so' 'libvorbisfile.so' 'libvorbis.so' )
   cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install -C build
   # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {AUTHORS,README,README.VST,TODO}
+  install -vDm 644 {AUTHORS,README,README.VST,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }
-# vim:set ts=2 sw=2 et:


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 17:14:11
  Author: dvzrv
Revision: 707168

archrelease: copy trunk to community-x86_64

Added:
  bsequencer/repos/community-x86_64/PKGBUILD
(from rev 707167, bsequencer/trunk/PKGBUILD)
Deleted:
  bsequencer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 17:14:03 UTC (rev 707167)
+++ PKGBUILD2020-09-15 17:14:11 UTC (rev 707168)
@@ -1,40 +0,0 @@
-# Maintainer: David Runge 
-
-_name=BSEQuencer
-_plugin_uri="https://www.jahnichen.de/plugins/lv2/BSEQuencer;
-pkgname=bsequencer
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="Multi channel MIDI step sequencer LV2 plugin with a variable matrix"
-arch=('x86_64')
-url="https://github.com/sjaehn/BSEQuencer;
-license=('GPL3')
-groups=('lv2-plugins' 'pro-audio')
-depends=('cairo' 'gcc-libs' 'glibc' 'libx11')
-makedepends=('lv2')
-checkdepends=('lv2lint')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sjaehn/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('0b27f9ee8f9aab6b94dbd97cdf4ae24e1844a952df656e885866fbc64fab4dc1c5bd0d07a43fa144eeb9ec510aa6a91eae2c102f470aa7b4d8ea69eea3402099')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  lv2lint -Mpack -I "${_name}.lv2/" "${_plugin_uri}"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
-  install -vDm 644 README.md \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  # remove useless license file
-  find "${pkgdir}/usr/lib/" -type f -iname "*LICENSE*" -delete
-}

Copied: bsequencer/repos/community-x86_64/PKGBUILD (from rev 707167, 
bsequencer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 17:14:11 UTC (rev 707168)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+_name=BSEQuencer
+_plugin_uri="https://www.jahnichen.de/plugins/lv2/BSEQuencer;
+pkgname=bsequencer
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Multi channel MIDI step sequencer LV2 plugin with a variable matrix"
+arch=('x86_64')
+url="https://github.com/sjaehn/BSEQuencer;
+license=('GPL3')
+groups=('lv2-plugins' 'pro-audio')
+depends=('cairo' 'gcc-libs' 'glibc' 'libx11')
+makedepends=('lv2')
+checkdepends=('lv2lint')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sjaehn/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('05e2542790b3d921521cdb15c832161e55f60d4163e519a11b3ec3f52e697ceea88487861669c25e7bc79d0ed3acc1834469cf4ac33de0e830a192184d16c58b')
+b2sums=('b35cbf720862906b242b7d589cd15ed0b8e8adf7c95c3e5a7d565741ecaec35e6ecdd41a325794e8c18914d7f2d0836a1d1cbb2989515d26320cfac43eaa22bf')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  lv2lint -Mpack -I "${_name}.lv2/" "${_plugin_uri}"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  install -vDm 644 README.md \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  # remove useless license file
+  find "${pkgdir}/usr/lib/" -type f -iname "*LICENSE*" -delete
+}


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

2020-09-15 Thread David Runge via arch-commits
Date: Tuesday, September 15, 2020 @ 17:14:03
  Author: dvzrv
Revision: 707167

upgpkg: bsequencer 1.8.0-1: Upgrade to 1.8.0.

Modified:
  bsequencer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:39:29 UTC (rev 707166)
+++ PKGBUILD2020-09-15 17:14:03 UTC (rev 707167)
@@ -3,7 +3,7 @@
 _name=BSEQuencer
 _plugin_uri="https://www.jahnichen.de/plugins/lv2/BSEQuencer;
 pkgname=bsequencer
-pkgver=1.6.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="Multi channel MIDI step sequencer LV2 plugin with a variable matrix"
 arch=('x86_64')
@@ -14,7 +14,8 @@
 makedepends=('lv2')
 checkdepends=('lv2lint')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sjaehn/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('0b27f9ee8f9aab6b94dbd97cdf4ae24e1844a952df656e885866fbc64fab4dc1c5bd0d07a43fa144eeb9ec510aa6a91eae2c102f470aa7b4d8ea69eea3402099')
+sha512sums=('05e2542790b3d921521cdb15c832161e55f60d4163e519a11b3ec3f52e697ceea88487861669c25e7bc79d0ed3acc1834469cf4ac33de0e830a192184d16c58b')
+b2sums=('b35cbf720862906b242b7d589cd15ed0b8e8adf7c95c3e5a7d565741ecaec35e6ecdd41a325794e8c18914d7f2d0836a1d1cbb2989515d26320cfac43eaa22bf')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"


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

2020-09-15 Thread Alexander Rødseth via arch-commits
Date: Tuesday, September 15, 2020 @ 16:39:20
  Author: arodseth
Revision: 707165

upgpkg: smlnj 110.98.1-1

Modified:
  smlnj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:28:50 UTC (rev 707164)
+++ PKGBUILD2020-09-15 16:39:20 UTC (rev 707165)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=smlnj
-pkgver=110.98
+pkgver=110.98.1
 pkgrel=1
 pkgdesc='Standard ML compiler from New Jersey'
 url='https://www.smlnj.org/'
@@ -34,23 +34,23 @@
   profile.d-smlnj.sh
   smlnj.sh
 )
-sha256sums=('39e460e94063b3c85b944c86d29c91ce3995e6fab242a2f77c71d7b04c8e7a7a'
-'1451adf5b9230aaf74d1d28438e4f8126dc56f333bb00b0fc52ff1b596a35281'
-'2ab4a5dff211d84359a50c5d48d607bd4c4f221fee65ac0bcf982f4508692e11'
-'f02776bbe417d48a469abd8d3496ce87e6cd7fd8440101cb23ce3b28b8b0fba3'
-'d7a7e6f9e32af242b3a600fd75830b923698db8f4d2318a7cc67512b01663344'
-'36e9fff81baecf8f770efa20b5e56e6f67e71705d8692142d53a590c133183ba'
-'555950477c86c0c43b3b6bb7ef907d7690cd214fb19c09a1a735ec9be1dbfa1e'
-'208fb9c8cbcfc1c90ab14267e28038a39022e2bcf3ee5670dcb643ceda11'
-'63d25c1c38791ae6d8f34cfcff600bc4c4ad6a166adb8af6402105bd98e444ba'
-'17c4254b7c1e696591932bc46f1b390c05174b26927fdbab0fa6b0fd9b7baa1a'
-'fb6c671d071c31e50e6792fb015492d8aec6f12b0cea2cd00e0b303c8ce1d98f'
-'7ba1063146e419e1ecebfd420b45eeb641bb8f79802cfc45a0c7e3958ad59e4f'
-'4055ea0bb388893a58453ff8588e1de72a15be94257715bcd66e7a870c08c3d8'
-'e47e0144547a04aaa2d4ee63bafb6a40a294e7acc8e072cc9569b9a08942ca86'
-'cf2c6cdbfae352585a59214d2e6a377191504334bf4dfc092e3a0e64667124a1'
-'bd84ce5671fd1b1156f6779f81dfaabf0801e0c3f476f36e2f2fdb4311d496aa'
-'e494dc37e39bcdc1e506d5b3b31422488dfd0400184ca5fb7005438253d7fa17'
+sha256sums=('d28a5c607e8160824b6c638223b9cad627c5387995813f88e5f1343b6e9c8030'
+'2231023a9c234da67d5145d0f18f9e84109f96bac29c69a78b68bc86796f16d3'
+'6a71b825d1a84cd2b0ebe05618763882e35c95ec5ee37a6ec960a83649b082c3'
+'ae415fc4d506fc505f86b3cd91504e6c3f81db66c214eef81631d9523097a1a8'
+'d5138fea2298d6161d281ce7b2db2970f9acb38f2dbb7bf36f5925e6fe75d97f'
+'9d91ce533bf6ad62dd124de373f3a39ce7f3becb75381fe4ea8c9cc3ac557f18'
+'ab84a0d2368a2a643af4dedac7949edef8a0c93887460c250bd04669505d6d8a'
+'d4c0ce803eb4ff92ee53a4d803ce9cf32b7bd1bf05c9d5d058a3e5e4bc09c9e0'
+'b71845bce1df5fc27f9313537ed8ad0b2b62ba12499b2ac9c5618750aa2815fe'
+'8662416a5b77af9a7e342e6ea4a259cee246620748d9d0c8f1fbefe9851c03a8'
+'916a2fef49607084c9bc46931d0e96998b4ff4d81750aa4fbc3e114a0e32c2b6'
+'742aa253bb2907b90f44d8c86506859d66417da37caaeb5bd5462f6c141d895a'
+'871115ad58e2212c128156289896c75b6112f48867a79de0f0af448ed83b6440'
+'4e87db5d66d2550eff551e318b503c3fb43c62cb734d36aadb71025437f302b3'
+'821ac606ef971b4aa28800b9b96dc0fce97a04aca67b23377a46ded07b08f71a'
+'1a49a740193fff6f40169757b8238ec87eed8cb9b4be6620e040a2ac26b25627'
+'18952f6d7c9c1f5ae35d2346f11a2b201fc85cf0157856da78dbcd8677cb7889'
 '4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
 'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
 '3012a08e113b0cf6feff06689c1ae2ad48524e200d30ac46676f3c9e53665218')


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

2020-09-15 Thread Alexander Rødseth via arch-commits
Date: Tuesday, September 15, 2020 @ 16:39:29
  Author: arodseth
Revision: 707166

archrelease: copy trunk to community-x86_64

Added:
  smlnj/repos/community-x86_64/PKGBUILD
(from rev 707165, smlnj/trunk/PKGBUILD)
  smlnj/repos/community-x86_64/profile.d-smlnj.sh
(from rev 707165, smlnj/trunk/profile.d-smlnj.sh)
  smlnj/repos/community-x86_64/smlnj.install
(from rev 707165, smlnj/trunk/smlnj.install)
  smlnj/repos/community-x86_64/smlnj.sh
(from rev 707165, smlnj/trunk/smlnj.sh)
  smlnj/repos/community-x86_64/urlgetter.sh
(from rev 707165, smlnj/trunk/urlgetter.sh)
Deleted:
  smlnj/repos/community-x86_64/PKGBUILD
  smlnj/repos/community-x86_64/profile.d-smlnj.sh
  smlnj/repos/community-x86_64/smlnj.install
  smlnj/repos/community-x86_64/smlnj.sh
  smlnj/repos/community-x86_64/urlgetter.sh

+
 PKGBUILD   |  162 +--
 profile.d-smlnj.sh |4 -
 smlnj.install  |6 -
 smlnj.sh   |6 -
 urlgetter.sh   |   62 +--
 5 files changed, 120 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:39:20 UTC (rev 707165)
+++ PKGBUILD2020-09-15 16:39:29 UTC (rev 707166)
@@ -1,81 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Thomas Weißschuh 
-
-pkgname=smlnj
-pkgver=110.98
-pkgrel=1
-pkgdesc='Standard ML compiler from New Jersey'
-url='https://www.smlnj.org/'
-license=(BSD)
-arch=(x86_64)
-depends=(lib32-glibc)
-provides=(sml)
-install=smlnj.install
-_url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/;
-source=(
-  "$pkgname-$pkgver-boot.amd64-unix.tgz::${_url}boot.amd64-unix.tgz"
-  "$pkgname-$pkgver-boot.x64-unix.tgz::${_url}boot.x86-unix.tgz"
-  "$pkgname-$pkgver-config.tgz::${_url}config.tgz"
-  "$pkgname-$pkgver-cm.tgz::${_url}cm.tgz"
-  "$pkgname-$pkgver-compiler.tgz::${_url}compiler.tgz"
-  "$pkgname-$pkgver-runtime.tgz::${_url}runtime.tgz"
-  "$pkgname-$pkgver-system.tgz::${_url}system.tgz"
-  "$pkgname-$pkgver-MLRISC.tgz::${_url}MLRISC.tgz"
-  "$pkgname-$pkgver-smlnj-lib.tgz::${_url}smlnj-lib.tgz"
-  "$pkgname-$pkgver-ckit.tgz::${_url}ckit.tgz"
-  "$pkgname-$pkgver-nlffi.tgz::${_url}nlffi.tgz"
-  "$pkgname-$pkgver-cml.tgz::${_url}cml.tgz"
-  "$pkgname-$pkgver-ml-lpt.tgz::${_url}ml-lpt.tgz"
-  "$pkgname-$pkgver-ml-lex.tgz::${_url}ml-lex.tgz"
-  "$pkgname-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
-  "$pkgname-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
-  "$pkgname-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
-  urlgetter.sh
-  profile.d-smlnj.sh
-  smlnj.sh
-)
-sha256sums=('39e460e94063b3c85b944c86d29c91ce3995e6fab242a2f77c71d7b04c8e7a7a'
-'1451adf5b9230aaf74d1d28438e4f8126dc56f333bb00b0fc52ff1b596a35281'
-'2ab4a5dff211d84359a50c5d48d607bd4c4f221fee65ac0bcf982f4508692e11'
-'f02776bbe417d48a469abd8d3496ce87e6cd7fd8440101cb23ce3b28b8b0fba3'
-'d7a7e6f9e32af242b3a600fd75830b923698db8f4d2318a7cc67512b01663344'
-'36e9fff81baecf8f770efa20b5e56e6f67e71705d8692142d53a590c133183ba'
-'555950477c86c0c43b3b6bb7ef907d7690cd214fb19c09a1a735ec9be1dbfa1e'
-'208fb9c8cbcfc1c90ab14267e28038a39022e2bcf3ee5670dcb643ceda11'
-'63d25c1c38791ae6d8f34cfcff600bc4c4ad6a166adb8af6402105bd98e444ba'
-'17c4254b7c1e696591932bc46f1b390c05174b26927fdbab0fa6b0fd9b7baa1a'
-'fb6c671d071c31e50e6792fb015492d8aec6f12b0cea2cd00e0b303c8ce1d98f'
-'7ba1063146e419e1ecebfd420b45eeb641bb8f79802cfc45a0c7e3958ad59e4f'
-'4055ea0bb388893a58453ff8588e1de72a15be94257715bcd66e7a870c08c3d8'
-'e47e0144547a04aaa2d4ee63bafb6a40a294e7acc8e072cc9569b9a08942ca86'
-'cf2c6cdbfae352585a59214d2e6a377191504334bf4dfc092e3a0e64667124a1'
-'bd84ce5671fd1b1156f6779f81dfaabf0801e0c3f476f36e2f2fdb4311d496aa'
-'e494dc37e39bcdc1e506d5b3b31422488dfd0400184ca5fb7005438253d7fa17'
-'4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
-'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
-'3012a08e113b0cf6feff06689c1ae2ad48524e200d30ac46676f3c9e53665218')
-
-build() {
-  mkdir -p install
-  unset SMLNJ_HOME MAKEFLAGS
-  export srcdir
-  export pkgver
-  export INSTALLDIR="$srcdir/install"
-  export CFLAGS="$CFLAGS -Wl,-z,relro,-z-now"
-  export LDFLAGS="$LDFLAGS -Wl,-z,relro,-z-now"
-  URLGETTER="$srcdir/urlgetter.sh"
-  config/install.sh -default 64
-}
-
-package() {
-  install -d "$pkgdir/usr/"{lib/smlnj,share}
-  install -Dm755 "$srcdir/profile.d-smlnj.sh" "$pkgdir/etc/profile.d/smlnj.sh"
-  install -Dm644 compiler/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  cp -R "$srcdir/install/"{bin,lib} "$pkgdir/usr/lib/smlnj"
-  cp -R "$srcdir/doc/man" "$pkgdir/usr/share/"
-  find "$pkgdir/usr/share/man" -name '._*' -delete
-  install -Dm755 smlnj.sh 

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

2020-09-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 15, 2020 @ 16:30:18
  Author: arojas
Revision: 396158

archrelease: copy trunk to extra-x86_64

Added:
  metis/repos/extra-x86_64/PKGBUILD
(from rev 396157, metis/trunk/PKGBUILD)
Deleted:
  metis/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:30:07 UTC (rev 396157)
+++ PKGBUILD2020-09-15 16:30:18 UTC (rev 396158)
@@ -1,37 +0,0 @@
-# Maintainer:
-# Contributor: jedbrown
-# Contributor: eleftg
-# Contributor: mickele
-# Contributor: gborzi
-# Contributor: abenson
-
-pkgname=metis
-pkgver=5.1.0.p9
-_pkgver=5.1.0-p9
-pkgrel=1
-arch=(x86_64)
-pkgdesc="A set of serial programs for partitioning graphs, partitioning finite 
element meshes, and producing fill reducing orderings for sparse matrices"
-url="http://glaros.dtc.umn.edu/gkhome/metis/metis/overview;
-license=(custom)
-depends=(glibc)
-makedepends=(cmake)
-options=(docs)
-source=($pkgname-$pkgver.tar.bz2::"https://bitbucket.org/petsc/pkg-metis/get/v$_pkgver.tar.bz2;)
-sha256sums=('e660ff008de429e6c7fc9b8240dcae539c799c3c01a8a564d2ad90a2c80433db')
-
-prepare() {
-  mv petsc-pkg-metis-* $pkgname-$_pkgver
-}
-
-build() {
-  cd $pkgname-$_pkgver
-  make config shared=1 prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$_pkgver
-
-  make install DESTDIR="$pkgdir"
-  install -m644 -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: metis/repos/extra-x86_64/PKGBUILD (from rev 396157, 
metis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 16:30:18 UTC (rev 396158)
@@ -0,0 +1,37 @@
+# Maintainer:
+# Contributor: jedbrown
+# Contributor: eleftg
+# Contributor: mickele
+# Contributor: gborzi
+# Contributor: abenson
+
+pkgname=metis
+pkgver=5.1.0.p10
+_pkgver=5.1.0-p10
+pkgrel=1
+arch=(x86_64)
+pkgdesc="A set of serial programs for partitioning graphs, partitioning finite 
element meshes, and producing fill reducing orderings for sparse matrices"
+url="http://glaros.dtc.umn.edu/gkhome/metis/metis/overview;
+license=(custom)
+depends=(glibc)
+makedepends=(cmake)
+options=(docs)
+source=($pkgname-$pkgver.tar.bz2::"https://bitbucket.org/petsc/pkg-metis/get/v$_pkgver.tar.bz2;)
+sha256sums=('ddcb99746a8795ebb9d9c020acc31b85fe696eb2992c9ee5ac7588074a503a4b')
+
+prepare() {
+  mv petsc-pkg-metis-* $pkgname-$_pkgver
+}
+
+build() {
+  cd $pkgname-$_pkgver
+  make config shared=1 prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$_pkgver
+
+  make install DESTDIR="$pkgdir"
+  install -m644 -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-09-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 15, 2020 @ 16:30:07
  Author: arojas
Revision: 396157

Update to 5.1.0.p10

Modified:
  metis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 15:05:30 UTC (rev 396156)
+++ PKGBUILD2020-09-15 16:30:07 UTC (rev 396157)
@@ -6,8 +6,8 @@
 # Contributor: abenson
 
 pkgname=metis
-pkgver=5.1.0.p9
-_pkgver=5.1.0-p9
+pkgver=5.1.0.p10
+_pkgver=5.1.0-p10
 pkgrel=1
 arch=(x86_64)
 pkgdesc="A set of serial programs for partitioning graphs, partitioning finite 
element meshes, and producing fill reducing orderings for sparse matrices"
@@ -17,7 +17,7 @@
 makedepends=(cmake)
 options=(docs)
 
source=($pkgname-$pkgver.tar.bz2::"https://bitbucket.org/petsc/pkg-metis/get/v$_pkgver.tar.bz2;)
-sha256sums=('e660ff008de429e6c7fc9b8240dcae539c799c3c01a8a564d2ad90a2c80433db')
+sha256sums=('ddcb99746a8795ebb9d9c020acc31b85fe696eb2992c9ee5ac7588074a503a4b')
 
 prepare() {
   mv petsc-pkg-metis-* $pkgname-$_pkgver


[arch-commits] Commit in python-jsonrpc-server/trunk (python-3.8.patch)

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 16:28:40
  Author: foxboron
Revision: 707163

upgpkg: python-jsonrpc-server 0.4.0-1

Deleted:
  python-jsonrpc-server/trunk/python-3.8.patch

--+
 python-3.8.patch |   60 -
 1 file changed, 60 deletions(-)

Deleted: python-3.8.patch
===
--- python-3.8.patch2020-09-15 16:23:37 UTC (rev 707162)
+++ python-3.8.patch2020-09-15 16:28:40 UTC (rev 707163)
@@ -1,60 +0,0 @@
-diff -uprb python-jsonrpc-server-0.2.0.orig/pyls_jsonrpc/endpoint.py 
python-jsonrpc-server-0.2.0/pyls_jsonrpc/endpoint.py
 python-jsonrpc-server-0.2.0.orig/pyls_jsonrpc/endpoint.py  2019-06-27 
18:42:22.0 +0300
-+++ python-jsonrpc-server-0.2.0/pyls_jsonrpc/endpoint.py   2019-11-02 
23:24:59.407851208 +0200
-@@ -98,7 +98,7 @@ class Endpoint(object):
- message (dict): The JSON RPC message sent by the client
- """
- if 'jsonrpc' not in message or message['jsonrpc'] != JSONRPC_VERSION:
--log.warn("Unknown message type %s", message)
-+log.warning("Unknown message type %s", message)
- return
- 
- if 'id' not in message:
-@@ -135,7 +135,7 @@ class Endpoint(object):
- try:
- handler = self._dispatcher[method]
- except KeyError:
--log.warn("Ignoring notification for unknown method %s", method)
-+log.warning("Ignoring notification for unknown method %s", method)
- return
- 
- try:
-@@ -165,7 +165,7 @@ class Endpoint(object):
- request_future = self._client_request_futures.pop(msg_id, None)
- 
- if not request_future:
--log.warn("Received cancel notification for unknown message id 
%s", msg_id)
-+log.warning("Received cancel notification for unknown message id 
%s", msg_id)
- return
- 
- # Will only work if the request hasn't started executing
-@@ -230,12 +230,13 @@ class Endpoint(object):
- request_future = self._server_request_futures.pop(msg_id, None)
- 
- if not request_future:
--log.warn("Received response to unknown message id %s", msg_id)
-+log.warning("Received response to unknown message id %s", msg_id)
- return
- 
- if error is not None:
- log.debug("Received error response to message %s: %s", msg_id, 
error)
- request_future.set_exception(JsonRpcException.from_dict(error))
-+return
- 
- log.debug("Received result for message %s: %s", msg_id, result)
- request_future.set_result(result)
-diff -uprb python-jsonrpc-server-0.2.0.orig/test/test_endpoint.py 
python-jsonrpc-server-0.2.0/test/test_endpoint.py
 python-jsonrpc-server-0.2.0.orig/test/test_endpoint.py 2019-06-27 
18:42:22.0 +0300
-+++ python-jsonrpc-server-0.2.0/test/test_endpoint.py  2019-11-02 
23:24:21.033838729 +0200
-@@ -115,9 +115,9 @@ def test_request_cancel(endpoint, consum
- 'params': {'id': MSG_ID}
- })
- 
--with pytest.raises(exceptions.JsonRpcException) as exc_info:
-+with pytest.raises((exceptions.JsonRpcException, futures.CancelledError)) 
as exc_info:
- assert future.result(timeout=2)
--assert exc_info.type == exceptions.JsonRpcRequestCancelled
-+assert exc_info.type in (exceptions.JsonRpcRequestCancelled, 
futures.CancelledError)
- 
- 
- def test_consume_notification(endpoint, dispatcher):


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 16:28:50
  Author: foxboron
Revision: 707164

archrelease: copy trunk to community-any

Added:
  python-jsonrpc-server/repos/community-any/PKGBUILD
(from rev 707163, python-jsonrpc-server/trunk/PKGBUILD)
  python-jsonrpc-server/repos/community-any/fix-test.patch
(from rev 707163, python-jsonrpc-server/trunk/fix-test.patch)
Deleted:
  python-jsonrpc-server/repos/community-any/PKGBUILD
  python-jsonrpc-server/repos/community-any/python-3.8.patch

--+
 PKGBUILD |   82 ++---
 fix-test.patch   |   19 
 python-3.8.patch |   60 --
 3 files changed, 60 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:28:40 UTC (rev 707163)
+++ PKGBUILD2020-09-15 16:28:50 UTC (rev 707164)
@@ -1,41 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Maintainer: Morten Linderud 
-# Contributor: fenuks
-
-pkgname=python-jsonrpc-server
-pkgver=0.3.4
-pkgrel=1
-pkgdesc="Python library implementing asynchronous JSON RPC server"
-arch=("any")
-url="https://github.com/palantir/python-jsonrpc-server;
-license=("MIT")
-depends=("python" "python-future" "python-ujson")
-makedepends=("python" "python-setuptools")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "python-mock")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'python-3.8.patch')
-sha256sums=('c73bf5495c9dd4d2f902755bedeb6da5afe778e0beee82f0e195c4655352fe37'
-'718d791bd233eeb9c3876f5e18d32e28e75d919375c4c2dd511f8a4e1023b479')
-
-prepare() {
-cd "${pkgname}-${pkgver}"
-patch -Np1 -i ../python-3.8.patch
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-jsonrpc-server/repos/community-any/PKGBUILD (from rev 707163, 
python-jsonrpc-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 16:28:50 UTC (rev 707164)
@@ -0,0 +1,41 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Morten Linderud 
+# Contributor: fenuks
+
+pkgname=python-jsonrpc-server
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Python library implementing asynchronous JSON RPC server"
+arch=("any")
+url="https://github.com/palantir/python-jsonrpc-server;
+license=("MIT")
+depends=("python" "python-future" "python-ujson")
+makedepends=("python" "python-setuptools")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "python-mock")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+"fix-test.patch")
+sha256sums=('62c543e541f101ec5b57dc654efc212d2c2e3ea47ff6f54b2e7dcb36ecf20595'
+'ad8dfe322b5d1f29db6da44f1346f2a900d046d2163241c1e312bfd7c54b5155')
+
+prepare(){
+cd "${pkgname}-${pkgver}"
+patch -p1 -i ../fix-test.patch
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:

Copied: python-jsonrpc-server/repos/community-any/fix-test.patch (from rev 
707163, python-jsonrpc-server/trunk/fix-test.patch)
===
--- fix-test.patch  (rev 0)
+++ fix-test.patch  2020-09-15 16:28:50 UTC (rev 707164)
@@ -0,0 +1,19 @@
+diff --git a/test/test_streams.py b/test/test_streams.py
+index 6985aec..8b292f9 100644
+--- a/test/test_streams.py
 b/test/test_streams.py
+@@ -121,10 +121,10 @@ def test_writer_bad_message(wfile, writer):
+ second=1,
+ ))
+ 
+-assert wfile.getvalue() in [
+-b'',
++assert wfile.getvalue() == (
++b''
+ b'Content-Length: 10\r\n'
+ b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
+ b'\r\n'
+-b'1546304461'
+-]
++b'1546300861'
++)

Deleted: python-3.8.patch
===
--- python-3.8.patch2020-09-15 16:28:40 UTC (rev 707163)
+++ python-3.8.patch2020-09-15 16:28:50 UTC (rev 707164)
@@ -1,60 +0,0 @@
-diff -uprb python-jsonrpc-server-0.2.0.orig/pyls_jsonrpc/endpoint.py 

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

2020-09-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 15, 2020 @ 16:23:37
  Author: arojas
Revision: 707162

archrelease: copy trunk to community-x86_64

Added:
  cddlib/repos/community-x86_64/PKGBUILD
(from rev 707161, cddlib/trunk/PKGBUILD)
Deleted:
  cddlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:23:29 UTC (rev 707161)
+++ PKGBUILD2020-09-15 16:23:37 UTC (rev 707162)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=cddlib
-pkgver=0.94j
-pkgrel=2
-epoch=1
-pkgdesc="C library implementing Double Description Method for convex polyhedra"
-arch=(x86_64)
-url="https://www.inf.ethz.ch/personal/fukudak/cdd_home/;
-license=(GPL)
-depends=(gmp)
-source=("https://github.com/cddlib/cddlib/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('27d7fcac2710755a01ef5381010140fc57c95f959c3c5705c58539d8c4d17bfb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cddlib/repos/community-x86_64/PKGBUILD (from rev 707161, 
cddlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 16:23:37 UTC (rev 707162)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=cddlib
+pkgver=0.94k
+pkgrel=1
+epoch=1
+pkgdesc="C library implementing Double Description Method for convex polyhedra"
+arch=(x86_64)
+url="https://www.inf.ethz.ch/personal/fukudak/cdd_home/;
+license=(GPL)
+depends=(gmp)
+source=("https://github.com/cddlib/cddlib/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('de7397d7fe32758a6b53453a889ec7619b6c68a15d84eb132421f3d7d457be44')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2020-09-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 15, 2020 @ 16:23:29
  Author: arojas
Revision: 707161

Update to 0.94k

Modified:
  cddlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:17:04 UTC (rev 707160)
+++ PKGBUILD2020-09-15 16:23:29 UTC (rev 707161)
@@ -2,8 +2,8 @@
 # Contributor: Rémy Oudompheng 
 
 pkgname=cddlib
-pkgver=0.94j
-pkgrel=2
+pkgver=0.94k
+pkgrel=1
 epoch=1
 pkgdesc="C library implementing Double Description Method for convex polyhedra"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(gmp)
 
source=("https://github.com/cddlib/cddlib/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('27d7fcac2710755a01ef5381010140fc57c95f959c3c5705c58539d8c4d17bfb')
+sha256sums=('de7397d7fe32758a6b53453a889ec7619b6c68a15d84eb132421f3d7d457be44')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in python-jsonrpc-server/trunk (PKGBUILD fix-test.patch)

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 16:17:04
  Author: foxboron
Revision: 707160

upgpkg: python-jsonrpc-server 0.4.0-1

Added:
  python-jsonrpc-server/trunk/fix-test.patch
Modified:
  python-jsonrpc-server/trunk/PKGBUILD

+
 PKGBUILD   |   12 ++--
 fix-test.patch |   19 +++
 2 files changed, 25 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:13:42 UTC (rev 707159)
+++ PKGBUILD2020-09-15 16:17:04 UTC (rev 707160)
@@ -3,7 +3,7 @@
 # Contributor: fenuks
 
 pkgname=python-jsonrpc-server
-pkgver=0.3.4
+pkgver=0.4.0
 pkgrel=1
 pkgdesc="Python library implementing asynchronous JSON RPC server"
 arch=("any")
@@ -13,13 +13,13 @@
 makedepends=("python" "python-setuptools")
 checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "python-mock")
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'python-3.8.patch')
-sha256sums=('c73bf5495c9dd4d2f902755bedeb6da5afe778e0beee82f0e195c4655352fe37'
-'718d791bd233eeb9c3876f5e18d32e28e75d919375c4c2dd511f8a4e1023b479')
+"fix-test.patch")
+sha256sums=('62c543e541f101ec5b57dc654efc212d2c2e3ea47ff6f54b2e7dcb36ecf20595'
+'ad8dfe322b5d1f29db6da44f1346f2a900d046d2163241c1e312bfd7c54b5155')
 
-prepare() {
+prepare(){
 cd "${pkgname}-${pkgver}"
-patch -Np1 -i ../python-3.8.patch
+patch -p1 -i ../fix-test.patch
 }
 
 build() {

Added: fix-test.patch
===
--- fix-test.patch  (rev 0)
+++ fix-test.patch  2020-09-15 16:17:04 UTC (rev 707160)
@@ -0,0 +1,19 @@
+diff --git a/test/test_streams.py b/test/test_streams.py
+index 6985aec..8b292f9 100644
+--- a/test/test_streams.py
 b/test/test_streams.py
+@@ -121,10 +121,10 @@ def test_writer_bad_message(wfile, writer):
+ second=1,
+ ))
+ 
+-assert wfile.getvalue() in [
+-b'',
++assert wfile.getvalue() == (
++b''
+ b'Content-Length: 10\r\n'
+ b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
+ b'\r\n'
+-b'1546304461'
+-]
++b'1546300861'
++)


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

2020-09-15 Thread Dan Printzell via arch-commits
Date: Tuesday, September 15, 2020 @ 16:13:37
  Author: wild
Revision: 707158

upgpkg: dscanner 0.11.0-1: Updated to 0.11.0

Modified:
  dscanner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:10:46 UTC (rev 707157)
+++ PKGBUILD2020-09-15 16:13:37 UTC (rev 707158)
@@ -2,9 +2,9 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=dscanner
-pkgver=0.10.0
+pkgver=0.11.0
 pkgrel=1
-_pkgcommit=a40492bc92e86bad6441fc3aba776fe2c6a5090b
+_pkgcommit=17edb1a1bed749d7eb6c3e9d49632fcf53ee185d
 pkgdesc="Swiss-army knife for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/D-Scanner;


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

2020-09-15 Thread Dan Printzell via arch-commits
Date: Tuesday, September 15, 2020 @ 16:13:42
  Author: wild
Revision: 707159

archrelease: copy trunk to community-x86_64

Added:
  dscanner/repos/community-x86_64/PKGBUILD
(from rev 707158, dscanner/trunk/PKGBUILD)
Deleted:
  dscanner/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:13:37 UTC (rev 707158)
+++ PKGBUILD2020-09-15 16:13:42 UTC (rev 707159)
@@ -1,57 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=dscanner
-pkgver=0.10.0
-pkgrel=1
-_pkgcommit=a40492bc92e86bad6441fc3aba776fe2c6a5090b
-pkgdesc="Swiss-army knife for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/D-Scanner;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
-"git+https://github.com/dlang-community/libdparse;
-"git+https://github.com/burner/inifiled;
-"git+https://github.com/economicmodeling/containers;
-"git+https://github.com/dlang-community/dsymbol;
-"git+https://github.com/economicmodeling/libddoc;
-"git+https://github.com/dlang-community/stdx-allocator;)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd "$srcdir/D-Scanner"
-
-  git submodule init
-  git config submodule.libdparse.url "$srcdir/libdparse"
-  git config submodule.inifiled.url "$srcdir/inifiled"
-  git config submodule.containers.url "$srcdir/containers"
-  git config submodule.dsymbol.url "$srcdir/dsymbol"
-  git config submodule.libddoc.url "$srcdir/libddoc"
-  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-  git submodule update
-
-  # Only LDC have -O5
-  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
-}
-
-build() {
-  cd "$srcdir/D-Scanner"
-  make ldc
-}
-
-package() {
-  # binaries
-  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
-
-  # license
-  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dscanner/repos/community-x86_64/PKGBUILD (from rev 707158, 
dscanner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 16:13:42 UTC (rev 707159)
@@ -0,0 +1,57 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=dscanner
+pkgver=0.11.0
+pkgrel=1
+_pkgcommit=17edb1a1bed749d7eb6c3e9d49632fcf53ee185d
+pkgdesc="Swiss-army knife for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/D-Scanner;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
+"git+https://github.com/dlang-community/libdparse;
+"git+https://github.com/burner/inifiled;
+"git+https://github.com/economicmodeling/containers;
+"git+https://github.com/dlang-community/dsymbol;
+"git+https://github.com/economicmodeling/libddoc;
+"git+https://github.com/dlang-community/stdx-allocator;)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/D-Scanner"
+
+  git submodule init
+  git config submodule.libdparse.url "$srcdir/libdparse"
+  git config submodule.inifiled.url "$srcdir/inifiled"
+  git config submodule.containers.url "$srcdir/containers"
+  git config submodule.dsymbol.url "$srcdir/dsymbol"
+  git config submodule.libddoc.url "$srcdir/libddoc"
+  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+  git submodule update
+
+  # Only LDC have -O5
+  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
+}
+
+build() {
+  cd "$srcdir/D-Scanner"
+  make ldc
+}
+
+package() {
+  # binaries
+  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
+
+  # license
+  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-09-15 Thread Dan Printzell via arch-commits
Date: Tuesday, September 15, 2020 @ 16:10:46
  Author: wild
Revision: 707157

archrelease: copy trunk to community-x86_64

Added:
  dfmt/repos/community-x86_64/PKGBUILD
(from rev 707156, dfmt/trunk/PKGBUILD)
Deleted:
  dfmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 16:10:41 UTC (rev 707156)
+++ PKGBUILD2020-09-15 16:10:46 UTC (rev 707157)
@@ -1,53 +0,0 @@
-# Maintainer: Dan Printzell 
-
-pkgname=('dfmt')
-pkgver=0.13.0
-pkgrel=1
-_pkgcommit=b5dbb0e031d411bb94c8784f52eebbe474583755
-pkgdesc="Dfmt is a formatter for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/dfmt;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-   cd "$srcdir/dfmt"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-
-   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
-   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
-}
-
-build() {
-   cd "$srcdir/dfmt"
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
-
-   # license
-   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dfmt/repos/community-x86_64/PKGBUILD (from rev 707156, 
dfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 16:10:46 UTC (rev 707157)
@@ -0,0 +1,53 @@
+# Maintainer: Dan Printzell 
+
+pkgname=('dfmt')
+pkgver=0.13.1
+pkgrel=1
+_pkgcommit=eab4cac12fc0eedc67c5393d98d90f2a20ebb63e
+pkgdesc="Dfmt is a formatter for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/dfmt;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/sociomantic-tsunami/makd;
+   "git+https://github.com/sociomantic-tsunami/beaver;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+   cd "$srcdir/dfmt"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.makd.url "$srcdir/makd"
+   git config submodule.beaver.url "$srcdir/beaver"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+
+   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
+   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
+}
+
+build() {
+   cd "$srcdir/dfmt"
+   make ldc
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
+
+   # license
+   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-09-15 Thread Dan Printzell via arch-commits
Date: Tuesday, September 15, 2020 @ 16:10:41
  Author: wild
Revision: 707156

upgpkg: dfmt 0.13.1-1: Updated to 0.13.1

Modified:
  dfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 16:05:10 UTC (rev 707155)
+++ PKGBUILD2020-09-15 16:10:41 UTC (rev 707156)
@@ -1,9 +1,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dfmt')
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
-_pkgcommit=b5dbb0e031d411bb94c8784f52eebbe474583755
+_pkgcommit=eab4cac12fc0eedc67c5393d98d90f2a20ebb63e
 pkgdesc="Dfmt is a formatter for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/dfmt;


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

2020-09-15 Thread Christian Hesse via arch-commits
Date: Tuesday, September 15, 2020 @ 16:05:10
  Author: eworm
Revision: 707155

update bundled gdal

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 15:50:42 UTC (rev 707154)
+++ PKGBUILD2020-09-15 16:05:10 UTC (rev 707155)
@@ -9,7 +9,7 @@
 pkgrel=1
 _mysql_version=${pkgver}
 _connector_version=${pkgver}
-_gdal_version=3.1.2
+_gdal_version=3.1.3
 _boost_version=1.72.0
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
 arch=('x86_64')
@@ -37,7 +37,7 @@
 'SKIP'
 '70e11c81ee6f482f4d2954a0aa5c43ab35bb6b2a0f0cadcd37e246950201e423'
 'SKIP'
-'767c8d0dfa20ba3283de05d23a1d1c03a7e805d0ce2936beaff0bb7d11450641'
+'161cf55371a143826f1d76ce566db1f0a666496eeb4371aed78b1642f219d51d'
 '59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722'
 'cdf687f23bc6e8d52dbee9fa02b23d755e80f88476f0fc2e7c4c71cdfed3792f'
 '2d0f6dcf38f22e49ef7ab9de0230484f1ffac41b7ac40feaf5ef4538ae2f7a18'


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

2020-09-15 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, September 15, 2020 @ 15:50:42
  Author: jlichtblau
Revision: 707154

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 707153, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 15:50:33 UTC (rev 707153)
+++ PKGBUILD2020-09-15 15:50:42 UTC (rev 707154)
@@ -1,35 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.75.0
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('47192416b51b9b8ad180f8e00a83c4a5cc5222857685ddb0e2b61c294aadaba68caf5553bed0ccdea228de18ae9091d8392cab56d430356698e2e9dabe78a86d')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -tags extended 
-  ./hugo gen man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 707153, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 15:50:42 UTC (rev 707154)
@@ -0,0 +1,35 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.75.1
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('d942457a00c9cd58a6a2c2081da889e5d6cdf7839d8ed0b74f7a2888babcdbf5fcf2ba297085cf9ddda60f388e0b41e8b2527471d3a515119b7073e8ee9c2831')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -tags extended 
+  ./hugo gen man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+}


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

2020-09-15 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, September 15, 2020 @ 15:50:33
  Author: jlichtblau
Revision: 707153

upgpkg: hugo 0.75.1-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 15:36:30 UTC (rev 707152)
+++ PKGBUILD2020-09-15 15:50:33 UTC (rev 707153)
@@ -4,7 +4,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.75.0
+pkgver=0.75.1
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('go' 'git')
 optdepends=('pygmentize: syntax-highlight code snippets')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('47192416b51b9b8ad180f8e00a83c4a5cc5222857685ddb0e2b61c294aadaba68caf5553bed0ccdea228de18ae9091d8392cab56d430356698e2e9dabe78a86d')
+sha512sums=('d942457a00c9cd58a6a2c2081da889e5d6cdf7839d8ed0b74f7a2888babcdbf5fcf2ba297085cf9ddda60f388e0b41e8b2527471d3a515119b7073e8ee9c2831')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2020-09-15 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, September 15, 2020 @ 15:36:30
  Author: jlichtblau
Revision: 707152

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 707151, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 15:36:08 UTC (rev 707151)
+++ PKGBUILD2020-09-15 15:36:30 UTC (rev 707152)
@@ -1,35 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.74.3
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('aca42db5abe1bf36c6793f3e6cf260167285f074366c03fc8f2000f59e4860c634a65fa14855f03dc2c4513fb83f2c215e590825e6d037d107825d589f08208f')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -tags extended 
-  ./hugo gen man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 707151, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 15:36:30 UTC (rev 707152)
@@ -0,0 +1,35 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.75.0
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('47192416b51b9b8ad180f8e00a83c4a5cc5222857685ddb0e2b61c294aadaba68caf5553bed0ccdea228de18ae9091d8392cab56d430356698e2e9dabe78a86d')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -tags extended 
+  ./hugo gen man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+}


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

2020-09-15 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, September 15, 2020 @ 15:36:08
  Author: jlichtblau
Revision: 707151

upgpkg: hugo 0.75.0-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 15:25:04 UTC (rev 707150)
+++ PKGBUILD2020-09-15 15:36:08 UTC (rev 707151)
@@ -4,7 +4,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.74.3
+pkgver=0.75.0
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('go' 'git')
 optdepends=('pygmentize: syntax-highlight code snippets')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('aca42db5abe1bf36c6793f3e6cf260167285f074366c03fc8f2000f59e4860c634a65fa14855f03dc2c4513fb83f2c215e590825e6d037d107825d589f08208f')
+sha512sums=('47192416b51b9b8ad180f8e00a83c4a5cc5222857685ddb0e2b61c294aadaba68caf5553bed0ccdea228de18ae9091d8392cab56d430356698e2e9dabe78a86d')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 15:24:56
  Author: foxboron
Revision: 707149

upgpkg: dqlite 1.6.0-1

Modified:
  dqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 15:23:37 UTC (rev 707148)
+++ PKGBUILD2020-09-15 15:24:56 UTC (rev 707149)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Hipp 
 
 pkgname=dqlite
-pkgver=1.5.0
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="Distributed SQLite"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('libuv' 'raft' 'libco' 'sqlite-replication')
 makedepends=('tcl' 'readline' 'zlib')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('1ea4a4a70460bce98eb8d473fd64233bfd9897f348276c4b270194e3b95f')
+sha256sums=('8671396a9510c7c125e706973a8ffb2e4540ac605f1f3e9720a63876448f5d93')
 
 build() {
cd "$pkgname-$pkgver"


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 15:25:04
  Author: foxboron
Revision: 707150

archrelease: copy trunk to community-x86_64

Added:
  dqlite/repos/community-x86_64/PKGBUILD
(from rev 707149, dqlite/trunk/PKGBUILD)
Deleted:
  dqlite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 15:24:56 UTC (rev 707149)
+++ PKGBUILD2020-09-15 15:25:04 UTC (rev 707150)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=dqlite
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="Distributed SQLite"
-arch=('x86_64')
-url="https://github.com/CanonicalLtd/dqlite;
-license=('LGPL3')
-depends=('libuv' 'raft' 'libco' 'sqlite-replication')
-makedepends=('tcl' 'readline' 'zlib')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('1ea4a4a70460bce98eb8d473fd64233bfd9897f348276c4b270194e3b95f')
-
-build() {
-   cd "$pkgname-$pkgver"
-   autoreconf -i 
-   PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
-   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication"
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication" check || true
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: dqlite/repos/community-x86_64/PKGBUILD (from rev 707149, 
dqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 15:25:04 UTC (rev 707150)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=dqlite
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Distributed SQLite"
+arch=('x86_64')
+url="https://github.com/CanonicalLtd/dqlite;
+license=('LGPL3')
+depends=('libuv' 'raft' 'libco' 'sqlite-replication')
+makedepends=('tcl' 'readline' 'zlib')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('8671396a9510c7c125e706973a8ffb2e4540ac605f1f3e9720a63876448f5d93')
+
+build() {
+   cd "$pkgname-$pkgver"
+   autoreconf -i 
+   PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
+   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication"
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication" check || true
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 15:23:37
  Author: foxboron
Revision: 707148

archrelease: copy trunk to community-x86_64

Added:
  k9s/repos/community-x86_64/PKGBUILD
(from rev 707147, k9s/trunk/PKGBUILD)
Deleted:
  k9s/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 15:23:29 UTC (rev 707147)
+++ PKGBUILD2020-09-15 15:23:37 UTC (rev 707148)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.21.9
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=b391feec3a3e4bbd5542dd0554b8578a1c6ca5ca   #refs/tags/v0.21.9^{}
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make VERSION=v$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 707147, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 15:23:37 UTC (rev 707148)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.21.10
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=99e2a988e6593f1d8efa5ac0f7b3c366d83d3780   #refs/tags/v0.21.10^{}
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make VERSION=v$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:


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

2020-09-15 Thread Morten Linderud via arch-commits
Date: Tuesday, September 15, 2020 @ 15:23:29
  Author: foxboron
Revision: 707147

upgpkg: k9s 0.21.10-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 14:52:09 UTC (rev 707146)
+++ PKGBUILD2020-09-15 15:23:29 UTC (rev 707147)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.21.9
+pkgver=0.21.10
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=b391feec3a3e4bbd5542dd0554b8578a1c6ca5ca   #refs/tags/v0.21.9^{}
+_commit=99e2a988e6593f1d8efa5ac0f7b3c366d83d3780   #refs/tags/v0.21.10^{}
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-09-15 Thread Christian Hesse via arch-commits
Date: Tuesday, September 15, 2020 @ 15:05:30
  Author: eworm
Revision: 396156

archrelease: copy trunk to testing-x86_64

Added:
  gpm/repos/testing-x86_64/PKGBUILD
(from rev 396155, gpm/trunk/PKGBUILD)
  gpm/repos/testing-x86_64/gpm.service
(from rev 396155, gpm/trunk/gpm.service)
  gpm/repos/testing-x86_64/gpm.sh
(from rev 396155, gpm/trunk/gpm.sh)
Deleted:
  gpm/repos/testing-x86_64/PKGBUILD
  gpm/repos/testing-x86_64/gpm.service
  gpm/repos/testing-x86_64/gpm.sh

-+
 PKGBUILD|  117 +-
 gpm.service |   24 +--
 gpm.sh  |6 +-
 3 files changed, 74 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 15:05:26 UTC (rev 396155)
+++ PKGBUILD2020-09-15 15:05:30 UTC (rev 396156)
@@ -1,58 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=gpm
-pkgver=1.20.7.r38.ge82d1a6
-_commit='e82d1a653ca94aa4ed12441424da6ce780b1e530'
-pkgrel=1
-pkgdesc='A mouse server for the console and xterm'
-arch=('x86_64')
-url='https://www.nico.schottelius.org/software/gpm/'
-license=('GPL')
-depends=('bash' 'procps-ng')
-makedepends=('git')
-options=('!makeflags')
-source=("git+https://github.com/telmich/gpm.git#commit=${_commit};
-'gpm.sh'
-'gpm.service')
-sha256sums=('SKIP'
-'f41e90dcf6c0c6c4b8eff1c69039a20eb6b38ea851ffd1fa47ba311bf83d6ed8'
-'dc7d2463f6670ff2c1646a571ffad51f7c603793c25c6f685efad13cbb444034')
-
-pkgver() {
-  cd "${srcdir}/${pkgname}"
-
-  GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"
-  printf '%s.r%s.g%s' \
-"${GITTAG}" \
-"$(git rev-list --count ${GITTAG}..)" \
-"$(git rev-parse --short HEAD)"
-}
-
-prepare() {
-  cd "${srcdir}/${pkgname}"
-
-  ./autogen.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}"
-  
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  make DESTDIR="${pkgdir}" install
-  install -D -m0755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
-  install -D -m0644 ../gpm.service 
"${pkgdir}/usr/lib/systemd/system/gpm.service"
-
-# library fixes
-  cd "${pkgdir}/usr/lib/"
-  ln -s libgpm.so.2.* libgpm.so
-  chmod 0755 "${pkgdir}"/usr/lib/libgpm.so.*
-}

Copied: gpm/repos/testing-x86_64/PKGBUILD (from rev 396155, gpm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 15:05:30 UTC (rev 396156)
@@ -0,0 +1,59 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=gpm
+pkgver=1.20.7.r38.ge82d1a6
+_commit='e82d1a653ca94aa4ed12441424da6ce780b1e530'
+pkgrel=2
+pkgdesc='A mouse server for the console and xterm'
+arch=('x86_64')
+url='https://www.nico.schottelius.org/software/gpm/'
+license=('GPL')
+depends=('bash' 'procps-ng')
+makedepends=('git')
+provides=('libgpm.so')
+options=('!makeflags')
+source=("git+https://github.com/telmich/gpm.git#commit=${_commit};
+'gpm.sh'
+'gpm.service')
+sha256sums=('SKIP'
+'f41e90dcf6c0c6c4b8eff1c69039a20eb6b38ea851ffd1fa47ba311bf83d6ed8'
+'dc7d2463f6670ff2c1646a571ffad51f7c603793c25c6f685efad13cbb444034')
+
+pkgver() {
+  cd "${srcdir}/${pkgname}"
+
+  GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"
+  printf '%s.r%s.g%s' \
+"${GITTAG}" \
+"$(git rev-list --count ${GITTAG}..)" \
+"$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  cd "${srcdir}/${pkgname}"
+
+  ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" install
+  install -D -m0755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
+  install -D -m0644 ../gpm.service 
"${pkgdir}/usr/lib/systemd/system/gpm.service"
+
+# library fixes
+  cd "${pkgdir}/usr/lib/"
+  ln -s libgpm.so.2.* libgpm.so
+  chmod 0755 "${pkgdir}"/usr/lib/libgpm.so.*
+}

Deleted: gpm.service
===
--- gpm.service 2020-09-15 15:05:26 UTC (rev 396155)
+++ gpm.service 2020-09-15 15:05:30 UTC (rev 396156)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Virtual console mouse server
-Requires=systemd-udevd.service
-After=systemd-udevd.service
-ConditionPathExists=/dev/input/mice
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/gpm -m /dev/input/mice -t imps2
-
-[Install]
-WantedBy=multi-user.target

Copied: gpm/repos/testing-x86_64/gpm.service (from rev 396155, 
gpm/trunk/gpm.service)
===
--- gpm.service (rev 0)
+++ gpm.service 2020-09-15 15:05:30 UTC (rev 396156)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Virtual console mouse server
+Requires=systemd-udevd.service
+After=systemd-udevd.service
+ConditionPathExists=/dev/input/mice
+
+[Service]

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

2020-09-15 Thread Christian Hesse via arch-commits
Date: Tuesday, September 15, 2020 @ 15:05:26
  Author: eworm
Revision: 396155

upgpkg: gpm 1.20.7.r38.ge82d1a6-2: add soname provide

Modified:
  gpm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 14:44:46 UTC (rev 396154)
+++ PKGBUILD2020-09-15 15:05:26 UTC (rev 396155)
@@ -3,7 +3,7 @@
 pkgname=gpm
 pkgver=1.20.7.r38.ge82d1a6
 _commit='e82d1a653ca94aa4ed12441424da6ce780b1e530'
-pkgrel=1
+pkgrel=2
 pkgdesc='A mouse server for the console and xterm'
 arch=('x86_64')
 url='https://www.nico.schottelius.org/software/gpm/'
@@ -10,6 +10,7 @@
 license=('GPL')
 depends=('bash' 'procps-ng')
 makedepends=('git')
+provides=('libgpm.so')
 options=('!makeflags')
 source=("git+https://github.com/telmich/gpm.git#commit=${_commit};
 'gpm.sh'


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

2020-09-15 Thread Levente Polyak via arch-commits
Date: Tuesday, September 15, 2020 @ 14:52:09
  Author: anthraxx
Revision: 707146

archrelease: copy trunk to community-x86_64

Added:
  brotli/repos/community-x86_64/PKGBUILD
(from rev 707145, brotli/trunk/PKGBUILD)
Deleted:
  brotli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 14:52:04 UTC (rev 707145)
+++ PKGBUILD2020-09-15 14:52:09 UTC (rev 707146)
@@ -1,75 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Lex Black 
-# Contributor: TingPing 
-# Contributor: Guillaume Horel 
-
-pkgbase=brotli
-pkgname=('brotli' 'python-brotli' 'python2-brotli' 'brotli-testdata')
-pkgver=1.0.7
-pkgrel=3
-pkgdesc='Brotli compression library'
-arch=('x86_64')
-license=('MIT')
-url='https://github.com/google/brotli'
-depends=('gcc-libs')
-makedepends=('cmake' 'python-setuptools' 'python2-setuptools')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/v$pkgver.tar.gz;)
-sha512sums=('a82362aa36d2f2094bca0b2808d9de0d57291fb3a4c29d7c0ca0a37e73087ec5ac4df299c8c363e61106fccf2fe7f58b5cf76eb97729e2696058ef43b1d3930a')
-
-prepare() {
-  cp -a brotli-$pkgver{,-py2}
-  mkdir -p build
-}
-
-build() {
-  cd "$srcdir"/brotli-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/brotli-$pkgver-py2
-  python2 setup.py build
-
-  cd "$srcdir"/build
-  cmake ../brotli-$pkgver -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
-  make
-}
-
-check() {
-  cd brotli-$pkgver
-  make test
-  python setup.py test
-  cd "$srcdir"/brotli-$pkgver-py2
-  python2 setup.py test
-}
-
-package_brotli() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-brotli() {
-  depends=('python')
-
-  cd brotli-$pkgver
-
-  python setup.py install --skip-build -O1 --root="$pkgdir"
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-brotli() {
-  depends=('python2')
-
-  cd brotli-$pkgver-py2
-
-  python2 setup.py install --skip-build -O1 --root="$pkgdir"
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_brotli-testdata() {
-  depends=()
-
-  cd brotli-$pkgver
-  install -dm755 "$pkgdir"/usr/share/brotli
-  cp -a tests/testdata "$pkgdir"/usr/share/brotli/
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: brotli/repos/community-x86_64/PKGBUILD (from rev 707145, 
brotli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 14:52:09 UTC (rev 707146)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+# Contributor: Lex Black 
+# Contributor: TingPing 
+# Contributor: Guillaume Horel 
+
+pkgbase=brotli
+pkgname=('brotli' 'python-brotli' 'brotli-testdata')
+_gitcommit=e61745a6b7add50d380cfd7d3883dd6c62fc2c71
+pkgver=1.0.9
+pkgrel=1
+pkgdesc='Generic-purpose lossless compression algorithm'
+url='https://github.com/google/brotli'
+arch=('x86_64')
+license=('MIT')
+makedepends=('git' 'glibc' 'gcc-libs' 'cmake' 'python-setuptools')
+source=(${pkgname}::"git+${url}#commit=${_gitcommit}")
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgbase}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${pkgbase}
+  python setup.py build
+  cmake -B build \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+   -DBUILD_SHARED_LIBS=True
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd ${pkgbase}
+  make test
+  python setup.py test
+}
+
+package_brotli() {
+  depends=('gcc-libs' 'glibc')
+  provides=(libbrotlicommon.so libbrotlidec.so libbrotlienc.so)
+
+  cd ${pkgbase}
+  make -C build DESTDIR="$pkgdir" install
+  local man;
+  for man in docs/*.?; do
+install -Dm 644 "$man" "$pkgdir/usr/share/man/man${man##*.}/${man##*/}"
+  done
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+package_python-brotli() {
+  pkgdesc+=' - python library'
+  depends=('python' 'glibc' 'gcc-libs')
+
+  cd ${pkgbase}
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+package_brotli-testdata() {
+  pkgdesc+=' - test data'
+  depends=()
+
+  cd ${pkgbase}
+  install -dm755 "$pkgdir"/usr/share/brotli
+  cp -a tests/testdata "$pkgdir"/usr/share/brotli/
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2020-09-15 Thread Levente Polyak via arch-commits
Date: Tuesday, September 15, 2020 @ 14:52:04
  Author: anthraxx
Revision: 707145

upgpkg: brotli 1.0.9-1

Modified:
  brotli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 14:44:49 UTC (rev 707144)
+++ PKGBUILD2020-09-15 14:52:04 UTC (rev 707145)
@@ -1,4 +1,5 @@
 # Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
 # Contributor: Lex Black 
 # Contributor: TingPing 
 # Contributor: Guillaume Horel 
@@ -5,57 +6,67 @@
 
 pkgbase=brotli
 pkgname=('brotli' 'python-brotli' 'brotli-testdata')
-pkgver=1.0.7
-pkgrel=3
-pkgdesc='Brotli compression library'
+_gitcommit=e61745a6b7add50d380cfd7d3883dd6c62fc2c71
+pkgver=1.0.9
+pkgrel=1
+pkgdesc='Generic-purpose lossless compression algorithm'
+url='https://github.com/google/brotli'
 arch=('x86_64')
 license=('MIT')
-url='https://github.com/google/brotli'
-depends=('gcc-libs')
-makedepends=('cmake' 'python-setuptools')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/v$pkgver.tar.gz;)
-sha512sums=('a82362aa36d2f2094bca0b2808d9de0d57291fb3a4c29d7c0ca0a37e73087ec5ac4df299c8c363e61106fccf2fe7f58b5cf76eb97729e2696058ef43b1d3930a')
+makedepends=('git' 'glibc' 'gcc-libs' 'cmake' 'python-setuptools')
+source=(${pkgname}::"git+${url}#commit=${_gitcommit}")
+sha512sums=('SKIP')
 
-prepare() {
-  cp -a brotli-$pkgver{,-py2}
-  mkdir -p build
+pkgver() {
+  cd ${pkgbase}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
 }
 
 build() {
-  cd "$srcdir"/brotli-$pkgver
+  cd ${pkgbase}
   python setup.py build
-
-  cd "$srcdir"/build
-  cmake ../brotli-$pkgver -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
-  make
+  cmake -B build \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+   -DBUILD_SHARED_LIBS=True
+  make -C build VERBOSE=1
 }
 
 check() {
-  cd brotli-$pkgver
+  cd ${pkgbase}
   make test
   python setup.py test
 }
 
 package_brotli() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  depends=('gcc-libs' 'glibc')
+  provides=(libbrotlicommon.so libbrotlidec.so libbrotlienc.so)
+
+  cd ${pkgbase}
+  make -C build DESTDIR="$pkgdir" install
+  local man;
+  for man in docs/*.?; do
+install -Dm 644 "$man" "$pkgdir/usr/share/man/man${man##*.}/${man##*/}"
+  done
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
 }
 
 package_python-brotli() {
-  depends=('python')
+  pkgdesc+=' - python library'
+  depends=('python' 'glibc' 'gcc-libs')
 
-  cd brotli-$pkgver
-
+  cd ${pkgbase}
   python setup.py install --skip-build -O1 --root="$pkgdir"
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
 }
 
 package_brotli-testdata() {
+  pkgdesc+=' - test data'
   depends=()
 
-  cd brotli-$pkgver
+  cd ${pkgbase}
   install -dm755 "$pkgdir"/usr/share/brotli
   cp -a tests/testdata "$pkgdir"/usr/share/brotli/
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
 }


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

2020-09-15 Thread Jan Steffens via arch-commits
Date: Tuesday, September 15, 2020 @ 14:02:47
  Author: heftig
Revision: 396148

archrelease: copy trunk to extra-x86_64

Added:
  libgudev/repos/extra-x86_64/PKGBUILD
(from rev 396147, libgudev/trunk/PKGBUILD)
Deleted:
  libgudev/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-15 14:01:32 UTC (rev 396147)
+++ PKGBUILD2020-09-15 14:02:47 UTC (rev 396148)
@@ -1,47 +0,0 @@
-# Maintainer: Evangelos Foutras 
-
-pkgname=libgudev
-pkgver=233
-pkgrel=2
-pkgdesc="GObject bindings for libudev"
-url="https://wiki.gnome.org/Projects/libgudev;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(systemd-libs glib2)
-makedepends=(systemd gobject-introspection gtk-doc git)
-provides=(libgudev-1.0.so)
-_commit=f76d04cbb66f9c0ef7f744ebc12f0336a4dc9170  # tags/233^0
-source=("git+https://gitlab.gnome.org/GNOME/libgudev.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-build() {
-  cd $pkgname
-  ./configure \
---prefix=/usr \
---enable-gtk-doc \
---disable-umockdev
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libgudev/repos/extra-x86_64/PKGBUILD (from rev 396147, 
libgudev/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-15 14:02:47 UTC (rev 396148)
@@ -0,0 +1,49 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=libgudev
+pkgver=234
+pkgrel=1
+pkgdesc="GObject bindings for libudev"
+url="https://wiki.gnome.org/Projects/libgudev;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(systemd-libs glib2)
+makedepends=(systemd gobject-introspection gtk-doc git)
+_commit=e9342ee019482a08fe435d6b656f8a6bdd196bce  # tags/234^0
+source=("git+https://gitlab.gnome.org/GNOME/libgudev.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--enable-gtk-doc \
+--disable-umockdev
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  depends+=(libg{lib,object}-2.0.so libudev.so)
+  provides+=(libgudev-1.0.so)
+
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-15 Thread Jan Steffens via arch-commits
Date: Tuesday, September 15, 2020 @ 14:01:32
  Author: heftig
Revision: 396147

fix depends

Modified:
  libgudev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 14:00:07 UTC (rev 396146)
+++ PKGBUILD2020-09-15 14:01:32 UTC (rev 396147)
@@ -39,7 +39,7 @@
 }
 
 package() {
-  depends+=(libg{lib,object}-2.0.so libudev.so.1)
+  depends+=(libg{lib,object}-2.0.so libudev.so)
   provides+=(libgudev-1.0.so)
 
   cd $pkgname


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

2020-09-15 Thread Jan Steffens via arch-commits
Date: Tuesday, September 15, 2020 @ 14:00:07
  Author: heftig
Revision: 396146

234-1

Modified:
  libgudev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 06:48:17 UTC (rev 396145)
+++ PKGBUILD2020-09-15 14:00:07 UTC (rev 396146)
@@ -1,8 +1,8 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=libgudev
-pkgver=233
-pkgrel=2
+pkgver=234
+pkgrel=1
 pkgdesc="GObject bindings for libudev"
 url="https://wiki.gnome.org/Projects/libgudev;
 arch=(x86_64)
@@ -9,8 +9,7 @@
 license=(LGPL2.1)
 depends=(systemd-libs glib2)
 makedepends=(systemd gobject-introspection gtk-doc git)
-provides=(libgudev-1.0.so)
-_commit=f76d04cbb66f9c0ef7f744ebc12f0336a4dc9170  # tags/233^0
+_commit=e9342ee019482a08fe435d6b656f8a6bdd196bce  # tags/234^0
 source=("git+https://gitlab.gnome.org/GNOME/libgudev.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -40,6 +39,9 @@
 }
 
 package() {
+  depends+=(libg{lib,object}-2.0.so libudev.so.1)
+  provides+=(libgudev-1.0.so)
+
   cd $pkgname
   make DESTDIR="$pkgdir" install
 }


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:10:28
  Author: felixonmars
Revision: 707131

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-core/repos/community-staging-x86_64/
  haskell-snap-core/repos/community-staging-x86_64/PKGBUILD
(from rev 707130, haskell-snap-core/trunk/PKGBUILD)

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

Copied: haskell-snap-core/repos/community-staging-x86_64/PKGBUILD (from rev 
707130, haskell-snap-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 11:10:28 UTC (rev 707131)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-core
+pkgname=haskell-snap-core
+pkgver=1.0.4.2
+pkgrel=39
+pkgdesc="A Haskell Web Framework (core interfaces and types)"
+url="https://github.com/JustusAdam/snap-core;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-old-locale' 'haskell-hunit' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-lifted-base' 'haskell-io-streams' 
'haskell-hashable'
+ 'haskell-monad-control' 'haskell-random' 'haskell-readable' 
'haskell-regex-posix'
+ 'haskell-transformers-base' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-parallel' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+
snap-core-fix-random-1.2.patch::https://github.com/snapframework/snap-core/pull/299.patch)
+sha512sums=('42e710ac58a7d3cf58f9fdeca6c9c4880a94765ee0dc42fbcdaf68a6c2c337e1715f8b89863c7f911232af493bf5622b647d4c962237f211f97d731572fd94f5'
+
'4c00e8bcf390c5e7367afe4879e34b5c5db8801080b63598cbfbda2cf73d4fc2180844383c8eabe814809d5a5a2d15c5f4da32a3ecea94a554d9dbedd858f501')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../snap-core-fix-random-1.2.patch
+sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+}
+
+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-snap-core/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:10:18
  Author: felixonmars
Revision: 707130

upgpkg: haskell-snap-core 1.0.4.2-39: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-snap-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 11:08:48 UTC (rev 707129)
+++ PKGBUILD2020-09-15 11:10:18 UTC (rev 707130)
@@ -3,7 +3,7 @@
 _hkgname=snap-core
 pkgname=haskell-snap-core
 pkgver=1.0.4.2
-pkgrel=38
+pkgrel=39
 pkgdesc="A Haskell Web Framework (core interfaces and types)"
 url="https://github.com/JustusAdam/snap-core;
 license=('BSD')


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:08:48
  Author: felixonmars
Revision: 707129

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
707128, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 11:08:48 UTC (rev 707129)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.8.5
+pkgrel=46
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-skylighting-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('9d40d96020a3b54d549259f6c981ff63f666f490e900f29eda437ed76965f172e9c77c4def36850e448ca0d3fad035ce4e9a244fd0b3748c6c24fb413c69614f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-executable
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:08:39
  Author: felixonmars
Revision: 707128

upgpkg: haskell-skylighting 0.8.5-46: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 11:08:06 UTC (rev 707127)
+++ PKGBUILD2020-09-15 11:08:39 UTC (rev 707128)
@@ -3,7 +3,7 @@
 _hkgname=skylighting
 pkgname=haskell-skylighting
 pkgver=0.8.5
-pkgrel=45
+pkgrel=46
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:08:06
  Author: felixonmars
Revision: 707127

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 707126, haskell-skylighting-core/trunk/PKGBUILD)

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 707126, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 11:08:06 UTC (rev 707127)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.8.5
+pkgrel=46
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ad411d7e0fd72adeb4cdbf6fc57d6191c51d9319b25c8d41ad35a66f885d518a842846cd7cf5ce35bdc31da74e0f9d97445f492628a4b5a2bceb85642aa23257')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fexecutable -fsystem-pcre
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:07:57
  Author: felixonmars
Revision: 707126

upgpkg: haskell-skylighting-core 0.8.5-46: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 11:06:58 UTC (rev 707125)
+++ PKGBUILD2020-09-15 11:07:57 UTC (rev 707126)
@@ -3,7 +3,7 @@
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
 pkgver=0.8.5
-pkgrel=45
+pkgrel=46
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:06:49
  Author: felixonmars
Revision: 707124

upgpkg: haskell-shake 0.19.1-61: rebuild with quickcheck-classes-base 0.6.1.0

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 11:00:14 UTC (rev 707123)
+++ PKGBUILD2020-09-15 11:06:49 UTC (rev 707124)
@@ -4,7 +4,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.19.1
-pkgrel=60
+pkgrel=61
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="https://shakebuild.com;
 license=("BSD")


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

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:06:58
  Author: felixonmars
Revision: 707125

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 707124, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-15 11:06:58 UTC (rev 707125)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.19.1
+pkgrel=61
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="https://shakebuild.com;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-file-embed' 'haskell-filepattern' 
'haskell-hashable'
+ 'haskell-heaps' 'haskell-js-dgtable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('dbc0e4e60b5c1e622538f4bdee011a4e2d67ea7dd7cead2cf56c1cb3490562858c0af58e920a0267ba1f3569af386a8a3c2aa0429bfb24ad3bca460975e714d9')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' 
src/Test/{Command.hs,CloseFileHandles.hs}
+sed -e 's/ghc -package=Cabal/ghc -package=Cabal -dynamic/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-e 
's/"configure",/"configure","--enable-executable-dynamic","--disable-library-vanilla",/'
 \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+
+# Not sure about this one:
+sed -i 's/at cmd, called at/at want, called at/' src/Test/Errors.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-portable -f-cloud -f-embed-files
+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-servant-swagger/trunk (PKGBUILD)

2020-09-15 Thread Felix Yan via arch-commits
Date: Tuesday, September 15, 2020 @ 11:00:05
  Author: felixonmars
Revision: 707122

upgpkg: haskell-servant-swagger 1.1.10-6: rebuild with quickcheck-classes-base 
0.6.1.0

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 10:59:22 UTC (rev 707121)
+++ PKGBUILD2020-09-15 11:00:05 UTC (rev 707122)
@@ -4,7 +4,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.10
-pkgrel=5
+pkgrel=6
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("BSD")


  1   2   3   >