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

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Monday, January 28, 2019 @ 06:24:14
  Author: arojas
Revision: 344889

Compile bytecode (FS#61552)

Modified:
  pyqt5/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 23:54:42 UTC (rev 344888)
+++ PKGBUILD2019-01-28 06:24:14 UTC (rev 344889)
@@ -7,7 +7,7 @@
 pkgbase=pyqt5
 pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
 pkgver=5.11.3
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="http://riverbankcomputing.co.uk/software/pyqt/intro;
 license=('GPL')
@@ -70,6 +70,12 @@
   # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
   make DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install -j1
 
+  # Remove unused py2 version of uic modules:
+  rm -r "$pkgdir"/usr/lib/python*/site-packages/PyQt5/uic/port_v2
+
+  # compile Python bytecode
+  python -m compileall -d / "$pkgdir"/usr/lib
+
   # Provided by pyqt-common
   rm "$pkgdir"/usr/share/qt/qsci/api/python/PyQt5.api
 }
@@ -96,6 +102,12 @@
   # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
   make DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install -j1
 
+  # Remove unused py3 version of uic modules:
+  rm -r "$pkgdir"/usr/lib/python*/site-packages/PyQt5/uic/port_v3
+
+  # compile Python bytecode
+  python2 -m compileall -d / "$pkgdir"/usr/lib
+
   # Fix conflicts with python-pyqt5
   mv "$pkgdir"/usr/bin/{,python2-}pyuic5
   mv "$pkgdir"/usr/bin/{,python2-}pylupdate5


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

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Monday, January 28, 2019 @ 06:24:37
  Author: arojas
Revision: 344890

archrelease: copy trunk to extra-x86_64

Added:
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 344889, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  226 -
 1 file changed, 119 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-28 06:24:14 UTC (rev 344889)
