[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-08-19 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 04:32:31
  Author: heftig
Revision: 500232

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 500231, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 500231, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  105 +++---
 config.toml |   57 ---
 2 files changed, 86 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 04:32:20 UTC (rev 500231)
+++ PKGBUILD2019-08-20 04:32:31 UTC (rev 500232)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.37.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
-'SKIP'
-'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 500231, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 04:32:31 UTC (rev 500232)
@@ -0,0 +1,57 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.37.0
+pkgrel=2
+
+_llvm_ver=8.0.1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=("llvm=$_llvm_ver" 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-$pkgrel")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
+config.toml)
+
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
+'SKIP'
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'b7dee253d4e55a34ce07e0f2b9f15197285458565a38eabf9d4d49870f133e68')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  export RUST_BACKTRACE=1
+  export RUST_COMPILER_RT_ROOT="$srcdir/compiler-rt-$_llvm_ver.src"
+
+  python ./x.py build -j"$(nproc)"
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  local target="$pkgdir/$(rustc --print sysroot)/lib/rustlib"
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-08-20 04:32:20 UTC (rev 500231)
+++ config.toml 2019-08-20 04:32:31 UTC (rev 500232)
@@ -1,28 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo-level = 2
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 500231, 
lib32-rust/trunk/config.toml)

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

2019-08-19 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 04:32:33
  Author: heftig
Revision: 359971

archrelease: copy trunk to extra-x86_64

Added:
  rust/repos/extra-x86_64/PKGBUILD
(from rev 359970, rust/trunk/PKGBUILD)
  rust/repos/extra-x86_64/config.toml
(from rev 359970, rust/trunk/config.toml)
Deleted:
  rust/repos/extra-x86_64/PKGBUILD
  rust/repos/extra-x86_64/config.toml

-+
 PKGBUILD|  161 ++
 config.toml |   55 ++-
 2 files changed, 114 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 04:30:23 UTC (rev 359970)
