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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 05:17:12
  Author: kkeen
Revision: 371674

upgpkg: libuhd-firmware 3.13.0.1-1

Modified:
  libuhd-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-15 05:03:27 UTC (rev 371673)
+++ PKGBUILD2018-08-15 05:17:12 UTC (rev 371674)
@@ -3,7 +3,7 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd-firmware
-pkgver=3.11.1.0
+pkgver=3.13.0.1
 pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace firmware"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('libuhd')
 
source=("https://github.com/EttusResearch/uhd/releases/download/v$pkgver/uhd-images_$pkgver.tar.xz;)
-md5sums=('994a95bd3b74ac07c625f1675dd391d7')
+md5sums=('b9df1d3f434d874c1d01a4495017fb71')
 
 package() {
   cd "$srcdir/uhd-images_$pkgver"


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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 05:17:28
  Author: kkeen
Revision: 371675

archrelease: copy trunk to community-staging-any

Added:
  libuhd-firmware/repos/community-staging-any/
  libuhd-firmware/repos/community-staging-any/PKGBUILD
(from rev 371674, libuhd-firmware/trunk/PKGBUILD)

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

Copied: libuhd-firmware/repos/community-staging-any/PKGBUILD (from rev 371674, 
libuhd-firmware/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-08-15 05:17:28 UTC (rev 371675)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=libuhd-firmware
+pkgver=3.13.0.1
+pkgrel=1
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace firmware"
+arch=('any')
+url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
+license=('GPL')
+depends=('libuhd')
+source=("https://github.com/EttusResearch/uhd/releases/download/v$pkgver/uhd-images_$pkgver.tar.xz;)
+md5sums=('b9df1d3f434d874c1d01a4495017fb71')
+
+package() {
+  cd "$srcdir/uhd-images_$pkgver"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -d "$pkgdir/usr/share/uhd/images/"
+  # multiple types of yuck
+  rm -r winusb_driver
+  cp -r * "$pkgdir/usr/share/uhd/images/"
+}
+


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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 05:03:27
  Author: kkeen
Revision: 371673

archrelease: copy trunk to community-staging-x86_64

Added:
  libuhd/repos/community-staging-x86_64/
  libuhd/repos/community-staging-x86_64/PKGBUILD
(from rev 371672, libuhd/trunk/PKGBUILD)
  libuhd/repos/community-staging-x86_64/boost-1.67.patch
(from rev 371672, libuhd/trunk/boost-1.67.patch)

--+
 PKGBUILD |   53 +
 boost-1.67.patch |   12 
 2 files changed, 65 insertions(+)

Copied: libuhd/repos/community-staging-x86_64/PKGBUILD (from rev 371672, 
libuhd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-15 05:03:27 UTC (rev 371673)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=libuhd
+pkgver=3.13.0.1
+pkgrel=1
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
+arch=('x86_64')
+url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
+license=('GPL')
+depends=('boost-libs' 'orc' 'libusb')
+optdepends=('python2: usrp utils')
+makedepends=('cmake' 'boost' 'python2-mako')
+
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
+'boost-1.67.patch')
+md5sums=('e7c38546d9dadac41657ee5e53c3f342'
+ '45fcc6feb0ea9b4ae09e4ba7b010864f')
+
+prepare() {
+  cd "$srcdir/uhd-$pkgver"
+  patch -Np1 -i ../boost-1.67.patch
+}
+
+build() {
+  cd "$srcdir/uhd-$pkgver/host"
+  # fix for py2
+  find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
+   -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+   -DENABLE_EXAMPLES=OFF \
+   -DENABLE_UTILS=ON \
+   -DENABLE_TESTS=OFF \
+   -DENABLE_E100=ON \
+   -DENABLE_E300=ON
+  make
+}
+
+check() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+  make test
+}
+
+package() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "../utils/uhd-usrp.rules" 
"$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
+} 
+

Copied: libuhd/repos/community-staging-x86_64/boost-1.67.patch (from rev 
371672, libuhd/trunk/boost-1.67.patch)
===
--- community-staging-x86_64/boost-1.67.patch   (rev 0)
+++ community-staging-x86_64/boost-1.67.patch   2018-08-15 05:03:27 UTC (rev 
371673)
@@ -0,0 +1,12 @@
+diff -upr uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp 
uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp
+--- uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp  2018-05-16 
22:25:48.0 +0300
 uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp   2018-06-03 
00:16:53.119018076 +0300
+@@ -107,7 +107,7 @@ struct e300_fifo_poll_waiter
+ boost::mutex::scoped_lock l(_mutex);
+ if (_poll_claimed)
+ {
+-_cond.timed_wait(l, 
boost::posix_time::microseconds(timeout*100));
++_cond.timed_wait(l, 
boost::posix_time::microseconds(long(timeout*100)));
+ }
+ else
+ {


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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 05:03:10
  Author: kkeen
Revision: 371672

upgpkg: libuhd 3.13.0.1-1

Modified:
  libuhd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-15 04:50:14 UTC (rev 371671)
+++ PKGBUILD2018-08-15 05:03:10 UTC (rev 371672)
@@ -3,7 +3,7 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.11.1.0
+pkgver=3.13.0.1
 pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
@@ -11,11 +11,11 @@
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusb')
 optdepends=('python2: usrp utils')
-makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
+makedepends=('cmake' 'boost' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
 'boost-1.67.patch')
-md5sums=('fb3c6972af55130f34ec9133caf6c9e4'
+md5sums=('e7c38546d9dadac41657ee5e53c3f342'
  '45fcc6feb0ea9b4ae09e4ba7b010864f')
 
 prepare() {


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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 04:50:14
  Author: kkeen
Revision: 371671

archrelease: copy trunk to community-staging-x86_64

Added:
  libvolk/repos/community-staging-x86_64/
  libvolk/repos/community-staging-x86_64/PKGBUILD
(from rev 371670, libvolk/trunk/PKGBUILD)

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

Copied: libvolk/repos/community-staging-x86_64/PKGBUILD (from rev 371670, 
libvolk/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-15 04:50:14 UTC (rev 371671)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgname=libvolk
+pkgver=1.4
+pkgrel=1
+pkgdesc="The Vector-Optimized Library of Kernels from Gnuradio"
+arch=('x86_64')
+url="http://libvolk.org/;
+license=('GPL3')
+depends=('gcc-libs' 'boost-libs' 'orc' 'python2' 'python2-six')
+makedepends=('boost' 'cmake' 'python2-mako')
+# this release was really screwed up
+# there is going to be lots of stuff hopefully removed in 1.4.1 or 1.5
+# first the asc doesn't exist
+#source=("http://libvolk.org/releases/volk-$pkgver.tar.gz"{,.asc})
+source=("http://libvolk.org/releases/volk-$pkgver.tar.gz;)
+md5sums=('02d3a0f4b19c4cc34ecea19fc37c7fd4')
+validpgpkeys=('09E749D885FA881A7E84E823385323EE6402091D')
+
+# doxygen for docs
+
+prepare() {
+  cd "$srcdir"
+  # here is 99% of the broken
+  # I'm not even sure how they made a tarball this broken
+  mkdir -p volk-1.4
+  mv volk-1.4kernels volk-1.4/kernels
+  mv volk-1.4lib volk-1.4/lib
+  mv volk-1.4cmake volk-1.4/cmake
+  mv volk-1.4include volk-1.4/include
+  mv volk-1.4python volk-1.4/python
+  mv volk-1.4tmpl volk-1.4/tmpl
+  mv volk-1.4apps volk-1.4/apps
+  mv volk-1.4gen volk-1.4/gen
+  mv volk-1.4docs volk-1.4/docs
+  mv volk-1.4Doxyfile.in volk-1.4/Doxyfile.in
+  mv volk-1.4COPYING volk-1.4/COPYING
+  mv volk-1.4CMakeLists.txt volk-1.4/CMakeLists.txt
+  mv volk-1.4DoxygenLayout.xml volk-1.4/DoxygenLayout.xml
+  mv volk-1.4appveyor.yml volk-1.4/appveyor.yml
+  mv volk-1.4.travis.yml volk-1.4/.travis.yml
+  mv volk-1.4README.md volk-1.4/README.md
+  mv volk-1.4.gitlab-ci.yml volk-1.4/.gitlab-ci.yml
+  mv volk-1.4volk.pc.in volk-1.4/volk.pc.in
+  mv volk-1.4.gitignore volk-1.4/.gitignore
+  mv volk-1.4.tar.gz volk-1.4/.tar.gz
+  cd "$srcdir/volk-$pkgver"
+  sed -i -e "s|#![ ]*/usr/bin/env python$|&2|" $(find ./ -name '*.py')
+}
+
+build() {
+  export PYTHON=python2
+  cd "$srcdir/volk-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/volk-$pkgver/build"
+  export PYTHON=python2
+  if [[ "$CARCH" == "x86_64" ]]; then
+make test
+  fi
+}
+
+package() {
+  cd "$srcdir/volk-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}


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

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 04:50:01
  Author: kkeen
Revision: 371670

upgpkg: libvolk 1.4-1

Modified:
  libvolk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-15 01:14:12 UTC (rev 371669)
+++ PKGBUILD2018-08-15 04:50:01 UTC (rev 371670)
@@ -2,22 +2,49 @@
 # Maintainer: Kyle Keen 
 
 pkgname=libvolk
-pkgver=1.3
-pkgrel=8
+pkgver=1.4
+pkgrel=1
 pkgdesc="The Vector-Optimized Library of Kernels from Gnuradio"
 arch=('x86_64')
 url="http://libvolk.org/;
 license=('GPL3')
-depends=('gcc-libs' 'boost-libs' 'orc' 'python2')
-makedepends=('boost' 'cmake' 'python2-cheetah')
-source=("http://libvolk.org/releases/volk-$pkgver.tar.gz"{,.asc})
-md5sums=('d04edc0779431c8660a8a592792a3680'
- 'SKIP')
+depends=('gcc-libs' 'boost-libs' 'orc' 'python2' 'python2-six')
+makedepends=('boost' 'cmake' 'python2-mako')
+# this release was really screwed up
+# there is going to be lots of stuff hopefully removed in 1.4.1 or 1.5
+# first the asc doesn't exist
+#source=("http://libvolk.org/releases/volk-$pkgver.tar.gz"{,.asc})
+source=("http://libvolk.org/releases/volk-$pkgver.tar.gz;)
+md5sums=('02d3a0f4b19c4cc34ecea19fc37c7fd4')
 validpgpkeys=('09E749D885FA881A7E84E823385323EE6402091D')
 
 # doxygen for docs
 
 prepare() {
+  cd "$srcdir"
+  # here is 99% of the broken
+  # I'm not even sure how they made a tarball this broken
+  mkdir -p volk-1.4
+  mv volk-1.4kernels volk-1.4/kernels
+  mv volk-1.4lib volk-1.4/lib
+  mv volk-1.4cmake volk-1.4/cmake
+  mv volk-1.4include volk-1.4/include
+  mv volk-1.4python volk-1.4/python
+  mv volk-1.4tmpl volk-1.4/tmpl
+  mv volk-1.4apps volk-1.4/apps
+  mv volk-1.4gen volk-1.4/gen
+  mv volk-1.4docs volk-1.4/docs
+  mv volk-1.4Doxyfile.in volk-1.4/Doxyfile.in
+  mv volk-1.4COPYING volk-1.4/COPYING
+  mv volk-1.4CMakeLists.txt volk-1.4/CMakeLists.txt
+  mv volk-1.4DoxygenLayout.xml volk-1.4/DoxygenLayout.xml
+  mv volk-1.4appveyor.yml volk-1.4/appveyor.yml
+  mv volk-1.4.travis.yml volk-1.4/.travis.yml
+  mv volk-1.4README.md volk-1.4/README.md
+  mv volk-1.4.gitlab-ci.yml volk-1.4/.gitlab-ci.yml
+  mv volk-1.4volk.pc.in volk-1.4/volk.pc.in
+  mv volk-1.4.gitignore volk-1.4/.gitignore
+  mv volk-1.4.tar.gz volk-1.4/.tar.gz
   cd "$srcdir/volk-$pkgver"
   sed -i -e "s|#![ ]*/usr/bin/env python$|&2|" $(find ./ -name '*.py')
 }
@@ -35,11 +62,6 @@
 }
 
 check() {
-  # boost 1.64.0 and 1.65 is weird
-  # tests fail in makepkg (w/ and w/o chroot)
-  # but works okay in local shell?
-  # everything else checks out okay too
-  return
   cd "$srcdir/volk-$pkgver/build"
   export PYTHON=python2
   if [[ "$CARCH" == "x86_64" ]]; then


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 15, 2018 @ 01:14:12
  Author: ffy00
Revision: 371669

archrelease: copy trunk to community-any

Added:
  soapy_power/repos/community-any/
  soapy_power/repos/community-any/PKGBUILD
(from rev 371668, soapy_power/trunk/PKGBUILD)

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

Copied: soapy_power/repos/community-any/PKGBUILD (from rev 371668, 
soapy_power/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-15 01:14:12 UTC (rev 371669)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=soapy_power
+pkgver=1.6.1
+pkgrel=2
+pkgdesc="Obtain power spectrum from SoapySDR devices"
+arch=('any')
+url="https://github.com/xmikos/soapy_power;
+license=('MIT')
+depends=('python' 'python-numpy' 'simplesoapy>=1.5.0' 'simplespectral')
+makedepends=('python-setuptools')
+optdepends=('soapyrtlsdr: Support for RTL-SDR dongles'
+   'soapyairspy: Support for Airspy R2 and Airspy Mini'
+   'soapysdrplay: Support for SDRplay RSP'
+   'soapyhackrf: Support for HackRF'
+   'soapybladerf: Support for Nuand bladeRF'
+   'soapyuhd: Support for Ettus USRP'
+   'soapylms7: Support for LimeSDR and other LMS7002M based Myriad RF 
boards'
+   'soapyredpitaya: Support for Red Pitaya'
+   'soapyosmo: Support for MiriSDR and RFSpace'
+   'soapyremote: Use any SoapySDR device remotely over network'
+   'python-pyfftw: Fastest FFT calculations with FFTW library'
+   'python-scipy: Faster FFT calculations with scipy.fftpack library')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/soapy_power/archive/v$pkgver.tar.gz;)
+sha256sums=('fcf80fb3eca178ff8ea2ce87bc5cc390fa2b17f8dc72fa9e1213ca4022f469e4')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in (4 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 15, 2018 @ 01:13:55
  Author: ffy00
Revision: 371668

import from aur

Added:
  soapy_power/
  soapy_power/repos/
  soapy_power/trunk/
  soapy_power/trunk/PKGBUILD

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

Added: soapy_power/trunk/PKGBUILD
===
--- soapy_power/trunk/PKGBUILD  (rev 0)
+++ soapy_power/trunk/PKGBUILD  2018-08-15 01:13:55 UTC (rev 371668)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=soapy_power
+pkgver=1.6.1
+pkgrel=2
+pkgdesc="Obtain power spectrum from SoapySDR devices"
+arch=('any')
+url="https://github.com/xmikos/soapy_power;
+license=('MIT')
+depends=('python' 'python-numpy' 'simplesoapy>=1.5.0' 'simplespectral')
+makedepends=('python-setuptools')
+optdepends=('soapyrtlsdr: Support for RTL-SDR dongles'
+   'soapyairspy: Support for Airspy R2 and Airspy Mini'
+   'soapysdrplay: Support for SDRplay RSP'
+   'soapyhackrf: Support for HackRF'
+   'soapybladerf: Support for Nuand bladeRF'
+   'soapyuhd: Support for Ettus USRP'
+   'soapylms7: Support for LimeSDR and other LMS7002M based Myriad RF 
boards'
+   'soapyredpitaya: Support for Red Pitaya'
+   'soapyosmo: Support for MiriSDR and RFSpace'
+   'soapyremote: Use any SoapySDR device remotely over network'
+   'python-pyfftw: Fastest FFT calculations with FFTW library'
+   'python-scipy: Faster FFT calculations with scipy.fftpack library')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/soapy_power/archive/v$pkgver.tar.gz;)
+sha256sums=('fcf80fb3eca178ff8ea2ce87bc5cc390fa2b17f8dc72fa9e1213ca4022f469e4')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


Property changes on: soapy_power/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:32:48
  Author: ffy00
Revision: 371667

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 23:32:43 UTC (rev 371666)
+++ PKGBUILD2018-08-14 23:32:48 UTC (rev 371667)
@@ -1,28 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Windel Bouwman 
-# Contributor: Jakub Klinkovský 
-
-pkgname=python-pyqtgraph
-_pkgname=pyqtgraph
-pkgver=0.10.0
-pkgrel=3
-pkgdesc="Scientific Graphics and GUI Library for Python"
-arch=('any')
-license=('MIT')
-url="http://www.pyqtgraph.org/;
-depends=('python' 'python-pyqt4' 'python-numpy')
-optdepends=('python-opengl')
-source=("http://www.pyqtgraph.org/downloads/$pkgver/pyqtgraph-$pkgver.tar.gz;)
-sha256sums=('c74597dd87c31987099bd0949a5207e5d58297bd8a663279562ca1cb334074fc')
-# 
source=("https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-${pkgver}.tar.gz;)
-
-build() {
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-}
-

Copied: python-pyqtgraph/repos/community-any/PKGBUILD (from rev 371666, 
python-pyqtgraph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 23:32:48 UTC (rev 371667)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Windel Bouwman 
+# Contributor: Jakub Klinkovský 
+
+pkgname=python-pyqtgraph
+_pkgname=pyqtgraph
+pkgver=0.10.0
+pkgrel=3
+pkgdesc="Scientific Graphics and GUI Library for Python"
+arch=('any')
+license=('MIT')
+url="http://www.pyqtgraph.org/;
+depends=('python' 'python-pyqt4' 'python-numpy')
+optdepends=('python-opengl')
+source=("http://www.pyqtgraph.org/downloads/$pkgver/pyqtgraph-$pkgver.tar.gz;)
+sha256sums=('c74597dd87c31987099bd0949a5207e5d58297bd8a663279562ca1cb334074fc')
+# 
source=("https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-${pkgver}.tar.gz;)
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:32:43
  Author: ffy00
Revision: 371666

upgpkg: python-pyqtgraph 0.10.0-3

add missing license

Modified:
  python-pyqtgraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 23:30:20 UTC (rev 371665)
+++ PKGBUILD2018-08-14 23:32:43 UTC (rev 371666)
@@ -26,6 +26,6 @@
   cd "$srcdir"/$_pkgname-$pkgver
   python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
 
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:30:20
  Author: ffy00
Revision: 371665

add missing license

Modified:
  python-pyqtgraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 23:29:56 UTC (rev 371664)
+++ PKGBUILD2018-08-14 23:30:20 UTC (rev 371665)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Filipe Laíns (FFY00) 
 # Contributor: Windel Bouwman 
 # Contributor: Jakub Klinkovský 
@@ -24,5 +25,7 @@
 package() {
   cd "$srcdir"/$_pkgname-$pkgver
   python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 


[arch-commits] Commit in python-qt.py/repos/community-any (PKGBUILD PKGBUILD)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:29:56
  Author: ffy00
Revision: 371664

archrelease: copy trunk to community-any

Added:
  python-qt.py/repos/community-any/PKGBUILD
(from rev 371663, python-qt.py/trunk/PKGBUILD)
Deleted:
  python-qt.py/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 23:29:13 UTC (rev 371663)
+++ PKGBUILD2018-08-14 23:29:56 UTC (rev 371664)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michal Krenek (Mikos) 
-
-pkgname=python-qt.py
-_pkgname=Qt.py
-pkgver=0.6.9
-pkgrel=1
-pkgdesc="Python compatibility wrapper around all Qt bindings"
-arch=('any')
-url="https://github.com/mottosso/Qt.py;
-license=('MIT')
-depends=('python')
-optdepends=('python-pyqt5: Qt 5 bindings'
-   'python-pyqt4: Qt 4 bindings'
-   'python-pyside2-git: LGPL Qt 5 bindings'
-   'python-pyside: LGPL Qt 4 bindings')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver::https://github.com/mottosso/Qt.py/archive/$pkgver.tar.gz;)
-sha256sums=('421db39c390b9f6d5978f1ed9a1c16faf4e569aa93c06a95498cd130ea2cfcc6')
-
-build() {
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-qt.py/repos/community-any/PKGBUILD (from rev 371663, 
python-qt.py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 23:29:56 UTC (rev 371664)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=python-qt.py
+_pkgname=Qt.py
+pkgver=0.6.9
+pkgrel=1
+pkgdesc="Python compatibility wrapper around all Qt bindings"
+arch=('any')
+url="https://github.com/mottosso/Qt.py;
+license=('MIT')
+depends=('python')
+optdepends=('python-pyqt5: Qt 5 bindings'
+   'python-pyqt4: Qt 4 bindings'
+   'python-pyside2-git: LGPL Qt 5 bindings'
+   'python-pyside: LGPL Qt 4 bindings')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver::https://github.com/mottosso/Qt.py/archive/$pkgver.tar.gz;)
+sha256sums=('421db39c390b9f6d5978f1ed9a1c16faf4e569aa93c06a95498cd130ea2cfcc6')
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in python-qt.py/trunk (PKGBUILD)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:29:13
  Author: ffy00
Revision: 371663

create optimized files (.pyc)

Modified:
  python-qt.py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 23:27:23 UTC (rev 371662)
+++ PKGBUILD2018-08-14 23:29:13 UTC (rev 371663)
@@ -26,7 +26,7 @@
 
 package() {
   cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:27:23
  Author: ffy00
Revision: 371662

archrelease: copy trunk to community-any

Added:
  python-pyqtgraph/repos/community-any/
  python-pyqtgraph/repos/community-any/PKGBUILD
(from rev 371661, python-pyqtgraph/trunk/PKGBUILD)

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

Copied: python-pyqtgraph/repos/community-any/PKGBUILD (from rev 371661, 
python-pyqtgraph/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-14 23:27:23 UTC (rev 371662)
@@ -0,0 +1,28 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Windel Bouwman 
+# Contributor: Jakub Klinkovský 
+
+pkgname=python-pyqtgraph
+_pkgname=pyqtgraph
+pkgver=0.10.0
+pkgrel=3
+pkgdesc="Scientific Graphics and GUI Library for Python"
+arch=('any')
+license=('MIT')
+url="http://www.pyqtgraph.org/;
+depends=('python' 'python-pyqt4' 'python-numpy')
+optdepends=('python-opengl')
+source=("http://www.pyqtgraph.org/downloads/$pkgver/pyqtgraph-$pkgver.tar.gz;)
+sha256sums=('c74597dd87c31987099bd0949a5207e5d58297bd8a663279562ca1cb334074fc')
+# 
source=("https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-${pkgver}.tar.gz;)
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}
+


[arch-commits] Commit in (4 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:27:14
  Author: ffy00
Revision: 371661

import from aur

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

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

Added: python-pyqtgraph/trunk/PKGBUILD
===
--- python-pyqtgraph/trunk/PKGBUILD (rev 0)
+++ python-pyqtgraph/trunk/PKGBUILD 2018-08-14 23:27:14 UTC (rev 371661)
@@ -0,0 +1,28 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Windel Bouwman 
+# Contributor: Jakub Klinkovský 
+
+pkgname=python-pyqtgraph
+_pkgname=pyqtgraph
+pkgver=0.10.0
+pkgrel=3
+pkgdesc="Scientific Graphics and GUI Library for Python"
+arch=('any')
+license=('MIT')
+url="http://www.pyqtgraph.org/;
+depends=('python' 'python-pyqt4' 'python-numpy')
+optdepends=('python-opengl')
+source=("http://www.pyqtgraph.org/downloads/$pkgver/pyqtgraph-$pkgver.tar.gz;)
+sha256sums=('c74597dd87c31987099bd0949a5207e5d58297bd8a663279562ca1cb334074fc')
+# 
source=("https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-${pkgver}.tar.gz;)
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}
+


Property changes on: python-pyqtgraph/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in python-qt.py/repos (community-any community-any/PKGBUILD)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:22:05
  Author: ffy00
Revision: 371660

archrelease: copy trunk to community-any

Added:
  python-qt.py/repos/community-any/
  python-qt.py/repos/community-any/PKGBUILD
(from rev 371659, python-qt.py/trunk/PKGBUILD)

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

Copied: python-qt.py/repos/community-any/PKGBUILD (from rev 371659, 
python-qt.py/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-14 23:22:05 UTC (rev 371660)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=python-qt.py
+_pkgname=Qt.py
+pkgver=0.6.9
+pkgrel=1
+pkgdesc="Python compatibility wrapper around all Qt bindings"
+arch=('any')
+url="https://github.com/mottosso/Qt.py;
+license=('MIT')
+depends=('python')
+optdepends=('python-pyqt5: Qt 5 bindings'
+   'python-pyqt4: Qt 4 bindings'
+   'python-pyside2-git: LGPL Qt 5 bindings'
+   'python-pyside: LGPL Qt 4 bindings')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver::https://github.com/mottosso/Qt.py/archive/$pkgver.tar.gz;)
+sha256sums=('421db39c390b9f6d5978f1ed9a1c16faf4e569aa93c06a95498cd130ea2cfcc6')
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in (4 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:21:18
  Author: ffy00
Revision: 371659

import from aur

Added:
  python-qt.py/
  python-qt.py/repos/
  python-qt.py/trunk/
  python-qt.py/trunk/PKGBUILD

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

Added: python-qt.py/trunk/PKGBUILD
===
--- python-qt.py/trunk/PKGBUILD (rev 0)
+++ python-qt.py/trunk/PKGBUILD 2018-08-14 23:21:18 UTC (rev 371659)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=python-qt.py
+_pkgname=Qt.py
+pkgver=0.6.9
+pkgrel=1
+pkgdesc="Python compatibility wrapper around all Qt bindings"
+arch=('any')
+url="https://github.com/mottosso/Qt.py;
+license=('MIT')
+depends=('python')
+optdepends=('python-pyqt5: Qt 5 bindings'
+   'python-pyqt4: Qt 4 bindings'
+   'python-pyside2-git: LGPL Qt 5 bindings'
+   'python-pyside: LGPL Qt 4 bindings')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver::https://github.com/mottosso/Qt.py/archive/$pkgver.tar.gz;)
+sha256sums=('421db39c390b9f6d5978f1ed9a1c16faf4e569aa93c06a95498cd130ea2cfcc6')
+
+build() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


Property changes on: python-qt.py/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:13:25
  Author: ffy00
Revision: 371658

archrelease: copy trunk to community-any

Added:
  simplespectral/repos/community-any/
  simplespectral/repos/community-any/PKGBUILD
(from rev 371657, simplespectral/trunk/PKGBUILD)

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

Copied: simplespectral/repos/community-any/PKGBUILD (from rev 371657, 
simplespectral/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-14 23:13:25 UTC (rev 371658)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=simplespectral
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Heavily simplified scipy.signal.spectral module"
+arch=('any')
+url="https://github.com/xmikos/simplespectral;
+license=('MIT')
+depends=('python' 'python-numpy')
+makedepends=('python-setuptools')
+optdepends=('python-pyfftw: fastest FFT calculations with FFTW library'
+   'python-scipy: faster FFT calculations with scipy.fftpack library')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplespectral/archive/v$pkgver.tar.gz;)
+sha256sums=('4342741f7054c71f7c5fb9d38df49e048e0a4e20eb53cefd247e47937644cad0')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:12:59
  Author: ffy00
Revision: 371657

import from aur

Added:
  simplespectral/
  simplespectral/repos/
  simplespectral/trunk/
  simplespectral/trunk/PKGBUILD

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

Added: simplespectral/trunk/PKGBUILD
===
--- simplespectral/trunk/PKGBUILD   (rev 0)
+++ simplespectral/trunk/PKGBUILD   2018-08-14 23:12:59 UTC (rev 371657)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=simplespectral
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Heavily simplified scipy.signal.spectral module"
+arch=('any')
+url="https://github.com/xmikos/simplespectral;
+license=('MIT')
+depends=('python' 'python-numpy')
+makedepends=('python-setuptools')
+optdepends=('python-pyfftw: fastest FFT calculations with FFTW library'
+   'python-scipy: faster FFT calculations with scipy.fftpack library')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplespectral/archive/v$pkgver.tar.gz;)
+sha256sums=('4342741f7054c71f7c5fb9d38df49e048e0a4e20eb53cefd247e47937644cad0')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: simplespectral/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-14 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 14, 2018 @ 23:07:07
  Author: eschwartz
Revision: 371656

rm more binary blobs

Deleted:
  simplesoapy/repos/community-any/PKGBUILD-namcap.log
  simplesoapy/repos/community-any/simplesoapy-1.5.1
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-build.log
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-package.log

---+
 simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log |3 ---
 simplesoapy-1.5.1-2-x86_64-build.log  |5 -
 simplesoapy-1.5.1-2-x86_64-package.log|   23 ---
 3 files changed, 31 deletions(-)

Deleted: PKGBUILD-namcap.log
===
Deleted: simplesoapy-1.5.1
===
(Binary files differ)

Deleted: simplesoapy-1.5.1-2-any.pkg.tar.xz
===
(Binary files differ)

Deleted: simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
===
--- simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log   2018-08-14 23:06:45 UTC 
(rev 371655)
+++ simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log   2018-08-14 23:07:07 UTC 
(rev 371656)
@@ -1,3 +0,0 @@
-simplesoapy W: Dependency python included but already satisfied
-simplesoapy W: Dependency included and not needed ('python-numpy')
-simplesoapy W: Dependency included and not needed ('soapysdr')

Deleted: simplesoapy-1.5.1-2-x86_64-build.log
===
--- simplesoapy-1.5.1-2-x86_64-build.log2018-08-14 23:06:45 UTC (rev 
371655)
+++ simplesoapy-1.5.1-2-x86_64-build.log2018-08-14 23:07:07 UTC (rev 
371656)
@@ -1,5 +0,0 @@
-running build
-running build_py
-creating build
-creating build/lib
-copying simplesoapy.py -> build/lib

Deleted: simplesoapy-1.5.1-2-x86_64-package.log
===
--- simplesoapy-1.5.1-2-x86_64-package.log  2018-08-14 23:06:45 UTC (rev 
371655)
+++ simplesoapy-1.5.1-2-x86_64-package.log  2018-08-14 23:07:07 UTC (rev 
371656)
@@ -1,23 +0,0 @@
-running install
-running build
-running build_py
-running install_lib
-creating /build/simplesoapy/pkg/simplesoapy/usr
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages
-copying build/lib/simplesoapy.py -> 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages
-byte-compiling 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages/simplesoapy.py
 to simplesoapy.cpython-37.pyc
-running install_egg_info
-running egg_info
-creating SimpleSoapy.egg-info
-writing SimpleSoapy.egg-info/PKG-INFO
-writing dependency_links to SimpleSoapy.egg-info/dependency_links.txt
-writing requirements to SimpleSoapy.egg-info/requires.txt
-writing top-level names to SimpleSoapy.egg-info/top_level.txt
-writing manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-reading manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-reading manifest template 'MANIFEST.in'
-writing manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-Copying SimpleSoapy.egg-info to 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages/SimpleSoapy-1.5.1-py3.7.egg-info
-running install_scripts


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 23:06:45
  Author: ffy00
Revision: 371655

fix tarball name

Modified:
  simplesoapy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 22:59:49 UTC (rev 371654)
+++ PKGBUILD2018-08-14 23:06:45 UTC (rev 371655)
@@ -11,7 +11,7 @@
 license=('MIT')
 depends=('python' 'python-numpy' 'soapysdr')
 makedepends=('python-setuptools')
-source=("$pkgname-$pkgver::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz;)
 sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
 
 build() {


[arch-commits] Commit in simplesoapy/trunk (6 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 22:59:49
  Author: ffy00
Revision: 371654

remove binary blobs

Deleted:
  simplesoapy/trunk/PKGBUILD-namcap.log
  simplesoapy/trunk/simplesoapy-1.5.1
  simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz
  simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
  simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log
  simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log

---+
 simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log |3 ---
 simplesoapy-1.5.1-2-x86_64-build.log  |5 -
 simplesoapy-1.5.1-2-x86_64-package.log|   23 ---
 3 files changed, 31 deletions(-)

Deleted: PKGBUILD-namcap.log
===
Deleted: simplesoapy-1.5.1
===
(Binary files differ)

Deleted: simplesoapy-1.5.1-2-any.pkg.tar.xz
===
(Binary files differ)

Deleted: simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
===
--- simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log   2018-08-14 22:50:27 UTC 
(rev 371653)
+++ simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log   2018-08-14 22:59:49 UTC 
(rev 371654)
@@ -1,3 +0,0 @@
-simplesoapy W: Dependency python included but already satisfied
-simplesoapy W: Dependency included and not needed ('python-numpy')
-simplesoapy W: Dependency included and not needed ('soapysdr')

Deleted: simplesoapy-1.5.1-2-x86_64-build.log
===
--- simplesoapy-1.5.1-2-x86_64-build.log2018-08-14 22:50:27 UTC (rev 
371653)
+++ simplesoapy-1.5.1-2-x86_64-build.log2018-08-14 22:59:49 UTC (rev 
371654)
@@ -1,5 +0,0 @@
-running build
-running build_py
-creating build
-creating build/lib
-copying simplesoapy.py -> build/lib

Deleted: simplesoapy-1.5.1-2-x86_64-package.log
===
--- simplesoapy-1.5.1-2-x86_64-package.log  2018-08-14 22:50:27 UTC (rev 
371653)
+++ simplesoapy-1.5.1-2-x86_64-package.log  2018-08-14 22:59:49 UTC (rev 
371654)
@@ -1,23 +0,0 @@
-running install
-running build
-running build_py
-running install_lib
-creating /build/simplesoapy/pkg/simplesoapy/usr
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7
-creating /build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages
-copying build/lib/simplesoapy.py -> 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages
-byte-compiling 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages/simplesoapy.py
 to simplesoapy.cpython-37.pyc
-running install_egg_info
-running egg_info
-creating SimpleSoapy.egg-info
-writing SimpleSoapy.egg-info/PKG-INFO
-writing dependency_links to SimpleSoapy.egg-info/dependency_links.txt
-writing requirements to SimpleSoapy.egg-info/requires.txt
-writing top-level names to SimpleSoapy.egg-info/top_level.txt
-writing manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-reading manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-reading manifest template 'MANIFEST.in'
-writing manifest file 'SimpleSoapy.egg-info/SOURCES.txt'
-Copying SimpleSoapy.egg-info to 
/build/simplesoapy/pkg/simplesoapy/usr/lib/python3.7/site-packages/SimpleSoapy-1.5.1-py3.7.egg-info
-running install_scripts


[arch-commits] Commit in simplesoapy/repos (8 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 22:50:27
  Author: ffy00
Revision: 371653

archrelease: copy trunk to community-any

Added:
  simplesoapy/repos/community-any/
  simplesoapy/repos/community-any/PKGBUILD
(from rev 371652, simplesoapy/trunk/PKGBUILD)
  simplesoapy/repos/community-any/PKGBUILD-namcap.log
(from rev 371652, simplesoapy/trunk/PKGBUILD-namcap.log)
  simplesoapy/repos/community-any/simplesoapy-1.5.1
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1)
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz)
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
(from rev 371652, 
simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log)
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-build.log
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log)
  simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-package.log
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log)

---+
 PKGBUILD  |   28 
 simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log |3 ++
 simplesoapy-1.5.1-2-x86_64-build.log  |5 
 simplesoapy-1.5.1-2-x86_64-package.log|   23 +++
 4 files changed, 59 insertions(+)

Copied: simplesoapy/repos/community-any/PKGBUILD (from rev 371652, 
simplesoapy/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-14 22:50:27 UTC (rev 371653)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=simplesoapy
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="Simple pythonic wrapper for SoapySDR library"
+arch=('any')
+url="https://github.com/xmikos/simplesoapy;
+license=('MIT')
+depends=('python' 'python-numpy' 'soapysdr')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz;)
+sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: simplesoapy/repos/community-any/PKGBUILD-namcap.log (from rev 371652, 
simplesoapy/trunk/PKGBUILD-namcap.log)
===
Copied: simplesoapy/repos/community-any/simplesoapy-1.5.1 (from rev 371652, 
simplesoapy/trunk/simplesoapy-1.5.1)
===
(Binary files differ)

Copied: simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz 
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz)
===
(Binary files differ)

Copied: 
simplesoapy/repos/community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log 
(from rev 371652, 
simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log)
===
--- community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log 
(rev 0)
+++ community-any/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log 2018-08-14 
22:50:27 UTC (rev 371653)
@@ -0,0 +1,3 @@
+simplesoapy W: Dependency python included but already satisfied
+simplesoapy W: Dependency included and not needed ('python-numpy')
+simplesoapy W: Dependency included and not needed ('soapysdr')

Copied: simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-build.log 
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log)
===
--- community-any/simplesoapy-1.5.1-2-x86_64-build.log  
(rev 0)
+++ community-any/simplesoapy-1.5.1-2-x86_64-build.log  2018-08-14 22:50:27 UTC 
(rev 371653)
@@ -0,0 +1,5 @@
+running build
+running build_py
+creating build
+creating build/lib
+copying simplesoapy.py -> build/lib

Copied: simplesoapy/repos/community-any/simplesoapy-1.5.1-2-x86_64-package.log 
(from rev 371652, simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log)
===
--- community-any/simplesoapy-1.5.1-2-x86_64-package.log
(rev 0)
+++ community-any/simplesoapy-1.5.1-2-x86_64-package.log2018-08-14 
22:50:27 UTC (rev 371653)
@@ -0,0 +1,23 @@
+running install
+running build
+running build_py
+running install_lib
+creating /build/simplesoapy/pkg/simplesoapy/usr
+creating /build/simplesoapy/pkg/simplesoapy/usr/lib
+creating 

[arch-commits] Commit in (10 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 22:49:52
  Author: ffy00
Revision: 371652

import from aur

Added:
  simplesoapy/
  simplesoapy/repos/
  simplesoapy/trunk/
  simplesoapy/trunk/PKGBUILD
  simplesoapy/trunk/PKGBUILD-namcap.log
  simplesoapy/trunk/simplesoapy-1.5.1
  simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz
  simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
  simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log
  simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log

---+
 PKGBUILD  |   28 
 simplesoapy-1.5.1 |1 
 simplesoapy-1.5.1-2-any.pkg.tar.xz|1 
 simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log |3 ++
 simplesoapy-1.5.1-2-x86_64-build.log  |5 
 simplesoapy-1.5.1-2-x86_64-package.log|   23 +++
 6 files changed, 61 insertions(+)

Added: simplesoapy/trunk/PKGBUILD
===
--- simplesoapy/trunk/PKGBUILD  (rev 0)
+++ simplesoapy/trunk/PKGBUILD  2018-08-14 22:49:52 UTC (rev 371652)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=simplesoapy
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="Simple pythonic wrapper for SoapySDR library"
+arch=('any')
+url="https://github.com/xmikos/simplesoapy;
+license=('MIT')
+depends=('python' 'python-numpy' 'soapysdr')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz;)
+sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


Property changes on: simplesoapy/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: simplesoapy/trunk/PKGBUILD-namcap.log
===
Added: simplesoapy/trunk/simplesoapy-1.5.1
===
(Binary files differ)

Index: simplesoapy/trunk/simplesoapy-1.5.1
===
--- simplesoapy/trunk/simplesoapy-1.5.1 2018-08-14 22:10:06 UTC (rev 371651)
+++ simplesoapy/trunk/simplesoapy-1.5.1 2018-08-14 22:49:52 UTC (rev 371652)

Property changes on: simplesoapy/trunk/simplesoapy-1.5.1
___
Added: svn:mime-type
## -0,0 +1 ##
+application/x-gzip
\ No newline at end of property
Added: simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz
===
(Binary files differ)

Index: simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz
===
--- simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz2018-08-14 
22:10:06 UTC (rev 371651)
+++ simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz2018-08-14 
22:49:52 UTC (rev 371652)

Property changes on: simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz
___
Added: svn:mime-type
## -0,0 +1 ##
+application/x-xz
\ No newline at end of property
Added: simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log
===
--- simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log 
(rev 0)
+++ simplesoapy/trunk/simplesoapy-1.5.1-2-any.pkg.tar.xz-namcap.log 
2018-08-14 22:49:52 UTC (rev 371652)
@@ -0,0 +1,3 @@
+simplesoapy W: Dependency python included but already satisfied
+simplesoapy W: Dependency included and not needed ('python-numpy')
+simplesoapy W: Dependency included and not needed ('soapysdr')

Added: simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log
===
--- simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log  
(rev 0)
+++ simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-build.log  2018-08-14 
22:49:52 UTC (rev 371652)
@@ -0,0 +1,5 @@
+running build
+running build_py
+creating build
+creating build/lib
+copying simplesoapy.py -> build/lib

Added: simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log
===
--- simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log
(rev 0)
+++ simplesoapy/trunk/simplesoapy-1.5.1-2-x86_64-package.log2018-08-14 
22:49:52 UTC (rev 371652)
@@ -0,0 +1,23 @@
+running install

[arch-commits] Commit in btrfs-progs/repos (15 files)

2018-08-14 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, August 14, 2018 @ 22:15:04
  Author: seblu
Revision: 331526

db-move: moved btrfs-progs from [testing] to [core] (x86_64)

Added:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
(from rev 331525, btrfs-progs/repos/testing-x86_64/FS#58237.patch)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 331525, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 331525, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 331525, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /FS#58237.patch|   16 +
 /PKGBUILD  |   62 +++
 /btrfs-progs.install   |   15 
 /btrfs-scrub@.service  |8 
 /btrfs-scrub@.timer|   10 +
 /initcpio-hook-btrfs   |7 +++
 /initcpio-install-btrfs|   17 +
 core-x86_64/FS#58237.patch |   16 -
 core-x86_64/PKGBUILD   |   62 ---
 core-x86_64/btrfs-progs.install|   15 
 core-x86_64/btrfs-scrub@.service   |8 
 core-x86_64/btrfs-scrub@.timer |   10 -
 core-x86_64/initcpio-hook-btrfs|7 ---
 core-x86_64/initcpio-install-btrfs |   17 -
 14 files changed, 135 insertions(+), 135 deletions(-)

Deleted: core-x86_64/FS#58237.patch
===
--- core-x86_64/FS#58237.patch  2018-08-14 21:29:03 UTC (rev 331525)
+++ core-x86_64/FS#58237.patch  2018-08-14 22:15:04 UTC (rev 331526)
@@ -1,16 +0,0 @@
-diff --git a/utils.c b/utils.c
-index e9cb3a82f..f867e5a7f 100644
 a/utils.c
-+++ b/utils.c
-@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
-   if (!len)
-   return full_path;
- 
--  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
--  error("not on mount point: %s", mnt);
--  exit(1);
--  }
--
-   if (mnt[len - 1] != '/')
-   len += 1;
- 

Copied: btrfs-progs/repos/core-x86_64/FS#58237.patch (from rev 331525, 
btrfs-progs/repos/testing-x86_64/FS#58237.patch)
===
--- core-x86_64/FS#58237.patch  (rev 0)
+++ core-x86_64/FS#58237.patch  2018-08-14 22:15:04 UTC (rev 331526)
@@ -0,0 +1,16 @@
+diff --git a/utils.c b/utils.c
+index e9cb3a82f..f867e5a7f 100644
+--- a/utils.c
 b/utils.c
+@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
+   if (!len)
+   return full_path;
+ 
+-  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
+-  error("not on mount point: %s", mnt);
+-  exit(1);
+-  }
+-
+   if (mnt[len - 1] != '/')
+   len += 1;
+ 

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-08-14 21:29:03 UTC (rev 331525)
+++ core-x86_64/PKGBUILD2018-08-14 22:15:04 UTC (rev 331526)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.17
-pkgrel=2
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')

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

2018-08-14 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 14, 2018 @ 22:10:06
  Author: andrewsc
Revision: 371651

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  466 ++---
 1 file changed, 233 insertions(+), 233 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 22:09:36 UTC (rev 371650)
+++ PKGBUILD2018-08-14 22:10:06 UTC (rev 371651)
@@ -1,233 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=62.0b16
-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"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  '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"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  '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=('d10e90b4c690ddd03eb8b504201d3f9a3465609c8b2517af40e200ad9f3bfcc8f825fdebd6005ba449f0fed9b87e1b17dcf84b68c36f477eafa2a33932e276ac'
-
'3a42f04ec4ff38e6c1fba1b38d556395eb10b1437cc0060ba344459aa0a35ee935f1c5880be3ecf0200833e0793a532283c0ec59e470b0eb50ff6edc4edb2533'
-
'946e68e36371b38a5b1d094c8bf9c9a5bfe89c5917737c12f94a38a7872a8814c5d379b5649ae11a49fc0e92c1d262f305c6d33fc95cf92384f48b64cf0b09e2'
-
'07f4e0345a4f1c318f5e67f9265723e0b72fb775d6a3bf62c30f9f5b47ba2e223dbba6ad5b8e7900980bdcf15b367bbe4df289123656f31cec6fb8faaa62b6a9'
-
'86f713605614dd1c6e0eb983d8f6b95ec623adf15dfd0e17e924bd5267b27764bcb5df8bda15708ff29038038ad9ae383947aaa6aa2240a2a2ebc06d7a3b0b65'
-
'40ea3628b3e971841c4bbc8c512f7f5dbe16d3304d092858eea0b867ae962477570cccf9bf6a0fd5563e11c73efa84f3ab03a54cbfb39ad63ca65d9cc724e74a'
-

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

2018-08-14 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 14, 2018 @ 22:09:36
  Author: andrewsc
Revision: 371650

upgpkg: firefox-developer-edition-i18n 62.0b17-1

firefox-developer-edition-i18n: Updating to 62.0b17

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 22:01:23 UTC (rev 371649)
+++ PKGBUILD2018-08-14 22:09:36 UTC (rev 371650)
@@ -2,7 +2,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=62.0b16
+pkgver=62.0b17
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -134,100 +134,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('d10e90b4c690ddd03eb8b504201d3f9a3465609c8b2517af40e200ad9f3bfcc8f825fdebd6005ba449f0fed9b87e1b17dcf84b68c36f477eafa2a33932e276ac'
-
'3a42f04ec4ff38e6c1fba1b38d556395eb10b1437cc0060ba344459aa0a35ee935f1c5880be3ecf0200833e0793a532283c0ec59e470b0eb50ff6edc4edb2533'
-
'946e68e36371b38a5b1d094c8bf9c9a5bfe89c5917737c12f94a38a7872a8814c5d379b5649ae11a49fc0e92c1d262f305c6d33fc95cf92384f48b64cf0b09e2'
-
'07f4e0345a4f1c318f5e67f9265723e0b72fb775d6a3bf62c30f9f5b47ba2e223dbba6ad5b8e7900980bdcf15b367bbe4df289123656f31cec6fb8faaa62b6a9'
-
'86f713605614dd1c6e0eb983d8f6b95ec623adf15dfd0e17e924bd5267b27764bcb5df8bda15708ff29038038ad9ae383947aaa6aa2240a2a2ebc06d7a3b0b65'
-
'40ea3628b3e971841c4bbc8c512f7f5dbe16d3304d092858eea0b867ae962477570cccf9bf6a0fd5563e11c73efa84f3ab03a54cbfb39ad63ca65d9cc724e74a'
-
'8258ecc30f2af8f8d3127df5671e96f73ccdcd0239d4221bbda8091d16477d9402138e23057f6851a010ddd9a18e907c7a23abf8006207ed72ac6dc69d80d87a'
-
'04e03529a670c299eb76c5a7ff5a36b6ef6bbc06e844b3dbe3b1eb63130b6f3a1800a9ab2dffb1dbe89b9ca82ac8eb278e9c27510a5b8d2654078b4762ce9df0'
-
'c0dd9804127f4521f677491f0db1d2f0c066a2ab5c49d086095bf02ce1a1ff80bb1448a6715bd4e5be7251247f495850a179cd411e500d74921a06f7e8c04f11'
-
'bc0b7de9fa9457f08595cc1f7580230987c9a3e25ab3066f66977c80d7ad5459527687e4f66538c6e94a0746c60e23ebfd26dcae7c9b12fe24aebdf09636febd'
-
'775fec02157ae2693b9587349e60e36d33ed537cbf0b5a0b73fb9502c30b0ff99942f77b3a2e8cd566bfd3d99276b6bcb6b8bff48d0eef061f2311b8843dc21d'
-
'4ca83829fd316baa99f9bcf7322561b617a54fc415fb1327134858cddac9cb17b8449d176f1214a6fe8a11a199c82a13e759575b84911376f13ceea8e22851eb'
-
'd8c1924f0bfaa53378003297be2a2d0c2921d7e5046247b1e432a037d405a1b505805e359bfe8c6a255c516044d46770c4475c3b71ae74a18b05011c496902b7'
-
'2fcb2636c509e3012d82f07dfd2825076c18c8bef7532f7b70ee4f8182e8e1d8d38a30f0e13206db9cd8b029f8a9d8b6c5a76023090e7b5afc3b2b9dd37d2ff8'
-
'62fe24818ba781051ec75232274e9cd38df3da1901f33b057044fd6da1a3a61bbc8f696d87590732b62940352a962ac88cde8e0e136c35efad408ec7d0b6cb5f'
-
'246efd1b8dce4017bd0a9c7dc2d59286281780b566bd7b8ed47f89c8646bf0fb74738c5e74d3b29942dc328d44c3a939a241f1a700f98866add8ac86161bed69'
-
'e79f198272978f07d75a9a9e6c55e3f443ccf9e95daa5d62620988b9ba86f756452a2a12179ea5a3efe319f215bfd944f58a9673c07ac86f6ef5d1811c2ffe8c'
-
'2480ba068f272b9b474aa58d3bd5e46a324d64250ea73673abc2fcf4e5b0591fbf1e98f09fa5cdf432e51d1de728f33481797fa69eeb2e20a5ebf746c45257bf'
-
'9bcb2005e6b799e418b5e0a2d9a1f69dcb4819bc78cd1987cb368a988a930dadf48238e1caa7d0addbaf7e18a7470cd79fc9b7aa9fe3bdce1c912a39bb3534cd'
-
'80a60de27d8487fbee8b5bde26b6a980e180daaca80c6081902d2f42c5b2b16bd4cc9b6c0f4507d3f34258c4fabc123a5eb523719586b86e5da81bb58d0d'
-
'a136bc469b4b021350053479302d22948e9fc76285026e1c25379a73e82dc70e4a7dff36d641ed47bb1d17faf540c1d3fdd693cf43d66bef137cadbf3e8aad11'
-
'b9be39c57d0b6507aafacf0eb5d9c59ed29cc5d8a9c7cae86390ab9986a63312927cb39c77b29a9b2ebda7b738cf0ac7d1abd4d184eab1fe08183894a33e6482'
-
'442d26f3df49b1b9a70fd3f1a8950b482f4dd8190c6288302dde298f7884532a8ce4bc4e612b9a36744d126ac52f757d9ab68985c4c71fe7282b0e432ca87c09'
-
'd416566d24881a8a0d25511771da0fa0ffcaad404a1de051b3ae0019722f79e5c4dedb2bd8e424019f4788d95914f7a41dfbea32e64234c6cd188706e9f930ba'
-
'f90d78671d0a229a01a5a815b999155a409d96b8ba14103e4f69db171f5baad56e45886df32ea6b2bdbd2c5e524516a106d04e52f659f327b313cc1e2aed0973'
-
'f12640756f1daced896d341f73df2442fc85b03739ebcd81af34c9d05d483699c7940573d847d44c08e89df55925ec5d375abadab63fb8ab9952636094cd5769'
-
'ace94eb3c1c391653a1f083afc56cca5721801ee26c777414b73b49c1f70b278f03e2be41af87eb79968feb74eda7c471d77636536225e7d120ec898e3ec144c'
-
'1183df704d693860c8f8345d4b7d767ca5786e883873b04cdd6c6fa69ac9ba5b01ced306f837c0bccc8900bb4a9b2d2d132c6a34033c9ab102854903f9d146c3'
-

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

2018-08-14 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 14, 2018 @ 22:01:23
  Author: andrewsc
Revision: 371649

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 371648, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 371648, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 371648, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 371648, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  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

---+
 PKGBUILD  |  322 +-
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 578 insertions(+), 578 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 22:00:46 UTC (rev 371648)
+++ PKGBUILD2018-08-14 22:01:23 UTC (rev 371649)
@@ -1,161 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=62.0b16
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'hunspell-en_US' 'sqlite' 'ttf-font' 
'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'gconf' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack' 'gtk2')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-linker=gold
-ac_add_options --enable-hardening
-ac_add_options --enable-optimize
-ac_add_options --enable-rust-simd
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_REQUIRE_SIGNING=0
-
-# Keys
-ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-ac_add_options --enable-system-sqlite
-ac_add_options --enable-system-ffi
-
-# Features
-ac_add_options --enable-alsa
-ac_add_options --enable-jack
-ac_add_options 

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

2018-08-14 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 14, 2018 @ 22:00:46
  Author: andrewsc
Revision: 371648

upgpkg: firefox-developer-edition 62.0b17-1

firefox-developer-edition: Updating to 62.0b17

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 21:43:15 UTC (rev 371647)
+++ PKGBUILD2018-08-14 22:00:46 UTC (rev 371648)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=62.0b16
+pkgver=62.0b17
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2018-08-14 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, August 14, 2018 @ 21:43:05
  Author: seblu
Revision: 371646

upgpkg: linux-tools 4.18-1

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 21:32:44 UTC (rev 371645)
+++ PKGBUILD2018-08-14 21:43:05 UTC (rev 371646)
@@ -14,7 +14,7 @@
   'usbip'
   'x86_energy_perf_policy'
 )
-pkgver=4.16
+pkgver=4.18
 pkgrel=1
 license=('GPL2')
 arch=('x86_64')
@@ -48,10 +48,6 @@
 prepare() {
   cd linux
 
-  # Fix "unwind-libunwind.c:109:11: error: ‘EINVAL’ undeclared" on i686
-  # Not sure why this wasn't an issue until now...
-  sed -i '1i #include ' tools/perf/arch/x86/util/unwind-libunwind.c
-
   # apply patch from the source array (should be a pacman feature)
   local filename
   for filename in "${source[@]}"; do


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

2018-08-14 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, August 14, 2018 @ 21:43:15
  Author: seblu
Revision: 371647

archrelease: copy trunk to community-x86_64

Added:
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 371646, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 371646, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 371646, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 371646, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 371646, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 371646, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

--+
 PKGBUILD |  524 ++---
 cpupower.default |   58 ++---
 cpupower.install |   26 +-
 cpupower.service |   22 +-
 cpupower.systemd |   60 +++---
 usbipd.service   |   18 -
 6 files changed, 352 insertions(+), 356 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 21:43:05 UTC (rev 371646)
+++ PKGBUILD2018-08-14 21:43:15 UTC (rev 371647)
@@ -1,264 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=linux-tools
-pkgname=(
-  'cgroup_event_listener'
-  'cpupower'
-  'hyperv'
-  'libtraceevent'
-  'linux-tools-meta'
-  'perf'
-  'tmon'
-  'turbostat'
-  'usbip'
-  'x86_energy_perf_policy'
-)
-pkgver=4.16
-pkgrel=1
-license=('GPL2')
-arch=('x86_64')
-url='https://www.kernel.org'
-options=('!strip')
-makedepends=('git')
-# split packages need all package dependencies set manually in makedepends
-# kernel source deps
-makedepends+=('asciidoc' 'xmlto')
-# perf deps
-makedepends+=('perl' 'python2' 'slang' 'elfutils' 'libunwind' 'numactl' 
'audit' 'gtk2')
-# cpupower deps
-makedepends+=('pciutils')
-# usbip deps
-makedepends+=('glib2' 'sysfsutils' 'udev')
-# tmon deps
-makedepends+=('ncurses')
-groups=("$pkgbase")
-source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git#tag=v$pkgver;
-#'https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.12.2.xz'
-'cpupower.default'
-'cpupower.systemd'
-'cpupower.service'
-'usbipd.service')
-md5sums=('SKIP'
- '56883c159381ba89e50ab8ea65efec77'
- '34f5ecc19770a1abbcd0fd65bfd1f065'
- '86c4e419e4ba80835c330d49ba3f56ad'
- 'bb35634f480325a78b943f7e10165e86')
-
-prepare() {
-  cd linux
-
-  # Fix "unwind-libunwind.c:109:11: error: ‘EINVAL’ undeclared" on i686
-  # Not sure why this wasn't an issue until now...
-  sed -i '1i #include ' tools/perf/arch/x86/util/unwind-libunwind.c
-
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-filename="${filename##*/}"
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch $filename"
-  patch -p1 -N -i "$srcdir/$filename"
-elif [[ "$filename" =~ ^patch- ]]; then
-  msg2 "Applying linux $filename"
-  patch -p1 -N -i "$srcdir/${filename%.*}"
-fi
-  done
-}
-
-build() {
-  msg2 'libtraceevent'
-  pushd linux/tools/lib/traceevent
-  make
-  popd
-
-  msg2 'perf'
-  pushd linux/tools/perf
-  make -f Makefile.perf \
-prefix=/usr \
-lib=lib/perf \
-perfexecdir=lib/perf \
-NO_SDT=1 \
-PYTHON=python2 \
-PYTHON_CONFIG=python2-config \
-PERF_VERSION=$pkgver-$pkgrel \
-DESTDIR="$pkgdir" \
-all man
-  popd
-
-  msg2 'cpupower'
-  pushd linux/tools/power/cpupower
-  make VERSION=$pkgver-$pkgrel
-  popd
-
-  msg2 'x86_energy_perf_policy'
-  pushd linux/tools/power/x86/x86_energy_perf_policy
-  make
-  popd
-
-  msg2 'usbip'
-  pushd linux/tools/usb/usbip
-  ./autogen.sh
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-  popd
-
-  msg2 'tmon'
-  pushd linux/tools/thermal/tmon
-  make
-  popd
-
-  msg2 'cgroup_event_listener'
-  pushd linux/tools/cgroup
-  make
-  popd
-
-  msg2 'turbostat'
-  pushd linux/tools/power/x86/turbostat
-  make
-  popd
-
-  msg2 'hv'
-  pushd linux/tools/hv
-  CFLAGS+=' -DKVP_SCRIPTS_PATH=/usr/lib/hyperv/kvp_scripts/' make
-  popd
-}
-
-package_linux-tools-meta() {
-  pkgdesc='Linux kernel tools meta package'
-  groups=()
-  depends=(
-'cgroup_event_listener'
-'cpupower'
-'hyperv'
-'libtraceevent'
-'perf'
-'tmon'
-'turbostat'
-'usbip'
-'x86_energy_perf_policy'
-  )
-  conflicts=(
-'acpidump'
-  )
-}
-
-package_libtraceevent() {
-  pkgdesc='Linux kernel trace event library'
-  depends=('glibc')
-
-  cd 

[arch-commits] Commit in (haskell-dbus0.10)

2018-08-14 Thread Levente Polyak via arch-commits
Date: Tuesday, August 14, 2018 @ 21:32:44
  Author: anthraxx
Revision: 371645

rmpkg: haskell-dbus0.10 (not needed anymore)

Deleted:
  haskell-dbus0.10/


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

2018-08-14 Thread Jan Steffens via arch-commits
Date: Tuesday, August 14, 2018 @ 21:29:03
  Author: heftig
Revision: 331525

archrelease: copy trunk to extra-x86_64

Added:
  harfbuzz/repos/extra-x86_64/PKGBUILD
(from rev 331524, harfbuzz/trunk/PKGBUILD)
Deleted:
  harfbuzz/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 21:27:58 UTC (rev 331524)
+++ PKGBUILD2018-08-14 21:29:03 UTC (rev 331525)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=(harfbuzz)
-pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.8.7
-pkgrel=1
-pkgdesc="OpenType text shaping engine"
-url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-arch=(x86_64)
-license=(MIT)
-depends=(glib2 freetype2 graphite)
-makedepends=(cairo icu gobject-introspection gtk-doc ragel git python)
-checkdepends=(python-fonttools python-setuptools)
-_commit=b6fdcf4f8bd09e065c767939125861c9dc8ff18f  # tags/1.8.7^0
-source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgbase
-  ./configure \
---prefix=/usr \
---with-cairo \
---with-freetype \
---with-glib \
---with-gobject \
---with-graphite2 \
---with-icu \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgbase
-  make check
-}
-
-package_harfbuzz() {
-  optdepends=('cairo: hb-view program')
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
-
-# Split harfbuzz-icu
-  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
-  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
-  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
-  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
-}
-
-package_harfbuzz-icu() {
-  pkgdesc="$pkgdesc (ICU integration)"
-  depends=(harfbuzz icu)
-
-  mv hb-icu/* "$pkgdir"
-
-  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
-}

Copied: harfbuzz/repos/extra-x86_64/PKGBUILD (from rev 331524, 
harfbuzz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 21:29:03 UTC (rev 331525)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=1.8.8
+pkgrel=1
+pkgdesc="OpenType text shaping engine"
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+arch=(x86_64)
+license=(MIT)
+depends=(glib2 freetype2 graphite)
+makedepends=(cairo icu gobject-introspection gtk-doc ragel git python)
+checkdepends=(python-fonttools python-setuptools)
+_commit=63be5dcdde61275822d931b2924425478bc1dac1  # tags/1.8.8^0
+source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase
+  ./configure \
+--prefix=/usr \
+--with-cairo \
+--with-freetype \
+--with-glib \
+--with-gobject \
+--with-graphite2 \
+--with-icu \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgbase
+  make check
+}
+
+package_harfbuzz() {
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu() {
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}


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

2018-08-14 Thread Jan Steffens via arch-commits
Date: Tuesday, August 14, 2018 @ 21:28:43
  Author: heftig
Revision: 371643

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 21:27:48 UTC (rev 371642)
+++ PKGBUILD2018-08-14 21:28:43 UTC (rev 371643)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-
-pkgname=(lib32-harfbuzz lib32-harfbuzz-icu)
-pkgver=1.8.7
-pkgrel=1
-pkgdesc="OpenType text shaping engine (32-bit)"
-url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-arch=(x86_64)
-license=(MIT)
-depends=(lib32-glib2 lib32-freetype2 harfbuzz)
-makedepends=(lib32-cairo lib32-icu gcc-multilib ragel git python)
-checkdepends=(python-fonttools python-setuptools)
-_commit=b6fdcf4f8bd09e065c767939125861c9dc8ff18f  # tags/1.8.7^0
-source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd harfbuzz
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd harfbuzz
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd harfbuzz
-  ./configure \
---prefix=/usr \
---libdir=/usr/lib32 \
---with-cairo \
---with-freetype \
---with-glib \
---with-gobject \
---without-graphite2 \
---with-icu \
---disable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd harfbuzz
-  make check
-}
-
-package_lib32-harfbuzz() {
-
-  cd harfbuzz
-  make DESTDIR="$pkgdir" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s harfbuzz "$pkgdir/usr/share/licenses/lib32-harfbuzz"
-
-# Split harfbuzz-icu
-  mkdir -p ../hb-icu/usr/lib32/pkgconfig; cd ../hb-icu
-  mv "$pkgdir"/usr/lib32/libharfbuzz-icu* ./usr/lib32
-  mv "$pkgdir"/usr/lib32/pkgconfig/harfbuzz-icu.pc ./usr/lib32/pkgconfig
-}
-
-package_lib32-harfbuzz-icu() {
-  pkgdesc="OpenType text shaping engine (32-bit, ICU integration)"
-  depends=(lib32-harfbuzz lib32-icu harfbuzz-icu)
-
-  mv hb-icu/* "$pkgdir"
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s harfbuzz-icu "$pkgdir/usr/share/licenses/lib32-harfbuzz-icu"
-}

Copied: lib32-harfbuzz/repos/multilib-x86_64/PKGBUILD (from rev 371642, 
lib32-harfbuzz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 21:28:43 UTC (rev 371643)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Florian Pritz 
+
+pkgname=(lib32-harfbuzz lib32-harfbuzz-icu)
+pkgver=1.8.8
+pkgrel=1
+pkgdesc="OpenType text shaping engine (32-bit)"
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+arch=(x86_64)
+license=(MIT)
+depends=(lib32-glib2 lib32-freetype2 harfbuzz)
+makedepends=(lib32-cairo lib32-icu gcc-multilib ragel git python)
+checkdepends=(python-fonttools python-setuptools)
+_commit=63be5dcdde61275822d931b2924425478bc1dac1  # tags/1.8.8^0
+source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd harfbuzz
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd harfbuzz
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd harfbuzz
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--with-cairo \
+--with-freetype \
+--with-glib \
+--with-gobject \
+--without-graphite2 \
+--with-icu \
+--disable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd harfbuzz
+  make check
+}
+
+package_lib32-harfbuzz() {
+
+  cd harfbuzz
+  make DESTDIR="$pkgdir" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s harfbuzz "$pkgdir/usr/share/licenses/lib32-harfbuzz"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/lib32/pkgconfig; cd ../hb-icu
+  mv "$pkgdir"/usr/lib32/libharfbuzz-icu* ./usr/lib32
+  mv "$pkgdir"/usr/lib32/pkgconfig/harfbuzz-icu.pc ./usr/lib32/pkgconfig
+}
+
+package_lib32-harfbuzz-icu() {
+  pkgdesc="OpenType text shaping engine (32-bit, ICU integration)"
+  depends=(lib32-harfbuzz lib32-icu harfbuzz-icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s harfbuzz-icu "$pkgdir/usr/share/licenses/lib32-harfbuzz-icu"
+}


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

2018-08-14 Thread Jan Steffens via arch-commits
Date: Tuesday, August 14, 2018 @ 21:27:48
  Author: heftig
Revision: 371642

1.8.8-1

Modified:
  lib32-harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 21:23:48 UTC (rev 371641)
+++ PKGBUILD2018-08-14 21:27:48 UTC (rev 371642)
@@ -2,7 +2,7 @@
 # Maintainer: Florian Pritz 
 
 pkgname=(lib32-harfbuzz lib32-harfbuzz-icu)
-pkgver=1.8.7
+pkgver=1.8.8
 pkgrel=1
 pkgdesc="OpenType text shaping engine (32-bit)"
 url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
@@ -11,7 +11,7 @@
 depends=(lib32-glib2 lib32-freetype2 harfbuzz)
 makedepends=(lib32-cairo lib32-icu gcc-multilib ragel git python)
 checkdepends=(python-fonttools python-setuptools)
-_commit=b6fdcf4f8bd09e065c767939125861c9dc8ff18f  # tags/1.8.7^0
+_commit=63be5dcdde61275822d931b2924425478bc1dac1  # tags/1.8.8^0
 source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-08-14 Thread Jan Steffens via arch-commits
Date: Tuesday, August 14, 2018 @ 21:27:58
  Author: heftig
Revision: 331524

1.8.8-1

Modified:
  harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 18:51:08 UTC (rev 331523)
+++ PKGBUILD2018-08-14 21:27:58 UTC (rev 331524)
@@ -3,7 +3,7 @@
 
 pkgbase=(harfbuzz)
 pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.8.7
+pkgver=1.8.8
 pkgrel=1
 pkgdesc="OpenType text shaping engine"
 url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
@@ -12,7 +12,7 @@
 depends=(glib2 freetype2 graphite)
 makedepends=(cairo icu gobject-introspection gtk-doc ragel git python)
 checkdepends=(python-fonttools python-setuptools)
-_commit=b6fdcf4f8bd09e065c767939125861c9dc8ff18f  # tags/1.8.7^0
+_commit=63be5dcdde61275822d931b2924425478bc1dac1  # tags/1.8.8^0
 source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-08-14 Thread Levente Polyak via arch-commits
Date: Tuesday, August 14, 2018 @ 21:23:48
  Author: anthraxx
Revision: 371641

archrelease: copy trunk to community-x86_64

Added:
  xmobar/repos/community-x86_64/PKGBUILD
(from rev 371640, xmobar/trunk/PKGBUILD)
Deleted:
  xmobar/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 21:23:28 UTC (rev 371640)
+++ PKGBUILD2018-08-14 21:23:48 UTC (rev 371641)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jelle van der Waa 
-# Contributer: Sergej Pupykin 
-# Contributor: Arch Haskell Team 
-
-pkgname=xmobar
-pkgver=0.26
-pkgrel=70
-pkgdesc='Minimalistic Text Based Status Bar'
-url='https://hackage.haskell.org/package/xmobar'
-license=('custom:BSD3')
-arch=('x86_64')
-depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
- 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
- 'haskell-hinotify' 'haskell-regex-base' 'haskell-regex-compat' 
'haskell-http'
- 'haskell-dbus0.10' 'haskell-libmpd' 'haskell-iwlib' 'wireless_tools')
-makedepends=('ghc')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz
-
hinotify-0.3.10.patch::https://github.com/jaor/xmobar/commit/fb0a23f395445540f865ae00b33e75e0175db4ef.patch)
-sha512sums=('c67c1552f7183a6f33b472f19686cda41cca27c0de89a8d0dcb1f8ea008aea85a143d75608d4392a1a1c9933737a6cbe881cff9ddd13f632d581cd0e10ca8d4d'
-
'53b7cca689386e976383ebbe56db877fb01896a5dfcb1e4e4e5424a9ce1ef7cc75a38dbed2bdb23e9521357c1e5945a7b58f70df07029fd38e398c6ca4891264')
-
-prepare() {
-  cd xmobar-$pkgver
-  patch -p1 -i ../hinotify-0.3.10.patch
-}
-
-build() {
-  cd xmobar-${pkgver}
-  runhaskell setup configure -O \
---enable-shared \
---prefix=/usr \
---enable-executable-dynamic \
---disable-library-vanilla \
---flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
-  runhaskell setup build
-}
-
-package() {
-  cd xmobar-${pkgver}
-  runhaskell setup copy --destdir="${pkgdir}"
-  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xmobar/repos/community-x86_64/PKGBUILD (from rev 371640, 
xmobar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 21:23:48 UTC (rev 371641)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.27
+pkgrel=1
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('ad235a81dd59a972646c189500b665c9c18d3ca644c9fa4bc18f6f1004e1e6914b6b5f3e83db439b946efd622bbf4d0894eb84fcf521255916f095632d8249da')
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-14 Thread Levente Polyak via arch-commits
Date: Tuesday, August 14, 2018 @ 21:23:28
  Author: anthraxx
Revision: 371640

upgpkg: xmobar 0.27-1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 20:04:57 UTC (rev 371639)
+++ PKGBUILD2018-08-14 21:23:28 UTC (rev 371640)
@@ -4,8 +4,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=xmobar
-pkgver=0.26
-pkgrel=70
+pkgver=0.27
+pkgrel=1
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('custom:BSD3')
@@ -12,19 +12,14 @@
 arch=('x86_64')
 depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
  'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
- 'haskell-hinotify' 'haskell-regex-base' 'haskell-regex-compat' 
'haskell-http'
- 'haskell-dbus0.10' 'haskell-libmpd' 'haskell-iwlib' 'wireless_tools')
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text')
 makedepends=('ghc')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz
-
hinotify-0.3.10.patch::https://github.com/jaor/xmobar/commit/fb0a23f395445540f865ae00b33e75e0175db4ef.patch)
-sha512sums=('c67c1552f7183a6f33b472f19686cda41cca27c0de89a8d0dcb1f8ea008aea85a143d75608d4392a1a1c9933737a6cbe881cff9ddd13f632d581cd0e10ca8d4d'
-
'53b7cca689386e976383ebbe56db877fb01896a5dfcb1e4e4e5424a9ce1ef7cc75a38dbed2bdb23e9521357c1e5945a7b58f70df07029fd38e398c6ca4891264')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('ad235a81dd59a972646c189500b665c9c18d3ca644c9fa4bc18f6f1004e1e6914b6b5f3e83db439b946efd622bbf4d0894eb84fcf521255916f095632d8249da')
 
-prepare() {
-  cd xmobar-$pkgver
-  patch -p1 -i ../hinotify-0.3.10.patch
-}
-
 build() {
   cd xmobar-${pkgver}
   runhaskell setup configure -O \


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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 20:04:57
  Author: svenstaro
Revision: 371639

archrelease: copy trunk to community-x86_64

Added:
  teamspeak3/repos/community-x86_64/LICENSE
(from rev 371638, teamspeak3/trunk/LICENSE)
  teamspeak3/repos/community-x86_64/PERMISSION.eml
(from rev 371638, teamspeak3/trunk/PERMISSION.eml)
  teamspeak3/repos/community-x86_64/PKGBUILD
(from rev 371638, teamspeak3/trunk/PKGBUILD)
  teamspeak3/repos/community-x86_64/teamspeak3.desktop
(from rev 371638, teamspeak3/trunk/teamspeak3.desktop)
  teamspeak3/repos/community-x86_64/teamspeak3.png
(from rev 371638, teamspeak3/trunk/teamspeak3.png)
Deleted:
  teamspeak3/repos/community-x86_64/LICENSE
  teamspeak3/repos/community-x86_64/PERMISSION.eml
  teamspeak3/repos/community-x86_64/PKGBUILD
  teamspeak3/repos/community-x86_64/teamspeak3.desktop
  teamspeak3/repos/community-x86_64/teamspeak3.png

+
 LICENSE|  180 +--
 PKGBUILD   |  102 ++--
 teamspeak3.desktop |   24 +++---
 3 files changed, 153 insertions(+), 153 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2018-08-14 20:04:46 UTC (rev 371638)
+++ LICENSE 2018-08-14 20:04:57 UTC (rev 371639)
@@ -1,90 +0,0 @@
-Framework license agreement for the installation of the TeamSpeak client
-
-This License Agreement ("Agreement") is effective between "you", the person or 
company who/which is using software branded TeamSpeak, developed by TeamSpeak 
Systems GmbH ("TeamSpeak"), and TeamSpeak Systems GmbH (Germany) with 
installation of the TeamSpeak client.
-
-## I. Definitions
-
-  1. "Standard Software" means the object code of the TeamSpeak voice 
communication software version 3.x (binary executable), and all previous 
versions, both client and server, which is provided by TeamSpeak, including all 
standard software enhancements, upgrades or updates, which you will receive if 
and when they are made available.
-  2. "Licensed Material" refers to the standard software, all documentation 
components included with the standard software and other information that 
TeamSpeak provides together with the license for the standard software.
-  3. "Client" refers to the TeamSpeak standard software which connects to the 
TeamSpeak server software via computer network or the Internet. The client 
therefore usually runs on the end user's computer. A client can connect to one 
or more servers at the same time. Multiple clients communicate with each other 
by routing the communication data through the server, which distributes them to 
other clients. Clients thus do not connect directly to each other, but always 
connect only to the server that acts as an intermediary and distributor for 
voice communication.
-
-## II. Indemnity / Warranty
-
-TeamSpeak shall pay compensation or reimbursement of expenses, for whatever 
legal reason (e.g. for legal transactions and legal transaction-related 
obligations, breach of duty and unlawful acts), only to the following extent:
-
-  1. Liability for intentional actions is unlimited.
-  2. TeamSpeak may plea contributory negligence. In particular you have the 
obligation and responsibility to make use of data backup and virus protection 
following the latest technical standards.
-  3. In case of injury to life, body and health, and in case of claims based 
on the Product Liability Act, the statutory provisions apply.
-  4. The software is of the agreed quality which is suitable to perform the 
contractually required functions, and otherwise standard functions, and has the 
usual quality for this type of software; however, it is not error-free. A 
functional impairment of the software which results from hardware defects, 
environmental conditions, improper operation, or similar is not a defect. Minor 
reductions in quality are not considered here.
-  5. If you install third-party plug-ins to complement the client, TeamSpeak 
assumes no liability irrespective of the origin of the plug-in. You are 
required to learn about the applicable privacy policy of the plug-in publisher.
-  6. Standard software upgrades are free of charge, if and when they become 
available. You are obliged to install client upgrades promptly after 
publication.
-
-## III. Ownership and restrictions
-
-  1. You acknowledge and agree that your rights in and to the Licensed 
Material are solely limited to the transitory use of the standard software, and 
you have no ownership rights to any component of the Licensed Material. You 
acknowledge that TeamSpeak and / or its licensors own all rights, property 
rights and exploitation rights, including but not limited to copyrights, patent 
rights, the right to confidentiality of trade secrets and other rights in and 
to the Licensed Material on intellectual property and all altered, modified and 
corrected versions thereof.
-  2. The following 

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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 20:04:46
  Author: svenstaro
Revision: 371638

upgpkg: teamspeak3 3.2.1-1

Modified:
  teamspeak3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 19:12:30 UTC (rev 371637)
+++ PKGBUILD2018-08-14 20:04:46 UTC (rev 371638)
@@ -3,7 +3,7 @@
 # Contributor: J.W. Birdsong  
 
 pkgname=teamspeak3
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc="TeamSpeak is software for quality voice communication via the 
Internet"
 url="http://www.teamspeak.com;
@@ -17,7 +17,7 @@
 
sha512sums=('4cac0b7446dc3e728b232fdd6c6d75be1d2a5530635eab5918a4e7dd6a4a3fc21d6a75055da919b56e5cf849f4c5ba26ece56759a45bc4850eba3eb73853759d'
 
'af18ed36a3c8de90b60a7205ebf91a35d4b517f22f97d541c82debdb12697882469d9771fdf3fb8b081aeb74a01237f3afd4732daccf4b374dc6d39e7df5d444'
 
'd6d03f1bda86c90390ce0032e4d30e889977f80ff76ba1e5c443109e93cbedbee92c6fc2759f58d23659c15dba4f2ac718861571239ba117dcfe11f136f556dc'
-
'f9df7899ac1fbc9bb1a4863e9c6919d924cf1599680893baff72160951f62b03e194a8dde7101206a89e056785331dae250baabc2c10baae0d888f2cf4955784')
+
'b77d77daf8806bd48580abcc4721a6dbe5e30f55ed0ececc57215405d6607c3457d7ab628d4cb607d78c6f206f7093745842692176ca199bd95578f8b6fa81a8')
 
 prepare() {
   mkdir archive && cd archive


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 19:12:30
  Author: ffy00
Revision: 371637

archrelease: copy trunk to community-x86_64

Added:
  soapyrtlsdr/repos/community-x86_64/
  soapyrtlsdr/repos/community-x86_64/PKGBUILD
(from rev 371636, soapyrtlsdr/trunk/PKGBUILD)

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

Copied: soapyrtlsdr/repos/community-x86_64/PKGBUILD (from rev 371636, 
soapyrtlsdr/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-08-14 19:12:30 UTC (rev 371637)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=soapyrtlsdr
+_pkgname=SoapyRTLSDR
+pkgver=0.2.5
+_gitver=soapy-rtlsdr-$pkgver
+pkgrel=2
+pkgdesc="SoapySDR RTL-SDR Support Module"
+arch=('x86_64')
+url="https://github.com/pothosware/SoapyRTLSDR;
+license=('MIT')
+depends=('soapysdr' 'rtl-sdr')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
+sha256sums=('381a2b5f02444fb1e688b49d742fb54bd5f624b96e710b470203fc4643148c15')
+
+build() {
+  mkdir -p "$srcdir"/$_pkgname-$_gitver/build
+  cd "$srcdir"/$_pkgname-$_gitver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$_gitver/build
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 "$srcdir"/$_pkgname-$_gitver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 19:10:15
  Author: ffy00
Revision: 371636

fix pkgrel

Modified:
  soapyrtlsdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 18:58:36 UTC (rev 371635)
+++ PKGBUILD2018-08-14 19:10:15 UTC (rev 371636)
@@ -5,7 +5,7 @@
 _pkgname=SoapyRTLSDR
 pkgver=0.2.5
 _gitver=soapy-rtlsdr-$pkgver
-pkgrel=1
+pkgrel=2
 pkgdesc="SoapySDR RTL-SDR Support Module"
 arch=('x86_64')
 url="https://github.com/pothosware/SoapyRTLSDR;


[arch-commits] Commit in (4 files)

2018-08-14 Thread Filipe Laíns via arch-commits
Date: Tuesday, August 14, 2018 @ 18:58:36
  Author: ffy00
Revision: 371635

import from aur

Added:
  soapyrtlsdr/
  soapyrtlsdr/repos/
  soapyrtlsdr/trunk/
  soapyrtlsdr/trunk/PKGBUILD

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

Added: soapyrtlsdr/trunk/PKGBUILD
===
--- soapyrtlsdr/trunk/PKGBUILD  (rev 0)
+++ soapyrtlsdr/trunk/PKGBUILD  2018-08-14 18:58:36 UTC (rev 371635)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=soapyrtlsdr
+_pkgname=SoapyRTLSDR
+pkgver=0.2.5
+_gitver=soapy-rtlsdr-$pkgver
+pkgrel=1
+pkgdesc="SoapySDR RTL-SDR Support Module"
+arch=('x86_64')
+url="https://github.com/pothosware/SoapyRTLSDR;
+license=('MIT')
+depends=('soapysdr' 'rtl-sdr')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
+sha256sums=('381a2b5f02444fb1e688b49d742fb54bd5f624b96e710b470203fc4643148c15')
+
+build() {
+  mkdir -p "$srcdir"/$_pkgname-$_gitver/build
+  cd "$srcdir"/$_pkgname-$_gitver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd "$srcdir"/$_pkgname-$_gitver/build
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 "$srcdir"/$_pkgname-$_gitver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: soapyrtlsdr/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-14 Thread Levente Polyak via arch-commits
Date: Tuesday, August 14, 2018 @ 18:39:15
  Author: anthraxx
Revision: 371634

archrelease: copy trunk to community-x86_64

Added:
  haskell-parsec-numbers/repos/community-x86_64/
  haskell-parsec-numbers/repos/community-x86_64/PKGBUILD
(from rev 371633, haskell-parsec-numbers/trunk/PKGBUILD)

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

Copied: haskell-parsec-numbers/repos/community-x86_64/PKGBUILD (from rev 
371633, haskell-parsec-numbers/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-08-14 18:39:15 UTC (rev 371634)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Gabriel-Andrew Pollo-Guilbert 
+
+_hkgname=parsec-numbers
+pkgname=haskell-${_hkgname}
+pkgver=0.1.0
+pkgrel=2
+pkgdesc='Number parsers without the need to use a large (and unportable) token 
parser'
+url='https://hackage.haskell.org/package/parsec-numbers'
+arch=('x86_64')
+license=('custom:BSD3')
+depends=('ghc-libs' 'haskell-parsec')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/package/${_hkgname}-${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8a06ef239e6fb9fabaf04d947c21b298acd9538d2f98dd2404d943c18b5f29aa0d11572be3e1a846ae3d1345fbbdc5b2803df3ec196ccc212c4d76082c930b05')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+  install -Dm 744 register.sh 
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-08-14 Thread Levente Polyak via arch-commits
Date: Tuesday, August 14, 2018 @ 18:38:39
  Author: anthraxx
Revision: 371633

addpkg: haskell-parsec-numbers 0.1.0-2

Added:
  haskell-parsec-numbers/
  haskell-parsec-numbers/repos/
  haskell-parsec-numbers/trunk/
  haskell-parsec-numbers/trunk/PKGBUILD

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

Added: haskell-parsec-numbers/trunk/PKGBUILD
===
--- haskell-parsec-numbers/trunk/PKGBUILD   (rev 0)
+++ haskell-parsec-numbers/trunk/PKGBUILD   2018-08-14 18:38:39 UTC (rev 
371633)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Gabriel-Andrew Pollo-Guilbert 
+
+_hkgname=parsec-numbers
+pkgname=haskell-${_hkgname}
+pkgver=0.1.0
+pkgrel=2
+pkgdesc='Number parsers without the need to use a large (and unportable) token 
parser'
+url='https://hackage.haskell.org/package/parsec-numbers'
+arch=('x86_64')
+license=('custom:BSD3')
+depends=('ghc-libs' 'haskell-parsec')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/package/${_hkgname}-${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8a06ef239e6fb9fabaf04d947c21b298acd9538d2f98dd2404d943c18b5f29aa0d11572be3e1a846ae3d1345fbbdc5b2803df3ec196ccc212c4d76082c930b05')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+  install -Dm 744 register.sh 
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 18:04:10
  Author: felixonmars
Revision: 371632

archrelease: copy trunk to community-any

Added:
  python-websocket-client/repos/community-any/PKGBUILD
(from rev 371631, python-websocket-client/trunk/PKGBUILD)
Deleted:
  python-websocket-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 18:03:38 UTC (rev 371631)
+++ PKGBUILD2018-08-14 18:04:10 UTC (rev 371632)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Matmas 
-# Contributor: Thomas Gubler 
-# Contributor: Daniel YC Lin 
-# Contributor: Florian Bruhin 
-
-pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.48.0
-pkgrel=2
-pkgdesc="WebSocket client library for Python"
-arch=(any)
-url="https://github.com/liris/websocket-client;
-license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('6c678a2671ce6cfb86a61effa836bbe4bb1702f22827934b1fcd7f0f8439be76037d9b6d4d6b416249361a9a74a92701d7b90bc6276b2433388644ed66f56333')
-
-prepare() {
-  # Not sure why the conditions are not working :/
-  sed -i "s/'backports.ssl_match_hostname'//" websocket_client-$pkgver/setup.py
-
-  cp -a websocket_client-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/websocket_client-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/websocket_client-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/websocket_client-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/websocket_client-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-websocket-client() {
-  depends=('python-six')
-
-  cd websocket_client-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-websocket-client() {
-  depends=('python2-six')
-
-  cd websocket_client-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/wsdump{,2}.py
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-websocket-client/repos/community-any/PKGBUILD (from rev 371631, 
python-websocket-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 18:04:10 UTC (rev 371632)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Matmas 
+# Contributor: Thomas Gubler 
+# Contributor: Daniel YC Lin 
+# Contributor: Florian Bruhin 
+
+pkgname=(python-websocket-client python2-websocket-client)
+pkgver=0.49.0
+pkgrel=1
+pkgdesc="WebSocket client library for Python"
+arch=(any)
+url="https://github.com/liris/websocket-client;
+license=('LGPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
+sha512sums=('87d428b2a4572b2ace65652e1448c5c42d1c69fd279b6dce0160cb28dd9f0c00783c2b0c059b1d3558f42fe7067821cc2b85e41e4ebc2826a346defbabf15dad')
+
+prepare() {
+  # Not sure why the conditions are not working :/
+  sed -i "s/'backports.ssl_match_hostname'//" websocket_client-$pkgver/setup.py
+
+  cp -a websocket_client-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/websocket_client-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/websocket_client-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/websocket_client-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/websocket_client-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-websocket-client() {
+  depends=('python-six')
+
+  cd websocket_client-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-websocket-client() {
+  depends=('python2-six')
+
+  cd websocket_client-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/wsdump{,2}.py
+}
+
+# vim:set ts=2 sw=2 ft=sh et:


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 18:03:38
  Author: felixonmars
Revision: 371631

upgpkg: python-websocket-client 0.49.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 18:02:48 UTC (rev 371630)
+++ PKGBUILD2018-08-14 18:03:38 UTC (rev 371631)
@@ -6,8 +6,8 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.48.0
-pkgrel=2
+pkgver=0.49.0
+pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/liris/websocket-client;
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('6c678a2671ce6cfb86a61effa836bbe4bb1702f22827934b1fcd7f0f8439be76037d9b6d4d6b416249361a9a74a92701d7b90bc6276b2433388644ed66f56333')
+sha512sums=('87d428b2a4572b2ace65652e1448c5c42d1c69fd279b6dce0160cb28dd9f0c00783c2b0c059b1d3558f42fe7067821cc2b85e41e4ebc2826a346defbabf15dad')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 18:02:17
  Author: svenstaro
Revision: 371626

upgpkg: cudnn 7.2.1-1

Modified:
  cudnn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:52:57 UTC (rev 371625)
+++ PKGBUILD2018-08-14 18:02:17 UTC (rev 371626)
@@ -4,7 +4,7 @@
 # Contributor: Yunhui Fu 
 
 pkgname=cudnn
-pkgver=7.1.4
+pkgver=7.2.1
 pkgrel=1
 pkgdesc="NVIDIA CUDA Deep Neural Network library"
 arch=('x86_64')
@@ -13,9 +13,9 @@
 depends=('cuda')
 # To figure out these URLs, check out the Dockerfiles at
 # https://gitlab.com/nvidia/cuda/tree/centos7 for the appropriate cuda version.
-source=("${pkgname}-${pkgver}::https://developer.download.nvidia.com/compute/redist/cudnn/v${pkgver}/cudnn-9.2-linux-x64-v7.1.tgz;
+source=("${pkgname}-${pkgver}::https://developer.download.nvidia.com/compute/redist/cudnn/v${pkgver}/cudnn-9.2-linux-x64-v7.2.1.38.tgz;
 "NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
-sha512sums=('2f67c905976eb041512eb012a7cc98e1f408ec867f6a1d9d440afbcddc622c03c40de10386e44e4ab138c1a4ad040d39b0e9243f68e22975ca27ec297be25c5d'
+sha512sums=('169c7bb522a6ac942fed7865907bb6f322639c4245f8fe2ea2d012122b44d07991f3feba72e687251b0664cdc77fdf00e68af875f1702cc508c5c8997f0a9bc0'
 
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
 
 package() {


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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 18:02:29
  Author: svenstaro
Revision: 371627

archrelease: copy trunk to community-x86_64

Added:
  cudnn/repos/community-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
(from rev 371626, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
  cudnn/repos/community-x86_64/PKGBUILD
(from rev 371626, cudnn/trunk/PKGBUILD)
Deleted:
  cudnn/repos/community-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
  cudnn/repos/community-x86_64/PKGBUILD

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

Deleted: NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
===
(Binary files differ)

Copied: cudnn/repos/community-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf 
(from rev 371626, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 18:02:17 UTC (rev 371626)
+++ PKGBUILD2018-08-14 18:02:29 UTC (rev 371627)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adria Arrufat 
-# Contributor: Sami B. 
-# Contributor: Yunhui Fu 
-
-pkgname=cudnn
-pkgver=7.1.4
-pkgrel=1
-pkgdesc="NVIDIA CUDA Deep Neural Network library"
-arch=('x86_64')
-url="https://developer.nvidia.com/cuDNN;
-license=('proprietary')
-depends=('cuda')
-# To figure out these URLs, check out the Dockerfiles at
-# https://gitlab.com/nvidia/cuda/tree/centos7 for the appropriate cuda version.
-source=("${pkgname}-${pkgver}::https://developer.download.nvidia.com/compute/redist/cudnn/v${pkgver}/cudnn-9.2-linux-x64-v7.1.tgz;
-"NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
-sha512sums=('2f67c905976eb041512eb012a7cc98e1f408ec867f6a1d9d440afbcddc622c03c40de10386e44e4ab138c1a4ad040d39b0e9243f68e22975ca27ec297be25c5d'
-
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
-
-package() {
-  mkdir -p "${pkgdir}/opt"
-  mkdir -p "${pkgdir}/etc"
-
-  cp -r cuda "${pkgdir}/opt"
-
-  install -d ${pkgdir}/etc/ld.so.conf.d
-  echo "/opt/cuda/lib64/" > ${pkgdir}/etc/ld.so.conf.d/cudnn.conf
-
-  install -Dm644 ${srcdir}/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf 
${pkgdir}/usr/share/licenses/${pkgname}/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
-}
-
-# vim: ft=sh syn=sh et

Copied: cudnn/repos/community-x86_64/PKGBUILD (from rev 371626, 
cudnn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 18:02:29 UTC (rev 371627)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adria Arrufat 
+# Contributor: Sami B. 
+# Contributor: Yunhui Fu 
+
+pkgname=cudnn
+pkgver=7.2.1
+pkgrel=1
+pkgdesc="NVIDIA CUDA Deep Neural Network library"
+arch=('x86_64')
+url="https://developer.nvidia.com/cuDNN;
+license=('proprietary')
+depends=('cuda')
+# To figure out these URLs, check out the Dockerfiles at
+# https://gitlab.com/nvidia/cuda/tree/centos7 for the appropriate cuda version.
+source=("${pkgname}-${pkgver}::https://developer.download.nvidia.com/compute/redist/cudnn/v${pkgver}/cudnn-9.2-linux-x64-v7.2.1.38.tgz;
+"NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
+sha512sums=('169c7bb522a6ac942fed7865907bb6f322639c4245f8fe2ea2d012122b44d07991f3feba72e687251b0664cdc77fdf00e68af875f1702cc508c5c8997f0a9bc0'
+
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
+
+package() {
+  mkdir -p "${pkgdir}/opt"
+  mkdir -p "${pkgdir}/etc"
+
+  cp -r cuda "${pkgdir}/opt"
+
+  install -d ${pkgdir}/etc/ld.so.conf.d
+  echo "/opt/cuda/lib64/" > ${pkgdir}/etc/ld.so.conf.d/cudnn.conf
+
+  install -Dm644 ${srcdir}/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf 
${pkgdir}/usr/share/licenses/${pkgname}/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
+}
+
+# vim: ft=sh syn=sh et


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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 17:52:57
  Author: svenstaro
Revision: 371625

archrelease: copy trunk to community-x86_64

Added:
  glslang/repos/community-x86_64/PKGBUILD
(from rev 371624, glslang/trunk/PKGBUILD)
Deleted:
  glslang/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 17:52:44 UTC (rev 371624)
+++ PKGBUILD2018-08-14 17:52:57 UTC (rev 371625)
@@ -1,26 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=glslang
-pkgver=6.2.2596
-_gitver=ac37079
-pkgrel=1
-pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
-arch=('x86_64')
-url='https://github.com/KhronosGroup/glslang'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake' 'git')
-source=("git://github.com/KhronosGroup/glslang.git#commit=${_gitver}")
-sha256sums=('SKIP')
-
-build() {
-cd "${srcdir}/${pkgname}"
-
-mkdir build && cd build
-cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}/build"
-make DESTDIR="${pkgdir}" install
-}

Copied: glslang/repos/community-x86_64/PKGBUILD (from rev 371624, 
glslang/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 17:52:57 UTC (rev 371625)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=glslang
+pkgver=7.8.2853
+_gitver=72f8c69
+pkgrel=1
+pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
+arch=('x86_64')
+url='https://github.com/KhronosGroup/glslang'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake' 'git')
+source=("git://github.com/KhronosGroup/glslang.git#commit=${_gitver}")
+sha256sums=('SKIP')
+
+build() {
+cd "${srcdir}/${pkgname}"
+
+mkdir build && cd build
+cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}/build"
+make DESTDIR="${pkgdir}" install
+}


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

2018-08-14 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 14, 2018 @ 17:52:44
  Author: svenstaro
Revision: 371624

upgpkg: glslang 7.8.2853-1

Modified:
  glslang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:07:01 UTC (rev 371623)
+++ PKGBUILD2018-08-14 17:52:44 UTC (rev 371624)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=glslang
-pkgver=6.2.2596
-_gitver=ac37079
+pkgver=7.8.2853
+_gitver=72f8c69
 pkgrel=1
 pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
 arch=('x86_64')


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:07:01
  Author: felixonmars
Revision: 371623

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   77 
 stack.install |4 ++
 2 files changed, 81 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 371622, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-14 17:07:01 UTC (rev 371623)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.7.1
+pkgrel=101
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;)
+sha512sums=('786c116b4717f6e0f5ac0b5397db4834486610f511eafefe2356574545f97093fe3203824b7a3cabb2e0562e5c0443af3d93defe83751a9982727d88cafe78a7')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '54d;55d;56d;57d;58d' src/test/Stack/StoreSpec.hs
+  hpack
+  sed -i '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 371622, 

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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:06:41
  Author: felixonmars
Revision: 371622

upgpkg: stack 1.7.1-101

rebuild with retry 0.7.6.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:05:48 UTC (rev 371621)
+++ PKGBUILD2018-08-14 17:06:41 UTC (rev 371622)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.7.1
-pkgrel=100
+pkgrel=101
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


[arch-commits] Commit in python-netcdf4/repos/community-x86_64 (3 files)

2018-08-14 Thread Bruno Pagani via arch-commits
Date: Tuesday, August 14, 2018 @ 17:05:48
  Author: archange
Revision: 371621

archrelease: copy trunk to community-x86_64

Added:
  python-netcdf4/repos/community-x86_64/PKGBUILD
(from rev 371620, python-netcdf4/trunk/PKGBUILD)
Deleted:
  python-netcdf4/repos/community-x86_64/802.patch
  python-netcdf4/repos/community-x86_64/PKGBUILD

---+
 802.patch |   22 --
 PKGBUILD  |  125 
 2 files changed, 60 insertions(+), 87 deletions(-)

Deleted: 802.patch
===
--- 802.patch   2018-08-14 17:05:35 UTC (rev 371620)
+++ 802.patch   2018-08-14 17:05:48 UTC (rev 371621)
@@ -1,22 +0,0 @@
-From 138600a5a7df32772db1a81fd2882886818c8076 Mon Sep 17 00:00:00 2001
-From: Jeff Whitaker 
-Date: Thu, 24 May 2018 16:45:17 -0600
-Subject: [PATCH] fix for failing test
-

- test/tst_cdf5.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/tst_cdf5.py b/test/tst_cdf5.py
-index 1b46c91a..175f9b53 100644
 a/test/tst_cdf5.py
-+++ b/test/tst_cdf5.py
-@@ -4,7 +4,7 @@
- from numpy.testing import assert_array_equal
- 
- FILE_NAME = tempfile.NamedTemporaryFile(suffix='.nc', delete=False).name
--dimsize = np.iinfo(np.int64).max # max unsigned 64 bit integer
-+dimsize = np.iinfo(np.int32).max*2 # only allowed in CDF5
- ndim = 100
- arrdata = 
np.random.randint(np.iinfo(np.uint8).min,np.iinfo(np.uint8).max,size=ndim)
- 

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 17:05:35 UTC (rev 371620)
+++ PKGBUILD2018-08-14 17:05:48 UTC (rev 371621)
@@ -1,65 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Spyros Stathopoulos 
-# Contributor: richli 
-# Contributor: rememberthemer 
-
-_pkg=netCDF4
-pkgbase=python-${_pkg,,}
-pkgname=("python-${_pkg,,}" "python2-${_pkg,,}")
-pkgver=1.4.0
-pkgrel=3
-pkgdesc="Python/NumPy interface to the netCDF C library"
-arch=('x86_64')
-url="https://unidata.github.io/${_pkg,,}-python;
-license=('MIT')
-makedepends=('cython' 'python-setuptools' 'cython2' 'python2-setuptools' 
'python-numpy' 'python-cftime' 'python2-numpy' 'python2-cftime' 'netcdf')
-source=("https://pypi.io/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz;
-'802.patch')
-sha256sums=('a6c0b46f410f101c09d60b8cc460aafec06732f0130c6cb2730717bcc605b388'
-'17e3442e75d75fcba5fabe387f5dc5ef1cc2e7a4de25d96a2fcec699ce628289')
-
-prepare() {
-cd ${_pkg}-${pkgver}
-patch -p1 -i ../802.patch
-cd ..
-cp -a ${_pkg}-${pkgver}{,-py2}
-}
-
-build() {
-cd ${_pkg}-${pkgver}
-USE_NCCONFIG=1 python setup.py build
-
-cd ../${_pkg}-${pkgver}-py2
-USE_NCCONFIG=1 python2 setup.py build
-}
-
-check() {
-cd ${_pkg}-${pkgver}/test
-PYTHONPATH="../build/lib.linux-${CARCH}-3.7" python -B ./run_all.py
-
-cd ../../${_pkg}-${pkgver}-py2/test
-PYTHONPATH="../build/lib.linux-${CARCH}-2.7" python2 -B ./run_all.py
-}
-
-package_python-netcdf4() {
-depends=('python-numpy' 'python-cftime' 'netcdf')
-
-cd ${_pkg}-${pkgver}
-USE_NCCONFIG=1 python setup.py install --prefix=/usr --root="${pkgdir}" 
--skip-build --optimize=2
-
-install -Dm644 docs/netCDF4/* -t 
"${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
-install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}
-
-package_python2-netcdf4() {
-depends=('python2-numpy' 'python2-cftime' 'netcdf')
-
-cd ${_pkg}-${pkgver}-py2
-USE_NCCONFIG=1 python2 setup.py install --prefix=/usr --root="${pkgdir}" 
--skip-build --optimize=2
-
-for binary in "${pkgdir}"/usr/bin/* ;
-do mv ${binary}{,-py2} ;
-done
-install -Dm644 docs/netCDF4/* -t 
"${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
-install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: python-netcdf4/repos/community-x86_64/PKGBUILD (from rev 371620, 
python-netcdf4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 17:05:48 UTC (rev 371621)
@@ -0,0 +1,60 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Spyros Stathopoulos 
+# Contributor: richli 
+# Contributor: rememberthemer 
+
+_pkg=netCDF4
+pkgbase=python-${_pkg,,}
+pkgname=("python-${_pkg,,}" "python2-${_pkg,,}")
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="Python/NumPy interface to the netCDF C library"
+arch=('x86_64')
+url="https://unidata.github.io/${_pkg,,}-python;
+license=('MIT')
+makedepends=('cython' 'python-setuptools' 'cython2' 'python2-setuptools' 
'python-numpy' 'python-cftime' 'python2-numpy' 'python2-cftime' 'netcdf')
+source=("https://pypi.io/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz;)
+sha256sums=('d4fc65b98e348c39d082ab6b4b7f6d636b1b4e63bec016e5bca189fee5d46403')
+
+prepare() {
+cp -a ${_pkg}-${pkgver}{,-py2}
+}
+
+build() {
+cd ${_pkg}-${pkgver}
+USE_NCCONFIG=1 python setup.py build
+
+cd 

[arch-commits] Commit in python-netcdf4/trunk (802.patch PKGBUILD)

2018-08-14 Thread Bruno Pagani via arch-commits
Date: Tuesday, August 14, 2018 @ 17:05:35
  Author: archange
Revision: 371620

upgpkg: python-netcdf4 1.4.1-1

Modified:
  python-netcdf4/trunk/PKGBUILD
Deleted:
  python-netcdf4/trunk/802.patch

---+
 802.patch |   22 --
 PKGBUILD  |   13 -
 2 files changed, 4 insertions(+), 31 deletions(-)

Deleted: 802.patch
===
--- 802.patch   2018-08-14 17:03:16 UTC (rev 371619)
+++ 802.patch   2018-08-14 17:05:35 UTC (rev 371620)
@@ -1,22 +0,0 @@
-From 138600a5a7df32772db1a81fd2882886818c8076 Mon Sep 17 00:00:00 2001
-From: Jeff Whitaker 
-Date: Thu, 24 May 2018 16:45:17 -0600
-Subject: [PATCH] fix for failing test
-

- test/tst_cdf5.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/tst_cdf5.py b/test/tst_cdf5.py
-index 1b46c91a..175f9b53 100644
 a/test/tst_cdf5.py
-+++ b/test/tst_cdf5.py
-@@ -4,7 +4,7 @@
- from numpy.testing import assert_array_equal
- 
- FILE_NAME = tempfile.NamedTemporaryFile(suffix='.nc', delete=False).name
--dimsize = np.iinfo(np.int64).max # max unsigned 64 bit integer
-+dimsize = np.iinfo(np.int32).max*2 # only allowed in CDF5
- ndim = 100
- arrdata = 
np.random.randint(np.iinfo(np.uint8).min,np.iinfo(np.uint8).max,size=ndim)
- 

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:03:16 UTC (rev 371619)
+++ PKGBUILD2018-08-14 17:05:35 UTC (rev 371620)
@@ -6,22 +6,17 @@
 _pkg=netCDF4
 pkgbase=python-${_pkg,,}
 pkgname=("python-${_pkg,,}" "python2-${_pkg,,}")
-pkgver=1.4.0
-pkgrel=3
+pkgver=1.4.1
+pkgrel=1
 pkgdesc="Python/NumPy interface to the netCDF C library"
 arch=('x86_64')
 url="https://unidata.github.io/${_pkg,,}-python;
 license=('MIT')
 makedepends=('cython' 'python-setuptools' 'cython2' 'python2-setuptools' 
'python-numpy' 'python-cftime' 'python2-numpy' 'python2-cftime' 'netcdf')
-source=("https://pypi.io/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz;
-'802.patch')
-sha256sums=('a6c0b46f410f101c09d60b8cc460aafec06732f0130c6cb2730717bcc605b388'
-'17e3442e75d75fcba5fabe387f5dc5ef1cc2e7a4de25d96a2fcec699ce628289')
+source=("https://pypi.io/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz;)
+sha256sums=('d4fc65b98e348c39d082ab6b4b7f6d636b1b4e63bec016e5bca189fee5d46403')
 
 prepare() {
-cd ${_pkg}-${pkgver}
-patch -p1 -i ../802.patch
-cd ..
 cp -a ${_pkg}-${pkgver}{,-py2}
 }
 


[arch-commits] Commit in lighttpd/repos/extra-x86_64 (10 files)

2018-08-14 Thread Pierre Schmitz via arch-commits
Date: Tuesday, August 14, 2018 @ 17:02:19
  Author: pierre
Revision: 331520

archrelease: copy trunk to extra-x86_64

Added:
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 331519, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 331519, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 331519, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 331519, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 331519, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/extra-x86_64/PKGBUILD
  lighttpd/repos/extra-x86_64/lighttpd.conf
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
  lighttpd/repos/extra-x86_64/lighttpd.service
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles

--+
 PKGBUILD |  144 -
 lighttpd.conf|   44 +++---
 lighttpd.logrotate.d |   18 +++---
 lighttpd.service |   24 
 lighttpd.tmpfiles|4 -
 5 files changed, 117 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 17:02:10 UTC (rev 331519)
+++ PKGBUILD2018-08-14 17:02:19 UTC (rev 331520)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.49
-pkgrel=2
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'util-linux' 'systemd')
-makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha512sums=('de766da68b4cacfb6c322210eafe819b6423334272e9fae4688c2282a66a2e55aaf580c5fdbf02676ed6f7b32d13f2f28cefd22518f77127055ec336ec5d6784'
-'SKIP'
-
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
-
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'
-
'0079d6fd80ca42fa5384838b3df68d25000fb7a5a92ea9fb02f6a18cdfb85b23279c78b881e21270e7e450ee3ae28ea839932f3268b826b52478079e510ecd33'
-
'2caf419d96ddfc3c4d832483e0d243463632823df1b2bcde212c46a932b5fd6d9ca28aab8139aa234854e0e91f85d4245ab7c9a4c304fb36b8cd1dde7908a5bd')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8'
-  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   --with-gdbm \
-   --with-lua
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
-   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
-   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
-   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
-   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
-
-   pushd doc/config >/dev/null
-   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
-   popd >/dev/null
-
-   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: lighttpd/repos/extra-x86_64/PKGBUILD (from rev 331519, 
lighttpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 17:02:19 UTC (rev 331520)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.50
+pkgrel=1
+pkgdesc='A secure, fast, compliant and very 

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

2018-08-14 Thread Pierre Schmitz via arch-commits
Date: Tuesday, August 14, 2018 @ 17:02:10
  Author: pierre
Revision: 331519

upgpkg: lighttpd 1.4.50-1

Modified:
  lighttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:01:57 UTC (rev 331518)
+++ PKGBUILD2018-08-14 17:02:10 UTC (rev 331519)
@@ -2,8 +2,8 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=lighttpd
-pkgver=1.4.49
-pkgrel=2
+pkgver=1.4.50
+pkgrel=1
 pkgdesc='A secure, fast, compliant and very flexible web-server'
 license=('custom')
 arch=('x86_64')
@@ -18,7 +18,7 @@
 options=('emptydirs')
 
source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
 'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha512sums=('de766da68b4cacfb6c322210eafe819b6423334272e9fae4688c2282a66a2e55aaf580c5fdbf02676ed6f7b32d13f2f28cefd22518f77127055ec336ec5d6784'
+sha512sums=('54b8a99d84ca25f39254fb0dabaae978fcdf559d58da4ed7b7ab08d5ee856201e5302ee8a5732d3e2493bb3cd67c3f2196cedbb476a3ea21003a21c552b2402c'
 'SKIP'
 
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
 
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:01:41
  Author: felixonmars
Revision: 371617

archrelease: copy trunk to community-x86_64

Added:
  trojan/repos/community-x86_64/PKGBUILD
(from rev 371616, trojan/trunk/PKGBUILD)
Deleted:
  trojan/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 17:01:13 UTC (rev 371616)
+++ PKGBUILD2018-08-14 17:01:41 UTC (rev 371617)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: GreaterFire 
-
-pkgname=trojan
-pkgver=1.5.1
-pkgrel=1
-pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
-arch=('x86_64')
-url="https://github.com/trojan-gfw/trojan;
-license=('GPL3')
-depends=('boost-libs' 'openssl' 'libmariadbclient')
-optdepends=('ca-certificates: server certificate verification'
-'mariadb: advanced user management')
-makedepends=('cmake' 'boost' 'openssl' 'libmariadbclient')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
-backup=('etc/trojan.json'
-'etc/trojan/config.json')
-sha512sums=('99dc33034db763772331fc983e328b08c36bea3ba27e738857cf9ccd7340ea32f5df86b6fe062a8d98260f85207c315bb4fea8af5ecaba9da64b3b6bc87e5baf')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: trojan/repos/community-x86_64/PKGBUILD (from rev 371616, 
trojan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 17:01:41 UTC (rev 371617)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: GreaterFire 
+
+pkgname=trojan
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
+arch=('x86_64')
+url="https://github.com/trojan-gfw/trojan;
+license=('GPL3')
+depends=('boost-libs' 'openssl' 'libmariadbclient')
+optdepends=('ca-certificates: server certificate verification'
+'mariadb: advanced user management')
+makedepends=('cmake' 'boost' 'openssl' 'libmariadbclient')
+checkdepends=('openssl' 'python' 'curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
+backup=('etc/trojan.json'
+'etc/trojan/config.json')
+sha512sums=('4048b987a6126ef9e7ba8562bd713a7beafda0171a53a7e8e94750a6461a1493694a00c726c3059b2bdd7a80efb53074315130f8067fbfdf73e1778c3e10e0bf')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .
+  make
+}
+
+check() {
+cd $pkgname-$pkgver
+ctest
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:01:01
  Author: felixonmars
Revision: 371615

archrelease: copy trunk to community-any

Added:
  node-gyp/repos/community-any/PKGBUILD
(from rev 371614, node-gyp/trunk/PKGBUILD)
Deleted:
  node-gyp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 17:00:41 UTC (rev 371614)
+++ PKGBUILD2018-08-14 17:01:01 UTC (rev 371615)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=node-gyp
-pkgver=3.7.0
-pkgrel=1
-pkgdesc='Node.js native addon build tool'
-arch=('any')
-url='https://github.com/nodejs/node-gyp'
-license=('MIT')
-depends=('nodejs' 'semver')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('a83404fc5b7dc573face9870c78b03d2df9587057bc856a5a0ca5f6cbd909e70d97326a26a45a52ddb4518641f4c0c291477696d1851c558481cdd4e2808e06e')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # Experimental dedup
-  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver
-
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s ../../../lib/node_modules/$pkgname/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: node-gyp/repos/community-any/PKGBUILD (from rev 371614, 
node-gyp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 17:01:01 UTC (rev 371615)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=node-gyp
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='Node.js native addon build tool'
+arch=('any')
+url='https://github.com/nodejs/node-gyp'
+license=('MIT')
+depends=('nodejs' 'semver')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('de0f2561e7eb451cef19e4a8c1d24a00aca4b3ca14a4b11dfc3c8f57878c85596127468d699a88acd5083ee1165930283eac8591f1ab33aecc0baf5b6aa9fabc')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # Experimental dedup
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s ../../../lib/node_modules/$pkgname/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:01:13
  Author: felixonmars
Revision: 371616

upgpkg: trojan 1.5.2-1

Modified:
  trojan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:01:01 UTC (rev 371615)
+++ PKGBUILD2018-08-14 17:01:13 UTC (rev 371616)
@@ -3,7 +3,7 @@
 # Contributor: GreaterFire 
 
 pkgname=trojan
-pkgver=1.5.1
+pkgver=1.5.2
 pkgrel=1
 pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
 arch=('x86_64')
@@ -13,10 +13,11 @@
 optdepends=('ca-certificates: server certificate verification'
 'mariadb: advanced user management')
 makedepends=('cmake' 'boost' 'openssl' 'libmariadbclient')
+checkdepends=('openssl' 'python' 'curl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
 backup=('etc/trojan.json'
 'etc/trojan/config.json')
-sha512sums=('99dc33034db763772331fc983e328b08c36bea3ba27e738857cf9ccd7340ea32f5df86b6fe062a8d98260f85207c315bb4fea8af5ecaba9da64b3b6bc87e5baf')
+sha512sums=('4048b987a6126ef9e7ba8562bd713a7beafda0171a53a7e8e94750a6461a1493694a00c726c3059b2bdd7a80efb53074315130f8067fbfdf73e1778c3e10e0bf')
 
 build() {
   cd $pkgname-$pkgver
@@ -24,6 +25,11 @@
   make
 }
 
+check() {
+cd $pkgname-$pkgver
+ctest
+}
+
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:00:41
  Author: felixonmars
Revision: 371614

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 371613, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 371613, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-14 17:00:41 UTC (rev 371614)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.4.4.0
+pkgrel=225
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hasql' 'haskell-hasql-pool' 'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 'haskell-either' 
'haskell-gitrev'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http' 
'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-ranged-sets' 'haskell-regex-tdfa' 'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 
'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('f19c426a59d1c77d8e7808ee248eba1967cc5fc8686f5380603e2f8ab80aeeca20a4b145e056feceb1bcb9dedfa3b88c2ace7aab4bc1152f780630360fe6485c')
+
+prepare() {
+sed -i 's/==/>=/' $pkgname-$pkgver/$pkgname.cabal
+
+sed -i '/import\s*Safe/d' $pkgname-$pkgver/src/PostgREST/App.hs
+sed -i '/safe/d' $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:00:26
  Author: felixonmars
Revision: 371613

upgpkg: node-gyp 3.8.0-1

Modified:
  node-gyp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 17:00:19 UTC (rev 371612)
+++ PKGBUILD2018-08-14 17:00:26 UTC (rev 371613)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=node-gyp
-pkgver=3.7.0
+pkgver=3.8.0
 pkgrel=1
 pkgdesc='Node.js native addon build tool'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('a83404fc5b7dc573face9870c78b03d2df9587057bc856a5a0ca5f6cbd909e70d97326a26a45a52ddb4518641f4c0c291477696d1851c558481cdd4e2808e06e')
+sha512sums=('de0f2561e7eb451cef19e4a8c1d24a00aca4b3ca14a4b11dfc3c8f57878c85596127468d699a88acd5083ee1165930283eac8591f1ab33aecc0baf5b6aa9fabc')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 17:00:19
  Author: felixonmars
Revision: 371612

upgpkg: postgrest 0.4.4.0-225

rebuild with retry 0.7.6.3

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:57:30 UTC (rev 371611)
+++ PKGBUILD2018-08-14 17:00:19 UTC (rev 371612)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.4.4.0
-pkgrel=224
+pkgrel=225
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 16:57:07
  Author: felixonmars
Revision: 371610

upgpkg: haskell-retry 0.7.6.3-1

rebuild with retry 0.7.6.3

Modified:
  haskell-retry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:38:35 UTC (rev 371609)
+++ PKGBUILD2018-08-14 16:57:07 UTC (rev 371610)
@@ -4,8 +4,8 @@
 
 _hkgname=retry
 pkgname=haskell-retry
-pkgver=0.7.6.2
-pkgrel=37
+pkgver=0.7.6.3
+pkgrel=1
 pkgdesc="Retry combinators for monadic actions that may fail"
 url="https://github.com/Soostone/retry;
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
 makedepends=('ghc' 'haskell-hedgehog' 'haskell-hunit' 'haskell-tasty'
  'haskell-tasty-hunit' 'haskell-tasty-hedgehog')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('f3c2713feb2f348481e8c4e0fa294da484bb9de85e305d17d98385bd3554936d5ad987b63a077448cf70a09746a2d84dd0f3af7af896f00772d251c9c1e119dd')
+sha512sums=('e13e0859fc497eaa19b2532dd28fe750cc70946e9856482878051acb60b66b9e1965b4980a2fcae0ab1a3aa4b8a363761fc213c75c035d6421aaa4ef6519')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 16:57:30
  Author: felixonmars
Revision: 371611

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-retry/repos/community-staging-x86_64/PKGBUILD (from rev 371610, 
haskell-retry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-14 16:57:30 UTC (rev 371611)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=retry
+pkgname=haskell-retry
+pkgver=0.7.6.3
+pkgrel=1
+pkgdesc="Retry combinators for monadic actions that may fail"
+url="https://github.com/Soostone/retry;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default-class' 'haskell-exceptions' 
'haskell-random')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hunit' 'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-hedgehog')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e13e0859fc497eaa19b2532dd28fe750cc70946e9856482878051acb60b66b9e1965b4980a2fcae0ab1a3aa4b8a363761fc213c75c035d6421aaa4ef6519')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-lib-werror
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-14 Thread Jiachen Yang via arch-commits
Date: Tuesday, August 14, 2018 @ 16:38:35
  Author: farseerfc
Revision: 371609

archrelease: copy trunk to community-x86_64

Added:
  powerline/repos/community-x86_64/PKGBUILD
(from rev 371608, powerline/trunk/PKGBUILD)
Deleted:
  powerline/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  366 ++---
 1 file changed, 185 insertions(+), 181 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:37:48 UTC (rev 371608)
+++ PKGBUILD2018-08-14 16:38:35 UTC (rev 371609)
@@ -1,181 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Swift Geek
-# AUR Maintainer: Timothée Ravier 
-# AUR Maintainer: Stefan Tatschner 
-# Contributor: Swift Geek
-# Contributor: Pablo Olmos de Aguilera C. pablo+aur at odac dot co
-
-_pkgname="powerline"
-pkgbase="powerline"
-pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
-pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
-pkgver=2.6
-pkgrel=3
-url="https://github.com/${_pkgname}/${_pkgname};
-license=('MIT')
-arch=('x86_64')
-makedepends=(
-'python2-setuptools'
-'python-setuptools'
-'python-sphinx'
-)
-source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('a4c72a6239b9c2f4db2b511647529eae008cfdd783b9a2ebe6bf7fe625e82801ff4da1887d6efa4b785966d46fac15ec4540aa2bd180722fd76fcd2873a074c0')
-
-
-
-prepare() {
-# fix https://bugs.archlinux.org/task/48358
-cd ${srcdir}/${_pkgname}-${pkgver}
-find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/env //"
-find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/env //"
-
-
-cp -r ${srcdir}/${_pkgname}-${pkgver}{,-py2}
-# prepare python2 scripts
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/python/python2/"
-find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/python/python2/"
-}
-
-build(){
-# build main pages
-cd ${srcdir}/${_pkgname}-${pkgver}/docs
-make man
-
-# build C client
-cd ${srcdir}/${_pkgname}-${pkgver}
-python setup.py build
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-python2 setup.py build
-}
-
-
-## FIXME Currently test will fail with dividers and other errors
-#check(){
-#cd ${srcdir}/${_pkgname}-${pkgver}
-#LC_ALL=C python setup.py test
-#cd ${srcdir}/${_pkgname}-${pkgver}-py2
-#LC_ALL=C python2 setup.py test
-#}
-
-package_powerline(){
-depends=('python-powerline')
-conflicts=('powerline2' 'python-powerline<=2.3-1')
-replaces=('python-powerline<=2.3-1')
-
-cd ${srcdir}/${_pkgname}-${pkgver}/scripts
-install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
-install -Dm755 powerline-config "${pkgdir}/usr/bin/powerline-config"
-install -Dm755 powerline-daemon "${pkgdir}/usr/bin/powerline-daemon"
-install -Dm755 powerline-lint "${pkgdir}/usr/bin/powerline-lint"
-install -Dm755 powerline-render "${pkgdir}/usr/bin/powerline-render"
-
-install -dm755 "${pkgdir}/usr/share/powerline/"
-ln -s "$(python3 -c 'import site; 
print(site.getsitepackages()[0])')/powerline/bindings" 
"${pkgdir}/usr/share/powerline/bindings"
-# license is installed by powerline-common
-}
-
-package_powerline2(){
-pkgdesc='Python2 version of statusline plugin for vim, and provides 
statuslines and prompts for several other applications, including zsh, bash, 
tmux, IPython, Awesome, i3 and Qtile'
-depends=('python2-powerline')
-conflicts=('powerline' 'python2-powerline<=2.3-1')
-provides=('powerline')
-replaces=('python2-powerline<=2.3-1')
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2/scripts
-install -Dm755 powerline{,-config,-daemon,-lint,-render} -t 
"${pkgdir}/usr/bin/"
-install -dm755 "${pkgdir}/usr/share/powerline/"
-ln -s "$(python2 -c 'import site; 
print(site.getsitepackages()[0])')/powerline/bindings" 
"${pkgdir}/usr/share/powerline/bindings"
-
-install -dm755 "${pkgdir}/usr/share/licenses/"
-ln -s "/usr/share/licenses/${_pkgname}" 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-
-package_python-powerline() {
-pkgdesc='python library for powerline'
-depends=('python>=3.2' 'powerline-common')
-optdepends=('python-psutil: improved system information'
-'python-pygit2: improved git support'
-'powerline-vim: vim plugin'
-'powerline-fonts: patched fonts for powerline'
-)
-
-# install by redirect scripts and binaries
-cd ${srcdir}/${_pkgname}-${pkgver}
-python setup.py install --skip-build --root="${pkgdir}" --install-data=tmp 

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

2018-08-14 Thread Jiachen Yang via arch-commits
Date: Tuesday, August 14, 2018 @ 16:37:48
  Author: farseerfc
Revision: 371608

upgpkg: powerline 2.7-1

powerline 2.7

Modified:
  powerline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:12:33 UTC (rev 371607)
+++ PKGBUILD2018-08-14 16:37:48 UTC (rev 371608)
@@ -9,8 +9,8 @@
 pkgbase="powerline"
 pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
 pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
-pkgver=2.6
-pkgrel=3
+pkgver=2.7
+pkgrel=1
 url="https://github.com/${_pkgname}/${_pkgname};
 license=('MIT')
 arch=('x86_64')
@@ -19,8 +19,12 @@
 'python-setuptools'
 'python-sphinx'
 )
+checkdepends=(
+'python-pexpect'
+'python2-pexpect'
+)
 
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('a4c72a6239b9c2f4db2b511647529eae008cfdd783b9a2ebe6bf7fe625e82801ff4da1887d6efa4b785966d46fac15ec4540aa2bd180722fd76fcd2873a074c0')
+sha512sums=('a61715a2af9b3b5e26bd7ff4717cba41e6b5ad8c8328132154c88dc161d3fab902432dfe94da9c2d87c32e9fa69c9a758fb90168fbd18b3dc47c0d0073fd6623')
 
 
 
@@ -52,13 +56,13 @@
 }
 
 
-## FIXME Currently test will fail with dividers and other errors
-#check(){
-#cd ${srcdir}/${_pkgname}-${pkgver}
-#LC_ALL=C python setup.py test
-#cd ${srcdir}/${_pkgname}-${pkgver}-py2
-#LC_ALL=C python2 setup.py test
-#}
+# FIXME Currently test will fail with dividers and other errors
+check(){
+cd ${srcdir}/${_pkgname}-${pkgver}
+LC_ALL=C python setup.py test
+cd ${srcdir}/${_pkgname}-${pkgver}-py2
+LC_ALL=C python2 setup.py test
+}
 
 package_powerline(){
 depends=('python-powerline')


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

2018-08-14 Thread Jiachen Yang via arch-commits
Date: Tuesday, August 14, 2018 @ 16:12:33
  Author: farseerfc
Revision: 371607

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 371606, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:11:14 UTC (rev 371606)
+++ PKGBUILD2018-08-14 16:12:33 UTC (rev 371607)
@@ -1,119 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Release
-
-_mozc_rev=280e38fe3d9db4df52f0713acf2ca65898cd697a
-_japanese_usage_dictionary_rev=e5b3425575734c323e1d947009dd74709437b684
-_gyp_rev=920ee58c3d3109dea3cd37d88054014891a93db7
-_protobuf_rev=a428e42072765993ff674fda72863c9f1aa2d268
-_zipcode_rel=201703
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.20.2673.102
-_fcitx_patchver=2.18.2612.102.1
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'aecd93a99c460fbbb9790bdf9e024a313b62cf51a1fec23bc19da0f375ddaeec37fe3bdf5d44930d16da9d1ba0b3205a2da008c4be611165ae474c469d173176'
-
'e426652cfa1ab6360c00770a76d12089165ba66364aaf8b6dcd3b6bf9fc7b154ec490eea77476eefd7e1551cf84165a45f165bb6cfab4964a1bb682220e11e28'
-
'725c464727f230707b90975705ef1565f1178f9144e66c5a688696a4ef520a6fec1d11f7aa68ee05f82aa9417060b1cccf49a155e30734871a525eaa4c76addb'
-'SKIP'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  mv mozc-gyp gyp
-
-  cd mozc/src
-
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" 
{} +
-
-  # Generate zip code seed
-  msg "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python2 dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  msg "Done."
-
-  # Copy third party deps
-  cd "$srcdir"
-  for dep in gyp protobuf japanese_usage_dictionary
-  do
-cp -a $dep mozc/src/third_party/
-  done
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python2 build_mozc.py gyp
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
"${pkgdir}/usr/lib/mozc/mozc_server"
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
"${pkgdir}/usr/lib/mozc/mozc_tool"
-
-  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
-  install -m 644 LICENSE data/installer/*.html 
"${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  for mofile in out_linux/${_bldtype}/gen/unix/fcitx/po/*.mo
-  do
-filename=`basename $mofile`
-lang=${filename/.mo/}
-install -D -m 644 "$mofile" 
"${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo"
-  done
-
-  install -D -m 755 

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

2018-08-14 Thread Jiachen Yang via arch-commits
Date: Tuesday, August 14, 2018 @ 16:11:14
  Author: farseerfc
Revision: 371606

upgpkg: fcitx-mozc 2.23.2815.102-2

fcitx-mozc update 2.23.2815.102

Modified:
  fcitx-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:09:09 UTC (rev 371605)
+++ PKGBUILD2018-08-14 16:11:14 UTC (rev 371606)
@@ -6,17 +6,17 @@
 ## Mozc compile option
 _bldtype=Release
 
-_mozc_rev=280e38fe3d9db4df52f0713acf2ca65898cd697a
-_japanese_usage_dictionary_rev=e5b3425575734c323e1d947009dd74709437b684
-_gyp_rev=920ee58c3d3109dea3cd37d88054014891a93db7
-_protobuf_rev=a428e42072765993ff674fda72863c9f1aa2d268
-_zipcode_rel=201703
+_mozc_rev=afb03ddfe72dde4cf2409863a3bfea160f7a66d8
+_japanese_usage_dictionary_rev=a4a66772e33746b91e99caceecced9a28507e925
+_gyp_rev=4ec6c4e3a94bd04a6da2858163d40b2429b8aad1 
+_protobuf_rev=92a7e778e7394386f413cec28d67a07630f784b1
+_zipcode_rel=201807
 
 _pkgbase=mozc
 pkgname=fcitx-mozc
 pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.20.2673.102
-_fcitx_patchver=2.18.2612.102.1
+pkgver=2.23.2815.102
+_fcitx_patchver=${pkgver}.1
 pkgrel=2
 arch=('x86_64')
 url="https://github.com/google/mozc;
@@ -25,21 +25,24 @@
 makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
 replaces=('mozc-fcitx')
 conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
+source=(
+   git+https://github.com/google/mozc.git#commit=${_mozc_rev}
+   
pr444.patch::https://github.com/google/mozc/pull/444/commits/82d38f929882a9c62289b179c6fe41efed249987.patch
+   
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
+   
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
+   git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
+   
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
+   https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
+   
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
 https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
 sha512sums=('SKIP'
+
'0c6ebf6a8579b6fc3f7d6b292d1aca6b1a3825030e78b4f46bb1c49bcf1c559ae82081bd459de5ee3aa7bf803af83e8ddc77157553da342f030442934e4877fb'
 'SKIP'
 'SKIP'
 'SKIP'
-
'aecd93a99c460fbbb9790bdf9e024a313b62cf51a1fec23bc19da0f375ddaeec37fe3bdf5d44930d16da9d1ba0b3205a2da008c4be611165ae474c469d173176'
-
'e426652cfa1ab6360c00770a76d12089165ba66364aaf8b6dcd3b6bf9fc7b154ec490eea77476eefd7e1551cf84165a45f165bb6cfab4964a1bb682220e11e28'
-
'725c464727f230707b90975705ef1565f1178f9144e66c5a688696a4ef520a6fec1d11f7aa68ee05f82aa9417060b1cccf49a155e30734871a525eaa4c76addb'
+
'36603203eee8ef044903af05d38b87496cd5cf3c2eb99d9c390aca5b2a6975bc96a85342bf0996a98d374566f507ae84a6693be26d9e7b10b5bb74b04e6d2e7f'
+
'0c868dc42f8f162f489aa72039852e67fe03d4f10770a90c3b1b863beff86382d31585fbd63c3ece3911a599a047c0add1249319e2d4e3e3ba441e0614e6fa84'
+
'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0'
 'SKIP'
 
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
@@ -47,11 +50,17 @@
 prepare() {
   mv mozc-gyp gyp
 
-  cd mozc/src
+  cd mozc
+  # Apply gcc8.1 patch in PR#444
+  patch -Np1 -i "$srcdir/pr444.patch"
 
+  cd src
+
   # Apply fcitx patch
   rm unix/fcitx -rf
   patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
+  # Disable fcitx5 specific building 
+  rm unix/fcitx5 -rf
 
   # Adjust to use python2
   find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:09:09
  Author: juergen
Revision: 371605

archrelease: copy trunk to community-x86_64

Added:
  ocaml-lablgl/repos/community-x86_64/PKGBUILD
(from rev 371604, ocaml-lablgl/trunk/PKGBUILD)
Deleted:
  ocaml-lablgl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:08:44 UTC (rev 371604)
+++ PKGBUILD2018-08-14 16:09:09 UTC (rev 371605)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Florian Dejonckheere 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Nikolay Amiantov 
-
-pkgname=ocaml-lablgl
-pkgver=1.05
-pkgrel=6
-pkgdesc='OCaml interface to OpenGL'
-url="https://forge.ocamlcore.org/projects/lablgl/;
-arch=('x86_64')
-license=('BSD')
-depends=('glu' 'glut' 'libxi' 'libxmu' 'libgl' 'ocaml=4.06.0')
-makedepends=('camlp4')
-options=('!strip' '!makeflags' 'staticlibs')
-source=("https://forge.ocamlcore.org/frs/download.php/1254/lablgl-$pkgver.tar.gz;)
-sha256sums=('d8ff03e35b970d2b23a942f9e6ed65da5a6c123986bd0ecf5424a6205af34b61')
-
-prepare() {
-cd "${srcdir}"/lablgl-${pkgver}
-
-printf 'RANLIB = :\n' > Makefile.config
-printf 'GLLIBS = -lGL -lGLU\n' >> Makefile.config
-printf 'GLUTLIBS = -lglut\n' >> Makefile.config
-}
-
-build() {
-  cd "${srcdir}"/lablgl-${pkgver}
-
-  make lib
-  make libopt
-}
-
-package() {
-cd "${srcdir}"/lablgl-${pkgver}
-
-# Install routines are broken and don't ensure this is created first.
-mkdir -p "${pkgdir}"/usr/lib/ocaml/stublibs
-
-make install BINDIR="${pkgdir}/usr/bin/" \
- LIBDIR="${pkgdir}/usr/lib/ocaml/" \
- DDLDIR="${pkgdir}/usr/lib/ocaml/stublibs/" \
- INSTALLDIR="${pkgdir}/usr/lib/ocaml/lablGL/"
-
-install -Dm644 src/lablgl.cmxa "${pkgdir}"/usr/lib/ocaml/lablgl.cmxa
-install -Dm644 COPYRIGHT "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ocaml-lablgl/repos/community-x86_64/PKGBUILD (from rev 371604, 
ocaml-lablgl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:09:09 UTC (rev 371605)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Florian Dejonckheere 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Nikolay Amiantov 
+
+pkgname=ocaml-lablgl
+pkgver=1.05
+pkgrel=7
+pkgdesc='OCaml interface to OpenGL'
+url="https://forge.ocamlcore.org/projects/lablgl/;
+arch=('x86_64')
+license=('BSD')
+depends=('glu' 'glut' 'libxi' 'libxmu' 'libgl' 'ocaml=4.07.0')
+makedepends=('camlp4')
+options=('!strip' '!makeflags' 'staticlibs')
+source=("https://forge.ocamlcore.org/frs/download.php/1254/lablgl-$pkgver.tar.gz;)
+sha256sums=('d8ff03e35b970d2b23a942f9e6ed65da5a6c123986bd0ecf5424a6205af34b61')
+
+prepare() {
+cd "${srcdir}"/lablgl-${pkgver}
+
+printf 'RANLIB = :\n' > Makefile.config
+printf 'GLLIBS = -lGL -lGLU\n' >> Makefile.config
+printf 'GLUTLIBS = -lglut\n' >> Makefile.config
+}
+
+build() {
+  cd "${srcdir}"/lablgl-${pkgver}
+
+  make lib
+  make libopt
+}
+
+package() {
+cd "${srcdir}"/lablgl-${pkgver}
+
+# Install routines are broken and don't ensure this is created first.
+mkdir -p "${pkgdir}"/usr/lib/ocaml/stublibs
+
+make install BINDIR="${pkgdir}/usr/bin/" \
+ LIBDIR="${pkgdir}/usr/lib/ocaml/" \
+ DDLDIR="${pkgdir}/usr/lib/ocaml/stublibs/" \
+ INSTALLDIR="${pkgdir}/usr/lib/ocaml/lablGL/"
+
+install -Dm644 src/lablgl.cmxa "${pkgdir}"/usr/lib/ocaml/lablgl.cmxa
+install -Dm644 COPYRIGHT "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:08:44
  Author: juergen
Revision: 371604

OCaml 4.07.0 rebuild

Modified:
  ocaml-lablgl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:07:57 UTC (rev 371603)
+++ PKGBUILD2018-08-14 16:08:44 UTC (rev 371604)
@@ -6,12 +6,12 @@
 
 pkgname=ocaml-lablgl
 pkgver=1.05
-pkgrel=6
+pkgrel=7
 pkgdesc='OCaml interface to OpenGL'
 url="https://forge.ocamlcore.org/projects/lablgl/;
 arch=('x86_64')
 license=('BSD')
-depends=('glu' 'glut' 'libxi' 'libxmu' 'libgl' 'ocaml=4.06.0')
+depends=('glu' 'glut' 'libxi' 'libxmu' 'libgl' 'ocaml=4.07.0')
 makedepends=('camlp4')
 options=('!strip' '!makeflags' 'staticlibs')
 
source=("https://forge.ocamlcore.org/frs/download.php/1254/lablgl-$pkgver.tar.gz;)


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:07:57
  Author: juergen
Revision: 371603

archrelease: copy trunk to community-x86_64

Added:
  ocaml-yojson/repos/community-x86_64/PKGBUILD
(from rev 371602, ocaml-yojson/trunk/PKGBUILD)
Deleted:
  ocaml-yojson/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:07:34 UTC (rev 371602)
+++ PKGBUILD2018-08-14 16:07:57 UTC (rev 371603)
@@ -1,39 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkgname=yojson
-pkgname=ocaml-${_pkgname}
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="An optimized parsing and printing library for JSON"
-arch=('x86_64')
-url="https://github.com/mjambon/${_pkgname};
-license=('BSD')
-options=('!strip' 'staticlibs')
-depends=('ocaml-biniou' 'ocaml-easy-format')
-makedepends=('dune' 'cppo')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('c081a8cb5a03bddbcac4614f468cf5edafe11805277572af4071e362be6611fb')
-
-build() {
-cd ${_pkgname}-${pkgver}
-make all
-}
-
-check() {
-cd ${_pkgname}-${pkgver}
-make test
-}
-
-package() {
-cd ${_pkgname}-${pkgver}
-
-# Initialize OPAM, this should be removed once opam is “removed” from dune
-export OPAMROOT="${srcdir}"/opam
-opam init -n
-
-# Work around the install command
-make OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)" install
-
-# Install LICENSE
-install -Dm644 "${srcdir}"/opam/system/doc/${_pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: ocaml-yojson/repos/community-x86_64/PKGBUILD (from rev 371602, 
ocaml-yojson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:07:57 UTC (rev 371603)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+
+_pkgname=yojson
+pkgname=ocaml-${_pkgname}
+pkgver=1.4.1
+pkgrel=2
+pkgdesc="An optimized parsing and printing library for JSON"
+arch=('x86_64')
+url="https://github.com/mjambon/${_pkgname};
+license=('BSD')
+options=('!strip' 'staticlibs')
+depends=('ocaml-biniou' 'ocaml-easy-format')
+makedepends=('dune' 'cppo')
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('c081a8cb5a03bddbcac4614f468cf5edafe11805277572af4071e362be6611fb')
+
+build() {
+cd ${_pkgname}-${pkgver}
+make all
+}
+
+check() {
+cd ${_pkgname}-${pkgver}
+make test
+}
+
+package() {
+cd ${_pkgname}-${pkgver}
+
+# Initialize OPAM, this should be removed once opam is “removed” from dune
+export OPAMROOT="${srcdir}"/opam
+opam init -n
+
+# Work around the install command
+make OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)" install
+
+# Install LICENSE
+install -Dm644 "${srcdir}"/opam/system/doc/${_pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:07:34
  Author: juergen
Revision: 371602

OCaml 4.07.0 rebuild

Modified:
  ocaml-yojson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:05:28 UTC (rev 371601)
+++ PKGBUILD2018-08-14 16:07:34 UTC (rev 371602)
@@ -3,7 +3,7 @@
 _pkgname=yojson
 pkgname=ocaml-${_pkgname}
 pkgver=1.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An optimized parsing and printing library for JSON"
 arch=('x86_64')
 url="https://github.com/mjambon/${_pkgname};


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:06:20
  Author: juergen
Revision: 331516

archrelease: copy trunk to extra-x86_64

Added:
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 331515, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/ghostscript918.patch
(from rev 331515, graphviz/trunk/ghostscript918.patch)
  graphviz/repos/extra-x86_64/install
(from rev 331515, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/ghostscript918.patch
  graphviz/repos/extra-x86_64/install

--+
 PKGBUILD |  114 -
 ghostscript918.patch |   36 +++
 install  |   24 +-
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:05:31 UTC (rev 331515)
+++ PKGBUILD2018-08-14 16:06:20 UTC (rev 331516)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: kevin 
-# Contributor: John Proctor 
-
-pkgname=graphviz
-pkgver=2.40.1
-pkgrel=12
-pkgdesc='Graph visualization software'
-url='http://www.graphviz.org/'
-license=('EPL')
-arch=('x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl')
-makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python2' 'r' 'tk' 
'qt4' 'gtk2')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'python2: python bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt4: gvedit'
-'gtk2: gtk output plugin'
-'xterm: vimdot')
-
-# http://www.graphviz.org/Download_source.php
-source=("https://graphviz.gitlab.io/pub/graphviz/stable/SOURCES/graphviz.tar.gz;
-'ghostscript918.patch')
-sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
-'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ghostscript918.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=python2
-   export LIBPOSTFIX=/
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   # Deduplicates TCL libraries
-   cd "${pkgdir}/usr/lib/tcl8.6"
-   rm -fr graphviz
-   ln -s ../graphviz/tcl graphviz
-}

Copied: graphviz/repos/extra-x86_64/PKGBUILD (from rev 331515, 
graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:06:20 UTC (rev 331516)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: kevin 
+# Contributor: John Proctor 
+
+pkgname=graphviz
+pkgver=2.40.1
+pkgrel=13
+pkgdesc='Graph visualization software'
+url='http://www.graphviz.org/'
+license=('EPL')
+arch=('x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl')
+makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python2' 'r' 'tk' 
'qt4' 'gtk2')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'python2: python bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt4: gvedit'
+'gtk2: gtk output plugin'
+'xterm: vimdot')
+
+# http://www.graphviz.org/Download_source.php
+source=("https://graphviz.gitlab.io/pub/graphviz/stable/SOURCES/graphviz.tar.gz;
+'ghostscript918.patch')
+sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
+'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../ghostscript918.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   export LIBPOSTFIX=/
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   # Deduplicates TCL libraries
+   cd "${pkgdir}/usr/lib/tcl8.6"
+   rm -fr graphviz
+   ln -s ../graphviz/tcl graphviz
+}

Deleted: ghostscript918.patch
===
--- ghostscript918.patch2018-08-14 16:05:31 UTC (rev 331515)
+++ ghostscript918.patch2018-08-14 16:06:20 UTC (rev 331516)
@@ -1,18 +0,0 @@
-diff -uprb graphviz-2.38.0.orig/plugin/gs/gvloadimage_gs.c 
graphviz-2.38.0/plugin/gs/gvloadimage_gs.c
 

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

2018-08-14 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 14, 2018 @ 16:05:28
  Author: foutrelis
Revision: 371601

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:05:23 UTC (rev 371600)
+++ PKGBUILD2018-08-14 16:05:28 UTC (rev 371601)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace 
-
-pkgname=lib32-flashplugin
-pkgver=30.0.0.134
-pkgrel=1
-license=('custom')
-pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
-url="https://get.adobe.com/flashplayer/;
-arch=('x86_64')
-depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
-#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
-options=(!strip)
-source=("flash_player_npapi_linux_$pkgver.i386.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.i386.tar.gz;)
-sha256sums=('2cce7fcbca9d742539ae5b5e22953cfcd42d7236770d410b819168e627702c04')
-
-package() {
-  install -Dm644 "$srcdir/libflashplayer.so" 
"$pkgdir/usr/lib32/mozilla/plugins/libflashplayer.so"
-  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/*.txt
-}

Copied: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 371600, 
lib32-flashplugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:05:28 UTC (rev 371601)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Daniel Wallace 
+
+pkgname=lib32-flashplugin
+pkgver=30.0.0.154
+pkgrel=1
+license=('custom')
+pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
+url="https://get.adobe.com/flashplayer/;
+arch=('x86_64')
+depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
+#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
+options=(!strip)
+source=("flash_player_npapi_linux_$pkgver.i386.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.i386.tar.gz;)
+sha256sums=('5d986d67db7a46ac92fbcd62d28ad6744b45039b78b6cdf62397b1544c3c8d66')
+
+package() {
+  install -Dm644 "$srcdir/libflashplayer.so" 
"$pkgdir/usr/lib32/mozilla/plugins/libflashplayer.so"
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/*.txt
+}


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:05:31
  Author: juergen
Revision: 331515

OCaml 4.07.0 rebuild

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:04:32 UTC (rev 331514)
+++ PKGBUILD2018-08-14 16:05:31 UTC (rev 331515)
@@ -5,7 +5,7 @@
 
 pkgname=graphviz
 pkgver=2.40.1
-pkgrel=12
+pkgrel=13
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('EPL')


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

2018-08-14 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 14, 2018 @ 16:05:23
  Author: foutrelis
Revision: 371600

upgpkg: lib32-flashplugin 30.0.0.154-1

New upstream release.

Modified:
  lib32-flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:03:13 UTC (rev 371599)
+++ PKGBUILD2018-08-14 16:05:23 UTC (rev 371600)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Wallace 
 
 pkgname=lib32-flashplugin
-pkgver=30.0.0.134
+pkgver=30.0.0.154
 pkgrel=1
 license=('custom')
 pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
@@ -12,7 +12,7 @@
 #optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
 options=(!strip)
 
source=("flash_player_npapi_linux_$pkgver.i386.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.i386.tar.gz;)
-sha256sums=('2cce7fcbca9d742539ae5b5e22953cfcd42d7236770d410b819168e627702c04')
+sha256sums=('5d986d67db7a46ac92fbcd62d28ad6744b45039b78b6cdf62397b1544c3c8d66')
 
 package() {
   install -Dm644 "$srcdir/libflashplayer.so" 
"$pkgdir/usr/lib32/mozilla/plugins/libflashplayer.so"


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

2018-08-14 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 14, 2018 @ 16:04:25
  Author: foutrelis
Revision: 331513

upgpkg: flashplugin 30.0.0.154-1

New upstream release.

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:02:31 UTC (rev 331512)
+++ PKGBUILD2018-08-14 16:04:25 UTC (rev 331513)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=(flashplugin pepper-flash)
-pkgver=30.0.0.134
+pkgver=30.0.0.154
 pkgrel=1
 pkgdesc="Adobe Flash Player"
 arch=('x86_64')
@@ -14,8 +14,8 @@
 
source=(flash_player_npapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.x86_64.tar.gz
 
flash_player_ppapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_ppapi_linux.x86_64.tar.gz)
 noextract=(${source[@]%::*})
-sha256sums=('dcd7f22d0891803e347d4ffa017ea9cab590bcc7e5b60309e33b7fe254c9610c'
-'c837371f4d7cfbe3c3996757d977eeb8beb25ac63786feedc7895b3954bae906')
+sha256sums=('04f1323404dd9a9d86807dfee0290877709fea043b9c8483cd653284fc7fd70f'
+'b7a74ac30996cb6a7c862559c257df6e0c3037ca1960d585eb1cb94858df20a5')
 
 prepare() {
   local _dir


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

2018-08-14 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 14, 2018 @ 16:04:32
  Author: foutrelis
Revision: 331514

archrelease: copy trunk to extra-x86_64

Added:
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 331513, flashplugin/trunk/PKGBUILD)
Deleted:
  flashplugin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:04:25 UTC (rev 331513)
+++ PKGBUILD2018-08-14 16:04:32 UTC (rev 331514)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Andrea Scarpino 
-
-pkgname=(flashplugin pepper-flash)
-pkgver=30.0.0.134
-pkgrel=1
-pkgdesc="Adobe Flash Player"
-arch=('x86_64')
-url="https://get.adobe.com/flashplayer/;
-license=('custom' 'LGPL')
-options=('!strip')
-source=(flash_player_npapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.x86_64.tar.gz
-
flash_player_ppapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_ppapi_linux.x86_64.tar.gz)
-noextract=(${source[@]%::*})
-sha256sums=('dcd7f22d0891803e347d4ffa017ea9cab590bcc7e5b60309e33b7fe254c9610c'
-'c837371f4d7cfbe3c3996757d977eeb8beb25ac63786feedc7895b3954bae906')
-
-prepare() {
-  local _dir
-  for f in *.tar.gz; do
-_dir=$(grep -Eo '([np]papi)' <<< $f)
-mkdir -p $_dir
-tar xfC $f $_dir
-  done
-}
-
-package_flashplugin() {
-  pkgdesc+=" NPAPI"
-  depends=('libxt' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme')
-  optdepends=('libvdpau: GPU acceleration on Nvidia cards')
-
-  cd npapi
-  install -Dm644 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"
-  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/notice.txt
-
-  install -D -t "$pkgdir/usr/bin" usr/bin/flash-player-properties
-  cp -a usr/share/{applications,icons} "$pkgdir/usr/share/"
-
-}
-
-package_pepper-flash() {
-  pkgdesc+=" PPAPI"
-  depends=('gcc-libs')
-  optdepends=('flashplugin: settings utility')
-
-  cd ppapi
-  install -Dm644 -t "$pkgdir/usr/lib/PepperFlash" manifest.json 
libpepflashplayer.so
-  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/notice.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: flashplugin/repos/extra-x86_64/PKGBUILD (from rev 331513, 
flashplugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:04:32 UTC (rev 331514)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+
+pkgname=(flashplugin pepper-flash)
+pkgver=30.0.0.154
+pkgrel=1
+pkgdesc="Adobe Flash Player"
+arch=('x86_64')
+url="https://get.adobe.com/flashplayer/;
+license=('custom' 'LGPL')
+options=('!strip')
+source=(flash_player_npapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_npapi_linux.x86_64.tar.gz
+
flash_player_ppapi_linux_$pkgver.x86_64.tar.gz::https://fpdownload.adobe.com/get/flashplayer/pdc/$pkgver/flash_player_ppapi_linux.x86_64.tar.gz)
+noextract=(${source[@]%::*})
+sha256sums=('04f1323404dd9a9d86807dfee0290877709fea043b9c8483cd653284fc7fd70f'
+'b7a74ac30996cb6a7c862559c257df6e0c3037ca1960d585eb1cb94858df20a5')
+
+prepare() {
+  local _dir
+  for f in *.tar.gz; do
+_dir=$(grep -Eo '([np]papi)' <<< $f)
+mkdir -p $_dir
+tar xfC $f $_dir
+  done
+}
+
+package_flashplugin() {
+  pkgdesc+=" NPAPI"
+  depends=('libxt' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme')
+  optdepends=('libvdpau: GPU acceleration on Nvidia cards')
+
+  cd npapi
+  install -Dm644 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/notice.txt
+
+  install -D -t "$pkgdir/usr/bin" usr/bin/flash-player-properties
+  cp -a usr/share/{applications,icons} "$pkgdir/usr/share/"
+
+}
+
+package_pepper-flash() {
+  pkgdesc+=" PPAPI"
+  depends=('gcc-libs')
+  optdepends=('flashplugin: settings utility')
+
+  cd ppapi
+  install -Dm644 -t "$pkgdir/usr/lib/PepperFlash" manifest.json 
libpepflashplayer.so
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.pdf 
LGPL/notice.txt
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:03:13
  Author: juergen
Revision: 371599

archrelease: copy trunk to community-x86_64

Added:
  coq/repos/community-x86_64/PKGBUILD
(from rev 371598, coq/trunk/PKGBUILD)
Deleted:
  coq/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  190 ++---
 1 file changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:02:00 UTC (rev 371598)
+++ PKGBUILD2018-08-14 16:03:13 UTC (rev 371599)
@@ -1,95 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: acieroid
-# Contributor: spider-mario 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: George Giorgidze 
-# Contributor: William J. Bowman 
-
-pkgname=('coq' 'coqide' 'coq-doc')
-pkgver=8.8.1
-pkgrel=2
-pkgdesc='Formal proof management system'
-arch=('x86_64')
-url='https://coq.inria.fr/'
-license=('GPL')
-groups=('coq')
-options=('!emptydirs')
-depends=('ocaml' 'camlp5' 'ocaml-num' 'gtk2' 'gtksourceview2')
-makedepends=('ocaml-findlib'
- 'lablgtk2' 'gendesk' # coqide
- 'texlive-bin' 'texlive-latexextra' 'texlive-pictures' # coq-doc
- 'texlive-fontsextra' 'texlive-science'
- 'fig2dev' 'imagemagick' 'hevea' 'ghostscript'
- 'python' 'python-sphinx' 'python-sphinx_rtd_theme' 
'python-pexpect'
- 'python-beautifulsoup4' 'python-sphinxcontrib-bibtex' 
'python-antlr4')
-source=("coq-${pkgver}.tar.gz::https://github.com/coq/coq/archive/V${pkgver}.tar.gz;)
-sha512sums=('706fdc196ca4b8f27dae834426d926cd7d2c8b215af8cbb2653a0bda088068ed9f492cf8f11d123a1f2166b26f86e91a84765e53beb20172dc530f6dd796d8d4')
-
-prepare() {
-  gendesk -f -n --pkgname "coqide" \
---name "CoqIDE Proof Assistant" \
---pkgdesc "Graphical interface for the Coq proof assistant" \
---categories "Development;Science;Math;IDE;GTK"
-  cd "$srcdir/coq-$pkgver"
-}
-
-build() {
-  cd "$srcdir/coq-$pkgver"
-
-  ./configure \
--prefix '/usr' \
--mandir '/usr/share/man' \
--configdir '/etc/xdg/coq/' \
--coqide opt \
--with-doc yes
-
-  make world
-}
-
-package_coq() {
-  depends=('ocaml' 'camlp5')
-  optdepends=('coqide: graphical Coq IDE'
-  'coq-doc: offline documentation'
-  'coin-or-csdp: for psatz plugin')
-  # coq-nox was the old name for coq without coqide
-  replaces=('coq-nox')
-  conflicts=('coq-nox')
-
-  cd "$srcdir/coq-$pkgver"
-
-  # The second target is needed to install coqidetop.cmxs (needed for some
-  # frontend other than coqide, for instance coquille)
-  make COQINSTALLPREFIX="$pkgdir" install-coq install-ide-toploop install-meta
-  rm -f "${pkgdir}/usr/share/man/man1/coqide.1"
-  # Workaround for FS#58203
-  mkdir -p "$pkgdir/usr/lib/ocaml/"
-  ln -s /usr/lib/coq "$pkgdir/usr/lib/ocaml/coq"
-}
-
-package_coqide() {
-  pkgdesc="GTK-based graphical interface for the Coq proof assistant"
-  depends=('coq' 'ocaml' 'camlp5' 'gtk2' 'gtksourceview2')
-
-  cd "$srcdir/coq-$pkgver"
-
-  make COQINSTALLPREFIX="$pkgdir" install-coqide
-  install -D -m 644 -t "${pkgdir}/usr/share/man/man1/" man/coqide.1
-
-  # Remove toploop files installed by "install-ide-toploop" in the main package
-  rm -f "${pkgdir}/usr/lib/coq/toploop"/coqidetop.{cma,cmxs}
-  # In coq 8.7 this file is installed both by install-coq and install-coqide, 
remove the duplicate.
-  rm -f "${pkgdir}/usr/lib/coq/vernac/topfmt.cmi"
-
-  # Desktop file generated by gendesk
-  install -D -m 644 "${srcdir}/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -D -m 644 ide/coq.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-}
-
-package_coq-doc() {
-  pkgdesc="HTML and PDF documentation for the Coq proof assistant"
-  depends=()
-
-  cd "$srcdir/coq-$pkgver"
-
-  make COQINSTALLPREFIX="$pkgdir" install-doc
-}

Copied: coq/repos/community-x86_64/PKGBUILD (from rev 371598, 
coq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:03:13 UTC (rev 371599)
@@ -0,0 +1,95 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: acieroid
+# Contributor: spider-mario 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: George Giorgidze 
+# Contributor: William J. Bowman 
+
+pkgname=('coq' 'coqide' 'coq-doc')
+pkgver=8.8.1
+pkgrel=3
+pkgdesc='Formal proof management system'
+arch=('x86_64')
+url='https://coq.inria.fr/'
+license=('GPL')
+groups=('coq')
+options=('!emptydirs')
+depends=('ocaml' 'camlp5' 'ocaml-num' 'gtk2' 'gtksourceview2')
+makedepends=('ocaml-findlib'
+ 'lablgtk2' 'gendesk' # coqide
+ 'texlive-bin' 'texlive-latexextra' 'texlive-pictures' # coq-doc
+ 'texlive-fontsextra' 'texlive-science'
+ 'fig2dev' 'imagemagick' 'hevea' 'ghostscript'
+ 'python' 'python-sphinx' 

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

2018-08-14 Thread Pierre Schmitz via arch-commits
Date: Tuesday, August 14, 2018 @ 16:02:21
  Author: pierre
Revision: 331511

upgpkg: openssl 1.1.0.i-1

Modified:
  openssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:57:33 UTC (rev 331510)
+++ PKGBUILD2018-08-14 16:02:21 UTC (rev 331511)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=openssl
-_ver=1.1.0h
+_ver=1.1.0i
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
@@ -17,7 +17,7 @@
 source=("https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz;
 "https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz.asc;
 'ca-dir.patch')
-sha256sums=('5835626cde9e99656585fc7aaa2302a73a7e1340bf8c14fd635a62c66802a517'
+sha256sums=('ebbfc844a8c8cc0ea5dc10b86c9ce97f401837f3fa08c17b2cdadc118253cf99'
 'SKIP'
 '90c7411fed0157116f2df8f4be755aaf5a26e8484351b4e6a79492805d5f2790')
 validpgpkeys=('8657ABB260F056B1E5190839D9C4D26D0E604491')


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

2018-08-14 Thread Pierre Schmitz via arch-commits
Date: Tuesday, August 14, 2018 @ 16:02:31
  Author: pierre
Revision: 331512

archrelease: copy trunk to testing-x86_64

Added:
  openssl/repos/testing-x86_64/
  openssl/repos/testing-x86_64/PKGBUILD
(from rev 331511, openssl/trunk/PKGBUILD)
  openssl/repos/testing-x86_64/ca-dir.patch
(from rev 331511, openssl/trunk/ca-dir.patch)

--+
 PKGBUILD |   66 +
 ca-dir.patch |   31 ++
 2 files changed, 97 insertions(+)

Copied: openssl/repos/testing-x86_64/PKGBUILD (from rev 331511, 
openssl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-08-14 16:02:31 UTC (rev 331512)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=openssl
+_ver=1.1.0i
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('perl')
+optdepends=('ca-certificates')
+backup=('etc/ssl/openssl.cnf')
+source=("https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz;
+"https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz.asc;
+'ca-dir.patch')
+sha256sums=('ebbfc844a8c8cc0ea5dc10b86c9ce97f401837f3fa08c17b2cdadc118253cf99'
+'SKIP'
+'90c7411fed0157116f2df8f4be755aaf5a26e8484351b4e6a79492805d5f2790')
+validpgpkeys=('8657ABB260F056B1E5190839D9C4D26D0E604491')
+
+prepare() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i "$srcdir/ca-dir.patch"
+}
+
+build() {
+   cd "$srcdir/$pkgname-$_ver"
+
+   if [ "${CARCH}" == 'x86_64' ]; then
+   openssltarget='linux-x86_64'
+   optflags='enable-ec_nistp_64_gcc_128'
+   elif [ "${CARCH}" == 'i686' ]; then
+   openssltarget='linux-elf'
+   optflags=''
+   fi
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
+   shared no-ssl3-method ${optflags} \
+   "${openssltarget}" \
+   "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+
+   make depend
+   make
+}
+
+check() {
+   cd "$srcdir/$pkgname-$_ver"
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i "$srcdir/ca-dir.patch"
+   make test
+   patch -p0 -i "$srcdir/ca-dir.patch"
+}
+
+package() {
+   cd "$srcdir/$pkgname-$_ver"
+   make DESTDIR=$pkgdir MANDIR=/usr/share/man MANSUFFIX=ssl install_sw 
install_ssldirs install_man_docs
+   install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openssl/repos/testing-x86_64/ca-dir.patch (from rev 331511, 
openssl/trunk/ca-dir.patch)
===
--- testing-x86_64/ca-dir.patch (rev 0)
+++ testing-x86_64/ca-dir.patch 2018-08-14 16:02:31 UTC (rev 331512)
@@ -0,0 +1,31 @@
+--- apps/CA.pl.in  2016-09-26 11:46:04.0 +0200
 apps/CA.pl.in  2016-11-01 16:02:16.709616823 +0100
+@@ -33,7 +33,7 @@
+ my $PKCS12 = "$openssl pkcs12";
+ 
+ # default openssl.cnf file has setup as per the following
+-my $CATOP = "./demoCA";
++my $CATOP = "/etc/ssl";
+ my $CAKEY = "cakey.pem";
+ my $CAREQ = "careq.pem";
+ my $CACERT = "cacert.pem";
+--- apps/openssl.cnf   2016-09-26 11:46:04.0 +0200
 apps/openssl.cnf   2016-11-01 16:02:48.378503427 +0100
+@@ -39,7 +39,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl  # Where everything is kept
+ certs = $dir/certs# Where the issued certs are kept
+ crl_dir   = $dir/crl  # Where the issued crl are kept
+ database  = $dir/index.txt# database index file.
+@@ -323,7 +323,7 @@
+ [ tsa_config1 ]
+ 
+ # These are used by the TSA reply generation only.
+-dir   = ./demoCA  # TSA root directory
++dir   = /etc/ssl  # TSA root directory
+ serial= $dir/tsaserial# The current serial number 
(mandatory)
+ crypto_device = builtin   # OpenSSL engine to use for signing
+ signer_cert   = $dir/tsacert.pem  # The TSA signing certificate


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:02:00
  Author: juergen
Revision: 371598

OCaml 4.07.0 rebuild

Modified:
  coq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 16:01:18 UTC (rev 371597)
+++ PKGBUILD2018-08-14 16:02:00 UTC (rev 371598)
@@ -7,7 +7,7 @@
 
 pkgname=('coq' 'coqide' 'coq-doc')
 pkgver=8.8.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Formal proof management system'
 arch=('x86_64')
 url='https://coq.inria.fr/'


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:01:18
  Author: juergen
Revision: 371597

archrelease: copy trunk to community-x86_64

Added:
  camlp5/repos/community-x86_64/PKGBUILD
(from rev 371596, camlp5/trunk/PKGBUILD)
Deleted:
  camlp5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 16:00:30 UTC (rev 371596)
+++ PKGBUILD2018-08-14 16:01:18 UTC (rev 371597)
@@ -1,43 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: Matej Grabovsky 
-# Contributor: Kohei Suzuki 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Nathan Owe 
-# Contributor: George Giorgidze 
-# Contributor: Massimiliano Brocchini 
-# Contributor: Tej Chajed 
-
-pkgname=camlp5
-pkgver=7.06
-_relname=rel706
-pkgrel=1
-arch=('x86_64')
-pkgdesc='A preprocessor-pretty-printer of OCaml.'
-url='https://camlp5.github.io/'
-license=('BSD')
-depends=('ocaml')
-makedepends=('ocaml-compiler-libs')
-source=("https://github.com/camlp5/camlp5/archive/$_relname.tar.gz;)
-options=('staticlibs')
-sha256sums=('bea3fba40305b6299a4a65a26f8e1f1caf844abec61588ff1c500e9c05047922')
-
-build() {
-  cd "${srcdir}/camlp5-${_relname}"
-
-  ./configure \
--prefix '/usr' \
--mandir '/usr/share/man' \
--strict
-
-  make world.opt
-}
-
-package() {
-  cd "${srcdir}/camlp5-${_relname}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 etc/META "${pkgdir}/usr/lib/ocaml/camlp5"
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/camlp5/LICENSE"
-}
-

Copied: camlp5/repos/community-x86_64/PKGBUILD (from rev 371596, 
camlp5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 16:01:18 UTC (rev 371597)
@@ -0,0 +1,43 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Matej Grabovsky 
+# Contributor: Kohei Suzuki 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Nathan Owe 
+# Contributor: George Giorgidze 
+# Contributor: Massimiliano Brocchini 
+# Contributor: Tej Chajed 
+
+pkgname=camlp5
+pkgver=7.06
+_relname=rel706
+pkgrel=2
+arch=('x86_64')
+pkgdesc='A preprocessor-pretty-printer of OCaml.'
+url='https://camlp5.github.io/'
+license=('BSD')
+depends=('ocaml')
+makedepends=('ocaml-compiler-libs')
+source=("https://github.com/camlp5/camlp5/archive/$_relname.tar.gz;)
+options=('staticlibs')
+sha256sums=('bea3fba40305b6299a4a65a26f8e1f1caf844abec61588ff1c500e9c05047922')
+
+build() {
+  cd "${srcdir}/camlp5-${_relname}"
+
+  ./configure \
+-prefix '/usr' \
+-mandir '/usr/share/man' \
+-strict
+
+  make world.opt
+}
+
+package() {
+  cd "${srcdir}/camlp5-${_relname}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 etc/META "${pkgdir}/usr/lib/ocaml/camlp5"
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/camlp5/LICENSE"
+}
+


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 16:00:30
  Author: juergen
Revision: 371596

OCaml 4.07.0 rebuild

Modified:
  camlp5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:59:10 UTC (rev 371595)
+++ PKGBUILD2018-08-14 16:00:30 UTC (rev 371596)
@@ -10,7 +10,7 @@
 pkgname=camlp5
 pkgver=7.06
 _relname=rel706
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 pkgdesc='A preprocessor-pretty-printer of OCaml.'
 url='https://camlp5.github.io/'


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:59:10
  Author: juergen
Revision: 371595

archrelease: copy trunk to community-x86_64

Added:
  ocaml-biniou/repos/community-x86_64/PKGBUILD
(from rev 371594, ocaml-biniou/trunk/PKGBUILD)
Deleted:
  ocaml-biniou/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:58:48 UTC (rev 371594)
+++ PKGBUILD2018-08-14 15:59:10 UTC (rev 371595)
@@ -1,39 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkgname=biniou
-pkgname=ocaml-${_pkgname}
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="An optimized parsing and printing library for JSON"
-arch=('x86_64')
-url="https://github.com/mjambon/${_pkgname};
-license=('BSD')
-options=('!strip' 'staticlibs')
-depends=('ocaml-easy-format')
-makedepends=('ocaml-findlib' 'dune' 'opam')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('d939a9d58660201738c3d22ad5b7976deb2917b22591a07525807bb741357d36')
-
-build() {
-cd ${_pkgname}-${pkgver}
-make all
-}
-
-check() {
-cd ${_pkgname}-${pkgver}
-make test
-}
-
-package() {
-cd ${_pkgname}-${pkgver}
-
-# Initialize OPAM
-export OPAMROOT="${srcdir}"/opam
-opam init -n
-
-# Work around missing install command
-OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)" jbuilder 
install
-
-# Install LICENSE
-install -Dm644 "${srcdir}"/opam/system/doc/${_pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: ocaml-biniou/repos/community-x86_64/PKGBUILD (from rev 371594, 
ocaml-biniou/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:59:10 UTC (rev 371595)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+
+_pkgname=biniou
+pkgname=ocaml-${_pkgname}
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="An optimized parsing and printing library for JSON"
+arch=('x86_64')
+url="https://github.com/mjambon/${_pkgname};
+license=('BSD')
+options=('!strip' 'staticlibs')
+depends=('ocaml-easy-format')
+makedepends=('ocaml-findlib' 'dune' 'opam')
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d939a9d58660201738c3d22ad5b7976deb2917b22591a07525807bb741357d36')
+
+build() {
+cd ${_pkgname}-${pkgver}
+make all
+}
+
+check() {
+cd ${_pkgname}-${pkgver}
+make test
+}
+
+package() {
+cd ${_pkgname}-${pkgver}
+
+# Initialize OPAM
+export OPAMROOT="${srcdir}"/opam
+opam init -n
+
+# Work around missing install command
+OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)" jbuilder 
install
+
+# Install LICENSE
+install -Dm644 "${srcdir}"/opam/system/doc/${_pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:58:48
  Author: juergen
Revision: 371594

OCaml 4.07.0 rebuild

Modified:
  ocaml-biniou/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:54:32 UTC (rev 371593)
+++ PKGBUILD2018-08-14 15:58:48 UTC (rev 371594)
@@ -3,7 +3,7 @@
 _pkgname=biniou
 pkgname=ocaml-${_pkgname}
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An optimized parsing and printing library for JSON"
 arch=('x86_64')
 url="https://github.com/mjambon/${_pkgname};


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:57:33
  Author: juergen
Revision: 331510

archrelease: copy trunk to extra-x86_64

Added:
  unison/repos/extra-x86_64/PKGBUILD
(from rev 331509, unison/trunk/PKGBUILD)
  unison/repos/extra-x86_64/desktop
(from rev 331509, unison/trunk/desktop)
  unison/repos/extra-x86_64/large.patch
(from rev 331509, unison/trunk/large.patch)
Deleted:
  unison/repos/extra-x86_64/PKGBUILD
  unison/repos/extra-x86_64/desktop
  unison/repos/extra-x86_64/large.patch

-+
 PKGBUILD|  106 +-
 desktop |   22 ++--
 large.patch |   98 ++---
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:56:46 UTC (rev 331509)
+++ PKGBUILD2018-08-14 15:57:33 UTC (rev 331510)
@@ -1,53 +0,0 @@
-# $Id$
-#Maintainer: Gaetan Bisson 
-#Contributor: Tobias Powalowski 
-
-pkgname=unison
-pkgver=2.51.2
-pkgrel=1
-pkgdesc='File-synchronization tool'
-#url='https://github.com/bcpierce00/unison/'
-url='https://www.cis.upenn.edu/~bcpierce/unison/'
-arch=('x86_64')
-license=('GPL2')
-optdepends=('gtk2: graphical interface')
-makedepends=('ocaml' 'emacs' 'lablgtk2')
-source=("https://github.com/bcpierce00/unison/archive/v${pkgver}.tar.gz;
-'large.patch'
-'desktop')
-sha256sums=('a2efcbeab651be6df69cc9b253011a07955ecb91fb407a219719451197849d5e'
-'2a971cf17e0a7303e99a793829e2b7b03533d17041e3b2ebba53555a5bd62284'
-'b497b1c23cceb8967e9c3f9a39720e3029d370304ae410795121224f96c234a3')
-
-options=('!makeflags')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/region_of_string/region_of_bytes/' -i src/uigtk2.ml
-   patch -p0 -i ../large.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   for ui in gtk2 text; do
-   cp -a . build || true
-   pushd build
-   export CFLAGS=
-   make all UISTYLE=$ui DEBUGGING=false THREADS=true
-   mv src/unison src/unison-$ui
-   mv src/unison-* ..
-   popd
-   rm -fr build
-   done
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   install -d "${pkgdir}"/usr/bin
-   install -m755 unison-* "${pkgdir}"/usr/bin
-   ln -s unison-text "${pkgdir}"/usr/bin/unison
-
-   install -d "${pkgdir}"/usr/share/{pixmaps,applications}
-   install -m644 icons/U.32x32x16m.png 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-   install -m644 ../desktop 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-}

Copied: unison/repos/extra-x86_64/PKGBUILD (from rev 331509, 
unison/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:57:33 UTC (rev 331510)
@@ -0,0 +1,53 @@
+# $Id$
+#Maintainer: Gaetan Bisson 
+#Contributor: Tobias Powalowski 
+
+pkgname=unison
+pkgver=2.51.2
+pkgrel=2
+pkgdesc='File-synchronization tool'
+#url='https://github.com/bcpierce00/unison/'
+url='https://www.cis.upenn.edu/~bcpierce/unison/'
+arch=('x86_64')
+license=('GPL2')
+optdepends=('gtk2: graphical interface')
+makedepends=('ocaml' 'emacs' 'lablgtk2')
+source=("https://github.com/bcpierce00/unison/archive/v${pkgver}.tar.gz;
+'large.patch'
+'desktop')
+sha256sums=('a2efcbeab651be6df69cc9b253011a07955ecb91fb407a219719451197849d5e'
+'2a971cf17e0a7303e99a793829e2b7b03533d17041e3b2ebba53555a5bd62284'
+'b497b1c23cceb8967e9c3f9a39720e3029d370304ae410795121224f96c234a3')
+
+options=('!makeflags')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/region_of_string/region_of_bytes/' -i src/uigtk2.ml
+   patch -p0 -i ../large.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   for ui in gtk2 text; do
+   cp -a . build || true
+   pushd build
+   export CFLAGS=
+   make all UISTYLE=$ui DEBUGGING=false THREADS=true
+   mv src/unison src/unison-$ui
+   mv src/unison-* ..
+   popd
+   rm -fr build
+   done
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   install -d "${pkgdir}"/usr/bin
+   install -m755 unison-* "${pkgdir}"/usr/bin
+   ln -s unison-text "${pkgdir}"/usr/bin/unison
+
+   install -d "${pkgdir}"/usr/share/{pixmaps,applications}
+   install -m644 icons/U.32x32x16m.png 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+   install -m644 ../desktop 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+}

Deleted: desktop
===
--- desktop 2018-08-14 15:56:46 UTC (rev 331509)
+++ desktop 2018-08-14 15:57:33 UTC (rev 331510)
@@ -1,11 +0,0 @@
-[Desktop Entry]

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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:56:46
  Author: juergen
Revision: 331509

OCaml 4.07.0 rebuild

Modified:
  unison/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:55:02 UTC (rev 331508)
+++ PKGBUILD2018-08-14 15:56:46 UTC (rev 331509)
@@ -4,7 +4,7 @@
 
 pkgname=unison
 pkgver=2.51.2
-pkgrel=1
+pkgrel=2
 pkgdesc='File-synchronization tool'
 #url='https://github.com/bcpierce00/unison/'
 url='https://www.cis.upenn.edu/~bcpierce/unison/'


[arch-commits] Commit in llvm/repos/extra-x86_64 (10 files)

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:55:02
  Author: juergen
Revision: 331508

archrelease: copy trunk to extra-x86_64

Added:
  
llvm/repos/extra-x86_64/D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch
(from rev 331507, 
llvm/trunk/D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch)
  llvm/repos/extra-x86_64/D44420-cmake-fix-a-typo-in-llvm_config-macro.patch
(from rev 331507, 
llvm/trunk/D44420-cmake-fix-a-typo-in-llvm_config-macro.patch)
  
llvm/repos/extra-x86_64/D50416-cmake-Prevent-LLVMgold.so-from-being-unloaded-on-Lin.patch
(from rev 331507, 
llvm/trunk/D50416-cmake-Prevent-LLVMgold.so-from-being-unloaded-on-Lin.patch)
  llvm/repos/extra-x86_64/PKGBUILD
(from rev 331507, llvm/trunk/PKGBUILD)
  llvm/repos/extra-x86_64/llvm-config.h
(from rev 331507, llvm/trunk/llvm-config.h)
Deleted:
  
llvm/repos/extra-x86_64/D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch
  llvm/repos/extra-x86_64/D44420-cmake-fix-a-typo-in-llvm_config-macro.patch
  
llvm/repos/extra-x86_64/D50416-cmake-Prevent-LLVMgold.so-from-being-unloaded-on-Lin.patch
  llvm/repos/extra-x86_64/PKGBUILD
  llvm/repos/extra-x86_64/llvm-config.h

---+
 D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch |   72 +-
 D44420-cmake-fix-a-typo-in-llvm_config-macro.patch|   26 
 D50416-cmake-Prevent-LLVMgold.so-from-being-unloaded-on-Lin.patch |   56 +-
 PKGBUILD  |  276 
+-
 llvm-config.h |   18 
 5 files changed, 224 insertions(+), 224 deletions(-)

Deleted: D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch
===
--- D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch   
2018-08-14 15:54:00 UTC (rev 331507)
+++ D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch   
2018-08-14 15:55:02 UTC (rev 331508)
@@ -1,36 +0,0 @@
-From 4d613a84ce271c6225068bef67d727ae02b2e3b1 Mon Sep 17 00:00:00 2001
-From: Pavel Labath 
-Date: Wed, 14 Mar 2018 09:28:38 +
-Subject: [PATCH] Export LLVM_DYLIB_COMPONENTS in LLVMConfig.cmake
-
-Summary:
-This is needed so that external projects (e.g. a standalone build of
-lldb) can link to the LLVM shared library via the USE_SHARED argument of
-llvm_config. Without this, llvm_config would add LLVM to the link list,
-but then also add the constituent static libraries, resulting in
-multiply defined symbols.
-
-Reviewers: beanz, mgorny
-
-Subscribers: llvm-commits
-
-Differential Revision: https://reviews.llvm.org/D44391
-
-git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327484 
91177308-0d34-0410-b5e6-96231b3b80d8

- cmake/modules/LLVMConfig.cmake.in | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/cmake/modules/LLVMConfig.cmake.in 
b/cmake/modules/LLVMConfig.cmake.in
-index fe4df5278498..e70018679846 100644
 a/cmake/modules/LLVMConfig.cmake.in
-+++ b/cmake/modules/LLVMConfig.cmake.in
-@@ -13,6 +13,8 @@ set(LLVM_COMMON_DEPENDS @LLVM_COMMON_DEPENDS@)
- 
- set(LLVM_AVAILABLE_LIBS @LLVM_AVAILABLE_LIBS@)
- 
-+set(LLVM_DYLIB_COMPONENTS @LLVM_DYLIB_COMPONENTS@)
-+
- set(LLVM_ALL_TARGETS @LLVM_ALL_TARGETS@)
- 
- set(LLVM_TARGETS_TO_BUILD @LLVM_TARGETS_TO_BUILD@)

Copied: 
llvm/repos/extra-x86_64/D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch
 (from rev 331507, 
llvm/trunk/D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch)
===
--- D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch   
(rev 0)
+++ D44391-export-LLVM_DYLIB_COMPONENTS-in-LLVMConfig.cmake.patch   
2018-08-14 15:55:02 UTC (rev 331508)
@@ -0,0 +1,36 @@
+From 4d613a84ce271c6225068bef67d727ae02b2e3b1 Mon Sep 17 00:00:00 2001
+From: Pavel Labath 
+Date: Wed, 14 Mar 2018 09:28:38 +
+Subject: [PATCH] Export LLVM_DYLIB_COMPONENTS in LLVMConfig.cmake
+
+Summary:
+This is needed so that external projects (e.g. a standalone build of
+lldb) can link to the LLVM shared library via the USE_SHARED argument of
+llvm_config. Without this, llvm_config would add LLVM to the link list,
+but then also add the constituent static libraries, resulting in
+multiply defined symbols.
+
+Reviewers: beanz, mgorny
+
+Subscribers: llvm-commits
+
+Differential Revision: https://reviews.llvm.org/D44391
+
+git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327484 
91177308-0d34-0410-b5e6-96231b3b80d8
+---
+ cmake/modules/LLVMConfig.cmake.in | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/cmake/modules/LLVMConfig.cmake.in 
b/cmake/modules/LLVMConfig.cmake.in
+index fe4df5278498..e70018679846 100644
+--- a/cmake/modules/LLVMConfig.cmake.in
 b/cmake/modules/LLVMConfig.cmake.in
+@@ -13,6 +13,8 @@ set(LLVM_COMMON_DEPENDS @LLVM_COMMON_DEPENDS@)
+ 
+ 

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

2018-08-14 Thread Bruno Pagani via arch-commits
Date: Tuesday, August 14, 2018 @ 15:54:32
  Author: archange
Revision: 371593

archrelease: copy trunk to community-x86_64

Added:
  fwupd/repos/community-x86_64/PKGBUILD
(from rev 371592, fwupd/trunk/PKGBUILD)
Deleted:
  fwupd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:54:17 UTC (rev 371592)
+++ PKGBUILD2018-08-14 15:54:32 UTC (rev 371593)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Bruno Pagani 
-# Contributor: Mirco Tischler 
-
-pkgname=fwupd
-pkgver=1.1.0
-pkgrel=1
-pkgdesc='A simple daemon to allow session software to update firmware'
-arch=('x86_64')
-url='https://github.com/hughsie/fwupd'
-license=('LGPL')
-depends=('appstream-glib' 'efivar' 'python' 'libsmbios')
-makedepends=('meson' 'valgrind' 'gtk-doc' 'help2man' 'bash-completion' 
'python-pillow' 'gobject-introspection'
- 'python-cairo' 'ttf-dejavu' 'adobe-source-han-sans-cn-fonts' 
'python-gobject' 'vala' 'gnu-efi-libs')
-checkdepends=('umockdev')
-backup=('etc/fwupd/daemon.conf' 'etc/fwupd/uefi.conf')
-source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('cd1321195f04779b5d2dd8b55b42cab38c388c2653f1db5aeff17507d6bf8e3a' 
'SKIP')
-validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes 

-
-build() {
-cd ${pkgname}-${pkgver}
-arch-meson -D b_lto=false ../build
-ninja -v -C ../build
-}
-
-check() {
-cd build
-meson test
-}
-
-package() {
-DESTDIR="${pkgdir}" ninja -C build install
-# Fixup mode to match polkit
-install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
-# Remove the tests
-rm -r ${pkgdir}/usr/share/installed-tests/
-}

Copied: fwupd/repos/community-x86_64/PKGBUILD (from rev 371592, 
fwupd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:54:32 UTC (rev 371593)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Bruno Pagani 
+# Contributor: Mirco Tischler 
+
+pkgname=fwupd
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='A simple daemon to allow session software to update firmware'
+arch=('x86_64')
+url='https://github.com/hughsie/fwupd'
+license=('LGPL')
+depends=('appstream-glib' 'efivar' 'python' 'libsmbios')
+makedepends=('meson' 'valgrind' 'gtk-doc' 'help2man' 'bash-completion' 
'python-pillow' 'gobject-introspection'
+ 'python-cairo' 'ttf-dejavu' 'adobe-source-han-sans-cn-fonts' 
'python-gobject' 'vala' 'gnu-efi-libs')
+checkdepends=('umockdev')
+backup=('etc/fwupd/daemon.conf' 'etc/fwupd/uefi.conf')
+source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('1a8126176dffe3909bd0a52822ce7557f58b64b980ac1dc7de885e73ad9bea6b' 
'SKIP')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes 

+
+build() {
+cd ${pkgname}-${pkgver}
+arch-meson -D b_lto=false ../build
+ninja -v -C ../build
+}
+
+check() {
+cd build
+meson test
+}
+
+package() {
+DESTDIR="${pkgdir}" ninja -C build install
+# Fixup mode to match polkit
+install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
+# Remove the tests
+rm -r ${pkgdir}/usr/share/installed-tests/
+}


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

2018-08-14 Thread Bruno Pagani via arch-commits
Date: Tuesday, August 14, 2018 @ 15:54:17
  Author: archange
Revision: 371592

upgpkg: fwupd 1.1.1-1

Modified:
  fwupd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:51:02 UTC (rev 371591)
+++ PKGBUILD2018-08-14 15:54:17 UTC (rev 371592)
@@ -3,7 +3,7 @@
 # Contributor: Mirco Tischler 
 
 pkgname=fwupd
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc='A simple daemon to allow session software to update firmware'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 checkdepends=('umockdev')
 backup=('etc/fwupd/daemon.conf' 'etc/fwupd/uefi.conf')
 
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=('cd1321195f04779b5d2dd8b55b42cab38c388c2653f1db5aeff17507d6bf8e3a' 
'SKIP')
+sha256sums=('1a8126176dffe3909bd0a52822ce7557f58b64b980ac1dc7de885e73ad9bea6b' 
'SKIP')
 validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes 

 
 build() {


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:54:00
  Author: juergen
Revision: 331507

OCaml 4.07.0 rebuild

Modified:
  llvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:53:02 UTC (rev 331506)
+++ PKGBUILD2018-08-14 15:54:00 UTC (rev 331507)
@@ -4,8 +4,8 @@
 
 pkgname=('llvm' 'llvm-libs' 'llvm-ocaml')
 pkgver=6.0.1
-pkgrel=3
-_ocaml_ver=4.06.0
+pkgrel=4
+_ocaml_ver=4.07.0
 arch=('x86_64')
 url="https://llvm.org/;
 license=('custom:University of Illinois/NCSA Open Source License')


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:53:02
  Author: juergen
Revision: 331506

archrelease: copy trunk to extra-x86_64

Added:
  lablgtk2/repos/extra-x86_64/PKGBUILD
(from rev 331505, lablgtk2/trunk/PKGBUILD)
Deleted:
  lablgtk2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:52:27 UTC (rev 331505)
+++ PKGBUILD2018-08-14 15:53:02 UTC (rev 331506)
@@ -1,36 +0,0 @@
-# $Id$
-#Maintainer: Juergen Hoetzel 
-
-pkgname=lablgtk2
-pkgver=2.18.6
-pkgrel=1
-pkgdesc="An Objective Caml interface to gtk2"
-arch=(x86_64)
-license=('LGPL')
-url="http://lablgtk.forge.ocamlcore.org/;
-depends=('gtk2' 'librsvg' 'gtksourceview2')
-makedepends=('ocaml>=4.0.6' 'camlp4>=4.06')
-optdepends=('ocaml: for using the tools')
-DLAGENTS=('https::/usr/bin/curl -fLC - --insecure --retry 3 --retry-delay 3 -o 
%o %u')
-source=("https://forge.ocamlcore.org/frs/download.php/1726/lablgtk-2.18.6.tar.gz;)
-md5sums=('30e9eef159eb88db0dce2438a60a6402')
-options=(!makeflags staticlibs)
-
-build() {
-  cd "${srcdir}/lablgtk-${pkgver}"
-  ./configure --prefix=/usr \
---without-glade \
---without-gnomeui \
---without-gnomecanvas \
---without-panel \
---without-gtkspell \
---without-gtksourceview
-  make world
-  make opt
-}
-
-package() {
-  cd "${srcdir}/lablgtk-${pkgver}"
-  make DESTDIR=${pkgdir} old-install
-  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
-}

Copied: lablgtk2/repos/extra-x86_64/PKGBUILD (from rev 331505, 
lablgtk2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:53:02 UTC (rev 331506)
@@ -0,0 +1,36 @@
+# $Id$
+#Maintainer: Juergen Hoetzel 
+
+pkgname=lablgtk2
+pkgver=2.18.6
+pkgrel=2
+pkgdesc="An Objective Caml interface to gtk2"
+arch=(x86_64)
+license=('LGPL')
+url="http://lablgtk.forge.ocamlcore.org/;
+depends=('gtk2' 'librsvg' 'gtksourceview2')
+makedepends=('ocaml-compiler-libs>=4.0.7' 'camlp4>=4.07')
+optdepends=('ocaml: for using the tools')
+DLAGENTS=('https::/usr/bin/curl -fLC - --insecure --retry 3 --retry-delay 3 -o 
%o %u')
+source=("https://forge.ocamlcore.org/frs/download.php/1726/lablgtk-2.18.6.tar.gz;)
+md5sums=('30e9eef159eb88db0dce2438a60a6402')
+options=(!makeflags staticlibs)
+
+build() {
+  cd "${srcdir}/lablgtk-${pkgver}"
+  ./configure --prefix=/usr \
+--without-glade \
+--without-gnomeui \
+--without-gnomecanvas \
+--without-panel \
+--without-gtkspell \
+--without-gtksourceview
+  make world
+  make opt
+}
+
+package() {
+  cd "${srcdir}/lablgtk-${pkgver}"
+  make DESTDIR=${pkgdir} old-install
+  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
+}


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:52:27
  Author: juergen
Revision: 331505

OCaml 4.07.0 rebuild

Modified:
  lablgtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:48:07 UTC (rev 331504)
+++ PKGBUILD2018-08-14 15:52:27 UTC (rev 331505)
@@ -3,13 +3,13 @@
 
 pkgname=lablgtk2
 pkgver=2.18.6
-pkgrel=1
+pkgrel=2
 pkgdesc="An Objective Caml interface to gtk2"
 arch=(x86_64)
 license=('LGPL')
 url="http://lablgtk.forge.ocamlcore.org/;
 depends=('gtk2' 'librsvg' 'gtksourceview2')
-makedepends=('ocaml-compiler-libs>=4.0.6' 'camlp4>=4.06')
+makedepends=('ocaml-compiler-libs>=4.0.7' 'camlp4>=4.07')
 optdepends=('ocaml: for using the tools')
 DLAGENTS=('https::/usr/bin/curl -fLC - --insecure --retry 3 --retry-delay 3 -o 
%o %u')
 
source=("https://forge.ocamlcore.org/frs/download.php/1726/lablgtk-2.18.6.tar.gz;)


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:51:02
  Author: juergen
Revision: 371591

archrelease: copy trunk to community-x86_64

Added:
  camlp4/repos/community-x86_64/PKGBUILD
(from rev 371590, camlp4/trunk/PKGBUILD)
Deleted:
  camlp4/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:50:05 UTC (rev 371590)
+++ PKGBUILD2018-08-14 15:51:02 UTC (rev 371591)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Tobias Powalowski 
-
-pkgname=camlp4
-pkgver=4.06
-pkgrel=1
-pkgdesc='Caml preprocessor and pretty-printer'
-arch=('x86_64')
-license=('GPL2')
-url='https://github.com/ocaml/camlp4/releases'
-depends=('ocaml>=4.06.0')
-makedepends=('git' 'ocamlbuild' 'ocaml-compiler-libs')
-options=('!makeflags' '!emptydirs' 'staticlibs')
-source=("git://github.com/ocaml/camlp4#branch=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  ./configure
-  make all camlp4/META
-}
-
-package() {
-  make -C "$pkgname" \
-BINDIR="$pkgdir/usr/bin" \
-LIBDIR="$pkgdir/usr/lib/ocaml" \
-PKGDIR="$pkgdir/usr/lib/ocaml" \
-install install-META
-}
-
-# vim:set ts=2 sw=2 et:

Copied: camlp4/repos/community-x86_64/PKGBUILD (from rev 371590, 
camlp4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:51:02 UTC (rev 371591)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Powalowski 
+
+pkgname=camlp4
+pkgver=4.07
+pkgrel=1
+pkgdesc='Caml preprocessor and pretty-printer'
+arch=('x86_64')
+license=('GPL2')
+url='https://github.com/ocaml/camlp4/releases'
+depends=('ocaml>=4.06.0')
+makedepends=('git' 'ocamlbuild' 'ocaml-compiler-libs')
+options=('!makeflags' '!emptydirs' 'staticlibs')
+source=("git://github.com/ocaml/camlp4#branch=$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  ./configure
+  make all camlp4/META
+}
+
+package() {
+  make -C "$pkgname" \
+BINDIR="$pkgdir/usr/bin" \
+LIBDIR="$pkgdir/usr/lib/ocaml" \
+PKGDIR="$pkgdir/usr/lib/ocaml" \
+install install-META
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:50:05
  Author: juergen
Revision: 371590

OCaml 4.07.0 rebuild

Modified:
  camlp4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:42:11 UTC (rev 371589)
+++ PKGBUILD2018-08-14 15:50:05 UTC (rev 371590)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=camlp4
-pkgver=4.06
+pkgver=4.07
 pkgrel=1
 pkgdesc='Caml preprocessor and pretty-printer'
 arch=('x86_64')


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:48:07
  Author: juergen
Revision: 331504

archrelease: copy trunk to extra-x86_64

Added:
  ocaml-ctypes/repos/extra-x86_64/PKGBUILD
(from rev 331503, ocaml-ctypes/trunk/PKGBUILD)
Deleted:
  ocaml-ctypes/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:47:46 UTC (rev 331503)
+++ PKGBUILD2018-08-14 15:48:07 UTC (rev 331504)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Armin K. 
-
-pkgname=ocaml-ctypes
-pkgver=0.11.5
-pkgrel=2
-pkgdesc="Library for binding to C libraries using pure OCaml"
-arch=('x86_64')
-url="https://github.com/ocamllabs/ocaml-ctypes;
-license=('MIT')
-depends=('ocaml=4.06.0' 'libffi')
-makedepends=('ocaml-findlib' 'ocaml-compiler-libs')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocamllabs/ocaml-ctypes/archive/$pkgver.tar.gz)
-sha256sums=('ee0f9a61cdc9bd3de7dc6f605d556533536e27694f5e2ea9bf25f76f74f68f98')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" install
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-ctypes/repos/extra-x86_64/PKGBUILD (from rev 331503, 
ocaml-ctypes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:48:07 UTC (rev 331504)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Armin K. 
+
+pkgname=ocaml-ctypes
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="Library for binding to C libraries using pure OCaml"
+arch=('x86_64')
+url="https://github.com/ocamllabs/ocaml-ctypes;
+license=('MIT')
+depends=('ocaml>=4.07.0' 'libffi' 'ocaml-integers')
+makedepends=('ocaml-findlib' 'ocaml-compiler-libs')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocamllabs/ocaml-ctypes/archive/$pkgver.tar.gz)
+sha256sums=('e97aea533b3ce254747dcec39c92f0ca74859b9fe29533d2f391598105693a7f')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:47:46
  Author: juergen
Revision: 331503

OCaml 4.07.0 rebuild

Update to ocaml-ctypes-0.14.0-1

Modified:
  ocaml-ctypes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 15:46:35 UTC (rev 331502)
+++ PKGBUILD2018-08-14 15:47:46 UTC (rev 331503)
@@ -3,17 +3,17 @@
 # Contributor: Armin K. 
 
 pkgname=ocaml-ctypes
-pkgver=0.11.5
-pkgrel=2
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="Library for binding to C libraries using pure OCaml"
 arch=('x86_64')
 url="https://github.com/ocamllabs/ocaml-ctypes;
 license=('MIT')
-depends=('ocaml=4.06.0' 'libffi')
+depends=('ocaml>=4.07.0' 'libffi' 'ocaml-integers')
 makedepends=('ocaml-findlib' 'ocaml-compiler-libs')
 options=('!strip' '!makeflags')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/ocamllabs/ocaml-ctypes/archive/$pkgver.tar.gz)
-sha256sums=('ee0f9a61cdc9bd3de7dc6f605d556533536e27694f5e2ea9bf25f76f74f68f98')
+sha256sums=('e97aea533b3ce254747dcec39c92f0ca74859b9fe29533d2f391598105693a7f')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:46:35
  Author: juergen
Revision: 331502

archrelease: copy trunk to extra-x86_64

Added:
  ocaml-integers/repos/extra-x86_64/
  ocaml-integers/repos/extra-x86_64/PKGBUILD
(from rev 331501, ocaml-integers/trunk/PKGBUILD)

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

Copied: ocaml-integers/repos/extra-x86_64/PKGBUILD (from rev 331501, 
ocaml-integers/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-08-14 15:46:35 UTC (rev 331502)
@@ -0,0 +1,30 @@
+# Maintainer: Jürgen Hötzel 
+
+pkgname=ocaml-integers
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='Library for binding to C libraries using pure OCaml'
+arch=('i686' 'x86_64')
+url=https://github.com/ocamllabs/ocaml-integers
+license=('custom')
+options=('!strip')
+makedepends=('ocaml-topkg' 'ocaml-findlib' 'ocaml-compiler-libs' 'ocamlbuild' 
'opam')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ocamllabs/$pkgname/archive/v$pkgver.tar.gz;)
+md5sums=('f966342ad19682d4d5ade1e202388a81')
+
+
+build() {
+  cd ${pkgname}-$pkgver
+  make
+}
+
+package() {
+  cd ${pkgname}-$pkgver
+
+  opam-installer --prefix="${pkgdir}/usr" \
+--libdir="${pkgdir}$(ocamlc -where)" \
+--docdir="${pkgdir}/usr/share/doc" \
+--stubsdir="${pkgdir}$(ocamlc -where)/stublibs"
+
+  install -Dm644 LICENSE.md 
"${pkgdir}/usr/share/licenses/${pkgname}"/LICENSE.md
+}


  1   2   3   >