+++ PKGBUILD2019-01-28 06:24:37 UTC (rev 344890)
@@ -1,107 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.11.3
-pkgrel=2
-arch=('x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro;
-license=('GPL')
-makedepends=('python-sip-pyqt5' 'python2-sip-pyqt5' 'sip' 'python-opengl' 
'python2-opengl' 'python2-enum34'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-multimedia' 
'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 
'qt5-networkauth' 'qt5-xmlpatterns')
-source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt5_gpl-$pkgver.tar.gz;)
-sha512sums=('6f4abb1866ce357263c208121607072e127c8853e9c6bf039b034fefdda4c40e38f917c3b313375f0d692d764ecf26ff3a6b12cda2a2eeb5237db8b5e9443548')
-
-prepare() {
-  cp -a PyQt5_gpl-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/PyQt5_gpl-$pkgver
-  python configure.py \
---confirm-license \
---no-sip-files \
---qsci-api
-  make
-
-  cd "$srcdir"/PyQt5_gpl-$pkgver-py2
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt5_gpl-$pkgver
-  install -Dm644 PyQt5.api "$pkgdir"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "$pkgdir"/usr/share/sip/PyQt5
-  cp -a sip/* "$pkgdir"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip-pyqt5' 'pyqt5-common')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort'
-  'qt5-websockets: QtWebSockets'
-  'qt5-connectivity: QtNfc, QtBluetooth'
-  'qt5-webengine: QtWebEngine, QtWebEngineCore, QtWebEngineWidgets'
-  'qt5-x11extras: QtX11Extras'
-  'qt5-networkauth: QtNetworkAuth')
-
-  cd PyQt5_gpl-$pkgver
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install -j1
-
-  # Provided by pyqt-common
-  rm "$pkgdir"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip-pyqt5' 'pyqt5-common' 'python2-enum34')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort'
-  'qt5-websockets: QtWebSockets'
-  'qt5-connectivity: QtNfc, QtBluetooth'
-  'qt5-webengine: QtWebEngine, QtWebEngineCore, QtWebEngineWidgets'
-  'qt5-x11extras: QtX11Extras'
-  'qt5-networkauth: QtNetworkAuth')
-
-  cd PyQt5_gpl-$pkgver-py2
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install -j1
-
-  # Fix conflicts with python-pyqt5
-  mv "$pkgdir"/usr/bin/{,python2-}pyuic5
-  mv "$pkgdir"/usr/bin/{,python2-}pylupdate5
-  mv "$pkgdir"/usr/bin/{,python2-}pyrcc5
-
-  rm "$pkgdir"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "$pkgdir"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "$pkgdir"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-x86_64/PKGBUILD (from rev 344889, 
pyqt5/trunk/PKGBUILD)
===
--- PKGBUILD

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

2019-01-27 Thread Filipe Laíns via arch-commits
Date: Monday, January 28, 2019 @ 00:21:18
  Author: ffy00
Revision: 428295

upgpkg: python-pony 0.7.9-1

Modified:
  python-pony/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 21:22:33 UTC (rev 428294)
+++ PKGBUILD2019-01-28 00:21:18 UTC (rev 428295)
@@ -3,7 +3,7 @@
 pkgbase=python-pony
 _pkgname=${pkgbase#python-}
 pkgname=(python-$_pkgname python2-$_pkgname)
-pkgver=0.7.6
+pkgver=0.7.9
 pkgrel=1
 pkgdesc='Pony Object Relational Mapper'
 arch=('any')
@@ -10,8 +10,8 @@
 url='https://github.com/ponyorm/pony'
 makedepends=('python-setuptools' 'python2-setuptools')
 license=('Apache')
-source=("$url/archive/$pkgver.tar.gz")
-sha512sums=('ba12b96bb03642588ca95cc83199fad3e7a6fd3043ec74b5b0ccb7f23066592a8b17a0e5fc6ae4be371f6bcb8d8e7828deaf40e46b05010eeaf481f41c8f598e')
+source=("$url/archive/v$pkgver.tar.gz")
+sha512sums=('b2bc8e515ea179821b1a28b2ba9406d480ab0a227615bc8624c2907b31901d338cec030df2de21e622ba0e6be42dc63676989ae2344485f143ffb644c10a3778')
 
 prepare() {
   cp -a $_pkgname-$pkgver{,-py2}
@@ -27,16 +27,16 @@
   python2 setup.py build
 }
 
-#check() {
-#  echo "Running tests for python-$_pkgname $pkgver"
-#  cd "$srcdir"/$_pkgname-$pkgver
-#  python setup.py test
-#
-#  echo "Running tests for python2-$_pkgname $pkgver"
-#  cd "$srcdir"/$_pkgname-$pkgver-py2
-#  python2 setup.py test
-#}
+check() {
+  echo "Running tests for python-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py test
 
+  echo "Running tests for python2-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver-py2
+  python2 setup.py test
+}
+
 package_python-pony() {
   depends=('python')
   cd $_pkgname-$pkgver


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

2019-01-27 Thread Filipe Laíns via arch-commits
Date: Monday, January 28, 2019 @ 00:21:32
  Author: ffy00
Revision: 428296

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-28 00:21:18 UTC (rev 428295)
+++ PKGBUILD2019-01-28 00:21:32 UTC (rev 428296)
@@ -1,53 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=python-pony
-_pkgname=${pkgbase#python-}
-pkgname=(python-$_pkgname python2-$_pkgname)
-pkgver=0.7.6
-pkgrel=1
-pkgdesc='Pony Object Relational Mapper'
-arch=('any')
-url='https://github.com/ponyorm/pony'
-makedepends=('python-setuptools' 'python2-setuptools')
-license=('Apache')
-source=("$url/archive/$pkgver.tar.gz")
-sha512sums=('ba12b96bb03642588ca95cc83199fad3e7a6fd3043ec74b5b0ccb7f23066592a8b17a0e5fc6ae4be371f6bcb8d8e7828deaf40e46b05010eeaf481f41c8f598e')
-
-prepare() {
-  cp -a $_pkgname-$pkgver{,-py2}
-}
-
-build() {
-  echo "Building python-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver
-  python setup.py build
-
-  echo "Building python2-$_pkgname $pkgver"
-  cd "$srcdir"/$_pkgname-$pkgver-py2
-  python2 setup.py build
-}
-
-#check() {
-#  echo "Running tests for python-$_pkgname $pkgver"
-#  cd "$srcdir"/$_pkgname-$pkgver
-#  python setup.py test
-#
-#  echo "Running tests for python2-$_pkgname $pkgver"
-#  cd "$srcdir"/$_pkgname-$pkgver-py2
-#  python2 setup.py test
-#}
-
-package_python-pony() {
-  depends=('python')
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-pony() {
-  depends=('python2')
-  cd $_pkgname-$pkgver-py2
-
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-

Copied: python-pony/repos/community-any/PKGBUILD (from rev 428295, 
python-pony/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-28 00:21:32 UTC (rev 428296)
@@ -0,0 +1,53 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=python-pony
+_pkgname=${pkgbase#python-}
+pkgname=(python-$_pkgname python2-$_pkgname)
+pkgver=0.7.9
+pkgrel=1
+pkgdesc='Pony Object Relational Mapper'
+arch=('any')
+url='https://github.com/ponyorm/pony'
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('Apache')
+source=("$url/archive/v$pkgver.tar.gz")
+sha512sums=('b2bc8e515ea179821b1a28b2ba9406d480ab0a227615bc8624c2907b31901d338cec030df2de21e622ba0e6be42dc63676989ae2344485f143ffb644c10a3778')
+
+prepare() {
+  cp -a $_pkgname-$pkgver{,-py2}
+}
+
+build() {
+  echo "Building python-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py build
+
+  echo "Building python2-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  echo "Running tests for python-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver
+  python setup.py test
+
+  echo "Running tests for python2-$_pkgname $pkgver"
+  cd "$srcdir"/$_pkgname-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-pony() {
+  depends=('python')
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-pony() {
+  depends=('python2')
+  cd $_pkgname-$pkgver-py2
+
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+


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

2019-01-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, January 27, 2019 @ 23:54:42
  Author: foutrelis
Revision: 344888

archrelease: copy trunk to extra-x86_64

Added:
  thunar/repos/extra-x86_64/PKGBUILD
(from rev 344887, thunar/trunk/PKGBUILD)
Deleted:
  thunar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 23:54:36 UTC (rev 344887)
+++ PKGBUILD2019-01-27 23:54:42 UTC (rev 344888)
@@ -1,57 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Andrew Simmons 
-
-pkgname=thunar
-pkgver=1.8.3
-pkgrel=2
-pkgdesc="Modern file manager for Xfce"
-arch=('x86_64')
-url="http://thunar.xfce.org;
-license=('GPL2' 'LGPL2.1')
-groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
- 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'xfce4-panel')
-optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
-'xfce4-panel: for trash applet'
-'tumbler: for thumbnail previews'
-'thunar-volman: manages removable devices'
-'thunar-archive-plugin: create and deflate archives'
-'thunar-media-tags-plugin: view/edit id3/ogg tags')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2
-
thunar-bz14946.patch::https://github.com/xfce-mirror/thunar/commit/4c0e17d7fc.patch)
-sha256sums=('c8fa2d55948c4137af6196419372250742790807d12293a804f543491298d32f'
-'23497c2472807b5268b5df3e707940326565f15c480fde755d4fd2f9a86bed8d')
-
-prepare() {
-  cd "$srcdir/Thunar-$pkgver"
-
-  # https://bugzilla.xfce.org/show_bug.cgi?id=14946
-  patch -Np1 -i ../thunar-bz14946.patch
-}
-
-build() {
-  cd "$srcdir/Thunar-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-gio-unix \
---enable-gudev \
---enable-notifications \
---enable-exif \
---enable-pcre \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/Thunar-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with nautilus
-  # https://bugs.archlinux.org/task/61531
-  rm "$pkgdir/usr/share/dbus-1/services/org.freedesktop.FileManager1.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thunar/repos/extra-x86_64/PKGBUILD (from rev 344887, 
thunar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 23:54:42 UTC (rev 344888)
@@ -0,0 +1,53 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andrew Simmons 
+
+pkgname=thunar
+pkgver=1.8.4
+pkgrel=1
+pkgdesc="Modern file manager for Xfce"
+arch=('x86_64')
+url="http://thunar.xfce.org;
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'xfce4-panel')
+optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
+'xfce4-panel: for trash applet'
+'tumbler: for thumbnail previews'
+'thunar-volman: manages removable devices'
+'thunar-archive-plugin: create and deflate archives'
+'thunar-media-tags-plugin: view/edit id3/ogg tags')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2
+
thunar-bz14946.patch::https://github.com/xfce-mirror/thunar/commit/4c0e17d7fc.patch)
+sha256sums=('c2bf51da8ddec8f642d67818184ada2ca6e143151e6a45563991db73387a93b0'
+'23497c2472807b5268b5df3e707940326565f15c480fde755d4fd2f9a86bed8d')
+
+prepare() {
+  cd "$srcdir/Thunar-$pkgver"
+
+  # https://bugzilla.xfce.org/show_bug.cgi?id=14946
+  patch -Np1 -i ../thunar-bz14946.patch
+}
+
+build() {
+  cd "$srcdir/Thunar-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/Thunar-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-01-27 Thread Evangelos Foutras via arch-commits
Date: Sunday, January 27, 2019 @ 23:54:36
  Author: foutrelis
Revision: 344887

upgpkg: thunar 1.8.4-1

New upstream release.

Modified:
  thunar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:20:36 UTC (rev 344886)
+++ PKGBUILD2019-01-27 23:54:36 UTC (rev 344887)
@@ -2,8 +2,8 @@
 # Contributor: Andrew Simmons 
 
 pkgname=thunar
-pkgver=1.8.3
-pkgrel=2
+pkgver=1.8.4
+pkgrel=1
 pkgdesc="Modern file manager for Xfce"
 arch=('x86_64')
 url="http://thunar.xfce.org;
@@ -20,7 +20,7 @@
 'thunar-media-tags-plugin: view/edit id3/ogg tags')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2
 
thunar-bz14946.patch::https://github.com/xfce-mirror/thunar/commit/4c0e17d7fc.patch)
-sha256sums=('c8fa2d55948c4137af6196419372250742790807d12293a804f543491298d32f'
+sha256sums=('c2bf51da8ddec8f642d67818184ada2ca6e143151e6a45563991db73387a93b0'
 '23497c2472807b5268b5df3e707940326565f15c480fde755d4fd2f9a86bed8d')
 
 prepare() {
@@ -48,10 +48,6 @@
 package() {
   cd "$srcdir/Thunar-$pkgver"
   make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with nautilus
-  # https://bugs.archlinux.org/task/61531
-  rm "$pkgdir/usr/share/dbus-1/services/org.freedesktop.FileManager1.service"
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Sunday, January 27, 2019 @ 21:22:04
  Author: arojas
Revision: 428293

Update to 14.29.30

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:27:28 UTC (rev 428292)
+++ PKGBUILD2019-01-27 21:22:04 UTC (rev 428293)
@@ -3,7 +3,7 @@
 
 pkgbase=jmol
 pkgname=(jmol jsmol)
-pkgver=14.29.29
+pkgver=14.29.30
 pkgrel=1
 arch=(any)
 url="https://jmol.sourceforge.net;
@@ -10,7 +10,7 @@
 license=(LGPL)
 makedepends=(unzip)
 
source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('840f96f557a768f4fd021c4c552c6e1f5527e44d5a5500fde7db3dc569396048')
+sha256sums=('45a767c6212defb0add11349ab50d03cbb68b5442a2ba34600e1c8bb3115fdcc')
 
 package_jmol() {
   pkgdesc="a Java 3D viewer for chemical structures"


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

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Sunday, January 27, 2019 @ 21:22:33
  Author: arojas
Revision: 428294

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 428293, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 21:22:04 UTC (rev 428293)
+++ PKGBUILD2019-01-27 21:22:33 UTC (rev 428294)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgbase=jmol
-pkgname=(jmol jsmol)
-pkgver=14.29.29
-pkgrel=1
-arch=(any)
-url="https://jmol.sourceforge.net;
-license=(LGPL)
-makedepends=(unzip)
-source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('840f96f557a768f4fd021c4c552c6e1f5527e44d5a5500fde7db3dc569396048')
-
-package_jmol() {
-  pkgdesc="a Java 3D viewer for chemical structures"
-  depends=(java-runtime)
-
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}
-
-package_jsmol() {
-  pkgdesc="a JavaScript 3D viewer for chemical structures"
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 428293, jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 21:22:33 UTC (rev 428294)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgbase=jmol
+pkgname=(jmol jsmol)
+pkgver=14.29.30
+pkgrel=1
+arch=(any)
+url="https://jmol.sourceforge.net;
+license=(LGPL)
+makedepends=(unzip)
+source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
+sha256sums=('45a767c6212defb0add11349ab50d03cbb68b5442a2ba34600e1c8bb3115fdcc')
+
+package_jmol() {
+  pkgdesc="a Java 3D viewer for chemical structures"
+  depends=(java-runtime)
+
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}
+
+package_jsmol() {
+  pkgdesc="a JavaScript 3D viewer for chemical structures"
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+}


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

2019-01-27 Thread Andreas Radke via arch-commits
Date: Sunday, January 27, 2019 @ 20:20:36
  Author: andyrtr
Revision: 344886

archrelease: copy trunk to testing-x86_64

Added:
  libpipeline/repos/testing-x86_64/
  libpipeline/repos/testing-x86_64/PKGBUILD
(from rev 344885, libpipeline/trunk/PKGBUILD)

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

Copied: libpipeline/repos/testing-x86_64/PKGBUILD (from rev 344885, 
libpipeline/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-27 20:20:36 UTC (rev 344886)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+
+pkgname=libpipeline
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible 
and convenient way"
+arch=('x86_64')
+url="https://libpipeline.nongnu.org/;
+license=('GPL')
+depends=('glibc')
+source=(https://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('d633706b7d845f08b42bc66ddbe845d57e726bf89298e2cee29f09577e2f902f'
+'SKIP')
+validpgpkeys=('AC0A4FF12611B6FCCF01C111393587D97D86500B') # Colin Watson 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}


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

2019-01-27 Thread Andreas Radke via arch-commits
Date: Sunday, January 27, 2019 @ 20:20:23
  Author: andyrtr
Revision: 344885

upgpkg: libpipeline 1.5.1-1

upstream update 1.5.1

Modified:
  libpipeline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:49:07 UTC (rev 344884)
+++ PKGBUILD2019-01-27 20:20:23 UTC (rev 344885)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=libpipeline
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible 
and convenient way"
 arch=('x86_64')
@@ -8,8 +8,8 @@
 url="https://libpipeline.nongnu.org/;
 license=('GPL')
 depends=('glibc')
-source=(https://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz{,.sig})
-sha256sums=('0d72e12e4f2afff67fd7b9df0a24d7ba42b5a7c9211ac5b3d5cd8b286f2b'
+source=(https://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('d633706b7d845f08b42bc66ddbe845d57e726bf89298e2cee29f09577e2f902f'
 'SKIP')
 validpgpkeys=('AC0A4FF12611B6FCCF01C111393587D97D86500B') # Colin Watson 

 


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:19:05
  Author: felixonmars
Revision: 428281

upgpkg: postgrest 5.1.0-4

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:15:59 UTC (rev 428280)
+++ PKGBUILD2019-01-27 20:19:05 UTC (rev 428281)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:19:21
  Author: felixonmars
Revision: 428282

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 428281, postgrest/trunk/PKGBUILD)
  postgrest/repos/community-staging-x86_64/new-hasql.patch
(from rev 428281, postgrest/trunk/new-hasql.patch)

-+
 PKGBUILD|   74 
 new-hasql.patch |  477 ++
 2 files changed, 551 insertions(+)

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 428281, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:19:21 UTC (rev 428282)
@@ -0,0 +1,74 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.1.0
+pkgrel=4
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' '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-contravariant-extras'
+ '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;
+new-hasql.patch)
+sha512sums=('d4e7ef6dab26e93fe7edb9714cdf245e85ed58556f03d2d14b8e40e0456bf62247d3fe97cdd59db59f76b2a31e7086a2e6f0fc6a4780251bd091f16e8ee28fc2'
+
'53bbac6d2ef850ca66809f971b67d5ffd9b8d210d7561978a088c287e434beef1ba09bae65dc14048caf9b8c8d8eb9c329e618092c62c09dae836a9857ede470')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../new-hasql.patch
+
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' $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"
+}

Copied: postgrest/repos/community-staging-x86_64/new-hasql.patch (from rev 
428281, postgrest/trunk/new-hasql.patch)
===
--- community-staging-x86_64/new-hasql.patch(rev 0)
+++ community-staging-x86_64/new-hasql.patch2019-01-27 20:19:21 UTC (rev 
428282)
@@ -0,0 +1,477 @@
+From e0cc4d157106fb8978b00456181347cdb96ae1c7 Mon Sep 17 00:00:00 2001
+From: Ben Gamari 
+Date: Thu, 28 Jun 2018 01:02:09 -0400
+Subject: [PATCH] Update hasql
+
+Move to hasql 1.3.
+---
+ postgrest.cabal   |   6 +-
+ src/PostgREST/App.hs  |  16 ++---
+ src/PostgREST/DbStructure.hs  | 126 +-
+ 

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:15:59
  Author: felixonmars
Revision: 428280

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 428279, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 428279, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:15:59 UTC (rev 428280)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.12
+pkgrel=47
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-blaze-html' 
'haskell-blaze-markup'
+ 'haskell-case-insensitive' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-data-default' 'haskell-hjsmin' 'haskell-http-conduit' 
'haskell-http-client'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4c77d67daa0abdd55029fc6af1a3735ab99adc9ec65e8470a84f4b7de39de24bdd636717d50f5f87d4227b4b903e72b0ccde728addc12d26809e83b8baf07f31')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/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}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:15:44
  Author: felixonmars
Revision: 428279

upgpkg: hledger-web 1.12-47

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:14:24 UTC (rev 428278)
+++ PKGBUILD2019-01-27 20:15:44 UTC (rev 428279)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.12
-pkgrel=46
+pkgrel=47
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:14:24
  Author: felixonmars
Revision: 428278

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 428277, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 428277, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:14:24 UTC (rev 428278)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.12.1
+pkgrel=13
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' 
'haskell-pretty-show'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper' 'haskell-vector' 
'haskell-brick'
+ 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('60bffe992673b7f1f7d4ac9c94a45daa24626314952e569ee66b543dc4ef7d6832e76bd785a067224e5c273c07ffddd4ccf40b656c42f33eb54027cee0b36baa')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:14:06
  Author: felixonmars
Revision: 428277

upgpkg: hledger-ui 1.12.1-13

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:13:07 UTC (rev 428276)
+++ PKGBUILD2019-01-27 20:14:06 UTC (rev 428277)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.12.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:13:07
  Author: felixonmars
Revision: 428276

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-api/repos/community-staging-x86_64/
  hledger-api/repos/community-staging-x86_64/PKGBUILD
(from rev 428275, hledger-api/trunk/PKGBUILD)

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 428275, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:13:07 UTC (rev 428276)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.12
+pkgrel=39
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-docopt' 'haskell-either' 
'haskell-microlens'
+ 'haskell-microlens-platform' 'haskell-safe' 'haskell-servant-server'
+ 'haskell-servant-swagger' 'haskell-swagger2' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('bf495f7b0653d1bd55f5896bae30ae09bb8a014ce91d2a2c0926722bf6778bfcf946aa2c4f9e19af24f38c136707fc247bc953f1e4e4283b207054f058331622')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:12:52
  Author: felixonmars
Revision: 428275

upgpkg: hledger-api 1.12-39

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:11:47 UTC (rev 428274)
+++ PKGBUILD2019-01-27 20:12:52 UTC (rev 428275)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-api
 pkgver=1.12
-pkgrel=38
+pkgrel=39
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:11:29
  Author: felixonmars
Revision: 428273

upgpkg: hledger 1.12.1-11

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:10:22 UTC (rev 428272)
+++ PKGBUILD2019-01-27 20:11:29 UTC (rev 428273)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.12.1
-pkgrel=10
+pkgrel=11
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:11:47
  Author: felixonmars
Revision: 428274

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger/repos/community-staging-x86_64/
  hledger/repos/community-staging-x86_64/PKGBUILD
(from rev 428273, hledger/trunk/PKGBUILD)

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 428273, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:11:47 UTC (rev 428274)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.12.1
+pkgrel=11
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-diff' 
'haskell-easytest'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-here' 
'haskell-hledger-lib'
+ 'haskell-lucid' 'haskell-math-functions' 'haskell-megaparsec' 
'haskell-old-time'
+ 'haskell-pretty-show' 'haskell-regex-tdfa' 'haskell-safe' 
'haskell-shakespeare'
+ 'haskell-split' 'haskell-tabular' 'haskell-temporary' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-utility-ht' 'haskell-wizards')
+makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('761c3b7d581e0787981763bc72263905f30b117e09c7a2bb72c3315955d3bb3a1e2cc3bd9152cfb8c81307c3dfa0e4e263dbc733670852a8ebf3e508817899ae')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${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}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:10:22
  Author: felixonmars
Revision: 428272

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-swagger/repos/community-staging-x86_64/
  haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD
(from rev 428271, haskell-servant-swagger/trunk/PKGBUILD)

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 428271, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:10:22 UTC (rev 428272)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-servant'
+ 'haskell-singleton-bool' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-cabal-doctest' 
'haskell-doctest'
+ 'haskell-hspec-discover' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1c9d6a481a361950cb6f345af37698f686a00a66b534cf729aef735fd5fa3720eced7a67b837d03af4b230c7ef6683eb226e00d455cba7fddb9e57cb26763183')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.7/<3/' -e 's/>=2.3/>=2.2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:10:06
  Author: felixonmars
Revision: 428271

upgpkg: haskell-servant-swagger 1.1.7-2

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:09:00 UTC (rev 428270)
+++ PKGBUILD2019-01-27 20:10:06 UTC (rev 428271)
@@ -4,7 +4,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("BSD")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:09:00
  Author: felixonmars
Revision: 428270

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
428269, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:09:00 UTC (rev 428270)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-cookie'
+ 'haskell-hashable' 'haskell-generics-sop' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-network' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-transformers-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-uuid-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck-instances'
+ 'haskell-hspec-discover' 'haskell-doctest' 
'haskell-cabal-doctest' 'haskell-glob'
+ 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e0aa3a3b06e633ea3caa4472d716a5ab1445a6b1dacff2135d9362d4e09606c139b636afafd9d53e0bd479ddd419804b61bfb8955ca96af97b232f5864b3bc98')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.7/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:08:44
  Author: felixonmars
Revision: 428269

upgpkg: haskell-swagger2 2.3.1-1

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  haskell-swagger2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 20:04:55 UTC (rev 428268)
+++ PKGBUILD2019-01-27 20:08:44 UTC (rev 428269)
@@ -3,27 +3,26 @@
 
 _hkgname=swagger2
 pkgname=haskell-swagger2
-pkgver=2.2.2
-pkgrel=79
+pkgver=2.3.1
+pkgrel=1
 pkgdesc="Swagger 2.0 data model"
 url="https://github.com/GetShopTV/swagger2;
 license=("BSD")
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-hashable'
- 'haskell-generics-sop' 'haskell-http-media' 
'haskell-insert-ordered-containers'
- 'haskell-lens' 'haskell-network' 'haskell-scientific' 
'haskell-transformers-compat'
- 'haskell-unordered-containers' 'haskell-vector' 'haskell-uuid-types')
-makedepends=('ghc' 'haskell-aeson-qq' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck'
- 'haskell-quickcheck-instances' 'haskell-hspec-discover' 
'haskell-doctest'
- 'haskell-cabal-doctest' 'haskell-glob')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-cookie'
+ 'haskell-hashable' 'haskell-generics-sop' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-network' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-transformers-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-uuid-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck-instances'
+ 'haskell-hspec-discover' 'haskell-doctest' 
'haskell-cabal-doctest' 'haskell-glob'
+ 'haskell-utf8-string')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('b34f9bbe3d4bf1deb315ade8da9d99a91d2c32e47f8a4573b5dd73fabc4094267ae2b7ae1241773d2ce267bcaf9a13ee16a29e9d01c9fa9b30500663432e4bb5')
+sha512sums=('e0aa3a3b06e633ea3caa4472d716a5ab1445a6b1dacff2135d9362d4e09606c139b636afafd9d53e0bd479ddd419804b61bfb8955ca96af97b232f5864b3bc98')
 
 prepare() {
 cd $_hkgname-$pkgver
-sed -i -e 's/<.*2.7/<3/' -e 's/<.*4.17/<5/' -e 's/<.*1.4/<2/' \
-   -e 's/< *4.12/<5/' -e 's/< *0.6/<1/' -e 's/< *2.14/<3/' \
-   -e 's/< *0.4/<1/' -e 's/< *2.12/<3/' -e 's/< *2.6/<3/' 
$_hkgname.cabal
+sed -i 's/< *2.7/<3/' $_hkgname.cabal
 }
 
 build() {


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:04:55
  Author: felixonmars
Revision: 428268

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hledger-lib/repos/community-staging-x86_64/
  haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 428267, haskell-hledger-lib/trunk/PKGBUILD)

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

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
428267, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 20:04:55 UTC (rev 428268)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.12
+pkgrel=10
+pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-blaze-markup'
+ 'haskell-call-stack' 'haskell-cassava' 'haskell-cassava-megaparsec' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-easytest' 
'haskell-extra'
+ 'haskell-glob' 'haskell-hashtables' 'haskell-megaparsec' 
'haskell-old-time'
+ 'haskell-parser-combinators' 'haskell-pretty-show' 
'haskell-regex-tdfa' 'haskell-safe'
+ 'haskell-split' 'haskell-tabular' 'haskell-uglymemo' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c7404dd0eed468331c7ef5c4afc778dd58d631e28173ccce3ff057831f9acaecb7b727d18d18e07fc7484b219bd530906347dd115a308a14442dc483a993de2c')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--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
+}
+
+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"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 20:04:40
  Author: felixonmars
Revision: 428267

upgpkg: haskell-hledger-lib 1.12-10

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:59:32 UTC (rev 428266)
+++ PKGBUILD2019-01-27 20:04:40 UTC (rev 428267)
@@ -4,7 +4,7 @@
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
 pkgver=1.12
-pkgrel=9
+pkgrel=10
 pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
 url="http://hledger.org;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:59:32
  Author: felixonmars
Revision: 428266

archrelease: copy trunk to community-x86_64

Added:
  etherwall/repos/community-x86_64/PKGBUILD
(from rev 428265, etherwall/trunk/PKGBUILD)
  etherwall/repos/community-x86_64/etherwall.desktop
(from rev 428265, etherwall/trunk/etherwall.desktop)
Deleted:
  etherwall/repos/community-x86_64/PKGBUILD
  etherwall/repos/community-x86_64/etherwall.desktop

---+
 PKGBUILD  |   82 ++--
 etherwall.desktop |   18 +--
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 19:59:15 UTC (rev 428265)
+++ PKGBUILD2019-01-27 19:59:32 UTC (rev 428266)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ales Katona 
-
-pkgname=etherwall
-pkgver=2.3.0
-_ewnodecommit=369edf96f4707db156e63466987fc81025964ad5
-_trezorcommit=8ea2d044785b2285c4390b3afddb08e8d093cc8e
-pkgrel=1
-pkgdesc="Ethereum GUI Wallet (QT5)"
-arch=('x86_64')
-url="http://etherwall.com;
-license=('GPL3')
-depends=('qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-websockets' 'geth' 'protobuf' 'hidapi' 'libsystemd')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/almindor/${pkgname}/archive/v$pkgver.tar.gz;
-
"ew-node-$_ewnodecommit.tar.gz::https://github.com/almindor/ew-node/archive/$_ewnodecommit.tar.gz;
-
"trezor-common-$_trezorcommit.tar.gz::https://github.com/trezor/trezor-common/archive/$_trezorcommit.tar.gz;
-etherwall.desktop)
-sha512sums=('239a2b8282d170215a635f51d4bd3ad16a45b2c4d65b0f3ff5e1c51a188ffe3bb5208c259a4796cb3588015e61e53eaed1e315402f8486d543d49d71602061fc'
-
'6cce95b0ad634ef90350a479f25f7683488adfbc7aa591319ff31eb64ec57bffb124434253adf3bf24cf70ed9b1544b2db97465bfc80c76820f738cad82e1843'
-
'862b3e678751bbd26380c085036f1526aa576fc75473e06a43c6476085168cb46a904bab716fe905d6970c923b0ae0081365cec0f7df01a3b91f948947fd6594'
-
'82ecee1f1d7a6fe7014b928e3ab79ed507c3c5795ac3e832e0be1aca8fc5659212c5a4323d5dec4571b9e9255c5c46615bd9865dc03eba85d8be9b969b534d57')
-
-build() {
-  cd "etherwall-$pkgver"
-  rmdir "src/ew-node"
-  ln -s "../../ew-node-$_ewnodecommit" "src/ew-node"
-
-  SRCDIR="../trezor-common-$_trezorcommit/protob" ./generate_protobuf.sh
-  qmake -config release && make
-}
-
-package() {
-  mkdir -p "$pkgdir/usr/bin"
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  mkdir -p "$pkgdir/usr/share/applications"
-
-  cd "etherwall-$pkgver"
-  cp "$srcdir"/etherwall.desktop "$pkgdir"/usr/share/applications
-  cp "./Etherwall" "$pkgdir"/usr/bin/etherwall
-  cp "./qml/images/icon.png" "$pkgdir"/usr/share/pixmaps/etherwall.png
-}

Copied: etherwall/repos/community-x86_64/PKGBUILD (from rev 428265, 
etherwall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 19:59:32 UTC (rev 428266)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Ales Katona 
+
+pkgname=etherwall
+pkgver=2.3.1
+_ewnodecommit=369edf96f4707db156e63466987fc81025964ad5
+_trezorcommit=8ea2d044785b2285c4390b3afddb08e8d093cc8e
+pkgrel=1
+pkgdesc="Ethereum GUI Wallet (QT5)"
+arch=('x86_64')
+url="http://etherwall.com;
+license=('GPL3')
+depends=('qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-websockets' 'geth' 'protobuf' 'hidapi' 'libsystemd')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/almindor/${pkgname}/archive/v$pkgver.tar.gz;
+
"ew-node-$_ewnodecommit.tar.gz::https://github.com/almindor/ew-node/archive/$_ewnodecommit.tar.gz;
+
"trezor-common-$_trezorcommit.tar.gz::https://github.com/trezor/trezor-common/archive/$_trezorcommit.tar.gz;
+etherwall.desktop)
+sha512sums=('0b5a6589d9a035f8e16803e86b17f341bc99a57d3ac60d2d9dbea51246597d1b8b56b003b4497584880a60962574ddff5317936c852188fd482da8df929a906a'
+
'6cce95b0ad634ef90350a479f25f7683488adfbc7aa591319ff31eb64ec57bffb124434253adf3bf24cf70ed9b1544b2db97465bfc80c76820f738cad82e1843'
+
'862b3e678751bbd26380c085036f1526aa576fc75473e06a43c6476085168cb46a904bab716fe905d6970c923b0ae0081365cec0f7df01a3b91f948947fd6594'
+
'82ecee1f1d7a6fe7014b928e3ab79ed507c3c5795ac3e832e0be1aca8fc5659212c5a4323d5dec4571b9e9255c5c46615bd9865dc03eba85d8be9b969b534d57')
+
+build() {
+  cd "etherwall-$pkgver"
+  rmdir "src/ew-node"
+  ln -s "../../ew-node-$_ewnodecommit" "src/ew-node"
+
+  SRCDIR="../trezor-common-$_trezorcommit/protob" ./generate_protobuf.sh
+  qmake -config release && make
+}
+
+package() {
+  mkdir -p "$pkgdir/usr/bin"
+  mkdir -p "$pkgdir/usr/share/pixmaps"
+  mkdir -p "$pkgdir/usr/share/applications"
+
+  cd "etherwall-$pkgver"
+  cp "$srcdir"/etherwall.desktop "$pkgdir"/usr/share/applications
+  cp "./Etherwall" "$pkgdir"/usr/bin/etherwall
+  cp "./qml/images/icon.png" 

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:59:15
  Author: felixonmars
Revision: 428265

upgpkg: etherwall 2.3.1-1

Modified:
  etherwall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:58:32 UTC (rev 428264)
+++ PKGBUILD2019-01-27 19:59:15 UTC (rev 428265)
@@ -2,7 +2,7 @@
 # Contributor: Ales Katona 
 
 pkgname=etherwall
-pkgver=2.3.0
+pkgver=2.3.1
 _ewnodecommit=369edf96f4707db156e63466987fc81025964ad5
 _trezorcommit=8ea2d044785b2285c4390b3afddb08e8d093cc8e
 pkgrel=1
@@ -15,7 +15,7 @@
 
"ew-node-$_ewnodecommit.tar.gz::https://github.com/almindor/ew-node/archive/$_ewnodecommit.tar.gz;
 
"trezor-common-$_trezorcommit.tar.gz::https://github.com/trezor/trezor-common/archive/$_trezorcommit.tar.gz;
 etherwall.desktop)
-sha512sums=('239a2b8282d170215a635f51d4bd3ad16a45b2c4d65b0f3ff5e1c51a188ffe3bb5208c259a4796cb3588015e61e53eaed1e315402f8486d543d49d71602061fc'
+sha512sums=('0b5a6589d9a035f8e16803e86b17f341bc99a57d3ac60d2d9dbea51246597d1b8b56b003b4497584880a60962574ddff5317936c852188fd482da8df929a906a'
 
'6cce95b0ad634ef90350a479f25f7683488adfbc7aa591319ff31eb64ec57bffb124434253adf3bf24cf70ed9b1544b2db97465bfc80c76820f738cad82e1843'
 
'862b3e678751bbd26380c085036f1526aa576fc75473e06a43c6476085168cb46a904bab716fe905d6970c923b0ae0081365cec0f7df01a3b91f948947fd6594'
 
'82ecee1f1d7a6fe7014b928e3ab79ed507c3c5795ac3e832e0be1aca8fc5659212c5a4323d5dec4571b9e9255c5c46615bd9865dc03eba85d8be9b969b534d57')


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:58:32
  Author: felixonmars
Revision: 428264

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
428263, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 19:58:32 UTC (rev 428264)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.5.3.0
+pkgrel=33
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
+ 'haskell-cassava' 'haskell-code-page' 'haskell-criterion-measurement' 
'haskell-exceptions'
+ 'haskell-glob' 'haskell-js-flot' 'haskell-js-jquery' 
'haskell-microstache'
+ 'haskell-mwc-random' 'haskell-optparse-applicative' 
'haskell-statistics'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1fe451850395c181bf79b20498efcc64cbfab9e8fcc26eef83ab7ebf21a412906a44c4ff0a2cb1e77069223027d97a746a35617e1ab79d194d0051d3458b2c2b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+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 haskell-criterion/trunk (PKGBUILD)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:58:16
  Author: felixonmars
Revision: 428263

upgpkg: haskell-criterion 1.5.3.0-33

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:56:35 UTC (rev 428262)
+++ PKGBUILD2019-01-27 19:58:16 UTC (rev 428263)
@@ -4,7 +4,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.5.3.0
-pkgrel=32
+pkgrel=33
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("BSD")


[arch-commits] Commit in haskell-base-compat-batteries/trunk (PKGBUILD)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:56:19
  Author: felixonmars
Revision: 428261

upgpkg: haskell-base-compat-batteries 0.10.5-1

rebuild with base-compat-batteries 0.10.5, swagger2 2.3.1

Modified:
  haskell-base-compat-batteries/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:37:02 UTC (rev 428260)
+++ PKGBUILD2019-01-27 19:56:19 UTC (rev 428261)
@@ -2,8 +2,8 @@
 
 _hkgname=base-compat-batteries
 pkgname=haskell-base-compat-batteries
-pkgver=0.10.1
-pkgrel=27
+pkgver=0.10.5
+pkgrel=1
 pkgdesc="base-compat with extra batteries"
 url="https://hackage.haskell.org/package/base-compat-batteries;
 license=('MIT')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-base-compat')
 makedepends=('ghc'  'haskell-hspec' 'haskell-hspec-discover' 
'haskell-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('7fc65b961b3b6bde315cf0d26fdcbbb0712af930cfb643b8f8ecba8ee02f9a7d0ba014a10014bdf38b688f2e4d1ccbcaa8cab445f64975afb7fee3e7f632bcb9')
+sha512sums=('6f8ebbad8ca5ae54257e9637d36eec48887cfae2e34d0a78339993f63f68419cc86fb031f1d955f129416cf0913e34f243aafe272fcbc5b8b6b43835f898df7f')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-base-compat-batteries/repos (2 files)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:56:35
  Author: felixonmars
Revision: 428262

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-base-compat-batteries/repos/community-staging-x86_64/
  haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD
(from rev 428261, haskell-base-compat-batteries/trunk/PKGBUILD)

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

Copied: haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD 
(from rev 428261, haskell-base-compat-batteries/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 19:56:35 UTC (rev 428262)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=base-compat-batteries
+pkgname=haskell-base-compat-batteries
+pkgver=0.10.5
+pkgrel=1
+pkgdesc="base-compat with extra batteries"
+url="https://hackage.haskell.org/package/base-compat-batteries;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat')
+makedepends=('ghc'  'haskell-hspec' 'haskell-hspec-discover' 
'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6f8ebbad8ca5ae54257e9637d36eec48887cfae2e34d0a78339993f63f68419cc86fb031f1d955f129416cf0913e34f243aafe272fcbc5b8b6b43835f898df7f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:49:07
  Author: felixonmars
Revision: 344884

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 344883, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 19:48:48 UTC (rev 344883)
+++ PKGBUILD2019-01-27 19:49:07 UTC (rev 344884)
@@ -1,109 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Eli Schwartz 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=40.6.3
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="https://pypi.org/project/setuptools/;
-_deps=('appdirs' 'packaging')
-makedepends=("${_deps[@]/#/python-}" "${_deps[@]/#/python2-}" 'git')
-_checkdeps=('mock' 'pip' 'pytest-fixture-config' 'pytest-flake8'
-'pytest-runner' 'pytest-virtualenv' 'wheel')
-checkdepends=("${_checkdeps[@]/#/python-}" "${_checkdeps[@]/#/python2-}" 
'python-paver'
-  'python2-futures' 'git')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('6dbe826eca37e8121e2b6f61045b2923a4c5b3e93e5f985d8990f03c9046a01d2f2fbe70f45a1b3106a2a9c755edbfb0953fdf25909bea0a45db9c179bcd1a90')
-
-export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-
-prepare() {
-  rm -r setuptools-$pkgver/{pkg_resources,setuptools}/{extern,_vendor}
-
-  # Upstream devendoring logic is badly broken, see:
-  # https://bugs.archlinux.org/task/58670
-  # https://github.com/pypa/pip/issues/5429
-  # https://github.com/pypa/setuptools/issues/1383
-  # The simplest fix is to simply rewrite import paths to use the canonical
-  # location in the first place
-  for _module in setuptools pkg_resources '' ; do
-  find setuptools-$pkgver/$_module -name \*.py -exec sed -i \
-  -e 's/from '$_module.extern' import/import/' \
-  -e 's/from '$_module.extern'./from /' \
-  -e 's/import '$_module.extern'./import /' \
-  -e "s/__import__('$_module.extern./__import__('/" \
-  {} +
-done
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i import 
pytest\n\n...@pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -e '/^def test_no_missing_dependencies/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  cp -a setuptools-$pkgver{,-py2}
-
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd "$srcdir"/setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py pytest
-)}
-
-package_python-setuptools() {
-  depends=("${_deps[@]/#/python-}")
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
-
-package_python2-setuptools() {
-  depends=("${_deps[@]/#/python2-}")
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 344883, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 19:49:07 UTC (rev 344884)
@@ -0,0 

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:48:48
  Author: felixonmars
Revision: 344883

upgpkg: python-setuptools 1:40.7.0-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 18:07:35 UTC (rev 344882)
+++ PKGBUILD2019-01-27 19:48:48 UTC (rev 344883)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=40.6.3
+pkgver=40.7.0
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -18,7 +18,7 @@
 checkdepends=("${_checkdeps[@]/#/python-}" "${_checkdeps[@]/#/python2-}" 
'python-paver'
   'python2-futures' 'git')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('6dbe826eca37e8121e2b6f61045b2923a4c5b3e93e5f985d8990f03c9046a01d2f2fbe70f45a1b3106a2a9c755edbfb0953fdf25909bea0a45db9c179bcd1a90')
+sha512sums=('cc65c023247948f0dca1cba4d7f3b2b212876256b9e4a91f228ceef09e753cf3eb627e38c82255e2bfb279d7942ae73b24c81fec0abb85d37a7c08737f5a293c')
 
 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
 


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:37:02
  Author: felixonmars
Revision: 428260

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 19:36:45 UTC (rev 428259)
+++ PKGBUILD2019-01-27 19:37:02 UTC (rev 428260)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-awkward
-pkgver=0.7.2
-pkgrel=1
-pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
-url="https://github.com/scikit-hep/awkward-array;
-license=('BSD')
-arch=('any')
-depends=('python-numpy')
-makedepends=('python-setuptools' 'python-pytest-runner')
-checkdepends=('python-h5py')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('4b98cd4dc3c8f8f2ea58f362718b0652de8b2bfeb3360d8a4fe766d980f346246aa5ca0bd15850224d5758747683c781cf6de5fb3a8e9a35fe7ce20f5a5a96da')
-
-build() {
-  cd awkward-array-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd awkward-array-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd awkward-array-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm "$pkgdir"/usr/README.rst
-}

Copied: python-awkward/repos/community-any/PKGBUILD (from rev 428259, 
python-awkward/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 19:37:02 UTC (rev 428260)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-awkward
+pkgver=0.7.3
+pkgrel=1
+pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
+url="https://github.com/scikit-hep/awkward-array;
+license=('BSD')
+arch=('any')
+depends=('python-numpy')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-h5py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
+sha512sums=('3a344e6d5df98b650687efaf53cc9cb0667da771aaae638b6e48bbc43c83bfae36b0883db658899b5eaa48a2b8ca56d8cebc789286ed5ed002fd3ba336cdb7b6')
+
+build() {
+  cd awkward-array-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd awkward-array-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd awkward-array-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 19:36:45
  Author: felixonmars
Revision: 428259

upgpkg: python-awkward 0.7.3-1

Modified:
  python-awkward/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 19:35:26 UTC (rev 428258)
+++ PKGBUILD2019-01-27 19:36:45 UTC (rev 428259)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-awkward
-pkgver=0.7.2
+pkgver=0.7.3
 pkgrel=1
 pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
 url="https://github.com/scikit-hep/awkward-array;
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python-pytest-runner')
 checkdepends=('python-h5py')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('4b98cd4dc3c8f8f2ea58f362718b0652de8b2bfeb3360d8a4fe766d980f346246aa5ca0bd15850224d5758747683c781cf6de5fb3a8e9a35fe7ce20f5a5a96da')
+sha512sums=('3a344e6d5df98b650687efaf53cc9cb0667da771aaae638b6e48bbc43c83bfae36b0883db658899b5eaa48a2b8ca56d8cebc789286ed5ed002fd3ba336cdb7b6')
 
 build() {
   cd awkward-array-$pkgver
@@ -27,6 +27,4 @@
   cd awkward-array-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm "$pkgdir"/usr/README.rst
 }


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

2019-01-27 Thread Bruno Pagani via arch-commits
Date: Sunday, January 27, 2019 @ 18:31:19
  Author: archange
Revision: 428248

Update URL

Modified:
  libva-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 18:10:11 UTC (rev 428247)
+++ PKGBUILD2019-01-27 18:31:19 UTC (rev 428248)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Intel VA-API Media Applications and Scripts for libva"
 arch=('x86_64')
-url="https://github.com/01org/libva-utils;
+url="https://github.com/intel/libva-utils;
 license=('custom')
 depends=('libva')
 makedepends=('mesa')


[arch-commits] Commit in kernel-headers-musl (2 files)

2019-01-27 Thread Eli Schwartz via arch-commits
Date: Sunday, January 27, 2019 @ 18:10:11
  Author: eschwartz
Revision: 428247

more accurate check for CARCH

Modified:
  kernel-headers-musl/repos/community-x86_64/PKGBUILD
  kernel-headers-musl/trunk/PKGBUILD

-+
 repos/community-x86_64/PKGBUILD |7 +++
 trunk/PKGBUILD  |7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2019-01-27 17:38:59 UTC (rev 428246)
+++ repos/community-x86_64/PKGBUILD 2019-01-27 18:10:11 UTC (rev 428247)
@@ -11,16 +11,15 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sabotage-linux/kernel-headers/archive/v${pkgver/_/-}.tar.gz;)
 
sha512sums=('866f01e5fc3f03eb191c0ce8e8a021b21d57bf5b38bdaf0fc75629f17409817358916177f48a90192dcd2678fc1ed3c917f1176ea3bd42b1ccfffe1a7eb2f8ba')
 
+_CARCH=$CARCH
+[[ $CARCH = i?86 ]] && _CARCH=x86
+
 build() {
   cd "$srcdir"/kernel-headers-${pkgver/_/-}
-  _CARCH=$CARCH
-  [ $CARCH == "i686" ] && _CARCH=x86
   make ARCH=${_CARCH} prefix=/usr/lib/musl
 }
 
 package() {
   cd "$srcdir"/kernel-headers-${pkgver/_/-}
-  _CARCH=$CARCH
-  [ $CARCH == "i686" ] && _CARCH=x86
   make ARCH=${_CARCH} prefix=/usr/lib/musl DESTDIR="$pkgdir" install
 }

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2019-01-27 17:38:59 UTC (rev 428246)
+++ trunk/PKGBUILD  2019-01-27 18:10:11 UTC (rev 428247)
@@ -11,16 +11,15 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sabotage-linux/kernel-headers/archive/v${pkgver/_/-}.tar.gz;)
 
sha512sums=('866f01e5fc3f03eb191c0ce8e8a021b21d57bf5b38bdaf0fc75629f17409817358916177f48a90192dcd2678fc1ed3c917f1176ea3bd42b1ccfffe1a7eb2f8ba')
 
+_CARCH=$CARCH
+[[ $CARCH = i?86 ]] && _CARCH=x86
+
 build() {
   cd "$srcdir"/kernel-headers-${pkgver/_/-}
-  _CARCH=$CARCH
-  [ $CARCH == "i686" ] && _CARCH=x86
   make ARCH=${_CARCH} prefix=/usr/lib/musl
 }
 
 package() {
   cd "$srcdir"/kernel-headers-${pkgver/_/-}
-  _CARCH=$CARCH
-  [ $CARCH == "i686" ] && _CARCH=x86
   make ARCH=${_CARCH} prefix=/usr/lib/musl DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in shared-mime-info/trunk (PKGBUILD)

2019-01-27 Thread Andreas Radke via arch-commits
Date: Sunday, January 27, 2019 @ 18:07:24
  Author: andyrtr
Revision: 344881

upgpkg: shared-mime-info 1.12-1

upstream update 1.12

Modified:
  shared-mime-info/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:49:29 UTC (rev 344880)
+++ PKGBUILD2019-01-27 18:07:24 UTC (rev 344881)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=shared-mime-info
-pkgver=1.10
+pkgver=1.12
 pkgrel=1
 pkgdesc="Freedesktop.org Shared MIME Info"
 arch=('x86_64')
@@ -10,15 +10,15 @@
 depends=('libxml2' 'glib2')
 makedepends=('intltool' 'pkgconfig')
 install=shared-mime-info.install
-url="https://freedesktop.org/Software/shared-mime-info;
-source=(https://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz
+url="https://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec/;
+source=(https://gitlab.freedesktop.org/xdg/shared-mime-info/uploads/80c7f1afbcad2769f38aeb9ba6317a51/$pkgname-$pkgver.tar.xz
 update-mime-database.hook)
-sha256sums=('c625a83b4838befc8cafcd54e3619946515d9e44d63d61c4adf7f5513ddfbebf'
+sha256sums=('18b2f0fe07ed0d6f81951a5fd5ece44de9c8aeb4dc5bb20d4f595f6cc6bd403e'
 '7ecdd55ff7c4331e188cf46debbcc5660edb0e2bbeb4dd87cc5b87278c292821')
 options=(!makeflags)
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   # https://bugs.archlinux.org/task/38836
   # https://bugs.freedesktop.org/show_bug.cgi?id=70366
   export ac_cv_func_fdatasync=no
@@ -27,12 +27,12 @@
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make -k check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
   install -Dm644 "$srcdir"/update-mime-database.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-mime-database.hook


[arch-commits] Commit in shared-mime-info/repos (4 files)

2019-01-27 Thread Andreas Radke via arch-commits
Date: Sunday, January 27, 2019 @ 18:07:35
  Author: andyrtr
Revision: 344882

archrelease: copy trunk to testing-x86_64

Added:
  shared-mime-info/repos/testing-x86_64/
  shared-mime-info/repos/testing-x86_64/PKGBUILD
(from rev 344881, shared-mime-info/trunk/PKGBUILD)
  shared-mime-info/repos/testing-x86_64/shared-mime-info.install
(from rev 344881, shared-mime-info/trunk/shared-mime-info.install)
  shared-mime-info/repos/testing-x86_64/update-mime-database.hook
(from rev 344881, shared-mime-info/trunk/update-mime-database.hook)

---+
 PKGBUILD  |   39 +++
 shared-mime-info.install  |7 +++
 update-mime-database.hook |   11 +++
 3 files changed, 57 insertions(+)

Copied: shared-mime-info/repos/testing-x86_64/PKGBUILD (from rev 344881, 
shared-mime-info/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-27 18:07:35 UTC (rev 344882)
@@ -0,0 +1,39 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=shared-mime-info
+pkgver=1.12
+pkgrel=1
+pkgdesc="Freedesktop.org Shared MIME Info"
+arch=('x86_64')
+license=('GPL2')
+depends=('libxml2' 'glib2')
+makedepends=('intltool' 'pkgconfig')
+install=shared-mime-info.install
+url="https://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec/;
+source=(https://gitlab.freedesktop.org/xdg/shared-mime-info/uploads/80c7f1afbcad2769f38aeb9ba6317a51/$pkgname-$pkgver.tar.xz
+update-mime-database.hook)
+sha256sums=('18b2f0fe07ed0d6f81951a5fd5ece44de9c8aeb4dc5bb20d4f595f6cc6bd403e'
+'7ecdd55ff7c4331e188cf46debbcc5660edb0e2bbeb4dd87cc5b87278c292821')
+options=(!makeflags)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  # https://bugs.archlinux.org/task/38836
+  # https://bugs.freedesktop.org/show_bug.cgi?id=70366
+  export ac_cv_func_fdatasync=no
+  ./configure --prefix=/usr --disable-update-mimedb
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/update-mime-database.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-mime-database.hook
+}

Copied: shared-mime-info/repos/testing-x86_64/shared-mime-info.install (from 
rev 344881, shared-mime-info/trunk/shared-mime-info.install)
===
--- testing-x86_64/shared-mime-info.install (rev 0)
+++ testing-x86_64/shared-mime-info.install 2019-01-27 18:07:35 UTC (rev 
344882)
@@ -0,0 +1,7 @@
+post_remove() {
+  if [ -d usr/share/mime ]; then
+rm -f 
usr/share/mime/{globs,globs2,icons,treemagic,generic-icons,types,magic,XMLnamespaces,subclasses,aliases,mime.cache}
+rm -rf 
usr/share/mime/{application,audio,image,inode,message,model,multipart,text,video,x-content,x-epoc}
+rmdir --ignore-fail-on-non-empty usr/share/mime
+  fi
+}

Copied: shared-mime-info/repos/testing-x86_64/update-mime-database.hook (from 
rev 344881, shared-mime-info/trunk/update-mime-database.hook)
===
--- testing-x86_64/update-mime-database.hook(rev 0)
+++ testing-x86_64/update-mime-database.hook2019-01-27 18:07:35 UTC (rev 
344882)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/mime/packages/*.xml
+
+[Action]
+Description = Updating the MIME type database...
+When = PostTransaction
+Exec = /usr/bin/update-mime-database /usr/share/mime


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

2019-01-27 Thread Massimiliano Torromeo via arch-commits
Date: Sunday, January 27, 2019 @ 17:38:28
  Author: mtorromeo
Revision: 428245

upgpkg: python-oauthlib 3.0.1-1

Modified:
  python-oauthlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 17:15:13 UTC (rev 428244)
+++ PKGBUILD2019-01-27 17:38:28 UTC (rev 428245)
@@ -2,7 +2,7 @@
 
 pkgbase=python-oauthlib
 pkgname=(python-oauthlib python2-oauthlib)
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 _libname=oauthlib
 pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
@@ -11,7 +11,7 @@
 license=('BSD')
 
source=(https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
 makedepends=(python-setuptools python2-setuptools)
-sha256sums=('0a8b2e0daa7afb62bd1b0b387b7a3723fa9a35d1183694ca5a5c8e3d6df59913')
+sha256sums=('0ce32c5d989a1827e3f1148f98b9085ed2370fc939bf524c9c851d8714797298')
 
 build() {
cd "$srcdir/$_libname-$pkgver"


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

2019-01-27 Thread Massimiliano Torromeo via arch-commits
Date: Sunday, January 27, 2019 @ 17:38:59
  Author: mtorromeo
Revision: 428246

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 17:38:28 UTC (rev 428245)
+++ PKGBUILD2019-01-27 17:38:59 UTC (rev 428246)
@@ -1,46 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgbase=python-oauthlib
-pkgname=(python-oauthlib python2-oauthlib)
-pkgver=3.0.0
-pkgrel=1
-_libname=oauthlib
-pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
-arch=(any)
-url="https://github.com/idan/oauthlib;
-license=('BSD')
-source=(https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
-makedepends=(python-setuptools python2-setuptools)
-sha256sums=('0a8b2e0daa7afb62bd1b0b387b7a3723fa9a35d1183694ca5a5c8e3d6df59913')
-
-build() {
-   cd "$srcdir/$_libname-$pkgver"
-
-   rm -rf ../buildpy3; mkdir ../buildpy3
-   python setup.py build -b ../buildpy3
-
-   rm -rf ../buildpy2; mkdir ../buildpy2
-   python2 setup.py build -b ../buildpy2
-}
-
-package_python-oauthlib() {
-   depends=(python-cryptography)
-
-   cd "$srcdir/$_libname-$pkgver"
-   rm -rf build; ln -s ../buildpy3 build
-   python setup.py install --skip-build -O1 --root="$pkgdir"
-   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   chmod -R a+r "$pkgdir/usr/lib"
-}
-
-package_python2-oauthlib() {
-   depends=(python2-cryptography)
-
-   cd "$srcdir/$_libname-$pkgver"
-   rm -rf build; ln -s ../buildpy2 build
-   python2 setup.py install --skip-build -O1 --root="$pkgdir"
-   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   chmod -R a+r "$pkgdir/usr/lib"
-}

Copied: python-oauthlib/repos/community-any/PKGBUILD (from rev 428245, 
python-oauthlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 17:38:59 UTC (rev 428246)
@@ -0,0 +1,46 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgbase=python-oauthlib
+pkgname=(python-oauthlib python2-oauthlib)
+pkgver=3.0.1
+pkgrel=1
+_libname=oauthlib
+pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
+arch=(any)
+url="https://github.com/idan/oauthlib;
+license=('BSD')
+source=(https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
+makedepends=(python-setuptools python2-setuptools)
+sha256sums=('0ce32c5d989a1827e3f1148f98b9085ed2370fc939bf524c9c851d8714797298')
+
+build() {
+   cd "$srcdir/$_libname-$pkgver"
+
+   rm -rf ../buildpy3; mkdir ../buildpy3
+   python setup.py build -b ../buildpy3
+
+   rm -rf ../buildpy2; mkdir ../buildpy2
+   python2 setup.py build -b ../buildpy2
+}
+
+package_python-oauthlib() {
+   depends=(python-cryptography)
+
+   cd "$srcdir/$_libname-$pkgver"
+   rm -rf build; ln -s ../buildpy3 build
+   python setup.py install --skip-build -O1 --root="$pkgdir"
+   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   chmod -R a+r "$pkgdir/usr/lib"
+}
+
+package_python2-oauthlib() {
+   depends=(python2-cryptography)
+
+   cd "$srcdir/$_libname-$pkgver"
+   rm -rf build; ln -s ../buildpy2 build
+   python2 setup.py install --skip-build -O1 --root="$pkgdir"
+   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   chmod -R a+r "$pkgdir/usr/lib"
+}


[arch-commits] Commit in tensorflow/repos/community-x86_64 (20 files)

2019-01-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 27, 2019 @ 17:15:13
  Author: svenstaro
Revision: 428244

archrelease: copy trunk to community-x86_64

Added:
  tensorflow/repos/community-x86_64/21017.patch
(from rev 428243, tensorflow/trunk/21017.patch)
  
tensorflow/repos/community-x86_64/5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch
(from rev 428243, 
tensorflow/trunk/5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch)
  tensorflow/repos/community-x86_64/PKGBUILD
(from rev 428243, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-x86_64/explicitly_import_bazelrc.patch
(from rev 428243, tensorflow/trunk/explicitly_import_bazelrc.patch)
  tensorflow/repos/community-x86_64/protobuf-python37-apply.patch
(from rev 428243, tensorflow/trunk/protobuf-python37-apply.patch)
  tensorflow/repos/community-x86_64/protobuf-python37.patch
(from rev 428243, tensorflow/trunk/protobuf-python37.patch)
  tensorflow/repos/community-x86_64/protobuf-version-bump.patch
(from rev 428243, tensorflow/trunk/protobuf-version-bump.patch)
  tensorflow/repos/community-x86_64/python37.patch
(from rev 428243, tensorflow/trunk/python37.patch)
  tensorflow/repos/community-x86_64/update-cython.patch
(from rev 428243, tensorflow/trunk/update-cython.patch)
  tensorflow/repos/community-x86_64/update-protobuf.patch
(from rev 428243, tensorflow/trunk/update-protobuf.patch)
Deleted:
  tensorflow/repos/community-x86_64/21017.patch
  
tensorflow/repos/community-x86_64/5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch
  tensorflow/repos/community-x86_64/PKGBUILD
  tensorflow/repos/community-x86_64/explicitly_import_bazelrc.patch
  tensorflow/repos/community-x86_64/protobuf-python37-apply.patch
  tensorflow/repos/community-x86_64/protobuf-python37.patch
  tensorflow/repos/community-x86_64/protobuf-version-bump.patch
  tensorflow/repos/community-x86_64/python37.patch
  tensorflow/repos/community-x86_64/update-cython.patch
  tensorflow/repos/community-x86_64/update-protobuf.patch

+
 21017.patch|   42 -
 5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch |  164 +++---
 PKGBUILD   |  550 ---
 explicitly_import_bazelrc.patch|   48 +-
 protobuf-python37-apply.patch  |   56 +-
 protobuf-python37.patch|  182 +++
 protobuf-version-bump.patch|   60 +-
 python37.patch |  140 ++---
 update-cython.patch|   68 +-
 update-protobuf.patch  |  292 ++--
 10 files changed, 816 insertions(+), 786 deletions(-)

Deleted: 21017.patch
===
--- 21017.patch 2019-01-27 17:14:46 UTC (rev 428243)
+++ 21017.patch 2019-01-27 17:15:13 UTC (rev 428244)
@@ -1,21 +0,0 @@
-From fb8d1ca4eaefe58d42c27b6fc676f64f137f4675 Mon Sep 17 00:00:00 2001
-From: Ray Kim 
-Date: Sat, 21 Jul 2018 21:42:15 +0900
-Subject: [PATCH] fixed build error on gcc-7
-

- tensorflow/compiler/xla/service/gpu/xfeed_queue.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/tensorflow/compiler/xla/service/gpu/xfeed_queue.h 
b/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
-index 737c7eb0253..dd46ff433ba 100644
 a/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
-+++ b/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
-@@ -17,6 +17,7 @@ limitations under the License.
- #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_XFEED_QUEUE_H_
- 
- #include 
-+#include 
- #include 
- 
- #include "tensorflow/core/platform/mutex.h"

Copied: tensorflow/repos/community-x86_64/21017.patch (from rev 428243, 
tensorflow/trunk/21017.patch)
===
--- 21017.patch (rev 0)
+++ 21017.patch 2019-01-27 17:15:13 UTC (rev 428244)
@@ -0,0 +1,21 @@
+From fb8d1ca4eaefe58d42c27b6fc676f64f137f4675 Mon Sep 17 00:00:00 2001
+From: Ray Kim 
+Date: Sat, 21 Jul 2018 21:42:15 +0900
+Subject: [PATCH] fixed build error on gcc-7
+
+---
+ tensorflow/compiler/xla/service/gpu/xfeed_queue.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/tensorflow/compiler/xla/service/gpu/xfeed_queue.h 
b/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
+index 737c7eb0253..dd46ff433ba 100644
+--- a/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
 b/tensorflow/compiler/xla/service/gpu/xfeed_queue.h
+@@ -17,6 +17,7 @@ limitations under the License.
+ #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_XFEED_QUEUE_H_
+ 
+ #include 
++#include 
+ #include 
+ 
+ #include "tensorflow/core/platform/mutex.h"

Deleted: 5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch
===
--- 5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch  2019-01-27 17:14:46 UTC 
(rev 428243)
+++ 5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch  2019-01-27 17:15:13 UTC 

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

2019-01-27 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 27, 2019 @ 17:14:46
  Author: svenstaro
Revision: 428243

upgpkg: tensorflow 1.12.0-6

Install headers and add some CUDA archs

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:59:58 UTC (rev 428242)
+++ PKGBUILD2019-01-27 17:14:46 UTC (rev 428243)
@@ -6,7 +6,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=1.12.0
 _pkgver=1.12.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
@@ -36,8 +36,6 @@
 
 prepare() {
   patch -d tensorflow-${_pkgver} -Np1 -i 
${srcdir}/5b14577d42842871f1cb0eb8dfe77d32db1eb654.patch
-  # https://github.com/tensorflow/tensorflow/issues/20517
-  # patch -d tensorflow-${_pkgver} -Np1 -i ${srcdir}/python37.patch
   # https://github.com/tensorflow/tensorflow/issues/20950
   patch -d tensorflow-${_pkgver} -Np1 -i ${srcdir}/protobuf-version-bump.patch
   patch -d tensorflow-${_pkgver} -Np1 -i 
${srcdir}/protobuf-python37-apply.patch
@@ -81,7 +79,12 @@
   export CC_OPT_FLAGS="-march=x86-64"
   export TF_NEED_CUDA=0
   ./configure
-  "${srcdir}"/bazel-0.19.2-linux-x86_64 build --config=opt 
//tensorflow:libtensorflow.so //tensorflow:libtensorflow_cc.so 
//tensorflow/tools/pip_package:build_pip_package
+  "${srcdir}"/bazel-0.19.2-linux-x86_64 \
+build --config=opt \
+  //tensorflow:libtensorflow.so \
+  //tensorflow:libtensorflow_cc.so \
+  //tensorflow:install_headers \
+  //tensorflow/tools/pip_package:build_pip_package
   bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmp
 
   cd ${srcdir}/tensorflow-${_pkgver}-cuda
@@ -94,9 +97,14 @@
   export TF_CUDA_VERSION=$($CUDA_TOOLKIT_PATH/bin/nvcc --version | sed -n 
's/^.*release \(.*\),.*/\1/p')
   export CUDNN_INSTALL_PATH=/usr/lib
   export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
/usr/include/cudnn.h)
-  export TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.5,5.2,6.1,6.2,7.0,7.2,7.5
+  export 
TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.2,3.5,3.7,5.0,5.2,5.3,6.0,6.1,6.2,7.0,7.2,7.5
   ./configure
