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

2019-01-30 Thread Felix Yan via arch-commits
Date: Thursday, January 31, 2019 @ 07:39:07
  Author: felixonmars
Revision: 428691

archrelease: copy trunk to community-x86_64

Added:
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 428690, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/rebuild.list
(from rev 428690, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-x86_64/PKGBUILD
  nodejs/repos/community-x86_64/rebuild.list

--+
 PKGBUILD |  144 -
 rebuild.list |4 -
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-31 07:38:31 UTC (rev 428690)
+++ PKGBUILD2019-01-31 07:39:07 UTC (rev 428691)
@@ -1,72 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=11.8.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('756704bc3070d50c38fa6ee58c75c3658413b02a026ab5ed728d434bace8bc3a61161e3e4a4948a149f4d581d658cb0c58808c3ffa257955d077bd4d4f4956d8')
-
-prepare() {
-  cd node-$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---experimental-http-parser \
---shared-cares \
---shared-nghttp2
-# --shared-v8
-# --shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-x86_64/PKGBUILD (from rev 428690, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-31 07:39:07 UTC (rev 428691)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=11.9.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
+sha512sums=('bf316e75b6127ef334bdd0ec62280527c9e4de53caf2494b290ad49a80329c7dd6a495114cfeab04c8a171dd56ddd7aeba3837f847060423f67f90629c42d779')
+
+prepare() {
+  cd node-$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 

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

2019-01-30 Thread Felix Yan via arch-commits
Date: Thursday, January 31, 2019 @ 07:38:31
  Author: felixonmars
Revision: 428690

upgpkg: nodejs 11.9.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-31 06:05:45 UTC (rev 428689)
+++ PKGBUILD2019-01-31 07:38:31 UTC (rev 428690)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=11.8.0
+pkgver=11.9.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('756704bc3070d50c38fa6ee58c75c3658413b02a026ab5ed728d434bace8bc3a61161e3e4a4948a149f4d581d658cb0c58808c3ffa257955d077bd4d4f4956d8')
+sha512sums=('bf316e75b6127ef334bdd0ec62280527c9e4de53caf2494b290ad49a80329c7dd6a495114cfeab04c8a171dd56ddd7aeba3837f847060423f67f90629c42d779')
 
 prepare() {
   cd node-$pkgver


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

2019-01-30 Thread Jiachen Yang via arch-commits
Date: Thursday, January 31, 2019 @ 06:05:45
  Author: farseerfc
Revision: 428689

archrelease: copy trunk to community-x86_64

Added:
  alacritty/repos/community-x86_64/PKGBUILD
(from rev 428688, alacritty/trunk/PKGBUILD)
Deleted:
  alacritty/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-31 06:05:00 UTC (rev 428688)
+++ PKGBUILD2019-01-31 06:05:45 UTC (rev 428689)
@@ -1,49 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Jiachen YANG 
-# Contributor: kpcyrd 
-# Contributor: quininer 
-pkgbase='alacritty'
-pkgname=('alacritty' 'alacritty-terminfo')
-pkgdesc="A cross-platform, GPU-accelerated terminal emulator"
-_pkgver=0.2.7
-pkgver=$_pkgver
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/jwilm/alacritty;
-license=('Apache')
-makedepends=('rust' 'cargo' 'cmake' 'fontconfig' 'ncurses' 
'desktop-file-utils')
-source=("${pkgbase}-${_pkgver}.tar.gz::https://github.com/jwilm/${pkgbase}/archive/v${_pkgver}.tar.gz;)
-sha256sums=('2d12fd880174fc6530df3718725395e95682444fae04402f37f67a03ba1d5796')
-
-build(){
-  cd $pkgbase-$_pkgver
-  env CARGO_INCREMENTAL=0 cargo build --release --locked
-}
-
-check(){
-  cd $pkgbase-$_pkgver
-  env CARGO_INCREMENTAL=0 cargo test --release
-}
-
-package_alacritty() {
-  depends=('freetype2' 'fontconfig' 'xclip' 'libxi' 'libxcursor')
-  
-  cd $pkgbase-$_pkgver
-  desktop-file-install -m 644 --dir "$pkgdir/usr/share/applications/" 
"alacritty.desktop"
-  
-  install -D -m755 "target/release/alacritty" "$pkgdir/usr/bin/alacritty"
-  install -D -m644 "alacritty.man" "$pkgdir/usr/share/man/man1/alacritty.1"
-  install -D -m644 "alacritty-completions.bash" 
"$pkgdir/usr/share/bash-completion/completions/alacritty"
-  install -D -m644 "alacritty-completions.zsh" 
"$pkgdir/usr/share/zsh/site-functions/_alacritty"
-  install -D -m644 "alacritty-completions.fish" 
"$pkgdir/usr/share/fish/completions/alacritty.fish"
-}
-
-package_alacritty-terminfo() {
-  pkgdesc="Terminfo files for the alacritty terminal emulator"
-  depends=('ncurses')
-  
-  cd $pkgbase-$_pkgver
-  
-  install -dm 755 "$pkgdir/usr/share/terminfo/a/"
-  tic -o "$pkgdir/usr/share/terminfo" alacritty.info
-}

Copied: alacritty/repos/community-x86_64/PKGBUILD (from rev 428688, 
alacritty/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-31 06:05:45 UTC (rev 428689)
@@ -0,0 +1,50 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Jiachen YANG 
+# Contributor: kpcyrd 
+# Contributor: quininer 
+pkgbase='alacritty'
+pkgname=('alacritty' 'alacritty-terminfo')
+pkgdesc="A cross-platform, GPU-accelerated terminal emulator"
+_pkgver=0.2.7
+pkgver=$_pkgver
+pkgrel=2
+arch=('x86_64')
+url="https://github.com/jwilm/alacritty;
+license=('Apache')
+makedepends=('rust' 'cargo' 'cmake' 'fontconfig' 'ncurses' 
'desktop-file-utils')
+source=("${pkgbase}-${_pkgver}.tar.gz::https://github.com/jwilm/${pkgbase}/archive/v${_pkgver}.tar.gz;)
+sha256sums=('2d12fd880174fc6530df3718725395e95682444fae04402f37f67a03ba1d5796')
+
+build(){
+  cd $pkgbase-$_pkgver
+  env CARGO_INCREMENTAL=0 cargo build --release --locked
+}
+
+check(){
+  cd $pkgbase-$_pkgver
+  env CARGO_INCREMENTAL=0 cargo test --release
+}
+
+package_alacritty() {
+  depends=('freetype2' 'fontconfig' 'xclip' 'libxi' 'libxcursor')
+  optdepends=('alacritty-terminfo: terminfo for alacritty')
+  
+  cd $pkgbase-$_pkgver
+  desktop-file-install -m 644 --dir "$pkgdir/usr/share/applications/" 
"alacritty.desktop"
+  
+  install -D -m755 "target/release/alacritty" "$pkgdir/usr/bin/alacritty"
+  install -D -m644 "alacritty.man" "$pkgdir/usr/share/man/man1/alacritty.1"
+  install -D -m644 "alacritty-completions.bash" 
"$pkgdir/usr/share/bash-completion/completions/alacritty"
+  install -D -m644 "alacritty-completions.zsh" 
"$pkgdir/usr/share/zsh/site-functions/_alacritty"
+  install -D -m644 "alacritty-completions.fish" 
"$pkgdir/usr/share/fish/completions/alacritty.fish"
+}
+
+package_alacritty-terminfo() {
+  pkgdesc="Terminfo files for the alacritty terminal emulator"
+  depends=('ncurses')
+  
+  cd $pkgbase-$_pkgver
+  
+  install -dm 755 "$pkgdir/usr/share/terminfo/a/"
+  tic -o "$pkgdir/usr/share/terminfo" alacritty.info
+}


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

2019-01-30 Thread Jiachen Yang via arch-commits
Date: Thursday, January 31, 2019 @ 06:05:00
  Author: farseerfc
Revision: 428688

upgpkg: alacritty 0.2.7-2

alacritty add optdepends on alacritty-terminfo

Modified:
  alacritty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-31 02:49:24 UTC (rev 428687)
+++ PKGBUILD2019-01-31 06:05:00 UTC (rev 428688)
@@ -7,7 +7,7 @@
 pkgdesc="A cross-platform, GPU-accelerated terminal emulator"
 _pkgver=0.2.7
 pkgver=$_pkgver
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://github.com/jwilm/alacritty;
 license=('Apache')
@@ -27,6 +27,7 @@
 
 package_alacritty() {
   depends=('freetype2' 'fontconfig' 'xclip' 'libxi' 'libxcursor')
+  optdepends=('alacritty-terminfo: terminfo for alacritty')
   
   cd $pkgbase-$_pkgver
   desktop-file-install -m 644 --dir "$pkgdir/usr/share/applications/" 
"alacritty.desktop"


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

2019-01-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, January 31, 2019 @ 04:05:29
  Author: anatolik
Revision: 344948

archrelease: copy trunk to testing-x86_64

Added:
  ruby/repos/testing-x86_64/
  ruby/repos/testing-x86_64/PKGBUILD
(from rev 344947, ruby/trunk/PKGBUILD)

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

Copied: ruby/repos/testing-x86_64/PKGBUILD (from rev 344947, 
ruby/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-31 04:05:29 UTC (rev 344948)
@@ -0,0 +1,96 @@
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=(ruby ruby-docs)
+pkgver=2.6.1
+pkgrel=1
+arch=(x86_64)
+url='http://www.ruby-lang.org/en/'
+license=(BSD custom)
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('fb36289a955f0596c683cdadf1e4a9a9fd35222b1e1c6160c2e7cd82e5befd40a7aa4361e55f7a8f83c06ee899ec493821c7db34a60c4ac3bca0e874d33ef1a9')
+
+prepare() {
+  cd ruby-${pkgver}
+  # remove bundled gems, we are going to ship them as separate packages
+  rm -rf gems/
+}
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=(gdbm openssl libffi libyaml gmp zlib rubygems)
+  optdepends=(
+  'ruby-docs: Ruby documentation'
+  'tk: for Ruby/TK'
+  )
+
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+
+  rubyver=${pkgver:0:3}.0
+
+  # remove rubygems as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
+  rm "${pkgdir}"/usr/bin/gem
+
+  # remove bundler as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{bundler,bundler.rb}
+  rm "${pkgdir}"/usr/bin/{bundle,bundler}
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/bundler-*.gemspec
+  rm "${pkgdir}"/usr/share/man/man1/{bundle,bundle-*}.1
+
+  # remove bundled rdoc gem
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rdoc,rdoc.rb}
+  rm "${pkgdir}"/usr/bin/{rdoc,ri}
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/rdoc-*.gemspec
+
+  # remove irb as it is a separate package now
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{irb,irb.rb}
+  rm "${pkgdir}"/usr/bin/irb
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/irb-*.gemspec
+  rm "${pkgdir}"/usr/share/man/man1/irb.1
+
+  # remove all bundled gems to avoid conflicts with ruby-* Arch packages
+  rm -r "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/gems/*
+}
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-doc install-capi
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
+}


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

2019-01-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, January 31, 2019 @ 04:04:58
  Author: anatolik
Revision: 344947

upgpkg: ruby 2.6.1-1

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 19:08:07 UTC (rev 344946)
+++ PKGBUILD2019-01-31 04:04:58 UTC (rev 344947)
@@ -4,8 +4,8 @@
 # Contributor: Jeramy Rutley 
 
 pkgname=(ruby ruby-docs)
-pkgver=2.6.0
-pkgrel=5
+pkgver=2.6.1
+pkgrel=1
 arch=(x86_64)
 url='http://www.ruby-lang.org/en/'
 license=(BSD custom)
@@ -12,7 +12,7 @@
 makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
 options=(!emptydirs)
 
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
-sha512sums=('c56eaf85ef7b79deb34ee4590b143c07f4fc83eb79775290761aee5a7c63374659613538a41f25706ed6e19e49d5c67a1014c24d17f29948294c7abd0b0fcea8')
+sha512sums=('fb36289a955f0596c683cdadf1e4a9a9fd35222b1e1c6160c2e7cd82e5befd40a7aa4361e55f7a8f83c06ee899ec493821c7db34a60c4ac3bca0e874d33ef1a9')
 
 prepare() {
   cd ruby-${pkgver}


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

2019-01-30 Thread Brett Cornwall via arch-commits
Date: Thursday, January 31, 2019 @ 02:49:24
  Author: ainola
Revision: 428687

archrelease: copy trunk to community-x86_64

Added:
  scdoc/repos/community-x86_64/PKGBUILD
(from rev 428686, scdoc/trunk/PKGBUILD)
Deleted:
  scdoc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-31 02:48:51 UTC (rev 428686)
+++ PKGBUILD2019-01-31 02:49:24 UTC (rev 428687)
@@ -1,32 +0,0 @@
-# Maintainer: Ainola 
-# Contributor: Drew DeVault
-
-pkgname=scdoc
-pkgver=1.8.0
-pkgrel=1
-license=('MIT')
-pkgdesc='Tool for generating roff manual pages'
-arch=('x86_64')
-url='https://git.sr.ht/~sircmpwn/scdoc/'
-source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('2eafc29a7379c6123749fac21ec7c7a0319c6c2dc7cec995e8ef4ca6613bad48c3407640c8e0ff0c3281706bbe4dde706b8c68cfddadf94bb2b50d032c5ce044')
-
-build() {
-cd "$pkgname-$pkgver"
-# Upstream purposefully does not honor the user's LDFLAGS in order to keep
-# scdoc static. As we gain no benefit to statically linking and, in fact,
-# lose standard Arch practices (such as RELRO and PIE), we must override
-# LDFLAGS
-make PREFIX=/usr LDFLAGS="$LDFLAGS"
-}
-
-check() {
-cd "$pkgname-$pkgver"
-make check
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make PREFIX=/usr DESTDIR="$pkgdir" install
-install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: scdoc/repos/community-x86_64/PKGBUILD (from rev 428686, 
scdoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-31 02:49:24 UTC (rev 428687)
@@ -0,0 +1,32 @@
+# Maintainer: Ainola 
+# Contributor: Drew DeVault
+
+pkgname=scdoc
+pkgver=1.8.1
+pkgrel=1
+license=('MIT')
+pkgdesc='Tool for generating roff manual pages'
+arch=('x86_64')
+url='https://git.sr.ht/~sircmpwn/scdoc/'
+source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz;)
+sha512sums=('16845acac3d59eb878f1a41d5fa95d9910166da3ac292173506b778d29f5289a26a6529aac765c07b2e04bbc6924b32b68ff68f7491a03a1050e53251a193eaf')
+
+build() {
+cd "$pkgname-$pkgver"
+# Upstream purposefully does not honor the user's LDFLAGS in order to keep
+# scdoc static. As we gain no benefit to statically linking and, in fact,
+# lose standard Arch practices (such as RELRO and PIE), we must override
+# LDFLAGS
+make PREFIX=/usr LDFLAGS="$LDFLAGS"
+}
+
+check() {
+cd "$pkgname-$pkgver"
+make check
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make PREFIX=/usr DESTDIR="$pkgdir" install
+install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2019-01-30 Thread Brett Cornwall via arch-commits
Date: Thursday, January 31, 2019 @ 02:48:51
  Author: ainola
Revision: 428686

upgpkg: scdoc-1.8.1

Modified:
  scdoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-31 01:56:54 UTC (rev 428685)
+++ PKGBUILD2019-01-31 02:48:51 UTC (rev 428686)
@@ -2,7 +2,7 @@
 # Contributor: Drew DeVault
 
 pkgname=scdoc
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 license=('MIT')
 pkgdesc='Tool for generating roff manual pages'
@@ -9,7 +9,7 @@
 arch=('x86_64')
 url='https://git.sr.ht/~sircmpwn/scdoc/'
 
source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('2eafc29a7379c6123749fac21ec7c7a0319c6c2dc7cec995e8ef4ca6613bad48c3407640c8e0ff0c3281706bbe4dde706b8c68cfddadf94bb2b50d032c5ce044')
+sha512sums=('16845acac3d59eb878f1a41d5fa95d9910166da3ac292173506b778d29f5289a26a6529aac765c07b2e04bbc6924b32b68ff68f7491a03a1050e53251a193eaf')
 
 build() {
 cd "$pkgname-$pkgver"


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

2019-01-30 Thread Kyle Keen via arch-commits
Date: Thursday, January 31, 2019 @ 01:56:34
  Author: kkeen
Revision: 428684

upgpkg: racket 7.2-1

Modified:
  racket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 22:59:53 UTC (rev 428683)
+++ PKGBUILD2019-01-31 01:56:34 UTC (rev 428684)
@@ -3,7 +3,7 @@
 
 pkgbase=racket
 pkgname=(racket racket-minimal)
-pkgver=7.1
+pkgver=7.2
 pkgrel=1
 pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
 arch=('x86_64')
@@ -16,7 +16,7 @@
 replaces=('racket-docs')
 
source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
 # 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
-sha1sums=('2277a2fc65c5376d0a45eb8b1ad93ae7ef88e437')
+sha1sums=('01c38f6d35f9866480a79a00fbd6c9a9a2459a82')
 
 prepare() {
   cd "$pkgbase-$pkgver"


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

2019-01-30 Thread Kyle Keen via arch-commits
Date: Thursday, January 31, 2019 @ 01:56:54
  Author: kkeen
Revision: 428685

archrelease: copy trunk to community-x86_64

Added:
  racket/repos/community-x86_64/PKGBUILD
(from rev 428684, racket/trunk/PKGBUILD)
Deleted:
  racket/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-31 01:56:34 UTC (rev 428684)
+++ PKGBUILD2019-01-31 01:56:54 UTC (rev 428685)
@@ -1,72 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Eric Bélanger 
-
-pkgbase=racket
-pkgname=(racket racket-minimal)
-pkgver=7.1
-pkgrel=1
-pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
-arch=('x86_64')
-url="http://racket-lang.org/;
-license=('GPL3' 'LGPL3' 'custom')
-depends=('gtk3')
-makedepends=('gsfonts' 'sqlite')
-options=('!strip' '!emptydirs')
-conflicts=('racket-docs')
-replaces=('racket-docs')
-source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
-# 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
-sha1sums=('2277a2fc65c5376d0a45eb8b1ad93ae7ef88e437')
-
-prepare() {
-  cd "$pkgbase-$pkgver"
-  echo "Icon=drracket" >> share/pkgs/drracket/drracket/drracket.desktop
-}
-
-build() {
-  cd "$pkgbase-$pkgver/src"
-  [ "$CARCH" == "x86_64" ] && export CFLAGS+=" -fPIC"
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared
-  make
-}
-
-package_racket() {
-  cd "$pkgbase-$pkgver/src"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING-libscheme.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  install -Dm644 ../share/pkgs/drracket/drracket/drracket.desktop 
"$pkgdir/usr/share/applications/drracket.desktop"
-  install -d "$pkgdir"/usr/share/icons/hicolor/{16x16,32x32,48x48,256x256}/apps
-  ln -s /usr/share/racket/pkgs/icons/plt-16x16.png 
"$pkgdir/usr/share/icons/hicolor/16x16/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-32x32.png 
"$pkgdir/usr/share/icons/hicolor/32x32/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-48x48.png 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-logo-red-diffuse.png 
"$pkgdir/usr/share/icons/hicolor/256x256/apps/drracket.png"
-}
-
-package_racket-minimal() {
-  pkgdesc="Minimal Racket installation, without DrRacket/docs."
-  depends=('libffi')
-  conflicts=('racket')
-  provides=('racket')
-  replaces=()
-
-  # The -minimal tarball uses the SAME extract path.
-  # 99% identical sources anyway, manually apply the difference.
-  # Thankfully these builds happen in the given order
-  # so we can save some time and reuse the previous build.
-  cd "$pkgbase-$pkgver"
-  echo '((root "pkgs/racket-lib"))' > share/links.rktd
-  _libhash=$(grep -oP '\("racket-lib".*?#f\)\)' share/pkgs/pkgs.rktd)
-  echo "#hash($_libhash)" > share/pkgs/pkgs.rktd
-  cd share/pkgs
-  find . -not -name '.' -not -name '*pkgs.rktd' -not -regex '.*/racket-lib.*' 
-delete
-  cd ../../src
-
-  make DESTDIR="${pkgdir}" install
-
-  find "$pkgdir/usr/share/doc/" -delete
-  install -d "$pkgdir/usr/share/doc/racket/"
-  touch "$pkgdir/usr/share/doc/racket/docindex.sqlite"  # FS#60413
-
-  install -Dm644 COPYING-libscheme.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: racket/repos/community-x86_64/PKGBUILD (from rev 428684, 
racket/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-31 01:56:54 UTC (rev 428685)
@@ -0,0 +1,72 @@
+# Maintainer: Kyle Keen 
+# Contributor: Eric Bélanger 
+
+pkgbase=racket
+pkgname=(racket racket-minimal)
+pkgver=7.2
+pkgrel=1
+pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
+arch=('x86_64')
+url="http://racket-lang.org/;
+license=('GPL3' 'LGPL3' 'custom')
+depends=('gtk3')
+makedepends=('gsfonts' 'sqlite')
+options=('!strip' '!emptydirs')
+conflicts=('racket-docs')
+replaces=('racket-docs')
+source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
+# 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
+sha1sums=('01c38f6d35f9866480a79a00fbd6c9a9a2459a82')
+
+prepare() {
+  cd "$pkgbase-$pkgver"
+  echo "Icon=drracket" >> share/pkgs/drracket/drracket/drracket.desktop
+}
+
+build() {
+  cd "$pkgbase-$pkgver/src"
+  [ "$CARCH" == "x86_64" ] && export CFLAGS+=" -fPIC"
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared
+  make
+}
+
+package_racket() {
+  cd "$pkgbase-$pkgver/src"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING-libscheme.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -Dm644 ../share/pkgs/drracket/drracket/drracket.desktop 
"$pkgdir/usr/share/applications/drracket.desktop"
+  install -d 

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

2019-01-30 Thread Morten Linderud via arch-commits
Date: Wednesday, January 30, 2019 @ 22:59:53
  Author: foxboron
Revision: 428683

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 428682, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 428682, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  220 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 124 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 22:59:42 UTC (rev 428682)
+++ PKGBUILD2019-01-30 22:59:53 UTC (rev 428683)
@@ -1,110 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.11.5
-pkgrel=2
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-export GOOS=linux
-case "$CARCH" in
-  x86_64) export GOARCH=amd64 ;;
-esac
-export GOROOT_FINAL=/usr/lib/go
-export GOROOT_BOOTSTRAP=/usr/lib/go
-export GOCACHE=off
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOPATH="$srcdir/"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k 
-}
-
-_package() {
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-
-  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
-  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
-  # Make sure it exists without rebuilding std with -buildmode=pie.
-  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 428682, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 22:59:53 UTC (rev 428683)
@@ -0,0 +1,110 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.5
+pkgrel=3
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
+

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

2019-01-30 Thread Morten Linderud via arch-commits
Date: Wednesday, January 30, 2019 @ 22:59:42
  Author: foxboron
Revision: 428682

upgpkg: go 2:1.11.5-3

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 21:50:06 UTC (rev 428681)
+++ PKGBUILD2019-01-30 22:59:42 UTC (rev 428682)
@@ -15,7 +15,7 @@
 pkgname=(go go-pie)
 epoch=2
 pkgver=1.11.5
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 url='https://golang.org/'
 license=(BSD)
@@ -71,7 +71,7 @@
   cd "$srcdir/$1"
 
   install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
+  cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
   cp -r doc/* "$pkgdir/usr/share/doc/go"
 
   ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"


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

2019-01-30 Thread Ivy Foster via arch-commits
Date: Wednesday, January 30, 2019 @ 21:50:06
  Author: escondida
Revision: 428681

archrelease: copy trunk to community-x86_64

Added:
  physlock/repos/community-x86_64/PKGBUILD
(from rev 428680, physlock/trunk/PKGBUILD)
  physlock/repos/community-x86_64/physlock.pam
(from rev 428680, physlock/trunk/physlock.pam)
Deleted:
  physlock/repos/community-x86_64/PKGBUILD
  physlock/repos/community-x86_64/physlock.pam

--+
 PKGBUILD |   66 -
 physlock.pam |   10 
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 21:49:40 UTC (rev 428680)
+++ PKGBUILD2019-01-30 21:50:06 UTC (rev 428681)
@@ -1,33 +0,0 @@
-# Maintainer: Ivy Foster 
-# Reference: PKGBUILD(5)
-
-pkgname=physlock
-pkgver=11
-pkgrel=4
-pkgdesc='Lightweight Linux console locking tool'
-url='https://github.com/muennich/physlock'
-license=(GPL2)
-
-depends=(pam)
-optdepends=('xss-lock: lock screen on suspend or after inactivity')
-
-arch=(x86_64)
-# physlock.pam: see 
https://bugs.archlinux.org/index.php?do=details_id=61300
-source=(
-   
"physlock-$pkgver.tar.gz::https://github.com/muennich/physlock/archive/v$pkgver.tar.gz;
-   physlock.pam
-)
-# sha256sums provided by packager; grains of salt advised
-sha256sums=(
-   f03031a6f4c6a08d62098457834d04b8835082a76609059451397356a83d4442
-   de66118684a2ecec18017dd96e50a489f30465510250c007ced16f81fb542ba5
-)
-
-build() {
-   make PREFIX=/usr -C "physlock-$pkgver"
-}
-
-package() {
-   install -D -m 644 physlock.pam "$pkgdir/etc/pam.d/physlock"
-   make PREFIX=/usr "DESTDIR=$pkgdir" -C "physlock-$pkgver" install
-}

Copied: physlock/repos/community-x86_64/PKGBUILD (from rev 428680, 
physlock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 21:50:06 UTC (rev 428681)
@@ -0,0 +1,33 @@
+# Maintainer: Ivy Foster 
+# Reference: PKGBUILD(5)
+
+pkgname=physlock
+pkgver=13
+pkgrel=1
+pkgdesc='Lightweight Linux console locking tool'
+url='https://github.com/muennich/physlock'
+license=(GPL2)
+
+depends=(pam)
+optdepends=('xss-lock: lock screen on suspend or after inactivity')
+
+arch=(x86_64)
+# physlock.pam: see 
https://bugs.archlinux.org/index.php?do=details_id=61300
+source=(
+   
"physlock-$pkgver.tar.gz::https://github.com/muennich/physlock/archive/v$pkgver.tar.gz;
+   physlock.pam
+)
+# sha256sums provided by packager; grains of salt advised
+sha256sums=(
+   9ae4716a1e916f141e47a01b439133ca382281ebdcbec1e53f85da6771774bd6
+   de66118684a2ecec18017dd96e50a489f30465510250c007ced16f81fb542ba5
+)
+
+build() {
+   make PREFIX=/usr -C "physlock-$pkgver"
+}
+
+package() {
+   install -D -m 644 physlock.pam "$pkgdir/etc/pam.d/physlock"
+   make PREFIX=/usr "DESTDIR=$pkgdir" -C "physlock-$pkgver" install
+}

Deleted: physlock.pam
===
--- physlock.pam2019-01-30 21:49:40 UTC (rev 428680)
+++ physlock.pam2019-01-30 21:50:06 UTC (rev 428681)
@@ -1,5 +0,0 @@
-#%PAM-1.0
-auth   requiredpam_unix.so
-accountrequiredpam_unix.so
-password   requiredpam_unix.so
-sessionrequiredpam_unix.so

Copied: physlock/repos/community-x86_64/physlock.pam (from rev 428680, 
physlock/trunk/physlock.pam)
===
--- physlock.pam(rev 0)
+++ physlock.pam2019-01-30 21:50:06 UTC (rev 428681)
@@ -0,0 +1,5 @@
+#%PAM-1.0
+auth   requiredpam_unix.so
+accountrequiredpam_unix.so
+password   requiredpam_unix.so
+sessionrequiredpam_unix.so


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

2019-01-30 Thread Ivy Foster via arch-commits
Date: Wednesday, January 30, 2019 @ 21:49:40
  Author: escondida
Revision: 428680

upgpkg: physlock 13-1

update to v. 13

Modified:
  physlock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 21:11:03 UTC (rev 428679)
+++ PKGBUILD2019-01-30 21:49:40 UTC (rev 428680)
@@ -2,8 +2,8 @@
 # Reference: PKGBUILD(5)
 
 pkgname=physlock
-pkgver=11
-pkgrel=4
+pkgver=13
+pkgrel=1
 pkgdesc='Lightweight Linux console locking tool'
 url='https://github.com/muennich/physlock'
 license=(GPL2)
@@ -19,7 +19,7 @@
 )
 # sha256sums provided by packager; grains of salt advised
 sha256sums=(
-   f03031a6f4c6a08d62098457834d04b8835082a76609059451397356a83d4442
+   9ae4716a1e916f141e47a01b439133ca382281ebdcbec1e53f85da6771774bd6
de66118684a2ecec18017dd96e50a489f30465510250c007ced16f81fb542ba5
 )
 


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

2019-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 30, 2019 @ 21:11:03
  Author: svenstaro
Revision: 428679

archrelease: copy trunk to community-x86_64

Added:
  enet/repos/community-x86_64/PKGBUILD
(from rev 428678, enet/trunk/PKGBUILD)
Deleted:
  enet/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 21:10:49 UTC (rev 428678)
+++ PKGBUILD2019-01-30 21:11:03 UTC (rev 428679)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Mateusz Herych 
-# Contributor: Bj?indeijer 
-
-pkgname=enet
-pkgver=1.3.13
-pkgrel=2
-pkgdesc='A relatively thin, simple and robust network communication layer on 
top of UDP'
-arch=('x86_64')
-url='http://enet.bespin.org/'
-license=('custom')
-depends=('glibc')
-source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('82501c0248330a3a6bcac907907760e59b18cb662ebb42fe2c91e1557f1bc8ab452bf3fe7477dc01fa7a6e3b6124e1eb8eac46382d5bbebb2394879f9568b5df')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: enet/repos/community-x86_64/PKGBUILD (from rev 428678, 
enet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 21:11:03 UTC (rev 428679)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Mateusz Herych 
+# Contributor: Bj?indeijer 
+
+pkgname=enet
+pkgver=1.3.14
+pkgrel=1
+pkgdesc='A relatively thin, simple and robust network communication layer on 
top of UDP'
+arch=('x86_64')
+url='http://enet.bespin.org/'
+license=('custom')
+depends=('glibc')
+source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('56011529c02ef085e57c77b7d6b72e5d0e76159ebf94a9980f50c2c8f7ef85a32a163e65d9414dda810fc2204e71c389745e7725a731371e2847a45bd4e18704')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 30, 2019 @ 21:10:49
  Author: svenstaro
Revision: 428678

upgpkg: enet 1.3.14-1

Modified:
  enet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:45:46 UTC (rev 428677)
+++ PKGBUILD2019-01-30 21:10:49 UTC (rev 428678)
@@ -3,8 +3,8 @@
 # Contributor: Bj?indeijer 
 
 pkgname=enet
-pkgver=1.3.13
-pkgrel=2
+pkgver=1.3.14
+pkgrel=1
 pkgdesc='A relatively thin, simple and robust network communication layer on 
top of UDP'
 arch=('x86_64')
 url='http://enet.bespin.org/'
@@ -11,7 +11,7 @@
 license=('custom')
 depends=('glibc')
 source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('82501c0248330a3a6bcac907907760e59b18cb662ebb42fe2c91e1557f1bc8ab452bf3fe7477dc01fa7a6e3b6124e1eb8eac46382d5bbebb2394879f9568b5df')
+sha512sums=('56011529c02ef085e57c77b7d6b72e5d0e76159ebf94a9980f50c2c8f7ef85a32a163e65d9414dda810fc2204e71c389745e7725a731371e2847a45bd4e18704')
 
 build() {
   cd "${pkgname}-${pkgver}"


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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:45:46
  Author: mtorromeo
Revision: 428677

archrelease: copy trunk to community-x86_64

Added:
  logstash/repos/community-x86_64/PKGBUILD
(from rev 428676, logstash/trunk/PKGBUILD)
  logstash/repos/community-x86_64/build.patch
(from rev 428676, logstash/trunk/build.patch)
  logstash/repos/community-x86_64/bundle.config
(from rev 428676, logstash/trunk/bundle.config)
  logstash/repos/community-x86_64/logstash-sysuser.conf
(from rev 428676, logstash/trunk/logstash-sysuser.conf)
  logstash/repos/community-x86_64/logstash-tmpfile.conf
(from rev 428676, logstash/trunk/logstash-tmpfile.conf)
  logstash/repos/community-x86_64/logstash.service
(from rev 428676, logstash/trunk/logstash.service)
  logstash/repos/community-x86_64/logstash@.service
(from rev 428676, logstash/trunk/logstash@.service)
Deleted:
  logstash/repos/community-x86_64/PKGBUILD
  logstash/repos/community-x86_64/build.patch
  logstash/repos/community-x86_64/bundle.config
  logstash/repos/community-x86_64/logstash-sysuser.conf
  logstash/repos/community-x86_64/logstash-tmpfile.conf
  logstash/repos/community-x86_64/logstash.service
  logstash/repos/community-x86_64/logstash@.service

---+
 PKGBUILD  |  225 +++-
 build.patch   |  116 
 bundle.config |8 -
 logstash-sysuser.conf |2 
 logstash-tmpfile.conf |   12 +-
 logstash.service  |   46 -
 logstash@.service |   14 +-
 7 files changed, 211 insertions(+), 212 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 20:45:11 UTC (rev 428676)
+++ PKGBUILD2019-01-30 20:45:46 UTC (rev 428677)
@@ -1,113 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=logstash
-pkgver=6.5.4
-_pkgver=7129b4f377af08a65c6fab4de49f9b155374970b
-_jrubyver=9.1.13.0
-pkgrel=1
-pkgdesc='Tool for managing events and logs'
-url='https://www.elastic.co/products/logstash/'
-arch=('x86_64')
-license=('Apache')
-depends=('java-runtime-headless>=8' 'ruby' 'ruby-bundler' 'coreutils' 'awk')
-makedepends=('java-environment<11' 'git')
-backup=('etc/conf.d/logstash'
-'etc/logstash/jvm.options'
-'etc/logstash/log4j2.properties'
-'etc/logstash/logstash.yml'
-'etc/logstash/pipelines.yml')
-_jrubydist=jruby-dist-${_jrubyver}-bin.tar.gz
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/elastic/logstash/archive/${_pkgver}.tar.gz
-
https://repo1.maven.org/maven2/org/jruby/jruby-dist/${_jrubyver}/${_jrubydist}
-build.patch
-logstash.service
-logstash@.service
-logstash-sysuser.conf
-logstash-tmpfile.conf
-bundle.config)
-noextract=(${_jrubydist})
-sha256sums=('b4b4e45ead7f14e50258ca03483e3ea9e525adf3c064fbb3d07c357697a38188'
-'9d156646623ac2f27174721035b52572a4b05690db7c1293295aa2c04aad3908'
-'640f1c81e6c68f9d1256875db89f5439992e2b8188fb7e6e3ddcdae1c33a3af8'
-'2b8b29297202334c784fdd7f2eb8d7e776c24c783b3c9f8387b500ab0039335c'
-'a01ea29d4f53d785f6eb926ebfe445e64ed5b3dab5d0418848589dd79502d876'
-'18a68a59ddb0ce19778e83b65e68dd568d65b7180bf45b4cf298fb332d69eb26'
-'346b630484f8a35b1a549e94e53e3e151527852a29c72cc6e529221215a7f533'
-'fe05315345e4489458c3eecac43726800109c1e390e74a14584096f6c041fee1')
-sha512sums=('05dade085ed687e194cb1b7090d792e45b92682d7572e09b8ed5fd88e59e6332cad58255882013248588e8deb55e9dc7a899cb513336cfaf111a6350b246f1b1'
-
'ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead'
-
'21adfc88d980cabb3a45ac029b5dddf8c4b4bc96ac95999ae85fa655101ff58b139bceb613c0e91c108f3f78dcb21ba6f997ee2884c58c3a55eaa7938b6959c4'
-
'817097565519dc7c5eac7521339947c74c6148683ca594356dd2ceb3274a1e94f8e7318ce310e0fe5789d7ab0d4c23404f814bef31036a11ddfec08d16814c69'
-
'ce2cef4a784845b00d7c867273555811450bc459669abb5be944bfbbb02708129983e45376a9b308d6db22b2c7b4a7a212827a4826f2a27bc7e143cebc9abfe0'
-
'd811dc3b18d0032b79b4669c9f6aefca49963897c309d83cbf87616c7b8cb5944c17c8072980bcd115d0fb57ef1624d98259ff1082d402d308c33e766ee89699'
-
'05ea8af97c4f6ac9ba5518b99dc3136859edd24d8376940b48b8c7a70586c8bc188deb1079a99e19d437c39e0eb17d68e7cc3f9af4aa3ad2bc6a87c08cae94a6'
-
'5091aa34cc31acd50fd2865714080cf6e67c2d437424f27e001bb409c2885a0e82eabe4ce17461d60c181f460a16df0a03d53bac6015fb731b3e5225735fd4da')
-
-prepare() {
-  cd ${pkgname}-${_pkgver}
-  rm bin/*.bat
-  sed -e 's|LS_SETTINGS_DIR=.*|LS_SETTINGS_DIR="/etc/logstash"|' -i 
config/startup.options
-  sed -e '1i [ -f /etc/profile.d/jre.sh ] && . /etc/profile.d/jre.sh' -i 
bin/logstash.lib.sh
-
-  # remove deprecated JVM options
-  sed 's|"-XX:+UseParNewGC", ||g' -i 

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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:45:11
  Author: mtorromeo
Revision: 428676

upgpkg: logstash 6.6.0-1

Modified:
  logstash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:42:29 UTC (rev 428675)
+++ PKGBUILD2019-01-30 20:45:11 UTC (rev 428676)
@@ -2,8 +2,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=logstash
-pkgver=6.5.4
-_pkgver=7129b4f377af08a65c6fab4de49f9b155374970b
+pkgver=6.6.0
 _jrubyver=9.1.13.0
 pkgrel=1
 pkgdesc='Tool for managing events and logs'
@@ -18,7 +17,7 @@
 'etc/logstash/logstash.yml'
 'etc/logstash/pipelines.yml')
 _jrubydist=jruby-dist-${_jrubyver}-bin.tar.gz
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/elastic/logstash/archive/${_pkgver}.tar.gz
+source=(https://github.com/elastic/logstash/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://repo1.maven.org/maven2/org/jruby/jruby-dist/${_jrubyver}/${_jrubydist}
 build.patch
 logstash.service
@@ -27,7 +26,7 @@
 logstash-tmpfile.conf
 bundle.config)
 noextract=(${_jrubydist})
-sha256sums=('b4b4e45ead7f14e50258ca03483e3ea9e525adf3c064fbb3d07c357697a38188'
+sha256sums=('501c9da9c98d566b85c246564d7f7e8ad1d8b92a1a5ca103a3ca1116ca9a3a8c'
 '9d156646623ac2f27174721035b52572a4b05690db7c1293295aa2c04aad3908'
 '640f1c81e6c68f9d1256875db89f5439992e2b8188fb7e6e3ddcdae1c33a3af8'
 '2b8b29297202334c784fdd7f2eb8d7e776c24c783b3c9f8387b500ab0039335c'
@@ -35,7 +34,7 @@
 '18a68a59ddb0ce19778e83b65e68dd568d65b7180bf45b4cf298fb332d69eb26'
 '346b630484f8a35b1a549e94e53e3e151527852a29c72cc6e529221215a7f533'
 'fe05315345e4489458c3eecac43726800109c1e390e74a14584096f6c041fee1')
-sha512sums=('05dade085ed687e194cb1b7090d792e45b92682d7572e09b8ed5fd88e59e6332cad58255882013248588e8deb55e9dc7a899cb513336cfaf111a6350b246f1b1'
+sha512sums=('5c154a9462cdac46131937e4b097e6588edbb5652dcc7e4acd9fdf02ea1822b805c069c1d8d26a9965a10cfca50617596ccc4356a05ae801117626a50ad13351'
 
'ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead'
 
'21adfc88d980cabb3a45ac029b5dddf8c4b4bc96ac95999ae85fa655101ff58b139bceb613c0e91c108f3f78dcb21ba6f997ee2884c58c3a55eaa7938b6959c4'
 
'817097565519dc7c5eac7521339947c74c6148683ca594356dd2ceb3274a1e94f8e7318ce310e0fe5789d7ab0d4c23404f814bef31036a11ddfec08d16814c69'
@@ -45,7 +44,7 @@
 
'5091aa34cc31acd50fd2865714080cf6e67c2d437424f27e001bb409c2885a0e82eabe4ce17461d60c181f460a16df0a03d53bac6015fb731b3e5225735fd4da')
 
 prepare() {
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
   rm bin/*.bat
   sed -e 's|LS_SETTINGS_DIR=.*|LS_SETTINGS_DIR="/etc/logstash"|' -i 
config/startup.options
   sed -e '1i [ -f /etc/profile.d/jre.sh ] && . /etc/profile.d/jre.sh' -i 
bin/logstash.lib.sh
@@ -68,7 +67,7 @@
 }
 
 build() {
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
   export PATH="/usr/lib/jvm/java-10-openjdk/bin:$PWD/vendor/jruby/bin:$PATH"
 
   # gradle downloadAndInstallJRuby (system gradle currently not working)
@@ -86,7 +85,7 @@
 }
 
 package() {
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
 
   install -dm 755 "${pkgdir}/usr/share/logstash" "${pkgdir}/etc/conf.d"
   mv config/startup.options "${pkgdir}/etc/conf.d/logstash"


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

2019-01-30 Thread Daniel M. Capella via arch-commits
Date: Wednesday, January 30, 2019 @ 20:42:29
  Author: polyzen
Revision: 428675

archrelease: copy trunk to community-any

Added:
  firefox-tridactyl/repos/community-any/PKGBUILD
(from rev 428674, firefox-tridactyl/trunk/PKGBUILD)
Deleted:
  firefox-tridactyl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 20:42:03 UTC (rev 428674)
+++ PKGBUILD2019-01-30 20:42:29 UTC (rev 428675)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-tridactyl
-pkgver=1.14.6
-pkgrel=2
-pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
-url=https://github.com/cmcaine/tridactyl
-arch=('any')
-license=('Apache')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('ed4ad0c06ba32bdd40eb59a1cdeac48ec556276fafdecad8de0d56d8d2855bea')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tridactyl/repos/community-any/PKGBUILD (from rev 428674, 
firefox-tridactyl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 20:42:29 UTC (rev 428675)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-tridactyl
+pkgver=1.14.7
+pkgrel=1
+pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
+url=https://github.com/cmcaine/tridactyl
+arch=('any')
+license=('Apache')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('89be0be6010e28f54e2396a480229cdbf876e38f4d41582246f287e80285861c')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-01-30 Thread Daniel M. Capella via arch-commits
Date: Wednesday, January 30, 2019 @ 20:42:03
  Author: polyzen
Revision: 428674

upgpkg: firefox-tridactyl 1.14.7-1

Modified:
  firefox-tridactyl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:41:17 UTC (rev 428673)
+++ PKGBUILD2019-01-30 20:42:03 UTC (rev 428674)
@@ -1,8 +1,8 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-tridactyl
-pkgver=1.14.6
-pkgrel=2
+pkgver=1.14.7
+pkgrel=1
 pkgdesc="Replace Firefox's control mechanism with one modelled on Vim"
 url=https://github.com/cmcaine/tridactyl
 arch=('any')
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/873070/tridactyl-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('ed4ad0c06ba32bdd40eb59a1cdeac48ec556276fafdecad8de0d56d8d2855bea')
+sha256sums=('89be0be6010e28f54e2396a480229cdbf876e38f4d41582246f287e80285861c')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/tridactyl@cmcaine.co.uk.xpi


[arch-commits] Commit in elasticsearch/repos/community-any (20 files)

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:41:17
  Author: mtorromeo
Revision: 428673

archrelease: copy trunk to community-any

Added:
  elasticsearch/repos/community-any/PKGBUILD
(from rev 428672, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-any/elasticsearch-env
(from rev 428672, elasticsearch/trunk/elasticsearch-env)
  elasticsearch/repos/community-any/elasticsearch-keystore.service
(from rev 428672, elasticsearch/trunk/elasticsearch-keystore.service)
  elasticsearch/repos/community-any/elasticsearch-keystore@.service
(from rev 428672, elasticsearch/trunk/elasticsearch-keystore@.service)
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
(from rev 428672, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
(from rev 428672, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-any/elasticsearch-user.conf
(from rev 428672, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-any/elasticsearch.default
(from rev 428672, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-any/elasticsearch.service
(from rev 428672, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-any/elasticsearch@.service
(from rev 428672, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-any/PKGBUILD
  elasticsearch/repos/community-any/elasticsearch-env
  elasticsearch/repos/community-any/elasticsearch-keystore.service
  elasticsearch/repos/community-any/elasticsearch-keystore@.service
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-any/elasticsearch-user.conf
  elasticsearch/repos/community-any/elasticsearch.default
  elasticsearch/repos/community-any/elasticsearch.service
  elasticsearch/repos/community-any/elasticsearch@.service

-+
 PKGBUILD|  170 +++---
 elasticsearch-env   |  100 +++---
 elasticsearch-keystore.service  |   20 ++--
 elasticsearch-keystore@.service |   22 ++--
 elasticsearch-sysctl.conf   |2 
 elasticsearch-tmpfile.conf  |   12 +-
 elasticsearch-user.conf |2 
 elasticsearch.default   |   26 ++---
 elasticsearch.service   |   80 -
 elasticsearch@.service  |   80 -
 10 files changed, 257 insertions(+), 257 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 20:40:32 UTC (rev 428672)
+++ PKGBUILD2019-01-30 20:41:17 UTC (rev 428673)
@@ -1,85 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=6.5.4
-pkgrel=2
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('any')
-url="https://www.elastic.co/products/elasticsearch;
-license=('Apache')
-depends=('java-runtime-headless' 'systemd')
-source=(
-  "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-oss-$pkgver.tar.gz;
-  elasticsearch-env
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-keystore.service
-  elasticsearch-keystore@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('0943f434170567e6d780d24caca86d23710049599172a533f8140b2f659dd130'
-'1607adfcdefc2a55d7d4c7e8a15669da2cc8096029cce5dd5b9279d4966ceabe'
-'de3842935b6ef9cb8a05dc18334112f534dccc2292e36052df942a92de7e66db'
-'13090c1d23ae0a21bf6f0f1d1da795d38972f1674b20c3d2d32f54311aa99094'
-'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
-'22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-'etc/elasticsearch/jvm.options'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  find bin -type f \( -name \*.bat -o -name \*.exe \) -delete
-  find bin -type f \( -name \*.jar -o -name \*-env \) -exec chmod a-x {} +
-  find bin -type f ! -name \*.jar -exec \
-sed -r 's;source .*/(.*)-env;source /usr/share/elasticsearch/\1-env;' -i 
{} +
-  find bin -type f -name "elasticsearch-*" ! -name elasticsearch-bin -exec \
-sed 's/`dirname 

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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:40:32
  Author: mtorromeo
Revision: 428672

upgpkg: elasticsearch 6.6.0-1

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:31:56 UTC (rev 428671)
+++ PKGBUILD2019-01-30 20:40:32 UTC (rev 428672)
@@ -3,8 +3,8 @@
 # Refactored by Blaž "Speed" Hrastnik 
 
 pkgname=elasticsearch
-pkgver=6.5.4
-pkgrel=2
+pkgver=6.6.0
+pkgrel=1
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('any')
 url="https://www.elastic.co/products/elasticsearch;
@@ -22,7 +22,7 @@
   elasticsearch-tmpfile.conf
   elasticsearch.default
 )
-sha256sums=('0943f434170567e6d780d24caca86d23710049599172a533f8140b2f659dd130'
+sha256sums=('5f302eecfa73c717401c016cb58bd1445b9b5b833724e0fbe627c515d54df0a4'
 '1607adfcdefc2a55d7d4c7e8a15669da2cc8096029cce5dd5b9279d4966ceabe'
 'de3842935b6ef9cb8a05dc18334112f534dccc2292e36052df942a92de7e66db'
 '13090c1d23ae0a21bf6f0f1d1da795d38972f1674b20c3d2d32f54311aa99094'


[arch-commits] Commit in beats/repos/community-x86_64 (22 files)

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:31:56
  Author: mtorromeo
Revision: 428671

archrelease: copy trunk to community-x86_64

Added:
  beats/repos/community-x86_64/PKGBUILD
(from rev 428670, beats/trunk/PKGBUILD)
  beats/repos/community-x86_64/auditbeat.install
(from rev 428670, beats/trunk/auditbeat.install)
  beats/repos/community-x86_64/auditbeat.service
(from rev 428670, beats/trunk/auditbeat.service)
  beats/repos/community-x86_64/filebeat.service
(from rev 428670, beats/trunk/filebeat.service)
  beats/repos/community-x86_64/filebeat.sysusers
(from rev 428670, beats/trunk/filebeat.sysusers)
  beats/repos/community-x86_64/golang-crypto.patch
(from rev 428670, beats/trunk/golang-crypto.patch)
  beats/repos/community-x86_64/heartbeat.service
(from rev 428670, beats/trunk/heartbeat.service)
  beats/repos/community-x86_64/journalbeat.service
(from rev 428670, beats/trunk/journalbeat.service)
  beats/repos/community-x86_64/metricbeat.service
(from rev 428670, beats/trunk/metricbeat.service)
  beats/repos/community-x86_64/packetbeat.service
(from rev 428670, beats/trunk/packetbeat.service)
  beats/repos/community-x86_64/tmpfile.conf
(from rev 428670, beats/trunk/tmpfile.conf)
Deleted:
  beats/repos/community-x86_64/PKGBUILD
  beats/repos/community-x86_64/auditbeat.install
  beats/repos/community-x86_64/auditbeat.service
  beats/repos/community-x86_64/filebeat.service
  beats/repos/community-x86_64/filebeat.sysusers
  beats/repos/community-x86_64/golang-crypto.patch
  beats/repos/community-x86_64/heartbeat.service
  beats/repos/community-x86_64/journalbeat.service
  beats/repos/community-x86_64/metricbeat.service
  beats/repos/community-x86_64/packetbeat.service
  beats/repos/community-x86_64/tmpfile.conf

-+
 PKGBUILD|  341 +-
 auditbeat.install   |   12 -
 auditbeat.service   |   22 +--
 filebeat.service|   24 +--
 filebeat.sysusers   |2 
 golang-crypto.patch |  262 +++---
 heartbeat.service   |   22 +--
 journalbeat.service |   24 +--
 metricbeat.service  |   22 +--
 packetbeat.service  |   22 +--
 tmpfile.conf|4 
 11 files changed, 379 insertions(+), 378 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 20:31:06 UTC (rev 428670)
+++ PKGBUILD2019-01-30 20:31:56 UTC (rev 428671)
@@ -1,170 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Tyler Langlois 
-
-pkgbase=beats
-pkgname=(filebeat packetbeat metricbeat heartbeat-elastic auditbeat 
journalbeat)
-pkgver=6.5.4
-pkgrel=1
-pkgdesc='Data shippers for Elasticsearch'
-arch=('x86_64')
-url='https://www.elastic.co/products/beats'
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git' 'libpcap' 'rsync' 'python' 'audit')
-optdepends=('elasticsearch: for standalone installation'
-'python: for migration script')
-source=("https://github.com/elastic/beats/archive/v$pkgver/beats-$pkgver.tar.gz;
-"golang-crypto.patch" # golang/crypto patch
-"filebeat.sysusers"
-"filebeat.service"
-"packetbeat.service"
-"metricbeat.service"
-"heartbeat.service"
-"auditbeat.service"
-"journalbeat.service"
-"tmpfile.conf")
-sha256sums=('4f16f09bc1904cd6c8d864addb3694a041adddb8bd7fa767d6ea8dbd570385d9'
-'75583a195b43d7345449bbac60359bf54661ccbd699386a6e59bb483c6054338'
-'33feb3690f8b31563cc1e2da557c2aa326501ce9ccd7e0a142036902bfdb05ff'
-'4d5394cfe3299c9a6af5ac34c1ad4bcdc2e79162379cccbf00fb414eb28253c0'
-'9f4e33fc768d3500fa3428dcbfda241c6473a2cae8cc4dbadf8f61ca9f2bbec5'
-'26b123acd96808162a7f827ce6f0e9669140c2665fc28d76583a15996fbf853d'
-'212cb4ab5a02d7078025f7d1f50f48e5caa25debce0852cf68cd8f89ed0a8d09'
-'b7f1c61950f21c7fab31166c68d4a9e5027f0c5bcc40a97913d6d89eaf643b85'
-'57d2f5bf75b4b5214065ba408c98ec941fb0042f19a623add7f4396d640225ba'
-'f29361772f23ec42bb15b5e0ca7e93f17fe00d31cf08a9e2c0d0ab27f2277bbc')
-
-prepare() {
-export GOPATH="$srcdir"/gopath
-mkdir -p "$GOPATH"
-go get golang.org/x/sys/cpu
-
-cd "$srcdir"/beats-$pkgver/vendor/golang.org/x/crypto
-patch -p1 -i "$srcdir"/golang-crypto.patch
-
-cd "$srcdir"/beats-$pkgver
-
-# Avoid installing extraneous configs
-sed '/[- ]win/d ; /[- ]darwin/d ; /[- ]binary/d' -i */Makefile
-
-# Install the Linux config as default
-sed -r 's#/([a-z]+)-linux.yml#/\1.yml#' -i */Makefile
-
-# Perform some timestomping to avoid make warnings
-LANG=C _t="$(date -r Makefile +'%Y-%m-%d %k:%M:%S')"
-touch -m -d "$_t" */Makefile
-
-# Use version instead of commit id
-sed -ri "s/^COMMIT_ID=.*/COMMIT_ID=$pkgver/" libbeat/scripts/Makefile
-
-# Workaround to place extracted release into GOPATH
-mkdir -p 

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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:31:06
  Author: mtorromeo
Revision: 428670

upgpkg: beats 6.6.0-1

Modified:
  beats/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:28:17 UTC (rev 428669)
+++ PKGBUILD2019-01-30 20:31:06 UTC (rev 428670)
@@ -3,7 +3,7 @@
 
 pkgbase=beats
 pkgname=(filebeat packetbeat metricbeat heartbeat-elastic auditbeat 
journalbeat)
-pkgver=6.5.4
+pkgver=6.6.0
 pkgrel=1
 pkgdesc='Data shippers for Elasticsearch'
 arch=('x86_64')
@@ -23,7 +23,7 @@
 "auditbeat.service"
 "journalbeat.service"
 "tmpfile.conf")
-sha256sums=('4f16f09bc1904cd6c8d864addb3694a041adddb8bd7fa767d6ea8dbd570385d9'
+sha256sums=('0e55beab8945ba4c8035afcd22ae263d2c955dfc47e420d5231780ab53391342'
 '75583a195b43d7345449bbac60359bf54661ccbd699386a6e59bb483c6054338'
 '33feb3690f8b31563cc1e2da557c2aa326501ce9ccd7e0a142036902bfdb05ff'
 '4d5394cfe3299c9a6af5ac34c1ad4bcdc2e79162379cccbf00fb414eb28253c0'
@@ -59,8 +59,7 @@
 
 # Workaround to place extracted release into GOPATH
 mkdir -p "$GOPATH"/src/github.com/elastic
-ln -sf "$srcdir"/beats-$pkgver \
-"$GOPATH"/src/github.com/elastic/beats
+ln -sf ../../../../beats-$pkgver "$GOPATH"/src/github.com/elastic/beats
 }
 
 build() {
@@ -80,7 +79,7 @@
 make
 make fields
 
-if [ ! -d _meta/kibana ]; then
+if grep -Eq '^kibana:' Makefile; then
 make kibana
 mv _meta/kibana{.generated,}
 fi
@@ -110,7 +109,9 @@
 
 sed "s/BEATNAME/$_pkgname/g" "$srcdir"/tmpfile.conf > 
"$pkgdir"/usr/lib/tmpfiles.d/$_pkgname.conf
 
-cp -R _meta/kibana "$pkgdir"/usr/share/$_pkgname/
+if [ -d _meta/kibana ]; then
+cp -R _meta/kibana "$pkgdir"/usr/share/$_pkgname/
+fi
 
 if [ -d module ]; then
 cp -R module "$pkgdir"/usr/share/$_pkgname/


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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:28:17
  Author: mtorromeo
Revision: 428669

archrelease: copy trunk to community-any

Added:
  kibana/repos/community-any/PKGBUILD
(from rev 428668, kibana/trunk/PKGBUILD)
  kibana/repos/community-any/kibana.service
(from rev 428668, kibana/trunk/kibana.service)
  kibana/repos/community-any/tmpfile.conf
(from rev 428668, kibana/trunk/tmpfile.conf)
  kibana/repos/community-any/user.conf
(from rev 428668, kibana/trunk/user.conf)
Deleted:
  kibana/repos/community-any/PKGBUILD
  kibana/repos/community-any/kibana.service
  kibana/repos/community-any/tmpfile.conf
  kibana/repos/community-any/user.conf

+
 PKGBUILD   |  102 +++
 kibana.service |   30 
 tmpfile.conf   |   10 ++---
 user.conf  |2 -
 4 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 20:27:37 UTC (rev 428668)
+++ PKGBUILD2019-01-30 20:28:17 UTC (rev 428669)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Spider.007 
-
-pkgname=kibana
-pkgver=6.5.4
-pkgrel=1
-pkgdesc='Browser based analytics and search dashboard for Elasticsearch'
-url='https://www.elastic.co/products/kibana'
-arch=('any')
-license=('Apache')
-depends=('nodejs')
-optdepends=('elasticsearch')
-backup=('etc/kibana/kibana.yml')
-options=('!strip' 'emptydirs')
-source=(https://artifacts.elastic.co/downloads/${pkgname}/${pkgname}-oss-${pkgver}-linux-x86_64.tar.gz
-kibana.service
-tmpfile.conf
-user.conf)
-sha512sums=('65c4ab427ae2a2486b71520893eeb78d8628bf3e6fd47c0d576ca4b6bfa8f9058ecf957ef488fd47260c8295ea49952e1b411d6a6c199f26d74e6a84cfcf7309'
-
'3216c2864cf184cea0883677a05bf83cf396fda52dbd3d9a187de22f0c45d13db58f8fb4dc926694ba7d7a24000cf6d5f6218805f74fb5d729fc85c643ca8f2f'
-
'8571f0b0ec8a55dfcba8298c6f1b1895be3c6e3dad524633411615dd3ad2f73af11a94e0a74fd296a784d6c779df8e9ce0a9f7b3e0182adde221a67293f4adeb'
-
'9085884430c656cc68b855c3d6740e5fd0854a8785930341b29e15e201deacc1870d8223255d9ebe096cb111319bea9bf4faa03d0760d5819976ebf912221c7d')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}-linux-x86_64
-
-  # remove nodejs strict version requirements
-  sed "s@^require('./node_version_validator');@// \0@" -i 
src/setup_node_env/index.js
-
-  # set default quiet mode for systemd, cli option forces specified values
-  sed -r 's|#(logging.quiet:) false|\1 true|' -i config/kibana.yml
-}
-
-package() {
-  cd ${pkgbase}-${pkgver}-linux-x86_64
-
-  install -dm 755 "${pkgdir}/usr/share/kibana"
-  cp -a * "${pkgdir}/usr/share/kibana"
-
-  install -dm 750 "${pkgdir}/etc/kibana"
-  install -Dm 640 config/kibana.yml -t "${pkgdir}/etc/kibana"
-  install -Dm 644 "${srcdir}/kibana.service" -t 
"${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 "${srcdir}/user.conf" 
"${pkgdir}/usr/lib/sysusers.d/kibana.conf"
-  install -Dm 644 "${srcdir}/tmpfile.conf" 
"${pkgdir}/usr/lib/tmpfiles.d/kibana.conf"
-
-  rm -r "${pkgdir}/usr/share/kibana/node"
-  find "${pkgdir}/usr/share/kibana/node_modules" -type d -empty -delete
-}
-
-# vim: ts=2 sw=2 et:

Copied: kibana/repos/community-any/PKGBUILD (from rev 428668, 
kibana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 20:28:17 UTC (rev 428669)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Spider.007 
+
+pkgname=kibana
+pkgver=6.6.0
+pkgrel=1
+pkgdesc='Browser based analytics and search dashboard for Elasticsearch'
+url='https://www.elastic.co/products/kibana'
+arch=('any')
+license=('Apache')
+depends=('nodejs')
+optdepends=('elasticsearch')
+backup=('etc/kibana/kibana.yml')
+options=('!strip' 'emptydirs')
+source=(https://artifacts.elastic.co/downloads/${pkgname}/${pkgname}-oss-${pkgver}-linux-x86_64.tar.gz
+kibana.service
+tmpfile.conf
+user.conf)
+sha512sums=('a47c26ad5a4e0e823c31d301606ac169cb682837522a224684bb69ce1d24dda7b84964d1d502b6d9c5c8f9b0acc8ff235b8ab71f88984b424a5642e40596b4d6'
+
'3216c2864cf184cea0883677a05bf83cf396fda52dbd3d9a187de22f0c45d13db58f8fb4dc926694ba7d7a24000cf6d5f6218805f74fb5d729fc85c643ca8f2f'
+
'8571f0b0ec8a55dfcba8298c6f1b1895be3c6e3dad524633411615dd3ad2f73af11a94e0a74fd296a784d6c779df8e9ce0a9f7b3e0182adde221a67293f4adeb'
+
'9085884430c656cc68b855c3d6740e5fd0854a8785930341b29e15e201deacc1870d8223255d9ebe096cb111319bea9bf4faa03d0760d5819976ebf912221c7d')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}-linux-x86_64
+
+  # remove nodejs strict version requirements
+  sed "s@^require('./node_version_validator');@// \0@" -i 
src/setup_node_env/index.js
+
+  # set default quiet mode for systemd, cli option forces specified values
+  sed -r 

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

2019-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, January 30, 2019 @ 20:27:37
  Author: mtorromeo
Revision: 428668

upgpkg: kibana 6.6.0-1

Modified:
  kibana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 20:23:38 UTC (rev 428667)
+++ PKGBUILD2019-01-30 20:27:37 UTC (rev 428668)
@@ -3,7 +3,7 @@
 # Contributor: Spider.007 
 
 pkgname=kibana
-pkgver=6.5.4
+pkgver=6.6.0
 pkgrel=1
 pkgdesc='Browser based analytics and search dashboard for Elasticsearch'
 url='https://www.elastic.co/products/kibana'
@@ -17,7 +17,7 @@
 kibana.service
 tmpfile.conf
 user.conf)
-sha512sums=('65c4ab427ae2a2486b71520893eeb78d8628bf3e6fd47c0d576ca4b6bfa8f9058ecf957ef488fd47260c8295ea49952e1b411d6a6c199f26d74e6a84cfcf7309'
+sha512sums=('a47c26ad5a4e0e823c31d301606ac169cb682837522a224684bb69ce1d24dda7b84964d1d502b6d9c5c8f9b0acc8ff235b8ab71f88984b424a5642e40596b4d6'
 
'3216c2864cf184cea0883677a05bf83cf396fda52dbd3d9a187de22f0c45d13db58f8fb4dc926694ba7d7a24000cf6d5f6218805f74fb5d729fc85c643ca8f2f'
 
'8571f0b0ec8a55dfcba8298c6f1b1895be3c6e3dad524633411615dd3ad2f73af11a94e0a74fd296a784d6c779df8e9ce0a9f7b3e0182adde221a67293f4adeb'
 
'9085884430c656cc68b855c3d6740e5fd0854a8785930341b29e15e201deacc1870d8223255d9ebe096cb111319bea9bf4faa03d0760d5819976ebf912221c7d')


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

2019-01-30 Thread Christian Hesse via arch-commits
Date: Wednesday, January 30, 2019 @ 20:23:38
  Author: eworm
Revision: 428667

archrelease: copy trunk to community-testing-x86_64

Added:
  nbd/repos/community-testing-x86_64/
  nbd/repos/community-testing-x86_64/PKGBUILD
(from rev 428666, nbd/trunk/PKGBUILD)
  nbd/repos/community-testing-x86_64/config
(from rev 428666, nbd/trunk/config)
  nbd/repos/community-testing-x86_64/nbd.service
(from rev 428666, nbd/trunk/nbd.service)
  nbd/repos/community-testing-x86_64/sysusers_nbd.conf
(from rev 428666, nbd/trunk/sysusers_nbd.conf)

---+
 PKGBUILD  |   54 
 config|   21 
 nbd.service   |   12 +++
 sysusers_nbd.conf |1 
 4 files changed, 88 insertions(+)

Copied: nbd/repos/community-testing-x86_64/PKGBUILD (from rev 428666, 
nbd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 20:23:38 UTC (rev 428667)
@@ -0,0 +1,54 @@
+# Maintainer: Christian Hesse 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Ionut Biru 
+# Contributor: Gerhard Brauer 
+
+pkgname=nbd
+pkgver=3.19
+pkgrel=1
+pkgdesc='tools for network block devices, allowing you to use remote block 
devices over TCP/IP'
+arch=('x86_64')
+url='https://nbd.sourceforge.io/'
+license=('GPL')
+depends=('glib2' 'gnutls')
+backup=('etc/nbd-server/config')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz;
+'config'
+'nbd.service'
+'sysusers_nbd.conf')
+sha256sums=('b4466412f13e057659f25d35e1e8e181afd62c7179bff22a6add81445ecb8690'
+'ee2e9fbbeb8a8b9b71d16b6f32eb41788f6def9d00cc4a47897ed3cb97cdde7c'
+'1b1add55d82d7623eabf7ff3dfec15c1fbe3c340fa74160df3d60e91eb1c71ba'
+'3fd98fe87d0b31b82126dc669f00355865f58fae81af3fccbc0d06504baef6cd')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--enable-syslog
+
+  make
+}
+
+# checks still fail...
+#check() {
+#  cd "${srcdir}/${pkgname}-${pkgver}"
+#
+#  make check
+#}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  install -D -m0644 systemd/nbd@.service 
"${pkgdir}"/usr/lib/systemd/system/nbd@.service
+
+  install -D -m0644 "${srcdir}"/config "${pkgdir}"/etc/nbd-server/config
+  install -D -m0644 "${srcdir}"/nbd.service 
"${pkgdir}"/usr/lib/systemd/system/nbd.service
+  install -D -m0644 "${srcdir}"/sysusers_nbd.conf 
"${pkgdir}"/usr/lib/sysusers.d/nbd.conf
+
+  install -D -m0644 doc/README "${pkgdir}"/usr/share/doc/nbd/README
+}

Copied: nbd/repos/community-testing-x86_64/config (from rev 428666, 
nbd/trunk/config)
===
--- community-testing-x86_64/config (rev 0)
+++ community-testing-x86_64/config 2019-01-30 20:23:38 UTC (rev 428667)
@@ -0,0 +1,21 @@
+[generic]
+   # The [generic] section is required, even if nothing is specified
+   # there.
+   # When either of these options are specified, nbd-server drops
+   # privileges to the given user and group after opening ports, but
+   # _before_ opening files.
+   user = nbd
+   group = nbd
+[export1]
+   exportname = /export/nbd/export1-file
+   authfile = /export/nbd/export1-authfile
+   timeout = 30
+   filesize = 1000
+   readonly = false
+   multifile = false
+   copyonwrite = false
+   prerun = dd if=/dev/zero of=%s bs=1k count=500
+   postrun = rm -f %s
+[otherexport]
+   exportname = /export/nbd/experiment
+   # The other options are all optional.

Copied: nbd/repos/community-testing-x86_64/nbd.service (from rev 428666, 
nbd/trunk/nbd.service)
===
--- community-testing-x86_64/nbd.service(rev 0)
+++ community-testing-x86_64/nbd.service2019-01-30 20:23:38 UTC (rev 
428667)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Network Block Device Server
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/nbd-server
+ProtectSystem=full
+ProtectHome=on
+
+[Install]
+WantedBy=multi-user.target

Copied: nbd/repos/community-testing-x86_64/sysusers_nbd.conf (from rev 428666, 
nbd/trunk/sysusers_nbd.conf)
===
--- community-testing-x86_64/sysusers_nbd.conf  (rev 0)
+++ community-testing-x86_64/sysusers_nbd.conf  2019-01-30 20:23:38 UTC (rev 
428667)
@@ -0,0 +1 @@
+u nbd - "Network Block Device" /var/empty


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

2019-01-30 Thread Christian Hesse via arch-commits
Date: Wednesday, January 30, 2019 @ 20:23:28
  Author: eworm
Revision: 428666

upgpkg: nbd 3.19-1

new upstream release

Modified:
  nbd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 19:35:43 UTC (rev 428665)
+++ PKGBUILD2019-01-30 20:23:28 UTC (rev 428666)
@@ -4,11 +4,11 @@
 # Contributor: Gerhard Brauer 
 
 pkgname=nbd
-pkgver=3.18
+pkgver=3.19
 pkgrel=1
 pkgdesc='tools for network block devices, allowing you to use remote block 
devices over TCP/IP'
 arch=('x86_64')
-url='http://nbd.sourceforge.net'
+url='https://nbd.sourceforge.io/'
 license=('GPL')
 depends=('glib2' 'gnutls')
 backup=('etc/nbd-server/config')
@@ -16,7 +16,7 @@
 'config'
 'nbd.service'
 'sysusers_nbd.conf')
-sha256sums=('d83762cefc3e87171283652b71595e5d01a54f95d912315b823a49b0a3d46031'
+sha256sums=('b4466412f13e057659f25d35e1e8e181afd62c7179bff22a6add81445ecb8690'
 'ee2e9fbbeb8a8b9b71d16b6f32eb41788f6def9d00cc4a47897ed3cb97cdde7c'
 '1b1add55d82d7623eabf7ff3dfec15c1fbe3c340fa74160df3d60e91eb1c71ba'
 '3fd98fe87d0b31b82126dc669f00355865f58fae81af3fccbc0d06504baef6cd')
@@ -44,11 +44,11 @@
   cd "${srcdir}/${pkgname}-${pkgver}"
 
   make DESTDIR="${pkgdir}" install
-  install -D -m644 systemd/nbd@.service 
"${pkgdir}"/usr/lib/systemd/system/nbd@.service
+  install -D -m0644 systemd/nbd@.service 
"${pkgdir}"/usr/lib/systemd/system/nbd@.service
 
-  install -D -m644 "${srcdir}"/config "${pkgdir}"/etc/nbd-server/config
-  install -D -m644 "${srcdir}"/nbd.service 
"${pkgdir}"/usr/lib/systemd/system/nbd.service
-  install -D -m644 "${srcdir}"/sysusers_nbd.conf 
"${pkgdir}"/usr/lib/sysusers.d/nbd.conf
+  install -D -m0644 "${srcdir}"/config "${pkgdir}"/etc/nbd-server/config
+  install -D -m0644 "${srcdir}"/nbd.service 
"${pkgdir}"/usr/lib/systemd/system/nbd.service
+  install -D -m0644 "${srcdir}"/sysusers_nbd.conf 
"${pkgdir}"/usr/lib/sysusers.d/nbd.conf
 
-  install -D -m644 doc/README "${pkgdir}"/usr/share/doc/nbd/README
+  install -D -m0644 doc/README "${pkgdir}"/usr/share/doc/nbd/README
 }


[arch-commits] Commit in gtranslator/trunk (PKGBUILD gtranslator.changelog)

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 19:35:33
  Author: jlichtblau
Revision: 428664

upgpkg: gtranslator 3.30.1-1 - new upstream release

Modified:
  gtranslator/trunk/PKGBUILD
  gtranslator/trunk/gtranslator.changelog

---+
 PKGBUILD  |5 ++---
 gtranslator.changelog |3 +++
 2 files changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 19:29:37 UTC (rev 428663)
+++ PKGBUILD2019-01-30 19:35:33 UTC (rev 428664)
@@ -4,7 +4,7 @@
 # Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
 
 pkgname=gtranslator
-pkgver=3.30.0
+pkgver=3.30.1
 pkgrel=1
 pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
 makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
 
source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/3.30/$pkgname-$pkgver.tar.xz)
-sha256sums=('630ae0820b7100f88cf3d0bd711cac1a13a2aa1bdfc5216fc66ebff2ca0bcde8')
+sha256sums=('c77afffa588c453fcf2241acc6d68a636975b69cc4aab8057a3382cb218cf42c')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver
@@ -20,7 +20,6 @@
 
   arch-meson . build -Dgtk_doc=true
   ninja -C build
-
 }
 
 package() {

Modified: gtranslator.changelog
===
--- gtranslator.changelog   2019-01-30 19:29:37 UTC (rev 428663)
+++ gtranslator.changelog   2019-01-30 19:35:33 UTC (rev 428664)
@@ -1,3 +1,6 @@
+2019-01-30 Jaroslav Lichtblau (Dragonlord) 
+   * gtranslator 3.30.1-1
+
 2018-11-07 Jaroslav Lichtblau (Dragonlord) 
* gtranslator 3.30.0-1
 


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 19:35:43
  Author: jlichtblau
Revision: 428665

archrelease: copy trunk to community-x86_64

Added:
  gtranslator/repos/community-x86_64/PKGBUILD
(from rev 428664, gtranslator/trunk/PKGBUILD)
  gtranslator/repos/community-x86_64/gtranslator.changelog
(from rev 428664, gtranslator/trunk/gtranslator.changelog)
Deleted:
  gtranslator/repos/community-x86_64/PKGBUILD
  gtranslator/repos/community-x86_64/gtranslator.changelog

---+
 PKGBUILD  |   59 +--
 gtranslator.changelog |  143 
 2 files changed, 102 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 19:35:33 UTC (rev 428664)
+++ PKGBUILD2019-01-30 19:35:43 UTC (rev 428665)
@@ -1,30 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Alexander Rødseth 
-# Contributor: Hugo Doria 
-# Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
-
-pkgname=gtranslator
-pkgver=3.30.0
-pkgrel=1
-pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
-arch=('x86_64')
-url='http://projects.gnome.org/gtranslator/'
-license=('GPL3')
-depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
-makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
-source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/3.30/$pkgname-$pkgver.tar.xz)
-sha256sums=('630ae0820b7100f88cf3d0bd711cac1a13a2aa1bdfc5216fc66ebff2ca0bcde8')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  arch-meson . build -Dgtk_doc=true
-  ninja -C build
-
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  DESTDIR="${pkgdir}" ninja install -C build
-}

Copied: gtranslator/repos/community-x86_64/PKGBUILD (from rev 428664, 
gtranslator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 19:35:43 UTC (rev 428665)
@@ -0,0 +1,29 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
+
+pkgname=gtranslator
+pkgver=3.30.1
+pkgrel=1
+pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
+arch=('x86_64')
+url='http://projects.gnome.org/gtranslator/'
+license=('GPL3')
+depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
+makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
+source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/3.30/$pkgname-$pkgver.tar.xz)
+sha256sums=('c77afffa588c453fcf2241acc6d68a636975b69cc4aab8057a3382cb218cf42c')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  arch-meson . build -Dgtk_doc=true
+  ninja -C build
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  DESTDIR="${pkgdir}" ninja install -C build
+}

Deleted: gtranslator.changelog
===
--- gtranslator.changelog   2019-01-30 19:35:33 UTC (rev 428664)
+++ gtranslator.changelog   2019-01-30 19:35:43 UTC (rev 428665)
@@ -1,70 +0,0 @@
-2018-11-07 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 3.30.0-1
-
-2016-04-29 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.7-3 pacman hooks rebuild
-
-2015-03-18 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.7-1
-
-2013-03-28 Balló György 
-   * gtranslator 2.91.6-3
-   rebuild for the new gtkspell3
-
-2013-01-18 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.6-1
-
-2012-11-05 Balló György 
-   * gtranslator 2.91.5-2
-   rebuild for gdl 3.6
-   tempolary disable dockbar, because layout loading is completely broken 
with gdl 3.6
-
-2012-07-30 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.5-1
-
-2012-05-12 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.4-1
-
-2012-04-23 Jan Alexander Steffens (heftig) 
-   * gtranslator 2.91.3-2
-   rebuild for gdl 3.4.2
-
-2012-04-21 Balló György 
-   * gtranslator 2.91.3-1
-
-2012-04-09 Balló György 
-   * gtranslator 2.91.2-1
-replace gtkspell dependency with gtkspell3
-remove unused libunique dependency
-remove broken dictionary plugin
-
-2012-03-18 Jaroslav Lichtblau 
-   * gtranslator 2.90.8-1
-
-2011-10-28 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.7-1
-
-2011-08-20 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.5-1
-
-2011-05-12 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.3-1
-
-2011-01-09 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.13-1
-
-2010-08-30 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.11-1
-
-2010-02-23 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.7-1
-
-2007-06-19 Eric Belanger (Snowman) 
-   * gtranslator-1.1.7-3
-   added 

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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 19:29:37
  Author: jlichtblau
Revision: 428663

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 428662, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 19:29:27 UTC (rev 428662)
+++ PKGBUILD2019-01-30 19:29:37 UTC (rev 428663)
@@ -1,35 +0,0 @@
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2019.01.30
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-pycryptodome: for hlsnative downloader')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('1a34f7eb8d9027d800026df106cddcb269eba31e7aef1066bdd9b5741ff3fc4c'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 428662, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 19:29:37 UTC (rev 428663)
@@ -0,0 +1,35 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2019.01.30.1
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-pycryptodome: for hlsnative downloader')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('8eda5d2ffcb7a8cf3467e31208bc27609ad85e7e19987b4c971271a25dd85571'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 19:29:27
  Author: jlichtblau
Revision: 428662

upgpkg: youtube-dl 2019.01.30.1-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 19:06:08 UTC (rev 428661)
+++ PKGBUILD2019-01-30 19:29:27 UTC (rev 428662)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2019.01.30
+pkgver=2019.01.30.1
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-pycryptodome: for hlsnative downloader')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('1a34f7eb8d9027d800026df106cddcb269eba31e7aef1066bdd9b5741ff3fc4c'
+sha256sums=('8eda5d2ffcb7a8cf3467e31208bc27609ad85e7e19987b4c971271a25dd85571'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 19:07:49
  Author: felixonmars
Revision: 344945

upgpkg: cmake 3.13.3-2

- symlink compiled emacs file (FS#55483)
- remove empty vimfiles dir

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 18:39:45 UTC (rev 344944)
+++ PKGBUILD2019-01-30 19:07:49 UTC (rev 344945)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.13.3
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="http://www.cmake.org/;
@@ -34,7 +34,7 @@
   make DESTDIR="${pkgdir}" install
 
   vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
+  install -d "${vimpath}"/{indent,syntax}
   ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
 "${vimpath}"/indent/
   ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
@@ -45,6 +45,8 @@
 "${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
   ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
 "${pkgdir}"/usr/share/emacs/site-lisp/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.elc \
+"${pkgdir}"/usr/share/emacs/site-lisp/
 
   install -Dm644 Copyright.txt \
 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 19:08:07
  Author: felixonmars
Revision: 344946

archrelease: copy trunk to extra-x86_64

Added:
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 344945, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 344945, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/rebuild.list

--+
 PKGBUILD |  104 +
 rebuild.list |4 +-
 2 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 19:07:49 UTC (rev 344945)
+++ PKGBUILD2019-01-30 19:08:07 UTC (rev 344946)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.13.3
-pkgrel=1
-pkgdesc='A cross-platform open-source make system'
-arch=('x86_64')
-url="http://www.cmake.org/;
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui'
-'libxkbcommon-x11: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3033c434b6880d76a1496c9b1a32835307296a68e4c677acbe09cadb6562088dc9b04fb314d28b4611a1f4ea4d5a1e41c94e7ccf135f21c372a0eadc25aba585')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-x86_64/PKGBUILD (from rev 344945, 
cmake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 19:08:07 UTC (rev 344946)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.13.3
+pkgrel=2
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3033c434b6880d76a1496c9b1a32835307296a68e4c677acbe09cadb6562088dc9b04fb314d28b4611a1f4ea4d5a1e41c94e7ccf135f21c372a0eadc25aba585')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.elc \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: rebuild.list
===
--- rebuild.list2019-01-30 19:07:49 UTC (rev 344945)
+++ rebuild.list2019-01-30 19:08:07 UTC (rev 344946)
@@ -1,2 +0,0 @@
-cmake-fedora
-uranium

Copied: cmake/repos/extra-x86_64/rebuild.list (from rev 344945, 
cmake/trunk/rebuild.list)
===
--- rebuild.list(rev 0)
+++ rebuild.list

[arch-commits] Commit in shadowsocks-v2ray-plugin/repos (2 files)

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 19:06:08
  Author: felixonmars
Revision: 428661

archrelease: copy trunk to community-x86_64

Added:
  shadowsocks-v2ray-plugin/repos/community-x86_64/
  shadowsocks-v2ray-plugin/repos/community-x86_64/PKGBUILD
(from rev 428660, shadowsocks-v2ray-plugin/trunk/PKGBUILD)

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

Copied: shadowsocks-v2ray-plugin/repos/community-x86_64/PKGBUILD (from rev 
428660, shadowsocks-v2ray-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-01-30 19:06:08 UTC (rev 428661)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=shadowsocks-v2ray-plugin
+pkgver=1.0
+pkgrel=1
+pkgdesc='A SIP003 plugin based on v2ray for shadowsocks'
+arch=('x86_64')
+url='https://github.com/shadowsocks/v2ray-plugin'
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/v2ray-plugin/archive/v$pkgver.tar.gz;)
+sha512sums=('0202bf7c0624ed323fd90647f2e3042528c3ce7b2b100c2f9bfe9a50042569fdb96ceca178473acc39c52a3dc0ff4c067ee567ddfc537877cbb27593bab43611')
+
+build() {
+  cd v2ray-plugin-$pkgver
+  go build
+}
+
+package() {
+  cd v2ray-plugin-$pkgver
+  install -Dm755 v2ray-plugin "$pkgdir"/usr/bin/v2ray-plugin
+}


[arch-commits] Commit in (4 files)

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 19:05:46
  Author: felixonmars
Revision: 428660

addpkg: shadowsocks-v2ray-plugin 1.0-1

Added:
  shadowsocks-v2ray-plugin/
  shadowsocks-v2ray-plugin/repos/
  shadowsocks-v2ray-plugin/trunk/
  shadowsocks-v2ray-plugin/trunk/PKGBUILD

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

Added: shadowsocks-v2ray-plugin/trunk/PKGBUILD
===
--- shadowsocks-v2ray-plugin/trunk/PKGBUILD (rev 0)
+++ shadowsocks-v2ray-plugin/trunk/PKGBUILD 2019-01-30 19:05:46 UTC (rev 
428660)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=shadowsocks-v2ray-plugin
+pkgver=1.0
+pkgrel=1
+pkgdesc='A SIP003 plugin based on v2ray for shadowsocks'
+arch=('x86_64')
+url='https://github.com/shadowsocks/v2ray-plugin'
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/v2ray-plugin/archive/v$pkgver.tar.gz;)
+sha512sums=('0202bf7c0624ed323fd90647f2e3042528c3ce7b2b100c2f9bfe9a50042569fdb96ceca178473acc39c52a3dc0ff4c067ee567ddfc537877cbb27593bab43611')
+
+build() {
+  cd v2ray-plugin-$pkgver
+  go build
+}
+
+package() {
+  cd v2ray-plugin-$pkgver
+  install -Dm755 v2ray-plugin "$pkgdir"/usr/bin/v2ray-plugin
+}


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 18:55:29
  Author: jlichtblau
Revision: 428659

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 18:55:18 UTC (rev 428658)
+++ PKGBUILD2019-01-30 18:55:29 UTC (rev 428659)
@@ -1,30 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.53
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('48e65a33d3b10527101d13c354538379d9df698e5c38f60f4660386f4232e65c')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  go build -tags extended
-  ./hugo gen man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 428658, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 18:55:29 UTC (rev 428659)
@@ -0,0 +1,30 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.53
+pkgrel=2
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha256sums=('48e65a33d3b10527101d13c354538379d9df698e5c38f60f4660386f4232e65c')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  go build -tags extended
+  ./hugo gen man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+}


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 18:55:18
  Author: jlichtblau
Revision: 428658

upgpkg: hugo 0.53-2 - Golang staticlibs + security rebuild

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 18:18:31 UTC (rev 428657)
+++ PKGBUILD2019-01-30 18:55:18 UTC (rev 428658)
@@ -5,7 +5,7 @@
 
 pkgname=hugo
 pkgver=0.53
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
 url="https://gohugo.io/;


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

2019-01-30 Thread Jan Steffens via arch-commits
Date: Wednesday, January 30, 2019 @ 18:39:45
  Author: heftig
Revision: 344944

Update source URL

Modified:
  fontconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 09:43:16 UTC (rev 344943)
+++ PKGBUILD2019-01-30 18:39:45 UTC (rev 344944)
@@ -14,7 +14,7 @@
  perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
 install=fontconfig.install
 _commit=5f5ec5676c61b9773026a9335c9b0dfa73a73353  # master
-source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+source=("git+https://gitlab.freedesktop.org/fontconfig/fontconfig.git#commit=$_commit;
 fontconfig.hook)
 sha256sums=('SKIP'
 '672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 18:18:31
  Author: jlichtblau
Revision: 428657

archrelease: copy trunk to community-any

Added:
  argbash/repos/community-any/
  argbash/repos/community-any/PKGBUILD
(from rev 428656, argbash/trunk/PKGBUILD)

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

Copied: argbash/repos/community-any/PKGBUILD (from rev 428656, 
argbash/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-01-30 18:18:31 UTC (rev 428657)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Matěj Týč 
+
+pkgname=argbash
+pkgver=2.8.0
+pkgrel=2
+pkgdesc="Bash argument parsing code generator"
+arch=(any)
+url="https://argbash.io;
+license=('BSD')
+depends=('autoconf')
+makedepends=('make')
+checkdepends=('shellcheck')
+source=($pkgname-$pkgver.tar.gz::https://github.com/matejak/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('76e90afbcbffafd4593c9a3ec8f89bd05e48ad88aaa47119a14bd6cd67c3e5b5')
+
+check() {
+  cd $pkgname-$pkgver/resources
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver/resources
+
+  make ROOT="${pkgdir}" PREFIX="/usr" 
BASH_COMPLETION_DIRECTORY=/usr/share/bash-completion/completions/ 
INSTALL_COMPLETION=yes install
+  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-01-30 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, January 30, 2019 @ 18:17:16
  Author: jlichtblau
Revision: 428656

argbash moved to [community]

Added:
  argbash/
  argbash/repos/
  argbash/trunk/
  argbash/trunk/PKGBUILD

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

Added: argbash/trunk/PKGBUILD
===
--- argbash/trunk/PKGBUILD  (rev 0)
+++ argbash/trunk/PKGBUILD  2019-01-30 18:17:16 UTC (rev 428656)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Matěj Týč 
+
+pkgname=argbash
+pkgver=2.8.0
+pkgrel=2
+pkgdesc="Bash argument parsing code generator"
+arch=(any)
+url="https://argbash.io;
+license=('BSD')
+depends=('autoconf')
+makedepends=('make')
+checkdepends=('shellcheck')
+source=($pkgname-$pkgver.tar.gz::https://github.com/matejak/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('76e90afbcbffafd4593c9a3ec8f89bd05e48ad88aaa47119a14bd6cd67c3e5b5')
+
+check() {
+  cd $pkgname-$pkgver/resources
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver/resources
+
+  make ROOT="${pkgdir}" PREFIX="/usr" 
BASH_COMPLETION_DIRECTORY=/usr/share/bash-completion/completions/ 
INSTALL_COMPLETION=yes install
+  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-01-30 Thread Kyle Keen via arch-commits
Date: Wednesday, January 30, 2019 @ 18:14:50
  Author: kkeen
Revision: 428655

archrelease: copy trunk to community-x86_64

Added:
  mbedtls/repos/community-x86_64/PKGBUILD
(from rev 428654, mbedtls/trunk/PKGBUILD)
Deleted:
  mbedtls/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 18:14:24 UTC (rev 428654)
+++ PKGBUILD2019-01-30 18:14:50 UTC (rev 428655)
@@ -1,49 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Mihai Militaru 
-# Contributor: carstene1ns 
-
-pkgname=mbedtls
-pkgver=2.13.0
-pkgrel=1
-pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl"
-arch=('x86_64')
-url="https://tls.mbed.org;
-license=('Apache')
-provides=('polarssl')
-replaces=('polarssl')
-conflicts=('polarssl')
-source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz;)
-#source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz;)
-sha1sums=('c08ece280db88b765ae626254000bbe192f48bb2')
-depends=('glibc')
-checkdepends=('python2')
-options=('staticlibs')
-
-# 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-libs/polarssl/files/polarssl-1.3.8-ssl_pthread_server.patch
-# https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD
-# https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # enable flags for non-embedded systems
-  sed -i 's|//\(#define MBEDTLS_THREADING_C\)|\1|' include/mbedtls/config.h
-  sed -i 's|//\(#define MBEDTLS_THREADING_PTHREAD\)|\1|' 
include/mbedtls/config.h
-
-  # FS#49914 (2.3.0-2)
-  sed -i 's||"platform.h"|' include/mbedtls/ssl.h
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  LDFLAGS+=" -I../include " make SHARED=1 no_test
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make SHARED=1 check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/usr" install
-}

Copied: mbedtls/repos/community-x86_64/PKGBUILD (from rev 428654, 
mbedtls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 18:14:50 UTC (rev 428655)
@@ -0,0 +1,49 @@
+# Maintainer: Kyle Keen 
+# Contributor: Mihai Militaru 
+# Contributor: carstene1ns 
+
+pkgname=mbedtls
+pkgver=2.16.0
+pkgrel=1
+pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl"
+arch=('x86_64')
+url="https://tls.mbed.org;
+license=('Apache')
+provides=('polarssl')
+replaces=('polarssl')
+conflicts=('polarssl')
+source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz;)
+#source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz;)
+sha1sums=('3df7b6f791b74361056c7e213585ba18cdef2fb8')
+depends=('glibc')
+checkdepends=('python2')
+options=('staticlibs')
+
+# 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-libs/polarssl/files/polarssl-1.3.8-ssl_pthread_server.patch
+# https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD
+# https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # enable flags for non-embedded systems
+  sed -i 's|//\(#define MBEDTLS_THREADING_C\)|\1|' include/mbedtls/config.h
+  sed -i 's|//\(#define MBEDTLS_THREADING_PTHREAD\)|\1|' 
include/mbedtls/config.h
+
+  # FS#49914 (2.3.0-2)
+  sed -i 's||"platform.h"|' include/mbedtls/ssl.h
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  LDFLAGS+=" -I../include " make SHARED=1 no_test
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make SHARED=1 check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/usr" install
+}


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

2019-01-30 Thread Kyle Keen via arch-commits
Date: Wednesday, January 30, 2019 @ 18:14:24
  Author: kkeen
Revision: 428654

upgpkg: mbedtls 2.16.0-1

Modified:
  mbedtls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 17:14:33 UTC (rev 428653)
+++ PKGBUILD2019-01-30 18:14:24 UTC (rev 428654)
@@ -3,7 +3,7 @@
 # Contributor: carstene1ns 
 
 pkgname=mbedtls
-pkgver=2.13.0
+pkgver=2.16.0
 pkgrel=1
 pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 conflicts=('polarssl')
 source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz;)
 #source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz;)
-sha1sums=('c08ece280db88b765ae626254000bbe192f48bb2')
+sha1sums=('3df7b6f791b74361056c7e213585ba18cdef2fb8')
 depends=('glibc')
 checkdepends=('python2')
 options=('staticlibs')


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

2019-01-30 Thread Ike Devolder via arch-commits
Date: Wednesday, January 30, 2019 @ 17:14:33
  Author: idevolder
Revision: 428653

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  176 ++---
 default   |8 
 eula.html |  574 ++---
 opera |   26 +-
 opera.install |   78 +++---
 privacy.html  |  706 
 terms.html|  570 ++---
 7 files changed, 1069 insertions(+), 1069 deletions(-)

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


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

2019-01-30 Thread Ike Devolder via arch-commits
Date: Wednesday, January 30, 2019 @ 17:14:21
  Author: idevolder
Revision: 428652

upgpkg: opera 58.0.3135.53-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 16:38:34 UTC (rev 428651)
+++ PKGBUILD2019-01-30 17:14:21 UTC (rev 428652)
@@ -9,7 +9,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=58.0.3135.47
+pkgver=58.0.3135.53
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="http://www.opera.com/;
@@ -31,7 +31,7 @@
 'terms.html'
 'privacy.html'
 )
-sha512sums=('e4d52eb82eb47ec066182c76de839e87feccf8edffc55eb1515fe02ed39b86dd682e84bb49976bff934d876be4c607a2e430aedefe5eb64596ba028ae20d07ac'
+sha512sums=('a8febc4071bd7ac51ce0778bf3f178b4054f182c1a77c1eafcf7645bf3e3add8e9665b217cd66a3783255b77c07928880bbb3e25cb35c217b6504610ed5f9fb9'
 
'7e854e4c972785b8941f60117fbe4b88baeb8d7ca845ef2e10e8064043411da73821ba1ab0068df61e902f242a3ce355b51ffa9eab5397ff3ae3b5defd1be496'
 
'ddb1773877fcfd7d9674e63263a80f9dd5a3ba414cda4cc6c411c88d49c1d5175eede66d9362558ddd53c928c723101e4e110479ae88b8aec4d2366ec179297f'
 
'285a0633e5863ec9c9af99138ff0b59da155a2dd72a340e784e53de3e801029eb6ca2e4b38846592b85b9f8b99dcb6f6eedbed273057a9216abe31c396d9f28a'


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

2019-01-30 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, January 30, 2019 @ 16:38:34
  Author: sangy
Revision: 428651

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   89 +++
 sn0int.install |   18 +--
 2 files changed, 54 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 16:37:45 UTC (rev 428650)
+++ PKGBUILD2019-01-30 16:38:34 UTC (rev 428651)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
-
-pkgname=sn0int
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='Semi-automatic OSINT framework and package manager'
-url='https://github.com/kpcyrd/sn0int'
-arch=('x86_64')
-license=('GPL3')
-depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
-makedepends=('cargo' 'python-sphinx')
-install=sn0int.install
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('e28ed8220fa2b2b34412e91b59ad2511538c6d5b2aaa523c0af9405958f0a17d1ee79945a9ff2c19f6b6800c2b20320d91ad27437efb1b68e4823fe0bedb3dc6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-  make -C docs man
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
-
-  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/PKGBUILD (from rev 428650, 
sn0int/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 16:38:34 UTC (rev 428651)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: kpcyrd 
+
+pkgname=sn0int
+pkgver=0.9.0
+pkgrel=1
+pkgdesc='Semi-automatic OSINT framework and package manager'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('GPL3')
+depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
+makedepends=('cargo' 'python-sphinx')
+install=sn0int.install
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('79c341cfb65f4e016e4fcf57efa00f2838511226c674d1281aed71b9ce00111a9881a2b5c065ae142afeb312a819ce84ab75947152c6741c5626f0754a6362a6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+  make -C docs man
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
+
+  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: sn0int.install
===
--- sn0int.install  2019-01-30 16:37:45 UTC (rev 428650)
+++ sn0int.install  2019-01-30 16:38:34 UTC (rev 428651)
@@ -1,9 +0,0 @@
-post_install() {
-  setcap cap_sys_chroot=ep usr/bin/sn0int 2> /dev/null
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/sn0int.install (from rev 428650, 
sn0int/trunk/sn0int.install)
===
--- 

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

2019-01-30 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, January 30, 2019 @ 16:37:45
  Author: sangy
Revision: 428650

upgpkg: sn0int 0.9.0-1

Modified:
  sn0int/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 16:28:19 UTC (rev 428649)
+++ PKGBUILD2019-01-30 16:37:45 UTC (rev 428650)
@@ -1,8 +1,9 @@
 # Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
 # Contributor: kpcyrd 
 
 pkgname=sn0int
-pkgver=0.8.1
+pkgver=0.9.0
 pkgrel=1
 pkgdesc='Semi-automatic OSINT framework and package manager'
 url='https://github.com/kpcyrd/sn0int'
@@ -12,7 +13,7 @@
 makedepends=('cargo' 'python-sphinx')
 install=sn0int.install
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('e28ed8220fa2b2b34412e91b59ad2511538c6d5b2aaa523c0af9405958f0a17d1ee79945a9ff2c19f6b6800c2b20320d91ad27437efb1b68e4823fe0bedb3dc6')
+sha512sums=('79c341cfb65f4e016e4fcf57efa00f2838511226c674d1281aed71b9ce00111a9881a2b5c065ae142afeb312a819ce84ab75947152c6741c5626f0754a6362a6')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-01-30 Thread Sergej Pupykin via arch-commits
Date: Wednesday, January 30, 2019 @ 16:28:01
  Author: spupykin
Revision: 428647

archrelease: copy trunk to community-x86_64

Added:
  gsoap/repos/community-x86_64/0001-no-xlocale.patch
(from rev 428646, gsoap/trunk/0001-no-xlocale.patch)
  gsoap/repos/community-x86_64/LICENSE
(from rev 428646, gsoap/trunk/LICENSE)
  gsoap/repos/community-x86_64/PKGBUILD
(from rev 428646, gsoap/trunk/PKGBUILD)
Deleted:
  gsoap/repos/community-x86_64/0001-no-xlocale.patch
  gsoap/repos/community-x86_64/LICENSE
  gsoap/repos/community-x86_64/PKGBUILD

---+
 0001-no-xlocale.patch |   82 ++--
 LICENSE   |  326 
 PKGBUILD  |   90 ++---
 3 files changed, 249 insertions(+), 249 deletions(-)

Deleted: 0001-no-xlocale.patch
===
--- 0001-no-xlocale.patch   2019-01-30 16:27:44 UTC (rev 428646)
+++ 0001-no-xlocale.patch   2019-01-30 16:28:01 UTC (rev 428647)
@@ -1,41 +0,0 @@
-diff -wbBur gsoap-2.8/gsoap/stdsoap2.h gsoap-2.8.my/gsoap/stdsoap2.h
 gsoap-2.8/gsoap/stdsoap2.h 2018-03-08 18:45:36.0 +0300
-+++ gsoap-2.8.my/gsoap/stdsoap2.h  2018-03-28 15:51:38.342848826 +0300
-@@ -338,7 +338,6 @@
- #  define HAVE_MBTOWC
- #  define HAVE_INTTYPES_H
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(_AIX43)
- #  define HAVE_SNPRINTF
-@@ -419,7 +418,6 @@
- #  define HAVE_ISNAN
- #  define HAVE_ISINF
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(__VMS)
- #  include 
-@@ -720,11 +718,6 @@
- # endif
- #endif
- 
--/* force inclusion of xlocale.h */
--#if defined(WITH_INCLUDE_XLOCALE_H) && !defined(HAVE_XLOCALE_H)
--# define HAVE_XLOCALE_H
--#endif
--
- #ifdef WITH_C_LOCALE
- # include 
- # if defined(WIN32) && !defined(CYGWIN)
-@@ -732,9 +725,6 @@
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = _create_locale(LC_ALL, "C")))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(_free_locale((soap)->c_locale), ((soap)->c_locale = NULL)))
- # else
--#  if defined(HAVE_XLOCALE_H)
--#   include 
--#  endif
- #  define SOAP_LOCALE_T locale_t
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = newlocale(LC_ALL_MASK, "C", NULL)))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(freelocale((soap)->c_locale), ((soap)->c_locale = NULL)))

Copied: gsoap/repos/community-x86_64/0001-no-xlocale.patch (from rev 428646, 
gsoap/trunk/0001-no-xlocale.patch)
===
--- 0001-no-xlocale.patch   (rev 0)
+++ 0001-no-xlocale.patch   2019-01-30 16:28:01 UTC (rev 428647)
@@ -0,0 +1,41 @@
+diff -wbBur gsoap-2.8/gsoap/stdsoap2.h gsoap-2.8.my/gsoap/stdsoap2.h
+--- gsoap-2.8/gsoap/stdsoap2.h 2018-03-08 18:45:36.0 +0300
 gsoap-2.8.my/gsoap/stdsoap2.h  2018-03-28 15:51:38.342848826 +0300
+@@ -338,7 +338,6 @@
+ #  define HAVE_MBTOWC
+ #  define HAVE_INTTYPES_H
+ #  define HAVE_LOCALE_H
+-#  define HAVE_XLOCALE_H
+ #  define HAVE_RANDOM
+ # elif defined(_AIX43)
+ #  define HAVE_SNPRINTF
+@@ -419,7 +418,6 @@
+ #  define HAVE_ISNAN
+ #  define HAVE_ISINF
+ #  define HAVE_LOCALE_H
+-#  define HAVE_XLOCALE_H
+ #  define HAVE_RANDOM
+ # elif defined(__VMS)
+ #  include 
+@@ -720,11 +718,6 @@
+ # endif
+ #endif
+ 
+-/* force inclusion of xlocale.h */
+-#if defined(WITH_INCLUDE_XLOCALE_H) && !defined(HAVE_XLOCALE_H)
+-# define HAVE_XLOCALE_H
+-#endif
+-
+ #ifdef WITH_C_LOCALE
+ # include 
+ # if defined(WIN32) && !defined(CYGWIN)
+@@ -732,9 +725,6 @@
+ #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = _create_locale(LC_ALL, "C")))
+ #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(_free_locale((soap)->c_locale), ((soap)->c_locale = NULL)))
+ # else
+-#  if defined(HAVE_XLOCALE_H)
+-#   include 
+-#  endif
+ #  define SOAP_LOCALE_T locale_t
+ #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = newlocale(LC_ALL_MASK, "C", NULL)))
+ #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(freelocale((soap)->c_locale), ((soap)->c_locale = NULL)))

Deleted: LICENSE
===
--- LICENSE 2019-01-30 16:27:44 UTC (rev 428646)
+++ LICENSE 2019-01-30 16:28:01 UTC (rev 428647)
@@ -1,163 +0,0 @@
-gSOAP Public License
-Version 1.3a
-The gSOAP public license is derived from the Mozilla Public License (MPL1.1). 
The sections that were deleted from the original MPL1.1 text are 1.0.1, 
2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The 
modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last 
sentence), and 3.6 (simplified).
-1  DEFINITIONS.
-
-1.0.1.
-1.1. "Contributor"
-means each entity that 

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

2019-01-30 Thread Sergej Pupykin via arch-commits
Date: Wednesday, January 30, 2019 @ 16:28:08
  Author: spupykin
Revision: 428648

upgpkg: remmina 1:1.3.1-1

Modified:
  remmina/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 16:28:01 UTC (rev 428647)
+++ PKGBUILD2019-01-30 16:28:08 UTC (rev 428648)
@@ -2,7 +2,7 @@
 
 pkgname=remmina
 epoch=1
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc="remote desktop client written in GTK+"
 arch=(x86_64)
@@ -21,7 +21,7 @@
 replaces=('remmina-plugins')
 provides=('remmina-plugins')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('f4f26b9e008a6f1eda57ead7882e3d144b4dd14af71150c169369471a7e871e8')
+sha256sums=('a879f58ec19c284006f78c21a04a5d9611b88030ab3bece3649bbaabc1ac02f4')
 
 prepare() {
   cd Remmina-${pkgver/rc/-rc}


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

2019-01-30 Thread Sergej Pupykin via arch-commits
Date: Wednesday, January 30, 2019 @ 16:28:19
  Author: spupykin
Revision: 428649

archrelease: copy trunk to community-x86_64

Added:
  remmina/repos/community-x86_64/PKGBUILD
(from rev 428648, remmina/trunk/PKGBUILD)
  remmina/repos/community-x86_64/fix-freerdp-name.patch
(from rev 428648, remmina/trunk/fix-freerdp-name.patch)
Deleted:
  remmina/repos/community-x86_64/PKGBUILD
  remmina/repos/community-x86_64/fix-freerdp-name.patch

+
 PKGBUILD   |   86 +++
 fix-freerdp-name.patch |   40 ++---
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 16:28:08 UTC (rev 428648)
+++ PKGBUILD2019-01-30 16:28:19 UTC (rev 428649)
@@ -1,43 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=remmina
-epoch=1
-pkgver=1.3.0
-pkgrel=1
-pkgdesc="remote desktop client written in GTK+"
-arch=(x86_64)
-url="https://www.remmina.org/;
-license=('GPL')
-depends=('avahi' 'libgcrypt' 'libssh' 'vte3')
-makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib')
-optdepends=('freerdp: RDP plugin'
-'libsecret: Secret plugin'
-'libvncserver: VNC plugin'
-'libxkbfile: NX plugin'
-'nxproxy: NX plugin'
-'spice-gtk: Spice plugin'
-'telepathy-glib: Telepathy plugin'
-'xorg-server-xephyr: XDMCP plugin')
-replaces=('remmina-plugins')
-provides=('remmina-plugins')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('f4f26b9e008a6f1eda57ead7882e3d144b4dd14af71150c169369471a7e871e8')
-
-prepare() {
-  cd Remmina-${pkgver/rc/-rc}
-  sed -e 's|ssh_threads|ssh|' -i cmake/FindLIBSSH.cmake # Fix build with 
libssh 0.8
-}
-
-build() {
-  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DWITH_APPINDICATOR=OFF .
-  make
-}
-
-package() {
-  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
-  make DESTDIR="$pkgdir" install
-}

Copied: remmina/repos/community-x86_64/PKGBUILD (from rev 428648, 
remmina/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 16:28:19 UTC (rev 428649)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=remmina
+epoch=1
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="remote desktop client written in GTK+"
+arch=(x86_64)
+url="https://www.remmina.org/;
+license=('GPL')
+depends=('avahi' 'libgcrypt' 'libssh' 'vte3')
+makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib')
+optdepends=('freerdp: RDP plugin'
+'libsecret: Secret plugin'
+'libvncserver: VNC plugin'
+'libxkbfile: NX plugin'
+'nxproxy: NX plugin'
+'spice-gtk: Spice plugin'
+'telepathy-glib: Telepathy plugin'
+'xorg-server-xephyr: XDMCP plugin')
+replaces=('remmina-plugins')
+provides=('remmina-plugins')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
+sha256sums=('a879f58ec19c284006f78c21a04a5d9611b88030ab3bece3649bbaabc1ac02f4')
+
+prepare() {
+  cd Remmina-${pkgver/rc/-rc}
+  sed -e 's|ssh_threads|ssh|' -i cmake/FindLIBSSH.cmake # Fix build with 
libssh 0.8
+}
+
+build() {
+  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DWITH_APPINDICATOR=OFF .
+  make
+}
+
+package() {
+  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
+  make DESTDIR="$pkgdir" install
+}

Deleted: fix-freerdp-name.patch
===
--- fix-freerdp-name.patch  2019-01-30 16:28:08 UTC (rev 428648)
+++ fix-freerdp-name.patch  2019-01-30 16:28:19 UTC (rev 428649)
@@ -1,20 +0,0 @@
-diff -wbBur Remmina-1.2.0-rcgit.17/cmake/FindFREERDP.cmake 
Remmina-1.2.0-rcgit.17.my/cmake/FindFREERDP.cmake
 Remmina-1.2.0-rcgit.17/cmake/FindFREERDP.cmake 2016-12-22 
11:59:08.0 +0300
-+++ Remmina-1.2.0-rcgit.17.my/cmake/FindFREERDP.cmake  2017-02-01 
18:28:39.771764112 +0300
-@@ -30,13 +30,13 @@
- find_path(WINPR_INCLUDE_DIR NAMES winpr/winpr.h
-   HINTS ${PC_FREERDP_INCLUDEDIR} ${PC_FREERDP_INCLUDE_DIRS} 
${CMAKE_PREFIX_PATH}/include/winpr2/)
- 
--find_library(FREERDP_LIBRARY NAMES freerdp
-+find_library(FREERDP_LIBRARY NAMES freerdp2
-   HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
- 
--find_library(FREERDP_CLIENT_LIBRARY NAMES freerdp-client
-+find_library(FREERDP_CLIENT_LIBRARY NAMES freerdp-client2
-   HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
- 
--find_library(FREERDP_WINPR_LIBRARY NAMES winpr
-+find_library(FREERDP_WINPR_LIBRARY NAMES winpr2
-   HINTS ${PC_FREERDP_LIBDIR} 

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

2019-01-30 Thread Bruno Pagani via arch-commits
Date: Wednesday, January 30, 2019 @ 16:14:36
  Author: archange
Revision: 428645

archrelease: copy trunk to community-x86_64

Added:
  signing-party/repos/community-x86_64/PKGBUILD
(from rev 428644, signing-party/trunk/PKGBUILD)
  signing-party/repos/community-x86_64/gpgwrap_makefile.patch
(from rev 428644, signing-party/trunk/gpgwrap_makefile.patch)
Deleted:
  signing-party/repos/community-x86_64/PKGBUILD
  signing-party/repos/community-x86_64/gpgwrap_makefile.patch

+
 PKGBUILD   |  170 +++
 gpgwrap_makefile.patch |   76 ++---
 2 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 16:14:24 UTC (rev 428644)
+++ PKGBUILD2019-01-30 16:14:36 UTC (rev 428645)
@@ -1,85 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: C. Dominik Bódi 
-
-pkgname=signing-party
-pkgver=2.7
-pkgrel=1
-pkgdesc="Collection for all kinds of pgp related things, including signing 
scripts, party preparation scripts, etc."
-arch=(x86_64)
-url="https://salsa.debian.org/debian/signing-party;
-license=(GPL)
-depends=(libmd
- perl-class-methodmaker
- perl-gnupg-interface
- perl-mailtools
- perl-mime-tools
- perl-net-idn-encode 
- perl-term-readkey
- perl-text-template
- qprint)
-optdepends=('python: keyart support'
-'imagemagick: photo uid support in gpgsigs'
-'perl-gd: springgraph support'
-'qrencode: QR code support in gpg-key2latex'
-'texlive-latexextra: QR code support in gpg-key2latex'
-'noto-fonts: fonts for pretty printouts'
-'noto-fonts-cjk: fonts for pretty printouts')
-source=("https://deb.debian.org/debian/pool/main/s/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;
-'gpgwrap_makefile.patch')
-# https://packages.debian.org/source/sid/signing-party
-md5sums=('92011416569ba67eb4b2db229411e832'
- '62a274a7eb766ccfbb43f463003089b5')
-sha256sums=('41641cbf3fb5c8d91da678e4aa64a3f1d76f906490a17cb0b9671edbf7a3d37e'
-'1a5b7ec8dca7642b744270ab5011707f9f4b732cba8062c76b5195c40f13f5e0')
-
-prepare() {
-# Remove useless buggy Makefile
-rm gpgwrap/src/Makefile
-patch -p1 -i gpgwrap_makefile.patch
-}
-
-build() {
-make
-}
-
-package() {
-make DESTDIR="${pkgdir}" install
-
-# Manually install all files the Makefiles in the subpackages are not 
installing
-# TODO: Fix this upstream instead
-
-install -Dm644 README -t "${pkgdir}"/usr/share/doc/signing-party/
-
-for project in caff gpgdir gpg-key2latex gpg-key2ps gpglist gpg-mailkeys 
gpgparticipants gpgsigs ; do
-install -Dm755 ${project}/${project} -t "${pkgdir}"/usr/bin/
-install -Dm644 ${project}/${project}.1 -t 
"${pkgdir}"/usr/share/man/man1/
-done
-
-install -Dm755 caff/{pgp-clean,pgp-fixkey} -t "${pkgdir}"/usr/bin/
-install -Dm644 caff/{pgp-clean,pgp-fixkey}.1 -t 
"${pkgdir}"/usr/share/man/man1/
-install -Dm644 caff/{caffrc.sample,README*} -t 
"${pkgdir}"/usr/share/doc/signing-party/caff/
-
-install -Dm644 gpg-key2ps/README -t 
"${pkgdir}"/usr/share/doc/signing-party/gpg-key2ps/
-
-install -Dm755 gpgparticipants/gpgparticipants-prefill -t 
"${pkgdir}"/usr/bin/
-install -Dm644 gpgparticipants/gpgparticipants-prefill.1 -t 
"${pkgdir}"/usr/share/man/man1/
-
-install -Dm644 gpgsigs/gpgsigs-lt2k5{,-annotated}.txt -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/gpgsigs/
-
-install -Dm755 gpgwrap/src/gpgwrap -t "${pkgdir}"/usr/bin/
-install -Dm644 gpgwrap/doc/gpgwrap.1 -t "${pkgdir}"/usr/share/man/man1/
-
-install -Dm644 keyanalyze/{keyanalyze,process_keys,pgpring/pgpring}.1 -t 
"${pkgdir}"/usr/share/man/man1/
-install -Dm755 keyanalyze/{allkeys,analyze}.sh -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/
-install -Dm644 keyanalyze/README -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/
-
-install -Dm755 keyanalyze/scripts/* -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/scripts/
-chmod 644 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/scripts/top50comments.txt
-install -Dm755 keyanalyze/willy/* -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/willy/
-chmod 644 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyanalyze/willy/README
-
-install -Dm755 keyart/keyart -t "${pkgdir}"/usr/bin/
-install -Dm644 keyart/doc/keyart.1 -t "${pkgdir}"/usr/share/man/man1/
-install -Dm644 keyart/{README,doc/{druken-bishop.txt,party-worksheet}} -t 
"${pkgdir}"/usr/share/doc/signing-party/keyart/
-install -Dm755 keyart/doc/examples/party.sh -t 
"${pkgdir}"/usr/share/doc/signing-party/examples/keyart/
-}

Copied: signing-party/repos/community-x86_64/PKGBUILD (from rev 428644, 
signing-party/trunk/PKGBUILD)

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

2019-01-30 Thread Bruno Pagani via arch-commits
Date: Wednesday, January 30, 2019 @ 16:14:24
  Author: archange
Revision: 428644

upgpkg: signing-party 2.8-1

Modified:
  signing-party/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 14:41:22 UTC (rev 428643)
+++ PKGBUILD2019-01-30 16:14:24 UTC (rev 428644)
@@ -2,11 +2,11 @@
 # Contributor: C. Dominik Bódi 
 
 pkgname=signing-party
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
 pkgdesc="Collection for all kinds of pgp related things, including signing 
scripts, party preparation scripts, etc."
 arch=(x86_64)
-url="https://salsa.debian.org/debian/signing-party;
+url="https://salsa.debian.org/signing-party-team/signing-party;
 license=(GPL)
 depends=(libmd
  perl-class-methodmaker
@@ -24,25 +24,25 @@
 'texlive-latexextra: QR code support in gpg-key2latex'
 'noto-fonts: fonts for pretty printouts'
 'noto-fonts-cjk: fonts for pretty printouts')
-source=("https://deb.debian.org/debian/pool/main/s/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;
+source=("${url}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.bz2"
 'gpgwrap_makefile.patch')
-# https://packages.debian.org/source/sid/signing-party
-md5sums=('92011416569ba67eb4b2db229411e832'
- '62a274a7eb766ccfbb43f463003089b5')
-sha256sums=('41641cbf3fb5c8d91da678e4aa64a3f1d76f906490a17cb0b9671edbf7a3d37e'
+sha256sums=('e31e913c152588b77cd46ac96f136e5f4bd70d6e51c9bcf12dca861c277ccb4f'
 '1a5b7ec8dca7642b744270ab5011707f9f4b732cba8062c76b5195c40f13f5e0')
 
 prepare() {
+cd ${pkgname}-v${pkgver}
 # Remove useless buggy Makefile
 rm gpgwrap/src/Makefile
-patch -p1 -i gpgwrap_makefile.patch
+patch -p1 -i ../gpgwrap_makefile.patch
 }
 
 build() {
+cd ${pkgname}-v${pkgver}
 make
 }
 
 package() {
+cd ${pkgname}-v${pkgver}
 make DESTDIR="${pkgdir}" install
 
 # Manually install all files the Makefiles in the subpackages are not 
installing


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

2019-01-30 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, January 30, 2019 @ 14:41:22
  Author: yan12125
Revision: 428643

archrelease: copy trunk to community-testing-x86_64

Added:
  screengrab/repos/community-testing-x86_64/
  screengrab/repos/community-testing-x86_64/PKGBUILD
(from rev 428642, screengrab/trunk/PKGBUILD)

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

Copied: screengrab/repos/community-testing-x86_64/PKGBUILD (from rev 428642, 
screengrab/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 14:41:22 UTC (rev 428643)
@@ -0,0 +1,36 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Jerome Leclanche 
+# Contributor: Beej 
+
+pkgname=screengrab
+pkgver=1.100
+pkgrel=1
+pkgdesc="Crossplatform tool for grabbing screenshots of your desktop."
+arch=("x86_64")
+url="https://github.com/lxqt/screengrab;
+license=("GPL2")
+depends=("qt5-base" "qt5-x11extras" "kwindowsystem" "libqtxdg" "libx11" 
"libxcb" "hicolor-icon-theme")
+makedepends=("cmake" "qt5-tools")
+source=(
+   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha256sums=('819971ffd00249a5ff6c4d5bf5e8c3c198a1c144b2628f3e6a2e733e21c157a6'
+'SKIP')
+validpgpkeys=(
+  '7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3'  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (4 files)

2019-01-30 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, January 30, 2019 @ 14:40:55
  Author: yan12125
Revision: 428642

addpkg: screengrab 1.100, imported from AUR

Added:
  screengrab/
  screengrab/repos/
  screengrab/trunk/
  screengrab/trunk/PKGBUILD

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

Added: screengrab/trunk/PKGBUILD
===
--- screengrab/trunk/PKGBUILD   (rev 0)
+++ screengrab/trunk/PKGBUILD   2019-01-30 14:40:55 UTC (rev 428642)
@@ -0,0 +1,36 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Jerome Leclanche 
+# Contributor: Beej 
+
+pkgname=screengrab
+pkgver=1.100
+pkgrel=1
+pkgdesc="Crossplatform tool for grabbing screenshots of your desktop."
+arch=("x86_64")
+url="https://github.com/lxqt/screengrab;
+license=("GPL2")
+depends=("qt5-base" "qt5-x11extras" "kwindowsystem" "libqtxdg" "libx11" 
"libxcb" "hicolor-icon-theme")
+makedepends=("cmake" "qt5-tools")
+source=(
+   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha256sums=('819971ffd00249a5ff6c4d5bf5e8c3c198a1c144b2628f3e6a2e733e21c157a6'
+'SKIP')
+validpgpkeys=(
+  '7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3'  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in sagemath-doc/trunk (PKGBUILD sagemath-doc-sphinx-1.8.patch)

2019-01-30 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 30, 2019 @ 14:28:10
  Author: arojas
Revision: 428641

Use upstream sphinx patch

Modified:
  sagemath-doc/trunk/PKGBUILD
  sagemath-doc/trunk/sagemath-doc-sphinx-1.8.patch

---+
 PKGBUILD  |2 
 sagemath-doc-sphinx-1.8.patch |  223 
 2 files changed, 117 insertions(+), 108 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 13:49:59 UTC (rev 428640)
+++ PKGBUILD2019-01-30 14:28:10 UTC (rev 428641)
@@ -17,7 +17,7 @@
 sagemath-cypari2.patch)
 sha256sums=('dea613fc955cada76aaa7ab379bc5a219fe8b496064824f8c798b2b1651442fa'
 'ea5e17bb7a7cb36a22e5e3872fcc2585852bc971c4b139b0b2cd69a36c1b009b'
-'8ed0b9151d392b9e1abbc2921e98f86000d0e8d3a78994e6fd3fd4610957e8b9'
+'337d1d84749c1415c120a95d621d8cb0a4ef6e29245193c673e4b3f3a5d56fe9'
 '141ac064305526785fb6d9507896876cbf893cd41ec1e42d86fc836f766c200f'
 'a42f3b152b1aedb8abf16bc70971419919d1fe30328574e7fef8305f9d07d938'
 'ca47248d2ed5edfe663ea02e261ddbb26a7cb03bef67928dbec690d9b9a8f129')

Modified: sagemath-doc-sphinx-1.8.patch
===
--- sagemath-doc-sphinx-1.8.patch   2019-01-30 13:49:59 UTC (rev 428640)
+++ sagemath-doc-sphinx-1.8.patch   2019-01-30 14:28:10 UTC (rev 428641)
@@ -1,56 +1,63 @@
-diff --git a/src/sage_setup/docbuild/__init__.py 
b/src/sage_setup/docbuild/__init__.py
-index ff67979..83b49e1 100644
 a/src/sage_setup/docbuild/__init__.py
-+++ b/src/sage_setup/docbuild/__init__.py
-@@ -332,6 +331,18 @@ class AllBuilder(object):
- for document in refs:
- getattr(get_builder(document), 'inventory')(*args, **kwds)
+diff --git a/src/sage/misc/sphinxify.py b/src/sage/misc/sphinxify.py
+index 6e21344..4270294 100644
+--- a/src/sage/misc/sphinxify.py
 b/src/sage/misc/sphinxify.py
+@@ -68,20 +68,20 @@ def sphinxify(docstring, format='html'):
+ sage: assert n == len(sys.path)
+ """
+ srcdir = mkdtemp()
+-base_name = os.path.join(srcdir, 'docstring')
+-rst_name = base_name + '.rst'
++outdir = mkdtemp()
++src_base_name = os.path.join(srcdir, 'docstring')
++out_base_name = os.path.join(outdir, 'docstring')
++rst_name = src_base_name + '.rst'
  
-+# In the inventory build, the directory
-+# SAGE_DOC/inventory/en/reference/_static might be created,
-+# but it is unnecessary in the inventory build -- this
-+# directory should contain javascript and style files
-+# specifically for the html build -- and it can confuse
-+# intersphinx and the html builder when they look for
-+# inventory files. So delete this directory.
-+staticdir = os.path.join(SAGE_DOC, 'inventory', 'en', 'reference', 
'_static')
-+if os.path.isdir(staticdir):
-+logger.info("Deleting _static directory in the inventory build")
-+shutil.rmtree(staticdir)
-+
- logger.warning("Building reference manual, second pass.\n")
- for document in refs:
- getattr(get_builder(document), name)(*args, **kwds)
-diff --git a/src/sage_setup/docbuild/ext/sage_autodoc.py 
b/src/sage_setup/docbuild/ext/sage_autodoc.py
-index 2c399bad51..96abec3382 100644
 a/src/sage_setup/docbuild/ext/sage_autodoc.py
-+++ b/src/sage_setup/docbuild/ext/sage_autodoc.py
-@@ -39,8 +39,9 @@ from docutils.statemachine import ViewList
- import sphinx
- from sphinx.util import rpartition, force_decode
- from sphinx.locale import _
--from sphinx.pycode import ModuleAnalyzer, PycodeError
--from sphinx.application import ExtensionError
-+from sphinx.pycode import ModuleAnalyzer
-+from sphinx.errors import ExtensionError, PycodeError
-+from sphinx.util.logging import getLogger
- from sphinx.util.nodes import nested_parse_with_titles
- from docutils.parsers.rst import Directive
- from sphinx.util.inspect import getargspec, isdescriptor, safe_getmembers, \
-diff --git a/src/sage_setup/docbuild/ext/multidocs.py 
b/src/sage_setup/docbuild/ext/multidocs.py
-index dc2e065e7e..ddd28c1a46 100644
 a/src/sage_setup/docbuild/ext/multidocs.py
-+++ b/src/sage_setup/docbuild/ext/multidocs.py
-@@ -302,7 +302,6 @@ def init_subdoc(app):
- os.unlink(static_dir)
- os.symlink(master_static_dir, static_dir)
-
--app.builder.copy_static_files = link_static_files
-
- if app.config.multidoc_first_pass == 1:
- app.config.intersphinx_mapping = {}
+ if format == 'html':
+ suffix = '.html'
+ else:
+ suffix = '.txt'
+-output_name = base_name + suffix
++output_name = out_base_name + suffix
+ 
+ with open(rst_name, 'w') as filed:
+ filed.write(docstring)
+ 
+-# Sphinx constructor: Sphinx(srcdir, confdir, outdir, doctreedir,
+-# buildername, 

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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:49:59
  Author: felixonmars
Revision: 428640

archrelease: copy trunk to community-testing-x86_64

Added:
  obconf-qt/repos/community-testing-x86_64/PKGBUILD
(from rev 428639, obconf-qt/trunk/PKGBUILD)
Deleted:
  obconf-qt/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 13:49:21 UTC (rev 428639)
+++ PKGBUILD2019-01-30 13:49:59 UTC (rev 428640)
@@ -1,37 +0,0 @@
-# Maintainer: Jerome Leclanche 
-
-pkgname=obconf-qt
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="Openbox configuration tool. Qt port of ObConf"
-arch=("x86_64")
-groups=("lxqt")
-url="http://lxqt.org;
-license=("LGPL2.1")
-depends=("hicolor-icon-theme" "openbox" "qt5-x11extras")
-makedepends=("lxqt-build-tools")
-source=(
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
-)
-sha512sums=('537c10e286311d39f3e69c2940f4267d7dd2e55888e1e50d6aeb3cad8f694fec7792ca30e258a69cfe0c5361acecd4232605e47e71e27fa53b25f4bb65a0d703'
-'SKIP')
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

-)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: obconf-qt/repos/community-testing-x86_64/PKGBUILD (from rev 428639, 
obconf-qt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 13:49:59 UTC (rev 428640)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=obconf-qt
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="Openbox configuration tool. Qt port of ObConf"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("hicolor-icon-theme" "openbox" "qt5-x11extras")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha512sums=('44cbea3ba0372bb06c8d3be2f8646432df01bc49081b3ffa6f6dc2a0dedb6402ba5089299167f41fbc4d719876ce872113af4bbb79439c9e2dc454225e2bb530'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in lxqt-notificationd/repos/community-testing-x86_64 (2 files)

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:49:07
  Author: felixonmars
Revision: 428638

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-notificationd/repos/community-testing-x86_64/PKGBUILD
(from rev 428637, lxqt-notificationd/trunk/PKGBUILD)
Deleted:
  lxqt-notificationd/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 13:48:25 UTC (rev 428637)
+++ PKGBUILD2019-01-30 13:49:07 UTC (rev 428638)
@@ -1,37 +0,0 @@
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-notificationd
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="LXQt notification daemon and library."
-arch=("x86_64")
-groups=("lxqt")
-url="http://lxqt.org;
-license=("LGPL2.1")
-depends=("liblxqt")
-provides=("notification-daemon")
-makedepends=("lxqt-build-tools")
-source=(
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
-)
-sha512sums=('2bc75b840a666e013d914f08719680cf3af7430a6acfb5072facff8bdc964aeef1d5227c68b5a5c5d8a6d6c572632105e3f2f04c517d8e8669eb40b5a0cf0f4d'
-'SKIP')
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

-)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-notificationd/repos/community-testing-x86_64/PKGBUILD (from rev 
428637, lxqt-notificationd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 13:49:07 UTC (rev 428638)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-notificationd
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="LXQt notification daemon and library."
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt")
+provides=("notification-daemon")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha512sums=('b91f0fc159f979582d1483a020c27403157697232e15ac677ff725297f33a89e2df5d63b90bc3711bcf9c8fe1ad58793518ab116f4a9c47f8102dfa256fa4747'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:49:21
  Author: felixonmars
Revision: 428639

upgpkg: obconf-qt 0.14.0-1

Modified:
  obconf-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 13:49:07 UTC (rev 428638)
+++ PKGBUILD2019-01-30 13:49:21 UTC (rev 428639)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=obconf-qt
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="Openbox configuration tool. Qt port of ObConf"
 arch=("x86_64")
@@ -14,7 +14,7 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha512sums=('537c10e286311d39f3e69c2940f4267d7dd2e55888e1e50d6aeb3cad8f694fec7792ca30e258a69cfe0c5361acecd4232605e47e71e27fa53b25f4bb65a0d703'
+sha512sums=('44cbea3ba0372bb06c8d3be2f8646432df01bc49081b3ffa6f6dc2a0dedb6402ba5089299167f41fbc4d719876ce872113af4bbb79439c9e2dc454225e2bb530'
 'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:48:25
  Author: felixonmars
Revision: 428637

upgpkg: lxqt-notificationd 0.14.0-1

Modified:
  lxqt-notificationd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 13:13:18 UTC (rev 428636)
+++ PKGBUILD2019-01-30 13:48:25 UTC (rev 428637)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-notificationd
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="LXQt notification daemon and library."
 arch=("x86_64")
@@ -15,7 +15,7 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha512sums=('2bc75b840a666e013d914f08719680cf3af7430a6acfb5072facff8bdc964aeef1d5227c68b5a5c5d8a6d6c572632105e3f2f04c517d8e8669eb40b5a0cf0f4d'
+sha512sums=('b91f0fc159f979582d1483a020c27403157697232e15ac677ff725297f33a89e2df5d63b90bc3711bcf9c8fe1ad58793518ab116f4a9c47f8102dfa256fa4747'
 'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:13:18
  Author: felixonmars
Revision: 428636

archrelease: copy trunk to community-testing-any

Added:
  python-redis/repos/community-testing-any/
  python-redis/repos/community-testing-any/PKGBUILD
(from rev 428635, python-redis/trunk/PKGBUILD)

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

Copied: python-redis/repos/community-testing-any/PKGBUILD (from rev 428635, 
python-redis/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-01-30 13:13:18 UTC (rev 428636)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Karol 'Kenji Takahashi' Woźniak 
+# Contributor: Pierre Gueth 
+
+pkgbase=python-redis
+pkgname=('python-redis' 'python2-redis')
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='The Python interface to the Redis key-value store'
+arch=('any')
+url="http://github.com/andymccurdy/redis-py;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'pifpaf' 'redis')
+source=("https://pypi.io/packages/source/r/redis/redis-$pkgver.tar.gz;)
+sha512sums=('d915dafb853a41e4cb26811d8c08a828ec55f69b75206c62e96a6c7156ca171391e2a7915d523f337de8fee532bf66890d14a645ebaf490f21f13b7798bea1b5')
+
+prepare() {
+  cp -a redis-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/redis-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/redis-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/redis-$pkgver
+  pifpaf run redis py.test || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
+
+  cd "$srcdir"/redis-$pkgver-py2
+  pifpaf run redis py.test2 || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
+}
+
+package_python-redis() {
+  depends=('python')
+
+  cd redis-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-redis() {
+  depends=('python2')
+
+  cd redis-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 13:12:38
  Author: felixonmars
Revision: 428635

upgpkg: python-redis 3.1.0-1

Modified:
  python-redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 12:07:58 UTC (rev 428634)
+++ PKGBUILD2019-01-30 13:12:38 UTC (rev 428635)
@@ -4,7 +4,7 @@
 
 pkgbase=python-redis
 pkgname=('python-redis' 'python2-redis')
-pkgver=3.0.1
+pkgver=3.1.0
 pkgrel=1
 pkgdesc='The Python interface to the Redis key-value store'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'pifpaf' 'redis')
 source=("https://pypi.io/packages/source/r/redis/redis-$pkgver.tar.gz;)
-sha512sums=('6f65c179f5423a25b00b01181670a3b34b80ae5114e5f3e614535ee142ce257b1afdcd5a9c277c61ac951101f5109f9e4c78831fe5266b1b18ed8ba77b0b77ba')
+sha512sums=('d915dafb853a41e4cb26811d8c08a828ec55f69b75206c62e96a6c7156ca171391e2a7915d523f337de8fee532bf66890d14a645ebaf490f21f13b7798bea1b5')
 
 prepare() {
   cp -a redis-$pkgver{,-py2}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:07:58
  Author: felixonmars
Revision: 428634

archrelease: copy trunk to community-testing-x86_64

Added:
  libsysstat/repos/community-testing-x86_64/
  libsysstat/repos/community-testing-x86_64/PKGBUILD
(from rev 428633, libsysstat/trunk/PKGBUILD)

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

Copied: libsysstat/repos/community-testing-x86_64/PKGBUILD (from rev 428633, 
libsysstat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 12:07:58 UTC (rev 428634)
@@ -0,0 +1,35 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=libsysstat
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="Library to query system statistics (net, resource usage, ...)"
+arch=("x86_64")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("qt5-base")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha512sums=('9059b9d20edbb7ecd89e722b48c6603b8042030ffad06d3eac167bb518691c2733d314649dc4c42a839d4812c7b65dcd043a13a6bd5b56678da112a8065717df'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:07:31
  Author: felixonmars
Revision: 428633

upgpkg: libsysstat 0.4.2-1

Modified:
  libsysstat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 12:07:09 UTC (rev 428632)
+++ PKGBUILD2019-01-30 12:07:31 UTC (rev 428633)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=libsysstat
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
 pkgdesc="Library to query system statistics (net, resource usage, ...)"
 arch=("x86_64")
@@ -13,7 +13,7 @@

"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha512sums=('e0f6497be9a7205b6053cdae0fcd88d8b4723489ca97f1ed2cf6704cae149abc3f3339c777aca638abb054e171c6e592b5a10c129aff0a1f42083bd91ab11eb5'
+sha512sums=('9059b9d20edbb7ecd89e722b48c6603b8042030ffad06d3eac167bb518691c2733d314649dc4c42a839d4812c7b65dcd043a13a6bd5b56678da112a8065717df'
 'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:07:09
  Author: felixonmars
Revision: 428632

archrelease: copy trunk to community-x86_64

Added:
  libsass/repos/community-x86_64/PKGBUILD
(from rev 428631, libsass/trunk/PKGBUILD)
Deleted:
  libsass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 12:06:43 UTC (rev 428631)
+++ PKGBUILD2019-01-30 12:07:09 UTC (rev 428632)
@@ -1,28 +0,0 @@
-# Maintainer: Jerome Leclanche 
-# Contributor: Isaac Dupree 
-
-pkgname=libsass
-pkgver=3.5.4
-pkgrel=1
-pkgdesc="C implementation of Sass CSS preprocessor (library)."
-arch=("x86_64")
-url="http://libsass.org/;
-license=("MIT")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("5f61cbcddaf8e6ef7a725fcfa5d05297becd7843960f245197ebb655ff868770")
-
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir/" install
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libsass/repos/community-x86_64/PKGBUILD (from rev 428631, 
libsass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 12:07:09 UTC (rev 428632)
@@ -0,0 +1,28 @@
+# Maintainer: Jerome Leclanche 
+# Contributor: Isaac Dupree 
+
+pkgname=libsass
+pkgver=3.5.5
+pkgrel=1
+pkgdesc="C implementation of Sass CSS preprocessor (library)."
+arch=("x86_64")
+url="http://libsass.org/;
+license=("MIT")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=('487ca58f1dfdc4055079af04f0ad120747385d3b3926b1c8f46e4b00540fdb70')
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir/" install
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:06:43
  Author: felixonmars
Revision: 428631

upgpkg: libsass 3.5.5-1

Modified:
  libsass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 12:05:17 UTC (rev 428630)
+++ PKGBUILD2019-01-30 12:06:43 UTC (rev 428631)
@@ -9,7 +9,7 @@
 url="http://libsass.org/;
 license=("MIT")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("487ca58f1dfdc4055079af04f0ad120747385d3b3926b1c8f46e4b00540fdb70")
+sha256sums=('487ca58f1dfdc4055079af04f0ad120747385d3b3926b1c8f46e4b00540fdb70')
 
 
 build() {


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:05:17
  Author: felixonmars
Revision: 428630

archrelease: copy trunk to community-testing-x86_64

Added:
  pavucontrol-qt/repos/community-testing-x86_64/
  pavucontrol-qt/repos/community-testing-x86_64/PKGBUILD
(from rev 428629, pavucontrol-qt/trunk/PKGBUILD)

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

Copied: pavucontrol-qt/repos/community-testing-x86_64/PKGBUILD (from rev 
428629, pavucontrol-qt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 12:05:17 UTC (rev 428630)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=pavucontrol-qt
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="A Pulseaudio mixer in Qt (port of pavucontrol)"
+arch=("x86_64")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("pulseaudio" "qt5-base")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('94f3150d2155ae1ba827b233c4b8ff6bf4763318b3f1e264baef4cdc0f6844d0'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:04:54
  Author: felixonmars
Revision: 428629

upgpkg: pavucontrol-qt 0.14.0-1

Modified:
  pavucontrol-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 12:02:09 UTC (rev 428628)
+++ PKGBUILD2019-01-30 12:04:54 UTC (rev 428629)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=pavucontrol-qt
-pkgver=0.4.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="A Pulseaudio mixer in Qt (port of pavucontrol)"
 arch=("x86_64")
@@ -13,10 +13,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "e6b2edc4079c067fa8710eee8bd7f11f148128a9f08d5d38e600b4c31f841b5f"
-   "SKIP"
-)
+sha256sums=('94f3150d2155ae1ba827b233c4b8ff6bf4763318b3f1e264baef4cdc0f6844d0'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:02:09
  Author: felixonmars
Revision: 428628

archrelease: copy trunk to community-testing-x86_64

Added:
  qterminal/repos/community-testing-x86_64/
  qterminal/repos/community-testing-x86_64/PKGBUILD
(from rev 428627, qterminal/trunk/PKGBUILD)

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

Copied: qterminal/repos/community-testing-x86_64/PKGBUILD (from rev 428627, 
qterminal/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 12:02:09 UTC (rev 428628)
@@ -0,0 +1,38 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=qterminal
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="A lightweight Qt-based terminal emulator"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("hicolor-icon-theme" "qtermwidget" "qt5-x11extras")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('9807450a2d2c72edaa60db5b6b33c6c76fa1c742b419167c8f2815d4e3e29d3e'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 12:01:44
  Author: felixonmars
Revision: 428627

upgpkg: qterminal 0.14.0-1

Modified:
  qterminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:59:36 UTC (rev 428626)
+++ PKGBUILD2019-01-30 12:01:44 UTC (rev 428627)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=qterminal
-pkgver=0.9.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="A lightweight Qt-based terminal emulator"
 arch=("x86_64")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "4157980356af4e05cfe5fa3badecba6e25715a35e2b7f9a830da87bcca519fee"
-   "SKIP"
-)
+sha256sums=('9807450a2d2c72edaa60db5b6b33c6c76fa1c742b419167c8f2815d4e3e29d3e'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:59:13
  Author: felixonmars
Revision: 428625

upgpkg: qtermwidget 0.14.0-1

Modified:
  qtermwidget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:57:35 UTC (rev 428624)
+++ PKGBUILD2019-01-30 11:59:13 UTC (rev 428625)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=qtermwidget
-pkgver=0.9.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="A terminal widget for Qt, used by QTerminal"
 arch=("x86_64")
@@ -13,10 +13,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "e39ce62fec18112634630654f41f08f4be4638bcf0bebbc89d71c9aefdfa38b0"
-   "SKIP"
-)
+sha256sums=('0db7b6140ad5213383082403508ef3a38dab782caf679ffd4a00b44df519b893'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:59:36
  Author: felixonmars
Revision: 428626

archrelease: copy trunk to community-testing-x86_64

Added:
  qtermwidget/repos/community-testing-x86_64/
  qtermwidget/repos/community-testing-x86_64/PKGBUILD
(from rev 428625, qtermwidget/trunk/PKGBUILD)

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

Copied: qtermwidget/repos/community-testing-x86_64/PKGBUILD (from rev 428625, 
qtermwidget/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:59:36 UTC (rev 428626)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=qtermwidget
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="A terminal widget for Qt, used by QTerminal"
+arch=("x86_64")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("qt5-base")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('0db7b6140ad5213383082403508ef3a38dab782caf679ffd4a00b44df519b893'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:49:56
  Author: felixonmars
Revision: 428616

upgpkg: haskell-gtk 0.15.0-7

rebuild with gtk2hs-buildtools 0.13.5.0

Modified:
  haskell-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:45:02 UTC (rev 428615)
+++ PKGBUILD2019-01-30 11:49:56 UTC (rev 428616)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-gtk
 pkgver=0.15.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Binding to the gtk library for Gtk2Hs."
 url="https://hackage.haskell.org/package/gtk3;
 license=('LGPL2.1')


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:57:35
  Author: felixonmars
Revision: 428624

archrelease: copy trunk to community-testing-x86_64

Added:
  obconf-qt/repos/community-testing-x86_64/
  obconf-qt/repos/community-testing-x86_64/PKGBUILD
(from rev 428623, obconf-qt/trunk/PKGBUILD)

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

Copied: obconf-qt/repos/community-testing-x86_64/PKGBUILD (from rev 428623, 
obconf-qt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:57:35 UTC (rev 428624)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=obconf-qt
+pkgver=0.13.0
+pkgrel=1
+pkgdesc="Openbox configuration tool. Qt port of ObConf"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("hicolor-icon-theme" "openbox" "qt5-x11extras")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha512sums=('537c10e286311d39f3e69c2940f4267d7dd2e55888e1e50d6aeb3cad8f694fec7792ca30e258a69cfe0c5361acecd4232605e47e71e27fa53b25f4bb65a0d703'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:57:11
  Author: felixonmars
Revision: 428623

upgpkg: obconf-qt 0.13.0-1

Modified:
  obconf-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:54:34 UTC (rev 428622)
+++ PKGBUILD2019-01-30 11:57:11 UTC (rev 428623)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=obconf-qt
-pkgver=0.12.0
+pkgver=0.13.0
 pkgrel=1
 pkgdesc="Openbox configuration tool. Qt port of ObConf"
 arch=("x86_64")
@@ -14,7 +14,7 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=('040105d8129c21ad058b762036de46ddacbee4ab7beb60db5af530fc0a37b964'
+sha512sums=('537c10e286311d39f3e69c2940f4267d7dd2e55888e1e50d6aeb3cad8f694fec7792ca30e258a69cfe0c5361acecd4232605e47e71e27fa53b25f4bb65a0d703'
 'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:50:22
  Author: felixonmars
Revision: 428617

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-gtk/repos/community-staging-x86_64/PKGBUILD (from rev 428616, 
haskell-gtk/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-30 11:50:22 UTC (rev 428617)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-gtk
+pkgver=0.15.0
+pkgrel=7
+pkgdesc="Binding to the gtk library for Gtk2Hs."
+url="https://hackage.haskell.org/package/gtk3;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'gtk3' 'haskell-pango')
+makedepends=('ghc' 'haskell-gtk2hs-buildtools')
+provides=('gtk2hs-gtk')
+replaces=('gtk2hs-gtk')
+conflicts=('gtk2hs-gtk')
+source=("https://hackage.haskell.org/packages/archive/gtk3/${pkgver}/gtk3-${pkgver}.tar.gz;)
+sha512sums=('0dade0d67fce09121881fc56b18c7cc53ae8b3dad7c2adf4d404a84969e725287d5ed4f104ba91ad694b0fae29f18311be4c1307811b7d7d2a6fe7e7c2ffd8ab')
+
+build() {
+cd "${srcdir}/gtk3-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$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 "${srcdir}/gtk3-${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"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:45:02
  Author: felixonmars
Revision: 428615

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pango/repos/community-staging-x86_64/PKGBUILD (from rev 428614, 
haskell-pango/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-30 11:45:02 UTC (rev 428615)
@@ -0,0 +1,38 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=pango
+pkgname=haskell-pango
+pkgver=0.13.5.0
+pkgrel=12
+pkgdesc="Binding to the pango library for Gtk2Hs."
+url="https://hackage.haskell.org/package/pango;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'pango' 'haskell-glib' 'haskell-cairo')
+makedepends=('ghc' "haskell-gtk2hs-buildtools" "mesa")
+provides=('gtk2hs-pango')
+replaces=('gtk2hs-pango')
+conflicts=('gtk2hs-pango')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d1d6e61118f193d0849e44a2f589391e36f9e6bc80cbf45071d01384e12f600158cad11a49b194388baa1c8c8941a16f8b147a67982016bd9b95035a5f108827')
+
+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"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:44:24
  Author: felixonmars
Revision: 428613

archrelease: copy trunk to community-x86_64

Added:
  ibus-libpinyin/repos/community-x86_64/PKGBUILD
(from rev 428612, ibus-libpinyin/trunk/PKGBUILD)
Deleted:
  ibus-libpinyin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 11:43:51 UTC (rev 428612)
+++ PKGBUILD2019-01-30 11:44:24 UTC (rev 428613)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor:  Yangtse Su
-# Contributor:  Jekyll Wu
-# Contributor: riverscn
-# Contributor: rainy
-# Contributor: Lee.MaRS
-
-pkgname=ibus-libpinyin
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="Intelligent Pinyin engine based on libpinyin for IBus"
-arch=('x86_64')
-license=('LGPL')
-url="https://github.com/libpinyin/ibus-libpinyin;
-depends=('ibus' 'libpinyin' 'python-xdg')
-makedepends=('git' 'intltool' 'gnome-common')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/libpinyin/ibus-libpinyin/archive/$pkgver.tar.gz;)
-sha512sums=('c9fdc28562714bddc889805e1d439a7dd425f721a8236b8f8ec4727ce24e5053693b3e5bd9b06ced22ceb66bc7621715f7ee52e00af3b8b113503a5ce6963ca0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --libexecdir=/usr/lib/$pkgname
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make NO_INDEX=true DESTDIR="$pkgdir" install
-}

Copied: ibus-libpinyin/repos/community-x86_64/PKGBUILD (from rev 428612, 
ibus-libpinyin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 11:44:24 UTC (rev 428613)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor:  Yangtse Su
+# Contributor:  Jekyll Wu
+# Contributor: riverscn
+# Contributor: rainy
+# Contributor: Lee.MaRS
+
+pkgname=ibus-libpinyin
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="Intelligent Pinyin engine based on libpinyin for IBus"
+arch=('x86_64')
+license=('LGPL')
+url="https://github.com/libpinyin/ibus-libpinyin;
+depends=('ibus' 'libpinyin' 'python-xdg')
+makedepends=('git' 'intltool' 'gnome-common')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libpinyin/ibus-libpinyin/archive/$pkgver.tar.gz;)
+sha512sums=('6818e8f899e1a601eb9e5f99a212d907d3c0211dc2b6b073f0585c628215626783e545a2aa630a705cd8eab51ba9e216ec369f4782b1e730b52819f0409b2c8f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --libexecdir=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make NO_INDEX=true DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:44:27
  Author: felixonmars
Revision: 428614

upgpkg: haskell-pango 0.13.5.0-12

rebuild with gtk2hs-buildtools 0.13.5.0

Modified:
  haskell-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:44:24 UTC (rev 428613)
+++ PKGBUILD2019-01-30 11:44:27 UTC (rev 428614)
@@ -3,7 +3,7 @@
 _hkgname=pango
 pkgname=haskell-pango
 pkgver=0.13.5.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Binding to the pango library for Gtk2Hs."
 url="https://hackage.haskell.org/package/pango;
 license=('LGPL2.1')


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:43:51
  Author: felixonmars
Revision: 428612

upgpkg: ibus-libpinyin 1.11.0-1

Modified:
  ibus-libpinyin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:43:28 UTC (rev 428611)
+++ PKGBUILD2019-01-30 11:43:51 UTC (rev 428612)
@@ -6,7 +6,7 @@
 # Contributor: Lee.MaRS
 
 pkgname=ibus-libpinyin
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="Intelligent Pinyin engine based on libpinyin for IBus"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 depends=('ibus' 'libpinyin' 'python-xdg')
 makedepends=('git' 'intltool' 'gnome-common')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/libpinyin/ibus-libpinyin/archive/$pkgver.tar.gz;)
-sha512sums=('c9fdc28562714bddc889805e1d439a7dd425f721a8236b8f8ec4727ce24e5053693b3e5bd9b06ced22ceb66bc7621715f7ee52e00af3b8b113503a5ce6963ca0')
+sha512sums=('6818e8f899e1a601eb9e5f99a212d907d3c0211dc2b6b073f0585c628215626783e545a2aa630a705cd8eab51ba9e216ec369f4782b1e730b52819f0409b2c8f')
 
 build() {
   cd $pkgname-$pkgver


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:43:18
  Author: felixonmars
Revision: 428610

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-glib/repos/community-staging-x86_64/PKGBUILD (from rev 428609, 
haskell-glib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-30 11:43:18 UTC (rev 428610)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-glib
+pkgver=0.13.6.0
+pkgrel=12
+pkgdesc="Binding to the GLIB library for Gtk2Hs."
+url="https://hackage.haskell.org/package/glib;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'glib2' 'haskell-utf8-string')
+makedepends=('ghc' "haskell-gtk2hs-buildtools")
+provides=('gtk2hs-glib')
+replaces=('gtk2hs-glib')
+conflicts=('gtk2hs-glib')
+source=(https://hackage.haskell.org/packages/archive/glib/$pkgver/glib-$pkgver.tar.gz)
+sha512sums=('f1f777a35002767004281c5d26e15e82980edadefa9e697da6537b7f376b8c81ef89d1a3cb2f89ccbe466f0e4aaeadb266052c562c4d20127214b5bfdc05fb44')
+
+build() {
+cd "${srcdir}/glib-${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 "${srcdir}/glib-${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"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:42:40
  Author: felixonmars
Revision: 428608

upgpkg: haskell-glib 0.13.6.0-12

rebuild with gtk2hs-buildtools 0.13.5.0

Modified:
  haskell-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:42:16 UTC (rev 428607)
+++ PKGBUILD2019-01-30 11:42:40 UTC (rev 428608)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-glib
 pkgver=0.13.6.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Binding to the GLIB library for Gtk2Hs."
 url="https://hackage.haskell.org/package/glib;
 license=('LGPL2.1')


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:43:28
  Author: felixonmars
Revision: 428611

archrelease: copy trunk to community-testing-x86_64

Added:
  pcmanfm-qt/repos/community-testing-x86_64/
  pcmanfm-qt/repos/community-testing-x86_64/PKGBUILD
(from rev 428609, pcmanfm-qt/trunk/PKGBUILD)

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

Copied: pcmanfm-qt/repos/community-testing-x86_64/PKGBUILD (from rev 428609, 
pcmanfm-qt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:43:28 UTC (rev 428611)
@@ -0,0 +1,43 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=pcmanfm-qt
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="The LXQt file manager, Qt port of PCManFM"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("desktop-file-utils" "libfm-qt" "lxmenu-data")
+makedepends=("lxqt-build-tools")
+optdepends=(
+   "gvfs: for trash support, mounting with udisks and remote filesystems"
+   "gvfs-mtp: MTP support (Media Transfer Protocol)"
+   "xarchiver: archive management"
+)
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('5dc7fc3de03c10f77c7d8cec790449c55a33ef840c30c5b753a9cf6b97d0dfb6'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:42:51
  Author: felixonmars
Revision: 428609

upgpkg: pcmanfm-qt 0.14.0-1

Modified:
  pcmanfm-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:42:40 UTC (rev 428608)
+++ PKGBUILD2019-01-30 11:42:51 UTC (rev 428609)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=pcmanfm-qt
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="The LXQt file manager, Qt port of PCManFM"
 arch=("x86_64")
@@ -19,10 +19,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "bf961a6d91a50a3e7e69ae4b249d41b11f01d70142759a3019f30a33e7cc5722"
-   "SKIP"
-)
+sha256sums=('5dc7fc3de03c10f77c7d8cec790449c55a33ef840c30c5b753a9cf6b97d0dfb6'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:42:16
  Author: felixonmars
Revision: 428607

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-session/repos/community-testing-x86_64/
  lxqt-session/repos/community-testing-x86_64/PKGBUILD
(from rev 428606, lxqt-session/trunk/PKGBUILD)

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

Copied: lxqt-session/repos/community-testing-x86_64/PKGBUILD (from rev 428606, 
lxqt-session/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:42:16 UTC (rev 428607)
@@ -0,0 +1,41 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-session
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="The LXQt session manager"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt" "xdg-user-dirs")
+optdepends=(
+   "breeze-icons: Default icon theme"
+   "oxygen-icons: Alternative icon theme"
+   "sddm: The recommended display manager"
+)
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('712116df12f8649d443302f4c5b6c9792633c1848ba9d0558466ab4c2edc144a'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:41:38
  Author: felixonmars
Revision: 428605

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cairo/repos/community-staging-x86_64/PKGBUILD (from rev 428604, 
haskell-cairo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-30 11:41:38 UTC (rev 428605)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-cairo
+pkgver=0.13.5.0
+pkgrel=12
+pkgdesc="Binding to the cairo library for Gtk2Hs."
+url="https://hackage.haskell.org/package/cairo;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'cairo' 'haskell-utf8-string')
+makedepends=("haskell-gtk2hs-buildtools" "mesa" 'ghc')
+conflicts=('gtk2hs-cairo')
+provides=('gtk2hs-cairo')
+replaces=('gtk2hs-cairo')
+source=("https://hackage.haskell.org/packages/archive/cairo/${pkgver}/cairo-${pkgver}.tar.gz;)
+sha512sums=('03a2c2216c4cc0042e2121c108fc5511c87413bda0a9f9b0490ad11bcfb8e2af642dd6aba66827157e2e746e426955ca8007a310751d4fa91f84db90da7c5cc1')
+
+build() {
+cd "${srcdir}/cairo-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$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 "${srcdir}/cairo-${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"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:41:10
  Author: felixonmars
Revision: 428603

upgpkg: haskell-cairo 0.13.5.0-12

rebuild with gtk2hs-buildtools 0.13.5.0

Modified:
  haskell-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:40:54 UTC (rev 428602)
+++ PKGBUILD2019-01-30 11:41:10 UTC (rev 428603)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-cairo
 pkgver=0.13.5.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Binding to the cairo library for Gtk2Hs."
 url="https://hackage.haskell.org/package/cairo;
 license=('LGPL2.1')


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:41:41
  Author: felixonmars
Revision: 428606

upgpkg: lxqt-session 0.14.0-1

Modified:
  lxqt-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:41:38 UTC (rev 428605)
+++ PKGBUILD2019-01-30 11:41:41 UTC (rev 428606)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-session
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="The LXQt session manager"
 arch=("x86_64")
@@ -19,10 +19,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "bf44b691d34d75895d0055894b714ed7035ad2605874a9d6f286bc7aefbd2baa"
-   "SKIP"
-)
+sha256sums=('712116df12f8649d443302f4c5b6c9792633c1848ba9d0558466ab4c2edc144a'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:41:22
  Author: felixonmars
Revision: 428604

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-sudo/repos/community-testing-x86_64/
  lxqt-sudo/repos/community-testing-x86_64/PKGBUILD
(from rev 428603, lxqt-sudo/trunk/PKGBUILD)

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

Copied: lxqt-sudo/repos/community-testing-x86_64/PKGBUILD (from rev 428603, 
lxqt-sudo/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:41:22 UTC (rev 428604)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-sudo
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="LXQt privilege program (lxsu)."
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('a322e169a5b6c5decbabe837fad428ac9013d9173723f6e0525a62b11bd1a123'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:40:54
  Author: felixonmars
Revision: 428602

upgpkg: lxqt-sudo 0.14.0-1

Modified:
  lxqt-sudo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:40:38 UTC (rev 428601)
+++ PKGBUILD2019-01-30 11:40:54 UTC (rev 428602)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-sudo
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="LXQt privilege program (lxsu)."
 arch=("x86_64")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "8e05adf4926eead9fa3015be54a76f67ebf3f7c40e1dea0bcafbcf4c38e548c8"
-   "SKIP"
-)
+sha256sums=('a322e169a5b6c5decbabe837fad428ac9013d9173723f6e0525a62b11bd1a123'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:40:38
  Author: felixonmars
Revision: 428601

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-runner/repos/community-testing-x86_64/
  lxqt-runner/repos/community-testing-x86_64/PKGBUILD
(from rev 428600, lxqt-runner/trunk/PKGBUILD)

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

Copied: lxqt-runner/repos/community-testing-x86_64/PKGBUILD (from rev 428600, 
lxqt-runner/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:40:38 UTC (rev 428601)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-runner
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="The LXQt application launcher"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("lxqt-globalkeys" "muparser")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('321ff83a2d27a545fd04d0ead378ed292fb3fff4f200f96a01293a663cfaacac'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:40:07
  Author: felixonmars
Revision: 428600

upgpkg: lxqt-runner 0.14.0-1

Modified:
  lxqt-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:39:59 UTC (rev 428599)
+++ PKGBUILD2019-01-30 11:40:07 UTC (rev 428600)
@@ -1,8 +1,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-runner
-pkgver=0.13.0
-pkgrel=2
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="The LXQt application launcher"
 arch=("x86_64")
 groups=("lxqt")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "912a8a36158c1b37ebb9f29cfe0f0ea317fb1359373c0dd47f872ecc9a334f37"
-   "SKIP"
-)
+sha256sums=('321ff83a2d27a545fd04d0ead378ed292fb3fff4f200f96a01293a663cfaacac'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



[arch-commits] Commit in haskell-gtk2hs-buildtools/trunk (PKGBUILD base-4.12.patch)

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:39:34
  Author: felixonmars
Revision: 428597

upgpkg: haskell-gtk2hs-buildtools 0.13.5.0-1

rebuild with gtk2hs-buildtools 0.13.5.0

Modified:
  haskell-gtk2hs-buildtools/trunk/PKGBUILD
Deleted:
  haskell-gtk2hs-buildtools/trunk/base-4.12.patch

-+
 PKGBUILD|   15 ---
 base-4.12.patch |   44 
 2 files changed, 4 insertions(+), 55 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:39:23 UTC (rev 428596)
+++ PKGBUILD2019-01-30 11:39:34 UTC (rev 428597)
@@ -1,8 +1,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=haskell-gtk2hs-buildtools
-pkgver=0.13.4.0
-pkgrel=11
+pkgver=0.13.5.0
+pkgrel=1
 pkgdesc="Tools to build the Gtk2Hs suite of User Interface libraries."
 url="https://hackage.haskell.org/package/gtk2hs-buildtools;
 license=('GPL2')
@@ -12,16 +12,9 @@
 provides=('gtk2hs-buildtools')
 conflicts=('gtk2hs-buildtools')
 replaces=('gtk2hs-buildtools')
-source=("https://hackage.haskell.org/packages/archive/gtk2hs-buildtools/${pkgver}/gtk2hs-buildtools-${pkgver}.tar.gz;
-base-4.12.patch)
-sha512sums=('ac7bfd5a1abffefc5eddd97c2e5030a86f413fac1449dca93302cf54abf7def83ab49498cb471aa284f28612d7399116fc5f3d02a0d5108fb9b3eded9248f750'
-
'67f515a9985e3188ba3ae4923027a4fd4a5d88acd5881431d9a3073e45924fa3eff46ab1ece3b7591cb5743391f4e090d4ce91b91845ba7b450bf65d097118f7')
+source=("https://hackage.haskell.org/packages/archive/gtk2hs-buildtools/${pkgver}/gtk2hs-buildtools-${pkgver}.tar.gz;)
+sha512sums=('8affee1469d9eeb72c07ac2b99ac9100450ad9f089c2d44a35dd9ef16b351d26a2fa62d305aba13c88f389684600ed1454a2118a0e736d12e7ff9c70d5be68ee')
 
-prepare() {
-cd gtk2hs-buildtools-$pkgver
-patch -p2 -i ../base-4.12.patch
-}
-
 build() {
 cd "${srcdir}/gtk2hs-buildtools-${pkgver}"
 

Deleted: base-4.12.patch
===
--- base-4.12.patch 2019-01-30 11:39:23 UTC (rev 428596)
+++ base-4.12.patch 2019-01-30 11:39:34 UTC (rev 428597)
@@ -1,44 +0,0 @@
-diff --git a/tools/c2hs/base/state/StateBase.hs 
b/tools/c2hs/base/state/StateBase.hs
-index aebd885b..c07d29fc 100644
 a/tools/c2hs/base/state/StateBase.hs
-+++ b/tools/c2hs/base/state/StateBase.hs
-@@ -58,6 +58,7 @@ where
- 
- import Control.Applicative (Applicative(..))
- import Control.Monad (liftM, ap)
-+import Control.Monad.Fail (MonadFail (..))
- 
- import Position   (Position)
- import UNames (NameSupply)
-@@ -110,6 +111,8 @@ instance Monad (PreCST e s) where
-   (>>=)  = (+>=)
-   (>>)   = (+>)
- 
-+instance MonadFail (PreCST e s) where
-+  fail = error
- 
- -- unwrapper coercion function (EXPORTED)
- --
-diff --git a/tools/c2hs/c/CParserMonad.hs b/tools/c2hs/c/CParserMonad.hs
-index 12c4ffa6..ef720b93 100644
 a/tools/c2hs/c/CParserMonad.hs
-+++ b/tools/c2hs/c/CParserMonad.hs
-@@ -63,6 +63,7 @@ import Idents(Ident, lexemeToIdent, identToLexeme)
- 
- import Control.Applicative (Applicative(..))
- import Control.Monad (liftM, ap)
-+import Control.Monad.Fail (MonadFail (..))
- import Data.Set  (Set)
- import qualified Data.Set as Set (fromList, insert, member, delete)
- 
-@@ -83,6 +84,9 @@ data PState = PState {
- 
- newtype P a = P { unP :: PState -> ParseResult a }
- 
-+instance MonadFail P where
-+  fail m = getPos >>= \pos -> failP pos [m]
-+
- instance Functor P where
-   fmap = liftM
- 
-


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:39:50
  Author: felixonmars
Revision: 428598

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-qtplugin/repos/community-testing-x86_64/
  lxqt-qtplugin/repos/community-testing-x86_64/PKGBUILD
(from rev 428597, lxqt-qtplugin/trunk/PKGBUILD)

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

Copied: lxqt-qtplugin/repos/community-testing-x86_64/PKGBUILD (from rev 428597, 
lxqt-qtplugin/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:39:50 UTC (rev 428598)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-qtplugin
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="LXQt platform integration for Qt"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("libdbusmenu-qt5" "libqtxdg" "qt5-x11extras" "libfm-qt")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('ba1980d2c25f1db50cc3d4bccdda0dff79963fca0683f398675547cfbbebc7a3'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:37:20
  Author: felixonmars
Revision: 428592

upgpkg: lxqt-powermanagement 0.14.0-1

Modified:
  lxqt-powermanagement/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:36:21 UTC (rev 428591)
+++ PKGBUILD2019-01-30 11:37:20 UTC (rev 428592)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-powermanagement
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="LXQt power management daemon"
 arch=("x86_64")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "2398e465f627d7c2565bb9245899626c2cacea6a705ed1c63cd772e9af6fdb96"
-   "SKIP"
-)
+sha256sums=('40626497b73d613bcbd94c4feccdbe3cc87d985e55a2eeec8205c9ab2c72993d'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:38:07
  Author: felixonmars
Revision: 428594

upgpkg: lxqt-policykit 0.14.0-1

Modified:
  lxqt-policykit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:37:46 UTC (rev 428593)
+++ PKGBUILD2019-01-30 11:38:07 UTC (rev 428594)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-policykit
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="The LXQt policykit authentication agent"
 arch=("x86_64")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "f729a898a0ace59cf7702146dbe2891d8cb93494e0e6683099b60863b47727b5"
-   "SKIP"
-)
+sha256sums=('216fa465fe3484b0cddf8d52c1bb5b153a5515ceae63df79b3de6ccb03d1d93b'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:39:59
  Author: felixonmars
Revision: 428599

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-gtk2hs-buildtools/repos/community-staging-x86_64/
  haskell-gtk2hs-buildtools/repos/community-staging-x86_64/PKGBUILD
(from rev 428598, haskell-gtk2hs-buildtools/trunk/PKGBUILD)

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

Copied: haskell-gtk2hs-buildtools/repos/community-staging-x86_64/PKGBUILD (from 
rev 428598, haskell-gtk2hs-buildtools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-30 11:39:59 UTC (rev 428599)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-gtk2hs-buildtools
+pkgver=0.13.5.0
+pkgrel=1
+pkgdesc="Tools to build the Gtk2Hs suite of User Interface libraries."
+url="https://hackage.haskell.org/package/gtk2hs-buildtools;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random' 'haskell-hashtables')
+makedepends=('alex' 'happy' 'ghc')
+provides=('gtk2hs-buildtools')
+conflicts=('gtk2hs-buildtools')
+replaces=('gtk2hs-buildtools')
+source=("https://hackage.haskell.org/packages/archive/gtk2hs-buildtools/${pkgver}/gtk2hs-buildtools-${pkgver}.tar.gz;)
+sha512sums=('8affee1469d9eeb72c07ac2b99ac9100450ad9f089c2d44a35dd9ef16b351d26a2fa62d305aba13c88f389684600ed1454a2118a0e736d12e7ff9c70d5be68ee')
+
+build() {
+cd "${srcdir}/gtk2hs-buildtools-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$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 "${srcdir}/gtk2hs-buildtools-${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"
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:38:32
  Author: felixonmars
Revision: 428595

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-policykit/repos/community-testing-x86_64/
  lxqt-policykit/repos/community-testing-x86_64/PKGBUILD
(from rev 428594, lxqt-policykit/trunk/PKGBUILD)

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

Copied: lxqt-policykit/repos/community-testing-x86_64/PKGBUILD (from rev 
428594, lxqt-policykit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:38:32 UTC (rev 428595)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-policykit
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="The LXQt policykit authentication agent"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt" "polkit-qt5")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('216fa465fe3484b0cddf8d52c1bb5b153a5515ceae63df79b3de6ccb03d1d93b'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:39:23
  Author: felixonmars
Revision: 428596

upgpkg: lxqt-qtplugin 0.14.0-1

Modified:
  lxqt-qtplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 11:38:32 UTC (rev 428595)
+++ PKGBUILD2019-01-30 11:39:23 UTC (rev 428596)
@@ -1,8 +1,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-qtplugin
-pkgver=0.13.0
-pkgrel=3
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="LXQt platform integration for Qt"
 arch=("x86_64")
 groups=("lxqt")
@@ -14,10 +14,8 @@

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
-sha256sums=(
-   "a67c8668c09aefe54ef78c63806dc647f1c7b2067d780616f6fa4a9b125bdc5a"
-   "SKIP"
-)
+sha256sums=('ba1980d2c25f1db50cc3d4bccdda0dff79963fca0683f398675547cfbbebc7a3'
+'SKIP')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 



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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:37:46
  Author: felixonmars
Revision: 428593

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-powermanagement/repos/community-testing-x86_64/
  lxqt-powermanagement/repos/community-testing-x86_64/PKGBUILD
(from rev 428592, lxqt-powermanagement/trunk/PKGBUILD)

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

Copied: lxqt-powermanagement/repos/community-testing-x86_64/PKGBUILD (from rev 
428592, lxqt-powermanagement/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:37:46 UTC (rev 428593)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-powermanagement
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="LXQt power management daemon"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt" "qt5-svg" "hicolor-icon-theme" "kidletime" "solid" 
"xdg-utils")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('40626497b73d613bcbd94c4feccdbe3cc87d985e55a2eeec8205c9ab2c72993d'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-01-30 Thread Felix Yan via arch-commits
Date: Wednesday, January 30, 2019 @ 11:36:21
  Author: felixonmars
Revision: 428591

archrelease: copy trunk to community-testing-x86_64

Added:
  lxqt-panel/repos/community-testing-x86_64/
  lxqt-panel/repos/community-testing-x86_64/PKGBUILD
(from rev 428590, lxqt-panel/trunk/PKGBUILD)
  lxqt-panel/repos/community-testing-x86_64/fix-build.patch
(from rev 428590, lxqt-panel/trunk/fix-build.patch)

-+
 PKGBUILD|   49 +
 fix-build.patch |   32 
 2 files changed, 81 insertions(+)

Copied: lxqt-panel/repos/community-testing-x86_64/PKGBUILD (from rev 428590, 
lxqt-panel/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-01-30 11:36:21 UTC (rev 428591)
@@ -0,0 +1,49 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-panel
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="The LXQt desktop panel"
+arch=("x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=(
+   "libdbusmenu-qt5" "libxcomposite" "lxmenu-data"
+   "lxqt-globalkeys" "solid" "libxcb"
+)
+optdepends=(
+   "libpulse: Volume control plugin"
+   "libstatgrab: CPU monitor and Network monitor plugins"
+   "libsysstat: System Statistics plugin"
+   "lm_sensors: Sensors plugin"
+)
+makedepends=(
+   "lxqt-build-tools" "liblxqt" "libpulse" "libstatgrab" "libsysstat"
+   "lm_sensors" "libxdamage"
+)
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('e090b970827957c21f1d9ae822fb32e86e6bf9a0ad848b68f6ba338927a31859'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+   }

Copied: lxqt-panel/repos/community-testing-x86_64/fix-build.patch (from rev 
428590, lxqt-panel/trunk/fix-build.patch)
===
--- community-testing-x86_64/fix-build.patch(rev 0)
+++ community-testing-x86_64/fix-build.patch2019-01-30 11:36:21 UTC (rev 
428591)
@@ -0,0 +1,32 @@
+From ec62109e0fa678875a9b10fc6f1975267432712d Mon Sep 17 00:00:00 2001
+From: Palo Kisa 
+Date: Mon, 30 Jan 2017 12:21:10 +0100
+Subject: [PATCH] plugin-kbindicator: Undef the "explicit" workaround
+
+..after include and add explanation of the workaround.
+
+closes lxde/lxqt#1251
+---
+ plugin-kbindicator/src/x11/kbdlayout.cpp | 7 +++
+ 1 file changed, 7 insertions(+)
+
+diff --git a/plugin-kbindicator/src/x11/kbdlayout.cpp 
b/plugin-kbindicator/src/x11/kbdlayout.cpp
+index c4aa4e2..883df07 100644
+--- a/plugin-kbindicator/src/x11/kbdlayout.cpp
 b/plugin-kbindicator/src/x11/kbdlayout.cpp
+@@ -33,8 +33,15 @@
+ 
+ #include 
+ #include 
++
++// Note: We need to override "explicit" as this is a C++ keyword. But it is
++// used as variable name in xkb.h. This is causing a failure in C++ compile
++// time.
++// Similar bug here: https://bugs.freedesktop.org/show_bug.cgi?id=74080
+ #define explicit _explicit
+ #include 
++#undef explicit
++
+ #include "../kbdinfo.h"
+ #include "../controls.h"
+ 


  1   2   >