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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 04:33:18
  Author: kkeen
Revision: 500387

archrelease: copy trunk to community-staging-x86_64

Added:
  gqrx/repos/community-staging-x86_64/
  gqrx/repos/community-staging-x86_64/PKGBUILD
(from rev 500386, gqrx/trunk/PKGBUILD)

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

Copied: gqrx/repos/community-staging-x86_64/PKGBUILD (from rev 500386, 
gqrx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-21 04:33:18 UTC (rev 500387)
@@ -0,0 +1,78 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gqrx
+pkgver=2.11.5
+pkgrel=6
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('x86_64')
+url="http://gqrx.dk/";
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+#source=("$pkgname-$pkgver.tgz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz";)
+source=("https://github.com/csete/gqrx/releases/download/v$pkgver/gqrx-sdr-$pkgver-src.tar.xz";)
+md5sums=('fed4994d5c04daf70cb19e2393da7a04')
+
+prepare() {
+  cd "$srcdir/gqrx-sdr-$pkgver"
+  echo "StartupNotify=false" >> gqrx.desktop
+
+  # gnuradio 3.8 changes
+  sed -i 's|sig_source_c.h|sig_source.h|'  
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' 
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_cc.h|multiply.h|' 
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' 
src/applications/gqrx/receiver.cpp
+  sed -i 's|fir_filter_ccf.h|fir_filter_blk.h|'
src/dsp/filter/fir_decim.{h,cpp}
+  sed -i 's|sub_cc.h|sub.h|'   src/dsp/correct_iq_cc.h
+  sed -i 's|/fir_filter_ccc.h|/fir_filter_blk.h|'  src/dsp/rx_filter.h
+  sed -i 's|freq_xlating_fir_filter_ccc.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_filter.h
+  sed -i 's|fir_filter_fcc.h|fir_filter_blk.h|'src/dsp/stereo_demod.h
+  sed -i 's|fir_filter_fff.h|fir_filter.h|'src/dsp/stereo_demod.h
+  sed -i 's|multiply_cc.h|multiply.h|' src/dsp/stereo_demod.h
+  sed -i 's|multiply_ff.h|multiply.h|' src/dsp/stereo_demod.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' src/dsp/stereo_demod.h
+  sed -i 's|/add_ff.h|/add_blk.h|' src/dsp/stereo_demod.h
+  sed -i 's|fir_filter_fff.h|fir_filter_blk.h|'src/dsp/lpf.h
+  sed -i 's|/fir_filter_ccc.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|/fir_filter_ccf.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|/fir_filter_fff.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|freq_xlating_fir_filter_fcf.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_rds.h
+  sed -i 's|freq_xlating_fir_filter_ccf.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_rds.h
+
+  cd "$srcdir"
+  cp -r gqrx-sdr-$pkgver gqrx-$pkgver-alsa
+  cd gqrx-$pkgver-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+
+}
+
+build() {
+  cd "$srcdir/$pkgname-sdr-$pkgver"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  sed -i 's|-lpthread|& -llog4cpp|' Makefile  # also 3.8 stuff
+  make
+  cd "$srcdir/$pkgname-$pkgver-alsa"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  sed -i 's|-lpthread|& -llog4cpp|' Makefile
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-sdr-$pkgver"
+  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "resources/icons/gqrx.svg" 
"$pkgdir/usr/share/pixmaps/gqrx.svg"
+
+  cd "$srcdir/$pkgname-sdr-$pkgver/build"
+  make install INSTALL_ROOT="$pkgdir"
+
+  cd "$srcdir/$pkgname-$pkgver-alsa/build"
+  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 04:33:04
  Author: kkeen
Revision: 500386

upgpkg: gqrx 2.11.5-6

Modified:
  gqrx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:24:43 UTC (rev 500385)
+++ PKGBUILD2019-08-21 04:33:04 UTC (rev 500386)
@@ -3,7 +3,7 @@
 
 pkgname=gqrx
 pkgver=2.11.5
-pkgrel=5
+pkgrel=6
 pkgdesc="Interactive SDR receiver waterfall for many devices."
 arch=('x86_64')
 url="http://gqrx.dk/";
@@ -15,11 +15,36 @@
 md5sums=('fed4994d5c04daf70cb19e2393da7a04')
 
 prepare() {
+  cd "$srcdir/gqrx-sdr-$pkgver"
+  echo "StartupNotify=false" >> gqrx.desktop
+
+  # gnuradio 3.8 changes
+  sed -i 's|sig_source_c.h|sig_source.h|'  
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' 
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_cc.h|multiply.h|' 
src/applications/gqrx/receiver.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' 
src/applications/gqrx/receiver.cpp
+  sed -i 's|fir_filter_ccf.h|fir_filter_blk.h|'
src/dsp/filter/fir_decim.{h,cpp}
+  sed -i 's|sub_cc.h|sub.h|'   src/dsp/correct_iq_cc.h
+  sed -i 's|/fir_filter_ccc.h|/fir_filter_blk.h|'  src/dsp/rx_filter.h
+  sed -i 's|freq_xlating_fir_filter_ccc.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_filter.h
+  sed -i 's|fir_filter_fcc.h|fir_filter_blk.h|'src/dsp/stereo_demod.h
+  sed -i 's|fir_filter_fff.h|fir_filter.h|'src/dsp/stereo_demod.h
+  sed -i 's|multiply_cc.h|multiply.h|' src/dsp/stereo_demod.h
+  sed -i 's|multiply_ff.h|multiply.h|' src/dsp/stereo_demod.h
+  sed -i 's|multiply_const_ff.h|multiply_const.h|' src/dsp/stereo_demod.h
+  sed -i 's|/add_ff.h|/add_blk.h|' src/dsp/stereo_demod.h
+  sed -i 's|fir_filter_fff.h|fir_filter_blk.h|'src/dsp/lpf.h
+  sed -i 's|/fir_filter_ccc.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|/fir_filter_ccf.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|/fir_filter_fff.h|/fir_filter_blk.h|'  src/dsp/rx_rds.h
+  sed -i 's|freq_xlating_fir_filter_fcf.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_rds.h
+  sed -i 's|freq_xlating_fir_filter_ccf.h|freq_xlating_fir_filter.h|' 
src/dsp/rx_rds.h
+
   cd "$srcdir"
-  echo "StartupNotify=false" >> gqrx-sdr-$pkgver/gqrx.desktop
   cp -r gqrx-sdr-$pkgver gqrx-$pkgver-alsa
   cd gqrx-$pkgver-alsa
   sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+
 }
 
 build() {
@@ -28,6 +53,7 @@
   mkdir build
   cd build
   qmake PREFIX=/usr/ ..
+  sed -i 's|-lpthread|& -llog4cpp|' Makefile  # also 3.8 stuff
   make
   cd "$srcdir/$pkgname-$pkgver-alsa"
   rm -rf build
@@ -34,6 +60,7 @@
   mkdir build
   cd build
   qmake PREFIX=/usr/ ..
+  sed -i 's|-lpthread|& -llog4cpp|' Makefile
   make
 }
 


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:24:43
  Author: felixonmars
Revision: 500385

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:24:29 UTC (rev 500384)
+++ PKGBUILD2019-08-21 03:24:43 UTC (rev 500385)
@@ -1,45 +0,0 @@
-# Contributor: Eli Schwartz 
-
-_pkgname=chai
-pkgbase=python-chai
-pkgname=('python-chai' 'python2-chai')
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="Easy to use mocking, stubbing and spying framework."
-arch=('any')
-url="https://github.com/agoragames/${_pkgname}";
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-nosetests
-nosetests2
-}
-
-package_python-chai() {
-depends=('python')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-chai() {
-depends=('python2')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-chai/repos/community-any/PKGBUILD (from rev 500384, 
python-chai/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:24:43 UTC (rev 500385)
@@ -0,0 +1,30 @@
+# Contributor: Eli Schwartz 
+
+pkgname=python-chai
+pkgver=1.1.2
+pkgrel=2
+pkgdesc="Easy to use mocking, stubbing and spying framework."
+arch=('any')
+url="https://github.com/agoragames/chai";
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=("https://files.pythonhosted.org/packages/source/c/chai/chai-$pkgver.tar.gz";)
+sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
+
+build() {
+  cd chai-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd chai-$pkgver
+  nosetests
+}
+
+package() {
+  cd chai-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:24:23
  Author: felixonmars
Revision: 500383

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:24:10 UTC (rev 500382)
+++ PKGBUILD2019-08-21 03:24:23 UTC (rev 500383)
@@ -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=12.8.1
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('x86_64')
-url='https://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=('17d8d33a5c4154d6d0c1ce09b933a6ac0986242335fb6c45a4c1ed4190aede9bc08dbcb537d8547c5f53c15958e323bb26e6eefd51b139835e6825b45d73efa4')
-
-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-testing-x86_64/PKGBUILD (from rev 500382, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:24:23 UTC (rev 500383)
@@ -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=12.9.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='https://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=('75504a775848e03a795e162c38315289eada16bfc8fbaa4cddccbc9e3c83b2dfd5227bce29348279b00982ee566c4e0cb1a828add8a6cea3c571e93aaa162f1f')
+
+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

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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:24:29
  Author: felixonmars
Revision: 500384

upgpkg: python-chai 1.1.2-2

remove python2 sibling

Modified:
  python-chai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:24:23 UTC (rev 500383)
+++ PKGBUILD2019-08-21 03:24:29 UTC (rev 500384)
@@ -1,45 +1,30 @@
 # Contributor: Eli Schwartz 
 
-_pkgname=chai
-pkgbase=python-chai
-pkgname=('python-chai' 'python2-chai')
+pkgname=python-chai
 pkgver=1.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Easy to use mocking, stubbing and spying framework."
 arch=('any')
-url="https://github.com/agoragames/${_pkgname}";
+url="https://github.com/agoragames/chai";
 license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=("https://files.pythonhosted.org/packages/source/c/chai/chai-$pkgver.tar.gz";)
 sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
 
 build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
+  cd chai-$pkgver
+  python setup.py build
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-nosetests
-nosetests2
+  cd chai-$pkgver
+  nosetests
 }
 
-package_python-chai() {
-depends=('python')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+package() {
+  cd chai-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }
-
-package_python2-chai() {
-depends=('python2')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:24:10
  Author: felixonmars
Revision: 500382

upgpkg: nodejs 12.9.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:20:23 UTC (rev 500381)
+++ PKGBUILD2019-08-21 03:24:10 UTC (rev 500382)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=12.8.1
+pkgver=12.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=('17d8d33a5c4154d6d0c1ce09b933a6ac0986242335fb6c45a4c1ed4190aede9bc08dbcb537d8547c5f53c15958e323bb26e6eefd51b139835e6825b45d73efa4')
+sha512sums=('75504a775848e03a795e162c38315289eada16bfc8fbaa4cddccbc9e3c83b2dfd5227bce29348279b00982ee566c4e0cb1a828add8a6cea3c571e93aaa162f1f')
 
 prepare() {
   cd node-$pkgver


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:20:23
  Author: felixonmars
Revision: 500381

archrelease: copy trunk to community-any

Added:
  python-betamax-matchers/repos/community-any/PKGBUILD
(from rev 500380, python-betamax-matchers/trunk/PKGBUILD)
Deleted:
  python-betamax-matchers/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:20:12 UTC (rev 500380)
+++ PKGBUILD2019-08-21 03:20:23 UTC (rev 500381)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-betamax-matchers
-pkgname=('python-betamax-matchers' 'python2-betamax-matchers')
-pkgver=0.4.0
-pkgrel=2
-pkgdesc="Experimental set of Matchers for Betamax that may possibly end up in 
the main package"
-arch=('any')
-license=('GPL')
-url='https://github.com/sigmavirus24/betamax_matchers'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-betamax' 
'python2-betamax'
- 'python-requests-toolbelt' 'python2-requests-toolbelt' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://github.com/sigmavirus24/betamax_matchers.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a betamax_matchers{,-py2}
-}
-
-check() {
-  cd "$srcdir"/betamax_matchers
-  python setup.py pytest
-
-  cd "$srcdir"/betamax_matchers-py2
-  python2 setup.py pytest
-}
-
-package_python-betamax-matchers() {
-  depends=('python-requests-toolbelt' 'python-betamax')
-
-  cd betamax_matchers
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-betamax-matchers() {
-  depends=('python2-requests-toolbelt' 'python2-betamax')
-
-  cd betamax_matchers-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-betamax-matchers/repos/community-any/PKGBUILD (from rev 500380, 
python-betamax-matchers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:20:23 UTC (rev 500381)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-betamax-matchers
+pkgver=0.4.0
+pkgrel=3
+pkgdesc="Experimental set of Matchers for Betamax that may possibly end up in 
the main package"
+arch=('any')
+license=('GPL')
+url='https://github.com/sigmavirus24/betamax_matchers'
+depends=('python-requests-toolbelt' 'python-betamax')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sigmavirus24/betamax_matchers/archive/$pkgver.tar.gz";)
+sha512sums=('202255d9895b118d03efa20aa64f5b099045750dcb9a1ad3eda164d3da372207f1bee8a40f63cdf179da90cfc4380e5a004e5f9c94f006a6f3dbc64e29766c86')
+
+check() {
+  cd betamax_matchers-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd betamax_matchers-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:20:12
  Author: felixonmars
Revision: 500380

upgpkg: python-betamax-matchers 0.4.0-3

remove python2 sibling

Modified:
  python-betamax-matchers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:17:08 UTC (rev 500379)
+++ PKGBUILD2019-08-21 03:20:12 UTC (rev 500380)
@@ -1,43 +1,25 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-betamax-matchers
-pkgname=('python-betamax-matchers' 'python2-betamax-matchers')
+pkgname=python-betamax-matchers
 pkgver=0.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Experimental set of Matchers for Betamax that may possibly end up in 
the main package"
 arch=('any')
 license=('GPL')
 url='https://github.com/sigmavirus24/betamax_matchers'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-betamax' 
'python2-betamax'
- 'python-requests-toolbelt' 'python2-requests-toolbelt' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://github.com/sigmavirus24/betamax_matchers.git#tag=$pkgver";)
-md5sums=('SKIP')
+depends=('python-requests-toolbelt' 'python-betamax')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sigmavirus24/betamax_matchers/archive/$pkgver.tar.gz";)
+sha512sums=('202255d9895b118d03efa20aa64f5b099045750dcb9a1ad3eda164d3da372207f1bee8a40f63cdf179da90cfc4380e5a004e5f9c94f006a6f3dbc64e29766c86')
 
-prepare() {
-  cp -a betamax_matchers{,-py2}
-}
-
 check() {
-  cd "$srcdir"/betamax_matchers
+  cd betamax_matchers-$pkgver
   python setup.py pytest
-
-  cd "$srcdir"/betamax_matchers-py2
-  python2 setup.py pytest
 }
 
-package_python-betamax-matchers() {
-  depends=('python-requests-toolbelt' 'python-betamax')
-
-  cd betamax_matchers
+package() {
+  cd betamax_matchers-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-betamax-matchers() {
-  depends=('python2-requests-toolbelt' 'python2-betamax')
-
-  cd betamax_matchers-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:16:57
  Author: felixonmars
Revision: 500378

upgpkg: python-betamax-serializers 0.2.1-2

remove python2 sibling

Modified:
  python-betamax-serializers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:09:07 UTC (rev 500377)
+++ PKGBUILD2019-08-21 03:16:57 UTC (rev 500378)
@@ -1,32 +1,18 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-betamax-serializers
-pkgname=('python-betamax-serializers' 'python2-betamax-serializers')
+pkgname=python-betamax-serializers
 pkgver=0.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A set of third-party serializers for Betamax"
 arch=('any')
 license=('Apache')
 url='https://gitlab.com/betamax/serializers'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-betamax' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://gitlab.com/betamax/serializers.git#tag=$pkgver";)
-md5sums=('SKIP')
+depends=('python-betamax')
+makedepends=('python-setuptools')
+source=("https://gitlab.com/betamax/serializers/-/archive/$pkgver/serializers-$pkgver.tar.bz2";)
+md5sums=('c414d60fbea0c6890ea7f323f4ffc875')
 
-prepare() {
-  cp -a serializers{,-py2}
-}
-
-package_python-betamax-serializers() {
-  depends=('python-betamax')
-
-  cd serializers
+package() {
+  cd serializers-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-betamax-serializers() {
-  depends=('python2-betamax')
-
-  cd serializers-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:17:08
  Author: felixonmars
Revision: 500379

archrelease: copy trunk to community-any

Added:
  python-betamax-serializers/repos/community-any/PKGBUILD
(from rev 500378, python-betamax-serializers/trunk/PKGBUILD)
Deleted:
  python-betamax-serializers/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:16:57 UTC (rev 500378)
+++ PKGBUILD2019-08-21 03:17:08 UTC (rev 500379)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-betamax-serializers
-pkgname=('python-betamax-serializers' 'python2-betamax-serializers')
-pkgver=0.2.1
-pkgrel=1
-pkgdesc="A set of third-party serializers for Betamax"
-arch=('any')
-license=('Apache')
-url='https://gitlab.com/betamax/serializers'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-betamax' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://gitlab.com/betamax/serializers.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a serializers{,-py2}
-}
-
-package_python-betamax-serializers() {
-  depends=('python-betamax')
-
-  cd serializers
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-betamax-serializers() {
-  depends=('python2-betamax')
-
-  cd serializers-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-betamax-serializers/repos/community-any/PKGBUILD (from rev 
500378, python-betamax-serializers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:17:08 UTC (rev 500379)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-betamax-serializers
+pkgver=0.2.1
+pkgrel=2
+pkgdesc="A set of third-party serializers for Betamax"
+arch=('any')
+license=('Apache')
+url='https://gitlab.com/betamax/serializers'
+depends=('python-betamax')
+makedepends=('python-setuptools')
+source=("https://gitlab.com/betamax/serializers/-/archive/$pkgver/serializers-$pkgver.tar.bz2";)
+md5sums=('c414d60fbea0c6890ea7f323f4ffc875')
+
+package() {
+  cd serializers-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:09:07
  Author: felixonmars
Revision: 500377

archrelease: copy trunk to community-testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:08:55 UTC (rev 500376)
+++ PKGBUILD2019-08-21 03:09:07 UTC (rev 500377)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Felix Kaiser 
-
-pkgname=python-pytest
-pkgver=5.1.0
-pkgrel=1
-pkgdesc="Simple powerful testing with Python"
-arch=('any')
-license=('MIT')
-url="http://pytest.org/";
-depends=('python-py' 'python-setuptools' 'python-pluggy' 'python-attrs' 
'python-more-itertools'
- 'python-atomicwrites' 'python-wcwidth' 'python-importlib-metadata')
-makedepends=('python-setuptools-scm')
-checkdepends=('lsof' 'python-nose' 'python-mock' 'python-requests' 
'python-hypothesis'
-  'python-argcomplete' 'python-xmlschema'
-  # Unlisted, but actually used. Check again after a while:
-  'python-numpy' 'python-twisted' 'python-pytest-xdist' 
'python-decorator'
-  'python-jinja' 'python-pexpect')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz";)
-sha512sums=('d6d112fe390d890ca58ba685024890f624456d5069f32637fc054db1f817609b48c01a42d3a97b362d6906b4705a37ebd73a270a4a86256f2ffa7b2a1b153aa6')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd pytest-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Skip test_collect_pyargs_with_testpaths because it mangles PYTHONPATH
-
-  cd pytest-$pkgver
-  python setup.py egg_info
-  PYTHONPATH="$PWD"/build/lib python src/pytest.py -k 'not 
test_collect_pyargs_with_testpaths'
-}
-
-package() {
-  cd pytest-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pytest/repos/community-testing-any/PKGBUILD (from rev 500376, 
python-pytest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:09:07 UTC (rev 500377)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgname=python-pytest
+pkgver=5.1.1
+pkgrel=1
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/";
+depends=('python-py' 'python-setuptools' 'python-pluggy' 'python-attrs' 
'python-more-itertools'
+ 'python-atomicwrites' 'python-wcwidth' 'python-importlib-metadata')
+makedepends=('python-setuptools-scm')
+checkdepends=('lsof' 'python-nose' 'python-mock' 'python-requests' 
'python-hypothesis'
+  'python-argcomplete' 'python-xmlschema'
+  # Unlisted, but actually used. Check again after a while:
+  'python-numpy' 'python-twisted' 'python-pytest-xdist' 
'python-decorator'
+  'python-jinja' 'python-pexpect')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz";)
+sha512sums=('97fa8b8eae177128e8ab5063d06375fd23c16079767040dce6cf16efb8910e2fd18a48af90dd1307673bf35265204c8a2d69cfb36959ccab84ad59745de882f9')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd pytest-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Skip test_collect_pyargs_with_testpaths because it mangles PYTHONPATH
+
+  cd pytest-$pkgver
+  python setup.py egg_info
+  PYTHONPATH="$PWD"/build/lib python src/pytest.py -k 'not 
test_collect_pyargs_with_testpaths'
+}
+
+package() {
+  cd pytest-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:08:55
  Author: felixonmars
Revision: 500376

upgpkg: python-pytest 5.1.1-1

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:08:20 UTC (rev 500375)
+++ PKGBUILD2019-08-21 03:08:55 UTC (rev 500376)
@@ -2,7 +2,7 @@
 # Contributor: Felix Kaiser 
 
 pkgname=python-pytest
-pkgver=5.1.0
+pkgver=5.1.1
 pkgrel=1
 pkgdesc="Simple powerful testing with Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-numpy' 'python-twisted' 'python-pytest-xdist' 
'python-decorator'
   'python-jinja' 'python-pexpect')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz";)
-sha512sums=('d6d112fe390d890ca58ba685024890f624456d5069f32637fc054db1f817609b48c01a42d3a97b362d6906b4705a37ebd73a270a4a86256f2ffa7b2a1b153aa6')
+sha512sums=('97fa8b8eae177128e8ab5063d06375fd23c16079767040dce6cf16efb8910e2fd18a48af90dd1307673bf35265204c8a2d69cfb36959ccab84ad59745de882f9')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:08:20
  Author: felixonmars
Revision: 500375

archrelease: copy trunk to community-any

Added:
  stylus/repos/community-any/PKGBUILD
(from rev 500374, stylus/trunk/PKGBUILD)
Deleted:
  stylus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:08:06 UTC (rev 500374)
+++ PKGBUILD2019-08-21 03:08:20 UTC (rev 500375)
@@ -1,20 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=stylus
-pkgdesc='Robust, expressive, and feature-rich CSS superset'
-pkgver=0.54.5
-pkgrel=2
-arch=('any')
-url='https://github.com/stylus/stylus'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm' 'git')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha256sums=('aeda6410088f14b48d36f3098a5492e47ff0d95cc9f9e24dc7f58815af9bc1d6')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: stylus/repos/community-any/PKGBUILD (from rev 500374, 
stylus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:08:20 UTC (rev 500375)
@@ -0,0 +1,20 @@
+# Maintainer: Felix Yan 
+
+pkgname=stylus
+pkgdesc='Robust, expressive, and feature-rich CSS superset'
+pkgver=0.54.6
+pkgrel=1
+arch=('any')
+url='https://github.com/stylus/stylus'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm' 'git')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha256sums=('bbe826092c3a88b85642b332b755c99d61954961463032f6613967ecc8ba679a')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:08:06
  Author: felixonmars
Revision: 500374

upgpkg: stylus 0.54.6-1

Modified:
  stylus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:06:51 UTC (rev 500373)
+++ PKGBUILD2019-08-21 03:08:06 UTC (rev 500374)
@@ -2,8 +2,8 @@
 
 pkgname=stylus
 pkgdesc='Robust, expressive, and feature-rich CSS superset'
-pkgver=0.54.5
-pkgrel=2
+pkgver=0.54.6
+pkgrel=1
 arch=('any')
 url='https://github.com/stylus/stylus'
 license=('MIT')
@@ -11,7 +11,7 @@
 makedepends=('npm' 'git')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha256sums=('aeda6410088f14b48d36f3098a5492e47ff0d95cc9f9e24dc7f58815af9bc1d6')
+sha256sums=('bbe826092c3a88b85642b332b755c99d61954961463032f6613967ecc8ba679a')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:06:51
  Author: felixonmars
Revision: 500373

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:06:40 UTC (rev 500372)
+++ PKGBUILD2019-08-21 03:06:51 UTC (rev 500373)
@@ -1,77 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-openstacksdk
-pkgname=(python-openstacksdk python2-openstacksdk)
-pkgver=0.29.0
-pkgrel=1
-pkgdesc="An SDK for building applications to work with OpenStack"
-arch=('any')
-url="https://developer.openstack.org/sdks/python/openstacksdk";
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-jsonpatch'
- 'python2-jsonpatch' 'python-appdirs' 'python2-appdirs' 
'python-keystoneauth1'
- 'python2-keystoneauth1' 'python-os-service-types' 
'python2-os-service-types'
- 'python-deprecation' 'python2-deprecation' 
'python-requestsexceptions'
- 'python2-requestsexceptions' 'python-yaml' 'python2-yaml' 
'python-decorator'
- 'python2-decorator' 'python-jmespath' 'python2-jmespath' 
'python2-ipaddress'
- 'python2-futures' 'python-iso8601' 'python2-iso8601' 
'python-netifaces'
- 'python2-netifaces' 'python-dogpile.cache' 
'python2-dogpile.cache' 'python-munch'
- 'python2-munch')
-checkdepends=('python-stestr' 'python2-stestr' 'python-mock' 'python2-mock' 
'python-requests-mock'
-  'python2-requests-mock' 'python-oslotest' 'python2-oslotest' 
'python-jsonschema'
-  'python2-jsonschema')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/openstacksdk/archive/$pkgver.tar.gz";)
-sha512sums=('e7bb4531ebb3d53f1c52defcffbb5fa5c31bdc002e3b841cb81e76d56e9fa88ccef938ae712fdc39761b5efa3b0c1bdaa59f4bdac478e780b0163a0d44fd3406')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  echo -e "\nglobal-include *.json" >> openstacksdk-$pkgver/MANIFEST.in
-  cp -a openstacksdk-$pkgver{,-py2}
-  sed -i 's/assertItemsEqual/assertCountEqual/' 
openstacksdk-$pkgver/openstack/tests/unit/*.py 
openstacksdk-$pkgver/openstack/tests/unit/*/*.py
-}
-
-build() {
-  cd "$srcdir"/openstacksdk-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # From https://github.com/openstack/openstacksdk/blob/master/tox.ini
-  export OS_LOG_CAPTURE=true OS_STDOUT_CAPTURE=true OS_STDERR_CAPTURE=true
-
-  cd "$srcdir"/openstacksdk-$pkgver
-  stestr run || warning "Tests failed"
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  PYTHON=python2 stestr2 run || warning "Tests failed"
-}
-
-package_python-openstacksdk() {
-  depends=('python-six' 'python-pbr' 'python-jsonpatch' 'python-appdirs' 
'python-keystoneauth1'
-   'python-os-service-types' 'python-deprecation' 
'python-requestsexceptions'
-   'python-decorator' 'python-jmespath' 'python-iso8601' 
'python-netifaces'
-   'python-dogpile.cache' 'python-munch')
-
-  cd "$srcdir"/openstacksdk-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-openstacksdk() {
-  depends=('python2-six' 'python2-pbr' 'python2-jsonpatch' 'python2-appdirs'
-   'python2-keystoneauth1' 'python2-os-service-types' 
'python2-deprecation'
-   'python2-requestsexceptions' 'python2-decorator' 'python2-jmespath' 
'python2-ipaddress'
-   'python2-futures' 'python2-iso8601' 'python2-netifaces' 
'python2-dogpile.cache'
-   'python2-munch')
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/openstack-inventory{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openstacksdk/repos/community-any/PKGBUILD (from rev 500372, 
python-openstacksdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:06:51 UTC (rev 500373)
@@ -0,0 +1,77 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-openstacksdk
+pkgname=(python-openstacksdk python2-openstacksdk)
+pkgver=0.31.0
+pkgrel=1
+pkgdesc="An SDK for building applications to work with OpenStack"
+arch=('any')
+url="https://developer.openstack.org/sdks/python/openstacksdk";
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-jsonpatch'
+ 'python2-jsonpatch' 'python-appdirs' 'python2-appdirs' 
'python-keystoneauth1'
+ 'python2-keystoneauth1' 'python-os-service-types' 
'python

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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:06:40
  Author: felixonmars
Revision: 500372

upgpkg: python-openstacksdk 0.31.0-1

Modified:
  python-openstacksdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:05:08 UTC (rev 500371)
+++ PKGBUILD2019-08-21 03:06:40 UTC (rev 500372)
@@ -3,7 +3,7 @@
 
 pkgbase=python-openstacksdk
 pkgname=(python-openstacksdk python2-openstacksdk)
-pkgver=0.29.0
+pkgver=0.31.0
 pkgrel=1
 pkgdesc="An SDK for building applications to work with OpenStack"
 arch=('any')
@@ -22,7 +22,7 @@
   'python2-requests-mock' 'python-oslotest' 'python2-oslotest' 
'python-jsonschema'
   'python2-jsonschema')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/openstacksdk/archive/$pkgver.tar.gz";)
-sha512sums=('e7bb4531ebb3d53f1c52defcffbb5fa5c31bdc002e3b841cb81e76d56e9fa88ccef938ae712fdc39761b5efa3b0c1bdaa59f4bdac478e780b0163a0d44fd3406')
+sha512sums=('02496cb94910dbc5e1b79d56ebc2d763a0ef9a9566cacc724bc083d6e60f1f6989e60e7788f4046c246e7382a4e0653ce3808eef82eb65c6f95b0941170a6600')
 
 export PBR_VERSION=$pkgver
 


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:04:41
  Author: felixonmars
Revision: 500369

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:04:30 UTC (rev 500368)
+++ PKGBUILD2019-08-21 03:04:41 UTC (rev 500369)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-twisted
-pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
-pkgver=1.10
-pkgrel=1
-pkgdesc='A twisted plugin for py.test'
-arch=('any')
-license=('BSD')
-url='https://github.com/pytest-dev/pytest-twisted'
-makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
- 'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
-sha512sums=('385c168489052375d3a25a6b6dbdf1cc20542dd6400ac68abfc62eb0dee2e3cb599f5df5efa9e1cc62c078dfc0ea50bfcf48d7efa026b7f398041ffce4bc5367')
-
-prepare() {
-  cp -a pytest-twisted-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-twisted-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-twisted-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-twisted-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-twisted() {
-  depends=('python-pytest' 'python-greenlet' 'python-decorator' 
'python-twisted')
-
-  cd pytest-twisted-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pytest-twisted() {
-  depends=('python2-pytest' 'python2-greenlet' 'python2-decorator' 
'python2-twisted')
-
-  cd pytest-twisted-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-twisted/repos/community-any/PKGBUILD (from rev 500368, 
python-pytest-twisted/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:04:41 UTC (rev 500369)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-twisted
+pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
+pkgver=1.11
+pkgrel=1
+pkgdesc='A twisted plugin for py.test'
+arch=('any')
+license=('BSD')
+url='https://github.com/pytest-dev/pytest-twisted'
+makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
+ 'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
+sha512sums=('486ac73f3f0a9b0a8a98895d8a846de07be987b8b6c3ad6b88650b86d3931f0c725ad64697547eae7891509b99a02a6363838f3577608c0e541411670a867336')
+
+prepare() {
+  cp -a pytest-twisted-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-twisted-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-twisted-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-twisted-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-twisted() {
+  depends=('python-pytest' 'python-greenlet' 'python-decorator' 
'python-twisted')
+
+  cd pytest-twisted-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pytest-twisted() {
+  depends=('python2-pytest' 'python2-greenlet' 'python2-decorator' 
'python2-twisted')
+
+  cd pytest-twisted-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:04:56
  Author: felixonmars
Revision: 500370

upgpkg: npm 6.11.0-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:04:41 UTC (rev 500369)
+++ PKGBUILD2019-08-21 03:04:56 UTC (rev 500370)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=6.10.3
+pkgver=6.11.0
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('procps-ng' 'marked-man')
 options=('!emptydirs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz";)
-sha512sums=('af173c31c7713c83b083d5be1b75503db24d2228a942c94ee38757b847a15cf309abfe403328239085c93c1f6f42c3859fda4c88b8b80a07cb8d6f8b6b35b7f2')
+sha512sums=('cff8c264f219550acd2410326f80ea45f8a079220aea1fb7833c7378774ab5479d5a9ba8fda651d70d89a62f89dba84c422d5c2ecda2d3cdd67b6bf91d542160')
 
 prepare() {
   cd cli-$pkgver


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:05:08
  Author: felixonmars
Revision: 500371

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 500370, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:04:56 UTC (rev 500370)
+++ PKGBUILD2019-08-21 03:05:08 UTC (rev 500371)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=6.10.3
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'node-gyp' 'semver')
-makedepends=('procps-ng' 'marked-man')
-options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz";)
-sha512sums=('af173c31c7713c83b083d5be1b75503db24d2228a942c94ee38757b847a15cf309abfe403328239085c93c1f6f42c3859fda4c88b8b80a07cb8d6f8b6b35b7f2')
-
-prepare() {
-  cd cli-$pkgver
-  mkdir -p node_modules/.bin
-  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
-
-  mkdir -p man/man1
-}
-
-build() {
-  cd cli-$pkgver
-  make
-}
-
-package() {
-  cd cli-$pkgver
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # Experimental dedup
-  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
-  rm -r "$_npmdir"/node_modules/{,.bin/}semver
-  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
-  sed -i '/node-gyp.js/c\  exec /usr/bin/node-gyp "$@"' \
-"$_npmdir"/node_modules/npm-lifecycle/node-gyp-bin/node-gyp \
-"$_npmdir"/bin/node-gyp-bin/node-gyp
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  node "$srcdir"/cli-$pkgver/bin/npm-cli.js completion > 
"$pkgdir"/usr/share/bash-completion/completions/npm
-
-  install -Dm644 "$srcdir"/cli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 500370, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:05:08 UTC (rev 500371)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=6.11.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'node-gyp' 'semver')
+makedepends=('procps-ng' 'marked-man')
+options=('!emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz";)
+sha512sums=('cff8c264f219550acd2410326f80ea45f8a079220aea1fb7833c7378774ab5479d5a9ba8fda651d70d89a62f89dba84c422d5c2ecda2d3cdd67b6bf91d542160')
+
+prepare() {
+  cd cli-$pkgver
+  mkdir -p node_modules/.bin
+  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
+
+  mkdir -p man/man1
+}
+
+build() {
+  cd cli-$pkgver
+  make
+}
+
+package() {
+  cd cli-$pkgver
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # Experimental dedup
+  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
+  rm -r "$_npmdir"/node_modules/{,.bin/}semver
+  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
+  sed -i '/node-gyp.js/c\  exec /usr/bin/node-gyp "$@"' \
+"$_npmdir"/node_modules/npm-lifecycle/node-gyp-bin/node-gyp \
+"$_npmdir"/bin/node-gyp-bin/node-gyp
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  node "$srcdir"/cli-$pkgver/bin/npm-cli.js completion > 
"$pkgdir"/usr/share/bash-completion/completions/npm
+
+  install -Dm644 "$srcdir"/cli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Wednesday, August 21, 2019 @ 03:04:30
  Author: felixonmars
Revision: 500368

upgpkg: python-pytest-twisted 1.11-1

Modified:
  python-pytest-twisted/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 03:00:43 UTC (rev 500367)
+++ PKGBUILD2019-08-21 03:04:30 UTC (rev 500368)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pytest-twisted
 pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
-pkgver=1.10
+pkgver=1.11
 pkgrel=1
 pkgdesc='A twisted plugin for py.test'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
  'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
-sha512sums=('385c168489052375d3a25a6b6dbdf1cc20542dd6400ac68abfc62eb0dee2e3cb599f5df5efa9e1cc62c078dfc0ea50bfcf48d7efa026b7f398041ffce4bc5367')
+sha512sums=('486ac73f3f0a9b0a8a98895d8a846de07be987b8b6c3ad6b88650b86d3931f0c725ad64697547eae7891509b99a02a6363838f3577608c0e541411670a867336')
 
 prepare() {
   cp -a pytest-twisted-$pkgver{,-py2}


[arch-commits] Commit in gnuradio-iqbal/repos/community-staging-x86_64 (4 files)

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 03:00:43
  Author: kkeen
Revision: 500367

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD
(from rev 500366, gnuradio-iqbal/trunk/PKGBUILD)
  gnuradio-iqbal/repos/community-staging-x86_64/gr38-update.diff
(from rev 500366, gnuradio-iqbal/trunk/gr38-update.diff)
Deleted:
  gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD
  gnuradio-iqbal/repos/community-staging-x86_64/gr38-update.diff

--+
 PKGBUILD |  115 +--
 gr38-update.diff |  516 ++---
 2 files changed, 315 insertions(+), 316 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-21 03:00:27 UTC (rev 500366)
+++ PKGBUILD2019-08-21 03:00:43 UTC (rev 500367)
@@ -1,58 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-pkgname=gnuradio-iqbal
-_pkgname=gr-iqbal
-pkgver=0.37.2
-pkgrel=33
-pkgdesc="Gnuradio I/Q balancing"
-arch=('x86_64')
-url="https://cgit.osmocom.org/gr-iqbal/";
-license=('GPL')
-depends=('gnuradio' 'fftw')
-replaces=('gr-iqbal')
-makedepends=('git' 'cmake' 'boost' 'swig')
-source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver"
-'gr38-update.diff')
-md5sums=('SKIP'
- 'f78ad3ce43473fc6ec6486687afe54dc')
-
-prepare() {
-  cd "$srcdir/$_pkgname"
-  git submodule init
-  git submodule update
-
-  #sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES 
${FFTW3F_LIBRARIES}/' CMakeLists.txt 
-  #sed -i 's/3.7.0/3.8.0.0/' CMakeLists.txt
-  #sed -i 's/lib64/lib/'   CMakeLists.txt
-
-  # patch from Maitland Bottoms of Debian
-  patch -p1 -i "$srcdir/gr38-update.diff"
-  #rm cmake/Modules/GrMiscUtils.cmake
-
-  # upstream mixed tabs and spaces
-  sed -i 's/\t//' python/__init__.py
-}
-
-build() {
-  cd "$srcdir/$_pkgname"
-  mkdir -p build
-  cd build
-  cmake \
--Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE=$(which python3) \
--DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
--DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
--DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
--DPKG_CONFIG_PATH=/usr/lib/pkgconfig \
--DCMAKE_LIBRARY_PATH=/usr/lib \
--DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-#-DGnuradio_DIR=/usr/lib/cmake/gnuradio \
-#-DVolk_DIR=/usr/lib/cmake/vol \
-}
-
-package() {
-  cd "$srcdir/$_pkgname/build/"
-  make DESTDIR="${pkgdir}" install
-}

Copied: gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD (from rev 
500366, gnuradio-iqbal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-21 03:00:43 UTC (rev 500367)
@@ -0,0 +1,57 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.2
+pkgrel=34
+pkgdesc="Gnuradio I/Q balancing"
+arch=('x86_64')
+url="https://cgit.osmocom.org/gr-iqbal/";
+license=('GPL')
+depends=('gnuradio' 'fftw')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver"
+'gr38-update.diff')
+md5sums=('SKIP'
+ '18484d0184b37f4e43a6e6f58b5c4c12')
+
+prepare() {
+  cd "$srcdir/$_pkgname"
+  git submodule init
+  git submodule update
+
+  #sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES 
${FFTW3F_LIBRARIES}/' CMakeLists.txt 
+  #sed -i 's/lib64/lib/'   CMakeLists.txt
+
+  # patch from Maitland Bottoms of Debian
+  patch -p1 -i "$srcdir/gr38-update.diff"
+  #rm cmake/Modules/GrMiscUtils.cmake
+
+  # upstream mixed tabs and spaces
+  sed -i 's/\t//' python/__init__.py
+}
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir -p build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
+-DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
+-DPKG_CONFIG_PATH=/usr/lib/pkgconfig \
+-DCMAKE_LIBRARY_PATH=/usr/lib \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+#-DGnuradio_DIR=/usr/lib/cmake/gnuradio \
+#-DVolk_DIR=/usr/lib/cmake/vol \
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gr38-update.diff
===
--- gr38-update.diff2019-08-21 03:00:27 UTC (rev 500366)
+++ gr38-update.diff2019-08-21 03:00:43 UTC (rev 500367)
@@ -1,258 +0,0 @@
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -33,7 +33,18 @@
- endif(NOT CMAKE_BUILD_TYPE)
- set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
- 
--list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
-+
-+# set search path for cmake modules to OOT, 

[arch-commits] Commit in gnuradio-iqbal/trunk (PKGBUILD gr38-update.diff)

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 03:00:27
  Author: kkeen
Revision: 500366

upgpkg: gnuradio-iqbal 0.37.2-34  fix yaml

Modified:
  gnuradio-iqbal/trunk/PKGBUILD
  gnuradio-iqbal/trunk/gr38-update.diff

--+
 PKGBUILD |5 +-
 gr38-update.diff |   96 ++---
 2 files changed, 50 insertions(+), 51 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 02:12:53 UTC (rev 500365)
+++ PKGBUILD2019-08-21 03:00:27 UTC (rev 500366)
@@ -3,7 +3,7 @@
 pkgname=gnuradio-iqbal
 _pkgname=gr-iqbal
 pkgver=0.37.2
-pkgrel=33
+pkgrel=34
 pkgdesc="Gnuradio I/Q balancing"
 arch=('x86_64')
 url="https://cgit.osmocom.org/gr-iqbal/";
@@ -14,7 +14,7 @@
 source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver"
 'gr38-update.diff')
 md5sums=('SKIP'
- 'f78ad3ce43473fc6ec6486687afe54dc')
+ '18484d0184b37f4e43a6e6f58b5c4c12')
 
 prepare() {
   cd "$srcdir/$_pkgname"
@@ -22,7 +22,6 @@
   git submodule update
 
   #sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES 
${FFTW3F_LIBRARIES}/' CMakeLists.txt 
-  #sed -i 's/3.7.0/3.8.0.0/' CMakeLists.txt
   #sed -i 's/lib64/lib/'   CMakeLists.txt
 
   # patch from Maitland Bottoms of Debian

Modified: gr38-update.diff
===
--- gr38-update.diff2019-08-21 02:12:53 UTC (rev 500365)
+++ gr38-update.diff2019-08-21 03:00:27 UTC (rev 500366)
@@ -181,33 +181,33 @@
 +flags: [ python, cpp ]
 +
 +parameters:
-+- id: period
-+  label: Period
-+  dtype: int
++-   id: period
++label: Period
++dtype: int
 +
 +inputs:
-+- domain: stream
-+  id: in
-+  dtype: complex
++-   domain: stream
++id: in
++dtype: complex
 +
 +outputs:
-+- domain: message
-+  id: iqbal_corr
-+  dtype: complex
-+  optional: true
++-   domain: message
++id: iqbal_corr
++dtype: complex
++optional: true
 +
 +templates:
-+  imports: from gnuradio import iqbalance
-+  make: iqbalance.optimize_c(${period})
-+  callbacks:
-+  - set_period(${period})
++imports: from gnuradio import iqbalance
++make: iqbalance.optimize_c(${period})
++callbacks:
++- set_period(${period})
 +cpp_templates:
-+  includes: ['#include ']
-+  declarations: 'iqbalance::optimize_c::sptr ${id};'
-+  make: 'this->${id} = iqbalance::optimize_c::make(${period});'
-+  callbacks:
-+  - set_period(${period})
-+  link: ['gnuradio-iqbalance']
++includes: ['#include ']
++declarations: 'iqbalance::optimize_c::sptr ${id};'
++make: 'this->${id} = iqbalance::optimize_c::make(${period});'
++callbacks:
++- set_period(${period})
++link: ['gnuradio-iqbalance']
 +
 +file_format: 1
 --- /dev/null
@@ -218,41 +218,41 @@
 +flags: [ python, cpp ]
 +
 +parameters:
-+- id: mag
-+  label: Magnitude
-+  dtype: real
-+- id: phase
-+  label: Phase
-+  dtype: real
++-   id: mag
++label: Magnitude
++dtype: real
++-   id: phase
++label: Phase
++dtype: real
 +
 +inputs:
-+- domain: stream
-+  id: in
-+  dtype: complex
-+- domain: message
-+  id: iqbal_corr
-+  dtype: complex
-+  optional: true
++-   domain: stream
++id: in
++dtype: complex
++-   domain: message
++id: iqbal_corr
++dtype: complex
++optional: true
 +
 +outputs:
-+- domain: stream
-+  id: out
-+  dtype: complex
++-   domain: stream
++id: out
++dtype: complex
 +
 +templates:
-+  imports: from gnuradio import iqbalance
-+  make: iqbalance.fix_cc(${mag}, ${phase})
-+  callbacks:
-+  - set_mag(${mag})
-+  - set_phase(${phase})
++imports: from gnuradio import iqbalance
++make: iqbalance.fix_cc(${mag}, ${phase})
++callbacks:
++- set_mag(${mag})
++- set_phase(${phase})
 +
 +cpp_templates:
-+  includes: ['#include ']
-+  declarations: 'iqbalance::fix_cc::sptr ${id};'
-+  make: 'this->${id} = iqbalance::fix_cc::make(${mag}, ${phase});'
-+  callbacks:
-+  - set_mag(${mag})
-+  - set_phase(${phase})
-+  link: ['gnuradio-iqbalance']
++includes: ['#include ']
++declarations: 'iqbalance::fix_cc::sptr ${id};'
++make: 'this->${id} = iqbalance::fix_cc::make(${mag}, ${phase});'
++callbacks:
++- set_mag(${mag})
++- set_phase(${phase})
++link: ['gnuradio-iqbalance']
 +
 +file_format: 1


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 02:12:44
  Author: kkeen
Revision: 500364

upgpkg: gnuradio-osmosdr 0.1.5.r128.f3905d-1

Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

--+
 PKGBUILD |   20 +++-
 1 file changed, 11 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 01:19:24 UTC (rev 500363)
+++ PKGBUILD2019-08-21 02:12:44 UTC (rev 500364)
@@ -3,10 +3,10 @@
 
 pkgname=gnuradio-osmosdr
 _pkgname=gr-osmosdr
-_r=127
-_commit=4d83c6067f059b0c5015c3f59f8117bbd361e877
+_r=128
+_commit=f3905d3510dfb3851f946f097a9e2ddaa5fb333b
 pkgver=0.1.5.r$_r.${_commit:0:6}
-pkgrel=2
+pkgrel=1
 pkgdesc='Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices'
 url='https://sdr.osmocom.org/trac/'
 arch=('x86_64')
@@ -15,7 +15,9 @@
 optdepends=('python2-opengl: osmocom_fft')
 makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
 replaces=('gr-osmosdr')
-source=("git://git.osmocom.org/gr-osmosdr#commit=$_commit")
+#source=("git://git.osmocom.org/gr-osmosdr#commit=$_commit")
+# use this random dude's repo, because where is osmocom?
+source=("git://github.com/igorauad/gr-osmosdr/#commit=$_commit")
 md5sums=('SKIP')
 
 # add support for miri, osmo?
@@ -23,21 +25,21 @@
 prepare() {
   cd $_pkgname
 
-  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  #sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
 }
 
 build() {
   cd $_pkgname
 
-  mkdir build
+  mkdir -p build
   cd build
 
   cmake \
 -Wno-dev \
 -DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE="$(which python2)" \
--DPYTHON_INCLUDE_DIR="$(echo /usr/include/python2*)" \
--DPYTHON_LIBRARY="$(echo /usr/lib/libpython2.*.so)" \
+-DPYTHON_EXECUTABLE="$(which python3)" \
+-DPYTHON_INCLUDE_DIR="$(echo /usr/include/python3*)" \
+-DPYTHON_LIBRARY="$(echo /usr/lib/libpython3.*.so)" \
 -DCMAKE_INSTALL_PREFIX=/usr ../
 
   make


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 02:12:53
  Author: kkeen
Revision: 500365

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-osmosdr/repos/community-staging-x86_64/
  gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD
(from rev 500364, gnuradio-osmosdr/trunk/PKGBUILD)

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

Copied: gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD (from rev 
500364, gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-21 02:12:53 UTC (rev 500365)
@@ -0,0 +1,52 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+_r=128
+_commit=f3905d3510dfb3851f946f097a9e2ddaa5fb333b
+pkgver=0.1.5.r$_r.${_commit:0:6}
+pkgrel=1
+pkgdesc='Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices'
+url='https://sdr.osmocom.org/trac/'
+arch=('x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
+optdepends=('python2-opengl: osmocom_fft')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+replaces=('gr-osmosdr')
+#source=("git://git.osmocom.org/gr-osmosdr#commit=$_commit")
+# use this random dude's repo, because where is osmocom?
+source=("git://github.com/igorauad/gr-osmosdr/#commit=$_commit")
+md5sums=('SKIP')
+
+# add support for miri, osmo?
+
+prepare() {
+  cd $_pkgname
+
+  #sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+}
+
+build() {
+  cd $_pkgname
+
+  mkdir -p build
+  cd build
+
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE="$(which python3)" \
+-DPYTHON_INCLUDE_DIR="$(echo /usr/include/python3*)" \
+-DPYTHON_LIBRARY="$(echo /usr/lib/libpython3.*.so)" \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+
+  make
+}
+
+package() {
+  cd $_pkgname/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 01:19:24
  Author: kkeen
Revision: 500363

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-fcdproplus/repos/community-staging-x86_64/
  gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules
(from rev 500362, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD
(from rev 500362, gnuradio-fcdproplus/trunk/PKGBUILD)

-+
 88-fcdproplus.rules |9 +
 PKGBUILD|   43 +++
 2 files changed, 52 insertions(+)

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules 
(from rev 500362, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-staging-x86_64/88-fcdproplus.rules
(rev 0)
+++ community-staging-x86_64/88-fcdproplus.rules2019-08-21 01:19:24 UTC 
(rev 500363)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD (from rev 
500362, gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-21 01:19:24 UTC (rev 500363)
@@ -0,0 +1,43 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.8.0
+pkgrel=1
+# they still haven't done a release, so fake it
+_commit=f1154db33e7
+pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
+arch=('x86_64')
+url="https://github.com/dl1ksv/gr-fcdproplus";
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig' 'systemd' 'ninja')
+# systemd for FS#54735 (libudev.h)
+replaces=('gr-fcdproplus')
+#source=("gr-fcdpp-$pkgver.tgz::https://github.com/dl1ksv/gr-fcdproplus/archive/v$pkgver.tar.gz";
+source=("gr-fcdpp-$_commit.tgz::https://github.com/dl1ksv/gr-fcdproplus/archive/$_commit.tar.gz";
+"88-fcdproplus.rules")
+md5sums=('464e3499762fec2071b75ff539095475'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+#prepare() {
+#  cd "$srcdir/$_pkgname-$pkgver"
+#}
+
+build() {
+  cd "$srcdir/$_pkgname-$_commit"*
+  mkdir -p build
+  cd build
+  cmake -G Ninja \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  ninja
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$_commit"*/build/
+  DESTDIR="${pkgdir}" ninja install
+  install -Dm644 "$srcdir/88-fcdproplus.rules" 
"$pkgdir/etc/udev/rules.d/88-fcdproplus.rules"
+}


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 01:19:14
  Author: kkeen
Revision: 500362

upgpkg: gnuradio-fcdproplus 3.8.0-1

Modified:
  gnuradio-fcdproplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-21 00:56:11 UTC (rev 500361)
+++ PKGBUILD2019-08-21 01:19:14 UTC (rev 500362)
@@ -2,8 +2,10 @@
 # Contributor: Dominik Heidler 
 pkgname=gnuradio-fcdproplus
 _pkgname=gr-fcdproplus
-pkgver=3.7.12
+pkgver=3.8.0
 pkgrel=1
+# they still haven't done a release, so fake it
+_commit=f1154db33e7
 pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
 arch=('x86_64')
 url="https://github.com/dl1ksv/gr-fcdproplus";
@@ -12,29 +14,30 @@
 makedepends=('git' 'cmake' 'boost' 'swig' 'systemd' 'ninja')
 # systemd for FS#54735 (libudev.h)
 replaces=('gr-fcdproplus')
-source=("gr-fcdpp-$pkgver.tgz::https://github.com/dl1ksv/gr-fcdproplus/archive/v$pkgver.tar.gz";
+#source=("gr-fcdpp-$pkgver.tgz::https://github.com/dl1ksv/gr-fcdproplus/archive/v$pkgver.tar.gz";
+source=("gr-fcdpp-$_commit.tgz::https://github.com/dl1ksv/gr-fcdproplus/archive/$_commit.tar.gz";
 "88-fcdproplus.rules")
-md5sums=('3ad177be1ea2780051d2eb77fffe72a7'
+md5sums=('464e3499762fec2071b75ff539095475'
  '465e12c454c6a22ebec9849181af7bdc')
 
-prepare() {
-  cd "$srcdir/$_pkgname-$pkgver"
-}
+#prepare() {
+#  cd "$srcdir/$_pkgname-$pkgver"
+#}
 
 build() {
-  cd "$srcdir/$_pkgname-$pkgver"
+  cd "$srcdir/$_pkgname-$_commit"*
   mkdir -p build
   cd build
   cmake -G Ninja \
--DPYTHON_EXECUTABLE=$(which python2) \
--DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
--DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
 -DCMAKE_INSTALL_PREFIX=/usr ../
   ninja
 }
 
 package() {
-  cd "$srcdir/$_pkgname-$pkgver/build/"
+  cd "$srcdir/$_pkgname-$_commit"*/build/
   DESTDIR="${pkgdir}" ninja install
   install -Dm644 "$srcdir/88-fcdproplus.rules" 
"$pkgdir/etc/udev/rules.d/88-fcdproplus.rules"
 }


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

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 00:56:11
  Author: kkeen
Revision: 500361

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-iqbal/repos/community-staging-x86_64/
  gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD
(from rev 500360, gnuradio-iqbal/trunk/PKGBUILD)
  gnuradio-iqbal/repos/community-staging-x86_64/gr38-update.diff
(from rev 500360, gnuradio-iqbal/trunk/gr38-update.diff)

--+
 PKGBUILD |   58 +++
 gr38-update.diff |  258 +
 2 files changed, 316 insertions(+)

Copied: gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD (from rev 
500360, gnuradio-iqbal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-21 00:56:11 UTC (rev 500361)
@@ -0,0 +1,58 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.2
+pkgrel=33
+pkgdesc="Gnuradio I/Q balancing"
+arch=('x86_64')
+url="https://cgit.osmocom.org/gr-iqbal/";
+license=('GPL')
+depends=('gnuradio' 'fftw')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver"
+'gr38-update.diff')
+md5sums=('SKIP'
+ 'f78ad3ce43473fc6ec6486687afe54dc')
+
+prepare() {
+  cd "$srcdir/$_pkgname"
+  git submodule init
+  git submodule update
+
+  #sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES 
${FFTW3F_LIBRARIES}/' CMakeLists.txt 
+  #sed -i 's/3.7.0/3.8.0.0/' CMakeLists.txt
+  #sed -i 's/lib64/lib/'   CMakeLists.txt
+
+  # patch from Maitland Bottoms of Debian
+  patch -p1 -i "$srcdir/gr38-update.diff"
+  #rm cmake/Modules/GrMiscUtils.cmake
+
+  # upstream mixed tabs and spaces
+  sed -i 's/\t//' python/__init__.py
+}
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir -p build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
+-DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
+-DPKG_CONFIG_PATH=/usr/lib/pkgconfig \
+-DCMAKE_LIBRARY_PATH=/usr/lib \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+#-DGnuradio_DIR=/usr/lib/cmake/gnuradio \
+#-DVolk_DIR=/usr/lib/cmake/vol \
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gnuradio-iqbal/repos/community-staging-x86_64/gr38-update.diff (from 
rev 500360, gnuradio-iqbal/trunk/gr38-update.diff)
===
--- community-staging-x86_64/gr38-update.diff   (rev 0)
+++ community-staging-x86_64/gr38-update.diff   2019-08-21 00:56:11 UTC (rev 
500361)
@@ -0,0 +1,258 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -33,7 +33,18 @@
+ endif(NOT CMAKE_BUILD_TYPE)
+ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
+ 
+-list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
++
++# set search path for cmake modules to OOT, Gnuradio
++
++set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
++find_package(Gnuradio "3.8" REQUIRED)
++
++# Set the version information here
++set(VERSION_INFO_MAJOR_VERSION 3)
++set(VERSION_INFO_API_COMPAT8)
++set(VERSION_INFO_MINOR_VERSION 0)
++set(VERSION_INFO_MAINT_VERSION "")
++include(GrVersion) #setup version info
+ 
+ 
+ # Compiler specific setup
+@@ -58,11 +69,7 @@
+ "1.60.0" "1.60" "1.61.0" "1.61" "1.62.0" "1.62" "1.63.0" "1.63" "1.64.0" 
"1.64"
+ "1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" 
"1.69"
+ )
+-find_package(Boost "1.35" COMPONENTS system)
+-
+-if(NOT Boost_FOUND)
+-message(FATAL_ERROR "Boost required to compile iqbalance")
+-endif()
++find_package(Boost "1.35" COMPONENTS filesystem program_options regex system 
thread)
+ 
+ 
+ # Find FFTW3
+@@ -85,7 +92,7 @@
+ if(NOT LIBOSMODSP_FOUND)
+ message(STATUS "libosmodsp not found, using local checkout")
+ set(LIBOSMODSP_INCLUDE_DIRS "libosmo-dsp/include/")
+-set(LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES})
++set(LIBOSMODSP_LIBRARIES fftw3f::fftw3f)
+ set(LIBOSMODSP_SOURCES 
${CMAKE_CURRENT_SOURCE_DIR}/libosmo-dsp/src/cxvec.c 
${CMAKE_CURRENT_SOURCE_DIR}/libosmo-dsp/src/iqbal.c)
+ endif()
+ 
+@@ -93,9 +100,15 @@
+ # Install directories
+ 
+ include(GrPlatform) #define LIB_SUFFIX
++
++if(NOT CMAKE_MODULES_DIR)
++  set(CMAKE_MODULES_DIR lib${LIB_SUFFIX}

[arch-commits] Commit in gnuradio-iqbal/trunk (PKGBUILD gr38-update.diff)

2019-08-20 Thread Kyle Keen via arch-commits
Date: Wednesday, August 21, 2019 @ 00:56:01
  Author: kkeen
Revision: 500360

upgpkg: gnuradio-iqbal 0.37.2-33

Added:
  gnuradio-iqbal/trunk/gr38-update.diff
Modified:
  gnuradio-iqbal/trunk/PKGBUILD

--+
 PKGBUILD |   38 +--
 gr38-update.diff |  258 +
 2 files changed, 287 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 22:46:54 UTC (rev 500359)
+++ PKGBUILD2019-08-21 00:56:01 UTC (rev 500360)
@@ -3,7 +3,7 @@
 pkgname=gnuradio-iqbal
 _pkgname=gr-iqbal
 pkgver=0.37.2
-pkgrel=32
+pkgrel=33
 pkgdesc="Gnuradio I/Q balancing"
 arch=('x86_64')
 url="https://cgit.osmocom.org/gr-iqbal/";
@@ -11,25 +11,45 @@
 depends=('gnuradio' 'fftw')
 replaces=('gr-iqbal')
 makedepends=('git' 'cmake' 'boost' 'swig')
-source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver")
-md5sums=('SKIP')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver"
+'gr38-update.diff')
+md5sums=('SKIP'
+ 'f78ad3ce43473fc6ec6486687afe54dc')
 
-build() {
+prepare() {
   cd "$srcdir/$_pkgname"
   git submodule init
   git submodule update
-  sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES}/' 
CMakeLists.txt 
-  mkdir build
+
+  #sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES 
${FFTW3F_LIBRARIES}/' CMakeLists.txt 
+  #sed -i 's/3.7.0/3.8.0.0/' CMakeLists.txt
+  #sed -i 's/lib64/lib/'   CMakeLists.txt
+
+  # patch from Maitland Bottoms of Debian
+  patch -p1 -i "$srcdir/gr38-update.diff"
+  #rm cmake/Modules/GrMiscUtils.cmake
+
+  # upstream mixed tabs and spaces
+  sed -i 's/\t//' python/__init__.py
+}
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir -p build
   cd build
   cmake \
 -Wno-dev \
 -DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE=$(which python2) \
--DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
--DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*.so) \
+-DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
+-DPKG_CONFIG_PATH=/usr/lib/pkgconfig \
 -DCMAKE_LIBRARY_PATH=/usr/lib \
 -DCMAKE_INSTALL_PREFIX=/usr ../
   make
+#-DGnuradio_DIR=/usr/lib/cmake/gnuradio \
+#-DVolk_DIR=/usr/lib/cmake/vol \
 }
 
 package() {

Added: gr38-update.diff
===
--- gr38-update.diff(rev 0)
+++ gr38-update.diff2019-08-21 00:56:01 UTC (rev 500360)
@@ -0,0 +1,258 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -33,7 +33,18 @@
+ endif(NOT CMAKE_BUILD_TYPE)
+ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
+ 
+-list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
++
++# set search path for cmake modules to OOT, Gnuradio
++
++set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
++find_package(Gnuradio "3.8" REQUIRED)
++
++# Set the version information here
++set(VERSION_INFO_MAJOR_VERSION 3)
++set(VERSION_INFO_API_COMPAT8)
++set(VERSION_INFO_MINOR_VERSION 0)
++set(VERSION_INFO_MAINT_VERSION "")
++include(GrVersion) #setup version info
+ 
+ 
+ # Compiler specific setup
+@@ -58,11 +69,7 @@
+ "1.60.0" "1.60" "1.61.0" "1.61" "1.62.0" "1.62" "1.63.0" "1.63" "1.64.0" 
"1.64"
+ "1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" 
"1.69"
+ )
+-find_package(Boost "1.35" COMPONENTS system)
+-
+-if(NOT Boost_FOUND)
+-message(FATAL_ERROR "Boost required to compile iqbalance")
+-endif()
++find_package(Boost "1.35" COMPONENTS filesystem program_options regex system 
thread)
+ 
+ 
+ # Find FFTW3
+@@ -85,7 +92,7 @@
+ if(NOT LIBOSMODSP_FOUND)
+ message(STATUS "libosmodsp not found, using local checkout")
+ set(LIBOSMODSP_INCLUDE_DIRS "libosmo-dsp/include/")
+-set(LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES})
++set(LIBOSMODSP_LIBRARIES fftw3f::fftw3f)
+ set(LIBOSMODSP_SOURCES 
${CMAKE_CURRENT_SOURCE_DIR}/libosmo-dsp/src/cxvec.c 
${CMAKE_CURRENT_SOURCE_DIR}/libosmo-dsp/src/iqbal.c)
+ endif()
+ 
+@@ -93,9 +100,15 @@
+ # Install directories
+ 
+ include(GrPlatform) #define LIB_SUFFIX
++
++if(NOT CMAKE_MODULES_DIR)
++  set(CMAKE_MODULES_DIR lib${LIB_SUFFIX}/cmake)
++endif(NOT CMAKE_MODULES_DIR)
++
+ set(GR_RUNTIME_DIR  bin)
+ set(GR_LIBRARY_DIR  lib${LIB_SUFFIX})
+-set(GR_INCLUDE_DIR  include)
++set(GR_INCLUDE_DIR  include/gnuradio/iqbalance)
++SET(GR_CMAKE_DIR${CMAKE_MODULES_DIR}/gr-iqbal)

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

2019-08-20 Thread Daniel M. Capella via arch-commits
Date: Tuesday, August 20, 2019 @ 22:46:54
  Author: polyzen
Revision: 500359

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 22:46:33 UTC (rev 500358)
+++ PKGBUILD2019-08-20 22:46:54 UTC (rev 500359)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eschwartz 
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-noscript
-pkgver=11.0.2
-pkgrel=1
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/";
-license=('GPL2')
-groups=('firefox-addons')
-depends=('firefox')
-makedepends=('unzip')
-source=("https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi";)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('71e264166cfc71483b79bb63d99894defc03096327e0c945ae0adb9f967be402')
-b2sums=('42feb3c0b35a5af6d2badc5a4ca46a2da0bf14d4051813c6baabb0e1900f85184db5efaf3d6f27ac78305a7903a344ac5b43136b41cfbb9eeb1595c764d70704')
-
-package() {
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 500358, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 22:46:54 UTC (rev 500359)
@@ -0,0 +1,23 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eschwartz 
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-noscript
+pkgver=11.0.3
+pkgrel=1
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/";
+license=('GPL2')
+groups=('firefox-addons')
+depends=('firefox')
+makedepends=('unzip')
+source=("https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi";)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('2d15f8011640b49525e5005a54486c507c11863f8d73b0742f379b16c2a4b204')
+
+package() {
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2019-08-20 Thread Daniel M. Capella via arch-commits
Date: Tuesday, August 20, 2019 @ 22:46:33
  Author: polyzen
Revision: 500358

upgpkg: firefox-noscript 11.0.3-1

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 22:44:34 UTC (rev 500357)
+++ PKGBUILD2019-08-20 22:46:33 UTC (rev 500358)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-noscript
-pkgver=11.0.2
+pkgver=11.0.3
 pkgrel=1
 pkgdesc="Extension for firefox which disables javascript"
 arch=('any')
@@ -14,8 +14,7 @@
 makedepends=('unzip')
 
source=("https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi";)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('71e264166cfc71483b79bb63d99894defc03096327e0c945ae0adb9f967be402')
-b2sums=('42feb3c0b35a5af6d2badc5a4ca46a2da0bf14d4051813c6baabb0e1900f85184db5efaf3d6f27ac78305a7903a344ac5b43136b41cfbb9eeb1595c764d70704')
+sha256sums=('2d15f8011640b49525e5005a54486c507c11863f8d73b0742f379b16c2a4b204')
 
 package() {
   _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"


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

2019-08-20 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 20, 2019 @ 22:44:34
  Author: andrewsc
Revision: 500357

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

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

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

2019-08-20 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 20, 2019 @ 22:44:11
  Author: andrewsc
Revision: 500356

upgpkg: firefox-developer-edition-i18n 69.0b15-1

firefox-developer-edition-i18n: Updating to 69.0b15

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

--+
 PKGBUILD |  188 ++---
 1 file changed, 94 insertions(+), 94 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 22:34:35 UTC (rev 500355)
+++ PKGBUILD2019-08-20 22:44:11 UTC (rev 500356)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=69.0b14
+pkgver=69.0b15
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -129,96 +129,96 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('b6978213495eac2bb21ff74f7745eea100f41ce50949a05cac49e5ea246fd5749810bc9eeba1c9ea4a116cb477a536f1e8fabd957a24c2187636bc86f0514690'
-
'8d3e552feeec28c899c04a3dde6f9255043066549a9f77e9049d7f364f0113d6326352627f49f1c10739491ef65b6ea0f3738fecd6721c8c9b97808e11df8dda'
-
'cfb34553198bdb7a7d0a3f11776039e9b741a47c72b8fb63045babe16fde51c85c33f83c114b7f3fcc09ee90af2989845b25ee6ad29487dc8df8e54c1c56fc54'
-
'f63c0e2365f85e21739dadd1c2e6367e11712b4849e65bf8668068a911dde7e89a522e876deca334f797b089befc2451d425ac53d39a4b1199f5e1047a7dd1a4'
-
'30ee8dd529de5cbf7a4b12a4de9831d73b1e468ec8bc73f5293d8ab0d6fd712ea1e94366f3a2f4870af26c4225f2e3c481d3c8d74852ead2cf0a2fa00fbf9628'
-
'23793c70f036649024cf00b858ed4c97d1042342834cf5db4f29e9e776292e5a612130a73b58bae942bc539d8321193ca7b0aaa74ff3baed7e7ed2131b4607ea'
-
'5b5573ee30084a0e1abf80a09dec763940fd7b1fd3ef41003664d4399c0407db5bae6a8dd995d886e1503b7992339b0f3831e30562094ed2d98f173f8ccf1bd7'
-
'495776dba3b3593ffdddcaa6555f19a38381060100bf37164500a35e0f22acca1066a8546d2094c7cc3baefbb54799623d7e0f9ead611460e370da40b54cf0c3'
-
'84e0feae970cc7aa634fa97266dd2177be672ac481fc9b92adc6f476b6ec2260caabaf03d27d97f86d7348e19589957ba31b3afbcfa228b19892d971a9ba1949'
-
'6866ce933f1c37b7fd1aa13709c7795f7ab1e345953b99e8918d61519c1f2ac301d71367aba87163ab06dd034a00ac4364e29f31cd20d656f8be4b61719c860d'
-
'0d6e1e7568a8b3e6867cd983285bf4901f7525df56838f71a04604d7754e3ae043970830fdbc085526da2a293a046612ccf0eeeda197a75c2b2030f57fe21d9e'
-
'a371b091ae62ca130e59c1c8347daee1e8c3c965797602597952c409742dcb523011ae753cddad292299c15560983a1dac6903874d52aa1de8986dd07a31c2cc'
-
'fbe7dee4e2639b8a0584949987f05acfd1c97ce42900e1c2ecaa84959e18695804e8f270d411cf39e25187e6ebdc1d10e88554228e72ca4660680c3b0052920f'
-
'6959f7c0993ac3e62a5190f5ce454ce014f2be348bec2806fefb14bbc83039991132a5f38804b7f6a005b2f83d97e04e0ef25ac1d7a563603c72229f3f80b293'
-
'30a9953c7b0471c45a5c73f26c48800ba9ead8d38a0c4e677b5e235f72b9ca2f8d4f9619d35a566c521adada117d06b7da2296e97b78186d9c7dd14354ebe308'
-
'3c848dedea88b2df166c9450af43a70a5faaf28d1e008911b9029e1b7793e73d3bd7953a1688c370e780b09480fe938800c2ed380f46a5725374e813ef024517'
-
'1a6fc16e96c3b967bd76aabae9e9427f0e2d631da8cbcb51b0ed29b74b3c63f3d31e8f7a976ca5bdba43506417afce7a1c027f5a57486a93ed6331ece9f5ffdc'
-
'bc1e3d374020e5f7b0eaab1e39148a454e3f056b2c3ac2f4ec1a9b37334d6ebf4089808f25f5fe5b6954a3e85c807a94336a6a918920a6180d5fdcdfc3f883a6'
-
'2f8948f836bae1dc7c01aaf30c8e03adc23dcecfe6326b671cbebdfbab3e641d209276341ec1d61f1e1e7d4327657114a53aec32632e738da7054db3059fccac'
-
'88eb23d3c07f6c414b43d623b8a0a46fc3cdd8e77a794319b6e794e52bd2af49a5f34c0f83001ddb29f684fe9a8de360da966c8a69d68e7723d258d2b6b015ee'
-
'177e2327ae6cf493e8d038a72fc3611bdc00035a7d6e0293bbcc0b6bfdf0be475b8d48e5ed1afabe7bb2c93ca159933183cce96ef13abde570391ae72aba5795'
-
'10ebde492056775d73c0079362e70d123896bcc329c7c019ab5a4db6b3d08b6b8a6eed8c237977e005ab7e7875b9b21a691a332c55db468efb2dfd505e9f4dac'
-
'954630ee472725721b7f9ab0268c21a5bc9d9bcd8cf0284a2dfbdf00668ebebef7258f0339c9a57322396b57d7514c0a3c640caa50ba30c489264b861a5f4f98'
-
'80ac3392299912abd280b08b0f4597f22a097692d2a73c6e8f2757bf11ec2566208e9b6e7570ca3afd457363dda0ca5366934a3005873b59b73d88cde901e324'
-
'a91ab92d371e84698e8cb4f5be8953dc365b4c66a8b4747d2ddc7015fd4420405010e43b361c7cc00b5c8311e21d0bbf0997447189a3c8f7b2608c5823fdeb14'
-
'7835061bb0a72de56f6b726618a8019eefb5bd95db82c198b0503b7f9e2e24a8d56166cca22df19dd6cb5a536c661686942dff88d246d8af46b8793313a077da'
-
'8dc23aa90756faff4885f294bdecf936cbf31150a4409b09e64b0b049566a7898637ac102a374b06bde215c3f80bd150c1f9aaccf01c050e612f9199a59077cc'
-
'b61d293bc3d3ebbfa80881bdb6d9090e6a1593260ca4fb5d03d65bdb04841e58b65fd903f94f81be6bb52203968db41a81e2c1f68b2d0c29727a636309d4de7d'
-
'f86e0ef

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (10 files)

2019-08-20 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 20, 2019 @ 22:34:35
  Author: andrewsc
Revision: 500355

archrelease: copy trunk to community-x86_64

Added:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 500354, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 500354, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 500354, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 500354, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 500354, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

+
 0001-Use-remoting-name-for-GDK-application-names.patch |  112 +-
 PKGBUILD   |  434 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 firefox-symbolic.svg   |  128 +-
 5 files changed, 720 insertions(+), 720 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-20 
22:34:00 UTC (rev 500354)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-20 
22:34:35 UTC (rev 500355)
@@ -1,56 +0,0 @@
-From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
-Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp | 6 +-
- widget/gtk/nsAppShell.cpp   | 7 +++
- 2 files changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 0b808ef215f06..28911c0ffeaec 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3728,11 +3728,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
-index 0686ff814916b..ae4a4ea55f420 100644
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -171,10 +172,8 @@ nsresult nsAppShell::Init() {
- // option when program uses gdk_set_program_class().
- //
- // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
--nsAutoString brandName;
--mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--if (!brandName.IsEmpty()) {
--  gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+if (gAppData) {
-+  gdk_set_program_class(gAppData->remotingName);
- }
-   }
- 
--- 
-2.21.0
-

Copied: 
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 500354, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  
(rev 0)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-20 
22:34:35 UTC (rev 500355)
@@ -0,0 +1,56 @@
+From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
+Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp | 6 +-
+ widget/gtk/nsAppShell.cpp   | 7 +++
+ 2 

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

2019-08-20 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 20, 2019 @ 22:34:00
  Author: andrewsc
Revision: 500354

upgpkg: firefox-developer-edition 69.0b15-1

firefox-developer-edition: Updating to 69.0b15

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 22:23:26 UTC (rev 500353)
+++ PKGBUILD2019-08-20 22:34:00 UTC (rev 500354)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=69.0b14
+pkgver=69.0b15
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -24,7 +24,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop firefox-symbolic.svg)
-sha512sums=('d38a39822c57c07e9455a09ed3277045a0694d7fabad680ff919e04c9b2d7fa09431f7482fdab1ca18f7c5d0566ff47cdcf8178386a9c99419278ed3aa0f5259'
+sha512sums=('53a30532a39e980744ee5ef43a1d14b61d4b1f2782c4dcf19daac88a7518ae61daa2997422d10693d7c799a36e229b66419f6a3ad172cb646d8685436eaffc38'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'40c931b8abbe5880122dbcc93d457e04e9b4f2bc3e0275e9e3e35dd347fe0658f9446c89e99553203be8a8c9ab6f4ca872a7aedc514920c107b9235c04df91dc'


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

2019-08-20 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 20, 2019 @ 22:23:26
  Author: eschwartz
Revision: 500353

archrelease: copy trunk to community-x86_64

Added:
  xapps/repos/community-x86_64/PKGBUILD
(from rev 500352, xapps/trunk/PKGBUILD)
Deleted:
  xapps/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 22:23:09 UTC (rev 500352)
+++ PKGBUILD2019-08-20 22:23:26 UTC (rev 500353)
@@ -1,43 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alex Filgueira 
-# Contributor: Nate Simon 
-
-pkgname=xapps
-pkgver=1.4.8
-pkgrel=1
-pkgdesc="Common library for X-Apps project"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname}";
-license=('GPL')
-depends=('libgnomekbd')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 
'python2-gobject' 'vala')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('6f6c37c568e58ea1644fecc3513708877d358eb3911ff138a992c5078e4b0c73')
-b2sums=('e2f61d6443d3fa4e655a1284afd71f73b9760e03a0c4983c888b563a2c43224eedabc32f39743e50626e245c6f1980f6b5e3190fbbdfb6a7f19c6126c09043f6')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr --buildtype=plain ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-# rm useless scripts
-rm -r "${pkgdir}"/usr/bin
-
-# byte-compile python modules since meson does not implement autotools'
-# py-compile.
-# This is kind of ugly but removes traces of the build root.
-for _python in python3 python2; do
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-${_python} -m compileall -d "${_destdir}" "${_file}"
-${_python} -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/${_python}* -name '*.py' -print0)
-done
-}

Copied: xapps/repos/community-x86_64/PKGBUILD (from rev 500352, 
xapps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 22:23:26 UTC (rev 500353)
@@ -0,0 +1,43 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapps
+pkgver=1.4.9
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname}";
+license=('GPL')
+depends=('libgnomekbd')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 
'python2-gobject' 'vala')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c2122c8c0616b07aca0654c86810549545363733ad36ec6f27451345083c80ca')
+b2sums=('cee89f34d9430288c4ba8e770db4b7652a90d405bbfd7ddbe488f85cf0a60957b02a1a21b201a9da5d690d999848a89b16ecbbbeab027628aa32018a41aeec19')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr --buildtype=plain ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+# rm useless scripts
+rm -r "${pkgdir}"/usr/bin
+
+# byte-compile python modules since meson does not implement autotools'
+# py-compile.
+# This is kind of ugly but removes traces of the build root.
+for _python in python3 python2; do
+while read -rd '' _file; do
+_destdir="$(dirname "${_file#${pkgdir}}")"
+${_python} -m compileall -d "${_destdir}" "${_file}"
+${_python} -O -m compileall -d "${_destdir}" "${_file}"
+done < <(find "${pkgdir}"/usr/lib/${_python}* -name '*.py' -print0)
+done
+}


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

2019-08-20 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 20, 2019 @ 22:23:09
  Author: eschwartz
Revision: 500352

upgpkg: xapps 1.4.9-1

upstream release

Modified:
  xapps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 22:22:48 UTC (rev 500351)
+++ PKGBUILD2019-08-20 22:23:09 UTC (rev 500352)
@@ -3,7 +3,7 @@
 # Contributor: Nate Simon 
 
 pkgname=xapps
-pkgver=1.4.8
+pkgver=1.4.9
 pkgrel=1
 pkgdesc="Common library for X-Apps project"
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('libgnomekbd')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 
'python2-gobject' 'vala')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('6f6c37c568e58ea1644fecc3513708877d358eb3911ff138a992c5078e4b0c73')
-b2sums=('e2f61d6443d3fa4e655a1284afd71f73b9760e03a0c4983c888b563a2c43224eedabc32f39743e50626e245c6f1980f6b5e3190fbbdfb6a7f19c6126c09043f6')
+sha256sums=('c2122c8c0616b07aca0654c86810549545363733ad36ec6f27451345083c80ca')
+b2sums=('cee89f34d9430288c4ba8e770db4b7652a90d405bbfd7ddbe488f85cf0a60957b02a1a21b201a9da5d690d999848a89b16ecbbbeab027628aa32018a41aeec19')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2019-08-20 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 20, 2019 @ 22:04:49
  Author: anatolik
Revision: 360515

archrelease: copy trunk to testing-any

Added:
  rubygems/repos/testing-any/
  rubygems/repos/testing-any/PKGBUILD
(from rev 360514, rubygems/trunk/PKGBUILD)
  rubygems/repos/testing-any/gemrc
(from rev 360514, rubygems/trunk/gemrc)

--+
 PKGBUILD |   42 ++
 gemrc|5 +
 2 files changed, 47 insertions(+)

Copied: rubygems/repos/testing-any/PKGBUILD (from rev 360514, 
rubygems/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-08-20 22:04:49 UTC (rev 360515)
@@ -0,0 +1,42 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=rubygems
+pkgdesc='Package management framework for Ruby'
+pkgver=3.0.6
+pkgrel=1
+arch=(any)
+url='https://rubygems.org/'
+license=(MIT)
+# To avoid circular dependency with ruby, move it to makedepends
+makedepends=(ruby)
+backup=(etc/gemrc)
+checkdepends=(rake)
+source=(rubygems-$pkgver.zip::https://github.com/rubygems/rubygems/archive/v${pkgver}.zip
+   gemrc)
+sha512sums=('7eed570a3179a93179aa7ece94a8fa70da7ee7b9a42efc8dd0780f6e21f8db56b0faa8f75ec848adbe088840cfd951e34d6ac67061bbdbcd1e2aea8228fc64ff'
+
'8cafd14d414ee3c16aa94f79072bc6c100262f925dc1300e785846c3faffc1356b8e2223af5684e3340c55032d41231179ffa948bb12e01dbae0f4131911')
+
+prepare() {
+  cd rubygems-${pkgver}
+}
+
+check() {
+  cd rubygems-${pkgver}
+
+  # disable as it requires a bund of ruby dependencies
+  #rake test
+}
+
+package() {
+  depends+=(ruby)
+  cd rubygems-${pkgver}
+
+  install -D -m644 ${srcdir}/gemrc "${pkgdir}/etc/gemrc"
+
+  local rubyver=$(ruby --version | sed -r 's|^ruby 
([[:digit:]]+\.[[:digit:]]+\.).*$|\1|')0
+
+  install -d "${pkgdir}/usr/lib/ruby/${rubyver}/"
+  install -D -m755 bin/gem "${pkgdir}/usr/bin/gem"
+  cp -r lib/* "${pkgdir}/usr/lib/ruby/${rubyver}/"
+  install -D -m644 MIT.txt "${pkgdir}/usr/share/licenses/rubygems/MIT.txt"
+}

Copied: rubygems/repos/testing-any/gemrc (from rev 360514, rubygems/trunk/gemrc)
===
--- testing-any/gemrc   (rev 0)
+++ testing-any/gemrc   2019-08-20 22:04:49 UTC (rev 360515)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at 
http://guides.rubygems.org/command-reference/#gem-environment
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
+#pacman installed gems and gem installed gems
+gem: --user-install


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

2019-08-20 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 20, 2019 @ 22:04:29
  Author: anatolik
Revision: 360514

upgpkg: rubygems 3.0.6-1

Modified:
  rubygems/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 17:42:25 UTC (rev 360513)
+++ PKGBUILD2019-08-20 22:04:29 UTC (rev 360514)
@@ -2,7 +2,7 @@
 
 pkgname=rubygems
 pkgdesc='Package management framework for Ruby'
-pkgver=3.0.4
+pkgver=3.0.6
 pkgrel=1
 arch=(any)
 url='https://rubygems.org/'
@@ -13,7 +13,7 @@
 checkdepends=(rake)
 
source=(rubygems-$pkgver.zip::https://github.com/rubygems/rubygems/archive/v${pkgver}.zip
gemrc)
-sha512sums=('628d93691689e61934734b43c14dca37cde285235711e96894690125c0e1bc73d5730764432994b28c17f113ba65b1e48eac5f23a4f02e4debc2f8763a5dab43'
+sha512sums=('7eed570a3179a93179aa7ece94a8fa70da7ee7b9a42efc8dd0780f6e21f8db56b0faa8f75ec848adbe088840cfd951e34d6ac67061bbdbcd1e2aea8228fc64ff'
 
'8cafd14d414ee3c16aa94f79072bc6c100262f925dc1300e785846c3faffc1356b8e2223af5684e3340c55032d41231179ffa948bb12e01dbae0f4131911')
 
 prepare() {


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

2019-08-20 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, August 20, 2019 @ 21:59:44
  Author: kgizdov
Revision: 500350

archrelease: copy trunk to community-testing-x86_64

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

--+
 PKGBUILD |  494 ++---
 1 file changed, 247 insertions(+), 247 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 21:43:58 UTC (rev 500349)
+++ PKGBUILD2019-08-20 21:59:44 UTC (rev 500350)
@@ -1,247 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Co-Maintainer: Konstantin Gizdov (kgizdov) 
-# Contributor: Adria Arrufat (archdria) 
-# Contributor: Thibault Lorrain (fredszaq) 
-
-pkgbase=tensorflow
-pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
-pkgver=1.14.0
-_pkgver=1.14.0
-pkgrel=4
-pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
-url="https://www.tensorflow.org/";
-license=('APACHE')
-arch=('x86_64')
-depends=('c-ares')
-makedepends=('bazel' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git' 'gcc'
- 'cudnn' 'python-pip' 'python-wheel' 'python-setuptools' 
'python-h5py'
- 'python-keras-applications' 'python-keras-preprocessing')
-optdepends=('tensorboard: Tensorflow visualization toolkit')
-source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz";)
-sha512sums=('ac9ea5a2d1c761aaafbdc335259e29c128127b8d069ec5b206067935180490aa95e93c7e13de57f7f54ce4ba4f34a822face22b4a028f60185edb380e5cd4787')
-
-get_pyver () {
-python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
-}
-
-prepare() {
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-cuda
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt-cuda
-
-  # These environment variables influence the behavior of the configure call 
below.
-  export PYTHON_BIN_PATH=/usr/bin/python
-  export USE_DEFAULT_PYTHON_LIB_PATH=1
-  export TF_NEED_JEMALLOC=1
-  export TF_NEED_KAFKA=0
-  export TF_NEED_OPENCL_SYCL=0
-  export TF_NEED_AWS=0
-  export TF_NEED_GCP=0
-  export TF_NEED_HDFS=0
-  export TF_NEED_S3=0
-  export TF_ENABLE_XLA=1
-  export TF_NEED_GDR=0
-  export TF_NEED_VERBS=0
-  export TF_NEED_OPENCL=0
-  export TF_NEED_MPI=0
-  export TF_NEED_TENSORRT=0
-  export TF_NEED_NGRAPH=0
-  export TF_NEED_IGNITE=0
-  export TF_NEED_ROCM=0
-  export TF_SET_ANDROID_WORKSPACE=0
-  export TF_DOWNLOAD_CLANG=0
-  export TF_NCCL_VERSION=2.4
-  export TF_IGNORE_MAX_BAZEL_VERSION=1
-  export NCCL_INSTALL_PATH=/usr
-  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc-8
-  export HOST_CXX_COMPILER_PATH=/usr/bin/gcc-8
-  export TF_CUDA_CLANG=0  # Clang currently disabled because it's not 
compatible at the moment.
-  export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
-  export TF_CUDA_PATHS=/opt/cuda,/usr/lib,/usr
-  export TF_CUDA_VERSION=$(/opt/cuda/bin/nvcc --version | sed -n 's/^.*release 
\(.*\),.*/\1/p')
-  export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
/usr/include/cudnn.h)
-  export 
TF_CUDA_COMPUTE_CAPABILITIES=3.5,3.7,5.0,5.2,5.3,6.0,6.1,6.2,7.0,7.2,7.5
-}
-
-build() {
-  echo "Building without cuda and without non-x86-64 optimizations"
-  cd "${srcdir}"/tensorflow-${_pkgver}
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=0
-  ./configure
-  bazel \
-build --config=opt --incompatible_no_support_tools_in_action_inputs=false \
-  //tensorflow:libtensorflow.so \
-  //tensorflow:libtensorflow_cc.so \
-  //tensorflow:install_headers \
-  //tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package "${srcdir}"/tmp
-
-
-  echo "Building without cuda and with non-x86-64 optimizations"
-  cd "${srcdir}"/tensorflow-${_pkgver}-opt
-  export CC_OPT_FLAGS="-march=haswell"
-  export TF_NEED_CUDA=0
-  ./configure
-  bazel \
-build --config=opt --incompatible_no_support_tools_in_action_inputs=false \
-  //tensorflow:libtensorflow.so \
-  //tensorflow:libtensorflow_cc.so \
-  //tensorflow:install_headers \
-  //tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package "${srcdir}"/tmpopt
-
-
-  echo "Building with cuda and without non-x86-64 optimizations"
-  cd "${srcdir}"/tensorflow-${_pkgver}-cuda
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=1
-  ./configure
-  bazel \
-build --config=opt --incompatible_no_support_tools_in_action_inputs=false \
-  //tensorflow:libtensorflow.so \
-  //tensorflow:libtensorflow_cc.so \
-  //tensorflow:install_headers \
-  //tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build

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

2019-08-20 Thread Brad Fanella via arch-commits
Date: Tuesday, August 20, 2019 @ 21:43:58
  Author: cesura
Revision: 500349

archrelease: copy trunk to community-any

Added:
  groovy/repos/community-any/PKGBUILD
(from rev 500348, groovy/trunk/PKGBUILD)
Deleted:
  groovy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 21:43:40 UTC (rev 500348)
+++ PKGBUILD2019-08-20 21:43:58 UTC (rev 500349)
@@ -1,56 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Alexander F Rødseth 
-# Contributor: Musikolo 
-# Contributor: Ruben Fonseca 
-# Contributor: Andreas W. Hauser 
-
-pkgname=groovy
-pkgver=2.5.6
-pkgrel=1
-pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
-arch=('any')
-url='http://groovy-lang.org/'
-license=('Apache')
-depends=('bash' 'java-environment')
-optdepends=('groovy-docs: html and pdf documentation for Groovy')
-makedepends=('gendesk')
-# .asc file is available for download, but there was no key available
-source=("https://dl.bintray.com/groovy/maven/apache-$pkgname-binary-$pkgver.zip";
-
"$pkgname.png::https://raw.githubusercontent.com/apache/incubator-groovy/master/subprojects/groovy-console/src/main/resources/groovy/ui/ConsoleIcon.png";)
-sha256sums=('b64d0807d85857cb9d7a2137c6d5d828890598597ad0fd149faac20198ed8e92'
-'24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
-
-prepare() {
-   # Generate desktop shortcut
-   gendesk -f -n \
-   --pkgname "$pkgname" \
-   --pkgdesc 'Groovy programming language' \
-   --exec 'groovyConsole' \
-   --name 'Groovy Console'
-
-   # Patch the scripts
-   for f in "$pkgname-$pkgver/bin/"*; do
-   sed 's:bin/env\ sh:bin/env\ 
sh\nGROOVY_HOME=/usr/share/groovy\nexport 
_JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=gasp $_JAVA_OPTIONS":' -i "$f"
-   done
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-
-   # Create the directories and package the files
-   install -d "$pkgdir/usr/share/groovy" "$pkgdir/usr/bin"
-   cp -r lib conf "$pkgdir/usr/share/groovy"
-   cp bin/* "$pkgdir/usr/bin"
-   rm "$pkgdir"/usr/bin/*completion
-   install -Dm644 bin/*completion -t 
"$pkgdir"/usr/share/bash-completion/completions
-
-   # Remove all DOS/Windows batch files
-   find $pkgdir -name '*.bat' -exec rm {} \;
-
-   # Package the license file
-   install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-
-   # Package the desktop shortcut for Groovy Console
-   install -Dm644 "$srcdir/$pkgname.desktop" -t 
"$pkgdir"/usr/share/applications
-   install -Dm644 "$srcdir/$pkgname.png" -t "$pkgdir"/usr/share/pixmaps
-}

Copied: groovy/repos/community-any/PKGBUILD (from rev 500348, 
groovy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 21:43:58 UTC (rev 500349)
@@ -0,0 +1,56 @@
+# Maintainer: Brad Fanella 
+# Contributor: Alexander F Rødseth 
+# Contributor: Musikolo 
+# Contributor: Ruben Fonseca 
+# Contributor: Andreas W. Hauser 
+
+pkgname=groovy
+pkgver=2.5.8
+pkgrel=1
+pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
+arch=('any')
+url='http://groovy-lang.org/'
+license=('Apache')
+depends=('bash' 'java-environment')
+optdepends=('groovy-docs: html and pdf documentation for Groovy')
+makedepends=('gendesk')
+# .asc file is available for download, but there was no key available
+source=("https://dl.bintray.com/groovy/maven/apache-$pkgname-binary-$pkgver.zip";
+
"$pkgname.png::https://raw.githubusercontent.com/apache/incubator-groovy/master/subprojects/groovy-console/src/main/resources/groovy/ui/ConsoleIcon.png";)
+sha256sums=('49fb14b98f9fed1744781e4383cf8bff76440032f58eb5fabdc9e67a5daa8742'
+'24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
+
+prepare() {
+   # Generate desktop shortcut
+   gendesk -f -n \
+   --pkgname "$pkgname" \
+   --pkgdesc 'Groovy programming language' \
+   --exec 'groovyConsole' \
+   --name 'Groovy Console'
+
+   # Patch the scripts
+   for f in "$pkgname-$pkgver/bin/"*; do
+   sed 's:bin/env\ sh:bin/env\ 
sh\nGROOVY_HOME=/usr/share/groovy\nexport 
_JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=gasp $_JAVA_OPTIONS":' -i "$f"
+   done
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+   # Create the directories and package the files
+   install -d "$pkgdir/usr/share/groovy" "$pkgdir/usr/bin"
+   cp -r lib conf "$pkgdir/usr/share/groovy"
+   cp bin/* "$pkgdir/usr/bin"
+   rm "$pkgdir"/usr/bin/*completion
+   install -Dm644 bin/*completion -t 
"$pkgdir"/usr/share/ba

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

2019-08-20 Thread Brad Fanella via arch-commits
Date: Tuesday, August 20, 2019 @ 21:43:40
  Author: cesura
Revision: 500348

upgpkg: groovy 2.5.8-1

Updated to version 2.5.8

Modified:
  groovy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 19:42:46 UTC (rev 500347)
+++ PKGBUILD2019-08-20 21:43:40 UTC (rev 500348)
@@ -5,7 +5,7 @@
 # Contributor: Andreas W. Hauser 
 
 pkgname=groovy
-pkgver=2.5.6
+pkgver=2.5.8
 pkgrel=1
 pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
 arch=('any')
@@ -17,7 +17,7 @@
 # .asc file is available for download, but there was no key available
 
source=("https://dl.bintray.com/groovy/maven/apache-$pkgname-binary-$pkgver.zip";
 
"$pkgname.png::https://raw.githubusercontent.com/apache/incubator-groovy/master/subprojects/groovy-console/src/main/resources/groovy/ui/ConsoleIcon.png";)
-sha256sums=('b64d0807d85857cb9d7a2137c6d5d828890598597ad0fd149faac20198ed8e92'
+sha256sums=('49fb14b98f9fed1744781e4383cf8bff76440032f58eb5fabdc9e67a5daa8742'
 '24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
 
 prepare() {


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

2019-08-20 Thread Jakob Gruber via arch-commits
Date: Tuesday, August 20, 2019 @ 19:42:46
  Author: schuay
Revision: 500347

archrelease: copy trunk to community-x86_64

Added:
  angband/repos/community-x86_64/PKGBUILD
(from rev 500346, angband/trunk/PKGBUILD)
Deleted:
  angband/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 19:42:36 UTC (rev 500346)
+++ PKGBUILD2019-08-20 19:42:46 UTC (rev 500347)
@@ -1,55 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Mike Sampson 
-# Contributor: Adrian Stratulat 
-# Contributor: Anton Bazhenov 
-# Contributor: KillaB 
-# Contributor: Callan Barrett 
-# Contributor: Christian Schmidt 
-# Contributor: Sebastian Sareyko 
-
-pkgname=angband
-pkgver=4.1.3
-pkgrel=1
-pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
-arch=('x86_64')
-url="http://rephial.org/";
-license=('GPL2' 'custom')
-depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses' 'xorg-fonts-misc')
-makedepends=('python-docutils')
-source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz";)
-
-prepare() {
-  cd "${srcdir}/angband-${pkgver}"
-
-  # Fix detection of ncurses config script for ncurses 6.0
-  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
-}
-
-build() {
-  cd "${srcdir}/angband-${pkgver}"
-
-  ./autogen.sh
-
-  ./configure \
---prefix=/usr \
---bindir=/usr/bin \
---sysconfdir=/usr/share/angband \
---with-configpath=/usr/share/angband \
---with-libpath=/usr/share/angband \
---enable-gtk \
---enable-sdl \
---enable-sdl-mixer
-
-  make
-}
-
-package() {
-  cd "${srcdir}/angband-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
-  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-
-md5sums=('e576c2dd05f3106a32db7057aa6b80c7')

Copied: angband/repos/community-x86_64/PKGBUILD (from rev 500346, 
angband/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 19:42:46 UTC (rev 500347)
@@ -0,0 +1,55 @@
+# Maintainer: schuay 
+# Contributor: Mike Sampson 
+# Contributor: Adrian Stratulat 
+# Contributor: Anton Bazhenov 
+# Contributor: KillaB 
+# Contributor: Callan Barrett 
+# Contributor: Christian Schmidt 
+# Contributor: Sebastian Sareyko 
+
+pkgname=angband
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
+arch=('x86_64')
+url="https://rephial.org/";
+license=('GPL2' 'custom')
+depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses' 'xorg-fonts-misc')
+makedepends=('python-docutils')
+source=("https://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz";)
+
+prepare() {
+  cd "${srcdir}/angband-${pkgver}"
+
+  # Fix detection of ncurses config script for ncurses 6.0
+  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
+}
+
+build() {
+  cd "${srcdir}/angband-${pkgver}"
+
+  ./autogen.sh
+
+  ./configure \
+--prefix=/usr \
+--bindir=/usr/bin \
+--sysconfdir=/usr/share/angband \
+--with-configpath=/usr/share/angband \
+--with-libpath=/usr/share/angband \
+--enable-gtk \
+--enable-sdl \
+--enable-sdl-mixer
+
+  make
+}
+
+package() {
+  cd "${srcdir}/angband-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
+  install -Dm644 docs/copying.rst 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+
+md5sums=('c0c11a5e73bf1ad9c31a9df8d5f03781')


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

2019-08-20 Thread Jakob Gruber via arch-commits
Date: Tuesday, August 20, 2019 @ 19:42:36
  Author: schuay
Revision: 500346

upgpkg: angband 4.2.0-1

4.2.0-1

Modified:
  angband/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 18:46:49 UTC (rev 500345)
+++ PKGBUILD2019-08-20 19:42:36 UTC (rev 500346)
@@ -8,7 +8,7 @@
 # Contributor: Sebastian Sareyko 
 
 pkgname=angband
-pkgver=4.1.3
+pkgver=4.2.0
 pkgrel=1
 pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
 arch=('x86_64')
@@ -49,7 +49,7 @@
   make DESTDIR="${pkgdir}" install
 
   rm -f "${pkgdir}/usr/share/angband/*/delete.me"
-  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 docs/copying.rst 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
 }
 
-md5sums=('e576c2dd05f3106a32db7057aa6b80c7')
+md5sums=('c0c11a5e73bf1ad9c31a9df8d5f03781')


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

2019-08-20 Thread Daniel M. Capella via arch-commits
Date: Tuesday, August 20, 2019 @ 18:46:49
  Author: polyzen
Revision: 500345

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 18:46:27 UTC (rev 500344)
+++ PKGBUILD2019-08-20 18:46:49 UTC (rev 500345)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Timothée Ravier 
-
-_commit=58a7ef6ce1c4c5824aa873932c67c858d1030771
-_name=dulwich
-pkgname=python-dulwich
-pkgver=0.19.12.r3.g29fc0ac
-pkgrel=1
-pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('x86_64')
-url=https://www.dulwich.io
-license=('GPL')
-depends=('python-certifi' 'python-urllib3')
-checkdepends=('python-mock')
-source=("https://github.com/dulwich/dulwich/archive/$_commit.tar.gz";)
-sha512sums=('fef54738d2e6b76ad2d4da5b8f638a5e60b9fc66f47f7ca1e124a6dc3cc380114434c1586bfd24e8f56efa74f7abcaaaeecaf713cff8e38d6e3f82c24836e0b5')
-
-build() {
-  cd $_name-$_commit
-  python setup.py build
-}
-
-check() {
-  cd $_name-$_commit
-  python -m unittest dulwich.tests.test_suite
-}
-
-package() {
-  cd $_name-$_commit
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dulwich/repos/community-x86_64/PKGBUILD (from rev 500344, 
python-dulwich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 18:46:49 UTC (rev 500345)
@@ -0,0 +1,32 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Timothée Ravier 
+
+_name=dulwich
+pkgname=python-dulwich
+pkgver=0.19.13
+pkgrel=1
+pkgdesc='Pure-Python implementation of the Git file formats and protocols'
+arch=('x86_64')
+url=https://www.dulwich.io
+license=('GPL')
+depends=('python-certifi' 'python-urllib3')
+checkdepends=('python-mock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz";)
+sha256sums=('aa628449c5f594a9a282f4d9e5993fef65481ef5e3b9b6c52ff31200f8f5dc95')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m unittest dulwich.tests.test_suite
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-20 Thread Daniel M. Capella via arch-commits
Date: Tuesday, August 20, 2019 @ 18:46:27
  Author: polyzen
Revision: 500344

upgpkg: python-dulwich 0.19.13-1

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 18:16:05 UTC (rev 500343)
+++ PKGBUILD2019-08-20 18:46:27 UTC (rev 500344)
@@ -1,10 +1,9 @@
 # Maintainer: Daniel M. Capella 
 # Contributor: Timothée Ravier 
 
-_commit=58a7ef6ce1c4c5824aa873932c67c858d1030771
 _name=dulwich
 pkgname=python-dulwich
-pkgver=0.19.12.r3.g29fc0ac
+pkgver=0.19.13
 pkgrel=1
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
 arch=('x86_64')
@@ -12,21 +11,21 @@
 license=('GPL')
 depends=('python-certifi' 'python-urllib3')
 checkdepends=('python-mock')
-source=("https://github.com/dulwich/dulwich/archive/$_commit.tar.gz";)
-sha512sums=('fef54738d2e6b76ad2d4da5b8f638a5e60b9fc66f47f7ca1e124a6dc3cc380114434c1586bfd24e8f56efa74f7abcaaaeecaf713cff8e38d6e3f82c24836e0b5')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz";)
+sha256sums=('aa628449c5f594a9a282f4d9e5993fef65481ef5e3b9b6c52ff31200f8f5dc95')
 
 build() {
-  cd $_name-$_commit
+  cd $_name-$pkgver
   python setup.py build
 }
 
 check() {
-  cd $_name-$_commit
+  cd $_name-$pkgver
   python -m unittest dulwich.tests.test_suite
 }
 
 package() {
-  cd $_name-$_commit
+  cd $_name-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
 


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

2019-08-20 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 20, 2019 @ 18:15:56
  Author: jlichtblau
Revision: 500342

upgpkg: manaplus 1.9.3.23-1 - new upstream release

Modified:
  manaplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 18:00:16 UTC (rev 500341)
+++ PKGBUILD2019-08-20 18:15:56 UTC (rev 500342)
@@ -4,7 +4,7 @@
 # Contributor: Jesse McClure 
 
 pkgname=manaplus
-pkgver=1.8.9.1
+pkgver=1.9.3.23
 pkgrel=1
 pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('mesa')
 replaces=('tmw')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
-sha256sums=('4843e55bb10cde50c62aa50e137e6df1682edd5bd5904f2e8e2f6e5a81399cb5')
+sha256sums=('7091507655971ec65977da07eef912c71849d92f36bfe098447b8a9fc6d8c9f1')
 
 prepare() {
   cd ManaPlus-$pkgver


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

2019-08-20 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 20, 2019 @ 18:16:05
  Author: jlichtblau
Revision: 500343

archrelease: copy trunk to community-x86_64

Added:
  manaplus/repos/community-x86_64/PKGBUILD
(from rev 500342, manaplus/trunk/PKGBUILD)
Deleted:
  manaplus/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 18:15:56 UTC (rev 500342)
+++ PKGBUILD2019-08-20 18:16:05 UTC (rev 500343)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Bjorn Lindeijer 
-# Contributor: Mateusz Herych 
-# Contributor: Jesse McClure 
-
-pkgname=manaplus
-pkgver=1.8.9.1
-pkgrel=1
-pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
-arch=('x86_64')
-url="https://manaplus.org/";
-license=('GPL')
-depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
-makedepends=('mesa')
-replaces=('tmw')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
-sha256sums=('4843e55bb10cde50c62aa50e137e6df1682edd5bd5904f2e8e2f6e5a81399cb5')
-
-prepare() {
-  cd ManaPlus-$pkgver
-
-  autoreconf -i
-}
-
-build() {
-  cd ManaPlus-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ManaPlus-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: manaplus/repos/community-x86_64/PKGBUILD (from rev 500342, 
manaplus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 18:16:05 UTC (rev 500343)
@@ -0,0 +1,36 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Bjorn Lindeijer 
+# Contributor: Mateusz Herych 
+# Contributor: Jesse McClure 
+
+pkgname=manaplus
+pkgver=1.9.3.23
+pkgrel=1
+pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
+arch=('x86_64')
+url="https://manaplus.org/";
+license=('GPL')
+depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
+makedepends=('mesa')
+replaces=('tmw')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
+sha256sums=('7091507655971ec65977da07eef912c71849d92f36bfe098447b8a9fc6d8c9f1')
+
+prepare() {
+  cd ManaPlus-$pkgver
+
+  autoreconf -i
+}
+
+build() {
+  cd ManaPlus-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ManaPlus-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in rapid-photo-downloader/repos/community-any (4 files)

2019-08-20 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 20, 2019 @ 18:00:16
  Author: jlichtblau
Revision: 500341

archrelease: copy trunk to community-any

Added:
  rapid-photo-downloader/repos/community-any/PKGBUILD
(from rev 500340, rapid-photo-downloader/trunk/PKGBUILD)
  rapid-photo-downloader/repos/community-any/rapid-photo-downloader.changelog
(from rev 500340, 
rapid-photo-downloader/trunk/rapid-photo-downloader.changelog)
Deleted:
  rapid-photo-downloader/repos/community-any/PKGBUILD
  rapid-photo-downloader/repos/community-any/rapid-photo-downloader.changelog

--+
 PKGBUILD |   68 ++---
 rapid-photo-downloader.changelog |   55 +++--
 2 files changed, 63 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 18:00:04 UTC (rev 500340)
+++ PKGBUILD2019-08-20 18:00:16 UTC (rev 500341)
@@ -1,34 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Marc Moody 
-# Contributor: Dinh Bowman 
-
-pkgname=rapid-photo-downloader
-pkgver=0.9.16
-pkgrel=1
-pkgdesc="Photo and video downloader"
-arch=('any')
-url="https://www.damonlynch.net/rapid/";
-license=('GPL3')
-depends=('desktop-file-utils' 'gstreamer' 'hicolor-icon-theme' 'libgexiv2' 
'libnotify'
- 'perl-image-exiftool' 'python-arrow' 'python-colour' 
'python-dateutil' 'python-easygui'
- 'python-gobject' 'python-gphoto2' 'python-psutil' 
'python-pymediainfo' 'python-pyqt5'
- 'python-pyzmq' 'python-rawkit' 'python-requests' 
'python-sortedcontainers'
- 'python-tornado' 'python-xdg' 'qt5-imageformats' 'udisks2')
-makedepends=('intltool' 'python-setuptools')
-changelog=$pkgname.changelog
-source=(https://launchpad.net/rapid/pyqt/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('053dec52f708139f4e1778ef4e6ca2a2223b9978dfec46d3e912337942a44346'
-'SKIP')
-validpgpkeys=('E26048A9F4A803B91CB1BD648005B1F36970BE28') # Damon Lynch 

-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  python setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: rapid-photo-downloader/repos/community-any/PKGBUILD (from rev 500340, 
rapid-photo-downloader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 18:00:16 UTC (rev 500341)
@@ -0,0 +1,34 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Marc Moody 
+# Contributor: Dinh Bowman 
+
+pkgname=rapid-photo-downloader
+pkgver=0.9.17
+pkgrel=1
+pkgdesc="Photo and video downloader"
+arch=('any')
+url="https://www.damonlynch.net/rapid/";
+license=('GPL3')
+depends=('desktop-file-utils' 'gstreamer' 'hicolor-icon-theme' 'libgexiv2' 
'libnotify'
+ 'perl-image-exiftool' 'python-arrow' 'python-colour' 
'python-dateutil' 'python-easygui'
+ 'python-gobject' 'python-gphoto2' 'python-psutil' 
'python-pymediainfo' 'python-pyqt5'
+ 'python-pyzmq' 'python-rawkit' 'python-requests' 
'python-sortedcontainers'
+ 'python-tornado' 'python-xdg' 'qt5-imageformats' 'udisks2')
+makedepends=('intltool' 'python-setuptools')
+changelog=$pkgname.changelog
+source=(https://launchpad.net/rapid/pyqt/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('26dbce5d2e775af39ce8f17224a862ed71a86a47768a7ebb04193d96535c7883'
+'SKIP')
+validpgpkeys=('E26048A9F4A803B91CB1BD648005B1F36970BE28') # Damon Lynch 

+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  python setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: rapid-photo-downloader.changelog
===
--- rapid-photo-downloader.changelog2019-08-20 18:00:04 UTC (rev 500340)
+++ rapid-photo-downloader.changelog2019-08-20 18:00:16 UTC (rev 500341)
@@ -1,26 +0,0 @@
-2019-08-15 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.9.16-1
-
-2019-04-08 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.9.14-1
-
-2018-11-07 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.9.13-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.9.12-1
-
-2018-03-22 Eli Schwartz 
-   * rapid-photo-downloader 0.4.11-5 PGP/HTTPS and fix missing read 
permissions on appdata
-
-2016-04-29 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.4.11-2 Hooks (part 1) rebuild
-
-2015-10-22 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.4.11-1
-
-2014-02-04 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.4.10-1
-
-2014-01-29 Jaroslav Lichtblau 
-   * rapid-photo-downloader 0.4.9-1 - moved from AUR to [community] with 
54 votes

Copied: 
rapid-photo-downloader/repos/community-any/rapid-photo-downloader.changelog 
(from rev 500340, rapid-photo-

[arch-commits] Commit in rapid-photo-downloader/trunk (2 files)

2019-08-20 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, August 20, 2019 @ 18:00:04
  Author: jlichtblau
Revision: 500340

upgpkg: rapid-photo-downloader 0.9.17-1 - new upstream release

Modified:
  rapid-photo-downloader/trunk/PKGBUILD
  rapid-photo-downloader/trunk/rapid-photo-downloader.changelog

--+
 PKGBUILD |4 ++--
 rapid-photo-downloader.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 17:05:14 UTC (rev 500339)
+++ PKGBUILD2019-08-20 18:00:04 UTC (rev 500340)
@@ -3,7 +3,7 @@
 # Contributor: Dinh Bowman 
 
 pkgname=rapid-photo-downloader
-pkgver=0.9.16
+pkgver=0.9.17
 pkgrel=1
 pkgdesc="Photo and video downloader"
 arch=('any')
@@ -17,7 +17,7 @@
 makedepends=('intltool' 'python-setuptools')
 changelog=$pkgname.changelog
 
source=(https://launchpad.net/rapid/pyqt/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('053dec52f708139f4e1778ef4e6ca2a2223b9978dfec46d3e912337942a44346'
+sha256sums=('26dbce5d2e775af39ce8f17224a862ed71a86a47768a7ebb04193d96535c7883'
 'SKIP')
 validpgpkeys=('E26048A9F4A803B91CB1BD648005B1F36970BE28') # Damon Lynch 

 

Modified: rapid-photo-downloader.changelog
===
--- rapid-photo-downloader.changelog2019-08-20 17:05:14 UTC (rev 500339)
+++ rapid-photo-downloader.changelog2019-08-20 18:00:04 UTC (rev 500340)
@@ -1,3 +1,6 @@
+2019-08-20 Jaroslav Lichtblau 
+   * rapid-photo-downloader 0.9.17-1
+
 2019-08-15 Jaroslav Lichtblau 
* rapid-photo-downloader 0.9.16-1
 


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 17:42:16
  Author: alucryd
Revision: 360512

upgpkg: java-openjfx 12.0.2.u1-2

Modified:
  java-openjfx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 17:05:21 UTC (rev 360511)
+++ PKGBUILD2019-08-20 17:42:16 UTC (rev 360512)
@@ -14,7 +14,7 @@
   java-openjfx-src
 )
 pkgver=12.0.2.u1
-pkgrel=1
+pkgrel=2
 pkgdesc='Java OpenJFX 12 client application platform (open-source 
implementation of JavaFX)'
 arch=(x86_64)
 url=https://wiki.openjdk.java.net/display/OpenJFX/Main
@@ -96,10 +96,10 @@
 
   cd rt-${pkgver//.u/+}
 
-  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjdk,share/licenses}
-  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-12-openjdk/
-  rm "${pkgdir}"/usr/lib/jvm/java-12-openjdk/lib/src.zip
-  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-12-openjdk/
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjfx,share/licenses}
+  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/
+  rm "${pkgdir}"/usr/lib/jvm/java-12-openjfx/lib/src.zip
+  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/
   cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java-openjfx
 }
 
@@ -114,8 +114,8 @@
 package_java-openjfx-src() {
   cd rt-${pkgver//.u/+}
 
-  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjdk,share/licenses}
-  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-12-openjdk/javafx-src.zip
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjfx,share/licenses}
+  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/javafx-src.zip
   ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-src
 }
 


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 17:42:25
  Author: alucryd
Revision: 360513

archrelease: copy trunk to testing-x86_64

Added:
  java-openjfx/repos/testing-x86_64/
  java-openjfx/repos/testing-x86_64/PKGBUILD
(from rev 360512, java-openjfx/trunk/PKGBUILD)
  java-openjfx/repos/testing-x86_64/gradle.properties
(from rev 360512, java-openjfx/trunk/gradle.properties)
  java-openjfx/repos/testing-x86_64/java-openjfx-flags.patch
(from rev 360512, java-openjfx/trunk/java-openjfx-flags.patch)
  java-openjfx/repos/testing-x86_64/java-openjfx-no-xlocale.patch
(from rev 360512, java-openjfx/trunk/java-openjfx-no-xlocale.patch)

---+
 PKGBUILD  |  122 +
 gradle.properties |3 
 java-openjfx-flags.patch  |  227 
 java-openjfx-no-xlocale.patch |   16 ++
 4 files changed, 368 insertions(+)

Copied: java-openjfx/repos/testing-x86_64/PKGBUILD (from rev 360512, 
java-openjfx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-20 17:42:25 UTC (rev 360513)
@@ -0,0 +1,122 @@
+# Maintainer: Guillaume Alaux 
+# Maintainer: Maxime Gauduin 
+# Contributor: William Gathoye 
+# Contributor: Emanuel Couto 
+# Contributor: Richard Jackson 
+# Contributor: Tinx 
+# Contributor: Jens Kapitza 
+# Contributor: Olli 
+
+pkgbase=java-openjfx
+pkgname=(
+  java-openjfx
+  java-openjfx-doc
+  java-openjfx-src
+)
+pkgver=12.0.2.u1
+pkgrel=2
+pkgdesc='Java OpenJFX 12 client application platform (open-source 
implementation of JavaFX)'
+arch=(x86_64)
+url=https://wiki.openjdk.java.net/display/OpenJFX/Main
+license=(custom)
+makedepends=(
+  alsa-lib
+  ant
+  cairo
+  cmake
+  ffmpeg
+  freetype2
+  gdk-pixbuf2
+  glib2
+  gperf
+  gtk2
+  gtk3
+  java-environment-openjdk=12
+  libgl
+  libx11
+  libxtst
+  pango
+  python2
+  qt5-base
+  ruby
+  unzip
+  webkit2gtk
+  zip
+)
+source=(
+  https://hg.openjdk.java.net/openjfx/12-dev/rt/archive/${pkgver//.u/+}.tar.bz2
+  gradle.properties
+  https://services.gradle.org/distributions/gradle-4.8-bin.zip
+  java-openjfx-flags.patch
+  java-openjfx-no-xlocale.patch
+)
+sha256sums=('7d5a8d64892764659ff2f79353b93b09729d8377d981d374a4022cd5497d69ea'
+'2622aa35d733cc69f4421f1cd053bf425e89f93141cb52c9f016a9b425fc0cb6'
+'f3e29692a8faa94eb0b02ebf36fa263a642b3ae8694ef806c45c345b8683f1ba'
+'e76f202e8163a9a6e02138987bfc344a66f70aa30b8b699c6bdb41eec31c1465'
+'220c63396561867a6d07ae81b6390160d8f91502587e4873998e3b7a83793a1c')
+
+prepare() {
+  cd rt-${pkgver//.u/+}
+
+  ln -sf ../gradle.properties .
+  patch -Np1 -i ../java-openjfx-flags.patch
+  patch -Np1 -i ../java-openjfx-no-xlocale.patch
+}
+
+build() {
+  cd rt-${pkgver//.u/+}
+
+  ../gradle-4.8/bin/gradle zips
+}
+
+package_java-openjfx() {
+  depends=(
+alsa-lib
+cairo
+ffmpeg
+gdk-pixbuf2
+glib2
+gtk2
+gtk3
+java-runtime-openjdk=12
+libavcodec.so
+libavformat.so
+libfreetype.so
+libgl
+libx11
+libxtst
+pango
+python2
+qt5-base
+ruby
+unzip
+webkit2gtk
+  )
+
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjfx,share/licenses}
+  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/
+  rm "${pkgdir}"/usr/lib/jvm/java-12-openjfx/lib/src.zip
+  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/
+  cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java-openjfx
+}
+
+package_java-openjfx-doc() {
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755 "${pkgdir}"/usr/share/{doc,licenses}
+  cp -dr --no-preserve=ownership build/javadoc 
"${pkgdir}"/usr/share/doc/java-openjfx
+  ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-doc
+}
+
+package_java-openjfx-src() {
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-12-openjfx,share/licenses}
+  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-12-openjfx/javafx-src.zip
+  ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-src
+}
+
+# vim: ts=2 sw=2 et:

Copied: java-openjfx/repos/testing-x86_64/gradle.properties (from rev 360512, 
java-openjfx/trunk/gradle.properties)
===
--- testing-x86_64/gradle.properties(rev 0)
+++ testing-x86_64/gradle.properties2019-08-20 17:42:25 UTC (rev 360513)
@@ -0,0 +1,3 @@
+COMPILE_MEDIA = true
+COMPILE_WEBKIT = true
+CONF = Release

Copied: java-openjfx/repos/testing-x86_64/java-openjfx-flags.patch (from rev 
360512, java-openjfx/trunk/java-openjfx-flags.patch)
===
--- testing-x86_64/java-openjfx-flags.patch

[arch-commits] Commit in lib32-flac/repos/multilib-x86_64 (3 files)

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 17:05:14
  Author: heftig
Revision: 500339

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-flac/repos/multilib-x86_64/PKGBUILD
(from rev 500337, lib32-flac/trunk/PKGBUILD)
Deleted:
  lib32-flac/repos/multilib-x86_64/PKGBUILD
  lib32-flac/repos/multilib-x86_64/flac-1.2.1-gcc-4.3-includes.patch

---+
 PKGBUILD  |   80 
 flac-1.2.1-gcc-4.3-includes.patch |   11 
 2 files changed, 46 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 17:05:14 UTC (rev 500338)
+++ PKGBUILD2019-08-20 17:05:14 UTC (rev 500339)
@@ -1,34 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-_pkgbasename=flac
-pkgname=lib32-$_pkgbasename
-pkgver=1.3.2
-pkgrel=2
-pkgdesc="Free Lossless Audio Codec (32-bit)"
-arch=('x86_64')
-url="http://flac.sourceforge.net/";
-license=('BSD' 'GPL')
-depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename)
-makedepends=('nasm' gcc-multilib)
-options=('!makeflags')
-source=(https://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
-sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${_pkgbasename}-${pkgver}"
-  ./configure --prefix=/usr --disable-sse --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd "${_pkgbasename}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-flac/repos/multilib-x86_64/PKGBUILD (from rev 500337, 
lib32-flac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 17:05:14 UTC (rev 500339)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+_pkgbasename=flac
+pkgname=lib32-$_pkgbasename
+pkgver=1.3.3
+pkgrel=1
+pkgdesc='Free Lossless Audio Codec (32-bit)'
+url='https://xiph.org/flac/'
+arch=('x86_64')
+license=('BSD' 'GPL')
+depends=('lib32-gcc-libs' 'lib32-libogg' $_pkgbasename)
+makedepends=('nasm')
+source=(https://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
+sha256sums=('213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748')
+sha512sums=('d6417e14fab0c41b2df369e5e39ce62a5f588e491af4d465b0162f74e171e5549b2f061867f344bfbf8aaccd246bf5f2acd697e532a2c7901c920c69429b1a28')
+
+build() {
+  cd ${_pkgbasename}-${pkgver}
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-thorough-tests \
+--disable-sse
+  make
+}
+
+check() {
+  cd ${_pkgbasename}-${pkgver}
+  make check
+}
+
+package() {
+  provides=('libFLAC.so' 'libFLAC++.so')
+
+  cd ${_pkgbasename}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: flac-1.2.1-gcc-4.3-includes.patch
===
--- flac-1.2.1-gcc-4.3-includes.patch   2019-08-20 17:05:14 UTC (rev 500338)
+++ flac-1.2.1-gcc-4.3-includes.patch   2019-08-20 17:05:14 UTC (rev 500339)
@@ -1,11 +0,0 @@
-diff -Naur flac-1.2.1-orig/examples/cpp/encode/file/main.cpp 
flac-1.2.1/examples/cpp/encode/file/main.cpp
 flac-1.2.1-orig/examples/cpp/encode/file/main.cpp  2007-09-13 
09:58:03.0 -0600
-+++ flac-1.2.1/examples/cpp/encode/file/main.cpp   2007-11-18 
12:59:45.0 -0600
-@@ -30,6 +30,7 @@
- 
- #include 
- #include 
-+#include 
- #include "FLAC++/metadata.h"
- #include "FLAC++/encoder.h"
- 


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 17:05:21
  Author: heftig
Revision: 360511

archrelease: copy trunk to extra-x86_64

Added:
  gnome-photos/repos/extra-x86_64/PKGBUILD
(from rev 360510, gnome-photos/trunk/PKGBUILD)
Deleted:
  gnome-photos/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:42:45 UTC (rev 360510)
+++ PKGBUILD2019-08-20 17:05:21 UTC (rev 360511)
@@ -1,33 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-photos
-pkgver=3.32.0
-pkgrel=1
-pkgdesc="Access, organize, and share your photos on GNOME"
-arch=(x86_64)
-url="https://wiki.gnome.org/Apps/Photos";
-license=(GPL)
-depends=(exempi gtk3 libexif librsvg babl gegl gsettings-desktop-schemas 
grilo-plugins lcms2
- tracker-miners geocode-glib grilo gfbgraph libgdata libgexiv2 libraw 
gnome-online-accounts
- gnome-online-miners dleyna-server dleyna-renderer libdazzle)
-makedepends=(python yelp-tools git meson)
-groups=(gnome)
-_commit=237e904f3c5120611d73e66fb5506de1b8ea97c7  # tags/3.32.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-photos.git#commit=$_commit";
-"git+https://gitlab.gnome.org/GNOME/libgd.git";)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-photos/repos/extra-x86_64/PKGBUILD (from rev 360510, 
gnome-photos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 17:05:21 UTC (rev 360511)
@@ -0,0 +1,33 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-photos
+pkgver=3.32.1
+pkgrel=1
+pkgdesc="Access, organize, and share your photos on GNOME"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/Photos";
+license=(GPL)
+depends=(exempi gtk3 libexif librsvg babl gegl gsettings-desktop-schemas 
grilo-plugins lcms2
+ tracker-miners geocode-glib grilo gfbgraph libgdata libgexiv2 libraw 
gnome-online-accounts
+ gnome-online-miners dleyna-server dleyna-renderer libdazzle)
+makedepends=(python yelp-tools git meson)
+groups=(gnome)
+_commit=0917d3978a9c4c766a0460f5bed3492aca130caf  # tags/3.32.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-photos.git#commit=$_commit";
+"git+https://gitlab.gnome.org/GNOME/libgd.git";)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 17:05:14
  Author: heftig
Revision: 500338

archrelease: copy trunk to community-any

Added:
  jruby/repos/community-any/PKGBUILD
(from rev 500337, jruby/trunk/PKGBUILD)
Deleted:
  jruby/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:59:47 UTC (rev 500337)
+++ PKGBUILD2019-08-20 17:05:14 UTC (rev 500338)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: FaziBear 
-
-pkgname=jruby
-pkgver=9.2.7.0
-pkgrel=1
-pkgdesc="100% pure-Java implementation of the Ruby programming language"
-arch=(any)
-url="https://www.jruby.org/";
-license=(EPL GPL2 LGPL2.1 custom)
-options=(!strip)
-_tarname=jruby-dist-$pkgver-bin.tar.gz
-noextract=($_tarname)
-source=(https://repo1.maven.org/maven2/org/jruby/jruby-dist/$pkgver/$_tarname)
-md5sums=('c0111b2cafa920df76284044e1aeedc7')
-sha1sums=('dc35f9bb991f526f058bf6b9591c460f98cffe9e')
-sha256sums=('da7c1a5ce90015c0bafd4bca0352294e08fe1c9ec049ac51e82fe57ed50e1348')
-
-package() {
-  depends=(java-runtime-headless bash)
-
-  cd "$pkgdir"
-
-  mkdir opt
-  bsdtar -C opt -xf "$srcdir/$_tarname"
-  mv opt/jruby-$pkgver opt/jruby
-
-  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -print 
-delete
-  rm -rv opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-*BSD}
-
-  chmod -cR g-w opt/jruby
-
-  mkdir -p usr/bin
-  ln -srt usr/bin opt/jruby/bin/j{irb,irb_swing,gem,ruby,rubyc}
-
-  mkdir -p usr/share/licenses/$pkgname
-  ln -srt usr/share/licenses/$pkgname opt/jruby/COPYING
-}

Copied: jruby/repos/community-any/PKGBUILD (from rev 500337, 
jruby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 17:05:14 UTC (rev 500338)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: FaziBear 
+
+pkgname=jruby
+pkgver=9.2.8.0
+pkgrel=1
+pkgdesc="100% pure-Java implementation of the Ruby programming language"
+arch=(any)
+url="https://www.jruby.org/";
+license=(EPL GPL2 LGPL2.1 custom)
+options=(!strip)
+_tarname=jruby-dist-$pkgver-bin.tar.gz
+noextract=($_tarname)
+source=(https://repo1.maven.org/maven2/org/jruby/jruby-dist/$pkgver/$_tarname)
+md5sums=('7d652b586a18f1c665289fd7e6edf4f5')
+sha1sums=('5b0b73b3d696afaeac92e6f8879dedcc63ac39d8')
+sha256sums=('b7c58688093f54acd89d732a8bf40e3ae0ac4c92488d6f5b424c33e4fb09c7bb')
+
+package() {
+  depends=(java-runtime-headless bash)
+
+  cd "$pkgdir"
+
+  mkdir opt
+  bsdtar -C opt -xf "$srcdir/$_tarname"
+  mv opt/jruby-$pkgver opt/jruby
+
+  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -print 
-delete
+  rm -rv opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-*BSD}
+
+  chmod -cR g-w opt/jruby
+
+  mkdir -p usr/bin
+  ln -srt usr/bin opt/jruby/bin/j{irb,irb_swing,gem,ruby,rubyc}
+
+  mkdir -p usr/share/licenses/$pkgname
+  ln -srt usr/share/licenses/$pkgname opt/jruby/COPYING
+}


[arch-commits] Commit in lib32-flac/trunk (PKGBUILD flac-1.2.1-gcc-4.3-includes.patch)

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:59:47
  Author: heftig
Revision: 500337

1.3.3-1

Modified:
  lib32-flac/trunk/PKGBUILD
Deleted:
  lib32-flac/trunk/flac-1.2.1-gcc-4.3-includes.patch

---+
 PKGBUILD  |   34 +++---
 flac-1.2.1-gcc-4.3-includes.patch |   11 ---
 2 files changed, 23 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:51:11 UTC (rev 500336)
+++ PKGBUILD2019-08-20 16:59:47 UTC (rev 500337)
@@ -2,30 +2,42 @@
 
 _pkgbasename=flac
 pkgname=lib32-$_pkgbasename
-pkgver=1.3.2
-pkgrel=2
-pkgdesc="Free Lossless Audio Codec (32-bit)"
+pkgver=1.3.3
+pkgrel=1
+pkgdesc='Free Lossless Audio Codec (32-bit)'
+url='https://xiph.org/flac/'
 arch=('x86_64')
-url="http://flac.sourceforge.net/";
 license=('BSD' 'GPL')
-depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename)
-makedepends=('nasm' gcc-multilib)
-options=('!makeflags')
+depends=('lib32-gcc-libs' 'lib32-libogg' $_pkgbasename)
+makedepends=('nasm')
 
source=(https://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
-sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
+sha256sums=('213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748')
+sha512sums=('d6417e14fab0c41b2df369e5e39ce62a5f588e491af4d465b0162f74e171e5549b2f061867f344bfbf8aaccd246bf5f2acd697e532a2c7901c920c69429b1a28')
 
 build() {
+  cd ${_pkgbasename}-${pkgver}
+
   export CC="gcc -m32"
   export CXX="g++ -m32"
   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
 
-  cd "${_pkgbasename}-${pkgver}"
-  ./configure --prefix=/usr --disable-sse --libdir=/usr/lib32
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-thorough-tests \
+--disable-sse
   make
 }
 
+check() {
+  cd ${_pkgbasename}-${pkgver}
+  make check
+}
+
 package() {
-  cd "${_pkgbasename}-${pkgver}"
+  provides=('libFLAC.so' 'libFLAC++.so')
+
+  cd ${_pkgbasename}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
   rm -rf "${pkgdir}"/usr/{include,share,bin}

Deleted: flac-1.2.1-gcc-4.3-includes.patch
===
--- flac-1.2.1-gcc-4.3-includes.patch   2019-08-20 16:51:11 UTC (rev 500336)
+++ flac-1.2.1-gcc-4.3-includes.patch   2019-08-20 16:59:47 UTC (rev 500337)
@@ -1,11 +0,0 @@
-diff -Naur flac-1.2.1-orig/examples/cpp/encode/file/main.cpp 
flac-1.2.1/examples/cpp/encode/file/main.cpp
 flac-1.2.1-orig/examples/cpp/encode/file/main.cpp  2007-09-13 
09:58:03.0 -0600
-+++ flac-1.2.1/examples/cpp/encode/file/main.cpp   2007-11-18 
12:59:45.0 -0600
-@@ -30,6 +30,7 @@
- 
- #include 
- #include 
-+#include 
- #include "FLAC++/metadata.h"
- #include "FLAC++/encoder.h"
- 


[arch-commits] Commit in opera-ffmpeg-codecs/repos/community-x86_64 (12 files)

2019-08-20 Thread Ike Devolder via arch-commits
Date: Tuesday, August 20, 2019 @ 16:51:11
  Author: idevolder
Revision: 500336

archrelease: copy trunk to community-x86_64

Added:
  opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD
(from rev 500335, opera-ffmpeg-codecs/trunk/PKGBUILD)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-0.patch
(from rev 500335, opera-ffmpeg-codecs/trunk/chromium-73-gcc-0.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-2.patch
(from rev 500335, opera-ffmpeg-codecs/trunk/chromium-73-gcc-2.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-3.patch
(from rev 500335, opera-ffmpeg-codecs/trunk/chromium-73-gcc-3.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-FORTIFY_SOURCE-r2.patch
(from rev 500335, 
opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch)
  
opera-ffmpeg-codecs/repos/community-x86_64/chromium-last-commit-position-r1.patch
(from rev 500335, 
opera-ffmpeg-codecs/trunk/chromium-last-commit-position-r1.patch)
Deleted:
  opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-0.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-2.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-3.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-FORTIFY_SOURCE-r2.patch
  
opera-ffmpeg-codecs/repos/community-x86_64/chromium-last-commit-position-r1.patch

+
 PKGBUILD   |  132 +-
 chromium-73-gcc-0.patch|  216 +++
 chromium-73-gcc-2.patch|  102 +++---
 chromium-73-gcc-3.patch|  138 +--
 chromium-FORTIFY_SOURCE-r2.patch   |   60 
 chromium-last-commit-position-r1.patch |   52 +++
 6 files changed, 350 insertions(+), 350 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:51:03 UTC (rev 500335)
+++ PKGBUILD2019-08-20 16:51:11 UTC (rev 500336)
@@ -1,66 +0,0 @@
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-
-pkgname=opera-ffmpeg-codecs
-pkgver=75.0.3770.142
-pkgrel=1
-pkgdesc="additional support for proprietary codecs for opera"
-arch=('x86_64')
-url="https://ffmpeg.org/";
-license=('LGPL2.1')
-depends=('glibc')
-makedepends=(
-  'gtk3' 'libexif' 'libxss' 'ninja' 'nss' 'pciutils' 'python2'
-  'xdg-utils' 'gn'
-)
-options=('!strip')
-source=(
-  
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz";
-)
-sha512sums=('89534fafe06281cf8ac328f7a17c192f4a03cbc8e6b410626ea2e7993231b4ba195b4190a3f183fad63a03602df7b763a776f10802b1330c737f0249bf17a792')
-
-prepare() {
-  cd "$srcdir/chromium-$pkgver"
-
-  # Use Python 2
-  find -name '*.py' | xargs sed -e 's|env python|&2|g' -e 's|bin/python|&2|g' 
-i
-
-  # force some 'older' binaries in the path
-  [[ -d "$srcdir/path" ]] && rm -rf "$srcdir/path"
-  mkdir "$srcdir/path"
-  ln -s /usr/bin/python2 "$srcdir/path/python"
-
-}
-
-build() {
-  cd "$srcdir/chromium-$pkgver"
-
-  python2 tools/clang/scripts/update.py
-
-  export 
PATH="${srcdir}/chromium-${pkgver}/third_party/llvm-build/Release+Asserts/bin:$srcdir/path:$PATH"
-
-  export CC="clang"
-  export CXX="clang++"
-
-  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_hevc_demuxing=true enable_ac3_eac3_audio_demuxing=true 
use_gnome_keyring=false use_sysroot=false use_gold=false use_allocator=\"none\" 
linux_use_bundled_binutils=false fatal_linker_warnings=false 
treat_warnings_as_errors=false enable_nacl=false enable_nacl_nonsfi=false 
is_clang=true clang_use_chrome_plugins=true is_component_build=true 
is_debug=false symbol_level=0 use_custom_libcxx=false use_lld=false 
use_jumbo_build=false"
-
-  #(
-#cd third_party/ffmpeg
-#chromium/scripts/build_ffmpeg.py linux x64 --branding ChromeOS
-#chromium/scripts/copy_config.sh
-#chromium/scripts/generate_gn.py
-  #)
-
-  gn gen out/Release -v --args="$args" --script-executable=/usr/bin/python2
-
-  ninja -C out/Release -v media/ffmpeg
-}
-
-package() {
-  cd "$srcdir/chromium-$pkgver"
-
-  install -Dm644 out/Release/libffmpeg.so \
-"$pkgdir/usr/lib/opera/lib_extra/libffmpeg.so"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD (from rev 500335, 
opera-ffmpeg-codecs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:51:11 UTC (rev 500336)
@@ -0,0 +1,66 @@
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+
+pkgname=opera-ffmpeg-codecs
+pkgver=76.0.3809.100
+pkgrel=1
+pkgdesc="additional support for proprietary codecs for opera"
+arch=('x86_64')
+url="https://ffmpeg.org/";
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=(
+  'gtk3'

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

2019-08-20 Thread Ike Devolder via arch-commits
Date: Tuesday, August 20, 2019 @ 16:51:03
  Author: idevolder
Revision: 500335

upgpkg: opera-ffmpeg-codecs 76.0.3809.100-1

Modified:
  opera-ffmpeg-codecs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:50:10 UTC (rev 500334)
+++ PKGBUILD2019-08-20 16:51:03 UTC (rev 500335)
@@ -2,7 +2,7 @@
 # Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
 
 pkgname=opera-ffmpeg-codecs
-pkgver=75.0.3770.142
+pkgver=76.0.3809.100
 pkgrel=1
 pkgdesc="additional support for proprietary codecs for opera"
 arch=('x86_64')
@@ -17,7 +17,7 @@
 source=(
   
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz";
 )
-sha512sums=('89534fafe06281cf8ac328f7a17c192f4a03cbc8e6b410626ea2e7993231b4ba195b4190a3f183fad63a03602df7b763a776f10802b1330c737f0249bf17a792')
+sha512sums=('63cfb45dc6bb0b1662ba4ffebc6313c24d65dae10a61752575e34a24d8d3d6f80e0422a984b560b259c299d6e493dfa177907201a1c1f785a7e294c9a03bd8a1')
 
 prepare() {
   cd "$srcdir/chromium-$pkgver"


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

2019-08-20 Thread Ike Devolder via arch-commits
Date: Tuesday, August 20, 2019 @ 16:50:10
  Author: idevolder
Revision: 500334

archrelease: copy trunk to community-x86_64

Added:
  opera/repos/community-x86_64/PKGBUILD
(from rev 500333, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 500333, opera/trunk/default)
  opera/repos/community-x86_64/eula.html
(from rev 500333, opera/trunk/eula.html)
  opera/repos/community-x86_64/opera
(from rev 500333, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 500333, opera/trunk/opera.install)
  opera/repos/community-x86_64/privacy.html
(from rev 500333, opera/trunk/privacy.html)
  opera/repos/community-x86_64/terms.html
(from rev 500333, 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 500333:500334 to see the changes.


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

2019-08-20 Thread Ike Devolder via arch-commits
Date: Tuesday, August 20, 2019 @ 16:50:00
  Author: idevolder
Revision: 500333

upgpkg: opera 63.0.3368.35-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:38:44 UTC (rev 500332)
+++ PKGBUILD2019-08-20 16:50:00 UTC (rev 500333)
@@ -9,7 +9,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=62.0.3331.116
+pkgver=63.0.3368.35
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="https://www.opera.com/";
@@ -31,7 +31,7 @@
 'terms.html'
 'privacy.html'
 )
-sha512sums=('8bbcb77d12f86f3a37ee77f6c4de636b976a1f1367e0992d7efed76e718037bce8e651b0e1a4a722e7c8d9b2a2ad2223c0b6dfd7084191c2e4d670d682a23a52'
+sha512sums=('2bb502fbd447efb07163f603f3e8aef23595020483a2670e7cc5ee1faeb093bbcbb8d42cb032ab13b8d6a3978ac305213246843e7603bda16b1c17295f62f87b'
 
'7e854e4c972785b8941f60117fbe4b88baeb8d7ca845ef2e10e8064043411da73821ba1ab0068df61e902f242a3ce355b51ffa9eab5397ff3ae3b5defd1be496'
 
'ddb1773877fcfd7d9674e63263a80f9dd5a3ba414cda4cc6c411c88d49c1d5175eede66d9362558ddd53c928c723101e4e110479ae88b8aec4d2366ec179297f'
 
'285a0633e5863ec9c9af99138ff0b59da155a2dd72a340e784e53de3e801029eb6ca2e4b38846592b85b9f8b99dcb6f6eedbed273057a9216abe31c396d9f28a'


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:42:45
  Author: alucryd
Revision: 360510

archrelease: copy trunk to testing-x86_64

Added:
  java11-openjfx/repos/testing-x86_64/
  java11-openjfx/repos/testing-x86_64/PKGBUILD
(from rev 360509, java11-openjfx/trunk/PKGBUILD)
  java11-openjfx/repos/testing-x86_64/gradle.properties
(from rev 360509, java11-openjfx/trunk/gradle.properties)
  java11-openjfx/repos/testing-x86_64/java11-openjfx-flags.patch
(from rev 360509, java11-openjfx/trunk/java11-openjfx-flags.patch)
  java11-openjfx/repos/testing-x86_64/java11-openjfx-no-xlocale.patch
(from rev 360509, java11-openjfx/trunk/java11-openjfx-no-xlocale.patch)

-+
 PKGBUILD|  122 
 gradle.properties   |3 
 java11-openjfx-flags.patch  |  227 ++
 java11-openjfx-no-xlocale.patch |   16 ++
 4 files changed, 368 insertions(+)

Copied: java11-openjfx/repos/testing-x86_64/PKGBUILD (from rev 360509, 
java11-openjfx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-20 16:42:45 UTC (rev 360510)
@@ -0,0 +1,122 @@
+# Maintainer: Guillaume Alaux 
+# Maintainer: Maxime Gauduin 
+# Contributor: William Gathoye 
+# Contributor: Emanuel Couto 
+# Contributor: Richard Jackson 
+# Contributor: Tinx 
+# Contributor: Jens Kapitza 
+# Contributor: Olli 
+
+pkgbase=java11-openjfx
+pkgname=(
+  java11-openjfx
+  java11-openjfx-doc
+  java11-openjfx-src
+)
+pkgver=11.0.3.u1
+pkgrel=2
+pkgdesc='Java OpenJFX 11 client application platform (open-source 
implementation of JavaFX)'
+arch=(x86_64)
+url=https://wiki.openjdk.java.net/display/OpenJFX/Main
+license=(custom)
+makedepends=(
+  alsa-lib
+  ant
+  cairo
+  cmake
+  ffmpeg
+  freetype2
+  gdk-pixbuf2
+  glib2
+  gperf
+  gtk2
+  gtk3
+  java-environment-openjdk=11
+  libgl
+  libx11
+  libxtst
+  pango
+  python2
+  qt5-base
+  ruby
+  unzip
+  webkit2gtk
+  zip
+)
+source=(
+  https://hg.openjdk.java.net/openjfx/11/rt/archive/${pkgver//.u/+}.tar.bz2
+  gradle.properties
+  https://services.gradle.org/distributions/gradle-4.8-bin.zip
+  java11-openjfx-flags.patch
+  java11-openjfx-no-xlocale.patch
+)
+sha256sums=('c4a42e9f7ac94ca3b05b363375f782bc79be9446bee23eb94e6175a97b5262ae'
+'2622aa35d733cc69f4421f1cd053bf425e89f93141cb52c9f016a9b425fc0cb6'
+'f3e29692a8faa94eb0b02ebf36fa263a642b3ae8694ef806c45c345b8683f1ba'
+'62d7356654b541a9f868cc7beb185e64a1375d9a734b906ba00eacbee258d16e'
+'220c63396561867a6d07ae81b6390160d8f91502587e4873998e3b7a83793a1c')
+
+prepare() {
+  cd rt-${pkgver//.u/+}
+
+  ln -sf ../gradle.properties .
+  patch -Np1 -i ../java11-openjfx-flags.patch
+  patch -Np1 -i ../java11-openjfx-no-xlocale.patch
+}
+
+build() {
+  cd rt-${pkgver//.u/+}
+
+  ../gradle-4.8/bin/gradle zips
+}
+
+package_java11-openjfx() {
+  depends=(
+alsa-lib
+cairo
+ffmpeg
+gdk-pixbuf2
+glib2
+gtk2
+gtk3
+java-runtime-openjdk=11
+libavcodec.so
+libavformat.so
+libfreetype.so
+libgl
+libx11
+libxtst
+pango
+python2
+qt5-base
+ruby
+unzip
+webkit2gtk
+  )
+
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjfx,share/licenses}
+  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/
+  rm "${pkgdir}"/usr/lib/jvm/java-11-openjfx/lib/src.zip
+  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/
+  cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java11-openjfx
+}
+
+package_java11-openjfx-doc() {
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755 "${pkgdir}"/usr/share/{doc,licenses}
+  cp -dr --no-preserve=ownership build/javadoc 
"${pkgdir}"/usr/share/doc/java11-openjfx
+  ln -s java11-openjfx "${pkgdir}"/usr/share/licenses/java11-openjfx-doc
+}
+
+package_java11-openjfx-src() {
+  cd rt-${pkgver//.u/+}
+
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjfx,share/licenses}
+  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/javafx-src.zip
+  ln -s java11-openjfx "${pkgdir}"/usr/share/licenses/java11-openjfx-src
+}
+
+# vim: ts=2 sw=2 et:

Copied: java11-openjfx/repos/testing-x86_64/gradle.properties (from rev 360509, 
java11-openjfx/trunk/gradle.properties)
===
--- testing-x86_64/gradle.properties(rev 0)
+++ testing-x86_64/gradle.properties2019-08-20 16:42:45 UTC (rev 360510)
@@ -0,0 +1,3 @@
+COMPILE_MEDIA = true
+COMPILE_WEBKIT = true
+CONF = Release

Copied: java11-openjfx/repos/testing-x86_64/java11-openjfx-flags.patch (from 
rev 360509, java11-openjfx/trunk/java11-openjfx-flags.patch)

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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:42:35
  Author: alucryd
Revision: 360509

upgpkg: java11-openjfx 11.0.3.u1-2

Modified:
  java11-openjfx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:36:03 UTC (rev 360508)
+++ PKGBUILD2019-08-20 16:42:35 UTC (rev 360509)
@@ -14,7 +14,7 @@
   java11-openjfx-src
 )
 pkgver=11.0.3.u1
-pkgrel=1
+pkgrel=2
 pkgdesc='Java OpenJFX 11 client application platform (open-source 
implementation of JavaFX)'
 arch=(x86_64)
 url=https://wiki.openjdk.java.net/display/OpenJFX/Main
@@ -96,10 +96,10 @@
 
   cd rt-${pkgver//.u/+}
 
-  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjdk,share/licenses}
-  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-11-openjdk/
-  rm "${pkgdir}"/usr/lib/jvm/java-11-openjdk/lib/src.zip
-  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-11-openjdk/
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjfx,share/licenses}
+  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/
+  rm "${pkgdir}"/usr/lib/jvm/java-11-openjfx/lib/src.zip
+  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/
   cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java11-openjfx
 }
 
@@ -114,8 +114,8 @@
 package_java11-openjfx-src() {
   cd rt-${pkgver//.u/+}
 
-  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjdk,share/licenses}
-  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-11-openjdk/javafx-src.zip
+  install -dm 755  "${pkgdir}"/usr/{lib/jvm/java-11-openjfx,share/licenses}
+  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-11-openjfx/javafx-src.zip
   ln -s java11-openjfx "${pkgdir}"/usr/share/licenses/java11-openjfx-src
 }
 


[arch-commits] Commit in telegram-desktop/repos/community-x86_64 (18 files)

2019-08-20 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 20, 2019 @ 16:38:44
  Author: svenstaro
Revision: 500332

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
(from rev 500331, telegram-desktop/trunk/CMakeLists.inj)
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 500331, telegram-desktop/trunk/PKGBUILD)
  telegram-desktop/repos/community-x86_64/Use-system-wide-font.patch
(from rev 500331, telegram-desktop/trunk/Use-system-wide-font.patch)
  telegram-desktop/repos/community-x86_64/demibold.patch
(from rev 500331, telegram-desktop/trunk/demibold.patch)
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
(from rev 500331, telegram-desktop/trunk/libtgvoip.patch)
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
(from rev 500331, telegram-desktop/trunk/no-gtk2.patch)
  telegram-desktop/repos/community-x86_64/tdesktop.patch
(from rev 500331, telegram-desktop/trunk/tdesktop.patch)
  
telegram-desktop/repos/community-x86_64/tdesktop_lottie_animation_qtdebug.patch
(from rev 500331, 
telegram-desktop/trunk/tdesktop_lottie_animation_qtdebug.patch)
  telegram-desktop/repos/community-x86_64/tg.protocol
(from rev 500331, telegram-desktop/trunk/tg.protocol)
Deleted:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
  telegram-desktop/repos/community-x86_64/PKGBUILD
  telegram-desktop/repos/community-x86_64/Use-system-wide-font.patch
  telegram-desktop/repos/community-x86_64/demibold.patch
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
  telegram-desktop/repos/community-x86_64/tdesktop.patch
  
telegram-desktop/repos/community-x86_64/tdesktop_lottie_animation_qtdebug.patch
  telegram-desktop/repos/community-x86_64/tg.protocol

-+
 CMakeLists.inj  |   38 -
 PKGBUILD|  252 +++
 Use-system-wide-font.patch  |   68 -
 demibold.patch  |   54 -
 libtgvoip.patch |   36 -
 no-gtk2.patch   |   58 -
 tdesktop.patch  | 1064 +++---
 tdesktop_lottie_animation_qtdebug.patch |   26 
 tg.protocol |   22 
 9 files changed, 809 insertions(+), 809 deletions(-)

Deleted: CMakeLists.inj
===
--- CMakeLists.inj  2019-08-20 16:38:22 UTC (rev 500331)
+++ CMakeLists.inj  2019-08-20 16:38:44 UTC (rev 500332)
@@ -1,19 +0,0 @@
-# The text will be put into the appropriate CMakeLists by the PKGBUILD
-
-# Avoid rpath compiler parameter
-set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
-
-# This makes up for patch of gyp utility, supporting precompiled headers. If
-# Telegram/Patches/gyp.diff file will be changed in future, please check these
-# lines.
-include(../../Telegram/gyp/PrecompiledHeader.cmake)
-add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
-add_precompiled_header(lib_base ../../Telegram/SourceFiles/base/base_pch.h)
-add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
-add_precompiled_header(lib_storage 
../../Telegram/SourceFiles/storage/storage_pch.h)
-add_precompiled_header(lib_mtproto 
../../Telegram/SourceFiles/mtproto/mtp_pch.h)
-
-# You can discover new PCHs using this link:
-# 
https://github.com/telegramdesktop/tdesktop/search?q=pch_header&unscoped_q=pch_header
-
-# vim: ft=cmake

Copied: telegram-desktop/repos/community-x86_64/CMakeLists.inj (from rev 
500331, telegram-desktop/trunk/CMakeLists.inj)
===
--- CMakeLists.inj  (rev 0)
+++ CMakeLists.inj  2019-08-20 16:38:44 UTC (rev 500332)
@@ -0,0 +1,19 @@
+# The text will be put into the appropriate CMakeLists by the PKGBUILD
+
+# Avoid rpath compiler parameter
+set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
+
+# This makes up for patch of gyp utility, supporting precompiled headers. If
+# Telegram/Patches/gyp.diff file will be changed in future, please check these
+# lines.
+include(../../Telegram/gyp/PrecompiledHeader.cmake)
+add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
+add_precompiled_header(lib_base ../../Telegram/SourceFiles/base/base_pch.h)
+add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
+add_precompiled_header(lib_storage 
../../Telegram/SourceFiles/storage/storage_pch.h)
+add_precompiled_header(lib_mtproto 
../../Telegram/SourceFiles/mtproto/mtp_pch.h)
+
+# You can discover new PCHs using this link:
+# 
https://github.com/telegramdesktop/tdesktop/search?q=pch_header&unscoped_q=pch_header
+
+# vim: ft=cmake

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:38:22 UTC (rev 500331)
+++ P

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

2019-08-20 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 20, 2019 @ 16:38:22
  Author: svenstaro
Revision: 500331

upgpkg: telegram-desktop 1.8.2-1

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:37:03 UTC (rev 500330)
+++ PKGBUILD2019-08-20 16:38:22 UTC (rev 500331)
@@ -5,7 +5,7 @@
 # https://github.com/mymedia2/tdesktop
 
 pkgname=telegram-desktop
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:37:03
  Author: alucryd
Revision: 500330

archrelease: copy trunk to community-x86_64

Added:
  gens-gs/repos/community-x86_64/
  gens-gs/repos/community-x86_64/PKGBUILD
(from rev 500329, gens-gs/trunk/PKGBUILD)
  gens-gs/repos/community-x86_64/gens-gtk.patch
(from rev 500329, gens-gs/trunk/gens-gtk.patch)

+
 PKGBUILD   |   63 ++
 gens-gtk.patch |  187 +++
 2 files changed, 250 insertions(+)

Copied: gens-gs/repos/community-x86_64/PKGBUILD (from rev 500329, 
gens-gs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-20 16:37:03 UTC (rev 500330)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: trya 
+# Contributor: Yvan 
+
+pkgname=gens-gs
+pkgver=2.16.7
+pkgrel=8
+pkgdesc='An emulator of Sega Genesis, Sega CD and 32X, combining features from 
various forks of Gens'
+arch=(x86_64)
+url=https://segaretro.org/Gens/GS
+license=(GPL)
+depends=(
+  lib32-gtk2
+  lib32-libgl
+  lib32-sdl
+)
+makedepends=(
+  lib32-libglvnd
+  nasm
+)
+optdepends=(
+  'lib32-alsa-plugins: ALSA sound support'
+  'lib32-libcanberra: Hide a silly warning'
+  'lib32-libpulse: PulseAudio sound support'
+)
+provides=(gens)
+conflicts=(gens)
+source=(
+  https://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz
+  gens-gtk.patch
+)
+sha256sums=('6320cd7bee85472891e1e29b21731d2c8180d04db67ee21256491f3f9ad145c1'
+'29b1e9755b34e00ef7d19bdc527dc4f841400a0022c81ee71c331be4a76a6c1c')
+
+prepare() {
+  cd gens-gs-r7
+
+  patch -Np1 -i ../gens-gtk.patch
+}
+
+build() {
+  cd gens-gs-r7
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  LIBS='-ldl -lX11' ./configure \
+--host='i686-unknown-linux-gnu' \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--with-pic \
+--disable-static
+  make
+}
+
+package() {
+  cd gens-gs-r7
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: gens-gs/repos/community-x86_64/gens-gtk.patch (from rev 500329, 
gens-gs/trunk/gens-gtk.patch)
===
--- community-x86_64/gens-gtk.patch (rev 0)
+++ community-x86_64/gens-gtk.patch 2019-08-20 16:37:03 UTC (rev 500330)
@@ -0,0 +1,187 @@
+diff -ru gens/src/gens/ui/gtk/about/about_window.cpp 
gens-build/src/gens/ui/gtk/about/about_window.cpp
+--- gens/src/gens/ui/gtk/about/about_window.cpp2010-10-11 
16:32:29.0 +
 gens-build/src/gens/ui/gtk/about/about_window.cpp  2010-10-11 
15:46:25.0 +
+@@ -84,7 +84,7 @@
+   gtk_window_set_position(GTK_WINDOW(about_window), GTK_WIN_POS_CENTER);
+   gtk_window_set_resizable(GTK_WINDOW(about_window), FALSE);
+   gtk_window_set_type_hint(GTK_WINDOW(about_window), 
GDK_WINDOW_TYPE_HINT_DIALOG);
+-  gtk_dialog_set_has_separator(GTK_DIALOG(about_window), FALSE);
++  g_object_set(GTK_DIALOG(about_window), "has-separator", FALSE, NULL);
+   
+   // Callbacks for if the window is closed.
+   g_signal_connect((gpointer)about_window, "delete_event",
+diff -ru gens/src/gens/ui/gtk/bios_misc_files/bmf_window.cpp 
gens-build/src/gens/ui/gtk/bios_misc_files/bmf_window.cpp
+--- gens/src/gens/ui/gtk/bios_misc_files/bmf_window.cpp2010-10-11 
16:32:29.0 +
 gens-build/src/gens/ui/gtk/bios_misc_files/bmf_window.cpp  2010-10-11 
15:33:03.0 +
+@@ -84,7 +84,7 @@
+   gtk_window_set_position(GTK_WINDOW(bmf_window), GTK_WIN_POS_CENTER);
+   gtk_window_set_resizable(GTK_WINDOW(bmf_window), FALSE);
+   gtk_window_set_type_hint(GTK_WINDOW(bmf_window), 
GDK_WINDOW_TYPE_HINT_DIALOG);
+-  gtk_dialog_set_has_separator(GTK_DIALOG(bmf_window), FALSE);
++  g_object_set(GTK_DIALOG(bmf_window), "has-separator", FALSE, NULL);
+   
+   // Callbacks for if the window is closed.
+   g_signal_connect((gpointer)bmf_window, "delete_event",
+diff -ru gens/src/gens/ui/gtk/directory_config/dir_window.cpp 
gens-build/src/gens/ui/gtk/directory_config/dir_window.cpp
+--- gens/src/gens/ui/gtk/directory_config/dir_window.cpp   2010-10-11 
16:32:29.0 +
 gens-build/src/gens/ui/gtk/directory_config/dir_window.cpp 2010-10-11 
15:34:21.0 +
+@@ -109,7 +109,7 @@
+   gtk_window_set_position(GTK_WINDOW(dir_window), GTK_WIN_POS_CENTER);
+   gtk_window_set_resizable(GTK_WINDOW(dir_window), FALSE);
+   gtk_window_set_type_hint(GTK_WINDOW(dir_window), 
GDK_WINDOW_TYPE_HINT_DIALOG);
+-  gtk_dialog_set_has_separator(GTK_DIALOG(dir_window), FALSE);
++  g_object_set(GTK_DIALOG(dir_window), "has-separator", FALSE, NULL);
+   
+   // Callbacks for if the window is closed.
+   g_signal_connect((gpointer)(dir_window), "delete_event",
+diff -ru gens/src

[arch-commits] Commit in gens-gs/trunk (PKGBUILD gens-gtk.patch)

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:36:58
  Author: alucryd
Revision: 500329

 FS#59399: gens-gs 2.16.7-8

Modified:
  gens-gs/trunk/PKGBUILD(contents, properties)
  gens-gs/trunk/gens-gtk.patch  (properties)

+
 PKGBUILD   |   66 +++
 gens-gtk.patch |1 
 2 files changed, 33 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:36:24 UTC (rev 500328)
+++ PKGBUILD2019-08-20 16:36:58 UTC (rev 500329)
@@ -4,23 +4,31 @@
 
 pkgname=gens-gs
 pkgver=2.16.7
-pkgrel=7
+pkgrel=8
 pkgdesc='An emulator of Sega Genesis, Sega CD and 32X, combining features from 
various forks of Gens'
-arch=('x86_64')
-url='https://segaretro.org/Gens/GS'
-license=('GPL')
-makedepends=('nasm')
-depends_i686=('gtk2' 'sdl')
-optdepends_i686=('libcanberra: Hide a silly warning')
-depends_x86_64=('lib32-gtk2' 'lib32-sdl')
-makedepends_x86_64=('gcc-multilib' 'lib32-gtk2' 'lib32-mesa-libgl' 'lib32-sdl')
-optdepends_x86_64=('lib32-alsa-plugins: ALSA sound support'
-   'lib32-libcanberra: Hide a silly warning'
-   'lib32-libpulse: PulseAudio sound support')
-provides=('gens')
-conflicts=('gens')
-source=('https://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz'
-'gens-gtk.patch')
+arch=(x86_64)
+url=https://segaretro.org/Gens/GS
+license=(GPL)
+depends=(
+  lib32-gtk2
+  lib32-libgl
+  lib32-sdl
+)
+makedepends=(
+  lib32-libglvnd
+  nasm
+)
+optdepends=(
+  'lib32-alsa-plugins: ALSA sound support'
+  'lib32-libcanberra: Hide a silly warning'
+  'lib32-libpulse: PulseAudio sound support'
+)
+provides=(gens)
+conflicts=(gens)
+source=(
+  https://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz
+  gens-gtk.patch
+)
 sha256sums=('6320cd7bee85472891e1e29b21731d2c8180d04db67ee21256491f3f9ad145c1'
 '29b1e9755b34e00ef7d19bdc527dc4f841400a0022c81ee71c331be4a76a6c1c')
 
@@ -33,24 +41,16 @@
 build() {
   cd gens-gs-r7
 
-  if [[ $CARCH == x86_64 ]]; then
-export CC='gcc -m32'
-export CXX='g++ -m32'
-export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
 
-LIBS='-ldl -lX11' ./configure \
-  --host='i686-unknown-linux-gnu' \
-  --prefix='/usr' \
-  --libdir='/usr/lib32' \
-  --with-pic \
-  --disable-static
-  else
-LIBS='-ldl -lX11' ./configure \
-  --prefix='/usr' \
-  --with-pic \
-  --disable-static
-  fi
-
+  LIBS='-ldl -lX11' ./configure \
+--host='i686-unknown-linux-gnu' \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--with-pic \
+--disable-static
   make
 }
 


Property changes on: gens-gs/trunk/PKGBUILD
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: gens-gs/trunk/gens-gtk.patch
===
--- gens-gtk.patch  2019-08-20 16:36:24 UTC (rev 500328)
+++ gens-gtk.patch  2019-08-20 16:36:58 UTC (rev 500329)

Property changes on: gens-gs/trunk/gens-gtk.patch
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:36:24
  Author: heftig
Revision: 500328

9.2.8.0-1

Modified:
  jruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:30:19 UTC (rev 500327)
+++ PKGBUILD2019-08-20 16:36:24 UTC (rev 500328)
@@ -2,7 +2,7 @@
 # Contributor: FaziBear 
 
 pkgname=jruby
-pkgver=9.2.7.0
+pkgver=9.2.8.0
 pkgrel=1
 pkgdesc="100% pure-Java implementation of the Ruby programming language"
 arch=(any)
@@ -12,9 +12,9 @@
 _tarname=jruby-dist-$pkgver-bin.tar.gz
 noextract=($_tarname)
 source=(https://repo1.maven.org/maven2/org/jruby/jruby-dist/$pkgver/$_tarname)
-md5sums=('c0111b2cafa920df76284044e1aeedc7')
-sha1sums=('dc35f9bb991f526f058bf6b9591c460f98cffe9e')
-sha256sums=('da7c1a5ce90015c0bafd4bca0352294e08fe1c9ec049ac51e82fe57ed50e1348')
+md5sums=('7d652b586a18f1c665289fd7e6edf4f5')
+sha1sums=('5b0b73b3d696afaeac92e6f8879dedcc63ac39d8')
+sha256sums=('b7c58688093f54acd89d732a8bf40e3ae0ac4c92488d6f5b424c33e4fb09c7bb')
 
 package() {
   depends=(java-runtime-headless bash)


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:36:03
  Author: heftig
Revision: 360508

3.32.1-1

Modified:
  gnome-photos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:30:20 UTC (rev 360507)
+++ PKGBUILD2019-08-20 16:36:03 UTC (rev 360508)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-photos
-pkgver=3.32.0
+pkgver=3.32.1
 pkgrel=1
 pkgdesc="Access, organize, and share your photos on GNOME"
 arch=(x86_64)
@@ -12,7 +12,7 @@
  gnome-online-miners dleyna-server dleyna-renderer libdazzle)
 makedepends=(python yelp-tools git meson)
 groups=(gnome)
-_commit=237e904f3c5120611d73e66fb5506de1b8ea97c7  # tags/3.32.0^0
+_commit=0917d3978a9c4c766a0460f5bed3492aca130caf  # tags/3.32.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-photos.git#commit=$_commit";
 "git+https://gitlab.gnome.org/GNOME/libgd.git";)
 sha256sums=('SKIP'


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:30:20
  Author: heftig
Revision: 360507

archrelease: copy trunk to testing-x86_64

Added:
  nspr/repos/testing-x86_64/
  nspr/repos/testing-x86_64/PKGBUILD
(from rev 360506, nspr/trunk/PKGBUILD)

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

Copied: nspr/repos/testing-x86_64/PKGBUILD (from rev 360506, 
nspr/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-20 16:30:20 UTC (rev 360507)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=nspr
+pkgver=4.22
+pkgrel=1
+pkgdesc="Netscape Portable Runtime"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR";
+arch=(x86_64)
+license=(MPL GPL)
+depends=(glibc sh)
+makedepends=(zip)
+source=(https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/nspr-${pkgver}.tar.gz)
+sha1sums=('69bd044d4a258a9c1cb1062a182fb8a30f0ad641')
+sha256sums=('c9e4b6cc24856ec93202fe13704b38b38ba219f0f2aeac93090ce2b6c696d430')
+
+prepare() {
+  cd nspr-$pkgver/nspr
+}
+
+build() {
+  cd nspr-$pkgver/nspr
+  ./configure \
+  --prefix=/usr \
+  --libdir=/usr/lib \
+  --includedir=/usr/include/nspr \
+  --enable-optimize \
+  --disable-debug \
+  $([[ $CARCH == x86_64 ]] && echo --enable-64bit)
+  make ${SOURCE_DATE_EPOCH:+
+SH_NOW="${SOURCE_DATE_EPOCH}00"
+SH_DATE="$(date --utc --date="@$SOURCE_DATE_EPOCH" '+%Y-%m-%d %T')"
+}
+}
+
+package() {
+  cd nspr-$pkgver/nspr
+  make DESTDIR="$pkgdir" install
+  ln -s nspr.pc "$pkgdir/usr/lib/pkgconfig/mozilla-nspr.pc"
+  rm -r "$pkgdir"/usr/bin/{compile-et.pl,prerr.properties} \
+"$pkgdir"/usr/include/nspr/md
+}


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

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

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nspr/repos/multilib-testing-x86_64/
  lib32-nspr/repos/multilib-testing-x86_64/PKGBUILD
(from rev 500326, lib32-nspr/trunk/PKGBUILD)

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

Copied: lib32-nspr/repos/multilib-testing-x86_64/PKGBUILD (from rev 500326, 
lib32-nspr/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-08-20 16:30:19 UTC (rev 500327)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nspr
+pkgver=4.22
+pkgrel=1
+pkgdesc="Netscape Portable Runtime (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR";
+arch=(x86_64)
+license=(MPL GPL)
+depends=(lib32-glibc nspr)
+makedepends=(zip)
+source=(https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/nspr-${pkgver}.tar.gz)
+sha1sums=('69bd044d4a258a9c1cb1062a182fb8a30f0ad641')
+sha256sums=('c9e4b6cc24856ec93202fe13704b38b38ba219f0f2aeac93090ce2b6c696d430')
+
+build() {
+  cd nspr-$pkgver
+  ./nspr/configure \
+  --prefix=/usr \
+  --libdir=/usr/lib32 \
+  --includedir=/usr/include/nspr \
+  --enable-optimize \
+  --disable-debug
+  make
+}
+
+package() {
+  cd nspr-$pkgver
+  make DESTDIR="$pkgdir" install
+  ln -s nspr.pc "$pkgdir/usr/lib32/pkgconfig/mozilla-nspr.pc"
+  rm -r "$pkgdir"/usr/bin/{compile-et.pl,prerr.properties} \
+"$pkgdir"/usr/include/nspr/md
+  rm -rf "$pkgdir"/usr/{bin,share,include}
+}


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:28:26
  Author: heftig
Revision: 500326

4.22-1

Modified:
  lib32-nspr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:23:22 UTC (rev 500325)
+++ PKGBUILD2019-08-20 16:28:26 UTC (rev 500326)
@@ -4,7 +4,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-nspr
-pkgver=4.21
+pkgver=4.22
 pkgrel=1
 pkgdesc="Netscape Portable Runtime (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR";
@@ -13,8 +13,8 @@
 depends=(lib32-glibc nspr)
 makedepends=(zip)
 
source=(https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/nspr-${pkgver}.tar.gz)
-sha1sums=('0ae8c710a52775e209b96aa6220362837b79b6c3')
-sha256sums=('15ea32c7b100217b6e3193bc03e77f485d9bf7504051443ba9ce86d1c17c6b5a')
+sha1sums=('69bd044d4a258a9c1cb1062a182fb8a30f0ad641')
+sha256sums=('c9e4b6cc24856ec93202fe13704b38b38ba219f0f2aeac93090ce2b6c696d430')
 
 build() {
   cd nspr-$pkgver


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

2019-08-20 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 16:24:45
  Author: heftig
Revision: 360506

4.22-1

Modified:
  nspr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:32 UTC (rev 360505)
+++ PKGBUILD2019-08-20 16:24:45 UTC (rev 360506)
@@ -2,7 +2,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=nspr
-pkgver=4.21
+pkgver=4.22
 pkgrel=1
 pkgdesc="Netscape Portable Runtime"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR";
@@ -11,8 +11,8 @@
 depends=(glibc sh)
 makedepends=(zip)
 
source=(https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/nspr-${pkgver}.tar.gz)
-sha1sums=('0ae8c710a52775e209b96aa6220362837b79b6c3')
-sha256sums=('15ea32c7b100217b6e3193bc03e77f485d9bf7504051443ba9ce86d1c17c6b5a')
+sha1sums=('69bd044d4a258a9c1cb1062a182fb8a30f0ad641')
+sha256sums=('c9e4b6cc24856ec93202fe13704b38b38ba219f0f2aeac93090ce2b6c696d430')
 
 prepare() {
   cd nspr-$pkgver/nspr


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:23:13
  Author: felixonmars
Revision: 500324

upgpkg: kube 0.7.0-4

rebuild with kcontacts 19.08

Modified:
  kube/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:21:15 UTC (rev 500323)
+++ PKGBUILD2019-08-20 16:23:13 UTC (rev 500324)
@@ -2,7 +2,7 @@
 
 pkgname=kube
 pkgver=0.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A modern groupware client based on QtQuick and Sink"
 arch=(x86_64)
 url="https://kube.kde.org/";


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:23:22
  Author: felixonmars
Revision: 500325

archrelease: copy trunk to community-testing-x86_64

Added:
  kube/repos/community-testing-x86_64/
  kube/repos/community-testing-x86_64/PKGBUILD
(from rev 500324, kube/trunk/PKGBUILD)

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

Copied: kube/repos/community-testing-x86_64/PKGBUILD (from rev 500324, 
kube/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-08-20 16:23:22 UTC (rev 500325)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kube
+pkgver=0.7.0
+pkgrel=4
+pkgdesc="A modern groupware client based on QtQuick and Sink"
+arch=(x86_64)
+url="https://kube.kde.org/";
+license=(LGPL)
+depends=(sink gpgme qt5-quickcontrols2 qt5-webengine qt5-quickcontrols)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/unstable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz";)
+sha256sums=('6f3dc84548dcf3e432a592e44717132a282d107d32c82560a2c5495c678a874f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:21:15
  Author: alucryd
Revision: 500323

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:21:07 UTC (rev 500322)
+++ PKGBUILD2019-08-20 16:21:15 UTC (rev 500323)
@@ -1,34 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Michael Yeatts 
-
-pkgname=python-typing_extensions
-pkgver=3.7.4
-pkgrel=1
-pkgdesc='Backported and Experimental Type Hints for Python 3.5+'
-arch=(any)
-url=https://github.com/python/typing/tree/master/typing_extensions
-license=(custom)
-depends=(python)
-makedepends=(
-  git
-  python-setuptools
-)
-provides=(python-typing-extensions)
-conflicts=(python-typing-extensions)
-source=(git+https://github.com/python/typing.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  cd typing/typing_extensions
-
-  python setup.py build
-}
-
-package() {
-  cd typing/typing_extensions
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 LICENSE -t 
"${pkgdir}"/usr/share/licenses/python-typing_extensions/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-typing_extensions/repos/community-any/PKGBUILD (from rev 500322, 
python-typing_extensions/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:21:15 UTC (rev 500323)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Michael Yeatts 
+
+pkgname=python-typing_extensions
+pkgver=3.7.4
+pkgrel=2
+pkgdesc='Backported and Experimental Type Hints for Python 3.5+'
+arch=(any)
+url=https://github.com/python/typing/tree/master/typing_extensions
+license=(custom)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+provides=(python-typing-extensions)
+conflicts=(python-typing-extensions)
+source=(git+https://github.com/python/typing.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+  cd typing
+
+  # fix version
+  git cherry-pick -n 27f2e427b9b677401961b5da1762f8380a929bb8
+}
+
+build() {
+  cd typing/typing_extensions
+
+  python setup.py build
+}
+
+package() {
+  cd typing/typing_extensions
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t 
"${pkgdir}"/usr/share/licenses/python-typing_extensions/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:21:07
  Author: alucryd
Revision: 500322

upgpkg: python-typing_extensions 3.7.4-2

Modified:
  python-typing_extensions/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:59 UTC (rev 500321)
+++ PKGBUILD2019-08-20 16:21:07 UTC (rev 500322)
@@ -3,7 +3,7 @@
 
 pkgname=python-typing_extensions
 pkgver=3.7.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Backported and Experimental Type Hints for Python 3.5+'
 arch=(any)
 url=https://github.com/python/typing/tree/master/typing_extensions
@@ -18,6 +18,13 @@
 source=(git+https://github.com/python/typing.git#tag=${pkgver})
 sha256sums=(SKIP)
 
+prepare() {
+  cd typing
+
+  # fix version
+  git cherry-pick -n 27f2e427b9b677401961b5da1762f8380a929bb8
+}
+
 build() {
   cd typing/typing_extensions
 


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:59
  Author: felixonmars
Revision: 500321

archrelease: copy trunk to community-any

Added:
  python-doublex-expects/repos/community-any/PKGBUILD
(from rev 500320, python-doublex-expects/trunk/PKGBUILD)
Deleted:
  python-doublex-expects/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:48 UTC (rev 500320)
+++ PKGBUILD2019-08-20 16:13:59 UTC (rev 500321)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-doublex-expects
-pkgname=('python-doublex-expects' 'python2-doublex-expects')
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Expects matchers for Doublex test doubles assertions"
-arch=('any')
-license=('Apache')
-url="https://github.com/jaimegildesagredo/doublex-expects";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-doublex' 
'python2-doublex'
- 'python-expects' 'python2-expects')
-checkdepends=('python-mamba' 'python2-mamba')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/jaimegildesagredo/doublex-expects/archive/v$pkgver.tar.gz";)
-sha512sums=('68aac0e9d8e6dae3c7007cf59e32ba8ea96f3d70377112431e10e59984ec6167e8fca57e0428e01ddcdd3b7f1c784e04c0a6837f7d297b1fcebf130c022b8f7c')
-
-build() {
-  cd doublex-expects-$pkgver
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd doublex-expects-$pkgver
-  mamba
-  mamba2
-}
-
-package_python-doublex-expects() {
-  depends=('python-doublex' 'python-expects')
-
-  cd doublex-expects-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-doublex-expects() {
-  depends=('python2-doublex' 'python2-expects')
-
-  cd doublex-expects-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-doublex-expects/repos/community-any/PKGBUILD (from rev 500320, 
python-doublex-expects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:13:59 UTC (rev 500321)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-doublex-expects
+pkgname=('python-doublex-expects' 'python2-doublex-expects')
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="Expects matchers for Doublex test doubles assertions"
+arch=('any')
+license=('Apache')
+url="https://github.com/jaimegildesagredo/doublex-expects";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-doublex' 
'python2-doublex'
+ 'python-expects' 'python2-expects')
+checkdepends=('python-mamba' 'python2-mamba')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jaimegildesagredo/doublex-expects/archive/v$pkgver.tar.gz";)
+sha512sums=('2aaff2e58556ed9eb91ebb418e65058367411e011e843afb5adb08ab69705b6bdfb478d3052aae093ad1c1a1b49ba1e084e4c5510acde4874182a658330e3448')
+
+build() {
+  cd doublex-expects-$pkgver
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd doublex-expects-$pkgver
+  mamba
+  mamba2
+}
+
+package_python-doublex-expects() {
+  depends=('python-doublex' 'python-expects')
+
+  cd doublex-expects-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-doublex-expects() {
+  depends=('python2-doublex' 'python2-expects')
+
+  cd doublex-expects-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:27
  Author: andyrtr
Revision: 360504

upgpkg: libabw 0.1.3-1

upstream update 0.1.3

Modified:
  libabw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:10:12 UTC (rev 360503)
+++ PKGBUILD2019-08-20 16:13:27 UTC (rev 360504)
@@ -1,7 +1,7 @@
 # Maintainer: AndyRTR 
 
 pkgname=libabw
-pkgver=0.1.2
+pkgver=0.1.3
 pkgrel=1
 pkgdesc="a library that parses the file format of AbiWord documents"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('librevenge' 'libxml2' )
 makedepends=('doxygen' 'gperf' 'boost')
 source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b72944d5af81dda0a5c5803ee84cbac4b81441a4d767aa57029adc6744c2485')
+sha256sums=('e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:32
  Author: andyrtr
Revision: 360505

archrelease: copy trunk to extra-x86_64

Added:
  libabw/repos/extra-x86_64/PKGBUILD
(from rev 360504, libabw/trunk/PKGBUILD)
Deleted:
  libabw/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:27 UTC (rev 360504)
+++ PKGBUILD2019-08-20 16:13:32 UTC (rev 360505)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=libabw
-pkgver=0.1.2
-pkgrel=1
-pkgdesc="a library that parses the file format of AbiWord documents"
-arch=('x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libabw";
-license=('MPL')
-depends=('librevenge' 'libxml2' )
-makedepends=('doxygen' 'gperf' 'boost')
-source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b72944d5af81dda0a5c5803ee84cbac4b81441a4d767aa57029adc6744c2485')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libabw/repos/extra-x86_64/PKGBUILD (from rev 360504, 
libabw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:13:32 UTC (rev 360505)
@@ -0,0 +1,29 @@
+# Maintainer: AndyRTR 
+
+pkgname=libabw
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="a library that parses the file format of AbiWord documents"
+arch=('x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libabw";
+license=('MPL')
+depends=('librevenge' 'libxml2' )
+makedepends=('doxygen' 'gperf' 'boost')
+source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:48
  Author: felixonmars
Revision: 500320

upgpkg: python-doublex-expects 0.7.1-1

Modified:
  python-doublex-expects/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:17 UTC (rev 500319)
+++ PKGBUILD2019-08-20 16:13:48 UTC (rev 500320)
@@ -2,7 +2,7 @@
 
 pkgbase=python-doublex-expects
 pkgname=('python-doublex-expects' 'python2-doublex-expects')
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="Expects matchers for Doublex test doubles assertions"
 arch=('any')
@@ -12,7 +12,7 @@
  'python-expects' 'python2-expects')
 checkdepends=('python-mamba' 'python2-mamba')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/jaimegildesagredo/doublex-expects/archive/v$pkgver.tar.gz";)
-sha512sums=('68aac0e9d8e6dae3c7007cf59e32ba8ea96f3d70377112431e10e59984ec6167e8fca57e0428e01ddcdd3b7f1c784e04c0a6837f7d297b1fcebf130c022b8f7c')
+sha512sums=('2aaff2e58556ed9eb91ebb418e65058367411e011e843afb5adb08ab69705b6bdfb478d3052aae093ad1c1a1b49ba1e084e4c5510acde4874182a658330e3448')
 
 build() {
   cd doublex-expects-$pkgver


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:17
  Author: felixonmars
Revision: 500319

archrelease: copy trunk to community-x86_64

Added:
  mlite/repos/community-x86_64/PKGBUILD
(from rev 500318, mlite/trunk/PKGBUILD)
Deleted:
  mlite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:13:03 UTC (rev 500318)
+++ PKGBUILD2019-08-20 16:13:17 UTC (rev 500319)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=mlite
-pkgver=0.2.27
-pkgrel=1
-pkgdesc="Useful classes originating from MeeGo Touch"
-arch=('x86_64')
-url="http://github.com/nemomobile/mlite";
-license=('LGPL')
-depends=('qt5-base' 'dconf')
-makedepends=('git' 'qt5-tools')
-source=("git+https://git.merproject.org/mer-core/mlite.git#tag=$pkgver";)
-sha256sums=('SKIP')
-
-prepare() {
-  cd mlite
-  sed -i -e 's|/usr/libexec|/usr/lib|' \
-  tools/mliteremoteaction/mliteremoteaction.pro \
-  tools/mliteremoteaction/main.cpp \
-  src/mremoteaction.cpp
-}
-
-build() {
-  cd mlite
-
-  qmake-qt5
-  make
-}
-
-package() {
-  cd mlite
-
-  make INSTALL_ROOT="${pkgdir}" install
-
-  # Remove tests
-  rm -r "$pkgdir/opt"
-}

Copied: mlite/repos/community-x86_64/PKGBUILD (from rev 500318, 
mlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:13:17 UTC (rev 500319)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+pkgname=mlite
+pkgver=0.2.28
+pkgrel=1
+pkgdesc="Useful classes originating from MeeGo Touch"
+arch=('x86_64')
+url="https://github.com/nemomobile/mlite";
+license=('LGPL')
+depends=('qt5-base' 'dconf')
+makedepends=('git' 'qt5-tools')
+source=("git+https://git.merproject.org/mer-core/mlite.git#tag=$pkgver";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd mlite
+  sed -i -e 's|/usr/libexec|/usr/lib|' \
+  tools/mliteremoteaction/mliteremoteaction.pro \
+  tools/mliteremoteaction/main.cpp \
+  src/mremoteaction.cpp
+}
+
+build() {
+  cd mlite
+
+  qmake-qt5
+  make
+}
+
+package() {
+  cd mlite
+
+  make INSTALL_ROOT="${pkgdir}" install
+
+  # Remove tests
+  rm -r "$pkgdir/opt"
+}


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:12:58
  Author: alucryd
Revision: 500317

archrelease: copy trunk to community-x86_64

Added:
  switchboard-plug-datetime/repos/community-x86_64/PKGBUILD
(from rev 500316, switchboard-plug-datetime/trunk/PKGBUILD)
Deleted:
  switchboard-plug-datetime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:12:51 UTC (rev 500316)
+++ PKGBUILD2019-08-20 16:12:58 UTC (rev 500317)
@@ -1,36 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=switchboard-plug-datetime
-pkgver=2.1.5
-pkgrel=1
-pkgdesc='Switchboard Date & Time Plug'
-arch=(x86_64)
-url=https://github.com/elementary/switchboard-plug-datetime
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  gdk-pixbuf2
-  glib2
-  gtk3
-  libgee
-  libgranite.so
-  libswitchboard-2.0.so
-)
-makedepends=(
-  git
-  meson
-  vala
-)
-source=(git+https://github.com/elementary/switchboard-plug-datetime.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  arch-meson switchboard-plug-datetime build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: switchboard-plug-datetime/repos/community-x86_64/PKGBUILD (from rev 
500316, switchboard-plug-datetime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:12:58 UTC (rev 500317)
@@ -0,0 +1,36 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=switchboard-plug-datetime
+pkgver=2.1.6
+pkgrel=1
+pkgdesc='Switchboard Date & Time Plug'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard-plug-datetime
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libgee
+  libgranite.so
+  libswitchboard-2.0.so
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+source=(git+https://github.com/elementary/switchboard-plug-datetime.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson switchboard-plug-datetime build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 16:13:03
  Author: felixonmars
Revision: 500318

upgpkg: mlite 0.2.28-1

Modified:
  mlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:12:58 UTC (rev 500317)
+++ PKGBUILD2019-08-20 16:13:03 UTC (rev 500318)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=mlite
-pkgver=0.2.27
+pkgver=0.2.28
 pkgrel=1
 pkgdesc="Useful classes originating from MeeGo Touch"
 arch=('x86_64')


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:12:51
  Author: alucryd
Revision: 500316

upgpkg: switchboard-plug-datetime 2.1.6-1

Modified:
  switchboard-plug-datetime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:12:17 UTC (rev 500315)
+++ PKGBUILD2019-08-20 16:12:51 UTC (rev 500316)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=switchboard-plug-datetime
-pkgver=2.1.5
+pkgver=2.1.6
 pkgrel=1
 pkgdesc='Switchboard Date & Time Plug'
 arch=(x86_64)


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

2019-08-20 Thread David Runge via arch-commits
Date: Tuesday, August 20, 2019 @ 16:12:17
  Author: dvzrv
Revision: 500315

archrelease: copy trunk to community-x86_64

Added:
  x42-plugins/repos/community-x86_64/PKGBUILD
(from rev 500314, x42-plugins/trunk/PKGBUILD)
Deleted:
  x42-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:11:22 UTC (rev 500314)
+++ PKGBUILD2019-08-20 16:12:17 UTC (rev 500315)
@@ -1,112 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Lieven Moors 
-
-pkgname=x42-plugins
-pkgver=20190714
-pkgrel=2
-pkgdesc="Collection of LV2 plugins"
-arch=('x86_64')
-url="https://github.com/x42/x42-plugins";
-license=('GPL2' 'GPL3')
-depends=('ftgl' 'libltc' 'pango' 'zita-convolver')
-makedepends=('gendesk' 'help2man' 'jack' 'liblo' 'lv2' 'ttf-dejavu')
-optdepends=('jack: for standalone applications'
-'liblo: for standalone applications')
-groups=('lv2-plugins' 'pro-audio')
-source=("http://gareus.org/misc/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-sha512sums=('4e56925835272b7bcacae05de31ce57096d6179ce6491379a2ab8e79d44ddb7589658e34273880aa55a2fbbe013b0cc96f9a48609c175c94a5a6254d8ceb0c77')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  declare -A comments=(
-["darc"]="A general purpose audio signal compressor"
-["dpl1"]="Look-ahead digital peak limiter intended but not limited to the 
final step of mastering or mixing"
-["fat1"]="Auto-tuner based on Fons Adriaensen's zita-at1"
-["fil4"]="4 band parametric equalizer with additional low+high shelf 
filters, Low and High-pass"
-["mixtri"]="Matrix mixer and trigger processor"
-["scope"]="Simple audio oscilloscope with variable time scale, triggering, 
cursors and numeric readout"
-["spectr"]="Spectrum Analyzer"
-["stepseq"]="Simple step sequencer for moddevices.com"
-  )
-  declare -A generic=(
-["darc"]="Dynamic Audio Range Compressor"
-["dpl1"]="Peak Limiter"
-["fat1"]="Auto Tune"
-["fil4"]="Parametric Equalizer"
-["mixtri"]="Mixer'n'Trigger"
-["scope"]="Oscilloscope"
-["spectr"]="Spectrum Analyzer"
-["stepseq"]="Step Sequencer"
-  )
-  declare -A meter_types=(
-[0]='EBU R128 Meter'
-[1]='K20/RMS Meter (Stereo)'
-[2]='K14/RMS Meter (Stereo)'
-[3]='K12/RMS Meter (Stereo)'
-[4]='BBC Meter (Stereo)'
-[5]='BBC M-6'
-[6]='DIN Meter (Stereo)'
-[7]='EBU Meter (Stereo)'
-[8]='Nordic Meter (Stereo)'
-[9]='VU Meter (Stereo)'
-[10]='True-Peak and RMS Meter (Stereo)'
-[11]='DR-14 - Crest Factor Loudness Range Meter'
-[12]='Stereo Phase-Correlation Meter'
-[13]='Goniometer'
-[14]='Phase/Frequency Wheel'
-[15]='1/3 Octave Spectrum Analyzer'
-[16]='Stereo/Frequency Scope'
-[17]='Signal Distribution Histogram'
-[18]='Bit Meter'
-[19]='Surround Level 8'
-  )
-  declare -A tuna_types=(
-[0]='Instrument Tuner'
-[1]='Instrument Tuner (Spectrum)'
-  )
-
-  # XDG desktop files
-  for name in "${!comments[@]}"; do
-gendesk -n \
---pkgname "x42-${name}" \
---name "x42-${name}" \
---pkgdesc "${comments[$name]}" \
---genericname "${generic[$name]}" \
---categories "AudioVideo;Audio"
-  done
-  for type in {0..19}; do
-gendesk -n \
---pkgname "x42-meter-${type}" \
---name "x42-meter ${meter_types[$type]}" \
---pkgdesc "${meter_types[$type]}" \
---exec "x42-meter $type" \
---icon "x42-meter" \
---genericname "Audio Meter" \
---categories "AudioVideo;Audio"
-  done
-  for type in {0,1}; do
-gendesk -n \
---pkgname "x42-tuna-${type}" \
---name "x42-tuna ${tuna_types[$type]}" \
---pkgdesc "${tuna_types[$type]}" \
---exec "x42-tuna $type" \
---icon "x42-tuna&q

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

2019-08-20 Thread David Runge via arch-commits
Date: Tuesday, August 20, 2019 @ 16:11:22
  Author: dvzrv
Revision: 500314

upgpkg: x42-plugins 20190820-1

Upgrading to 20190820.

Modified:
  x42-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:09:17 UTC (rev 500313)
+++ PKGBUILD2019-08-20 16:11:22 UTC (rev 500314)
@@ -2,8 +2,8 @@
 # Contributor: Lieven Moors 
 
 pkgname=x42-plugins
-pkgver=20190714
-pkgrel=2
+pkgver=20190820
+pkgrel=1
 pkgdesc="Collection of LV2 plugins"
 arch=('x86_64')
 url="https://github.com/x42/x42-plugins";
@@ -14,7 +14,7 @@
 'liblo: for standalone applications')
 groups=('lv2-plugins' 'pro-audio')
 source=("http://gareus.org/misc/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-sha512sums=('4e56925835272b7bcacae05de31ce57096d6179ce6491379a2ab8e79d44ddb7589658e34273880aa55a2fbbe013b0cc96f9a48609c175c94a5a6254d8ceb0c77')
+sha512sums=('a8a62427c5706cac3eb1ba3e5e5ee6deb81c3ae04ec3a45c44faf2a647e079c245a28a3ef0b85ada62575e43238825a25c460317aa13891694e2d52497facf04')
 
 prepare() {
   cd "${pkgname}-${pkgver}"


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:10:07
  Author: andyrtr
Revision: 360502

upgpkg: libvisio 0.1.7-1

upstream update 0.1.7

Modified:
  libvisio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:06:25 UTC (rev 360501)
+++ PKGBUILD2019-08-20 16:10:07 UTC (rev 360502)
@@ -4,8 +4,8 @@
 # Contributor: philacs
 
 pkgname=libvisio
-pkgver=0.1.6
-pkgrel=6
+pkgver=0.1.7
+pkgrel=1
 pkgdesc='Library providing ability to interpret and import visio diagrams'
 arch=('x86_64')
 url="https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
@@ -13,7 +13,7 @@
 depends=('libwpd' 'libwpg' 'libxml2' 'icu' 'librevenge')
 makedepends=('boost' 'gperf' 'doxygen' 'cppunit')
 source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('fe1002d3671d53c09bc65e47ec948ec7b67e6fb112ed1cd10966e211a8bb50f9')
+sha256sums=('8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:10:12
  Author: andyrtr
Revision: 360503

archrelease: copy trunk to extra-x86_64

Added:
  libvisio/repos/extra-x86_64/PKGBUILD
(from rev 360502, libvisio/trunk/PKGBUILD)
Deleted:
  libvisio/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:10:07 UTC (rev 360502)
+++ PKGBUILD2019-08-20 16:10:12 UTC (rev 360503)
@@ -1,32 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: ponsfoot 
-# Contributor: philacs
-
-pkgname=libvisio
-pkgver=0.1.6
-pkgrel=6
-pkgdesc='Library providing ability to interpret and import visio diagrams'
-arch=('x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
-license=('LGPL')
-depends=('libwpd' 'libwpg' 'libxml2' 'icu' 'librevenge')
-makedepends=('boost' 'gperf' 'doxygen' 'cppunit')
-source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('fe1002d3671d53c09bc65e47ec948ec7b67e6fb112ed1cd10966e211a8bb50f9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libvisio/repos/extra-x86_64/PKGBUILD (from rev 360502, 
libvisio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:10:12 UTC (rev 360503)
@@ -0,0 +1,32 @@
+# Maintainer: AndyRTR 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: ponsfoot 
+# Contributor: philacs
+
+pkgname=libvisio
+pkgver=0.1.7
+pkgrel=1
+pkgdesc='Library providing ability to interpret and import visio diagrams'
+arch=('x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
+license=('LGPL')
+depends=('libwpd' 'libwpg' 'libxml2' 'icu' 'librevenge')
+makedepends=('boost' 'gperf' 'doxygen' 'cppunit')
+source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in lib32-fluidsynth/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:09:17
  Author: alucryd
Revision: 500313

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD
(from rev 500312, lib32-fluidsynth/trunk/PKGBUILD)
Deleted:
  lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:09:12 UTC (rev 500312)
+++ PKGBUILD2019-08-20 16:09:17 UTC (rev 500313)
@@ -1,71 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: David Runge 
-# Contributor: carstene1ns 
-# Contributor: Giuseppe Calà  
-# Contributor: Ray Rashif 
-# Contributor: damir 
-
-pkgname=lib32-fluidsynth
-_name=fluidsynth
-pkgver=2.0.5
-pkgrel=1
-pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
-arch=('x86_64')
-url="https://www.fluidsynth.org/";
-license=('LGPL')
-depends=(
-  fluidsynth
-  lib32-alsa-lib
-  lib32-glib2
-  lib32-glibc
-  lib32-jack
-  lib32-dbus
-  lib32-libpulse
-  lib32-libsndfile
-  lib32-portaudio
-  lib32-readline
-)
-makedepends=(
-  cmake
-  lib32-ladspa
-)
-optdepends=('pulseaudio: PulseAudio sound support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz";)
-sha256sums=('69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51')
-
-prepare() {
-  cd "${_name}-${pkgver}"
-  # out-of-tree build
-  mkdir build
-}
-
-build() {
-  cd "${_name}-${pkgver}/build"
-
-  export CC='gcc -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
--DLIB_SUFFIX=32 \
--Denable-ladspa=ON \
--Denable-lash=OFF \
--Denable-portaudio=ON
-  make
-}
-
-check() {
-  cd "${_name}-${pkgver}/build"
-  make -k check
-}
-
-package() {
-  cd "${_name}-${pkgver}/build"
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-fluidsynth/repos/multilib-x86_64/PKGBUILD (from rev 500312, 
lib32-fluidsynth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:09:17 UTC (rev 500313)
@@ -0,0 +1,71 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: David Runge 
+# Contributor: carstene1ns 
+# Contributor: Giuseppe Calà  
+# Contributor: Ray Rashif 
+# Contributor: damir 
+
+pkgname=lib32-fluidsynth
+_name=fluidsynth
+pkgver=2.0.6
+pkgrel=1
+pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
+arch=('x86_64')
+url="https://www.fluidsynth.org/";
+license=('LGPL')
+depends=(
+  fluidsynth
+  lib32-alsa-lib
+  lib32-glib2
+  lib32-glibc
+  lib32-jack
+  lib32-dbus
+  lib32-libpulse
+  lib32-libsndfile
+  lib32-portaudio
+  lib32-readline
+)
+makedepends=(
+  cmake
+  lib32-ladspa
+)
+optdepends=('pulseaudio: PulseAudio sound support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz";)
+sha256sums=('e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75')
+
+prepare() {
+  cd "${_name}-${pkgver}"
+  # out-of-tree build
+  mkdir build
+}
+
+build() {
+  cd "${_name}-${pkgver}/build"
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-DLIB_SUFFIX=32 \
+-Denable-ladspa=ON \
+-Denable-lash=OFF \
+-Denable-portaudio=ON
+  make
+}
+
+check() {
+  cd "${_name}-${pkgver}/build"
+  make -k check
+}
+
+package() {
+  cd "${_name}-${pkgver}/build"
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-20 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 20, 2019 @ 16:09:12
  Author: alucryd
Revision: 500312

upgpkg: lib32-fluidsynth 2.0.6-1

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:59:24 UTC (rev 500311)
+++ PKGBUILD2019-08-20 16:09:12 UTC (rev 500312)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.0.5
+pkgver=2.0.6
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -31,7 +31,7 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz";)
-sha256sums=('69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51')
+sha256sums=('e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75')
 
 prepare() {
   cd "${_name}-${pkgver}"


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:06:25
  Author: andyrtr
Revision: 360501

archrelease: copy trunk to extra-any

Added:
  getmail/repos/extra-any/PKGBUILD
(from rev 360500, getmail/trunk/PKGBUILD)
Deleted:
  getmail/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 16:06:14 UTC (rev 360500)
+++ PKGBUILD2019-08-20 16:06:25 UTC (rev 360501)
@@ -1,34 +0,0 @@
-# Maintainer: Andreas Radke 
-# Committer: Manolis Tzanidakis 
-
-pkgname=getmail
-pkgver=5.13
-pkgrel=1
-pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
-arch=(any)
-url="http://pyropus.ca/software/getmail";
-license=("GPL")
-depends=('python2')
-optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
-# no signature, no https
-source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-sha256sums=('04d52f6475f09e9f99b4e3d2f1d2eb967a68b67f09af2a6a5151857f060b0a9d')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix broken shebang calls
-  sed -i -e "s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|" 
getmailcore/__init__.py
-  sed -i -e "s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2|" $(find . 
-name '*.py')
-  # recheck
-  head -1 $(find . -name '*.py')
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}
-}

Copied: getmail/repos/extra-any/PKGBUILD (from rev 360500, 
getmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 16:06:25 UTC (rev 360501)
@@ -0,0 +1,34 @@
+# Maintainer: Andreas Radke 
+# Committer: Manolis Tzanidakis 
+
+pkgname=getmail
+pkgver=5.14
+pkgrel=1
+pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
+arch=(any)
+url="http://pyropus.ca/software/getmail";
+license=("GPL")
+depends=('python2')
+optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
+# no signature, no https
+source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
+sha256sums=('f3a99fe74564237d12ca8d4582e113c067c9205b5ab640f72b4e8447606a99c1')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix broken shebang calls
+  sed -i -e "s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|" 
getmailcore/__init__.py
+  sed -i -e "s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2|" $(find . 
-name '*.py')
+  # recheck
+  head -1 $(find . -name '*.py')
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}
+}


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:06:14
  Author: andyrtr
Revision: 360500

upgpkg: getmail 5.14-1

upstream update 5.14

Modified:
  getmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 16:02:46 UTC (rev 360499)
+++ PKGBUILD2019-08-20 16:06:14 UTC (rev 360500)
@@ -2,7 +2,7 @@
 # Committer: Manolis Tzanidakis 
 
 pkgname=getmail
-pkgver=5.13
+pkgver=5.14
 pkgrel=1
 pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
 arch=(any)
@@ -12,7 +12,7 @@
 optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
 # no signature, no https
 
source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-sha256sums=('04d52f6475f09e9f99b4e3d2f1d2eb967a68b67f09af2a6a5151857f060b0a9d')
+sha256sums=('f3a99fe74564237d12ca8d4582e113c067c9205b5ab640f72b4e8447606a99c1')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2019-08-20 Thread Andreas Radke via arch-commits
Date: Tuesday, August 20, 2019 @ 16:02:46
  Author: andyrtr
Revision: 360499

use proper license PDL FS#63509

Modified:
  tzdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:12:35 UTC (rev 360498)
+++ PKGBUILD2019-08-20 16:02:46 UTC (rev 360499)
@@ -8,7 +8,7 @@
 pkgdesc="Sources for time zone and daylight saving time data"
 arch=('x86_64')
 url="https://www.iana.org/time-zones";
-license=('GPL')
+license=('custom: public domain')
 options=('!emptydirs')
 
source=(https://www.iana.org/time-zones/repository/releases/tzcode${_tzcode}.tar.gz{,.asc}
 
https://www.iana.org/time-zones/repository/releases/${pkgname}${_tzdata}.tar.gz{,.asc})


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:59:24
  Author: felixonmars
Revision: 500311

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 14:58:24 UTC (rev 500310)
+++ PKGBUILD2019-08-20 14:59:24 UTC (rev 500311)
@@ -1,70 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.32.3
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('e6c37eb73b76810a00eb70f3d6af83fb0baae35c095471253fcd5628c3ee24e95f41389e54aa80c154a6adaeb15c1273b0e4012f4c6df4b1d6f4d7642be487a7')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 500310, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 14:59:24 UTC (rev 500311)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.33.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
+sha512sums=('f69702590bb249dbc02d4b9b42c90cfcd6a69156dcf8ba6061a7976dfa7556d1be8c2f0f2719ad9c4db19122ea4951989baff7e3bae8132e809f3744adbaddb6')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+
+  cp -a hypothesis-$pkgver{,-py2}
+
+  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
+  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+
+  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
+  python2 setup.py 

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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:58:24
  Author: felixonmars
Revision: 500310

upgpkg: python-hypothesis 4.33.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:44:44 UTC (rev 500309)
+++ PKGBUILD2019-08-20 14:58:24 UTC (rev 500310)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.32.3
+pkgver=4.33.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('e6c37eb73b76810a00eb70f3d6af83fb0baae35c095471253fcd5628c3ee24e95f41389e54aa80c154a6adaeb15c1273b0e4012f4c6df4b1d6f4d7642be487a7')
+sha512sums=('f69702590bb249dbc02d4b9b42c90cfcd6a69156dcf8ba6061a7976dfa7556d1be8c2f0f2719ad9c4db19122ea4951989baff7e3bae8132e809f3744adbaddb6')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-08-20 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, August 20, 2019 @ 14:44:44
  Author: kgizdov
Revision: 500309

install independent of lib version naming

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:17:05 UTC (rev 500308)
+++ PKGBUILD2019-08-20 14:44:44 UTC (rev 500309)
@@ -7,7 +7,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=1.14.0
 _pkgver=1.14.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/";
 license=('APACHE')
@@ -141,13 +141,13 @@
   tensorflow/c/generate-pc.sh --prefix=/usr --version=${pkgver}
   sed -e 's/\/include/\/include\/tensorflow/' -i tensorflow.pc
   install -Dm644 tensorflow.pc "${pkgdir}"/usr/lib/pkgconfig/tensorflow.pc
-  install -Dm755 bazel-bin/tensorflow/libtensorflow.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver}
+  install -Dm755 bazel-bin/tensorflow/libtensorflow.so 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver}
   ln -s libtensorflow.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow.so.${pkgver:0:1}
   ln -s libtensorflow.so.${pkgver:0:1} "${pkgdir}"/usr/lib/libtensorflow.so
-  install -Dm755 bazel-bin/tensorflow/libtensorflow_cc.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver}
+  install -Dm755 bazel-bin/tensorflow/libtensorflow_cc.so 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver}
   ln -s libtensorflow_cc.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so.${pkgver:0:1}
   ln -s libtensorflow_cc.so.${pkgver:0:1} 
"${pkgdir}"/usr/lib/libtensorflow_cc.so
-  install -Dm755 bazel-bin/tensorflow/libtensorflow_framework.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver}
+  install -Dm755 bazel-bin/tensorflow/libtensorflow_framework.so 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver}
   ln -s libtensorflow_framework.so.${pkgver} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so.${pkgver:0:1}
   ln -s libtensorflow_framework.so.${pkgver:0:1} 
"${pkgdir}"/usr/lib/libtensorflow_framework.so
   install -Dm644 tensorflow/c/c_api.h 
"${pkgdir}"/usr/include/tensorflow/tensorflow/c/c_api.h


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

2019-08-20 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 20, 2019 @ 14:17:05
  Author: svenstaro
Revision: 500308

Use modern env vars

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 14:07:27 UTC (rev 500307)
+++ PKGBUILD2019-08-20 14:17:05 UTC (rev 500308)
@@ -67,15 +67,15 @@
 
 build() {
   echo "Building without cuda and without non-x86-64 optimizations"
-  export NO_CUDA=1
-  export WITH_CUDNN=0
+  export USE_CUDA=1
+  export USE_CUDNN=0
   cd "${srcdir}/${_pkgname}-${pkgver}"
   python setup.py build
 
 
   echo "Building without cuda and with non-x86-64 optimizations"
-  export NO_CUDA=1
-  export WITH_CUDNN=0
+  export USE_CUDA=1
+  export USE_CUDNN=0
   cd "${srcdir}/${_pkgname}-${pkgver}-opt"
   echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
   python setup.py build
@@ -82,15 +82,15 @@
 
 
   echo "Building with cuda and without non-x86-64 optimizations"
-  export NO_CUDA=0
-  export WITH_CUDNN=1
+  export USE_CUDA=0
+  export USE_CUDNN=1
   cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
   python setup.py build
 
 
   echo "Building with cuda and with non-x86-64 optimizations"
-  export NO_CUDA=0
-  export WITH_CUDNN=1
+  export USE_CUDA=0
+  export USE_CUDNN=1
   cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
   echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
   python setup.py build


[arch-commits] Commit in perl-alien-build/repos/extra-any (PKGBUILD PKGBUILD)

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:12:35
  Author: felixonmars
Revision: 360498

archrelease: copy trunk to extra-any

Added:
  perl-alien-build/repos/extra-any/PKGBUILD
(from rev 360497, perl-alien-build/trunk/PKGBUILD)
Deleted:
  perl-alien-build/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 14:12:22 UTC (rev 360497)
+++ PKGBUILD2019-08-20 14:12:35 UTC (rev 360498)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-alien-build
-pkgver=1.79
-pkgrel=1
-pkgdesc="Build external dependencies for use in CPAN"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Alien-Build";
-depends=('perl-capture-tiny' 'perl-ffi-checklib' 'perl-file-chdir' 
'perl-file-which'
- 'perl-path-tiny')
-makedepends=('perl-test2-suite')
-checkdepends=('perl-alien-base-modulebuild' 'perl-alien-cmake3' 
'perl-env-shellwords'
-  'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
-sha512sums=('8b270ec1b914aead651c81d2c513496e31bfa6086c0e5731e6ada17079ede868d65a7c70e29a0762f65ba8c120fd605662122de7f9d715b726be4a503b552808')
-
-build() {
-  cd Alien-Build-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Alien-Build-$pkgver
-  make test
-}
-
-package() {
-  cd Alien-Build-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-alien-build/repos/extra-any/PKGBUILD (from rev 360497, 
perl-alien-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 14:12:35 UTC (rev 360498)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-alien-build
+pkgver=1.83
+pkgrel=1
+pkgdesc="Build external dependencies for use in CPAN"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Alien-Build";
+depends=('perl-capture-tiny' 'perl-ffi-checklib' 'perl-file-chdir' 
'perl-file-which'
+ 'perl-path-tiny')
+makedepends=('perl-test2-suite')
+checkdepends=('perl-alien-base-modulebuild' 'perl-alien-cmake3' 
'perl-env-shellwords'
+  'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
+sha512sums=('52d521180537646fcc99988d3a5c7dbd4437b9281c75394449c130f165defb996840e4c46b791cde696e41f5f77df38c89892b9330300bc1124f6391865ad010')
+
+build() {
+  cd Alien-Build-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Alien-Build-$pkgver
+  make test
+}
+
+package() {
+  cd Alien-Build-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-alien-build/trunk (PKGBUILD)

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:12:22
  Author: felixonmars
Revision: 360497

upgpkg: perl-alien-build 1.83-1

Modified:
  perl-alien-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 11:03:14 UTC (rev 360496)
+++ PKGBUILD2019-08-20 14:12:22 UTC (rev 360497)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-alien-build
-pkgver=1.79
+pkgver=1.83
 pkgrel=1
 pkgdesc="Build external dependencies for use in CPAN"
 arch=('any')
@@ -14,7 +14,7 @@
   'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
-sha512sums=('8b270ec1b914aead651c81d2c513496e31bfa6086c0e5731e6ada17079ede868d65a7c70e29a0762f65ba8c120fd605662122de7f9d715b726be4a503b552808')
+sha512sums=('52d521180537646fcc99988d3a5c7dbd4437b9281c75394449c130f165defb996840e4c46b791cde696e41f5f77df38c89892b9330300bc1124f6391865ad010')
 
 build() {
   cd Alien-Build-$pkgver


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:02:02
  Author: felixonmars
Revision: 500303

archrelease: copy trunk to community-testing-x86_64

Added:
  labplot/repos/community-testing-x86_64/
  labplot/repos/community-testing-x86_64/PKGBUILD
(from rev 500302, labplot/trunk/PKGBUILD)

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

Copied: labplot/repos/community-testing-x86_64/PKGBUILD (from rev 500302, 
labplot/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-08-20 14:02:02 UTC (rev 500303)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=labplot
+pkgver=2.6
+pkgrel=3
+arch=(x86_64)
+pkgdesc="KDE Application for interactive graphing and analysis of scientific 
data"
+url="https://labplot.kde.org/";
+license=(GPL2)
+depends=(cantor netcdf cfitsio fftw gsl qt5-serialport libcerf)
+makedepends=(extra-cmake-modules kdelibs4support kdesignerplugin kdoctools)
+source=(https://download.kde.org/stable/$pkgname/$pkgver.0/$pkgname-$pkgver.0.tar.xz)
+sha256sums=('4556541fb6544cda56c2625a1fc5c9c8b0ba6bc8178af076c68a792b545c5657')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-20 Thread Felix Yan via arch-commits
Date: Tuesday, August 20, 2019 @ 14:01:51
  Author: felixonmars
Revision: 500302

upgpkg: labplot 2.6-3

rebuild with libkgapi 19.08

Modified:
  labplot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-20 13:57:48 UTC (rev 500301)
+++ PKGBUILD2019-08-20 14:01:51 UTC (rev 500302)
@@ -2,7 +2,7 @@
 
 pkgname=labplot
 pkgver=2.6
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 pkgdesc="KDE Application for interactive graphing and analysis of scientific 
data"
 url="https://labplot.kde.org/";
@@ -9,7 +9,7 @@
 license=(GPL2)
 depends=(cantor netcdf cfitsio fftw gsl qt5-serialport libcerf)
 makedepends=(extra-cmake-modules kdelibs4support kdesignerplugin kdoctools)
-source=(https://download.kde.org/stable/$pkgname/$pkgver.0/$pkgname-$pkgver.tar.xz)
+source=(https://download.kde.org/stable/$pkgname/$pkgver.0/$pkgname-$pkgver.0.tar.xz)
 sha256sums=('4556541fb6544cda56c2625a1fc5c9c8b0ba6bc8178af076c68a792b545c5657')
 
 prepare() {


  1   2   3   4   5   6   >