-  "${srcdir}"/bazel-0.19.2-linux-x86_64 build --config=opt --config=cuda 
//tensorflow:libtensorflow.so //tensorflow:libtensorflow_cc.so 
//tensorflow/tools/pip_package:build_pip_package
+  "${srcdir}"/bazel-0.19.2-linux-x86_64 \
+build --config=opt --config=opt \
+  //tensorflow:libtensorflow.so \
+  //tensorflow:libtensorflow_cc.so \
+  //tensorflow:install_headers \
+  //tensorflow/tools/pip_package:build_pip_package
   bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpcuda
 
   cd ${srcdir}/tensorflow-${_pkgver}-opt
@@ -103,7 +111,12 @@
   export CC_OPT_FLAGS="-march=haswell"
   export TF_NEED_CUDA=0
   ./configure
-  "${srcdir}"/bazel-0.19.2-linux-x86_64 build --config=opt 
//tensorflow:libtensorflow.so //tensorflow:libtensorflow_cc.so 
//tensorflow/tools/pip_package:build_pip_package
+  "${srcdir}"/bazel-0.19.2-linux-x86_64 \
+build --config=opt \
+  //tensorflow:libtensorflow.so \
+  //tensorflow:libtensorflow_cc.so \
+  //tensorflow:install_headers \
+  //tensorflow/tools/pip_package:build_pip_package
   bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpopt
 
   cd ${srcdir}/tensorflow-${_pkgver}-opt-cuda