+++ PKGBUILD2019-08-20 04:32:33 UTC (rev 359971)
@@ -1,76 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-# Remember to bump lib32-rust as well!
-
-pkgname=('rust' 'rust-docs')
-epoch=1
-pkgver=1.37.0
-pkgrel=1
-
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('rust' 'llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-checkdepends=('procps-ng' 'gdb')
-
-options=('!emptydirs')
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
-'SKIP'
-'24a5fbf558c7ffb39b3e712f26e0261a2e1f35d2caff17981e828c36bb5c746a')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build -j"$(nproc)"
-}
-
-package_rust() {
-  depends=('gcc-libs' 'llvm-libs' 'curl' 'libssh2')
-  provides=('cargo' 'rustfmt')
-  conflicts=('cargo' 'rustfmt')
-  replaces=('cargo' 'rustfmt')
-
-  cd "rustc-$pkgver-src"
-
-  DESTDIR="$pkgdir" python ./x.py install
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-
-  cd "$pkgdir/usr/lib"
-
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-
-  # move docs out of the way for splitting
-  mv "$pkgdir"/usr/share/doc "$srcdir"
-
-  install -d "$pkgdir"/usr/share/bash-completion
-  mv "$pkgdir"/etc/bash_completion.d/ 
"$pkgdir"/usr/share/bash-completion/completions/
-}
-
-package_rust-docs() {
-  install -d "$pkgdir/usr/share/doc/"
-  mv "$srcdir"/doc/* "$pkgdir"/usr/share/doc/rust/
-
-  for license in APACHE MIT; do install -Dm644 
"rustc-$pkgver-src/LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/extra-x86_64/PKGBUILD (from rev 359970, rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 04:32:33 UTC (rev 359971)
@@ -0,0 +1,85 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+# Contributor: userwithuid 
+
+# Remember to bump lib32-rust as well!
+
+pkgname=('rust' 'rust-docs')
+epoch=1
+pkgver=1.37.0
+pkgrel=2
+
+_llvm_ver=8.0.1
+
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('rust' "llvm=$_llvm_ver" 'libffi' 'perl' 'python' 'curl' 'cmake')
+checkdepends=('procps-ng' 'gdb')
+
+options=('!emptydirs')
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
+config.toml)
+
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
+'SKIP'
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'07affeba0bf6a50ebfcc47b436cccfa01990802ad8fe567d1f3c9922a8fe')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  export RUST_BACKTRACE=1
+  export RUST_COMPILER_RT_ROOT="$srcdir/compiler-rt-$_llvm_ver.src"
+
+  python ./x.py build -j"$(nproc)"
+}
+
+package_rust() {
+  depends=('gcc-libs' 'llvm-libs' 'curl' 'libssh2')
+  provides=('cargo' 'rustfmt')
+  conflicts=('cargo' 'rustfmt')
+  replaces=('cargo' 'rustfmt')
+
+  cd "rustc-$pkgver-src"
+
+  DESTDIR="$pkgdir" python ./x.py install
+
+  for license in APACHE MIT; do install -Dm644 

[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

2019-08-19 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 04:32:20
  Author: heftig
Revision: 500231

1.37.0-2: enable profiling

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|   23 ---
 config.toml |1 +
 2 files changed, 17 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 23:49:05 UTC (rev 500230)
+++ PKGBUILD2019-08-20 04:32:20 UTC (rev 500231)
@@ -2,23 +2,29 @@
 
 pkgname=lib32-rust
 pkgver=1.37.0
-pkgrel=1
+pkgrel=2
 
+_llvm_ver=8.0.1
+
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'
 arch=('x86_64')
 license=('MIT' 'Apache')
 
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+makedepends=("llvm=$_llvm_ver" 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-$pkgrel")
 
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
 config.toml)
 
 sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
 'SKIP'
-'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'b7dee253d4e55a34ce07e0f2b9f15197285458565a38eabf9d4d49870f133e68')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

 
 prepare() {
   cd "rustc-$pkgver-src"
@@ -29,13 +35,16 @@
 build() {
   cd "rustc-$pkgver-src"
 
-  python ./x.py build
+  export RUST_BACKTRACE=1
+  export RUST_COMPILER_RT_ROOT="$srcdir/compiler-rt-$_llvm_ver.src"
+
+  python ./x.py build -j"$(nproc)"
 }
 
 package() {
   cd "rustc-$pkgver-src"
 
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  local target="$pkgdir/$(rustc --print sysroot)/lib/rustlib"
   install -d "$target"
   cp -r \
 build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \

Modified: config.toml
===
--- config.toml 2019-08-19 23:49:05 UTC (rev 500230)
+++ config.toml 2019-08-20 04:32:20 UTC (rev 500231)
@@ -8,6 +8,7 @@
 python = "python"
 extended = true
 sanitizers = false
+profiler = true
 local-rebuild = true
 
 [install]


[arch-commits] Commit in rust/trunk (PKGBUILD config.toml)

2019-08-19 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 04:30:23
  Author: heftig
Revision: 359970

1.37.0-2: enable profiling

Modified:
  rust/trunk/PKGBUILD
  rust/trunk/config.toml

-+
 PKGBUILD|   17 +
 config.toml |3 +++
 2 files changed, 16 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 00:32:47 UTC (rev 359969)
+++ PKGBUILD2019-08-20 04:30:23 UTC (rev 359970)
@@ -8,25 +8,31 @@
 pkgname=('rust' 'rust-docs')
 epoch=1
 pkgver=1.37.0
-pkgrel=1
+pkgrel=2
 
+_llvm_ver=8.0.1
+
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='https://www.rust-lang.org/'
 arch=('x86_64')
 license=('MIT' 'Apache')
 
-makedepends=('rust' 'llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+makedepends=('rust' "llvm=$_llvm_ver" 'libffi' 'perl' 'python' 'curl' 'cmake')
 checkdepends=('procps-ng' 'gdb')
 
 options=('!emptydirs')
 
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
 config.toml)
 
 sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
 'SKIP'
-'24a5fbf558c7ffb39b3e712f26e0261a2e1f35d2caff17981e828c36bb5c746a')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'07affeba0bf6a50ebfcc47b436cccfa01990802ad8fe567d1f3c9922a8fe')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

 
 prepare() {
   cd "rustc-$pkgver-src"
@@ -37,6 +43,9 @@
 build() {
   cd "rustc-$pkgver-src"
 
+  export RUST_BACKTRACE=1
+  export RUST_COMPILER_RT_ROOT="$srcdir/compiler-rt-$_llvm_ver.src"
+
   python ./x.py build -j"$(nproc)"
 }
 

Modified: config.toml
===
--- config.toml 2019-08-20 00:32:47 UTC (rev 359969)
+++ config.toml 2019-08-20 04:30:23 UTC (rev 359970)
@@ -2,11 +2,14 @@
 link-shared = true
 
 [build]
+target = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple
 cargo = "/usr/bin/cargo"
 rustc = "/usr/bin/rustc"
 python = "python"
 extended = true
 sanitizers = false
+profiler = true
+local-rebuild = false
 
 [install]
 prefix = "/usr"


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

2019-08-19 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 20, 2019 @ 00:32:47
  Author: bisson
Revision: 359969

archrelease: copy trunk to extra-x86_64

Added:
  whois/repos/extra-x86_64/PKGBUILD
(from rev 359968, whois/trunk/PKGBUILD)
Deleted:
  whois/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 00:32:28 UTC (rev 359968)
+++ PKGBUILD2019-08-20 00:32:47 UTC (rev 359969)
@@ -1,35 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=whois
-pkgver=5.5.0
-pkgrel=1
-pkgdesc='Intelligent WHOIS client'
-url='https://github.com/rfc1036/whois'
-license=('GPL')
-arch=('x86_64')
-depends=('libidn2')
-makedepends=('perl')
-source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-sha256sums=('64ec63339d7ad559cd6722bd3141a1e5787817bd921841a813ee17a0a34b6f3d')
-
-backup=('etc/whois.conf')
-
-build() {
-   #cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}-5.4.4"
-
-   make \
-   CONFIG_FILE=/etc/whois.conf \
-   CFLAGS="$CFLAGS $CPPFLAGS" \
-   HAVE_ICONV=1
-}
-
-package() {
-   #cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}-5.4.4"
-
-   make prefix=/usr BASEDIR="${pkgdir}" install-whois
-   install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
-}

Copied: whois/repos/extra-x86_64/PKGBUILD (from rev 359968, 
whois/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 00:32:47 UTC (rev 359969)
@@ -0,0 +1,33 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=whois
+pkgver=5.5.1
+pkgrel=1
+pkgdesc='Intelligent WHOIS client'
+url='https://github.com/rfc1036/whois'
+license=('GPL')
+arch=('x86_64')
+depends=('libidn2')
+makedepends=('perl')
+source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
+sha256sums=('ee8d802f2e6639d44db3c326f3f5e059a8571a8cd0da87e60c6ddb06713cac82')
+
+backup=('etc/whois.conf')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+   make \
+   CONFIG_FILE=/etc/whois.conf \
+   CFLAGS="$CFLAGS $CPPFLAGS" \
+   HAVE_ICONV=1
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+
+   make prefix=/usr BASEDIR="${pkgdir}" install-whois
+   install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
+}


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

2019-08-19 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, August 20, 2019 @ 00:32:28
  Author: bisson
Revision: 359968

upstream update

Modified:
  whois/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 23:12:02 UTC (rev 359967)
+++ PKGBUILD2019-08-20 00:32:28 UTC (rev 359968)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=whois
-pkgver=5.5.0
+pkgver=5.5.1
 pkgrel=1
 pkgdesc='Intelligent WHOIS client'
 url='https://github.com/rfc1036/whois'
@@ -12,13 +12,12 @@
 depends=('libidn2')
 makedepends=('perl')
 
source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-sha256sums=('64ec63339d7ad559cd6722bd3141a1e5787817bd921841a813ee17a0a34b6f3d')
+sha256sums=('ee8d802f2e6639d44db3c326f3f5e059a8571a8cd0da87e60c6ddb06713cac82')
 
 backup=('etc/whois.conf')
 
 build() {
-   #cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}-5.4.4"
+   cd "${srcdir}/${pkgname}"
 
make \
CONFIG_FILE=/etc/whois.conf \
@@ -27,8 +26,7 @@
 }
 
 package() {
-   #cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}-5.4.4"
+   cd "${srcdir}/${pkgname}"
 
make prefix=/usr BASEDIR="${pkgdir}" install-whois
install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"


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

2019-08-19 Thread Konstantin Gizdov via arch-commits
Date: Monday, August 19, 2019 @ 23:49:05
  Author: kgizdov
Revision: 500230

drop unneeded files in lib

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 23:33:33 UTC (rev 500229)
+++ PKGBUILD2019-08-19 23:49:05 UTC (rev 500230)
@@ -7,7 +7,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=1.14.0
 _pkgver=1.14.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
@@ -142,15 +142,12 @@
   sed -e 's/\/include/\/include\/tensorflow/' -i tensorflow.pc
   install -Dm644 tensorflow.pc "${pkgdir}"/usr/lib/pkgconfig/tensorflow.pc
   install -Dm755 bazel-bin/tensorflow/libtensorflow.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver}
-  install -Dm755 bazel-bin/tensorflow/libtensorflow.so.${pkgver}-2.params 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver}-2.params
   ln -s libtensorflow.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver:0:1}
   ln -s libtensorflow.so.${pkgver:0:1} "${pkgdir}"/usr/lib/libtensorflow.so
   install -Dm755 bazel-bin/tensorflow/libtensorflow_cc.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver}
-  install -Dm755 bazel-bin/tensorflow/libtensorflow_cc.so.${pkgver}-2.params 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver}-2.params
   ln -s libtensorflow_cc.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver:0:1}
   ln -s libtensorflow_cc.so.${pkgver:0:1} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so
   install -Dm755 bazel-bin/tensorflow/libtensorflow_framework.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver}
-  install -Dm755 
bazel-bin/tensorflow/libtensorflow_framework.so.${pkgver}-2.params 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver}-2.params
   ln -s libtensorflow_framework.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver:0:1}
   ln -s libtensorflow_framework.so.${pkgver:0:1} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so
   install -Dm644 tensorflow/c/c_api.h 
"${pkgdir}"/usr/include/tensorflow/tensorflow/c/c_api.h


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

2019-08-19 Thread Eli Schwartz via arch-commits
Date: Monday, August 19, 2019 @ 23:33:33
  Author: eschwartz
Revision: 500229

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 23:33:17 UTC (rev 500228)
+++ PKGBUILD2019-08-19 23:33:33 UTC (rev 500229)
@@ -1,68 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Nikola Milinković 
-# Submitter: Xiao-Long Chen 
-
-_pkgbase=regex
-pkgbase=python-regex
-pkgname=('python-regex' 'python2-regex')
-pkgver=2019.06.02
-pkgrel=1
-pkgdesc="Alternative python regular expression module."
-arch=('x86_64')
-url="https://bitbucket.org/mrabarnett/mrab-regex;
-license=('Python')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('95796000d83bfc6dbd8ad4c244fcfa5801ae1e0ac7c4893efff122b351ec0ee3')
-b2sums=('952b4962a05abcad1792b4c29ee666c382a61ed868c6463f1eec9df6b9e6ad5504bfb458a06c6a996529692b4587720204dbc94d30875d02f279953bf4fc3210')
-
-build() {
-  cd "regex-${pkgver}"
-
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "regex-${pkgver}"
-
-  pushd build/lib.linux-${CARCH}-3*/
-  python -c 'from regex.test.test_regex import test_main; test_main()'
-  popd
-
-  pushd build/lib.linux-${CARCH}-2*/
-  python2 -c 'from regex.test.test_regex import test_main; test_main()'
-  popd
-}
-
-package_python2-regex() {
-  depends=('python2')
-  pkgdesc="Alternative python regular expression module. (python2 version)"
-
-  cd "regex-${pkgver}"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -v -m755 -d "${pkgdir}/usr/share/doc/python2-regex"
-  install -v -m644 ./docs/Features.html 
"${pkgdir}/usr/share/doc/python2-regex/"
-  install -v -m644 ./docs/Features.rst "${pkgdir}/usr/share/doc/python2-regex/"
-  install -v -m644 ./docs/UnicodeProperties.txt 
"${pkgdir}/usr/share/doc/python2-regex/"
-
-  sed -n '1,/^$/p' regex_2/regex/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-regex() {
-  depends=('python')
-  pkgdesc="Alternative python regular expression module. (python3 version)"
-
-  cd "regex-${pkgver}"
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -v -m755 -d "${pkgdir}/usr/share/doc/python-regex"
-  install -v -m644 ./docs/Features.html "${pkgdir}/usr/share/doc/python-regex/"
-  install -v -m644 ./docs/Features.rst "${pkgdir}/usr/share/doc/python-regex/"
-  install -v -m644 ./docs/UnicodeProperties.txt 
"${pkgdir}/usr/share/doc/python-regex/"
-
-  sed -n '1,/^$/p' regex_3/regex/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-regex/repos/community-x86_64/PKGBUILD (from rev 500228, 
python-regex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 23:33:33 UTC (rev 500229)
@@ -0,0 +1,68 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Nikola Milinković 
+# Submitter: Xiao-Long Chen 
+
+_pkgbase=regex
+pkgbase=python-regex
+pkgname=('python-regex' 'python2-regex')
+pkgver=2019.08.19
+pkgrel=1
+pkgdesc="Alternative python regular expression module."
+arch=('x86_64')
+url="https://bitbucket.org/mrabarnett/mrab-regex;
+license=('Python')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('587b62d48ca359d2d4f02d486f1f0aa9a20fbaf23a9d4198c4bed72ab2f6c849')
+b2sums=('fb8c49856236e119fd125b18d0e82cdca418b6c911780a7301af09fc023e9b2e92b13ece62956b5de38b90d10b17a885ceb75e836e5e416b40d4c7e5092a202f')
+
+build() {
+  cd "regex-${pkgver}"
+
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "regex-${pkgver}"
+
+  pushd build/lib.linux-${CARCH}-3*/
+  python -c 'from regex.test.test_regex import test_main; test_main()'
+  popd
+
+  pushd build/lib.linux-${CARCH}-2*/
+  python2 -c 'from regex.test.test_regex import test_main; test_main()'
+  popd
+}
+
+package_python2-regex() {
+  depends=('python2')
+  pkgdesc="Alternative python regular expression module. (python2 version)"
+
+  cd "regex-${pkgver}"
+  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+  install -v -m755 -d "${pkgdir}/usr/share/doc/python2-regex"
+  install -v -m644 ./docs/Features.html 
"${pkgdir}/usr/share/doc/python2-regex/"
+  install -v -m644 

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

2019-08-19 Thread Eli Schwartz via arch-commits
Date: Monday, August 19, 2019 @ 23:33:17
  Author: eschwartz
Revision: 500228

upgpkg: python-regex 2019.08.19-1

upstream release

Modified:
  python-regex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 23:30:39 UTC (rev 500227)
+++ PKGBUILD2019-08-19 23:33:17 UTC (rev 500228)
@@ -6,7 +6,7 @@
 _pkgbase=regex
 pkgbase=python-regex
 pkgname=('python-regex' 'python2-regex')
-pkgver=2019.06.02
+pkgver=2019.08.19
 pkgrel=1
 pkgdesc="Alternative python regular expression module."
 arch=('x86_64')
@@ -15,8 +15,8 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('95796000d83bfc6dbd8ad4c244fcfa5801ae1e0ac7c4893efff122b351ec0ee3')
-b2sums=('952b4962a05abcad1792b4c29ee666c382a61ed868c6463f1eec9df6b9e6ad5504bfb458a06c6a996529692b4587720204dbc94d30875d02f279953bf4fc3210')
+sha256sums=('587b62d48ca359d2d4f02d486f1f0aa9a20fbaf23a9d4198c4bed72ab2f6c849')
+b2sums=('fb8c49856236e119fd125b18d0e82cdca418b6c911780a7301af09fc023e9b2e92b13ece62956b5de38b90d10b17a885ceb75e836e5e416b40d4c7e5092a202f')
 
 build() {
   cd "regex-${pkgver}"


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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 23:30:39
  Author: svenstaro
Revision: 500227

archrelease: copy trunk to community-x86_64

Added:
  cuda/repos/community-x86_64/PKGBUILD
(from rev 500226, cuda/trunk/PKGBUILD)
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
(from rev 500226, cuda/trunk/cuda-findgllib_mk.diff)
  cuda/repos/community-x86_64/cuda.conf
(from rev 500226, cuda/trunk/cuda.conf)
  cuda/repos/community-x86_64/cuda.install
(from rev 500226, cuda/trunk/cuda.install)
  cuda/repos/community-x86_64/cuda.sh
(from rev 500226, cuda/trunk/cuda.sh)
Deleted:
  cuda/repos/community-x86_64/PKGBUILD
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
  cuda/repos/community-x86_64/cuda.conf
  cuda/repos/community-x86_64/cuda.install
  cuda/repos/community-x86_64/cuda.sh

+
 PKGBUILD   |  170 ++-
 cuda-findgllib_mk.diff |   44 ++--
 cuda.conf  |6 -
 cuda.install   |   22 +++---
 cuda.sh|4 -
 5 files changed, 121 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 23:30:11 UTC (rev 500226)
+++ PKGBUILD2019-08-19 23:30:39 UTC (rev 500227)
@@ -1,87 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Co-Maintainer: Konstantin Gizdov 
-pkgname=cuda
-pkgver=10.1.168
-_basever=10.1.105
-_driverver=418.39
-pkgrel=4
-pkgdesc="NVIDIA's GPU programming toolkit"
-arch=('x86_64')
-url="https://developer.nvidia.com/cuda-zone;
-license=('custom:NVIDIA')
-depends=('gcc8-libs'  'gcc8' 'opencl-nvidia' 'nvidia-utils')
-replaces=('cuda-toolkit' 'cuda-sdk')
-provides=('cuda-toolkit' 'cuda-sdk')
-optdepends=('gdb: for cuda-gdb'
-'java-runtime=8: for nsight and nvvp')
-options=(!strip staticlibs)
-install=cuda.install
-source=(https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_${_basever}_${_driverver}_linux.run
-
https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.168_418.67_linux.run
-cuda.sh
-cuda.conf
-cuda-findgllib_mk.diff)
-sha512sums=('07cdc053989758e4cdccaad566cae7127fa79780ad85033ea52d33cc4c43c9de08e88dd087390c58b542e51703f256859cdf51a018ee57e6a412f45fb9561622'
-
'85635012ec7081e200fb46f973852939f9709e802f495c288d5f31ff1fbd283a578fdaca0afa8955e6e0c7ca6c4862428da5168e0938b48390952d8633350910'
-
'b3691913027b8390161c7412d87a905712d90434cc82027a52f203f8ae3dda755738f734f8190277471e4541d685b524568ad03af58d4b7ebad346eee11c10e4'
-
'714d973bc79446f73bebe85306b3566fe25b554bcbcba2fcbe76709a3eca71fb5d183ab4da2d3b5e9326cb9cd8d13a93f6d4a005ea5a41f7ef8e6c6e81e06b5e'
-
'41d6b6cad934f135eafde610d1cbd862033977fd4416a4b6abaa47709a70bab7fcf6f8377c21329084fb9db13f2a8c8c20e93c15292d7d4a6448d70a33b23f1b')
-
-prepare() {
-  sh cuda_${_basever}_${_driverver}_linux.run --target "${srcdir}" --noexec
-  sh cuda_10.1.168_418.67_linux.run --target "${srcdir}" --noexec
-
-  # Fix up samples tht use findgllib_mk
-  for f in builds/cuda-samples/*/*/findgllib.mk; do
-patch $f cuda-findgllib_mk.diff
-  done
-}
-
-package() {
-  mkdir -p "${pkgdir}/opt/"
-
-  cd "${srcdir}/builds"
-  cp -r cuda-toolkit "${pkgdir}/opt/cuda"
-  cp -r cublas/include/* "${pkgdir}/opt/cuda/include/"
-  cp -r cublas/lib64/* "${pkgdir}/opt/cuda/lib64/"
-  cp -r cuda-samples "${pkgdir}/opt/cuda/samples"
-  ln -s /opt/cuda/targets/x86_64-linux/lib "${pkgdir}/opt/cuda/lib"
-  ln -s /opt/cuda/nvvm/lib64 "${pkgdir}/opt/cuda/nvvm/lib"
-
-  # Define compilers for CUDA to use.
-  # This allows us to use older versions of GCC if we have to.
-  ln -s /usr/bin/gcc-8 "${pkgdir}/opt/cuda/bin/gcc"
-  ln -s /usr/bin/g++-8 "${pkgdir}/opt/cuda/bin/g++"
-
-  # Create soname links.
-  # We have to be weird about this since for some reason the ELF SONAME is 
incorrect or at least partially incorrect for some libs.
-  # Best we can do is create all symlinks and hope for the best.
-  # Their installer used to perform this for us but now it's all manual and I 
think this is what we'll be stuck with for now.
-  find cuda-toolkit/targets -type f -name '*.so*' ! -path '*stubs/*' -print0 | 
while read -rd $'\0' _lib; do
-_base=${_lib%.so.*}
-_current_soname=$(basename ${_lib%.*})
-while [[ $_current_soname != $(basename $_base) ]]; do
-  ln -sf ${_lib##*/} ${pkgdir}/opt/cuda/lib64/$_current_soname
-  _current_soname=${_current_soname%.*}
-done
-  done
-
-  # Install profile and ld.so.config files
-  install -Dm755 "${srcdir}/cuda.sh" "${pkgdir}/etc/profile.d/cuda.sh"
-  install -Dm644 "${srcdir}/cuda.conf" "${pkgdir}/etc/ld.so.conf.d/cuda.conf"
-
-  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /opt/cuda/doc/pdf/EULA.pdf 
"${pkgdir}/usr/share/licenses/${pkgname}/EULA.pdf"
-
-  # Remove included copy of java and link to system java 8
-  rm -fr  "${pkgdir}/opt/cuda/jre"
-  sed 

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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 23:30:11
  Author: svenstaro
Revision: 500226

upgpkg: cuda 10.1.243-1

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 20:46:50 UTC (rev 500225)
+++ PKGBUILD2019-08-19 23:30:11 UTC (rev 500226)
@@ -1,10 +1,9 @@
 # Maintainer: Sven-Hendrik Haase 
 # Co-Maintainer: Konstantin Gizdov 
 pkgname=cuda
-pkgver=10.1.168
-_basever=10.1.105
-_driverver=418.39
-pkgrel=4
+pkgver=10.1.243
+_driverver=418.87.00
+pkgrel=1
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('x86_64')
 url="https://developer.nvidia.com/cuda-zone;
@@ -16,20 +15,17 @@
 'java-runtime=8: for nsight and nvvp')
 options=(!strip staticlibs)
 install=cuda.install
-source=(https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_${_basever}_${_driverver}_linux.run
-
https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.168_418.67_linux.run
+source=(http://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_${pkgver}_${_driverver}_linux.run
 cuda.sh
 cuda.conf
 cuda-findgllib_mk.diff)
-sha512sums=('07cdc053989758e4cdccaad566cae7127fa79780ad85033ea52d33cc4c43c9de08e88dd087390c58b542e51703f256859cdf51a018ee57e6a412f45fb9561622'
-
'85635012ec7081e200fb46f973852939f9709e802f495c288d5f31ff1fbd283a578fdaca0afa8955e6e0c7ca6c4862428da5168e0938b48390952d8633350910'
+sha512sums=('f92b19d0242969a65a6e6db43bc293e442abc07a9e168c9e995692e1a401679504598c782e511be3879e1650b90f71a50bbc63c9ee45654c26b5007cdf33c4fe'
 
'b3691913027b8390161c7412d87a905712d90434cc82027a52f203f8ae3dda755738f734f8190277471e4541d685b524568ad03af58d4b7ebad346eee11c10e4'
 
'714d973bc79446f73bebe85306b3566fe25b554bcbcba2fcbe76709a3eca71fb5d183ab4da2d3b5e9326cb9cd8d13a93f6d4a005ea5a41f7ef8e6c6e81e06b5e'
 
'41d6b6cad934f135eafde610d1cbd862033977fd4416a4b6abaa47709a70bab7fcf6f8377c21329084fb9db13f2a8c8c20e93c15292d7d4a6448d70a33b23f1b')
 
 prepare() {
-  sh cuda_${_basever}_${_driverver}_linux.run --target "${srcdir}" --noexec
-  sh cuda_10.1.168_418.67_linux.run --target "${srcdir}" --noexec
+  sh cuda_${pkgver}_${_driverver}_linux.run --target "${srcdir}" --noexec
 
   # Fix up samples tht use findgllib_mk
   for f in builds/cuda-samples/*/*/findgllib.mk; do


[arch-commits] Commit in xfce4-settings/trunk (3 files)

2019-08-19 Thread Evangelos Foutras via arch-commits
Date: Monday, August 19, 2019 @ 23:11:54
  Author: foutrelis
Revision: 359966

upgpkg: xfce4-settings 4.14.0-2

Apply upstream fix for crashes in multi-monitor setups (FS#63449).

Added:
  xfce4-settings/trunk/0001-display-Assure-correct-gchar-Bug-15816.patch
  xfce4-settings/trunk/0002-display-Fix-profile-matching-in-xfsettingsd.patch
Modified:
  xfce4-settings/trunk/PKGBUILD

+
 0001-display-Assure-correct-gchar-Bug-15816.patch  |  103 +++
 0002-display-Fix-profile-matching-in-xfsettingsd.patch |   54 +++
 PKGBUILD   |   14 +-
 3 files changed, 168 insertions(+), 3 deletions(-)

Added: 0001-display-Assure-correct-gchar-Bug-15816.patch
===
--- 0001-display-Assure-correct-gchar-Bug-15816.patch   
(rev 0)
+++ 0001-display-Assure-correct-gchar-Bug-15816.patch   2019-08-19 23:11:54 UTC 
(rev 359966)
@@ -0,0 +1,103 @@
+From ae8221b23f72f62276bd0a0ffe129329b217a612 Mon Sep 17 00:00:00 2001
+From: Simon Steinbeiss 
+Date: Mon, 19 Aug 2019 18:09:48 +0200
+Subject: [PATCH 1/2] display: Assure correct gchar** (Bug #15816)
+
+---
+ common/display-profiles.c   | 7 +--
+ dialogs/display-settings/main.c | 5 -
+ xfsettingsd/displays.c  | 6 +-
+ 3 files changed, 10 insertions(+), 8 deletions(-)
+
+diff --git a/common/display-profiles.c b/common/display-profiles.c
+index 2265a223..1aab530e 100644
+--- a/common/display-profiles.c
 b/common/display-profiles.c
+@@ -108,7 +108,7 @@ display_settings_get_profiles (gchar **display_infos, 
XfconfChannel *channel)
+ continue;
+ }
+ 
+-profile_name = g_strdup_printf ("%s", *(current_elements+1));
++profile_name = g_strdup_printf ("%s", *(current_elements + 1));
+ g_strfreev (current_elements);
+ 
+ /* Walk through the profile and check if every EDID referenced there 
is also currently available */
+@@ -162,11 +162,6 @@ display_settings_get_profiles (gchar **display_infos, 
XfconfChannel *channel)
+ g_free (profile_name);
+ }
+ 
+-for (m = 0; m < noutput; ++m)
+-{
+-g_free (display_infos[m]);
+-}
+-g_free (display_infos);
+ g_list_free (channel_contents);
+ g_hash_table_destroy (properties);
+ 
+diff --git a/dialogs/display-settings/main.c b/dialogs/display-settings/main.c
+index bbabfaaa..dc528483 100644
+--- a/dialogs/display-settings/main.c
 b/dialogs/display-settings/main.c
+@@ -1264,12 +1264,13 @@ display_settings_get_display_infos (void)
+ gchar   **display_infos;
+ guint m;
+ 
+-display_infos = g_new0 (gchar *, xfce_randr->noutput);
++display_infos = g_new0 (gchar *, xfce_randr->noutput + 1);
+ /* get all display edids, to only query randr once */
+ for (m = 0; m < xfce_randr->noutput; ++m)
+ {
+ display_infos[m] = g_strdup_printf ("%s", xfce_randr_get_edid 
(xfce_randr, m));
+ }
++
+ return display_infos;
+ }
+ 
+@@ -1286,6 +1287,7 @@ display_settings_minimal_profile_populate (GtkBuilder 
*builder)
+ 
+ display_infos = display_settings_get_display_infos ();
+ profiles = display_settings_get_profiles (display_infos, display_channel);
++g_strfreev (display_infos);
+ 
+ current = g_list_first (profiles);
+ while (current)
+@@ -1386,6 +1388,7 @@ display_settings_profile_list_populate (GtkBuilder 
*builder)
+ 
+ display_infos = display_settings_get_display_infos ();
+ profiles = display_settings_get_profiles (display_infos, display_channel);
++g_strfreev (display_infos);
+ 
+ /* Populate treeview */
+ current = g_list_first (profiles);
+diff --git a/xfsettingsd/displays.c b/xfsettingsd/displays.c
+index 4933ca40..289ff206 100644
+--- a/xfsettingsd/displays.c
 b/xfsettingsd/displays.c
+@@ -444,7 +444,7 @@ xfce_displays_helper_get_display_infos (gint  noutput,
+ gint   m;
+ guint8*edid_data;
+ 
+-display_infos = g_new0 (gchar *, noutput);
++display_infos = g_new0 (gchar *, noutput + 1);
+ /* get all display edids, to only query randr once */
+ for (m = 0; m < noutput; ++m)
+ {
+@@ -452,7 +452,10 @@ xfce_displays_helper_get_display_infos (gint  noutput,
+ 
+ if (edid_data)
+ display_infos[m] = g_compute_checksum_for_data (G_CHECKSUM_SHA1 , 
edid_data, 128);
++else
++display_infos[m] = g_strdup ("");
+ }
++
+ return display_infos;
+ }
+ 
+@@ -473,6 +476,7 @@ xfce_displays_helper_get_matching_profile 
(XfceDisplaysHelper *helper)
+ if (display_infos)
+ {
+ profiles = display_settings_get_profiles (display_infos, 
helper->channel);
++g_strfreev (display_infos);
+ }
+ 
+ if (profiles == NULL)

Added: 0002-display-Fix-profile-matching-in-xfsettingsd.patch
===
--- 

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

2019-08-19 Thread Evangelos Foutras via arch-commits
Date: Monday, August 19, 2019 @ 23:12:02
  Author: foutrelis
Revision: 359967

archrelease: copy trunk to extra-x86_64

Added:
  
xfce4-settings/repos/extra-x86_64/0001-display-Assure-correct-gchar-Bug-15816.patch
(from rev 359966, 
xfce4-settings/trunk/0001-display-Assure-correct-gchar-Bug-15816.patch)
  
xfce4-settings/repos/extra-x86_64/0002-display-Fix-profile-matching-in-xfsettingsd.patch
(from rev 359966, 
xfce4-settings/trunk/0002-display-Fix-profile-matching-in-xfsettingsd.patch)
  xfce4-settings/repos/extra-x86_64/PKGBUILD
(from rev 359966, xfce4-settings/trunk/PKGBUILD)
  xfce4-settings/repos/extra-x86_64/default-xsettings-xml.patch
(from rev 359966, xfce4-settings/trunk/default-xsettings-xml.patch)
Deleted:
  xfce4-settings/repos/extra-x86_64/PKGBUILD
  xfce4-settings/repos/extra-x86_64/default-xsettings-xml.patch

+
 0001-display-Assure-correct-gchar-Bug-15816.patch  |  103 +
 0002-display-Fix-profile-matching-in-xfsettingsd.patch |   54 +++
 PKGBUILD   |  112 ---
 default-xsettings-xml.patch|   52 +++---
 4 files changed, 243 insertions(+), 78 deletions(-)

Copied: 
xfce4-settings/repos/extra-x86_64/0001-display-Assure-correct-gchar-Bug-15816.patch
 (from rev 359966, 
xfce4-settings/trunk/0001-display-Assure-correct-gchar-Bug-15816.patch)
===
--- 0001-display-Assure-correct-gchar-Bug-15816.patch   
(rev 0)
+++ 0001-display-Assure-correct-gchar-Bug-15816.patch   2019-08-19 23:12:02 UTC 
(rev 359967)
@@ -0,0 +1,103 @@
+From ae8221b23f72f62276bd0a0ffe129329b217a612 Mon Sep 17 00:00:00 2001
+From: Simon Steinbeiss 
+Date: Mon, 19 Aug 2019 18:09:48 +0200
+Subject: [PATCH 1/2] display: Assure correct gchar** (Bug #15816)
+
+---
+ common/display-profiles.c   | 7 +--
+ dialogs/display-settings/main.c | 5 -
+ xfsettingsd/displays.c  | 6 +-
+ 3 files changed, 10 insertions(+), 8 deletions(-)
+
+diff --git a/common/display-profiles.c b/common/display-profiles.c
+index 2265a223..1aab530e 100644
+--- a/common/display-profiles.c
 b/common/display-profiles.c
+@@ -108,7 +108,7 @@ display_settings_get_profiles (gchar **display_infos, 
XfconfChannel *channel)
+ continue;
+ }
+ 
+-profile_name = g_strdup_printf ("%s", *(current_elements+1));
++profile_name = g_strdup_printf ("%s", *(current_elements + 1));
+ g_strfreev (current_elements);
+ 
+ /* Walk through the profile and check if every EDID referenced there 
is also currently available */
+@@ -162,11 +162,6 @@ display_settings_get_profiles (gchar **display_infos, 
XfconfChannel *channel)
+ g_free (profile_name);
+ }
+ 
+-for (m = 0; m < noutput; ++m)
+-{
+-g_free (display_infos[m]);
+-}
+-g_free (display_infos);
+ g_list_free (channel_contents);
+ g_hash_table_destroy (properties);
+ 
+diff --git a/dialogs/display-settings/main.c b/dialogs/display-settings/main.c
+index bbabfaaa..dc528483 100644
+--- a/dialogs/display-settings/main.c
 b/dialogs/display-settings/main.c
+@@ -1264,12 +1264,13 @@ display_settings_get_display_infos (void)
+ gchar   **display_infos;
+ guint m;
+ 
+-display_infos = g_new0 (gchar *, xfce_randr->noutput);
++display_infos = g_new0 (gchar *, xfce_randr->noutput + 1);
+ /* get all display edids, to only query randr once */
+ for (m = 0; m < xfce_randr->noutput; ++m)
+ {
+ display_infos[m] = g_strdup_printf ("%s", xfce_randr_get_edid 
(xfce_randr, m));
+ }
++
+ return display_infos;
+ }
+ 
+@@ -1286,6 +1287,7 @@ display_settings_minimal_profile_populate (GtkBuilder 
*builder)
+ 
+ display_infos = display_settings_get_display_infos ();
+ profiles = display_settings_get_profiles (display_infos, display_channel);
++g_strfreev (display_infos);
+ 
+ current = g_list_first (profiles);
+ while (current)
+@@ -1386,6 +1388,7 @@ display_settings_profile_list_populate (GtkBuilder 
*builder)
+ 
+ display_infos = display_settings_get_display_infos ();
+ profiles = display_settings_get_profiles (display_infos, display_channel);
++g_strfreev (display_infos);
+ 
+ /* Populate treeview */
+ current = g_list_first (profiles);
+diff --git a/xfsettingsd/displays.c b/xfsettingsd/displays.c
+index 4933ca40..289ff206 100644
+--- a/xfsettingsd/displays.c
 b/xfsettingsd/displays.c
+@@ -444,7 +444,7 @@ xfce_displays_helper_get_display_infos (gint  noutput,
+ gint   m;
+ guint8*edid_data;
+ 
+-display_infos = g_new0 (gchar *, noutput);
++display_infos = g_new0 (gchar *, noutput + 1);
+ /* get all display edids, to only query randr once */
+ for (m = 0; m < noutput; ++m)
+ {
+@@ -452,7 +452,10 @@ xfce_displays_helper_get_display_infos (gint  

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

2019-08-19 Thread Levente Polyak via arch-commits
Date: Monday, August 19, 2019 @ 20:46:46
  Author: anthraxx
Revision: 500224

upgpkg: ruby-addressable 2.6.0-2 remove pinned dependency FS#63500

Modified:
  ruby-addressable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:55:14 UTC (rev 500223)
+++ PKGBUILD2019-08-19 20:46:46 UTC (rev 500224)
@@ -6,7 +6,7 @@
 _gemname=addressable
 pkgname=ruby-addressable
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='URI Implementation'
 arch=('any')
 url='https://github.com/sporkmonger/addressable'
@@ -20,7 +20,8 @@
 
 prepare() {
   cd ${_gemname}-${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys 
bla bla
+  sed -E 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed -E 's|"< [0-9.]+", ||g' -i ${_gemname}.gemspec
 }
 
 build() {


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

2019-08-19 Thread Levente Polyak via arch-commits
Date: Monday, August 19, 2019 @ 20:46:50
  Author: anthraxx
Revision: 500225

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 20:46:46 UTC (rev 500224)
+++ PKGBUILD2019-08-19 20:46:50 UTC (rev 500225)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-# Contributor: Mario Finelli 
-# Contributor: Artem Vorotnikov 
-
-_gemname=addressable
-pkgname=ruby-addressable
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='URI Implementation'
-arch=('any')
-url='https://github.com/sporkmonger/addressable'
-license=('Apache')
-depends=('ruby' 'ruby-public_suffix')
-makedepends=('ruby-rdoc')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sporkmonger/addressable/archive/addressable-${pkgver}.tar.gz)
-sha256sums=('fd41dd66a08b3647346a5d5cf996bedc571a685a722cc489348fba160a7d7595')
-sha512sums=('9e889c173d32bfd1311a2a8cab6e2caa28666bb10387e2c5ccde6ce42b94d7366ce723a9ce3af6768b35fa4d5ef3a23ecf68d24ab31e12928e23dac178fab87f')
-
-prepare() {
-  cd ${_gemname}-${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys 
bla bla
-}
-
-build() {
-  cd ${_gemname}-${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-addressable/repos/community-any/PKGBUILD (from rev 500224, 
ruby-addressable/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 20:46:50 UTC (rev 500225)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+# Contributor: Mario Finelli 
+# Contributor: Artem Vorotnikov 
+
+_gemname=addressable
+pkgname=ruby-addressable
+pkgver=2.6.0
+pkgrel=2
+pkgdesc='URI Implementation'
+arch=('any')
+url='https://github.com/sporkmonger/addressable'
+license=('Apache')
+depends=('ruby' 'ruby-public_suffix')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sporkmonger/addressable/archive/addressable-${pkgver}.tar.gz)
+sha256sums=('fd41dd66a08b3647346a5d5cf996bedc571a685a722cc489348fba160a7d7595')
+sha512sums=('9e889c173d32bfd1311a2a8cab6e2caa28666bb10387e2c5ccde6ce42b94d7366ce723a9ce3af6768b35fa4d5ef3a23ecf68d24ab31e12928e23dac178fab87f')
+
+prepare() {
+  cd ${_gemname}-${_gemname}-${pkgver}
+  sed -E 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed -E 's|"< [0-9.]+", ||g' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-08-19 Thread Johannes Löthberg via arch-commits
Date: Monday, August 19, 2019 @ 19:55:14
  Author: demize
Revision: 500223

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 500222, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 500222, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   96 +-
 config.toml |   57 --
 2 files changed, 76 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:55:07 UTC (rev 500222)
+++ PKGBUILD2019-08-19 19:55:14 UTC (rev 500223)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.36.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
-'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 500222, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:55:14 UTC (rev 500223)
@@ -0,0 +1,48 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.37.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
+'SKIP'
+'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  python ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-08-19 19:55:07 UTC (rev 500222)
+++ config.toml 2019-08-19 19:55:14 UTC (rev 500223)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 500222, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-08-19 19:55:14 UTC (rev 500223)
@@ -0,0 +1,28 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python"
+extended = true
+sanitizers = false
+local-rebuild = true
+
+[install]
+prefix = "/usr"
+
+[rust]
+# 0 or 

[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

2019-08-19 Thread Johannes Löthberg via arch-commits
Date: Monday, August 19, 2019 @ 19:55:07
  Author: demize
Revision: 500222

upgpkg: lib32-rust 1.37.0-1

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|6 +++---
 config.toml |3 +--
 2 files changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:32:11 UTC (rev 500221)
+++ PKGBUILD2019-08-19 19:55:07 UTC (rev 500222)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.36.0
+pkgver=1.37.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,9 +15,9 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
 'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
+'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
 
 prepare() {

Modified: config.toml
===
--- config.toml 2019-08-19 19:32:11 UTC (rev 500221)
+++ config.toml 2019-08-19 19:55:07 UTC (rev 500222)
@@ -18,8 +18,7 @@
 # https://github.com/rust-lang/rust/issues/47745
 codegen-units = 1
 
-debuginfo = true
-debuginfo-lines = true
+debuginfo-level = 2
 
 channel = "stable"
 


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:32:05
  Author: aginiewicz
Revision: 500220

upgpkg: python-statsmodels 0.10.1-1

python-statsmodels: new upstream release

Modified:
  python-statsmodels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:16:52 UTC (rev 500219)
+++ PKGBUILD2019-08-19 19:32:05 UTC (rev 500220)
@@ -5,7 +5,7 @@
 # TODO: create X-12-ARIMA or X-13ARIMA-SEATS (can be used for time-series 
analysis)
 
 pkgname='python-statsmodels'
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc="Statistical computations and models for use with SciPy"
 arch=('x86_64')
@@ -18,7 +18,7 @@
'python-joblib:  accelerate distributed estimation for certain 
models'
'jupyter: needed to run the notebooks')
 source=("https://github.com/statsmodels/statsmodels/archive/v${pkgver}.tar.gz;)
-sha256sums=('3aae6454480f485821a8e5761a0456030bc7e41f01648b177d141899f06588e6')
+sha256sums=('269ec50719c47f946cf3872b8abfcb36e15d5614e3bb81c4c39e74cce673d5b8')
 
 build() {
   cd "$srcdir"/statsmodels-${pkgver}
@@ -31,4 +31,6 @@
   python setup.py install --skip-build --root="$pkgdir" --optimize=1
 
   install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm "$pkgdir"/usr/{LICENSE.txt,setup.cfg}
 }


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:32:11
  Author: aginiewicz
Revision: 500221

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:32:05 UTC (rev 500220)
+++ PKGBUILD2019-08-19 19:32:11 UTC (rev 500221)
@@ -1,34 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Oliver Sherouse 
-
-# TODO: move python-joblib from AUR (needed to accelerate distributed 
estimation for certain models)
-# TODO: create X-12-ARIMA or X-13ARIMA-SEATS (can be used for time-series 
analysis)
-
-pkgname='python-statsmodels'
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Statistical computations and models for use with SciPy"
-arch=('x86_64')
-url="http://statsmodels.sourceforge.net/;
-license=('BSD')
-depends=('python-scipy' 'python-pandas' 'python-patsy')
-makedepends=('python-setuptools' 'cython')
-optdepends=('python-nose: needed for integrated test suite'
-'python-matplotlib: needed for plotting functions'
-   'python-joblib:  accelerate distributed estimation for certain 
models'
-   'jupyter: needed to run the notebooks')
-source=("https://github.com/statsmodels/statsmodels/archive/v${pkgver}.tar.gz;)
-sha256sums=('3aae6454480f485821a8e5761a0456030bc7e41f01648b177d141899f06588e6')
-
-build() {
-  cd "$srcdir"/statsmodels-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/statsmodels-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-statsmodels/repos/community-x86_64/PKGBUILD (from rev 500220, 
python-statsmodels/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:32:11 UTC (rev 500221)
@@ -0,0 +1,36 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Oliver Sherouse 
+
+# TODO: move python-joblib from AUR (needed to accelerate distributed 
estimation for certain models)
+# TODO: create X-12-ARIMA or X-13ARIMA-SEATS (can be used for time-series 
analysis)
+
+pkgname='python-statsmodels'
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="Statistical computations and models for use with SciPy"
+arch=('x86_64')
+url="http://statsmodels.sourceforge.net/;
+license=('BSD')
+depends=('python-scipy' 'python-pandas' 'python-patsy')
+makedepends=('python-setuptools' 'cython')
+optdepends=('python-nose: needed for integrated test suite'
+'python-matplotlib: needed for plotting functions'
+   'python-joblib:  accelerate distributed estimation for certain 
models'
+   'jupyter: needed to run the notebooks')
+source=("https://github.com/statsmodels/statsmodels/archive/v${pkgver}.tar.gz;)
+sha256sums=('269ec50719c47f946cf3872b8abfcb36e15d5614e3bb81c4c39e74cce673d5b8')
+
+build() {
+  cd "$srcdir"/statsmodels-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/statsmodels-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm "$pkgdir"/usr/{LICENSE.txt,setup.cfg}
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:16:50
  Author: aginiewicz
Revision: 500218

upgpkg: python-traitsui 6.1.2-1

python-traitsui: new upstream release

Modified:
  python-traitsui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:15:35 UTC (rev 500217)
+++ PKGBUILD2019-08-19 19:16:50 UTC (rev 500218)
@@ -1,7 +1,7 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname='python-traitsui'
-pkgver=6.1.1
+pkgver=6.1.2
 pkgrel=1
 pkgdesc="Traits-capable user interfaces"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python-pyface')
 makedepends=('python-setuptools')
 
source=("traitsui-${pkgver}.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;)
-sha256sums=('1a223fe0da390727f7d502255412b8f604b1f93a9239625dca705ec67b23bd8d')
+sha256sums=('53a6f176bfab9d94035ef77dceb467539b712f147f4d8ae4cf6cd22244f219d3')
 
 build() {
   cd "$srcdir"/traitsui-$pkgver


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:16:52
  Author: aginiewicz
Revision: 500219

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:16:50 UTC (rev 500218)
+++ PKGBUILD2019-08-19 19:16:52 UTC (rev 500219)
@@ -1,27 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname='python-traitsui'
-pkgver=6.1.1
-pkgrel=1
-pkgdesc="Traits-capable user interfaces"
-arch=('any')
-url="https://github.com/enthought/traitsui;
-license=('BSD')
-depends=('python-pyface')
-makedepends=('python-setuptools')
-source=("traitsui-${pkgver}.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;)
-sha256sums=('1a223fe0da390727f7d502255412b8f604b1f93a9239625dca705ec67b23bd8d')
-
-build() {
-  cd "$srcdir"/traitsui-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/traitsui-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-traitsui/repos/community-any/PKGBUILD (from rev 500218, 
python-traitsui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:16:52 UTC (rev 500219)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgname='python-traitsui'
+pkgver=6.1.2
+pkgrel=1
+pkgdesc="Traits-capable user interfaces"
+arch=('any')
+url="https://github.com/enthought/traitsui;
+license=('BSD')
+depends=('python-pyface')
+makedepends=('python-setuptools')
+source=("traitsui-${pkgver}.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;)
+sha256sums=('53a6f176bfab9d94035ef77dceb467539b712f147f4d8ae4cf6cd22244f219d3')
+
+build() {
+  cd "$srcdir"/traitsui-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/traitsui-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:15:31
  Author: aginiewicz
Revision: 500216

upgpkg: python-pyface 6.1.2-1

python-pyfrace: new upstream release

Modified:
  python-pyface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:14:06 UTC (rev 500215)
+++ PKGBUILD2019-08-19 19:15:31 UTC (rev 500216)
@@ -4,7 +4,7 @@
 # TODO: look for more hidden dependencies
 
 pkgname='python-pyface'
-pkgver=6.1.1
+pkgver=6.1.2
 pkgrel=1
 pkgdesc="Traits-capable windowing framework"
 arch=('any')
@@ -21,7 +21,7 @@
 'python-wxpython: for wx backend')
 options=(!emptydirs)
 
source=("pyface-${pkgver}.tar.gz::https://github.com/enthought/pyface/archive/${pkgver}.tar.gz;)
-sha256sums=('1ab09989aea7f2d1a4f4114c75b4d60c848aa697f69ad1410befe3692a2d5ce9')
+sha256sums=('70f9977de7294b3804cd5e36b71ba22679e0ab58a6034da32e888e355ac876fa')
 
 build() {
   cd "$srcdir"/pyface-$pkgver


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:15:35
  Author: aginiewicz
Revision: 500217

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:15:31 UTC (rev 500216)
+++ PKGBUILD2019-08-19 19:15:35 UTC (rev 500217)
@@ -1,38 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-# TODO: python-scimath: for unit parser in pyface.wx.spreadsheet
-# TODO: look for more hidden dependencies
-
-pkgname='python-pyface'
-pkgver=6.1.1
-pkgrel=1
-pkgdesc="Traits-capable windowing framework"
-arch=('any')
-url="https://github.com/enthought/pyface;
-license=('BSD')
-depends=('python-traits')
-makedepends=('python-setuptools')
-optdepends=('python-pyqt5: for Qt backend (or pyside2)'
-'python-pyqtwebengine: for Qt backend'
-'pyside2: for Qt backend (or python-pyqt5)'
-'python-pygments: for syntax coloring in Qt backend'
-'python-setuptools: to locate resources inside zip and egg files'
-'ipython: for IPython widget'
-'python-wxpython: for wx backend')
-options=(!emptydirs)
-source=("pyface-${pkgver}.tar.gz::https://github.com/enthought/pyface/archive/${pkgver}.tar.gz;)
-sha256sums=('1ab09989aea7f2d1a4f4114c75b4d60c848aa697f69ad1410befe3692a2d5ce9')
-
-build() {
-  cd "$srcdir"/pyface-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/pyface-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pyface/repos/community-any/PKGBUILD (from rev 500216, 
python-pyface/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:15:35 UTC (rev 500217)
@@ -0,0 +1,38 @@
+# Maintainer: Andrzej Giniewicz 
+
+# TODO: python-scimath: for unit parser in pyface.wx.spreadsheet
+# TODO: look for more hidden dependencies
+
+pkgname='python-pyface'
+pkgver=6.1.2
+pkgrel=1
+pkgdesc="Traits-capable windowing framework"
+arch=('any')
+url="https://github.com/enthought/pyface;
+license=('BSD')
+depends=('python-traits')
+makedepends=('python-setuptools')
+optdepends=('python-pyqt5: for Qt backend (or pyside2)'
+'python-pyqtwebengine: for Qt backend'
+'pyside2: for Qt backend (or python-pyqt5)'
+'python-pygments: for syntax coloring in Qt backend'
+'python-setuptools: to locate resources inside zip and egg files'
+'ipython: for IPython widget'
+'python-wxpython: for wx backend')
+options=(!emptydirs)
+source=("pyface-${pkgver}.tar.gz::https://github.com/enthought/pyface/archive/${pkgver}.tar.gz;)
+sha256sums=('70f9977de7294b3804cd5e36b71ba22679e0ab58a6034da32e888e355ac876fa')
+
+build() {
+  cd "$srcdir"/pyface-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/pyface-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:14:06
  Author: aginiewicz
Revision: 500215

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:14:00 UTC (rev 500214)
+++ PKGBUILD2019-08-19 19:14:06 UTC (rev 500215)
@@ -1,27 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname='python-traits'
-pkgver=5.1.1
-pkgrel=1
-pkgdesc="Explicitly typed attributes for Python"
-arch=('x86_64')
-url="https://github.com/enthought/traits;
-license=('BSD')
-depends=('python-numpy')
-makedepends=('python-setuptools')
-source=("traits-${pkgver}.tar.gz::https://github.com/enthought/traits/archive/${pkgver}.tar.gz;)
-sha256sums=('f1c80743dc952c34d25438be202071aef7d397ea9d29995efce9a6f300271d24')
-
-build() {
-  cd "$srcdir"/traits-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/traits-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-traits/repos/community-x86_64/PKGBUILD (from rev 500214, 
python-traits/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:14:06 UTC (rev 500215)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgname='python-traits'
+pkgver=5.1.2
+pkgrel=1
+pkgdesc="Explicitly typed attributes for Python"
+arch=('x86_64')
+url="https://github.com/enthought/traits;
+license=('BSD')
+depends=('python-numpy')
+makedepends=('python-setuptools')
+source=("traits-${pkgver}.tar.gz::https://github.com/enthought/traits/archive/${pkgver}.tar.gz;)
+sha256sums=('9bafc5211ddbb4f6949511726c1696a080d0a3498c2657b6a1527029b7df7951')
+
+build() {
+  cd "$srcdir"/traits-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/traits-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:14:00
  Author: aginiewicz
Revision: 500214

upgpkg: python-traits 5.1.2-1

python-traits: new upstream release

Modified:
  python-traits/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:05:16 UTC (rev 500213)
+++ PKGBUILD2019-08-19 19:14:00 UTC (rev 500214)
@@ -1,7 +1,7 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname='python-traits'
-pkgver=5.1.1
+pkgver=5.1.2
 pkgrel=1
 pkgdesc="Explicitly typed attributes for Python"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('python-numpy')
 makedepends=('python-setuptools')
 
source=("traits-${pkgver}.tar.gz::https://github.com/enthought/traits/archive/${pkgver}.tar.gz;)
-sha256sums=('f1c80743dc952c34d25438be202071aef7d397ea9d29995efce9a6f300271d24')
+sha256sums=('9bafc5211ddbb4f6949511726c1696a080d0a3498c2657b6a1527029b7df7951')
 
 build() {
   cd "$srcdir"/traits-$pkgver


[arch-commits] Commit in python-scikit-learn/repos/community-x86_64 (2 files)

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:05:16
  Author: aginiewicz
Revision: 500213

archrelease: copy trunk to community-x86_64

Added:
  python-scikit-learn/repos/community-x86_64/PKGBUILD
(from rev 500212, python-scikit-learn/trunk/PKGBUILD)
Deleted:
  python-scikit-learn/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:05:10 UTC (rev 500212)
+++ PKGBUILD2019-08-19 19:05:16 UTC (rev 500213)
@@ -1,33 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname='python-scikit-learn'
-pkgver=0.21.2
-pkgrel=2
-pkgdesc="A set of python modules for machine learning and data mining"
-arch=('x86_64')
-url="http://scikit-learn.sourceforge.net/;
-license=('BSD')
-depends=('python-scipy' 'python-joblib')
-optdepends=('python-matplotlib: for examples with plotting')
-makedepends=('python-setuptools' 'cython')
-options=(!emptydirs)
-
-source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
-sha256sums=('4f6af7ef3a189aa963ad2731cea9f17863dd819dbf0dd7568ab4946566d76c24')
-
-build() {
-  cd "$srcdir"/scikit-learn-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/scikit-learn-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # See FS#49651
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
-}

Copied: python-scikit-learn/repos/community-x86_64/PKGBUILD (from rev 500212, 
python-scikit-learn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:05:16 UTC (rev 500213)
@@ -0,0 +1,33 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgname='python-scikit-learn'
+pkgver=0.21.3
+pkgrel=1
+pkgdesc="A set of python modules for machine learning and data mining"
+arch=('x86_64')
+url="http://scikit-learn.sourceforge.net/;
+license=('BSD')
+depends=('python-scipy' 'python-joblib')
+optdepends=('python-matplotlib: for examples with plotting')
+makedepends=('python-setuptools' 'cython' 'openmp')
+options=(!emptydirs)
+
+source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
+sha256sums=('260f66e9c643207fe8cfe0995242060fdb14137b5e69a8dd273ac463b7e9426b')
+
+build() {
+  cd "$srcdir"/scikit-learn-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/scikit-learn-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # See FS#49651
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 19:05:10
  Author: aginiewicz
Revision: 500212

upgpkg: python-scikit-learn 0.21.3-1

python-scikit-learn: new upstream release

Modified:
  python-scikit-learn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 18:54:53 UTC (rev 500211)
+++ PKGBUILD2019-08-19 19:05:10 UTC (rev 500212)
@@ -1,8 +1,8 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname='python-scikit-learn'
-pkgver=0.21.2
-pkgrel=2
+pkgver=0.21.3
+pkgrel=1
 pkgdesc="A set of python modules for machine learning and data mining"
 arch=('x86_64')
 url="http://scikit-learn.sourceforge.net/;
@@ -9,11 +9,11 @@
 license=('BSD')
 depends=('python-scipy' 'python-joblib')
 optdepends=('python-matplotlib: for examples with plotting')
-makedepends=('python-setuptools' 'cython')
+makedepends=('python-setuptools' 'cython' 'openmp')
 options=(!emptydirs)
 
 
source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
-sha256sums=('4f6af7ef3a189aa963ad2731cea9f17863dd819dbf0dd7568ab4946566d76c24')
+sha256sums=('260f66e9c643207fe8cfe0995242060fdb14137b5e69a8dd273ac463b7e9426b')
 
 build() {
   cd "$srcdir"/scikit-learn-$pkgver


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

2019-08-19 Thread Jelle van der Waa via arch-commits
Date: Monday, August 19, 2019 @ 19:03:38
  Author: jelle
Revision: 359960

Remove python2 module

Modified:
  python-pyelftools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:32:21 UTC (rev 359959)
+++ PKGBUILD2019-08-19 19:03:38 UTC (rev 359960)
@@ -1,8 +1,7 @@
 # Maintainer: Levente Polyak 
 # Maintainer: Rémy Oudompheng 
 
-pkgbase=python-pyelftools
-pkgname=('python2-pyelftools' 'python-pyelftools')
+pkgname=python-pyelftools
 _pkgname=pyelftools
 pkgver=0.25
 pkgrel=1
@@ -10,53 +9,30 @@
 url='https://github.com/eliben/pyelftools'
 arch=('any')
 license=('custom:Public Domain')
-makedepends=('python' 'python-setuptools'
- 'python2' 'python2-setuptools')
+makedepends=('python' 'python-setuptools')
 options=('!strip')
 
source=(${_pkgname}-${pkgver}.tar.gz::https://github.com/eliben/${_pkgname}/archive/v${pkgver}.tar.gz)
 
sha512sums=('84fbff3a8abc1d0d47e2113d14f509a6a0e8fb97d09c6abf91cefb416b7237d31f53945627e3958901b2a5229f57d5d2ffc9e0b7b4cd271f61689781dc6871bc')
 
-prepare() {
-  cp -ra ${_pkgname}-${pkgver}{,-py2}
-  cd ${_pkgname}-${pkgver}-py2
-  sed -e 's/env python$/env python2/g' -i scripts/readelf.py
-  mv scripts/readelf.py scripts/readelf.py2
-  sed -r 's/readelf.py/\02/g' -i setup.py test/run_readelf_tests.py
-}
 
 build() {
-  (cd ${_pkgname}-${pkgver}
-python setup.py build
-  )
-  (cd ${_pkgname}-${pkgver}-py2
-python2 setup.py build
-  )
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+
 }
 
 check() {
-  msg2 "Running tests under Python 3"
-  (cd ${_pkgname}-${pkgver}
-python test/run_all_unittests.py
-python test/run_examples_test.py
-if [ "${CARCH}" == "x86_64" ]; then
-  python test/run_readelf_tests.py
-else
-  warning "Skipping readelf tests (require x86_64)"
-fi
-  )
-  msg2 "Running tests under Python 2"
-  (cd ${_pkgname}-${pkgver}-py2
-python2 test/run_all_unittests.py
-python2 test/run_examples_test.py
-if [ "${CARCH}" == "x86_64" ]; then
-  python2 test/run_readelf_tests.py
-else
-  warning "Skipping readelf tests (require x86_64)"
-fi
-  )
+  cd ${_pkgname}-${pkgver}
+  python test/run_all_unittests.py
+  python test/run_examples_test.py
+  if [ "${CARCH}" == "x86_64" ]; then
+python test/run_readelf_tests.py
+  else
+warning "Skipping readelf tests (require x86_64)"
+  fi
 }
 
-package_python-pyelftools() {
+package() {
   depends=('python')
   cd ${_pkgname}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
@@ -64,14 +40,3 @@
   install -Dm 644 README.rst CHANGES -t "${pkgdir}/usr/share/doc/${pkgname}"
   cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
 }
-
-package_python2-pyelftools() {
-  depends=('python2')
-  cd ${_pkgname}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst CHANGES -t "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Jelle van der Waa via arch-commits
Date: Monday, August 19, 2019 @ 18:54:53
  Author: jelle
Revision: 500211

archrelease: copy trunk to community-x86_64

Added:
  btfs/repos/community-x86_64/PKGBUILD
(from rev 500210, btfs/trunk/PKGBUILD)
Deleted:
  btfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 18:54:43 UTC (rev 500210)
+++ PKGBUILD2019-08-19 18:54:53 UTC (rev 500211)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=btfs
-pkgver=2.19
-pkgrel=1
-pkgdesc="A bittorrent filesystem based on FUSE"
-arch=('x86_64')
-url="https://github.com/johang/btfs;
-license=('GPL')
-depends=('fuse2' 'libtorrent-rasterbar' 'curl')
-makedepends=('boost')
-optdepends=('python2: for btplay')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/johang/btfs/archive/v$pkgver.tar.gz;)
-sha512sums=('e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
-  autoreconf -i
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: btfs/repos/community-x86_64/PKGBUILD (from rev 500210, 
btfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 18:54:53 UTC (rev 500211)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=btfs
+pkgver=2.19
+pkgrel=2
+pkgdesc="A bittorrent filesystem based on FUSE"
+arch=('x86_64')
+url="https://github.com/johang/btfs;
+license=('GPL')
+depends=('fuse2' 'libtorrent-rasterbar' 'curl')
+makedepends=('boost')
+optdepends=('python: for btplay')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/johang/btfs/archive/v$pkgver.tar.gz;)
+sha512sums=('e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -i
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-19 Thread Jelle van der Waa via arch-commits
Date: Monday, August 19, 2019 @ 18:54:43
  Author: jelle
Revision: 500210

upgpkg: btfs 2.19-2

Switch optdepend to python3 since it's supported.

Modified:
  btfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 18:53:28 UTC (rev 500209)
+++ PKGBUILD2019-08-19 18:54:43 UTC (rev 500210)
@@ -2,7 +2,7 @@
 
 pkgname=btfs
 pkgver=2.19
-pkgrel=1
+pkgrel=2
 pkgdesc="A bittorrent filesystem based on FUSE"
 arch=('x86_64')
 url="https://github.com/johang/btfs;
@@ -9,13 +9,12 @@
 license=('GPL')
 depends=('fuse2' 'libtorrent-rasterbar' 'curl')
 makedepends=('boost')
-optdepends=('python2: for btplay')
+optdepends=('python: for btplay')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/johang/btfs/archive/v$pkgver.tar.gz;)
 
sha512sums=('e890b25605808dbf09f70d4ad8703a4beafb098af39a872a6b98f6959eb30e1ba9be8ae420be0797ba8f2774b487f2434252e93eac599094a824ba411441fdd6')
 
 prepare() {
   cd $pkgname-$pkgver
-  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
   autoreconf -i
 }
 


[arch-commits] Commit in python-google-api-python-client/trunk (PKGBUILD)

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:53:25
  Author: aginiewicz
Revision: 500208

upgpkg: python-google-api-python-client 1.7.11-1

python-google-api-python-client: new upstream release

Modified:
  python-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 18:51:17 UTC (rev 500207)
+++ PKGBUILD2019-08-19 18:53:25 UTC (rev 500208)
@@ -3,7 +3,7 @@
 
 pkgbase=python-google-api-python-client
 pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.7.9
+pkgver=1.7.11
 pkgrel=1
 pkgdesc="Google API Client Library for Python"
 arch=('any')
@@ -13,7 +13,7 @@
  'python2-google-auth-httplib2' 'python2-uritemplate'
 'python-google-auth-httplib2' 'python-uritemplate')
 
source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('da72514b1fcb58f4c0da8bc8b2bb33ee7058fd93cb6946a6b3a164960b1a073c')
+sha256sums=('7a95af326f36ae9b57093513f2770cc49bf59ad92c218c70fe005f2da4987fc9')
 
 prepare() {
   cd "$srcdir"


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:53:28
  Author: aginiewicz
Revision: 500209

archrelease: copy trunk to community-any

Added:
  python-google-api-python-client/repos/community-any/PKGBUILD
(from rev 500208, python-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 18:53:25 UTC (rev 500208)
+++ PKGBUILD2019-08-19 18:53:28 UTC (rev 500209)
@@ -1,64 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: shadyabhi 
-
-pkgbase=python-google-api-python-client
-pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.7.9
-pkgrel=1
-pkgdesc="Google API Client Library for Python"
-arch=('any')
-url="https://github.com/google/google-api-python-client;
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools'
- 'python2-google-auth-httplib2' 'python2-uritemplate'
-'python-google-auth-httplib2' 'python-uritemplate')
-source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('da72514b1fcb58f4c0da8bc8b2bb33ee7058fd93cb6946a6b3a164960b1a073c')
-
-prepare() {
-  cd "$srcdir"
-  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
-  cd google-api-python-client-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir/google-api-python-client-$pkgver"
-
-  # "Building Python2"
-  cd "$srcdir"/google-api-python-client-py2-${pkgver}
-  python2 setup.py build
-
-  # "Building Python3"
-  cd "$srcdir"/google-api-python-client-${pkgver}
-  python setup.py build
-}
- 
-package_python2-google-api-python-client() {
-  depends=('python2-google-auth-httplib2' 'python2-uritemplate')
-  optdepends=('python2-oauth2client: optional backend')
-  cd "$srcdir/google-api-python-client-py2-$pkgver"
- 
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-
-package_python-google-api-python-client() {
-  depends=('python-google-auth-httplib2' 'python-uritemplate')
-  optdepends=('python-oauth2client: optional backend')
-  cd "$srcdir/google-api-python-client-$pkgver"
- 
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-

Copied: python-google-api-python-client/repos/community-any/PKGBUILD (from rev 
500208, python-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 18:53:28 UTC (rev 500209)
@@ -0,0 +1,64 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: shadyabhi 
+
+pkgbase=python-google-api-python-client
+pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
+pkgver=1.7.11
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client;
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools'
+ 'python2-google-auth-httplib2' 'python2-uritemplate'
+'python-google-auth-httplib2' 'python-uritemplate')
+source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
+sha256sums=('7a95af326f36ae9b57093513f2770cc49bf59ad92c218c70fe005f2da4987fc9')
+
+prepare() {
+  cd "$srcdir"
+  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
+  cd google-api-python-client-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir/google-api-python-client-$pkgver"
+
+  # "Building Python2"
+  cd "$srcdir"/google-api-python-client-py2-${pkgver}
+  python2 setup.py build
+
+  # "Building Python3"
+  cd "$srcdir"/google-api-python-client-${pkgver}
+  python setup.py build
+}
+ 
+package_python2-google-api-python-client() {
+  depends=('python2-google-auth-httplib2' 'python2-uritemplate')
+  optdepends=('python2-oauth2client: optional backend')
+  cd "$srcdir/google-api-python-client-py2-$pkgver"
+ 
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+

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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:51:11
  Author: aginiewicz
Revision: 500206

upgpkg: python-fonttools 3.44.0-1

python-fonttools: new upstream release

Modified:
  python-fonttools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 18:48:57 UTC (rev 500205)
+++ PKGBUILD2019-08-19 18:51:11 UTC (rev 500206)
@@ -4,7 +4,7 @@
 
 pkgbase=python-fonttools
 pkgname=('python2-fonttools' 'python-fonttools')
-pkgver=3.43.1
+pkgver=3.44.0
 pkgrel=1
 pkgdesc="Converts OpenType and TrueType fonts to and from XML"
 url="https://github.com/fonttools/fonttools;
@@ -12,7 +12,7 @@
 arch=('any')
 makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
 
source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
-sha256sums=('217176a154341c05c91a1b2f78f5534fb7ca14b84671ac73893e14578527888e')
+sha256sums=('b72cc654e07219d8d7d8c624d1af13cec6f6cc2a51189f8385c295725e4ac36c')
 
 prepare() {
   cd "$srcdir"


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:51:17
  Author: aginiewicz
Revision: 500207

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 18:51:11 UTC (rev 500206)
+++ PKGBUILD2019-08-19 18:51:17 UTC (rev 500207)
@@ -1,65 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Firmicus 
-# Contributor: flying sheep 
-
-pkgbase=python-fonttools
-pkgname=('python2-fonttools' 'python-fonttools')
-pkgver=3.43.1
-pkgrel=1
-pkgdesc="Converts OpenType and TrueType fonts to and from XML"
-url="https://github.com/fonttools/fonttools;
-license=("MIT")
-arch=('any')
-makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
-source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
-sha256sums=('217176a154341c05c91a1b2f78f5534fb7ca14b84671ac73893e14578527888e')
-
-prepare() {
-  cd "$srcdir"
-  cp -a fonttools-${pkgver} fonttools-py2-${pkgver}
-  cd fonttools-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  # "Building Python2"
-  cd "$srcdir"/fonttools-py2-${pkgver}
-  python2 setup.py build
-
-  # "Building Python3"
-  cd "$srcdir"/fonttools-${pkgver}
-  python setup.py build
-}
-
-package_python2-fonttools() {
-  depends=("python2-numpy")
-
-  cd "$srcdir"/fonttools-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # fix conflicts with python-fonttools
-  mv "$pkgdir"/usr/bin/pyftmerge{,2}
-  mv "$pkgdir"/usr/bin/pyftsubset{,2}
-  mv "$pkgdir"/usr/bin/ttx{,2}
-  mv "$pkgdir"/usr/share/man/man1/ttx{,2}.1
-  mv "$pkgdir"/usr/bin/fonttools{,2}
-
-  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx2.1
-}
-
-package_python-fonttools() {
-  depends=("python-numpy")
-
-  cd "$srcdir"/fonttools-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx.1
-}

Copied: python-fonttools/repos/community-any/PKGBUILD (from rev 500206, 
python-fonttools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 18:51:17 UTC (rev 500207)
@@ -0,0 +1,65 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Firmicus 
+# Contributor: flying sheep 
+
+pkgbase=python-fonttools
+pkgname=('python2-fonttools' 'python-fonttools')
+pkgver=3.44.0
+pkgrel=1
+pkgdesc="Converts OpenType and TrueType fonts to and from XML"
+url="https://github.com/fonttools/fonttools;
+license=("MIT")
+arch=('any')
+makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
+source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
+sha256sums=('b72cc654e07219d8d7d8c624d1af13cec6f6cc2a51189f8385c295725e4ac36c')
+
+prepare() {
+  cd "$srcdir"
+  cp -a fonttools-${pkgver} fonttools-py2-${pkgver}
+  cd fonttools-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  # "Building Python2"
+  cd "$srcdir"/fonttools-py2-${pkgver}
+  python2 setup.py build
+
+  # "Building Python3"
+  cd "$srcdir"/fonttools-${pkgver}
+  python setup.py build
+}
+
+package_python2-fonttools() {
+  depends=("python2-numpy")
+
+  cd "$srcdir"/fonttools-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  # fix conflicts with python-fonttools
+  mv "$pkgdir"/usr/bin/pyftmerge{,2}
+  mv "$pkgdir"/usr/bin/pyftsubset{,2}
+  mv "$pkgdir"/usr/bin/ttx{,2}
+  mv "$pkgdir"/usr/share/man/man1/ttx{,2}.1
+  mv "$pkgdir"/usr/bin/fonttools{,2}
+
+  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx2.1
+}
+
+package_python-fonttools() {
+  depends=("python-numpy")
+
+  cd "$srcdir"/fonttools-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx.1
+}


[arch-commits] Commit in (python2-backports.lzma)

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:48:57
  Author: aginiewicz
Revision: 500205

Dropping python2-backports.lzma to AUR

Deleted:
  python2-backports.lzma/


[arch-commits] Commit in (hgview)

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:36:18
  Author: aginiewicz
Revision: 500203

Dropping hgview to AUR due to PyQt4 and Python2 dependencies

Deleted:
  hgview/


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:18:14
  Author: aginiewicz
Revision: 500201

upgpkg: mayavi 4.7.1-1

mayavi: new upstream release

Modified:
  mayavi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 17:57:04 UTC (rev 500200)
+++ PKGBUILD2019-08-19 18:18:14 UTC (rev 500201)
@@ -2,14 +2,14 @@
 # Contributor: Jingbei Li 
 
 pkgname=mayavi
-pkgver=4.6.2
+pkgver=4.7.1
 pkgrel=1
 pkgdesc="A 3-dimensional visualizer of scientific data"
 arch=('x86_64')
 url="https://github.com/enthought/mayavi;
 license=('BSD')
-depends=('vtk' 'python-envisage' 'python-traitsui' 'python-configobj' 
'python-pyqt5' 'gdal' 'unixodbc' 'jsoncpp' 'openmpi' 'ffmpeg')
-makedepends=('python-setuptools' 'python-sphinx' 'python-twisted' 
'xorg-server-xvfb' 'qt5-base' 'glew' 'proj')
+depends=('vtk' 'python-envisage' 'python-traitsui' 'python-configobj' 
'python-pyqt5' 'pdal' 'unixodbc' 'pugixml' 'openmpi' 'ffmpeg')
+makedepends=('python-setuptools' 'python-sphinx' 'python-twisted' 
'xorg-server-xvfb' 'qt5-svg' 'glew' 'proj')
 replaces=('python-mayavi')
 provides=('python-mayavi')
 options=(!emptydirs)
@@ -16,9 +16,9 @@
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
 "mayavi.sh" "mayavi.csh")
-md5sums=('11e76a5ed9b7cd123b6a8efd3828c52a'
- '5773317624d524e19c78c0521dab79d3'
- 'd42bd281c92cb998f3d8a36171688fc4')
+sha256sums=('d679daf930751f0c531938f4664a51ac4bed994a807488ca5ea5a8c15fabf184'
+'abb34e78105abf15197bdd05c02ba3b080755d46aa81e4cfaeaba4994d05effe'
+'034b36bf9d279d926c39c858bf18992e34de880725d778f8435b293259f4775d')
 
 prepare() {
   cd "$srcdir"/mayavi-$pkgver
@@ -43,6 +43,7 @@
   chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
 
   # set path so autodoc can find just built modules
+  echo "import sys" >> docs/source/mayavi/conf.py
   echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-3.7/')" 
>> docs/source/mayavi/conf.py
 }
 


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 18:18:20
  Author: aginiewicz
Revision: 500202

archrelease: copy trunk to community-x86_64

Added:
  mayavi/repos/community-x86_64/PKGBUILD
(from rev 500201, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-x86_64/mayavi.csh
(from rev 500201, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-x86_64/mayavi.sh
(from rev 500201, mayavi/trunk/mayavi.sh)
Deleted:
  mayavi/repos/community-x86_64/PKGBUILD
  mayavi/repos/community-x86_64/mayavi.csh
  mayavi/repos/community-x86_64/mayavi.sh

+
 PKGBUILD   |  194 +--
 mayavi.csh |2 
 mayavi.sh  |2 
 3 files changed, 100 insertions(+), 98 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 18:18:14 UTC (rev 500201)
+++ PKGBUILD2019-08-19 18:18:20 UTC (rev 500202)
@@ -1,96 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=mayavi
-pkgver=4.6.2
-pkgrel=1
-pkgdesc="A 3-dimensional visualizer of scientific data"
-arch=('x86_64')
-url="https://github.com/enthought/mayavi;
-license=('BSD')
-depends=('vtk' 'python-envisage' 'python-traitsui' 'python-configobj' 
'python-pyqt5' 'gdal' 'unixodbc' 'jsoncpp' 'openmpi' 'ffmpeg')
-makedepends=('python-setuptools' 'python-sphinx' 'python-twisted' 
'xorg-server-xvfb' 'qt5-base' 'glew' 'proj')
-replaces=('python-mayavi')
-provides=('python-mayavi')
-options=(!emptydirs)
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
-"mayavi.sh" "mayavi.csh")
-md5sums=('11e76a5ed9b7cd123b6a8efd3828c52a'
- '5773317624d524e19c78c0521dab79d3'
- 'd42bd281c92cb998f3d8a36171688fc4')
-
-prepare() {
-  cd "$srcdir"/mayavi-$pkgver
-
-  # fix wrong-file-end-of-line-encoding
-  for file in *.txt examples/mayavi/data/room_vis.wrl examples/tvtk/dscene.py \
-examples/mayavi/interactive/wx_mayavi_embed*.py ; do
-sed "s|\r||g" $file > $file.new && \
-touch -r $file $file.new && \
-mv $file.new $file
-  done
-
-  # file-not-utf8
-  for file in *.txt docs/*.txt; do
-iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
-touch -r $file $file.new && \
-mv $file.new $file
-  done
-
-  # remove exec permission
-  find examples -type f -exec chmod 0644 {} ";"
-  chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
-
-  # set path so autodoc can find just built modules
-  echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-3.7/')" 
>> docs/source/mayavi/conf.py
-}
-
-build() {
-  cd "$srcdir"/mayavi-$pkgver
-
-  rm -rf build
-  mkdir build
-  mkdir -p 
build/lib.linux-$CARCH-3.7/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
-  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
-build/lib.linux-$CARCH-3.7/tvtk/tvtk_classes.zip
-  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/mayavi/preferences/preferences.ini \
-build/lib.linux-$CARCH-3.7/mayavi/preferences/preferences.ini
-  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
-build/lib.linux-$CARCH-3.7/tvtk/plugins/scene/preferences.ini
-
-  export ETS_TOOLKIT="qt"
-  # now this is ugly, but docs do not build without X. We setup X according to:
-  # 
http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
-  xvfb-run python setup.py build
-
-  rm build/lib.linux-$CARCH-3.7/tvtk/tvtk_classes.zip
-  rm build/lib.linux-$CARCH-3.7/mayavi/preferences/preferences.ini
-  rm build/lib.linux-$CARCH-3.7/tvtk/plugins/scene/preferences.ini
-}
-
-package() {
-  cd "$srcdir"/mayavi-$pkgver
-
-  python setup.py install --skip-build --root="$pkgdir"/ --optimize=1
-
-  # remove useless files
-  rm -f "${pkgdir}"/usr/lib/python3.7/site-packages/tvtk/setup.py*
-  find "${pkgdir}" -name \.buildinfo -type f -print | xargs rm -f -
-
-  # non-executable-script
-  chmod +x "${pkgdir}"/usr/lib/python3.7/site-packages/mayavi/tests/runtests.py
-
-  # install manpage
-  mkdir -p "${pkgdir}"/usr/share/man/man1
-  cp -p docs/mayavi2.man "${pkgdir}"/usr/share/man/man1/mayavi2.1
-
-  # Force Qt
-  install -d "${pkgdir}"/etc/profile.d
-  install -Dm644 "${srcdir}"/mayavi.sh "${pkgdir}"/etc/profile.d/mayavi.sh
-  install -Dm644 "${srcdir}"/mayavi.csh "${pkgdir}"/etc/profile.d/mayavi.csh
-
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Cannot find vtk
-  sed -i '/vtk/d' 
"$pkgdir"/usr/lib/python3.7/site-packages/mayavi-${pkgver}-py3.7.egg-info/requires.txt
-}

Copied: mayavi/repos/community-x86_64/PKGBUILD (from rev 500201, 
mayavi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 18:18:20 UTC (rev 500202)
@@ -0,0 +1,98 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Jingbei Li 
+
+pkgname=mayavi
+pkgver=4.7.1
+pkgrel=1
+pkgdesc="A 3-dimensional visualizer of scientific data"
+arch=('x86_64')

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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 17:57:04
  Author: aginiewicz
Revision: 500200

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 17:57:02 UTC (rev 500199)
+++ PKGBUILD2019-08-19 17:57:04 UTC (rev 500200)
@@ -1,56 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.6.9
-pkgrel=1
-pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
-url="https://github.com/pydata/numexpr;
-arch=('x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-sha1sums=('db6cbb412fb1f85f87814002b88d0e479cf3ac51')
-
-prepare() {
-  cd "$srcdir"
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-  cd numexpr-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/numexpr-$pkgver
-  python setup.py build
-}
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd "$srcdir"/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-numexpr() {
-  depends=('python-numpy')
-
-  cd "$srcdir"/numexpr-$pkgver
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-x86_64/PKGBUILD (from rev 500199, 
python-numexpr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 17:57:04 UTC (rev 500200)
@@ -0,0 +1,24 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Sebastien Binet 
+
+pkgname=python-numexpr
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
+url="https://github.com/pydata/numexpr;
+arch=('x86_64')
+license=('MIT')
+depends=('python-numpy')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+sha256sums=('1923f038b90cc69635871968ed742be7775c879451c612f173c2547c823c9561')
+
+build() {
+  cd "$srcdir"/numexpr-$pkgver
+  python setup.py build
+}
+package_python-numexpr() {
+  cd "$srcdir"/numexpr-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 17:57:02
  Author: aginiewicz
Revision: 500199

upgpkg: python-numexpr 2.7.0-1

python-numexpr: new upstream release, drop python 2 support due to EOL in 2020

Modified:
  python-numexpr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 17:52:05 UTC (rev 500198)
+++ PKGBUILD2019-08-19 17:57:02 UTC (rev 500199)
@@ -1,56 +1,24 @@
 # Maintainer: Andrzej Giniewicz 
 # Contributor: Sebastien Binet 
 
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.6.9
+pkgname=python-numexpr
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
 url="https://github.com/pydata/numexpr;
 arch=('x86_64')
 license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-sha1sums=('db6cbb412fb1f85f87814002b88d0e479cf3ac51')
+depends=('python-numpy')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+sha256sums=('1923f038b90cc69635871968ed742be7775c879451c612f173c2547c823c9561')
 
-prepare() {
-  cd "$srcdir"
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-  cd numexpr-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
 build() {
-  msg "Building Python2"
-  cd "$srcdir"/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
   cd "$srcdir"/numexpr-$pkgver
   python setup.py build
 }
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd "$srcdir"/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
 package_python-numexpr() {
-  depends=('python-numpy')
-
   cd "$srcdir"/numexpr-$pkgver
-
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
   install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 17:52:05
  Author: aginiewicz
Revision: 500198

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 17:51:50 UTC (rev 500197)
+++ PKGBUILD2019-08-19 17:52:05 UTC (rev 500198)
@@ -1,64 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Bruno Pagani 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-pytables
-pkgname=(python2-pytables python-pytables)
-pkgver=3.5.2
-pkgrel=1
-pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
-arch=(x86_64)
-url="https://www.pytables.org;
-license=("BSD")
-makedepends=(lzo hdf5 python2-numexpr python-numexpr python-setuptools 
python2-setuptools cython cython2 blosc bzip2)
-source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;)
-sha256sums=('e4fc6f1194f02a8b10ff923e77364fb70710592f620d7de35f4d4e064dc70e91')
-
-prepare() {
-  cp -a PyTables-$pkgver PyTables-py2-$pkgver
-}
-
-build() {
-  # "Building Python2"
-  cd PyTables-py2-$pkgver
-  python2 setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr
-
-  # "Building Python3"
-  cd ../PyTables-$pkgver
-  python setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr
-}
-
-package_python2-pytables() {
-  depends=(lzo hdf5 python2-numexpr blosc)
-
-  cd PyTables-py2-$pkgver
-  python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
-  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-
-  # see FS#36015 and FS#44971
-  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
-  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
-  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
-  mv "$pkgdir"/usr/bin/pttree{,-2.7}
-
-  # see FS#45975
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
-}
-
-package_python-pytables() {
-  depends=(lzo hdf5 python-numexpr blosc)
-
-  cd PyTables-${pkgver}
-  python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
-  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-
-  # see FS#45975
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
-}
-

Copied: python-pytables/repos/community-x86_64/PKGBUILD (from rev 500197, 
python-pytables/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 17:52:05 UTC (rev 500198)
@@ -0,0 +1,26 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Bruno Pagani 
+# Contributor: Sebastien Binet 
+
+pkgname=python-pytables
+pkgver=3.5.2
+pkgrel=2
+pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
+arch=(x86_64)
+url="https://www.pytables.org;
+license=("BSD")
+depends=(blosc lzo hdf5 python-numexpr)
+makedepends=(python-setuptools cython)
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;)
+sha256sums=('e4fc6f1194f02a8b10ff923e77364fb70710592f620d7de35f4d4e064dc70e91')
+
+build() {
+  cd PyTables-$pkgver
+  python setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr
+}
+
+package() {
+  cd PyTables-${pkgver}
+  python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2019-08-19 Thread Andrzej Giniewicz via arch-commits
Date: Monday, August 19, 2019 @ 17:51:50
  Author: aginiewicz
Revision: 500197

upgpkg: python-pytables 3.5.2-2

python-pytables: without python2-pandas this is not needed by anything, 
removing due to python 2 EOL in 2020

Modified:
  python-pytables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:37:15 UTC (rev 500196)
+++ PKGBUILD2019-08-19 17:51:50 UTC (rev 500197)
@@ -2,63 +2,25 @@
 # Maintainer: Bruno Pagani 
 # Contributor: Sebastien Binet 
 
-pkgbase=python-pytables
-pkgname=(python2-pytables python-pytables)
+pkgname=python-pytables
 pkgver=3.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
 arch=(x86_64)
 url="https://www.pytables.org;
 license=("BSD")
-makedepends=(lzo hdf5 python2-numexpr python-numexpr python-setuptools 
python2-setuptools cython cython2 blosc bzip2)
-source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;)
+depends=(blosc lzo hdf5 python-numexpr)
+makedepends=(python-setuptools cython)
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;)
 sha256sums=('e4fc6f1194f02a8b10ff923e77364fb70710592f620d7de35f4d4e064dc70e91')
 
-prepare() {
-  cp -a PyTables-$pkgver PyTables-py2-$pkgver
-}
-
 build() {
-  # "Building Python2"
-  cd PyTables-py2-$pkgver
-  python2 setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr
-
-  # "Building Python3"
-  cd ../PyTables-$pkgver
+  cd PyTables-$pkgver
   python setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr
 }
 
-package_python2-pytables() {
-  depends=(lzo hdf5 python2-numexpr blosc)
-
-  cd PyTables-py2-$pkgver
-  python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
-  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-
-  # see FS#36015 and FS#44971
-  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
-  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
-  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
-  mv "$pkgdir"/usr/bin/pttree{,-2.7}
-
-  # see FS#45975
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
-}
-
-package_python-pytables() {
-  depends=(lzo hdf5 python-numexpr blosc)
-
+package() {
   cd PyTables-${pkgver}
   python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
   install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-
-  # see FS#45975
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
 }
-


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:37:15
  Author: grazzolini
Revision: 500196

archrelease: copy trunk to community-any

Added:
  streamlink/repos/community-any/PKGBUILD
(from rev 500195, streamlink/trunk/PKGBUILD)
Deleted:
  streamlink/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 16:36:38 UTC (rev 500195)
+++ PKGBUILD2019-08-19 16:37:15 UTC (rev 500196)
@@ -1,40 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Josip Ponjavic 
-
-pkgname=streamlink
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
-arch=('any')
-url='https://streamlink.github.io/'
-license=('BSD')
-depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
-checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
-makedepends=("python-"{recommonmark,setuptools,sphinx})
-optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('496c81804bbe534b47f6cf4d77aa6fae95347ebaab495277f9d2526543cbafa6'
-'SKIP')
-sha512sums=('e493e7775eff84b7c70e60606296c71058b0c4ea25920ab6b2efa09cf45765c4b23287258729b60622e57594e7458a320e47301c1821b7211d49f366c73998cd'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export STREAMLINK_USE_PYCOUNTRY="true"
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 build/sphinx/man/streamlink.1 \
-"$pkgdir/usr/share/man/man1/streamlink.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: streamlink/repos/community-any/PKGBUILD (from rev 500195, 
streamlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 16:37:15 UTC (rev 500196)
@@ -0,0 +1,40 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Josip Ponjavic 
+
+pkgname=streamlink
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
+arch=('any')
+url='https://streamlink.github.io/'
+license=('BSD')
+depends=("python-"{pycryptodome,isodate,pycountry,requests,pysocks,websocket-client}
 'rtmpdump')
+checkdepends=("python-"{freezegun,mock,pytest,requests-mock})
+makedepends=("python-"{recommonmark,setuptools,sphinx})
+optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
+sha256sums=('7aa6e02d914e29fe2e344afd185760b11e46a6a31f9d99f7f9dc87b808812992'
+'SKIP')
+sha512sums=('2f5709e9ce29ff0b504a4001213abed9dbc3a1456d03f9d2b56bfec813d16065b628eeb945db6f2b5c020578dee89372cd2755d8dcb0c791dc103f07929fbe25'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export STREAMLINK_USE_PYCOUNTRY="true"
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 build/sphinx/man/streamlink.1 \
+"$pkgdir/usr/share/man/man1/streamlink.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:36:38
  Author: grazzolini
Revision: 500195

upgpkg: streamlink 1.2.0-1

Modified:
  streamlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:34:10 UTC (rev 500194)
+++ PKGBUILD2019-08-19 16:36:38 UTC (rev 500195)
@@ -2,7 +2,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=streamlink
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player (livestreamer fork)'
 arch=('any')
@@ -14,9 +14,9 @@
 optdepends=('ffmpeg: Required to play streams that are made up of separate 
audio and video streams, eg. YouTube 1080p+')
 
source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('E2B794C7C2C37162E5E2A097E3DB9E282E390FA0') # Streamlink Signing 
Key 
-sha256sums=('496c81804bbe534b47f6cf4d77aa6fae95347ebaab495277f9d2526543cbafa6'
+sha256sums=('7aa6e02d914e29fe2e344afd185760b11e46a6a31f9d99f7f9dc87b808812992'
 'SKIP')
-sha512sums=('e493e7775eff84b7c70e60606296c71058b0c4ea25920ab6b2efa09cf45765c4b23287258729b60622e57594e7458a320e47301c1821b7211d49f366c73998cd'
+sha512sums=('2f5709e9ce29ff0b504a4001213abed9dbc3a1456d03f9d2b56bfec813d16065b628eeb945db6f2b5c020578dee89372cd2755d8dcb0c791dc103f07929fbe25'
 'SKIP')
 
 build() {


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

2019-08-19 Thread Bruno Pagani via arch-commits
Date: Monday, August 19, 2019 @ 16:34:10
  Author: archange
Revision: 500194

archrelease: copy trunk to community-any

Added:
  grammalecte/repos/community-any/PKGBUILD
(from rev 500193, grammalecte/trunk/PKGBUILD)
Deleted:
  grammalecte/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 16:33:25 UTC (rev 500193)
+++ PKGBUILD2019-08-19 16:34:10 UTC (rev 500194)
@@ -1,24 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=grammalecte
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="Grammar and typographic checker dedicated to the French language – 
standalone version"
-arch=(any)
-url="https://grammalecte.net/;
-license=(GPL3)
-depends=(python)
-makedepends=(unzip python-setuptools)
-options=(!emptydirs)
-source=("https://grammalecte.net/grammalecte/zip/Grammalecte-fr-v${pkgver}.zip;)
-sha256sums=('241ae588e99f2b30bc24864134b4b759ac763f4e025ca828d8ec318866db4ac8')
-
-build() {
-  python setup.py build
-}
-
-package() {
-  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
-  mv "${pkgdir}"/usr/bin/grammalecte-cli{.py,}
-  mv "${pkgdir}"/usr/bin/grammalecte-server{.py,}
-}

Copied: grammalecte/repos/community-any/PKGBUILD (from rev 500193, 
grammalecte/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 16:34:10 UTC (rev 500194)
@@ -0,0 +1,24 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=grammalecte
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Grammar and typographic checker dedicated to the French language – 
standalone version"
+arch=(any)
+url="https://grammalecte.net/;
+license=(GPL3)
+depends=(python)
+makedepends=(unzip python-setuptools)
+options=(!emptydirs)
+source=("https://grammalecte.net/grammalecte/zip/Grammalecte-fr-v${pkgver}.zip;)
+sha256sums=('6db2fc0daece93826a01653b23bc6c0ca8af25f1d9d6ca0adba4e7d09ad3dece')
+
+build() {
+  python setup.py build
+}
+
+package() {
+  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
+  mv "${pkgdir}"/usr/bin/grammalecte-cli{.py,}
+  mv "${pkgdir}"/usr/bin/grammalecte-server{.py,}
+}


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

2019-08-19 Thread Bruno Pagani via arch-commits
Date: Monday, August 19, 2019 @ 16:33:25
  Author: archange
Revision: 500193

upgpkg: grammalecte 1.3.0-1

Modified:
  grammalecte/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:25:00 UTC (rev 500192)
+++ PKGBUILD2019-08-19 16:33:25 UTC (rev 500193)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=grammalecte
-pkgver=1.2.1
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="Grammar and typographic checker dedicated to the French language – 
standalone version"
 arch=(any)
@@ -11,7 +11,7 @@
 makedepends=(unzip python-setuptools)
 options=(!emptydirs)
 
source=("https://grammalecte.net/grammalecte/zip/Grammalecte-fr-v${pkgver}.zip;)
-sha256sums=('241ae588e99f2b30bc24864134b4b759ac763f4e025ca828d8ec318866db4ac8')
+sha256sums=('6db2fc0daece93826a01653b23bc6c0ca8af25f1d9d6ca0adba4e7d09ad3dece')
 
 build() {
   python setup.py build


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:32:21
  Author: grazzolini
Revision: 359959

archrelease: copy trunk to extra-x86_64

Added:
  libcacard/repos/extra-x86_64/PKGBUILD
(from rev 359958, libcacard/trunk/PKGBUILD)
Deleted:
  libcacard/repos/community-x86_64/PKGBUILD
  libcacard/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   27 +++
 community-x86_64/PKGBUILD |   28 
 extra-x86_64/PKGBUILD |   28 
 3 files changed, 27 insertions(+), 56 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-08-19 16:31:16 UTC (rev 359958)
+++ community-x86_64/PKGBUILD   2019-08-19 16:32:21 UTC (rev 359959)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:   
-
-pkgname=libcacard
-pkgver=2.6.1
-pkgrel=1
-pkgdesc='(Common Access Card) library thar provides emulation of smart cards 
to a virtual card reader running in a guest virtual machine'
-arch=(x86_64)
-license=(GPL2)
-url='https://www.spice-space.org/page/Libcacard'
-depends=(nss glib2)
-source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign})
-validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau 

-sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300'
-  'SKIP')
-sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d'
-'SKIP')
-
-build () {
-  cd libcacard-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd libcacard-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2019-08-19 16:31:16 UTC (rev 359958)
+++ extra-x86_64/PKGBUILD   2019-08-19 16:32:21 UTC (rev 359959)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:   
-
-pkgname=libcacard
-pkgver=2.6.1
-pkgrel=1
-pkgdesc='(Common Access Card) library thar provides emulation of smart cards 
to a virtual card reader running in a guest virtual machine'
-arch=(x86_64)
-license=(GPL2)
-url='https://www.spice-space.org/page/Libcacard'
-depends=(nss glib2)
-source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign})
-validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau 

-sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300'
-  'SKIP')
-sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d'
-'SKIP')
-
-build () {
-  cd libcacard-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd libcacard-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libcacard/repos/extra-x86_64/PKGBUILD (from rev 359958, 
libcacard/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-08-19 16:32:21 UTC (rev 359959)
@@ -0,0 +1,27 @@
+# Maintainer:   
+
+pkgname=libcacard
+pkgver=2.7.0
+pkgrel=1
+pkgdesc='(Common Access Card) library thar provides emulation of smart cards 
to a virtual card reader running in a guest virtual machine'
+arch=(x86_64)
+license=(GPL2)
+url='https://www.spice-space.org/page/Libcacard'
+depends=(nss glib2)
+source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.asc})
+validpgpkeys=('F7DC50A57DFD52B94253295EF64907AC15B5C33D') #Jakub Jelen (work) 

+sha1sums=('85b85d33e5f2c68f3a792f09cae21de64edc91c0'
+  'SKIP')
+sha512sums=('347c13396e6777193e4e158321605410f4cbd90727c1ba8d85a1aac41d5ada96728dbef367ed4027d16dd0b10c8a4d0cf902ce3345334be4c78994cf72c58352'
+'SKIP')
+
+build () {
+  cd libcacard-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libcacard-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:31:16
  Author: grazzolini
Revision: 359958

upgpkg: libcacard 2.7.0-1

Modified:
  libcacard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 15:01:27 UTC (rev 359957)
+++ PKGBUILD2019-08-19 16:31:16 UTC (rev 359958)
@@ -1,7 +1,7 @@
 # Maintainer:   
 
 pkgname=libcacard
-pkgver=2.6.1
+pkgver=2.7.0
 pkgrel=1
 pkgdesc='(Common Access Card) library thar provides emulation of smart cards 
to a virtual card reader running in a guest virtual machine'
 arch=(x86_64)
@@ -8,11 +8,11 @@
 license=(GPL2)
 url='https://www.spice-space.org/page/Libcacard'
 depends=(nss glib2)
-source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign})
-validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau 

-sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300'
+source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.asc})
+validpgpkeys=('F7DC50A57DFD52B94253295EF64907AC15B5C33D') #Jakub Jelen (work) 

+sha1sums=('85b85d33e5f2c68f3a792f09cae21de64edc91c0'
   'SKIP')
-sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d'
+sha512sums=('347c13396e6777193e4e158321605410f4cbd90727c1ba8d85a1aac41d5ada96728dbef367ed4027d16dd0b10c8a4d0cf902ce3345334be4c78994cf72c58352'
 'SKIP')
 
 build () {


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:25:00
  Author: grazzolini
Revision: 500192

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 16:24:11 UTC (rev 500191)
+++ PKGBUILD2019-08-19 16:25:00 UTC (rev 500192)
@@ -1,32 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Maintainer: Morten Linderud 
-# Contibutor: Giovanni Scafora 
-# Contributor:  Pawel "kTT" Salata 
-
-pkgname=python-pycountry
-pkgver=18.12.8
-pkgrel=2
-pkgdesc="ISO country, subdivision, language, currency and script definitions 
and their translations"
-arch=('any')
-url="https://pypi.org/project/pycountry/;
-license=('LGPL2.1')
-depends=(python python-lxml)
-makedepends=('python' 'python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-runner')
-source=("https://pypi.io/packages/source/p/pycountry/pycountry-${pkgver}.tar.gz;)
-sha512sums=('9797688ada8ea54c1a56a2cf4d0ad765001816c822c40077953fa71e3af285114c4b5beaf739a24432b9c6ea794952ce347a40ae0bcd9a2c00d12ddc7b45261e')
-
-build(){
-  cd "${srcdir}/pycountry-${pkgver}"
-  python setup.py build
-}
-
-check(){
-  cd "${srcdir}/pycountry-${pkgver}"
-  python setup.py pytest
-}
-
-package() {
-  cd "${srcdir}/pycountry-${pkgver}"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-}

Copied: python-pycountry/repos/community-any/PKGBUILD (from rev 500191, 
python-pycountry/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 16:25:00 UTC (rev 500192)
@@ -0,0 +1,32 @@
+# Maintainer: Giancarlo Razzolini 
+# Maintainer: Morten Linderud 
+# Contibutor: Giovanni Scafora 
+# Contributor:  Pawel "kTT" Salata 
+
+pkgname=python-pycountry
+pkgver=19.8.18
+pkgrel=1
+pkgdesc="ISO country, subdivision, language, currency and script definitions 
and their translations"
+arch=('any')
+url="https://pypi.org/project/pycountry/;
+license=('LGPL2.1')
+depends=(python python-lxml)
+makedepends=('python' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-runner')
+source=("https://pypi.io/packages/source/p/pycountry/pycountry-${pkgver}.tar.gz;)
+sha512sums=('39ba06629eeea55460424d06992ca5f1e5bf6168b219dc4880ec326f6aa0c92a4fdc54d4143a8b8bb1490149af793e760e291c6d704104a57ba91e88228ab669')
+
+build(){
+  cd "${srcdir}/pycountry-${pkgver}"
+  python setup.py build
+}
+
+check(){
+  cd "${srcdir}/pycountry-${pkgver}"
+  python setup.py pytest
+}
+
+package() {
+  cd "${srcdir}/pycountry-${pkgver}"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}


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

2019-08-19 Thread Giancarlo Razzolini via arch-commits
Date: Monday, August 19, 2019 @ 16:24:11
  Author: grazzolini
Revision: 500191

upgpkg: python-pycountry 19.8.18-1

Modified:
  python-pycountry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:19:28 UTC (rev 500190)
+++ PKGBUILD2019-08-19 16:24:11 UTC (rev 500191)
@@ -4,8 +4,8 @@
 # Contributor:  Pawel "kTT" Salata 
 
 pkgname=python-pycountry
-pkgver=18.12.8
-pkgrel=2
+pkgver=19.8.18
+pkgrel=1
 pkgdesc="ISO country, subdivision, language, currency and script definitions 
and their translations"
 arch=('any')
 url="https://pypi.org/project/pycountry/;
@@ -14,7 +14,7 @@
 makedepends=('python' 'python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-runner')
 
source=("https://pypi.io/packages/source/p/pycountry/pycountry-${pkgver}.tar.gz;)
-sha512sums=('9797688ada8ea54c1a56a2cf4d0ad765001816c822c40077953fa71e3af285114c4b5beaf739a24432b9c6ea794952ce347a40ae0bcd9a2c00d12ddc7b45261e')
+sha512sums=('39ba06629eeea55460424d06992ca5f1e5bf6168b219dc4880ec326f6aa0c92a4fdc54d4143a8b8bb1490149af793e760e291c6d704104a57ba91e88228ab669')
 
 build(){
   cd "${srcdir}/pycountry-${pkgver}"


[arch-commits] Commit in perl-sys-virt/repos (2 files)

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 16:19:28
  Author: felixonmars
Revision: 500190

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-sys-virt/repos/community-testing-x86_64/
  perl-sys-virt/repos/community-testing-x86_64/PKGBUILD
(from rev 500189, perl-sys-virt/trunk/PKGBUILD)

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

Copied: perl-sys-virt/repos/community-testing-x86_64/PKGBUILD (from rev 500189, 
perl-sys-virt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-08-19 16:19:28 UTC (rev 500190)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-sys-virt
+pkgver=5.6.0
+pkgrel=1
+pkgdesc="Represent and manage a libvirt hypervisor connection"
+arch=('x86_64')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Sys-Virt;
+depends=('libvirt' 'perl')
+makedepends=('perl-cpan-changes' 'perl-module-build' 'perl-xml-xpath' 
'perl-test-pod'
+ 'perl-test-pod-coverage')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/D/DA/DANBERR/Sys-Virt-v$pkgver.tar.gz;)
+sha512sums=('f2324d880822b8fdb61c29f954aabadbda68a42ee32c19388d5a57083f081a8a55f026f90856a5d160b6394495eeaf53cc1b4f031dc5713df583bcb21c158f11')
+
+build() {
+  cd Sys-Virt-v$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Sys-Virt-v$pkgver
+  make test
+}
+
+package() {
+  cd Sys-Virt-v$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-sys-virt/trunk (PKGBUILD)

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 16:19:19
  Author: felixonmars
Revision: 500189

upgpkg: perl-sys-virt 5.6.0-1

Modified:
  perl-sys-virt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:17:08 UTC (rev 500188)
+++ PKGBUILD2019-08-19 16:19:19 UTC (rev 500189)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-sys-virt
-pkgver=5.5.0
+pkgver=5.6.0
 pkgrel=1
 pkgdesc="Represent and manage a libvirt hypervisor connection"
 arch=('x86_64')
@@ -12,7 +12,7 @@
  'perl-test-pod-coverage')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/D/DA/DANBERR/Sys-Virt-v$pkgver.tar.gz;)
-sha512sums=('f8e2beaccf48e5c35999c7a27f90f491102e4bc4600a67a9cc5f202dcd0f56834c0c4c311c74c7f45f31d6ba544efc990129ebe3b7c027a1e17bb934337546fb')
+sha512sums=('f2324d880822b8fdb61c29f954aabadbda68a42ee32c19388d5a57083f081a8a55f026f90856a5d160b6394495eeaf53cc1b4f031dc5713df583bcb21c158f11')
 
 build() {
   cd Sys-Virt-v$pkgver


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 16:17:08
  Author: felixonmars
Revision: 500188

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 16:16:57 UTC (rev 500187)
+++ PKGBUILD2019-08-19 16:17:08 UTC (rev 500188)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=6.1.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='https://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('421adb7510fba1fb95d3d22e136c92581cf41725c2ab4aeb88b4d95d9a9a59223bf4256d1d545d905b854d58a2ab366190281f3a1f544a9ae2b86376808a590d')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 500187, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 16:17:08 UTC (rev 500188)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=6.2.0
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='https://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('b12d126709b9500a08f3717e7207689b3d1c04d3ecf809d1bc46e8358796beb67c51c0c70aeff99aea1cc280cbd93907abdb2490fd06bd98e6c08f071bb4b7b3')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+  done
+}


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 16:16:57
  Author: felixonmars
Revision: 500187

upgpkg: eslint 6.2.0-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:14:41 UTC (rev 500186)
+++ PKGBUILD2019-08-19 16:16:57 UTC (rev 500187)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=6.1.0
+pkgver=6.2.0
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('421adb7510fba1fb95d3d22e136c92581cf41725c2ab4aeb88b4d95d9a9a59223bf4256d1d545d905b854d58a2ab366190281f3a1f544a9ae2b86376808a590d')
+sha512sums=('b12d126709b9500a08f3717e7207689b3d1c04d3ecf809d1bc46e8358796beb67c51c0c70aeff99aea1cc280cbd93907abdb2490fd06bd98e6c08f071bb4b7b3')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-08-19 Thread Bruno Pagani via arch-commits
Date: Monday, August 19, 2019 @ 16:14:41
  Author: archange
Revision: 500186

archrelease: copy trunk to community-any

Added:
  riot/repos/community-any/PKGBUILD
(from rev 500185, riot/trunk/PKGBUILD)
  riot/repos/community-any/riot-desktop.sh
(from rev 500185, riot/trunk/riot-desktop.sh)
  riot/repos/community-any/riot.desktop
(from rev 500185, riot/trunk/riot.desktop)
Deleted:
  riot/repos/community-any/PKGBUILD
  riot/repos/community-any/riot-desktop.sh
  riot/repos/community-any/riot.desktop

-+
 PKGBUILD|  156 +++---
 riot-desktop.sh |6 +-
 riot.desktop|   18 +++---
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 16:13:43 UTC (rev 500185)
+++ PKGBUILD2019-08-19 16:14:41 UTC (rev 500186)
@@ -1,78 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Luca Weiss 
-
-pkgbase=riot
-pkgname=('riot-desktop' 'riot-web')
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
-arch=(any)
-url="https://riot.im;
-license=(Apache)
-makedepends=(npm git yarn)
-_url="https://github.com/vector-im/riot-web;
-source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
-
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
-"${pkgbase}.desktop"
-"${pkgbase}-desktop.sh")
-sha256sums=('c5f8b1b015653227a5a198c01fcdf0de27628d99db83aa9b2bca88cc48fbc8ca'
-'SKIP'
-'043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
-'94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')
-validpgpkeys=(A878CDF66CF4A9B4807CEBE574692659BDA3D940) # Riot Releases 

-
-prepare() {
-  cd ${pkgbase}-web-${pkgver}
-  sed -i 's@https://riot.im/download/desktop/update/@null@g' 
electron_app/riot.im/config.json
-}
-
-build() {
-  cd ${pkgbase}-web-${pkgver}
-  npm install --cache ../npm-cache
-  npm run build --cache ../npm-cache
-}
-
-package_riot-web() {
-  pkgdesc="A glossy Matrix collaboration client for the web."
-  provides=(vector-web)
-  replaces=(vector-web)
-  cd ${pkgbase}-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/${pkgbase}
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/${pkgbase}/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/${pkgbase}/
-  ln -s /etc/webapps/${pkgbase}/config.json 
"${pkgdir}"/usr/share/webapps/${pkgbase}/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/${pkgbase}/version
-}
-
-package_riot-desktop() {
-  pkgdesc="A glossy Matrix collaboration client for the desktop."
-  depends=(riot-web electron)
-  backup=('etc/riot/config.json')
-  cd ${pkgbase}-web-${pkgver}
-
-  cd electron_app
-  npm install --cache "${srcdir}"/npm-cache
-  cd ..
-
-  install -d 
"${pkgdir}"{/usr/lib/${pkgbase}/electron_app,/etc/webapps/${pkgbase}}
-
-  ln -s /usr/share/webapps/${pkgbase} "${pkgdir}"/usr/lib/${pkgbase}/webapp
-  ln -s /etc/${pkgbase}/config.json 
"${pkgdir}"/etc/webapps/${pkgbase}/config.json
-
-  install -Dm644 package.json -t "${pkgdir}"/usr/lib/${pkgbase}/
-  cp -r origin_migrator "${pkgdir}"/usr/lib/${pkgbase}/
-  cp -r electron_app/src "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  cp -r electron_app/node_modules "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  install -Dm644 electron_app/img/riot.png -t 
"${pkgdir}"/usr/lib/${pkgbase}/img
-  install -Dm644 electron_app/riot.im/config.json -t "${pkgdir}"/etc/${pkgbase}
-
-  install -Dm644 "${srcdir}"/${pkgbase}.desktop 
"${pkgdir}"/usr/share/applications/${pkgbase}.desktop
-  install -Dm755 "${srcdir}"/${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 res/themes/riot/img/logos/riot-im-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgbase}.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 electron_app/build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/${pkgbase}.png
-  done
-}

Copied: riot/repos/community-any/PKGBUILD (from rev 500185, riot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 16:14:41 UTC (rev 500186)
@@ -0,0 +1,78 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Luca Weiss 
+
+pkgbase=riot
+pkgname=('riot-desktop' 'riot-web')
+pkgver=1.3.3
+pkgrel=1
+pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
+arch=(any)
+url="https://riot.im;
+license=(Apache)
+makedepends=(npm git yarn)
+_url="https://github.com/vector-im/riot-web;
+source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
+
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
+"${pkgbase}.desktop"
+"${pkgbase}-desktop.sh")

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

2019-08-19 Thread Bruno Pagani via arch-commits
Date: Monday, August 19, 2019 @ 16:13:43
  Author: archange
Revision: 500185

upgpkg: riot 1.3.3-1

Modified:
  riot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 16:02:43 UTC (rev 500184)
+++ PKGBUILD2019-08-19 16:13:43 UTC (rev 500185)
@@ -3,7 +3,7 @@
 
 pkgbase=riot
 pkgname=('riot-desktop' 'riot-web')
-pkgver=1.3.2
+pkgver=1.3.3
 pkgrel=1
 pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
 arch=(any)
@@ -15,7 +15,7 @@
 
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
 "${pkgbase}.desktop"
 "${pkgbase}-desktop.sh")
-sha256sums=('c5f8b1b015653227a5a198c01fcdf0de27628d99db83aa9b2bca88cc48fbc8ca'
+sha256sums=('aa624ba1572b36af7ee1c5bda08f133c9091e2fe9d4166957f8dbb126fa9853b'
 'SKIP'
 '043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
 '94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')


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

2019-08-19 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, August 19, 2019 @ 15:55:14
  Author: jlichtblau
Revision: 500180

archrelease: copy trunk to community-x86_64

Added:
  aqbanking/repos/community-x86_64/PKGBUILD
(from rev 500179, aqbanking/trunk/PKGBUILD)
Deleted:
  aqbanking/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 15:54:44 UTC (rev 500179)
+++ PKGBUILD2019-08-19 15:55:14 UTC (rev 500180)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sergej Pupykin 
-# Contributor: David Moore 
-
-pkgname=aqbanking
-pkgver=5.7.8
-_dnrel=217
-pkgrel=1
-pkgdesc="A library for online banking and financial applications"
-arch=('x86_64')
-url="https://www.aquamaniac.de/sites/aqbanking/index.php;
-license=('GPL')
-depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
-options=('!makeflags')
-source=("$pkgname-$pkgver.tar.gz::https://www.aquamaniac.de/sites/download/download.php?package=03=${_dnrel}=02=$pkgname-$pkgver.tar.gz;
-
"$pkgname-$pkgver.tar.gz.asc::https://www.aquamaniac.de/sites/download/download.php?package=03=${_dnrel}=01=$pkgname-$pkgver.tar.gz.asc;)
-validpgpkeys=('88491B1E68624A5AE5068262895C619C3CA35783') #Martin Preuss 

-sha256sums=('16f86e4cc49a9eaaa8dfe3206607e627873208bce45a70030c3caea9b5afc768'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  export PKG_CONFIG=/usr/bin/pkg-config
-  ./configure --prefix=/usr --enable-gwenhywfar \
-  --with-backends="aqhbci aqofxconnect"
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: aqbanking/repos/community-x86_64/PKGBUILD (from rev 500179, 
aqbanking/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 15:55:14 UTC (rev 500180)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
+# Contributor: David Moore 
+
+pkgname=aqbanking
+pkgver=5.8.1
+_dnrel=105
+pkgrel=1
+pkgdesc="A library for online banking and financial applications"
+arch=('x86_64')
+url="https://www.aquamaniac.de/rdm/projects/aqbanking;
+license=('GPL')
+depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
+options=('!makeflags')
+source=(https://www.aquamaniac.de/rdm/attachments/download/${_dnrel}/$pkgname-$pkgver.tar.gz)
+# validpgpkeys=('88491B1E68624A5AE5068262895C619C3CA35783') #Martin Preuss 

+sha256sums=('af063a75ba401de3538f41cca0c7001950086b3e2d4f190ffe3ddfeea1b08454')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  export PKG_CONFIG=/usr/bin/pkg-config
+  ./configure --prefix=/usr --enable-gwenhywfar \
+  --with-backends="aqhbci aqofxconnect"
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}


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

2019-08-19 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, August 19, 2019 @ 15:54:44
  Author: jlichtblau
Revision: 500179

upgpkg: aqbanking 5.8.1-1 - new upstream release

Modified:
  aqbanking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 15:33:50 UTC (rev 500178)
+++ PKGBUILD2019-08-19 15:54:44 UTC (rev 500179)
@@ -3,20 +3,18 @@
 # Contributor: David Moore 
 
 pkgname=aqbanking
-pkgver=5.7.8
-_dnrel=217
+pkgver=5.8.1
+_dnrel=105
 pkgrel=1
 pkgdesc="A library for online banking and financial applications"
 arch=('x86_64')
-url="https://www.aquamaniac.de/sites/aqbanking/index.php;
+url="https://www.aquamaniac.de/rdm/projects/aqbanking;
 license=('GPL')
 depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
 options=('!makeflags')
-source=("$pkgname-$pkgver.tar.gz::https://www.aquamaniac.de/sites/download/download.php?package=03=${_dnrel}=02=$pkgname-$pkgver.tar.gz;
-
"$pkgname-$pkgver.tar.gz.asc::https://www.aquamaniac.de/sites/download/download.php?package=03=${_dnrel}=01=$pkgname-$pkgver.tar.gz.asc;)
-validpgpkeys=('88491B1E68624A5AE5068262895C619C3CA35783') #Martin Preuss 

-sha256sums=('16f86e4cc49a9eaaa8dfe3206607e627873208bce45a70030c3caea9b5afc768'
-'SKIP')
+source=(https://www.aquamaniac.de/rdm/attachments/download/${_dnrel}/$pkgname-$pkgver.tar.gz)
+# validpgpkeys=('88491B1E68624A5AE5068262895C619C3CA35783') #Martin Preuss 

+sha256sums=('af063a75ba401de3538f41cca0c7001950086b3e2d4f190ffe3ddfeea1b08454')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:33:38
  Author: felixonmars
Revision: 500177

upgpkg: stack 2.1.3-10

rebuild with regex-applicative 0.3.3.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 15:28:20 UTC (rev 500176)
+++ PKGBUILD2019-08-19 15:33:38 UTC (rev 500177)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=9
+pkgrel=10
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:33:50
  Author: felixonmars
Revision: 500178

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   83 
 stack.install |4 ++
 2 files changed, 87 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 500177, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-19 15:33:50 UTC (rev 500178)
@@ -0,0 +1,83 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=10
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-colour'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit'
+ 'haskell-echo' 'haskell-exceptions' 'haskell-extra' 
'haskell-file-embed' 'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hi-file-parser' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 
'haskell-http-download'
+ 'haskell-http-types' 'haskell-memory' 'haskell-microlens' 
'haskell-mintty'
+ 'haskell-mono-traversable' 'haskell-mustache' 
'haskell-neat-interpolation'
+ 'haskell-network-uri' 'haskell-open-browser' 
'haskell-optparse-applicative'
+ 'haskell-optparse-generic' 'haskell-optparse-simple' 'haskell-pantry' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-terminal-size'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
https://github.com/commercialhaskell/stack/commit/62c24fa0552dc722260f1cee75325145e837ab6a.patch)
+sha512sums=('SKIP'
+
'99bb04cf6581a8d712413822f834856b036b37ab2ae41307e82a7064b12cdfa43c6ccc60adfa870057f9ba197e1ae4eda144a7088306630400c0798a2b60d9c6')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../62c24fa0552dc722260f1cee75325145e837ab6a.patch || :
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i '1i {-# LANGUAGE UndecidableInstances #-}' 
src/Stack/Storage/{User,Project}.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls 

[arch-commits] Commit in haskell-regex-applicative-text/repos (2 files)

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:28:20
  Author: felixonmars
Revision: 500176

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-regex-applicative-text/repos/community-staging-x86_64/
  haskell-regex-applicative-text/repos/community-staging-x86_64/PKGBUILD
(from rev 500175, haskell-regex-applicative-text/trunk/PKGBUILD)

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

Copied: haskell-regex-applicative-text/repos/community-staging-x86_64/PKGBUILD 
(from rev 500175, haskell-regex-applicative-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-19 15:28:20 UTC (rev 500176)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=regex-applicative-text
+pkgname=haskell-regex-applicative-text
+pkgver=0.1.0.1
+pkgrel=16
+pkgdesc="Wrapped regex-applicative primitives to work with Text"
+url="https://github.com/phadej/regex-applicative-text#readme;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-regex-applicative")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8ee1d581498e047a7b759476ce98c43c19656b767790b0f12b8485bc212a71c7115cee5c3e5089392995bc71851025093c406bce9d8ac3c5962675ae06fa4339')
+
+prepare() {
+sed -i 's/base >= 4.3 && <4.10/base >= 4.3/' 
$_hkgname-$pkgver/$_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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+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-regex-applicative-text/trunk (PKGBUILD)

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:28:11
  Author: felixonmars
Revision: 500175

upgpkg: haskell-regex-applicative-text 0.1.0.1-16

rebuild with regex-applicative 0.3.3.1

Modified:
  haskell-regex-applicative-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 15:27:28 UTC (rev 500174)
+++ PKGBUILD2019-08-19 15:28:11 UTC (rev 500175)
@@ -4,7 +4,7 @@
 _hkgname=regex-applicative-text
 pkgname=haskell-regex-applicative-text
 pkgver=0.1.0.1
-pkgrel=15
+pkgrel=16
 pkgdesc="Wrapped regex-applicative primitives to work with Text"
 url="https://github.com/phadej/regex-applicative-text#readme;
 license=("BSD")


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:27:28
  Author: felixonmars
Revision: 500174

archrelease: copy trunk to community-staging-x86_64

Added:
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 500173, darcs/trunk/PKGBUILD)

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 500173, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-19 15:27:28 UTC (rev 500174)
@@ -0,0 +1,63 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.14.2
+pkgrel=94
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL2")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
+ 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
+ 'haskell-network' 'haskell-network-uri' 'haskell-old-time'
+ 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-unix-compat' 'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-shelly' 'haskell-split' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('0fd3aa052da9d74f31835a12e7bb50beeff7beec8b10c72cafef7e97fbac02ae178a8f52bf55f1d79887e19164633c8a19ddda01ff2ba4aa8795ac071903552b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -e 's/^ghc /ghc -dynamic /' \
+-e 's/ ghc / ghc -dynamic /' \
+-i tests/*.sh tests/lib
+sed -i -e 's/< *0.5/<1/' -e 's/< *2.13/<3/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$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 \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build runhaskell Setup 
build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:27:19
  Author: felixonmars
Revision: 500173

upgpkg: darcs 2.14.2-94

rebuild with regex-applicative 0.3.3.1

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 15:17:10 UTC (rev 500172)
+++ PKGBUILD2019-08-19 15:27:19 UTC (rev 500173)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.14.2
-pkgrel=93
+pkgrel=94
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL2")


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:17:10
  Author: felixonmars
Revision: 500172

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-regex-applicative/repos/community-staging-x86_64/
  haskell-regex-applicative/repos/community-staging-x86_64/PKGBUILD
(from rev 500171, haskell-regex-applicative/trunk/PKGBUILD)

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

Copied: haskell-regex-applicative/repos/community-staging-x86_64/PKGBUILD (from 
rev 500171, haskell-regex-applicative/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-19 15:17:10 UTC (rev 500172)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=regex-applicative
+pkgname=haskell-regex-applicative
+pkgver=0.3.3.1
+pkgrel=1
+pkgdesc="Regex-based parsing with applicative interface"
+url="https://github.com/feuerbach/regex-applicative;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6cef57ef228983b3662616221c6275ffa024bebee4dddf21041e9a8a4efc8b5e905bacdf31534078f9a34b3915a630e823bf0a910c27b11f8a961ee8f87cd9d3')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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-regex-applicative/trunk (PKGBUILD)

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 15:17:01
  Author: felixonmars
Revision: 500171

upgpkg: haskell-regex-applicative 0.3.3.1-1

rebuild with regex-applicative 0.3.3.1

Modified:
  haskell-regex-applicative/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 14:56:34 UTC (rev 500170)
+++ PKGBUILD2019-08-19 15:17:01 UTC (rev 500171)
@@ -3,8 +3,8 @@
 
 _hkgname=regex-applicative
 pkgname=haskell-regex-applicative
-pkgver=0.3.3
-pkgrel=13
+pkgver=0.3.3.1
+pkgrel=1
 pkgdesc="Regex-based parsing with applicative interface"
 url="https://github.com/feuerbach/regex-applicative;
 license=("MIT")
@@ -12,7 +12,7 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('02358efaa912efd232654a404ef5f7cf825b8852bf2c59fd59122047044fcab5ae28bf26de6818b337d917c594fbe165eec917d88b02723e0b181fe2b57ffbe8')
+sha512sums=('6cef57ef228983b3662616221c6275ffa024bebee4dddf21041e9a8a4efc8b5e905bacdf31534078f9a34b3915a630e823bf0a910c27b11f8a961ee8f87cd9d3')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-08-19 Thread Jelle van der Waa via arch-commits
Date: Monday, August 19, 2019 @ 15:01:27
  Author: jelle
Revision: 359957

ostree does not require python2 anymore to build

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-18 17:54:11 UTC (rev 359956)
+++ PKGBUILD2019-08-19 15:01:27 UTC (rev 359957)
@@ -9,7 +9,7 @@
 arch=(x86_64)
 license=(GPL)
 depends=(glib2 xz zlib libsoup gpgme libarchive fuse2 util-linux mkinitcpio 
openssl avahi)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git 
python2)
+makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git 
python)
 checkdepends=(parallel syslinux gjs cpio elfutils)
 _commit=80435e12a7ec055195d2355b60a0882b65d42a94  # tags/v2019.2^0
 source=("git+https://github.com/ostreedev/ostree#commit=$_commit;
@@ -27,8 +27,6 @@
   git config --local submodule.libglnx.url "$srcdir/libglnx"
   git submodule update
 
-  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
-
   NOCONFIGURE=1 ./autogen.sh
 }
 


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

2019-08-19 Thread David Runge via arch-commits
Date: Monday, August 19, 2019 @ 14:56:34
  Author: dvzrv
Revision: 500170

archrelease: copy trunk to community-x86_64

Added:
  jack2/repos/community-x86_64/PKGBUILD
(from rev 500169, jack2/trunk/PKGBUILD)
Deleted:
  jack2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 14:56:26 UTC (rev 500169)
+++ PKGBUILD2019-08-19 14:56:34 UTC (rev 500170)
@@ -1,79 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: Daniele Paolella 
-# Contributor: Philipp Überbacher 
-# Contributor: Thomas Bahn 
-
-pkgbase=jack2
-pkgname=('jack2' 'jack2-dbus')
-pkgdesc="The next-generation JACK with SMP support"
-pkgver=1.9.12
-pkgrel=9
-arch=('x86_64')
-url="http://jackaudio.org/;
-license=('GPL')
-# currently waf is broken with python 3.7: 
https://github.com/jackaudio/jack2/issues/366
-makedepends=('celt' 'doxygen' 'libffado' 'libsamplerate' 'opus' 'portaudio'
-'python2-dbus')
-optdepends=('a2jmidid: Expose legacy ALSA sequencer applications in JACK MIDI'
-'libffado: Firewire support'
-'portaudio: Portaudio support'
-'realtime-privileges: Acquire realtime privileges')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;)
-sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
-
-prepare() {
-  cd "${pkgbase}-${pkgver}"
-
-  # https://github.com/jackaudio/jack2/issues/308
-  sed -i 's:bin/env python:bin/env python2:' \
-"example-clients/jack_control"
-
-  # copy of the source for jack2-dbus
-  cp -r "${srcdir}/${pkgbase}-${pkgver}" "${srcdir}/${pkgname[1]}-${pkgver}"
-}
-
-build() {
-  cd "${pkgbase}-${pkgver}"
-  # configure jack2
-  python2 waf configure --prefix=/usr \
---htmldir="/usr/share/doc/${pkgbase}/" \
---freebob=no \
---classic \
---dbus
-
-  # configure jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver}"
-  python2 waf configure --prefix=/usr \
---htmldir="/usr/share/doc/${pkgbase}/" \
---freebob=no \
---dbus
-  # build jack2
-  cd "${srcdir}/${pkgname[0]}-${pkgver}"
-  python2 waf build
-  # build jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver}"
-  python2 waf build
-}
-
-package_jack2() {
-  pkgdesc="JACK low-latency audio server for multi-processor machines (daemon 
activation)"
-  depends=('celt' 'libsamplerate' 'opus' 'python2-dbus')
-  conflicts=('jack' 'jack2-dbus')
-  provides=('jack')
-
-  cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
-}
-
-package_jack2-dbus() {
-  pkgdesc="JACK low-latency audio server for multi-processor machines (only 
dbus activation)"
-  depends=('celt' 'libsamplerate' 'opus' 'python2-dbus')
-  conflicts=('jack' 'jack2')
-  provides=('jack' 'jack2')
-
-  cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jack2/repos/community-x86_64/PKGBUILD (from rev 500169, 
jack2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 14:56:34 UTC (rev 500170)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Daniele Paolella 
+# Contributor: Philipp Überbacher 
+# Contributor: Thomas Bahn 
+
+pkgname=jack2
+pkgdesc="C++ version of the JACK low-latency audio server for multi-processor 
machines"
+pkgver=1.9.12
+pkgrel=10
+arch=('x86_64')
+url="http://jackaudio.org/;
+license=('GPL2' 'LGPL2.1')
+depends=('celt' 'libsamplerate' 'opus')
+# in 1.9.12 waf is broken with python 3.7: 
https://github.com/jackaudio/jack2/issues/366
+makedepends=('doxygen' 'libffado' 'portaudio' 'python2')
+optdepends=('a2jmidid: Expose ALSA MIDI in JACK MIDI'
+'libffado: Firewire support'
+'portaudio: Portaudio support'
+'python2-dbus: For jack_control'
+'realtime-privileges: Acquire realtime privileges')
+provides=('jack' 'libjack.so' 'libjacknet.so' 'libjackserver.so')
+conflicts=('jack')
+replaces=('jack2-dbus')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # https://github.com/jackaudio/jack2/issues/308
+  sed -i 's:bin/env python:bin/env python2:' \
+"example-clients/jack_control"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python2 waf configure --prefix=/usr \
+

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

2019-08-19 Thread David Runge via arch-commits
Date: Monday, August 19, 2019 @ 14:56:26
  Author: dvzrv
Revision: 500169

upgpkg: jack2 1.9.12-10

Deprecating jack2-dbus (it's included in jack2). Switching to correct licenses 
(GPL2 and LGPL2.1). Adding shared libraries to provides. Moving python2-dbus to 
optdepends.

Modified:
  jack2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 14:18:55 UTC (rev 500168)
+++ PKGBUILD2019-08-19 14:56:26 UTC (rev 500169)
@@ -4,76 +4,47 @@
 # Contributor: Philipp Überbacher 
 # Contributor: Thomas Bahn 
 
-pkgbase=jack2
-pkgname=('jack2' 'jack2-dbus')
-pkgdesc="The next-generation JACK with SMP support"
+pkgname=jack2
+pkgdesc="C++ version of the JACK low-latency audio server for multi-processor 
machines"
 pkgver=1.9.12
-pkgrel=9
+pkgrel=10
 arch=('x86_64')
 url="http://jackaudio.org/;
-license=('GPL')
-# currently waf is broken with python 3.7: 
https://github.com/jackaudio/jack2/issues/366
-makedepends=('celt' 'doxygen' 'libffado' 'libsamplerate' 'opus' 'portaudio'
-'python2-dbus')
-optdepends=('a2jmidid: Expose legacy ALSA sequencer applications in JACK MIDI'
+license=('GPL2' 'LGPL2.1')
+depends=('celt' 'libsamplerate' 'opus')
+# in 1.9.12 waf is broken with python 3.7: 
https://github.com/jackaudio/jack2/issues/366
+makedepends=('doxygen' 'libffado' 'portaudio' 'python2')
+optdepends=('a2jmidid: Expose ALSA MIDI in JACK MIDI'
 'libffado: Firewire support'
 'portaudio: Portaudio support'
+'python2-dbus: For jack_control'
 'realtime-privileges: Acquire realtime privileges')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;)
+provides=('jack' 'libjack.so' 'libjacknet.so' 'libjackserver.so')
+conflicts=('jack')
+replaces=('jack2-dbus')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgname}/archive/v${pkgver}.tar.gz;)
 
sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
 
 prepare() {
-  cd "${pkgbase}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
 
   # https://github.com/jackaudio/jack2/issues/308
   sed -i 's:bin/env python:bin/env python2:' \
 "example-clients/jack_control"
-
-  # copy of the source for jack2-dbus
-  cp -r "${srcdir}/${pkgbase}-${pkgver}" "${srcdir}/${pkgname[1]}-${pkgver}"
 }
 
 build() {
-  cd "${pkgbase}-${pkgver}"
-  # configure jack2
+  cd "${pkgname}-${pkgver}"
   python2 waf configure --prefix=/usr \
 --htmldir="/usr/share/doc/${pkgbase}/" \
 --freebob=no \
 --classic \
 --dbus
-
-  # configure jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver}"
-  python2 waf configure --prefix=/usr \
---htmldir="/usr/share/doc/${pkgbase}/" \
---freebob=no \
---dbus
-  # build jack2
-  cd "${srcdir}/${pkgname[0]}-${pkgver}"
   python2 waf build
-  # build jack2-dbus
-  cd "${srcdir}/${pkgname[1]}-${pkgver}"
-  python2 waf build
 }
 
-package_jack2() {
-  pkgdesc="JACK low-latency audio server for multi-processor machines (daemon 
activation)"
-  depends=('celt' 'libsamplerate' 'opus' 'python2-dbus')
-  conflicts=('jack' 'jack2-dbus')
-  provides=('jack')
-
+package() {
   cd "${pkgname}-${pkgver}"
   python2 waf install --destdir="${pkgdir}"
 }
-
-package_jack2-dbus() {
-  pkgdesc="JACK low-latency audio server for multi-processor machines (only 
dbus activation)"
-  depends=('celt' 'libsamplerate' 'opus' 'python2-dbus')
-  conflicts=('jack' 'jack2')
-  provides=('jack' 'jack2')
-
-  cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
-}
-
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in (dingo)

2019-08-19 Thread Jelle van der Waa via arch-commits
Date: Monday, August 19, 2019 @ 14:18:55
  Author: jelle
Revision: 500168

remove no longer packaged package

Deleted:
  dingo/


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

2019-08-19 Thread David Runge via arch-commits
Date: Monday, August 19, 2019 @ 12:42:29
  Author: dvzrv
Revision: 500167

archrelease: copy trunk to community-any

Added:
  foxdot/repos/community-any/PKGBUILD
(from rev 500166, foxdot/trunk/PKGBUILD)
Deleted:
  foxdot/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 12:41:06 UTC (rev 500166)
+++ PKGBUILD2019-08-19 12:42:29 UTC (rev 500167)
@@ -1,53 +0,0 @@
-# Maintainer: David Runge 
-
-_name=FoxDot
-pkgname=foxdot
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="Live Coding with Python"
-arch=('any')
-url="https://foxdot.org;
-license=('CCPL')
-groups=('pro-audio')
-depends=('python' 'supercollider' 'tk')
-makedepends=('gendesk' 'python-setuptools')
-checkdepends=('python-pytest')
-optdepends=('sc3-plugins: use additional UGens')
-# pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
-# 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('e4bf21c208c53391c1c0d7f513c8e4b8632be32d9914a0452591e9511b0c8ace26ff675e87ef48d7f85301f0cedda2c1256a8f50b073adbadae1cddc26979bd6')
-
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  gendesk -n \
-  --pkgname "${pkgname}" \
-  --name "${_name}" \
-  --exec "${_name}" \
-  --genericname "Live Coding Editor" \
-  --categories "AudioVideo;Audio"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  py.test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --prefix=/usr \
-  --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}" \
-  --verbose
-  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {README.md,changelog} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: foxdot/repos/community-any/PKGBUILD (from rev 500166, 
foxdot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 12:42:29 UTC (rev 500167)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+
+_name=FoxDot
+pkgname=foxdot
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="Live Coding with Python"
+arch=('any')
+url="https://foxdot.org;
+license=('CCPL')
+groups=('pro-audio')
+depends=('python' 'supercollider' 'tk')
+makedepends=('gendesk' 'python-setuptools')
+checkdepends=('python-pytest')
+optdepends=('sc3-plugins: use additional UGens')
+# pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
+# 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('0f62bfbabb5f63cd746b8140001bfe130f7fc33bd316961d18000bcec6f24c0250d5ad40543931bab9d86710fd78652ca058ba39616c32a181e93047685748ac')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  gendesk -n \
+  --pkgname "${pkgname}" \
+  --name "${_name}" \
+  --exec "${_name}" \
+  --genericname "Live Coding Editor" \
+  --categories "AudioVideo;Audio"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  py.test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --prefix=/usr \
+  --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}" \
+  --verbose
+  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {README.md,changelog} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-19 Thread David Runge via arch-commits
Date: Monday, August 19, 2019 @ 12:41:06
  Author: dvzrv
Revision: 500166

upgpkg: foxdot 0.8.1-1

Upgrading to 0.8.1.

Modified:
  foxdot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 12:03:16 UTC (rev 500165)
+++ PKGBUILD2019-08-19 12:41:06 UTC (rev 500166)
@@ -2,7 +2,7 @@
 
 _name=FoxDot
 pkgname=foxdot
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="Live Coding with Python"
 arch=('any')
@@ -16,7 +16,7 @@
 # pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
 # 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('e4bf21c208c53391c1c0d7f513c8e4b8632be32d9914a0452591e9511b0c8ace26ff675e87ef48d7f85301f0cedda2c1256a8f50b073adbadae1cddc26979bd6')
+sha512sums=('0f62bfbabb5f63cd746b8140001bfe130f7fc33bd316961d18000bcec6f24c0250d5ad40543931bab9d86710fd78652ca058ba39616c32a181e93047685748ac')
 
 prepare() {
   mv -v "${_name}-$pkgver" "$pkgname-$pkgver"


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

2019-08-19 Thread Alexander Rødseth via arch-commits
Date: Monday, August 19, 2019 @ 12:03:16
  Author: arodseth
Revision: 500165

archrelease: copy trunk to community-x86_64

Added:
  bspwm/repos/community-x86_64/PKGBUILD
(from rev 500164, bspwm/trunk/PKGBUILD)
Deleted:
  bspwm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 11:57:55 UTC (rev 500164)
+++ PKGBUILD2019-08-19 12:03:16 UTC (rev 500165)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Bastien Dejean 
-
-pkgname=bspwm
-pkgver=0.9.9
-pkgrel=1
-pkgdesc='Tiling window manager based on binary space partitioning'
-arch=(x86_64)
-url='https://github.com/baskerville/bspwm'
-license=(BSD)
-makedepends=(git)
-depends=(xcb-util xcb-util-wm xcb-util-keysyms)
-optdepends=('sxhkd: to define keyboard and pointer bindings'
-'xdo: for the example panel')
-source=("git+$url#tag=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  make -C "$pkgname" PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname"
-
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-
-  # BSD 2-clause
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: -u 2 raw.githubusercontent.com/baskerville/bspwm/master/doc/bspwm.1
-# vim: ts=2 sw=2 et:

Copied: bspwm/repos/community-x86_64/PKGBUILD (from rev 500164, 
bspwm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 12:03:16 UTC (rev 500165)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Bastien Dejean 
+
+pkgname=bspwm
+pkgver=0.9.9
+pkgrel=1
+pkgdesc='Tiling window manager based on binary space partitioning'
+arch=(x86_64)
+url='https://github.com/baskerville/bspwm'
+license=(BSD)
+makedepends=(git)
+depends=(xcb-util xcb-util-wm xcb-util-keysyms)
+optdepends=('sxhkd: to define keyboard and pointer bindings'
+'xdo: for the example panel')
+source=("git+$url#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+  make -C "$pkgname" PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname"
+
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+
+  # BSD 2-clause
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: -u 2 raw.githubusercontent.com/baskerville/bspwm/master/doc/bspwm.1
+# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Alexander Rødseth via arch-commits
Date: Monday, August 19, 2019 @ 11:57:55
  Author: arodseth
Revision: 500164

archrelease: copy trunk to community-x86_64

Added:
  bspwm/repos/community-x86_64/PKGBUILD
(from rev 500163, bspwm/trunk/PKGBUILD)
Deleted:
  bspwm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 11:57:50 UTC (rev 500163)
+++ PKGBUILD2019-08-19 11:57:55 UTC (rev 500164)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Bastien Dejean 
-
-pkgname=bspwm
-pkgver=0.9.8
-pkgrel=1
-pkgdesc='Tiling window manager based on binary space partitioning'
-arch=(x86_64)
-url='https://github.com/baskerville/bspwm'
-license=(BSD)
-makedepends=(git)
-depends=(xcb-util xcb-util-wm xcb-util-keysyms)
-optdepends=('sxhkd: to define keyboard and pointer bindings'
-'xdo: for the example panel')
-source=("git+$url#tag=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  make -C "$pkgname" PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname"
-
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-
-  # BSD 2-clause
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: -u 2 raw.githubusercontent.com/baskerville/bspwm/master/doc/bspwm.1
-# vim: ts=2 sw=2 et:

Copied: bspwm/repos/community-x86_64/PKGBUILD (from rev 500163, 
bspwm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 11:57:55 UTC (rev 500164)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Bastien Dejean 
+
+pkgname=bspwm
+pkgver=0.9.9
+pkgrel=1
+pkgdesc='Tiling window manager based on binary space partitioning'
+arch=(x86_64)
+url='https://github.com/baskerville/bspwm'
+license=(BSD)
+makedepends=(git)
+depends=(xcb-util xcb-util-wm xcb-util-keysyms)
+optdepends=('sxhkd: to define keyboard and pointer bindings'
+'xdo: for the example panel')
+source=("git+$url#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+  make -C "$pkgname" PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname"
+
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+
+  # BSD 2-clause
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: -u 2 raw.githubusercontent.com/baskerville/bspwm/master/doc/bspwm.1
+# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Alexander Rødseth via arch-commits
Date: Monday, August 19, 2019 @ 11:57:50
  Author: arodseth
Revision: 500163

upgpkg: bspwm 0.9.9-1

Modified:
  bspwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 11:54:45 UTC (rev 500162)
+++ PKGBUILD2019-08-19 11:57:50 UTC (rev 500163)
@@ -2,7 +2,7 @@
 # Contributor: Bastien Dejean 
 
 pkgname=bspwm
-pkgver=0.9.8
+pkgver=0.9.9
 pkgrel=1
 pkgdesc='Tiling window manager based on binary space partitioning'
 arch=(x86_64)


[arch-commits] Commit in (5 files)

2019-08-19 Thread Alexander Rødseth via arch-commits
Date: Monday, August 19, 2019 @ 11:54:35
  Author: arodseth
Revision: 500161

Add the Acme assembler

Added:
  acme/
  acme/repos/
  acme/repos/community-x86_64/
  acme/trunk/
  acme/trunk/PKGBUILD

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

Added: acme/trunk/PKGBUILD
===
--- acme/trunk/PKGBUILD (rev 0)
+++ acme/trunk/PKGBUILD 2019-08-19 11:54:35 UTC (rev 500161)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=acme
+pkgver=2019.08.19
+pkgrel=1
+pkgdesc='Assembler for the 6502, 6510, 65c02 and 65816 processors'
+arch=(x86_64)
+url='https://github.com/meonwax/acme'
+license=(GPL)
+source=("git+$url#commit=99fae48b1f")
+makedepends=(git setconf)
+conflicts=(plan9port)
+sha256sums=(SKIP)
+
+prepare() {
+  cd $pkgname/src
+  setconf Makefile CFLAGS "$CFLAGS -w"
+  setconf Makefile LIBS "$LDFLAGS -lm"
+}
+
+build() {
+  make -s -C $pkgname/src
+}
+
+package() {
+  cd $pkgname
+
+  # Documentation
+  install -d "$pkgdir/usr/share/doc/acme"
+  install -t "$pkgdir/usr/share/doc/acme" docs/*.txt
+
+  # Executable
+  install -Dm755 src/acme "$pkgdir/usr/bin/acme"
+
+  # Joe syntax highlighting
+  install -Dm644 contrib/joe_syntax/acme.jsf 
"$pkgdir/usr/share/joe/syntax/acme.jsf"
+  install -Dm644 contrib/joe_syntax/INSTALL 
"$pkgdir/usr/share/doc/acme/joe.txt"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Alexander Rødseth via arch-commits
Date: Monday, August 19, 2019 @ 11:54:45
  Author: arodseth
Revision: 500162

archrelease: copy trunk to community-x86_64

Added:
  acme/repos/community-x86_64/PKGBUILD
(from rev 500161, acme/trunk/PKGBUILD)

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

Copied: acme/repos/community-x86_64/PKGBUILD (from rev 500161, 
acme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 11:54:45 UTC (rev 500162)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=acme
+pkgver=2019.08.19
+pkgrel=1
+pkgdesc='Assembler for the 6502, 6510, 65c02 and 65816 processors'
+arch=(x86_64)
+url='https://github.com/meonwax/acme'
+license=(GPL)
+source=("git+$url#commit=99fae48b1f")
+makedepends=(git setconf)
+conflicts=(plan9port)
+sha256sums=(SKIP)
+
+prepare() {
+  cd $pkgname/src
+  setconf Makefile CFLAGS "$CFLAGS -w"
+  setconf Makefile LIBS "$LDFLAGS -lm"
+}
+
+build() {
+  make -s -C $pkgname/src
+}
+
+package() {
+  cd $pkgname
+
+  # Documentation
+  install -d "$pkgdir/usr/share/doc/acme"
+  install -t "$pkgdir/usr/share/doc/acme" docs/*.txt
+
+  # Executable
+  install -Dm755 src/acme "$pkgdir/usr/bin/acme"
+
+  # Joe syntax highlighting
+  install -Dm644 contrib/joe_syntax/acme.jsf 
"$pkgdir/usr/share/joe/syntax/acme.jsf"
+  install -Dm644 contrib/joe_syntax/INSTALL 
"$pkgdir/usr/share/doc/acme/joe.txt"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Morten Linderud via arch-commits
Date: Monday, August 19, 2019 @ 10:08:00
  Author: foxboron
Revision: 500158

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 10:07:43 UTC (rev 500157)
+++ PKGBUILD2019-08-19 10:08:00 UTC (rev 500158)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Devin Cofer 
-# Contributor: DriverX
-# Contributor: Nicolas Quiénot 
-# Contributor: Martin Schrodt 
-
-pkgname=nvme-cli
-pkgver=1.8.1
-pkgrel=2
-pkgdesc="NVM-Express user space tooling for Linux"
-arch=('i686' 'x86_64')
-url="https://github.com/linux-nvme/nvme-cli;
-license=('GPL')
-makedepends=('libsystemd')
-# checkdepends=('python2-nose' 'python-nose')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('93b9134b7a4cc36c9444b9ee52ef016be6e3e2f2ece50fab1f4a56ebe1e3612b')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   make PREFIX=/usr
-}
-
-# Tests require a working NVME disk.
-# check() {
-#  cd "${pkgname}-${pkgver}"
-#  make test
-# }
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
-}

Copied: nvme-cli/repos/community-x86_64/PKGBUILD (from rev 500157, 
nvme-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 10:08:00 UTC (rev 500158)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Contributor: Devin Cofer 
+# Contributor: DriverX
+# Contributor: Nicolas Quiénot 
+# Contributor: Martin Schrodt 
+
+pkgname=nvme-cli
+pkgver=1.9
+pkgrel=1
+pkgdesc="NVM-Express user space tooling for Linux"
+arch=('i686' 'x86_64')
+url="https://github.com/linux-nvme/nvme-cli;
+license=('GPL')
+makedepends=('libsystemd')
+# checkdepends=('python2-nose' 'python-nose')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('d7c3d56f36f81c0933f7b7c3f90c4196be0fec758affc8062c525b6bc5ea65f5')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   make PREFIX=/usr
+}
+
+# Tests require a working NVME disk.
+# check() {
+#  cd "${pkgname}-${pkgver}"
+#  make test
+# }
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
+}


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

2019-08-19 Thread Morten Linderud via arch-commits
Date: Monday, August 19, 2019 @ 10:07:43
  Author: foxboron
Revision: 500157

upgpkg: nvme-cli 1.9-1

Modified:
  nvme-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 08:25:33 UTC (rev 500156)
+++ PKGBUILD2019-08-19 10:07:43 UTC (rev 500157)
@@ -5,8 +5,8 @@
 # Contributor: Martin Schrodt 
 
 pkgname=nvme-cli
-pkgver=1.8.1
-pkgrel=2
+pkgver=1.9
+pkgrel=1
 pkgdesc="NVM-Express user space tooling for Linux"
 arch=('i686' 'x86_64')
 url="https://github.com/linux-nvme/nvme-cli;
@@ -14,7 +14,7 @@
 makedepends=('libsystemd')
 # checkdepends=('python2-nose' 'python-nose')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('93b9134b7a4cc36c9444b9ee52ef016be6e3e2f2ece50fab1f4a56ebe1e3612b')
+sha256sums=('d7c3d56f36f81c0933f7b7c3f90c4196be0fec758affc8062c525b6bc5ea65f5')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2019-08-19 Thread Maxim Baz via arch-commits
Date: Monday, August 19, 2019 @ 08:25:33
  Author: maximbaz
Revision: 500156

archrelease: copy trunk to community-x86_64

Added:
  copyq/repos/community-x86_64/PKGBUILD
(from rev 500155, copyq/trunk/PKGBUILD)
Deleted:
  copyq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 08:25:22 UTC (rev 500155)
+++ PKGBUILD2019-08-19 08:25:33 UTC (rev 500156)
@@ -1,28 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Batou 
-# Contributor: Karol "Kenji Takahashi" Woźniak 
-
-pkgname=copyq
-pkgver=3.9.0
-pkgrel=1
-pkgdesc="Clipboard manager with searchable and editable history"
-url="https://github.com/hluk/${pkgname};
-depends=('hicolor-icon-theme' 'libxtst' 'qt5-script' 'qt5-svg' 'qt5-x11extras')
-makedepends=('cmake' 'qt5-tools')
-license=('GPL3')
-arch=('x86_64')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('de2e64451464dd5af661fd56bb8d5c6a9cdbbd2f66249ae0404e61c1c7d9916e')
-
-build() {
-cd "CopyQ-${pkgver}"
-cmake -DCMAKE_BUILD_TYPE=Release -DWITH_WEBKIT=0 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_QT5=TRUE .
-make
-}
-
-package() {
-cd "CopyQ-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: copyq/repos/community-x86_64/PKGBUILD (from rev 500155, 
copyq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 08:25:33 UTC (rev 500156)
@@ -0,0 +1,28 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Batou 
+# Contributor: Karol "Kenji Takahashi" Woźniak 
+
+pkgname=copyq
+pkgver=3.9.1
+pkgrel=1
+pkgdesc="Clipboard manager with searchable and editable history"
+url="https://github.com/hluk/${pkgname};
+depends=('hicolor-icon-theme' 'libxtst' 'qt5-script' 'qt5-svg' 'qt5-x11extras')
+makedepends=('cmake' 'qt5-tools')
+license=('GPL3')
+arch=('x86_64')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('cb2b9d9415a8078725f20f3d6f2bdddc9c70e6b751747c35e0458e33e7636d9d')
+
+build() {
+cd "CopyQ-${pkgver}"
+cmake -DCMAKE_BUILD_TYPE=Release -DWITH_WEBKIT=0 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_QT5=TRUE .
+make
+}
+
+package() {
+cd "CopyQ-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-08-19 Thread Maxim Baz via arch-commits
Date: Monday, August 19, 2019 @ 08:25:22
  Author: maximbaz
Revision: 500155

upgpkg: copyq 3.9.1-1

Modified:
  copyq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 07:46:19 UTC (rev 500154)
+++ PKGBUILD2019-08-19 08:25:22 UTC (rev 500155)
@@ -3,7 +3,7 @@
 # Contributor: Karol "Kenji Takahashi" Woźniak 
 
 pkgname=copyq
-pkgver=3.9.0
+pkgver=3.9.1
 pkgrel=1
 pkgdesc="Clipboard manager with searchable and editable history"
 url="https://github.com/hluk/${pkgname};
@@ -12,7 +12,7 @@
 license=('GPL3')
 arch=('x86_64')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('de2e64451464dd5af661fd56bb8d5c6a9cdbbd2f66249ae0404e61c1c7d9916e')
+sha256sums=('cb2b9d9415a8078725f20f3d6f2bdddc9c70e6b751747c35e0458e33e7636d9d')
 
 build() {
 cd "CopyQ-${pkgver}"


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

2019-08-19 Thread Filipe Laíns via arch-commits
Date: Monday, August 19, 2019 @ 07:46:04
  Author: ffy00
Revision: 500153

fix zsh completitions and vscode:// urls (1.37.1-2)

Modified:
  code/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 07:30:32 UTC (rev 500152)
+++ PKGBUILD2019-08-19 07:46:04 UTC (rev 500153)
@@ -6,7 +6,7 @@
 pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
 # Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
 pkgver=1.37.1
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://github.com/microsoft/vscode'
 license=('MIT')
@@ -18,12 +18,14 @@
 'code.js'
 'code.sh'
 'product_json.diff'
-'enable-proposed-apis.diff')
+'enable-proposed-apis.diff'
+
"fix-zsh-completions.patch::$url/commit/280be12a3a90f40949d345d94894d4af6b782c6d.patch")
 sha512sums=('SKIP'
 
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
 
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
 
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
+
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664'
+
'c37f8a57bde580daba491449c56c1b5b4a83189cafafbd3984542702b117d08b04574db1951eefe676f303e84fcc9ce3d0a28192ad2321fb5903e7ca7f069a52')
 
 # Even though we don't officially support other archs, let's
 # allow the user to use this PKGBUILD to compile the package
@@ -50,6 +52,7 @@
   # This patch no longer contains proprietary modifications.
   # See https://github.com/Microsoft/vscode/issues/31168 for details.
   patch -p0 < ../product_json.diff
+  patch -p1 < ../fix-zsh-completions.patch
 
   # Set the commit and build date
   local _commit=$(git rev-parse HEAD)
@@ -71,6 +74,7 @@
   s|@@NAME@@|code-oss|g
   s|@@ICON@@|code-oss|g
   s|@@LICENSE@@|MIT|g
+  s|@@URLPROTOCOL@@|vscode|g
   s|inode/directory;||' 
resources/linux/code{.appdata.xml,.desktop,-url-handler.desktop}
 
   # Add missing exectable name to bash completion


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

2019-08-19 Thread Filipe Laíns via arch-commits
Date: Monday, August 19, 2019 @ 07:46:19
  Author: ffy00
Revision: 500154

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  286 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 222 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:46:04 UTC (rev 500153)
+++ PKGBUILD2019-08-19 07:46:19 UTC (rev 500154)
@@ -1,141 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.37.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver;
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit;
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership 

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

2019-08-19 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, August 19, 2019 @ 07:30:32
  Author: yan12125
Revision: 500152

archrelease: copy trunk to community-any

Added:
  python-pytrie/repos/community-any/
  python-pytrie/repos/community-any/PKGBUILD
(from rev 500151, python-pytrie/trunk/PKGBUILD)

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

Copied: python-pytrie/repos/community-any/PKGBUILD (from rev 500151, 
python-pytrie/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-08-19 07:30:32 UTC (rev 500152)
@@ -0,0 +1,31 @@
+# Maintainer: Chih-Hsuan Yen 
+# Modified from aur/python2-pytrie; original maintainership info:
+# Contributor: dseg
+
+pkgname=python-pytrie
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="A pure Python implementation of the trie data structure."
+url="https://github.com/gsakkis/pytrie/;
+depends=(python python-sortedcontainers)
+makedepends=(python-setuptools)
+license=(BSD)
+arch=(any)
+source=("https://github.com/gsakkis/pytrie/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('9c51f5f50d22a829dee6d566a34a7f9ec33e434d08bfc9a4346fe8acaf2c1418')
+
+build() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in (4 files)

2019-08-19 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, August 19, 2019 @ 07:30:12
  Author: yan12125
Revision: 500151

python-pytrie: new package, a dependency of python-autobahn

Added:
  python-pytrie/
  python-pytrie/repos/
  python-pytrie/trunk/
  python-pytrie/trunk/PKGBUILD

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

Added: python-pytrie/trunk/PKGBUILD
===
--- python-pytrie/trunk/PKGBUILD(rev 0)
+++ python-pytrie/trunk/PKGBUILD2019-08-19 07:30:12 UTC (rev 500151)
@@ -0,0 +1,31 @@
+# Maintainer: Chih-Hsuan Yen 
+# Modified from aur/python2-pytrie; original maintainership info:
+# Contributor: dseg
+
+pkgname=python-pytrie
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="A pure Python implementation of the trie data structure."
+url="https://github.com/gsakkis/pytrie/;
+depends=(python python-sortedcontainers)
+makedepends=(python-setuptools)
+license=(BSD)
+arch=(any)
+source=("https://github.com/gsakkis/pytrie/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('9c51f5f50d22a829dee6d566a34a7f9ec33e434d08bfc9a4346fe8acaf2c1418')
+
+build() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/pytrie-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in python-cheroot/repos/community-any (8 files)

2019-08-19 Thread Thore Bödecker via arch-commits
Date: Monday, August 19, 2019 @ 07:24:54
  Author: foxxx0
Revision: 500150

archrelease: copy trunk to community-any

Added:
  python-cheroot/repos/community-any/LICENSE
(from rev 500149, python-cheroot/trunk/LICENSE)
  python-cheroot/repos/community-any/PKGBUILD
(from rev 500149, python-cheroot/trunk/PKGBUILD)
  python-cheroot/repos/community-any/cheroot-fix-setup-python3.patch
(from rev 500149, python-cheroot/trunk/cheroot-fix-setup-python3.patch)
  python-cheroot/repos/community-any/disable-broken-tests.patch
(from rev 500149, python-cheroot/trunk/disable-broken-tests.patch)
Deleted:
  python-cheroot/repos/community-any/LICENSE
  python-cheroot/repos/community-any/PKGBUILD
  python-cheroot/repos/community-any/cheroot-fix-setup-python3.patch
  python-cheroot/repos/community-any/disable-broken-tests.patch

-+
 LICENSE |   14 +--
 PKGBUILD|  172 +++---
 cheroot-fix-setup-python3.patch |   20 ++--
 disable-broken-tests.patch  |   20 ++--
 4 files changed, 113 insertions(+), 113 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-08-19 07:24:49 UTC (rev 500149)
+++ LICENSE 2019-08-19 07:24:54 UTC (rev 500150)
@@ -1,7 +0,0 @@
-Copyright Jason R. Coombs
-
-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.

Copied: python-cheroot/repos/community-any/LICENSE (from rev 500149, 
python-cheroot/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-08-19 07:24:54 UTC (rev 500150)
@@ -0,0 +1,7 @@
+Copyright Jason R. Coombs
+
+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.

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:24:49 UTC (rev 500149)
+++ PKGBUILD2019-08-19 07:24:54 UTC (rev 500150)
@@ -1,86 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: wangjiezhe 
-
-pkgbase='python-cheroot'
-_pkgbase="${pkgbase//python-/}"
-pkgname=('python-cheroot' 'python2-cheroot')
-pkgdesc="Highly-optimized, pure-python HTTP server"
-pkgver=6.5.5
-pkgrel=1
-arch=('any')
-url="https://github.com/cherrypy/cheroot;
-license=('MIT')
-makedepends=('python-six' 'python2-six' 'python-setuptools-scm'
-  'python2-setuptools-scm' 'python2-backports.functools_lru_cache'
-  'python2-backports.unittest_mock' 'tree' 'python-tox' 'python2-tox')
-source=("https://files.pythonhosted.org/packages/source/${_pkgbase:0:1}/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;
-"LICENSE"
-"cheroot-fix-setup-python3.patch"
-"disable-broken-tests.patch")
-sha512sums=('85ac5072615ba1b906c23b167e2582ad3cad12c5e4b70d81cef971a61a1caf287f479a665e8fabd66b2bae9c8bb1c9947e5e3fb4ba6e064678782bb3eb351d34'
-

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

2019-08-19 Thread Thore Bödecker via arch-commits
Date: Monday, August 19, 2019 @ 07:24:49
  Author: foxxx0
Revision: 500149

upgpkg: python-cheroot 6.5.6-1

update to 6.5.6

Modified:
  python-cheroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 07:20:24 UTC (rev 500148)
+++ PKGBUILD2019-08-19 07:24:49 UTC (rev 500149)
@@ -5,7 +5,7 @@
 _pkgbase="${pkgbase//python-/}"
 pkgname=('python-cheroot' 'python2-cheroot')
 pkgdesc="Highly-optimized, pure-python HTTP server"
-pkgver=6.5.5
+pkgver=6.5.6
 pkgrel=1
 arch=('any')
 url="https://github.com/cherrypy/cheroot;
@@ -17,7 +17,7 @@
 "LICENSE"
 "cheroot-fix-setup-python3.patch"
 "disable-broken-tests.patch")
-sha512sums=('85ac5072615ba1b906c23b167e2582ad3cad12c5e4b70d81cef971a61a1caf287f479a665e8fabd66b2bae9c8bb1c9947e5e3fb4ba6e064678782bb3eb351d34'
+sha512sums=('6796940e9a3f09fcdbf8c75a820222619dd7388012f294396e425d7d535b3a1a8962e9c206d2951b58c8ec04d921b57e54fca70e8775adf9ec219834cada0e8c'
 
'1106afed483b7258e4ae89c5d9459c3834412b31aac90169725ed62d2ab44f61f6f79e894d4c9e4d8bd99e14530ab778df2187784f0b25eaab86d312fad68944'
 
'f303770c9f8565755230c2e957c444f2c69aea711abd8efc3d916688a31fe187d996e250eeba43e692e87d558831d4708fc712e2c653519d7ea42efba7d3e832'
 
'ee08317c027a36461a89642e47edd5f9706796dbd6c273bbda3a37da5b1578701f861b09f23957636de5e72f38c312ad07caf0216408ec5d543feea7130839ba')


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

2019-08-19 Thread Thore Bödecker via arch-commits
Date: Monday, August 19, 2019 @ 07:20:17
  Author: foxxx0
Revision: 500146

archrelease: copy trunk to community-any

Added:
  ruby-sys-proctable/repos/community-any/PKGBUILD
(from rev 500145, ruby-sys-proctable/trunk/PKGBUILD)
Deleted:
  ruby-sys-proctable/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:20:13 UTC (rev 500145)
+++ PKGBUILD2019-08-19 07:20:17 UTC (rev 500146)
@@ -1,33 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Thore Bödecker 
-# Contributor: Christoph Scholz 
-
-_gemname='sys-proctable'
-pkgname="ruby-${_gemname}"
-pkgver=1.2.1
-pkgrel=2
-pkgdesc='An interface for providing process table information'
-arch=('any')
-url='https://github.com/djberg96/sys-proctable'
-license=('Apache')
-depends=('ruby' 'ruby-ffi')
-makedepends=('ruby-rdoc')
-options=('!emptydirs')
-source=("https://rubygems.org/gems/${_gemname}-${pkgver}.gem;)
-noextract=("${_gemname}-${pkgver}.gem")
-sha512sums=('af52b0fa7a3f8910402baeb1f5570d6b2fc386fa124c1b79c3c2cb4ed02d1d258d3b35de6e1be915978947bfeb588031280d93b5bf7b8df8180302efcb12591d')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-
-  gem install \
---ignore-dependencies \
---no-user-install \
--i "${pkgdir}${_gemdir}" \
--n "${pkgdir}/usr/bin" \
-${_gemname}-${pkgver}.gem
-
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-sys-proctable/repos/community-any/PKGBUILD (from rev 500145, 
ruby-sys-proctable/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 07:20:17 UTC (rev 500146)
@@ -0,0 +1,33 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Thore Bödecker 
+# Contributor: Christoph Scholz 
+
+_gemname='sys-proctable'
+pkgname="ruby-${_gemname}"
+pkgver=1.2.2
+pkgrel=1
+pkgdesc='An interface for providing process table information'
+arch=('any')
+url='https://github.com/djberg96/sys-proctable'
+license=('Apache')
+depends=('ruby' 'ruby-ffi')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=("https://rubygems.org/gems/${_gemname}-${pkgver}.gem;)
+noextract=("${_gemname}-${pkgver}.gem")
+sha512sums=('3bae5bf31be1fbc93576f172abc16fd355eadaf7685127399584404879d9ff7091c63620782cc00999550fa11e8361055a6009a68277a70ed507397f2409c6b9')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install \
+--ignore-dependencies \
+--no-user-install \
+-i "${pkgdir}${_gemdir}" \
+-n "${pkgdir}/usr/bin" \
+${_gemname}-${pkgver}.gem
+
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 07:20:24
  Author: svenstaro
Revision: 500148

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:20:18 UTC (rev 500147)
+++ PKGBUILD2019-08-19 07:20:24 UTC (rev 500148)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible
-pkgver=2.8.3
-pkgrel=1
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='https://www.ansible.com'
-license=('GPL3')
-depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
-provides=('python-ansible')
-replaces=('python-ansible')
-conflicts=('python-ansible')
-optdepends=('sshpass: for ssh connections with password'
-'python-passlib: crypt values for vars_prompt'
-'python-pyopenssl: openssl modules'
-'python-netaddr: for the ipaddr filter'
-'python-systemd: log to journal'
-'python-pywinrm: connect to Windows machines'
-'python-dnspython: for dig lookup'
-'python-ovirt-engine-sdk: ovirt support'
-'python-boto3: aws_s3 module'
-'python-jmespath: json_query support'
-'acme-tiny: openssl_certificate module')
-makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
-backup=('etc/ansible/ansible.cfg')
-source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('cee2c663577155269c4d762816590200224e87979411dc7486f5840783f23aaa688577a3f75e272c4875af30397bb383d11eaa7d122d5f304388d5b45ffb9b6f')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 500147, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 07:20:24 UTC (rev 500148)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.8.4
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://www.ansible.com'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
+provides=('python-ansible')
+replaces=('python-ansible')
+conflicts=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-pyopenssl: openssl modules'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-jmespath: json_query support'
+'acme-tiny: openssl_certificate module')
+makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('9efacbaf053acb8cf92ebe5bda982794ecbdbf55e33a4a292a68874b637eebe82406bfba129adf839354ee18aa809d45d77502f68b8e8d07358a48c9b5687b7e')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 07:20:18
  Author: svenstaro
Revision: 500147

upgpkg: ansible 2.8.4-1

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 07:20:17 UTC (rev 500146)
+++ PKGBUILD2019-08-19 07:20:18 UTC (rev 500147)
@@ -6,7 +6,7 @@
 # Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.8.3
+pkgver=2.8.4
 pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
@@ -30,7 +30,7 @@
 makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
 backup=('etc/ansible/ansible.cfg')
 source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('cee2c663577155269c4d762816590200224e87979411dc7486f5840783f23aaa688577a3f75e272c4875af30397bb383d11eaa7d122d5f304388d5b45ffb9b6f')
+sha512sums=('9efacbaf053acb8cf92ebe5bda982794ecbdbf55e33a4a292a68874b637eebe82406bfba129adf839354ee18aa809d45d77502f68b8e8d07358a48c9b5687b7e')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2019-08-19 Thread Thore Bödecker via arch-commits
Date: Monday, August 19, 2019 @ 07:20:13
  Author: foxxx0
Revision: 500145

upgpkg: ruby-sys-proctable 1.2.2-1

update to 1.2.2

Modified:
  ruby-sys-proctable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 07:16:49 UTC (rev 500144)
+++ PKGBUILD2019-08-19 07:20:13 UTC (rev 500145)
@@ -4,8 +4,8 @@
 
 _gemname='sys-proctable'
 pkgname="ruby-${_gemname}"
-pkgver=1.2.1
-pkgrel=2
+pkgver=1.2.2
+pkgrel=1
 pkgdesc='An interface for providing process table information'
 arch=('any')
 url='https://github.com/djberg96/sys-proctable'
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/gems/${_gemname}-${pkgver}.gem;)
 noextract=("${_gemname}-${pkgver}.gem")
-sha512sums=('af52b0fa7a3f8910402baeb1f5570d6b2fc386fa124c1b79c3c2cb4ed02d1d258d3b35de6e1be915978947bfeb588031280d93b5bf7b8df8180302efcb12591d')
+sha512sums=('3bae5bf31be1fbc93576f172abc16fd355eadaf7685127399584404879d9ff7091c63620782cc00999550fa11e8361055a6009a68277a70ed507397f2409c6b9')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 07:16:49
  Author: svenstaro
Revision: 500144

archrelease: copy trunk to community-any

Added:
  cimg/repos/community-any/PKGBUILD
(from rev 500143, cimg/trunk/PKGBUILD)
Deleted:
  cimg/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:16:39 UTC (rev 500143)
+++ PKGBUILD2019-08-19 07:16:49 UTC (rev 500144)
@@ -1,22 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Diego Galizzi 
-# Contributor: zoulnix 
-
-pkgname=cimg
-pkgver=2.6.7
-pkgrel=1
-pkgdesc="Open-source C++ toolkit for image processing"
-arch=('any')
-url="http://cimg.eu/;
-license=('custom')
-depends=('fftw' 'graphicsmagick')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver}.tar.gz;)
-sha256sums=('9f15595ad461c57aec3586a4ce1af27f4e4b2824fc9547b52a8be6adc20b202e')
-
-package() {
-  cd "${srcdir}"/CImg-v.${pkgver}
-  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 CImg.h "${pkgdir}"/usr/include/
-  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
-  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: cimg/repos/community-any/PKGBUILD (from rev 500143, cimg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 07:16:49 UTC (rev 500144)
@@ -0,0 +1,22 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Diego Galizzi 
+# Contributor: zoulnix 
+
+pkgname=cimg
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Open-source C++ toolkit for image processing"
+arch=('any')
+url="http://cimg.eu/;
+license=('custom')
+depends=('fftw' 'graphicsmagick')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver}.tar.gz;)
+sha256sums=('b23b8b4fea5daa0f4bb422830755fb880bfd5f7b6f2a6151ef1e39d796887c38')
+
+package() {
+  cd "${srcdir}"/CImg-v.${pkgver}
+  install -d "${pkgdir}"/usr/include/CImg/plugins 
${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 CImg.h "${pkgdir}"/usr/include/
+  install -m644 plugins/*.h "${pkgdir}"/usr/include/CImg/plugins/
+  install -m644 Licence_CeCILL*_V*-en.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2019-08-19 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 19, 2019 @ 07:16:39
  Author: svenstaro
Revision: 500143

upgpkg: cimg 2.7.0-1

Modified:
  cimg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 06:29:45 UTC (rev 500142)
+++ PKGBUILD2019-08-19 07:16:39 UTC (rev 500143)
@@ -3,7 +3,7 @@
 # Contributor: zoulnix 
 
 pkgname=cimg
-pkgver=2.6.7
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Open-source C++ toolkit for image processing"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('custom')
 depends=('fftw' 'graphicsmagick')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dtschump/CImg/archive/v.${pkgver}.tar.gz;)
-sha256sums=('9f15595ad461c57aec3586a4ce1af27f4e4b2824fc9547b52a8be6adc20b202e')
+sha256sums=('b23b8b4fea5daa0f4bb422830755fb880bfd5f7b6f2a6151ef1e39d796887c38')
 
 package() {
   cd "${srcdir}"/CImg-v.${pkgver}


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 06:19:53
  Author: felixonmars
Revision: 500137

archrelease: copy trunk to community-x86_64

Added:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 500136, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 06:19:34 UTC (rev 500136)
+++ PKGBUILD2019-08-19 06:19:53 UTC (rev 500137)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.16.4
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('50b411eb08a395ce910f0e04fdf3afa252632d8cd3716f8f7026c3b48bbc8f7dd545f51b87ba02092ce7a645c95e0da20972fafb5f1a51388721d59723aa5312')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 500136, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 06:19:53 UTC (rev 500137)
@@ -0,0 +1,22 @@
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.16.5
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('411eac7fd607acaa33f28e642591a1ba9e3e905a5c141383a7168cb36c703b98da2ab90ebfeed77165fd5f6271756d07780a2ed9829fecf417cbda926a0214b9')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 19, 2019 @ 06:19:34
  Author: felixonmars
Revision: 500136

upgpkg: python-ruamel-yaml 0.16.5-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 05:48:14 UTC (rev 500135)
+++ PKGBUILD2019-08-19 06:19:34 UTC (rev 500136)
@@ -3,7 +3,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.16.4
+pkgver=0.16.5
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('50b411eb08a395ce910f0e04fdf3afa252632d8cd3716f8f7026c3b48bbc8f7dd545f51b87ba02092ce7a645c95e0da20972fafb5f1a51388721d59723aa5312')
+sha512sums=('411eac7fd607acaa33f28e642591a1ba9e3e905a5c141383a7168cb36c703b98da2ab90ebfeed77165fd5f6271756d07780a2ed9829fecf417cbda926a0214b9')
 
 package() {
   depends=('python')