@@ -116,9 +129,14 @@
   export TF_CUDA_VERSION=$($CUDA_TOOLKIT_PATH/bin/nvcc --version | sed -n 
's/^.*release \(.*\),.*/\1/p')
   export CUDNN_INSTALL_PATH=/usr/lib
   export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
/usr/include/cudnn.h)
-  export TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.5,5.2,6.1,6.2,7.0,7.2,7.5
+  export 
TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.2,3.5,3.7,5.0,5.2,5.3,6.0,6.1,6.2,7.0,7.2,7.5
   ./configure
-  "${srcdir}"/bazel-0.19.2-linux-x86_64 build --config=opt --config=cuda 
//tensorflow:libtensorflow.so //tensorflow:libtensorflow_cc.so 
//tensorflow/tools/pip_package:build_pip_package
+  "${srcdir}"/bazel-0.19.2-linux-x86_64 \
+build --config=opt --config=opt \
+  //tensorflow:libtensorflow.so \
+  //tensorflow:libtensorflow_cc.so \
+  //tensorflow:install_headers \
+  //tensorflow/tools/pip_package:build_pip_package
   bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpcudaopt
 }
 
@@ -132,6 +150,9 @@
   install -Dm755 bazel-bin/tensorflow/libtensorflow_framework.so 
${pkgdir}/usr/lib/libtensorflow_framework.so
   install -Dm644 tensorflow/c/c_api.h 
${pkgdir}/usr/include/tensorflow/c/c_api.h
   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  mkdir -p ${pkgdir}/usr/include/tensorflow/
+  cp -r 

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

2019-01-27 Thread Brett Cornwall via arch-commits
Date: Sunday, January 27, 2019 @ 16:59:58
  Author: ainola
Revision: 428242

archrelease: copy trunk to community-x86_64

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

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

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

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


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

2019-01-27 Thread Brett Cornwall via arch-commits
Date: Sunday, January 27, 2019 @ 16:59:40
  Author: ainola
Revision: 428241

upgpkg: scdoc-1.8.0

Modified:
  scdoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:26:09 UTC (rev 428240)
+++ PKGBUILD2019-01-27 16:59:40 UTC (rev 428241)
@@ -2,7 +2,7 @@
 # Contributor: Drew DeVault
 
 pkgname=scdoc
-pkgver=1.6.1
+pkgver=1.8.0
 pkgrel=1
 license=('MIT')
 pkgdesc='Tool for generating roff manual pages'
@@ -9,7 +9,7 @@
 arch=('x86_64')
 url='https://git.sr.ht/~sircmpwn/scdoc/'
 
source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('04e85c4eb66b06bccc579e02239738bc16cbdbe93138fd98cce3e33827f8a0669e6bdf3944a8d89751735ec43b8cb27dca4da79c2d9547132891a5dff09f833f')
+sha512sums=('2eafc29a7379c6123749fac21ec7c7a0319c6c2dc7cec995e8ef4ca6613bad48c3407640c8e0ff0c3281706bbe4dde706b8c68cfddadf94bb2b50d032c5ce044')
 
 build() {
 cd "$pkgname-$pkgver"


[arch-commits] Commit in gtk3/repos/extra-x86_64 (12 files)

2019-01-27 Thread Jan Steffens via arch-commits
Date: Sunday, January 27, 2019 @ 16:49:29
  Author: heftig
Revision: 344880

archrelease: copy trunk to extra-x86_64

Added:
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 344879, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
(from rev 344879, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
(from rev 344879, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
(from rev 344879, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 344879, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 344879, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

--+
 PKGBUILD |  164 -
 gtk-query-immodules-3.0.hook |   22 ++---
 gtk-update-icon-cache.hook   |   26 +++---
 gtk-update-icon-cache.script |   20 ++---
 gtk3.install |6 -
 settings.ini |8 +-
 6 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 16:49:09 UTC (rev 344879)
+++ PKGBUILD2019-01-27 16:49:29 UTC (rev 344880)
@@ -1,82 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.24.4
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(x86_64)
-url="https://www.gtk.org/;
-depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
- libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
- adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa
- cantarell-fonts colord rest libcups libcanberra)
-makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)
-license=(LGPL)
-_commit=a02de1c9d9ed99e51ae4470c28644d3222a0bf8f  # tags/3.24.4^0
-source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
-settings.ini
-gtk-query-immodules-3.0.hook
-gtk-update-icon-cache.hook
-gtk-update-icon-cache.script)
-sha256sums=('SKIP'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202'
-'de46e5514ff39a7a65e01e485e874775ab1c0ad20b8e94ada43f4a6af1370845'
-'496064a9dd6214bd58f689dd817dbdc4d7f17d42a8c9940a87018c3f829ce308'
-'f1d3a0dbfd82f7339301abecdbe5f024337919b48bd0e09296bb0e79863b2541')
-
-pkgver() {
-  cd gtk
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gtk
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gtk
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-schemas-compile \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend \
---enable-gtk-doc
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_gtk3() {
-  depends+=(gtk-update-icon-cache)
-  provides=(gtk3-print-backends)
-  conflicts=(gtk3-print-backends)
-  replaces=("gtk3-print-backends<=3.22.26-1")
-  install=gtk3.install
-
-  DESTDIR="$pkgdir" make -C gtk install
-
-  install -Dt "$pkgdir/usr/share/gtk-3.0" -m644 settings.ini
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 
gtk-query-immodules-3.0.hook
-
-  # split this out to use with gtk2 too
-  mv "$pkgdir/usr/bin/gtk-update-icon-cache" "$srcdir"
-}
-
-package_gtk-update-icon-cache() {
-  pkgdesc="GTK+ icon cache updater"
-  depends=(gdk-pixbuf2 librsvg hicolor-icon-theme)
-
-  install -Dt "$pkgdir/usr/bin" gtk-update-icon-cache
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 
gtk-update-icon-cache.hook
-  install -D gtk-update-icon-cache.script 
"$pkgdir/usr/share/libalpm/scripts/gtk-update-icon-cache"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gtk3/repos/extra-x86_64/PKGBUILD (from rev 344879, gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:49:29 UTC (rev 344880)
@@ -0,0 +1,82 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.24.4+15+g80b5024239
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(x86_64)
+url="https://www.gtk.org/;
+depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
+ libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
+ 

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

2019-01-27 Thread Jan Steffens via arch-commits
Date: Sunday, January 27, 2019 @ 16:49:09
  Author: heftig
Revision: 344879

3.24.4+15+g80b5024239-1: Fix FS#61526

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:10:30 UTC (rev 344878)
+++ PKGBUILD2019-01-27 16:49:09 UTC (rev 344879)
@@ -3,7 +3,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.24.4
+pkgver=3.24.4+15+g80b5024239
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(x86_64)
@@ -14,7 +14,7 @@
  cantarell-fonts colord rest libcups libcanberra)
 makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)
 license=(LGPL)
-_commit=a02de1c9d9ed99e51ae4470c28644d3222a0bf8f  # tags/3.24.4^0
+_commit=80b5024239ee358ede8203666dfe9ea790a29b70  # gtk-3-24
 source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
 settings.ini
 gtk-query-immodules-3.0.hook


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

2019-01-27 Thread Morten Linderud via arch-commits
Date: Sunday, January 27, 2019 @ 16:25:59
  Author: foxboron
Revision: 428239

upgpkg: go 2:1.11.5-2

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:09:52 UTC (rev 428238)
+++ PKGBUILD2019-01-27 16:25:59 UTC (rev 428239)
@@ -15,7 +15,7 @@
 pkgname=(go go-pie)
 epoch=2
 pkgver=1.11.5
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://golang.org/'
 license=(BSD)
@@ -42,7 +42,6 @@
 
 build() {
   export GOPATH="$srcdir/"
-  export GO_GCFLAGS="-trimpath=$GOPATH"
 
   for _pkgname in ${pkgname[@]}; do
 export GOROOT="$srcdir/$_pkgname"
@@ -101,6 +100,11 @@
   conflicts=(go)
 
   _package $pkgname
+
+  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
+  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
+  # Make sure it exists without rebuilding std with -buildmode=pie.
+  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
 }
 
 # vim: ts=2 sw=2 et


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

2019-01-27 Thread Morten Linderud via arch-commits
Date: Sunday, January 27, 2019 @ 16:26:09
  Author: foxboron
Revision: 428240

archrelease: copy trunk to community-x86_64

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

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

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

Copied: go/repos/community-x86_64/PKGBUILD (from rev 428239, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:26:09 UTC (rev 428240)
@@ -0,0 +1,110 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.5
+pkgrel=2
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
+'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
+
+export GOOS=linux
+case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+esac
+export GOROOT_FINAL=/usr/lib/go
+export GOROOT_BOOTSTRAP=/usr/lib/go
+export GOCACHE=off
+
+prepare() {
+  cp -r $pkgbase $pkgbase-pie
+
+  cd $pkgbase-pie
+  patch -p1 -i 

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

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:09:52
  Author: arodseth
Revision: 428238

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 428237, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 16:09:35 UTC (rev 428237)
+++ PKGBUILD2019-01-27 16:09:52 UTC (rev 428238)
@@ -1,27 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=0.6.1
-pkgrel=1
-pkgdesc='Python compiler that produces faster executables and depends on 
libpython'
-arch=('any')
-url='https://nuitka.net/'
-license=('APACHE')
-depends=('python')
-makedepends=('python-setuptools')
-options=('!emptydirs')
-optdepends=('chrpath: for building standalone executables')
-source=("$pkgname-$pkgver.tgz::https://github.com/Nuitka/Nuitka/archive/$pkgver.tar.gz;)
-#source=("${url}releases/Nuitka-$pkgver.tar.bz2"{,.sig})
-sha256sums=('2a51eeb9f866152343fc5ebf1f3c736f9e7a82706f5723b443a8359ce4a28c59')
-validpgpkeys=('D96ADCA1377F1CEB6B5103F11BFC33752912B99C') # Kay Hayen
-
-package() {
-  cd "Nuitka-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# getver: pypistats.org/packages/nuitka
-# vim: sw=2 ts=2 et:

Copied: nuitka/repos/community-any/PKGBUILD (from rev 428237, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:09:52 UTC (rev 428238)
@@ -0,0 +1,25 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=0.6.1.1
+pkgrel=1
+pkgdesc='Python compiler that produces faster executables and depends on 
libpython'
+arch=(any)
+url='https://nuitka.net/'
+license=(APACHE)
+depends=(python)
+makedepends=(python-setuptools)
+options=(!emptydirs)
+optdepends=('chrpath: for building standalone executables')
+source=("$pkgname-$pkgver.tgz::https://github.com/Nuitka/Nuitka/archive/$pkgver.tar.gz;)
+sha256sums=('f5275358d2092ced5aa977593fcc0bc104305affd9535f2708415a90ec5b9036')
+validpgpkeys=('D96ADCA1377F1CEB6B5103F11BFC33752912B99C') # Kay Hayen
+
+package() {
+  cd "Nuitka-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# getver: pypistats.org/packages/nuitka
+# vim: sw=2 ts=2 et:


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

2019-01-27 Thread Gaëtan Bisson via arch-commits
Date: Sunday, January 27, 2019 @ 16:09:54
  Author: bisson
Revision: 344877

upstream update

Modified:
  iana-etc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:02:40 UTC (rev 344876)
+++ PKGBUILD2019-01-27 16:09:54 UTC (rev 344877)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=iana-etc
-pkgver=20181219
+pkgver=20190125
 pkgrel=1
 pkgdesc='/etc/protocols and /etc/services provided by IANA'
 url='https://www.iana.org/protocols'
@@ -12,7 +12,7 @@
 
source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
 
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
 'LICENSE')
-sha256sums=('c34cd8bec26b942b748f102718b4693af386e96a6d20ffbf0b7bd8946186a10e'
+sha256sums=('b4dcb54af98d10af309ea7c4ba13f1416b5597dd81e65d02714404e31508a655'
 '4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
 'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
 


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

2019-01-27 Thread Gaëtan Bisson via arch-commits
Date: Sunday, January 27, 2019 @ 16:10:30
  Author: bisson
Revision: 344878

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
(from rev 344877, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
(from rev 344877, iana-etc/trunk/PKGBUILD)

--+
 LICENSE  |1 +
 PKGBUILD |   50 ++
 2 files changed, 51 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 344877, 
iana-etc/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2019-01-27 16:10:30 UTC (rev 344878)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 344877, 
iana-etc/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-01-27 16:10:30 UTC (rev 344878)
@@ -0,0 +1,50 @@
+# Contributor: Thomas Bächler 
+# Maintainer: Gaetan Bisson 
+
+pkgname=iana-etc
+pkgver=20190125
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='https://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
+
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
+'LICENSE')
+sha256sums=('b4dcb54af98d10af309ea7c4ba13f1416b5597dd81e65d02714404e31508a655'
+'4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
+'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+pkgver() {
+   cd "${srcdir}"
+   awk -F"[<>]" '/updated/{print$3;nextfile}' * |
+   sort -n | tail -n 1 | tr -d -
+}
+
+package() {
+   cd "${srcdir}"
+   install -d "${pkgdir}/etc"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+   install -Dm644 protocol-numbers.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+   install -Dm644 service-names-port-numbers.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n" }
+(/ "${pkgdir}/etc/protocols"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/port-numbers.iana\n" }
+(/ "${pkgdir}/etc/services"
+
+}


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

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:09:35
  Author: arodseth
Revision: 428237

upgpkg: nuitka 0.6.1.1-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:05:33 UTC (rev 428236)
+++ PKGBUILD2019-01-27 16:09:35 UTC (rev 428237)
@@ -2,24 +2,22 @@
 # Contributor: Panagiotis Mavrogiorgos 
 
 pkgname=nuitka
-pkgver=0.6.1
+pkgver=0.6.1.1
 pkgrel=1
 pkgdesc='Python compiler that produces faster executables and depends on 
libpython'
-arch=('any')
+arch=(any)
 url='https://nuitka.net/'
-license=('APACHE')
-depends=('python')
-makedepends=('python-setuptools')
-options=('!emptydirs')
+license=(APACHE)
+depends=(python)
+makedepends=(python-setuptools)
+options=(!emptydirs)
 optdepends=('chrpath: for building standalone executables')
 
source=("$pkgname-$pkgver.tgz::https://github.com/Nuitka/Nuitka/archive/$pkgver.tar.gz;)
-#source=("${url}releases/Nuitka-$pkgver.tar.bz2"{,.sig})
-sha256sums=('2a51eeb9f866152343fc5ebf1f3c736f9e7a82706f5723b443a8359ce4a28c59')
+sha256sums=('f5275358d2092ced5aa977593fcc0bc104305affd9535f2708415a90ec5b9036')
 validpgpkeys=('D96ADCA1377F1CEB6B5103F11BFC33752912B99C') # Kay Hayen
 
 package() {
   cd "Nuitka-$pkgver"
-
   python setup.py install --root="$pkgdir" --optimize=1
 }
 


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

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:05:33
  Author: arodseth
Revision: 428236

archrelease: copy trunk to community-x86_64

Added:
  compton/repos/community-x86_64/PKGBUILD
(from rev 428235, compton/trunk/PKGBUILD)
  compton/repos/community-x86_64/compton.conf
(from rev 428235, compton/trunk/compton.conf)
Deleted:
  compton/repos/community-x86_64/PKGBUILD
  compton/repos/community-x86_64/compton.conf

--+
 PKGBUILD |  102 ++--
 compton.conf |  472 -
 2 files changed, 284 insertions(+), 290 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 16:05:21 UTC (rev 428235)
+++ PKGBUILD2019-01-27 16:05:33 UTC (rev 428236)
@@ -1,51 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: WorMzy Tykashi 
-# Contributor: OK100 
-# Contributor: Valère Monseur 
-
-pkgname=compton
-pkgver=5.0
-pkgrel=1
-pkgdesc='X compositor that may fix tearing issues'
-arch=(x86_64)
-url='https://github.com/yshui/compton'
-license=(MIT)
-makedepends=(asciidoc git mesa meson ninja setconf)
-depends=(hicolor-icon-theme libconfig libdbus libev libgl libxdg-basedir pcre
- pixman xcb-util-image xcb-util-renderutil)
-backup=(etc/xdg/compton.conf)
-optdepends=('dbus:  For controlling compton via D-Bus'
-'xorg-xwininfo: For compton-trans'
-'xorg-xprop:For compton-trans')
-source=(compton.conf
-"git+https://github.com/yshui/compton#tag=v${pkgver%.0};)
-sha256sums=('b5ec9c21a5b71ccca70917b1a2c99cd863d638d881a4d8f8e12171e80486db7f'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-  setconf $pkgname.desktop Exec compton
-  setconf $pkgname.desktop Comment 'Compositor for X11'
-  setconf $pkgname.desktop TryExec /usr/bin/compton
-}
-
-build() {
-  mkdir -p build
-  arch-meson build $pkgname -D build_docs=true
-  ninja -v -C build
-}
-
-check() {
-  ninja -C build test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 compton.conf "$pkgdir/etc/xdg/compton.conf"
-  cd $pkgname
-  install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
-  install -Dm644 LICENSES/MIT "$pkgdir/usr/share/licenses/$pkgname/MIT"
-  install -Dm644 LICENSES/MPL-2.0 "$pkgdir/usr/share/licenses/$pkgname/MPL-2.0"
-}
-
-# vim: ts=2 sw=2 et

Copied: compton/repos/community-x86_64/PKGBUILD (from rev 428235, 
compton/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:05:33 UTC (rev 428236)
@@ -0,0 +1,51 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: WorMzy Tykashi 
+# Contributor: OK100 
+# Contributor: Valère Monseur 
+
+pkgname=compton
+pkgver=5.0
+pkgrel=1
+pkgdesc='X compositor that may fix tearing issues'
+arch=(x86_64)
+url='https://github.com/yshui/compton'
+license=(MIT)
+makedepends=(asciidoc git mesa meson ninja setconf)
+depends=(hicolor-icon-theme libconfig libdbus libev libgl libxdg-basedir pcre
+ pixman xcb-util-image xcb-util-renderutil)
+backup=(etc/xdg/compton.conf)
+optdepends=('dbus:  For controlling compton via D-Bus'
+'xorg-xwininfo: For compton-trans'
+'xorg-xprop:For compton-trans')
+source=(compton.conf
+"git+https://github.com/yshui/compton#tag=v${pkgver%.0};)
+sha256sums=('1857c880bfbc6c60e68bc996448a6e071501370de57ed5b9cbc0927bc7bd48bf'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+  setconf $pkgname.desktop Exec compton
+  setconf $pkgname.desktop Comment 'Compositor for X11'
+  setconf $pkgname.desktop TryExec /usr/bin/compton
+}
+
+build() {
+  mkdir -p build
+  arch-meson build $pkgname -D build_docs=true
+  ninja -v -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 compton.conf "$pkgdir/etc/xdg/compton.conf"
+  cd $pkgname
+  install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
+  install -Dm644 LICENSES/MIT "$pkgdir/usr/share/licenses/$pkgname/MIT"
+  install -Dm644 LICENSES/MPL-2.0 "$pkgdir/usr/share/licenses/$pkgname/MPL-2.0"
+}
+
+# vim: ts=2 sw=2 et

Deleted: compton.conf
===
--- compton.conf2019-01-27 16:05:21 UTC (rev 428235)
+++ compton.conf2019-01-27 16:05:33 UTC (rev 428236)
@@ -1,239 +0,0 @@
-# Thank you code_nomad: http://9m.no/ꪯ鵞
-# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton
-
-#
-#
-# Backend
-#
-#
-
-# Backend to use: "xrender" or "glx".
-# GLX backend is typically much faster but depends on a sane driver.
-backend = "glx";
-
-#
-#
-# GLX backend
-#
-#
-
-glx-no-stencil = true;
-
-# GLX backend: Copy unmodified regions from front buffer instead of 

[arch-commits] Commit in compton/trunk (PKGBUILD compton.conf)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:05:21
  Author: arodseth
Revision: 428235

upgpkg: compton 5.0-1

Modified:
  compton/trunk/PKGBUILD
  compton/trunk/compton.conf

--+
 PKGBUILD |2 +-
 compton.conf |6 --
 2 files changed, 1 insertion(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:03:28 UTC (rev 428234)
+++ PKGBUILD2019-01-27 16:05:21 UTC (rev 428235)
@@ -19,7 +19,7 @@
 'xorg-xprop:For compton-trans')
 source=(compton.conf
 "git+https://github.com/yshui/compton#tag=v${pkgver%.0};)
-sha256sums=('b5ec9c21a5b71ccca70917b1a2c99cd863d638d881a4d8f8e12171e80486db7f'
+sha256sums=('1857c880bfbc6c60e68bc996448a6e071501370de57ed5b9cbc0927bc7bd48bf'
 'SKIP')
 
 prepare() {

Modified: compton.conf
===
--- compton.conf2019-01-27 16:03:28 UTC (rev 428234)
+++ compton.conf2019-01-27 16:05:21 UTC (rev 428235)
@@ -57,10 +57,6 @@
 
 # Enabled client-side shadows on windows.
 shadow = true;
-# Don't draw shadows on DND windows.
-no-dnd-shadow = true;
-# Avoid drawing shadows on dock/panel windows.
-no-dock-shadow = true;
 # The blur radius for shadows. (default 12)
 shadow-radius = 5;
 # The left offset for shadows. (default -15)
@@ -109,7 +105,6 @@
 #
 #
 
-menu-opacity = 1;
 inactive-opacity = 1;
 active-opacity = 1;
 frame-opacity = 1;
@@ -195,7 +190,6 @@
 
 # Unredirect all windows if a full-screen opaque window is detected, to 
maximize performance for full-screen windows, like games.
 # Known to cause flickering when redirecting/unredirecting windows.
-# paint-on-overlay may make the flickering less obvious.
 unredir-if-possible = false;
 
 # Specify a list of conditions of windows that should always be considered 
focused.


[arch-commits] Commit in compton/trunk (PKGBUILD compton.conf)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:03:18
  Author: arodseth
Revision: 428233

upgpkg: compton 5.0-1

Modified:
  compton/trunk/PKGBUILD
  compton/trunk/compton.conf

--+
 PKGBUILD |   27 +--
 compton.conf |7 +--
 2 files changed, 14 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:47:17 UTC (rev 428232)
+++ PKGBUILD2019-01-27 16:03:18 UTC (rev 428233)
@@ -4,29 +4,29 @@
 # Contributor: Valère Monseur 
 
 pkgname=compton
-pkgver=4.0
+pkgver=5.0
 pkgrel=1
 pkgdesc='X compositor that may fix tearing issues'
-arch=('x86_64')
+arch=(x86_64)
 url='https://github.com/yshui/compton'
-license=('MIT')
-makedepends=('asciidoc' 'git' 'mesa' 'meson' 'ninja' 'setconf')
-depends=('hicolor-icon-theme' 'libconfig' 'libdbus' 'libev' 'libgl' 'pcre'
- 'pixman' 'xcb-util-image' 'xcb-util-renderutil')
-backup=('etc/xdg/compton.conf')
+license=(MIT)
+makedepends=(asciidoc git mesa meson ninja setconf)
+depends=(hicolor-icon-theme libconfig libdbus libev libgl libxdg-basedir pcre
+ pixman xcb-util-image xcb-util-renderutil)
+backup=(etc/xdg/compton.conf)
 optdepends=('dbus:  For controlling compton via D-Bus'
 'xorg-xwininfo: For compton-trans'
 'xorg-xprop:For compton-trans')
-source=("git+https://github.com/yshui/compton#tag=v${pkgver%.0};
-'compton.conf')
-sha256sums=('SKIP'
-'18d29064d7c2328dc994cd153633d42c0daf417afca801e525d444a43e4f2788')
+source=(compton.conf
+"git+https://github.com/yshui/compton#tag=v${pkgver%.0};)
+sha256sums=('b5ec9c21a5b71ccca70917b1a2c99cd863d638d881a4d8f8e12171e80486db7f'
+'SKIP')
 
 prepare() {
   cd $pkgname
-  setconf $pkgname.desktop Exec 'compton'
+  setconf $pkgname.desktop Exec compton
   setconf $pkgname.desktop Comment 'Compositor for X11'
-  setconf $pkgname.desktop TryExec '/usr/bin/compton'
+  setconf $pkgname.desktop TryExec /usr/bin/compton
 }
 
 build() {
@@ -42,7 +42,6 @@
 package() {
   DESTDIR="$pkgdir" ninja -C build install
   install -Dm644 compton.conf "$pkgdir/etc/xdg/compton.conf"
-
   cd $pkgname
   install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
   install -Dm644 LICENSES/MIT "$pkgdir/usr/share/licenses/$pkgname/MIT"

Modified: compton.conf
===
--- compton.conf2019-01-27 15:47:17 UTC (rev 428232)
+++ compton.conf2019-01-27 16:03:18 UTC (rev 428233)
@@ -114,7 +114,6 @@
 active-opacity = 1;
 frame-opacity = 1;
 inactive-opacity-override = false;
-alpha-step = 0.06;
 
 # Dim inactive windows. (0.0 - 1.0)
 # inactive-dim = 0.2;
@@ -182,7 +181,6 @@
 # opengl: Try to VSync with SGI_video_sync OpenGL extension. Only work on some 
drivers.
 # opengl-oml: Try to VSync with OML_sync_control OpenGL extension. Only work 
on some drivers.
 # opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work 
on some drivers. Works only with GLX backend. Known to be most effective on 
many drivers. Does not actually control paint timing, only buffer swap is 
affected, so it doesn’t have the effect of --sw-opti unlike other methods. 
Experimental.
-# opengl-mswc: Try to VSync with MESA_swap_control OpenGL extension. Basically 
the same as opengl-swc above, except the extension we use.
 # (Note some VSync methods may not be enabled at compile time.)
 vsync = "opengl";
 
@@ -237,8 +235,5 @@
 #
 ##
 
-# Attempt to synchronize client applications' draw calls with `XSync()`, used 
on GLX backend to ensure up-to-date window content is painted.
-xrender-sync = true;
-
-# use X Sync fence to sync clients' draw calls. Needed on nvidia-drivers with 
GLX backend for some users.
+# Use X Sync fence to sync clients' draw calls. Needed on nvidia-drivers with 
GLX backend for some users.
 xrender-sync-fence = true;


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

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 16:03:28
  Author: arodseth
Revision: 428234

archrelease: copy trunk to community-x86_64

Added:
  compton/repos/community-x86_64/PKGBUILD
(from rev 428233, compton/trunk/PKGBUILD)
  compton/repos/community-x86_64/compton.conf
(from rev 428233, compton/trunk/compton.conf)
Deleted:
  compton/repos/community-x86_64/PKGBUILD
  compton/repos/community-x86_64/compton.conf

--+
 PKGBUILD |  103 ++--
 compton.conf |  483 -
 2 files changed, 290 insertions(+), 296 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 16:03:18 UTC (rev 428233)
+++ PKGBUILD2019-01-27 16:03:28 UTC (rev 428234)
@@ -1,52 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: WorMzy Tykashi 
-# Contributor: OK100 
-# Contributor: Valère Monseur 
-
-pkgname=compton
-pkgver=4.0
-pkgrel=1
-pkgdesc='X compositor that may fix tearing issues'
-arch=('x86_64')
-url='https://github.com/yshui/compton'
-license=('MIT')
-makedepends=('asciidoc' 'git' 'mesa' 'meson' 'ninja' 'setconf')
-depends=('hicolor-icon-theme' 'libconfig' 'libdbus' 'libev' 'libgl' 'pcre'
- 'pixman' 'xcb-util-image' 'xcb-util-renderutil')
-backup=('etc/xdg/compton.conf')
-optdepends=('dbus:  For controlling compton via D-Bus'
-'xorg-xwininfo: For compton-trans'
-'xorg-xprop:For compton-trans')
-source=("git+https://github.com/yshui/compton#tag=v${pkgver%.0};
-'compton.conf')
-sha256sums=('SKIP'
-'18d29064d7c2328dc994cd153633d42c0daf417afca801e525d444a43e4f2788')
-
-prepare() {
-  cd $pkgname
-  setconf $pkgname.desktop Exec 'compton'
-  setconf $pkgname.desktop Comment 'Compositor for X11'
-  setconf $pkgname.desktop TryExec '/usr/bin/compton'
-}
-
-build() {
-  mkdir -p build
-  arch-meson build $pkgname -D build_docs=true
-  ninja -v -C build
-}
-
-check() {
-  ninja -C build test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 compton.conf "$pkgdir/etc/xdg/compton.conf"
-
-  cd $pkgname
-  install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
-  install -Dm644 LICENSES/MIT "$pkgdir/usr/share/licenses/$pkgname/MIT"
-  install -Dm644 LICENSES/MPL-2.0 "$pkgdir/usr/share/licenses/$pkgname/MPL-2.0"
-}
-
-# vim: ts=2 sw=2 et

Copied: compton/repos/community-x86_64/PKGBUILD (from rev 428233, 
compton/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:03:28 UTC (rev 428234)
@@ -0,0 +1,51 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: WorMzy Tykashi 
+# Contributor: OK100 
+# Contributor: Valère Monseur 
+
+pkgname=compton
+pkgver=5.0
+pkgrel=1
+pkgdesc='X compositor that may fix tearing issues'
+arch=(x86_64)
+url='https://github.com/yshui/compton'
+license=(MIT)
+makedepends=(asciidoc git mesa meson ninja setconf)
+depends=(hicolor-icon-theme libconfig libdbus libev libgl libxdg-basedir pcre
+ pixman xcb-util-image xcb-util-renderutil)
+backup=(etc/xdg/compton.conf)
+optdepends=('dbus:  For controlling compton via D-Bus'
+'xorg-xwininfo: For compton-trans'
+'xorg-xprop:For compton-trans')
+source=(compton.conf
+"git+https://github.com/yshui/compton#tag=v${pkgver%.0};)
+sha256sums=('b5ec9c21a5b71ccca70917b1a2c99cd863d638d881a4d8f8e12171e80486db7f'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+  setconf $pkgname.desktop Exec compton
+  setconf $pkgname.desktop Comment 'Compositor for X11'
+  setconf $pkgname.desktop TryExec /usr/bin/compton
+}
+
+build() {
+  mkdir -p build
+  arch-meson build $pkgname -D build_docs=true
+  ninja -v -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 compton.conf "$pkgdir/etc/xdg/compton.conf"
+  cd $pkgname
+  install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
+  install -Dm644 LICENSES/MIT "$pkgdir/usr/share/licenses/$pkgname/MIT"
+  install -Dm644 LICENSES/MPL-2.0 "$pkgdir/usr/share/licenses/$pkgname/MPL-2.0"
+}
+
+# vim: ts=2 sw=2 et

Deleted: compton.conf
===
--- compton.conf2019-01-27 16:03:18 UTC (rev 428233)
+++ compton.conf2019-01-27 16:03:28 UTC (rev 428234)
@@ -1,244 +0,0 @@
-# Thank you code_nomad: http://9m.no/ꪯ鵞
-# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton
-
-#
-#
-# Backend
-#
-#
-
-# Backend to use: "xrender" or "glx".
-# GLX backend is typically much faster but depends on a sane driver.
-backend = "glx";
-
-#
-#
-# GLX backend
-#
-#
-
-glx-no-stencil = true;
-
-# GLX backend: Copy unmodified regions from 

[arch-commits] Commit in catfish/repos/community-any (4 files)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 15:47:17
  Author: arodseth
Revision: 428232

archrelease: copy trunk to community-any

Added:
  catfish/repos/community-any/PKGBUILD
(from rev 428231, catfish/trunk/PKGBUILD)
  catfish/repos/community-any/catfish.install
(from rev 428231, catfish/trunk/catfish.install)
Deleted:
  catfish/repos/community-any/PKGBUILD
  catfish/repos/community-any/catfish.install

-+
 PKGBUILD|   79 ++
 catfish.install |   10 +++---
 2 files changed, 44 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 15:47:02 UTC (rev 428231)
+++ PKGBUILD2019-01-27 15:47:17 UTC (rev 428232)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Alexander Fehr 
-# Contributor: Pantelis Panayiotou 
-
-pkgname=catfish
-pkgver=1.4.6
-pkgrel=2
-pkgdesc='Versatile file searching tool'
-arch=('any')
-url='https://launchpad.net/catfish-search'
-license=('GPL')
-install="$pkgname.install"
-depends=('gtk3' 'python-cairo' 'python-gobject' 'python-pexpect'
- 'python-ptyprocess' 'python-xdg' 'xdg-utils')
-makedepends=('git' 'intltool' 'python-distutils-extra')
-optdepends=('mlocate: filename search'
-'zeitgeist: integration with zeitgeist')
-source=("git+https://git.launchpad.net/catfish-search#tag=catfish-$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname-search"
-
-  python setup.py build
-}
-
-package () {
-  cd "$pkgname-search"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -d "$pkgdir/usr/share/pixmaps"
-  ln -s "/usr/share/icons/hicolor/scalable/apps/$pkgname.svg" \
-"$pkgdir/usr/share/pixmaps/$pkgname.svg"
-}
-
-# getver: git.launchpad.net/catfish-search/plain/catfish.1
-# vim: ts=2 sw=2 et:

Copied: catfish/repos/community-any/PKGBUILD (from rev 428231, 
catfish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 15:47:17 UTC (rev 428232)
@@ -0,0 +1,39 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Alexander Fehr 
+# Contributor: Pantelis Panayiotou 
+
+pkgname=catfish
+pkgver=1.4.7
+pkgrel=1
+pkgdesc='Versatile file searching tool'
+arch=(any)
+url='https://git.xfce.org/apps/catfish/about/'
+license=(GPL)
+install=$pkgname.install
+depends=(gtk3 python-cairo python-gobject python-pexpect
+ python-ptyprocess python-xdg xdg-utils)
+makedepends=(git intltool python-distutils-extra)
+optdepends=('mlocate: filename search'
+'zeitgeist: integration with zeitgeist')
+source=("git+https://git.xfce.org/apps/catfish/#tag=catfish-$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+package () {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -d "$pkgdir/usr/share/pixmaps"
+  ln -s "/usr/share/icons/hicolor/scalable/apps/$pkgname.svg" \
+"$pkgdir/usr/share/pixmaps/$pkgname.svg"
+}
+
+# getver: git.xfce.org/apps/catfish/plain/catfish.1
+# vim: ts=2 sw=2 et:

Deleted: catfish.install
===
--- catfish.install 2019-01-27 15:47:02 UTC (rev 428231)
+++ catfish.install 2019-01-27 15:47:17 UTC (rev 428232)
@@ -1,5 +0,0 @@
-post_install() {
-  echo 'One of the optional file search engines must be installed for catfish 
to work.'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: catfish/repos/community-any/catfish.install (from rev 428231, 
catfish/trunk/catfish.install)
===
--- catfish.install (rev 0)
+++ catfish.install 2019-01-27 15:47:17 UTC (rev 428232)
@@ -0,0 +1,5 @@
+post_install() {
+  echo 'One of the optional file search engines must be installed for catfish 
to work.'
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in catfish/trunk (PKGBUILD catfish.install)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 15:47:02
  Author: arodseth
Revision: 428231

upgpkg: catfish 1.4.7-1

Modified:
  catfish/trunk/PKGBUILD
  catfish/trunk/catfish.install

-+
 PKGBUILD|   26 +-
 catfish.install |2 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:36:10 UTC (rev 428230)
+++ PKGBUILD2019-01-27 15:47:02 UTC (rev 428231)
@@ -4,29 +4,29 @@
 # Contributor: Pantelis Panayiotou 
 
 pkgname=catfish
-pkgver=1.4.6
-pkgrel=2
+pkgver=1.4.7
+pkgrel=1
 pkgdesc='Versatile file searching tool'
-arch=('any')
-url='https://launchpad.net/catfish-search'
-license=('GPL')
-install="$pkgname.install"
-depends=('gtk3' 'python-cairo' 'python-gobject' 'python-pexpect'
- 'python-ptyprocess' 'python-xdg' 'xdg-utils')
-makedepends=('git' 'intltool' 'python-distutils-extra')
+arch=(any)
+url='https://git.xfce.org/apps/catfish/about/'
+license=(GPL)
+install=$pkgname.install
+depends=(gtk3 python-cairo python-gobject python-pexpect
+ python-ptyprocess python-xdg xdg-utils)
+makedepends=(git intltool python-distutils-extra)
 optdepends=('mlocate: filename search'
 'zeitgeist: integration with zeitgeist')
-source=("git+https://git.launchpad.net/catfish-search#tag=catfish-$pkgver;)
+source=("git+https://git.xfce.org/apps/catfish/#tag=catfish-$pkgver;)
 md5sums=('SKIP')
 
 build() {
-  cd "$pkgname-search"
+  cd "$pkgname"
 
   python setup.py build
 }
 
 package () {
-  cd "$pkgname-search"
+  cd "$pkgname"
 
   python setup.py install --root="$pkgdir" --optimize=1
 
@@ -35,5 +35,5 @@
 "$pkgdir/usr/share/pixmaps/$pkgname.svg"
 }
 
-# getver: git.launchpad.net/catfish-search/plain/catfish.1
+# getver: git.xfce.org/apps/catfish/plain/catfish.1
 # vim: ts=2 sw=2 et:

Modified: catfish.install
===
--- catfish.install 2019-01-27 15:36:10 UTC (rev 428230)
+++ catfish.install 2019-01-27 15:47:02 UTC (rev 428231)
@@ -2,4 +2,4 @@
   echo 'One of the optional file search engines must be installed for catfish 
to work.'
 }
 
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:36:10
  Author: felixonmars
Revision: 428230

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 428229, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:36:10 UTC (rev 428230)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=47
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-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' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$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 428229, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-01-27 15:36:10 UTC (rev 
428230)
@@ -0,0 +1,4 @@
+post_install() {
+  

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:35:50
  Author: felixonmars
Revision: 428229

upgpkg: stack 1.9.3-47

rebuild with zip-archive 0.4

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:28:10 UTC (rev 428228)
+++ PKGBUILD2019-01-27 15:35:50 UTC (rev 428229)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=46
+pkgrel=47
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:27:44
  Author: felixonmars
Revision: 428227

upgpkg: shellcheck 0.6.0-31

rebuild with zip-archive 0.4

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:24:00 UTC (rev 428226)
+++ PKGBUILD2019-01-27 15:27:44 UTC (rev 428227)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=30
+pkgrel=31
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:28:10
  Author: felixonmars
Revision: 428228

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 428227, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 428227, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:28:10 UTC (rev 428228)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=31
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:24:00
  Author: felixonmars
Revision: 428226

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 428225, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
428225, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:24:00 UTC (rev 428226)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.0
+pkgrel=34
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('d3a666880f0cad0ef7c1e784f2d52f9bb8bfde9e6be6de04c8f094e2a87e99a740f97951c5ffd74b2a1b001e8a977bc9dd3e28be84c3442d3447beadd879e82c')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *2.5/<3/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:23:40
  Author: felixonmars
Revision: 428225

upgpkg: pandoc-crossref 0.3.4.0-34

rebuild with zip-archive 0.4

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:21:40 UTC (rev 428224)
+++ PKGBUILD2019-01-27 15:23:40 UTC (rev 428225)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.0
-pkgrel=33
+pkgrel=34
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:21:40
  Author: felixonmars
Revision: 428224

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
428223, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:21:40 UTC (rev 428224)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.0
+pkgrel=2
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('89153b0f68c745e82a17400037ccf32e2a462fe710746d3665c72f202dade7b7308b7d79e508c6fb89dada1a03058738a634c1609d15474b7342883457658d00')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:21:22
  Author: felixonmars
Revision: 428223

upgpkg: haskell-hakyll 4.12.5.0-2

rebuild with zip-archive 0.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:18:43 UTC (rev 428222)
+++ PKGBUILD2019-01-27 15:21:22 UTC (rev 428223)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:18:25
  Author: felixonmars
Revision: 428221

upgpkg: pandoc-citeproc 0.15.0.1-32

rebuild with zip-archive 0.4

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:13:53 UTC (rev 428220)
+++ PKGBUILD2019-01-27 15:18:25 UTC (rev 428221)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.15.0.1
-pkgrel=31
+pkgrel=32
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:18:43
  Author: felixonmars
Revision: 428222

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 428221, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
428221, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:18:43 UTC (rev 428222)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.15.0.1
+pkgrel=32
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-old-locale' 
'pandoc'
+ 'haskell-pandoc-types' 'haskell-rfc5051' 'haskell-setenv' 
'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-text-icu'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-xml-conduit' 
'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('7a7bc7431c6afcec7a1b825f972d5bcda975e23f770b92c13bdaeb42bb6cc0f267ed71b58047ca263f0537e1b3ff3a095e80747f714a1d256234a6e44ec7254f')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+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
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+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 processing/repos/community-x86_64 (8 files)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 15:13:53
  Author: arodseth
Revision: 428220

archrelease: copy trunk to community-x86_64

Added:
  processing/repos/community-x86_64/PKGBUILD
(from rev 428219, processing/trunk/PKGBUILD)
  processing/repos/community-x86_64/build.xml
(from rev 428219, processing/trunk/build.xml)
  processing/repos/community-x86_64/errormessage.patch
(from rev 428219, processing/trunk/errormessage.patch)
  processing/repos/community-x86_64/openjdkmsg.install
(from rev 428219, processing/trunk/openjdkmsg.install)
Deleted:
  processing/repos/community-x86_64/PKGBUILD
  processing/repos/community-x86_64/build.xml
  processing/repos/community-x86_64/errormessage.patch
  processing/repos/community-x86_64/openjdkmsg.install

+
 PKGBUILD   |  176 
 build.xml  | 1058 +--
 errormessage.patch |   22 -
 openjdkmsg.install |   28 -
 4 files changed, 643 insertions(+), 641 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 15:13:33 UTC (rev 428219)
+++ PKGBUILD2019-01-27 15:13:53 UTC (rev 428220)
@@ -1,87 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-
-pkgname=processing
-pkgver=3.4
-pkgrel=3
-arch=(x86_64)
-pkgdesc='Programming environment for creating images, animations and 
interactions'
-url='http://www.processing.org/'
-license=(GPL LGPL)
-# Can upgrade to OpenJDK 10 once java-openjfx has been upgraded to support it
-makedepends=(apache-ant gendesk java-environment=8 java-openjfx unzip)
-depends=(java-runtime=8 libgl)
-options=(!strip)
-install=openjdkmsg.install
-# ex: 3.4 -> 0265,  update the expression when the version scheme changes
-source=("https://github.com/$pkgname/$pkgname/archive/$pkgname-0$((265+${pkgver/3.4/0}))-$pkgver.tar.gz"
-"http://download.processing.org/reference.zip;
-'build.xml'
-'errormessage.patch')
-sha256sums=('ae27b35c0193c99b3297029f97b459a262b4c0998aa4b5fb3c3f0f81f72bb4a4'
-'cede53cfe2cd0641bac3a3f2a816d22a28a014f6428f3b8184a52d2de5a111f3'
-'9f4050475b3363eb5e966fa891caea0391b3dcc2cdb68245f1a053b0d7ffb220'
-'3c49143a129c6b3655586bce9f175ee145ab388b78ad4615d6c0b80563ba6f26')
-
-prepare() {
-  gendesk -f -n --pkgname="$pkgname" --pkgdesc="$pkgdesc"
-
-  # Symbolic link for not having to repeat the revision number
-  ln -sf "$pkgname-$pkgname-"*"-$pkgver" "$pkgname"
-
-  # Add some details to one of the error messages
-  patch -p0 -i errormessage.patch
-
-  # Copy reference.zip to the java directory
-  mkdir -p "$pkgname/java"
-  cp "$srcdir/reference.zip" "$pkgname/java/"
-
-  # Unpack reference.zip
-  mkdir -p "$pkgname/build/linux/work/modes/java"
-  unzip -q -u "$srcdir/reference.zip" -d "$pkgname/build/linux/work/modes/java"
-
-  # Disable the "We only like Java from Sun and Oracle" GUI message
-  sed -i 
's,Messages.showWarning,\/\*Messages.showWarning,;s,null);,null);\*\/,' 
"$pkgname/app/src/processing/app/platform/LinuxPlatform.java"
-
-  # Create missing directories
-  mkdir -p "$pkgname/build/linux/work/java"
-
-  # Use the font's built-in hinting instructions
-  sed 's|  java|  _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=gasp" java|g' \
--i "$pkgname/build/linux/processing"
-
-  # Use a custom build.xml file for ant
-  cp -fv build.xml "$pkgname/build/build.xml"
-}
-
-build() {
-  cd "$pkgname/build"
-
-  ant build
-}
-
-package() {
-  cd "$pkgname"
-
-  install -d "$pkgdir/usr/"{bin/,share/$pkgname/}
-  cp -r build/linux/work/* "$pkgdir/usr/share/$pkgname/"
-
-  # Desktop shortcut
-  install -Dm644 "build/shared/lib/icons/pde-256.png" \
-"$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$srcdir/$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-
-  # Symbolic links in /usr/bin
-  ln -s "/usr/share/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  ln -s "/usr/share/$pkgname/$pkgname-java" "$pkgdir/usr/bin/$pkgname-java"
-
-  # Use /usr/lib/jvm/default-runtime
-  rmdir "$pkgdir/usr/share/processing/java"
-
-  # Processing does not work with OpenJDK 10 or 11, use OpenJDK 8
-  #ln -s /usr/lib/jvm/default-runtime/ "$pkgdir/usr/share/processing/java"
-  ln -s /usr/lib/jvm/java-8-openjdk/ "$pkgdir/usr/share/processing/java"
-}
-
-# getver: 
github.com/processing/processing/search?type=Commits=release+notes+author-date%3A%3E2018-03-14
-# vim: ts=2 sw=2 et

Copied: processing/repos/community-x86_64/PKGBUILD (from rev 428219, 
processing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 15:13:53 UTC (rev 428220)
@@ -0,0 +1,89 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=processing
+pkgver=3.5.2
+pkgrel=1
+arch=(x86_64)
+pkgdesc='Programming environment for creating images, animations and 
interactions'
+url='http://www.processing.org/'
+license=(GPL LGPL)
+# Can 

[arch-commits] Commit in processing/trunk (PKGBUILD openjdkmsg.install)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 15:13:33
  Author: arodseth
Revision: 428219

upgpkg: processing 3.5.2-1

Modified:
  processing/trunk/PKGBUILD
  processing/trunk/openjdkmsg.install

+
 PKGBUILD   |   48 +---
 openjdkmsg.install |2 +-
 2 files changed, 26 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 15:11:52 UTC (rev 428218)
+++ PKGBUILD2019-01-27 15:13:33 UTC (rev 428219)
@@ -1,56 +1,55 @@
 # Maintainer: Alexander F. Rødseth 
 
 pkgname=processing
-pkgver=3.4
-pkgrel=3
+pkgver=3.5.2
+pkgrel=1
 arch=(x86_64)
 pkgdesc='Programming environment for creating images, animations and 
interactions'
 url='http://www.processing.org/'
 license=(GPL LGPL)
 # Can upgrade to OpenJDK 10 once java-openjfx has been upgraded to support it
-makedepends=(apache-ant gendesk java-environment=8 java-openjfx unzip)
 depends=(java-runtime=8 libgl)
+makedepends=(apache-ant gendesk java-openjfx unzip)
 options=(!strip)
 install=openjdkmsg.install
-# ex: 3.4 -> 0265,  update the expression when the version scheme changes
-source=("https://github.com/$pkgname/$pkgname/archive/$pkgname-0$((265+${pkgver/3.4/0}))-$pkgver.tar.gz"
-"http://download.processing.org/reference.zip;
-'build.xml'
-'errormessage.patch')
-sha256sums=('ae27b35c0193c99b3297029f97b459a262b4c0998aa4b5fb3c3f0f81f72bb4a4'
-'cede53cfe2cd0641bac3a3f2a816d22a28a014f6428f3b8184a52d2de5a111f3'
-'9f4050475b3363eb5e966fa891caea0391b3dcc2cdb68245f1a053b0d7ffb220'
-'3c49143a129c6b3655586bce9f175ee145ab388b78ad4615d6c0b80563ba6f26')
+# The Processing version scheme for the 3.5.x series uses a special magical
+# version number above 0266 in addition to the ordinary version number.
+# https is not available for reference.zip.
+source=("https://github.com/$pkgname/$pkgname/archive/$pkgname-0$((266+${pkgver##3.5.}))-$pkgver.tar.gz"
+'http://download.processing.org/reference.zip'
+build.xml
+errormessage.patch)
 
 prepare() {
-  gendesk -f -n --pkgname="$pkgname" --pkgdesc="$pkgdesc"
+  gendesk -f -n --pkgname=$pkgname --pkgdesc="$pkgdesc"
 
   # Symbolic link for not having to repeat the revision number
-  ln -sf "$pkgname-$pkgname-"*"-$pkgver" "$pkgname"
+  ln -sf "$pkgname-$pkgname-"*"-$pkgver" $pkgname
 
   # Add some details to one of the error messages
   patch -p0 -i errormessage.patch
 
   # Copy reference.zip to the java directory
-  mkdir -p "$pkgname/java"
-  cp "$srcdir/reference.zip" "$pkgname/java/"
+  mkdir -p $pkgname/java
+  cp "$srcdir/reference.zip" $pkgname/java/
 
   # Unpack reference.zip
-  mkdir -p "$pkgname/build/linux/work/modes/java"
-  unzip -q -u "$srcdir/reference.zip" -d "$pkgname/build/linux/work/modes/java"
+  mkdir -p $pkgname/build/linux/work/modes/java
+  unzip -q -u "$srcdir/reference.zip" -d $pkgname/build/linux/work/modes/java
 
   # Disable the "We only like Java from Sun and Oracle" GUI message
-  sed -i 
's,Messages.showWarning,\/\*Messages.showWarning,;s,null);,null);\*\/,' 
"$pkgname/app/src/processing/app/platform/LinuxPlatform.java"
+  sed -i 
's,Messages.showWarning,\/\*Messages.showWarning,;s,null);,null);\*\/,' \
+"$pkgname/app/src/processing/app/platform/LinuxPlatform.java"
 
   # Create missing directories
-  mkdir -p "$pkgname/build/linux/work/java"
+  mkdir -p $pkgname/build/linux/work/java
 
   # Use the font's built-in hinting instructions
   sed 's|  java|  _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=gasp" java|g' \
--i "$pkgname/build/linux/processing"
+-i $pkgname/build/linux/processing
 
   # Use a custom build.xml file for ant
-  cp -fv build.xml "$pkgname/build/build.xml"
+  cp -fv build.xml $pkgname/build/build.xml
 }
 
 build() {
@@ -83,5 +82,8 @@
   ln -s /usr/lib/jvm/java-8-openjdk/ "$pkgdir/usr/share/processing/java"
 }
 
-# getver: 
github.com/processing/processing/search?type=Commits=release+notes+author-date%3A%3E2018-03-14
 # vim: ts=2 sw=2 et
+md5sums=('16f8adb1c91a6de419a7e5d65dd96cf0'
+ '70d03f0034dd8213648b6ad2fb0433ce'
+ 'efa69e29922fbf8b49ca03440959c20a'
+ '699376fe908c102794d3ee18c8e4f441')

Modified: openjdkmsg.install
===
--- openjdkmsg.install  2019-01-27 15:11:52 UTC (rev 428218)
+++ openjdkmsg.install  2019-01-27 15:13:33 UTC (rev 428219)
@@ -2,7 +2,7 @@
   cat << EOF
 ---[ NOTE ]--
  Processing does not really support OpenJDK, only Java from Sun and Oracle.
- https://github.com/processing/processing/wiki/Supported-Platforms#linux
+ See: https://github.com/processing/processing/wiki/Supported-Platforms#linux
  If you encounter any issues with this package, please file bug reports with
  Processing and/or OpenJDK until Processing can officially support OpenJDK.
 

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:11:31
  Author: felixonmars
Revision: 428217

upgpkg: pandoc 2.5-31

rebuild with zip-archive 0.4

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 13:44:01 UTC (rev 428216)
+++ PKGBUILD2019-01-27 15:11:31 UTC (rev 428217)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.5
-pkgrel=30
+pkgrel=31
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")
@@ -32,7 +32,7 @@
 prepare() {
 cd "${srcdir}/$pkgname-${pkgver}"
 
-sed -i -e 's/< *0.10/<1/' -e 's/< *0.6/<1/' $pkgname.cabal
+sed -i -e 's/< *0.10/<1/' -e 's/< *0.6/<1/' -e 's/< *0.4/<1/' 
$pkgname.cabal
 
 # TODO: find a better solution
 sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:11:52
  Author: felixonmars
Revision: 428218

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 428217, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 428217, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 15:11:52 UTC (rev 428218)
@@ -0,0 +1,66 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.5
+pkgrel=31
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-skylighting' 'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri' 
'haskell-unicode-transforms'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('40a47680437288253888c6b943192bfcfa402d4bf797962aaa15b8fc43d0ab1887f717c724f71c901c97dcb9bb42322bbb54fdbd9906f0da1187e95b50cfca92')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+sed -i -e 's/< *0.10/<1/' -e 's/< *0.6/<1/' -e 's/< *0.4/<1/' 
$pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


[arch-commits] Commit in python-pyasn1-modules/repos/extra-any (PKGBUILD PKGBUILD)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:02:40
  Author: felixonmars
Revision: 344876

archrelease: copy trunk to extra-any

Added:
  python-pyasn1-modules/repos/extra-any/PKGBUILD
(from rev 344875, python-pyasn1-modules/trunk/PKGBUILD)
Deleted:
  python-pyasn1-modules/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 15:02:19 UTC (rev 344875)
+++ PKGBUILD2019-01-27 15:02:40 UTC (rev 344876)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pyasn1-modules
-pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
-pkgver=0.2.3
-pkgrel=1
-pkgdesc="A collection of ASN.1-based protocols modules"
-arch=('any')
-license=('BSD')
-url="http://pypi.python.org/pypi/pyasn1-modules;
-makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
-source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
-sha512sums=('12544fcecf9bed5797dc5d63376db2ee3bc269d509e94c9721dcd8a057b4520acbbfe1bae06d830fd487b3c403e35c97913b85a4529600d5d0d4548bd00e7878')
-
-prepare() {
-  cp -a pyasn1-modules-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pyasn1-modules-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pyasn1-modules-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pyasn1-modules-$pkgver
-  PYTHONPATH=. python tests/__main__.py
-
-  cd "$srcdir"/pyasn1-modules-$pkgver-py2
-  PYTHONPATH=. python2 tests/__main__.py
-}
-
-package_python-pyasn1-modules() {
-  depends=('python-pyopenssl' 'python-pyasn1')
-
-  cd pyasn1-modules-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-pyasn1-modules() {
-  depends=('python2-pyopenssl' 'python2-pyasn1')
-
-  cd pyasn1-modules-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-pyasn1-modules/repos/extra-any/PKGBUILD (from rev 344875, 
python-pyasn1-modules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 15:02:40 UTC (rev 344876)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyasn1-modules
+pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
+pkgver=0.2.4
+pkgrel=1
+pkgdesc="A collection of ASN.1-based protocols modules"
+arch=('any')
+license=('BSD')
+url="http://pypi.python.org/pypi/pyasn1-modules;
+makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
+source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
+sha512sums=('c9e16475629b9c62880ecc67317ed734953a8719089fec89b14ab81e7ef4504bc534aa777b1c25dead7867c483177423ee4a218c14470994017e30704e1cc1dc')
+
+prepare() {
+  cp -a pyasn1-modules-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pyasn1-modules-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pyasn1-modules-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pyasn1-modules-$pkgver
+  PYTHONPATH=. python tests/__main__.py
+
+  cd "$srcdir"/pyasn1-modules-$pkgver-py2
+  PYTHONPATH=. python2 tests/__main__.py
+}
+
+package_python-pyasn1-modules() {
+  depends=('python-pyopenssl' 'python-pyasn1')
+
+  cd pyasn1-modules-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-pyasn1-modules() {
+  depends=('python2-pyopenssl' 'python2-pyasn1')
+
+  cd pyasn1-modules-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 15:02:19
  Author: felixonmars
Revision: 344875

upgpkg: python-pyasn1-modules 0.2.4-1

Modified:
  python-pyasn1-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 13:44:24 UTC (rev 344874)
+++ PKGBUILD2019-01-27 15:02:19 UTC (rev 344875)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pyasn1-modules
 pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
-pkgver=0.2.3
+pkgver=0.2.4
 pkgrel=1
 pkgdesc="A collection of ASN.1-based protocols modules"
 arch=('any')
@@ -10,7 +10,7 @@
 url="http://pypi.python.org/pypi/pyasn1-modules;
 makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
 
source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
-sha512sums=('12544fcecf9bed5797dc5d63376db2ee3bc269d509e94c9721dcd8a057b4520acbbfe1bae06d830fd487b3c403e35c97913b85a4529600d5d0d4548bd00e7878')
+sha512sums=('c9e16475629b9c62880ecc67317ed734953a8719089fec89b14ab81e7ef4504bc534aa777b1c25dead7867c483177423ee4a218c14470994017e30704e1cc1dc')
 
 prepare() {
   cp -a pyasn1-modules-$pkgver{,-py2}


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

2019-01-27 Thread Dave Reisner via arch-commits
Date: Sunday, January 27, 2019 @ 12:49:22
  Author: dreisner
Revision: 344868

archrelease: copy trunk to extra-x86_64

Added:
  time/repos/extra-x86_64/PKGBUILD
(from rev 344867, time/trunk/PKGBUILD)
Deleted:
  time/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 12:43:43 UTC (rev 344867)
+++ PKGBUILD2019-01-27 12:49:22 UTC (rev 344868)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Daniel J Griffiths 
-# Contributor: damir 
-
-pkgname=time
-pkgver=1.9
-pkgrel=1
-pkgdesc="Utility for monitoring a program's use of system resources"
-arch=('x86_64')
-url="https://directory.fsf.org/wiki/Time;
-license=('GPL')
-depends=('glibc')
-makedepends=('git')
-source=(
-  http://git.savannah.gnu.org/cgit/time.git/snapshot/time-$pkgver.tar.gz
-  
git://git.savannah.gnu.org/gnulib.git#commit=7df04f9b8a0adb1575ca0555775ec10860143cbf)
-sha1sums=('724d5857f555261c847d80f2783ca41891879c86'
-  'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  ./bootstrap --no-git --gnulib-srcdir="$srcdir/gnulib"
-} 
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --infodir=/usr/share/info
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make exec_prefix="$pkgdir/usr" infodir="$pkgdir/usr/share/info" install
-}

Copied: time/repos/extra-x86_64/PKGBUILD (from rev 344867, time/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 12:49:22 UTC (rev 344868)
@@ -0,0 +1,41 @@
+# Maintainer: Dave Reisner 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Daniel J Griffiths 
+# Contributor: damir 
+
+pkgname=time
+pkgver=1.9
+pkgrel=2
+pkgdesc="Utility for monitoring a program's use of system resources"
+arch=('x86_64')
+url='https://www.gnu.org/software/time/'
+license=('GPL')
+depends=('glibc')
+makedepends=('git')
+source=(https://git.savannah.gnu.org/cgit/time.git/snapshot/time-$pkgver.tar.gz
+
git://git.savannah.gnu.org/gnulib.git#commit=9462eb64fbf6646e9109b003a6768538d2b7dad4)
+sha1sums=('724d5857f555261c847d80f2783ca41891879c86'
+  'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  ./bootstrap --no-git --gnulib-srcdir="$srcdir/gnulib"
+} 
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --infodir=/usr/share/info
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make exec_prefix="$pkgdir/usr" infodir="$pkgdir/usr/share/info" install
+}


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

2019-01-27 Thread Dave Reisner via arch-commits
Date: Sunday, January 27, 2019 @ 12:43:43
  Author: dreisner
Revision: 344867

upgpkg: time 1.9-2

- bump gnulib
- http -> https
- add unit tests

Modified:
  time/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 11:40:46 UTC (rev 344866)
+++ PKGBUILD2019-01-27 12:43:43 UTC (rev 344867)
@@ -5,16 +5,15 @@
 
 pkgname=time
 pkgver=1.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Utility for monitoring a program's use of system resources"
 arch=('x86_64')
-url="https://directory.fsf.org/wiki/Time;
+url='https://www.gnu.org/software/time/'
 license=('GPL')
 depends=('glibc')
 makedepends=('git')
-source=(
-  http://git.savannah.gnu.org/cgit/time.git/snapshot/time-$pkgver.tar.gz
-  
git://git.savannah.gnu.org/gnulib.git#commit=7df04f9b8a0adb1575ca0555775ec10860143cbf)
+source=(https://git.savannah.gnu.org/cgit/time.git/snapshot/time-$pkgver.tar.gz
+
git://git.savannah.gnu.org/gnulib.git#commit=9462eb64fbf6646e9109b003a6768538d2b7dad4)
 sha1sums=('724d5857f555261c847d80f2783ca41891879c86'
   'SKIP')
 
@@ -31,6 +30,10 @@
   make
 }
 
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
 package() {
   cd "$pkgname-$pkgver"
 


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

2019-01-27 Thread Jonathan Steel via arch-commits
Date: Sunday, January 27, 2019 @ 12:18:43
  Author: jsteel
Revision: 428211

upgpkg: stella 6.0-1

Modified:
  stella/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 11:07:22 UTC (rev 428210)
+++ PKGBUILD2019-01-27 12:18:43 UTC (rev 428211)
@@ -4,7 +4,7 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=stella
-pkgver=5.1.3
+pkgver=6.0
 pkgrel=1
 pkgdesc="Atari 2600 VCS emulator"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('sdl2' 'gtk-update-icon-cache')
 makedepends=('glu')
 
source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
-md5sums=('f7cccdf4761b7183a235ffeef136e180')
+md5sums=('496dc9837f6bd634a7567e37f21a49f2')
 
 build() {
   cd $pkgname-$pkgver


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

2019-01-27 Thread Jonathan Steel via arch-commits
Date: Sunday, January 27, 2019 @ 12:18:55
  Author: jsteel
Revision: 428212

archrelease: copy trunk to community-x86_64

Added:
  stella/repos/community-x86_64/PKGBUILD
(from rev 428211, stella/trunk/PKGBUILD)
Deleted:
  stella/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 12:18:43 UTC (rev 428211)
+++ PKGBUILD2019-01-27 12:18:55 UTC (rev 428212)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Renato Garcia 
-# Contributor: Tiago Camargo 
-# Contributor: Shinlun Hsieh 
-
-pkgname=stella
-pkgver=5.1.3
-pkgrel=1
-pkgdesc="Atari 2600 VCS emulator"
-arch=('x86_64')
-url="https://stella-emu.github.io/;
-license=('GPL2')
-depends=('sdl2' 'gtk-update-icon-cache')
-makedepends=('glu')
-source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
-md5sums=('f7cccdf4761b7183a235ffeef136e180')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: stella/repos/community-x86_64/PKGBUILD (from rev 428211, 
stella/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 12:18:55 UTC (rev 428212)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Renato Garcia 
+# Contributor: Tiago Camargo 
+# Contributor: Shinlun Hsieh 
+
+pkgname=stella
+pkgver=6.0
+pkgrel=1
+pkgdesc="Atari 2600 VCS emulator"
+arch=('x86_64')
+url="https://stella-emu.github.io/;
+license=('GPL2')
+depends=('sdl2' 'gtk-update-icon-cache')
+makedepends=('glu')
+source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
+md5sums=('496dc9837f6bd634a7567e37f21a49f2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Sunday, January 27, 2019 @ 11:40:46
  Author: arojas
Revision: 344866

archrelease: copy trunk to testing-x86_64

Added:
  libcdio-paranoia/repos/testing-x86_64/
  libcdio-paranoia/repos/testing-x86_64/PKGBUILD
(from rev 344865, libcdio-paranoia/trunk/PKGBUILD)

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

Copied: libcdio-paranoia/repos/testing-x86_64/PKGBUILD (from rev 344865, 
libcdio-paranoia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-27 11:40:46 UTC (rev 344866)
@@ -0,0 +1,26 @@
+# Maintainer: Jan de Groot 
+# Contributor: damir 
+
+pkgname=libcdio-paranoia
+pkgver=10.2+2.0.0
+pkgrel=1
+pkgdesc="CD paranoia libraries from libcdio"
+arch=('x86_64')
+license=('GPL' 'LGPL')
+url="https://www.gnu.org/software/libcdio/;
+depends=('libcdio')
+source=(https://ftp.gnu.org/gnu/libcdio/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('4565c18caf401083c53733e6d2847b6671ba824cff1c7792b9039693d34713c1'
+'SKIP')
+validpgpkeys=('DAA63BC2582034A02B923D521A8DE5008275EC21') # R. Bernstein 

+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-cpp-progs --disable-static 
--disable-example-progs
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -j1 DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in libcdio-paranoia/trunk (2 files)

2019-01-27 Thread Antonio Rojas via arch-commits
Date: Sunday, January 27, 2019 @ 11:40:17
  Author: arojas
Revision: 344865

Update to 10.2+2.0.0

Modified:
  libcdio-paranoia/trunk/PKGBUILD
Deleted:
  libcdio-paranoia/trunk/enable_symbol_versions.patch

--+
 PKGBUILD |   18 +-
 enable_symbol_versions.patch |   26 --
 2 files changed, 5 insertions(+), 39 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 10:32:07 UTC (rev 344864)
+++ PKGBUILD2019-01-27 11:40:17 UTC (rev 344865)
@@ -2,26 +2,18 @@
 # Contributor: damir 
 
 pkgname=libcdio-paranoia
-pkgver=10.2+0.94+2
-pkgrel=2
+pkgver=10.2+2.0.0
+pkgrel=1
 pkgdesc="CD paranoia libraries from libcdio"
 arch=('x86_64')
 license=('GPL' 'LGPL')
 url="https://www.gnu.org/software/libcdio/;
 depends=('libcdio')
-source=(https://ftp.gnu.org/gnu/libcdio/${pkgname}-${pkgver}.tar.gz{,.sig}
-enable_symbol_versions.patch)
-sha256sums=('d60f82ece97eeb92407a9ee03f3499c8983206672c28ae5e4e22179063c81941'
-'SKIP'
-'f84a2467ee7ffd747cea7c783d4d53d5439b69f49d01380d650bea8454ddf5f2')
+source=(https://ftp.gnu.org/gnu/libcdio/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('4565c18caf401083c53733e6d2847b6671ba824cff1c7792b9039693d34713c1'
+'SKIP')
 validpgpkeys=('DAA63BC2582034A02B923D521A8DE5008275EC21') # R. Bernstein 

 
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i ../enable_symbol_versions.patch
-  autoreconf -fi
-}
-
 build() {
   cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr --enable-cpp-progs --disable-static 
--disable-example-progs

Deleted: enable_symbol_versions.patch
===
--- enable_symbol_versions.patch2019-01-27 10:32:07 UTC (rev 344864)
+++ enable_symbol_versions.patch2019-01-27 11:40:17 UTC (rev 344865)
@@ -1,26 +0,0 @@
-From 69b1fabe1983d4216144c8d271bd90c24a49a9b7 Mon Sep 17 00:00:00 2001
-From: "R. Bernstein" 
-Date: Tue, 9 May 2017 02:34:34 -0400
-Subject: [PATCH] Default enable_version_script is yes (enabled)
-
-Fixes http://savannah.gnu.org/bugs/?50978 ?

- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index ed276c2..a502273 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -61,9 +61,9 @@ dnl cheeck whether ld supports --version-script
- 
- AC_ARG_ENABLE(ld-version-script,
-   AS_HELP_STRING([--disable-ld-version-script],
--  [Disable linker vresion script for libraries (Defauilt is to use linker 
script if the linger supports it)]),
-+  [Disable linker version script for libraries (Defauilt is to use linker 
script if the linger supports it)]),
-   [enable_version_script=$enableval],
--  [enable_version_script=auto])
-+  [enable_version_script=yes])
- 
- AM_CONDITIONAL(VERSION_SCRIPT, test "x$enable_version_script" = "xyes")
- 


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 11:07:22
  Author: felixonmars
Revision: 428210

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 428209, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 428209, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 11:07:22 UTC (rev 428210)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=33
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec6'
+ 'haskell-network' 'haskell-optparse-applicative' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-split' 'haskell-terminal-size' 'haskell-uniplate' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 
'haskell-vector-binary-instances'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('555c7fdfad7e4f69b1aa4f6237cf4432831cd74e33342bd802ff3bc763118178b742b386035f8c071820b5e2bc71c5372c4acb356835155677046d360b722746')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' idris.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly
+LC_CTYPE=en_US.UTF-8 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 Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$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 idris/trunk (PKGBUILD)

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 11:07:06
  Author: felixonmars
Revision: 428209

upgpkg: idris 1.3.1-33

rebuild with zip-archive 0.4

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 10:15:03 UTC (rev 428208)
+++ PKGBUILD2019-01-27 11:07:06 UTC (rev 428209)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=32
+pkgrel=33
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("BSD")
@@ -26,7 +26,7 @@
 
 sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
 libs/*/Makefile
-sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' idris.cabal
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' idris.cabal
 sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
 }
 


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

2019-01-27 Thread Pierre Schmitz via arch-commits
Date: Sunday, January 27, 2019 @ 10:32:07
  Author: pierre
Revision: 344864

archrelease: copy trunk to extra-x86_64

Added:
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 344863, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 344863, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 344863, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 344863, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 344863, 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 |  142 -
 lighttpd.conf|   44 +++
 lighttpd.logrotate.d |   18 +++---
 lighttpd.service |   24 
 lighttpd.tmpfiles|4 -
 5 files changed, 116 insertions(+), 116 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 10:31:58 UTC (rev 344863)
+++ PKGBUILD2019-01-27 10:32:07 UTC (rev 344864)
@@ -1,71 +0,0 @@
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.52
-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=('mariadb-libs' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'mariadb-libs: 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=('3c604f441c001641681b958012524c9a2e801314b07d9741d4b5e086e7585d676516e3fe587e0ff69f1f937c11b9a290f2173866d6b90019117b6be299972a72'
-'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 344863, 
lighttpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 10:32:07 UTC (rev 344864)
@@ -0,0 +1,71 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.53
+pkgrel=1
+pkgdesc='A secure, fast, compliant and very flexible web-server'

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

2019-01-27 Thread Pierre Schmitz via arch-commits
Date: Sunday, January 27, 2019 @ 10:31:58
  Author: pierre
Revision: 344863

upgpkg: lighttpd 1.4.53-1

Modified:
  lighttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 07:49:58 UTC (rev 344862)
+++ PKGBUILD2019-01-27 10:31:58 UTC (rev 344863)
@@ -1,8 +1,8 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=lighttpd
-pkgver=1.4.52
-pkgrel=2
+pkgver=1.4.53
+pkgrel=1
 pkgdesc='A secure, fast, compliant and very flexible web-server'
 license=('custom')
 arch=('x86_64')
@@ -17,7 +17,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=('3c604f441c001641681b958012524c9a2e801314b07d9741d4b5e086e7585d676516e3fe587e0ff69f1f937c11b9a290f2173866d6b90019117b6be299972a72'
+sha512sums=('bf5ea1c9f6f664c9ddcdf33ddba5b2bff760960d03c29a2181e73e3aceb45b523bb90003d0e0bc565334751830e6027cd7be2e92d030cde90813511957c9ea76'
 'SKIP'
 
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
 
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 10:14:46
  Author: felixonmars
Revision: 428207

upgpkg: darcs 2.14.2-2

rebuild with zip-archive 0.4

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 10:03:54 UTC (rev 428206)
+++ PKGBUILD2019-01-27 10:14:46 UTC (rev 428207)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.14.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL2")


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 10:15:03
  Author: felixonmars
Revision: 428208

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 10:03:54
  Author: felixonmars
Revision: 428206

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-install/repos/community-staging-x86_64/
  cabal-install/repos/community-staging-x86_64/PKGBUILD
(from rev 428205, cabal-install/trunk/PKGBUILD)

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 428205, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 10:03:54 UTC (rev 428206)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.4.0.0
+pkgrel=38
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-network' 'haskell-network-uri' 
'haskell-random' 'haskell-resolv'
+ 'haskell-tar' 'haskell-zlib' 'haskell-zip-archive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
+sha512sums=('caf49ec35d5665164b76db3a6219c0409243fb80fd7a740a91933732fbb26fc3efef88ddc3d769a76d0f76811ea83a6a7effdab5ad8264da808d4469c9faf125')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/< *0.4/<1/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}"
+  runhaskell Setup build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 10:03:35
  Author: felixonmars
Revision: 428205

upgpkg: cabal-install 2.4.0.0-38

rebuild with zip-archive 0.4

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 09:48:01 UTC (rev 428204)
+++ PKGBUILD2019-01-27 10:03:35 UTC (rev 428205)
@@ -5,7 +5,7 @@
 
 pkgname=cabal-install
 pkgver=2.4.0.0
-pkgrel=37
+pkgrel=38
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('BSD')
@@ -18,6 +18,11 @@
 
source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
 
sha512sums=('caf49ec35d5665164b76db3a6219c0409243fb80fd7a740a91933732fbb26fc3efef88ddc3d769a76d0f76811ea83a6a7effdab5ad8264da808d4469c9faf125')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/< *0.4/<1/' $pkgname.cabal
+}
+
 build() {
   cd $pkgname-$pkgver
 


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 09:47:42
  Author: felixonmars
Revision: 428203

upgpkg: haskell-zip-archive 0.4-1

rebuild with zip-archive 0.4

Modified:
  haskell-zip-archive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 09:34:28 UTC (rev 428202)
+++ PKGBUILD2019-01-27 09:47:42 UTC (rev 428203)
@@ -3,8 +3,8 @@
 
 _hkgname=zip-archive
 pkgname=haskell-zip-archive
-pkgver=0.3.3
-pkgrel=14
+pkgver=0.4
+pkgrel=1
 pkgdesc="Library for creating and modifying zip archives."
 url="https://github.com/jgm/zip-archive;
 license=("BSD")
@@ -13,7 +13,7 @@
  'haskell-zlib')
 makedepends=('ghc' 'haskell-hunit' 'unzip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/zip-archive/archive/$pkgver.tar.gz;)
-sha512sums=('4f8da015b115d47b3e50dab9a53b4999c2dbb02ccb4bbdfb08d48745ae2247ecdcc2a83366f04a2f5a38453e4401ae864556a434736c0098e693071d3d68cba4')
+sha512sums=('ac96542c37749ab0fcda057ef604092753cb96d27b74ae37206d292cabc7b7917498a421495da980f5aa5f619af1eb2d47b565a2f5b568652b55d351746e65e0')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 09:48:01
  Author: felixonmars
Revision: 428204

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-zip-archive/repos/community-staging-x86_64/
  haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD
(from rev 428203, haskell-zip-archive/trunk/PKGBUILD)

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

Copied: haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD (from rev 
428203, haskell-zip-archive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-27 09:48:01 UTC (rev 428204)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=zip-archive
+pkgname=haskell-zip-archive
+pkgver=0.4
+pkgrel=1
+pkgdesc="Library for creating and modifying zip archives."
+url="https://github.com/jgm/zip-archive;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-digest' 'haskell-old-time' 'haskell-temporary'
+ 'haskell-zlib')
+makedepends=('ghc' 'haskell-hunit' 'unzip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/zip-archive/archive/$pkgver.tar.gz;)
+sha512sums=('ac96542c37749ab0fcda057ef604092753cb96d27b74ae37206d292cabc7b7917498a421495da980f5aa5f619af1eb2d47b565a2f5b568652b55d351746e65e0')
+
+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-executable -fsplitbase
+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 addinclude/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 09:34:28
  Author: arodseth
Revision: 428202

archrelease: copy trunk to community-x86_64

Added:
  addinclude/repos/community-x86_64/PKGBUILD
(from rev 428201, addinclude/trunk/PKGBUILD)
Deleted:
  addinclude/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 09:34:15 UTC (rev 428201)
+++ PKGBUILD2019-01-27 09:34:28 UTC (rev 428202)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander F R�dseth 
-
-pkgname=addinclude
-pkgver=1.0
-pkgrel=2
-pkgdesc='Utility to add includes to header- and sourcefiles, for C and C++'
-arch=('x86_64')
-url='http://addinclude.roboticoverlords.org/'
-license=('GPL2')
-makedepends=('gcc-go')
-source=("http://addinclude.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
-validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('23786f497bc5097a26d39ef995c28035506e5bb39172c7d6a03c386e3d79471c'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  go build -o "$pkgname"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: addinclude/repos/community-x86_64/PKGBUILD (from rev 428201, 
addinclude/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 09:34:28 UTC (rev 428202)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. R�dseth 
+
+pkgname=addinclude
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Utility to add include statements to header- and sourcefiles, for C 
and C++'
+arch=(x86_64)
+url='https://addinclude.roboticoverlords.org/'
+license=(GPL2)
+makedepends=(gcc-go)
+source=("https://addinclude.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
+sha256sums=('af3f5a7d3472b6a871150d82b9905e6a6571ad8d80820e382e20179c7aac2e67'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  go build -gccgoflags "-Wl,-z,relro,-z,now" -o $pkgname
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-01-27 Thread Alexander Rødseth via arch-commits
Date: Sunday, January 27, 2019 @ 09:34:15
  Author: arodseth
Revision: 428201

upgpkg: addinclude 1.0.1-1

Modified:
  addinclude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 08:45:30 UTC (rev 428200)
+++ PKGBUILD2019-01-27 09:34:15 UTC (rev 428201)
@@ -1,22 +1,22 @@
-# Maintainer: Alexander F R�dseth 
+# Maintainer: Alexander F. R�dseth 
 
 pkgname=addinclude
-pkgver=1.0
-pkgrel=2
-pkgdesc='Utility to add includes to header- and sourcefiles, for C and C++'
-arch=('x86_64')
-url='http://addinclude.roboticoverlords.org/'
-license=('GPL2')
-makedepends=('gcc-go')
-source=("http://addinclude.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Utility to add include statements to header- and sourcefiles, for C 
and C++'
+arch=(x86_64)
+url='https://addinclude.roboticoverlords.org/'
+license=(GPL2)
+makedepends=(gcc-go)
+source=("https://addinclude.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
 validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('23786f497bc5097a26d39ef995c28035506e5bb39172c7d6a03c386e3d79471c'
+sha256sums=('af3f5a7d3472b6a871150d82b9905e6a6571ad8d80820e382e20179c7aac2e67'
 'SKIP')
 
 build() {
   cd "$pkgname-$pkgver"
 
-  go build -o "$pkgname"
+  go build -gccgoflags "-Wl,-z,relro,-z,now" -o $pkgname
 }
 
 package() {


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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 08:45:30
  Author: felixonmars
Revision: 428200

archrelease: copy trunk to community-x86_64

Added:
  darcs/repos/community-x86_64/PKGBUILD
(from rev 428199, darcs/trunk/PKGBUILD)
Deleted:
  darcs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 08:45:12 UTC (rev 428199)
+++ PKGBUILD2019-01-27 08:45:30 UTC (rev 428200)
@@ -1,64 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=darcs
-pkgver=2.14.1
-pkgrel=117
-pkgdesc="A distributed, interactive, smart revision control system"
-url="http://darcs.net;
-license=("GPL2")
-arch=('x86_64')
-depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
- 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
- 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
- 'haskell-network' 'haskell-network-uri' 'haskell-old-time'
- 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
- 'haskell-tar' 'haskell-unix-compat' 'haskell-utf8-string'
- 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
-makedepends=('ghc' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-quickcheck'
- 'haskell-shelly' 'haskell-split' 'haskell-test-framework'
- 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
-source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('8daea7bdbe8ed5bc67ef2c44918b431a8fc6b2703068200fba338b9c051b4bafed0a1ec9dcec5a58b1530ce4a4231e3c4ecc00bd509cde9ef95d895719e89346')
-
-prepare() {
-cd $pkgname-$pkgver
-sed -i -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' -e 's/< *5.7/<6/' -e 's/< 
*2.12/<3/' $pkgname.cabal
-sed -e 's/^ghc /ghc -dynamic /' \
--e 's/ ghc / ghc -dynamic /' \
--i tests/*.sh tests/lib
-sed -i '1i{-# language NoMonadFailDesugaring #-}' src/Darcs/Util/Tree.hs 
src/Darcs/UI/Commands/Util/Tree.hs harness/Darcs/Test/Patch/Check.hs 
harness/Darcs/Test/Patch/Arbitrary/PrimV1.hs
-}
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
--f-rts -foptimize -f-warn-as-error -f-libiconv
-LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build runhaskell Setup 
build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-cd $pkgname-$pkgver
-runhaskell Setup test
-}
-
-package() {
-cd $pkgname-$pkgver
-
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
-
-install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
-install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
-}

Copied: darcs/repos/community-x86_64/PKGBUILD (from rev 428199, 
darcs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 08:45:30 UTC (rev 428200)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.14.2
+pkgrel=1
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL2")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
+ 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
+ 'haskell-network' 'haskell-network-uri' 'haskell-old-time'
+ 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-unix-compat' 'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-shelly' 'haskell-split' 

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

2019-01-27 Thread Felix Yan via arch-commits
Date: Sunday, January 27, 2019 @ 08:45:12
  Author: felixonmars
Revision: 428199

upgpkg: darcs 2.14.2-1

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 03:18:58 UTC (rev 428198)
+++ PKGBUILD2019-01-27 08:45:12 UTC (rev 428199)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=darcs
-pkgver=2.14.1
-pkgrel=117
+pkgver=2.14.2
+pkgrel=1
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL2")
@@ -19,15 +19,13 @@
  'haskell-shelly' 'haskell-split' 'haskell-test-framework'
  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('8daea7bdbe8ed5bc67ef2c44918b431a8fc6b2703068200fba338b9c051b4bafed0a1ec9dcec5a58b1530ce4a4231e3c4ecc00bd509cde9ef95d895719e89346')
+sha512sums=('0fd3aa052da9d74f31835a12e7bb50beeff7beec8b10c72cafef7e97fbac02ae178a8f52bf55f1d79887e19164633c8a19ddda01ff2ba4aa8795ac071903552b')
 
 prepare() {
 cd $pkgname-$pkgver
-sed -i -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' -e 's/< *5.7/<6/' -e 's/< 
*2.12/<3/' $pkgname.cabal
 sed -e 's/^ghc /ghc -dynamic /' \
 -e 's/ ghc / ghc -dynamic /' \
 -i tests/*.sh tests/lib
-sed -i '1i{-# language NoMonadFailDesugaring #-}' src/Darcs/Util/Tree.hs 
src/Darcs/UI/Commands/Util/Tree.hs harness/Darcs/Test/Patch/Check.hs 
harness/Darcs/Test/Patch/Arbitrary/PrimV1.hs
 }
 
 build() {