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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 00:54:53
  Author: polyzen
Revision: 418794

archrelease: copy trunk to community-any

Added:
  rstcheck/repos/community-any/
  rstcheck/repos/community-any/PKGBUILD
(from rev 418793, rstcheck/trunk/PKGBUILD)

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

Copied: rstcheck/repos/community-any/PKGBUILD (from rev 418793, 
rstcheck/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-29 00:54:53 UTC (rev 418794)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=rstcheck
+pkgver=3.3.1
+pkgrel=2
+pkgdesc='Checks syntax of reStructuredText and code blocks nested within it'
+arch=('any')
+url=https://github.com/myint/rstcheck
+license=('MIT')
+depends=('python-docutils' 'python-setuptools')
+optdepends=('python-sphinx: Sphinx support')
+source=("https://files.pythonhosted.org/packages/source/r/rstcheck/rstcheck-$pkgver.tar.gz;)
+sha512sums=('d390565c59466e1047fb41491eb5a2261fec91848806e04137bcc6053759fc87c8e4c72721d39b35c959b0baddaf90f2c8459213cec76b82be9b78bdd44076c5')
+
+build() {
+  cd rstcheck-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd rstcheck-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/rstcheck LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 00:54:21
  Author: polyzen
Revision: 418793

Initial commit

Added:
  rstcheck/
  rstcheck/repos/
  rstcheck/trunk/
  rstcheck/trunk/PKGBUILD

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

Added: rstcheck/trunk/PKGBUILD
===
--- rstcheck/trunk/PKGBUILD (rev 0)
+++ rstcheck/trunk/PKGBUILD 2018-12-29 00:54:21 UTC (rev 418793)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=rstcheck
+pkgver=3.3.1
+pkgrel=2
+pkgdesc='Checks syntax of reStructuredText and code blocks nested within it'
+arch=('any')
+url=https://github.com/myint/rstcheck
+license=('MIT')
+depends=('python-docutils' 'python-setuptools')
+optdepends=('python-sphinx: Sphinx support')
+source=("https://files.pythonhosted.org/packages/source/r/rstcheck/rstcheck-$pkgver.tar.gz;)
+sha512sums=('d390565c59466e1047fb41491eb5a2261fec91848806e04137bcc6053759fc87c8e4c72721d39b35c959b0baddaf90f2c8459213cec76b82be9b78bdd44076c5')
+
+build() {
+  cd rstcheck-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd rstcheck-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/rstcheck LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 00:37:32
  Author: polyzen
Revision: 418792

archrelease: copy trunk to community-x86_64

Added:
  shotgun/repos/community-x86_64/
  shotgun/repos/community-x86_64/PKGBUILD
(from rev 418791, shotgun/trunk/PKGBUILD)

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

Copied: shotgun/repos/community-x86_64/PKGBUILD (from rev 418791, 
shotgun/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-12-29 00:37:32 UTC (rev 418792)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Streetwalrus 
+
+pkgname=shotgun
+pkgver=2.0.1
+pkgrel=3
+pkgdesc='Minimal X screenshot utility'
+arch=('x86_64')
+url=https://github.com/neXromancers/shotgun
+license=('MPL2')
+depends=('gcc-libs' 'libxrandr')
+makedepends=('git' 'rust')
+source=("$url/archive/v$pkgver/shotgun-v$pkgver.tar.gz")
+sha512sums=('9ac3c43b407a970a1c5b39754d3bbeceeb535b608b4ce27a12da7f290467023ee04c1416e8403ee387691feeafd3ad8d4d5d53c9de6ad4caf45a1f30ddd1ec66')
+
+build() {
+  cd shotgun-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd shotgun-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/shotgun
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 00:37:06
  Author: polyzen
Revision: 418791

Initial commit

Added:
  shotgun/
  shotgun/repos/
  shotgun/trunk/
  shotgun/trunk/PKGBUILD

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

Added: shotgun/trunk/PKGBUILD
===
--- shotgun/trunk/PKGBUILD  (rev 0)
+++ shotgun/trunk/PKGBUILD  2018-12-29 00:37:06 UTC (rev 418791)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Streetwalrus 
+
+pkgname=shotgun
+pkgver=2.0.1
+pkgrel=3
+pkgdesc='Minimal X screenshot utility'
+arch=('x86_64')
+url=https://github.com/neXromancers/shotgun
+license=('MPL2')
+depends=('gcc-libs' 'libxrandr')
+makedepends=('git' 'rust')
+source=("$url/archive/v$pkgver/shotgun-v$pkgver.tar.gz")
+sha512sums=('9ac3c43b407a970a1c5b39754d3bbeceeb535b608b4ce27a12da7f290467023ee04c1416e8403ee387691feeafd3ad8d4d5d53c9de6ad4caf45a1f30ddd1ec66')
+
+build() {
+  cd shotgun-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd shotgun-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/shotgun
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 23:38:38
  Author: bgyorgy
Revision: 418790

archrelease: copy trunk to community-x86_64

Added:
  zint/repos/community-x86_64/PKGBUILD
(from rev 418789, zint/trunk/PKGBUILD)
  zint/repos/community-x86_64/zint-qt.appdata.xml
(from rev 418789, zint/trunk/zint-qt.appdata.xml)
Deleted:
  zint/repos/community-x86_64/PKGBUILD

-+
 PKGBUILD|   88 +-
 zint-qt.appdata.xml |   29 
 2 files changed, 74 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 23:38:34 UTC (rev 418789)
+++ PKGBUILD2018-12-28 23:38:38 UTC (rev 418790)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgbase=zint
-pkgname=(zint zint-qt)
-pkgver=2.6.3
-pkgrel=1
-pkgdesc="Barcode encoding library supporting over 50 symbologies"
-arch=('x86_64')
-url="http://zint.org.uk/;
-license=('GPL')
-depends=('qt5-base')
-makedepends=('cmake' 'qt5-tools')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.src.tar.gz;)
-sha256sums=('adcaebeb2931163a567073644c8e7952430ea31e08060363432d77cc599318d8')
-
-build() {
-   cd $pkgbase-$pkgver.src
-   cmake -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package_zint() {
-   depends=('libpng')
-
-   cd $pkgbase-$pkgver.src
-   make DESTDIR="$pkgdir" install
-
-   rm "$pkgdir/usr/bin/zint-qt" \
-  "$pkgdir/usr/include/qzint.h" \
-  "$pkgdir/usr/lib/libQZint.so"*
-}
-
-package_zint-qt() {
-   pkgdesc="Zint Barcode Studio GUI"
-   depends=('qt5-base' 'zint')
-
-   cd $pkgbase-$pkgver.src
-   make -C backend_qt DESTDIR="$pkgdir" install
-   make -C frontend_qt DESTDIR="$pkgdir" install
-   install -Dm644 zint.png "$pkgdir/usr/share/pixmaps/zint.png"
-   install -Dm644 zint-qt.desktop 
"$pkgdir/usr/share/applications/zint-qt.desktop"
-}

Copied: zint/repos/community-x86_64/PKGBUILD (from rev 418789, 
zint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 23:38:38 UTC (rev 418790)
@@ -0,0 +1,45 @@
+# Maintainer: Balló György 
+
+pkgbase=zint
+pkgname=(zint zint-qt)
+pkgver=2.6.3
+pkgrel=2
+pkgdesc="Barcode encoding library supporting over 50 symbologies"
+arch=('x86_64')
+url="http://zint.org.uk/;
+license=('GPL')
+depends=('hicolor-icon-theme' 'qt5-base')
+makedepends=('cmake' 'qt5-tools')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.src.tar.gz;
+zint-qt.appdata.xml)
+sha256sums=('adcaebeb2931163a567073644c8e7952430ea31e08060363432d77cc599318d8'
+'6c99514fb9079b6e6322b3b11fed5ff2c43cdcdd24c15e3cbf2663b884fc2f0c')
+
+build() {
+   cd $pkgbase-$pkgver.src
+   cmake -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_zint() {
+   depends=('libpng')
+
+   cd $pkgbase-$pkgver.src
+   make DESTDIR="$pkgdir" install
+
+   rm "$pkgdir/usr/bin/zint-qt" \
+  "$pkgdir/usr/include/qzint.h" \
+  "$pkgdir/usr/lib/libQZint.so"*
+}
+
+package_zint-qt() {
+   pkgdesc="Zint Barcode Studio GUI"
+   depends=('hicolor-icon-theme' 'qt5-base' 'zint')
+
+   cd $pkgbase-$pkgver.src
+   make -C backend_qt DESTDIR="$pkgdir" install
+   make -C frontend_qt DESTDIR="$pkgdir" install
+   install -Dm644 zint.png 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/zint.png"
+   install -Dm644 zint-qt.desktop 
"$pkgdir/usr/share/applications/zint-qt.desktop"
+   install -Dm644 ../zint-qt.appdata.xml 
"$pkgdir/usr/share/metainfo/zint-qt.appdata.xml"
+}

Copied: zint/repos/community-x86_64/zint-qt.appdata.xml (from rev 418789, 
zint/trunk/zint-qt.appdata.xml)
===
--- zint-qt.appdata.xml (rev 0)
+++ zint-qt.appdata.xml 2018-12-28 23:38:38 UTC (rev 418790)
@@ -0,0 +1,29 @@
+
+
+  org.zint.zint-qt
+  zint-qt.desktop
+  Zint Barcode Studio
+  Barcode generator
+  CC0-1.0
+  GPL-3.0
+  
+The Zint project aims to provide a complete barcode generating 
solution. It is hoped that Zint provides a solution which is flexible enough 
for professional users while at the same time takes care of as much of the 
processing as possible to allow easy translation from input data to barcode 
image.
+Zint is currently able to encode data in over 50 barcode symbologies 
(types of barcode), for each of which it is possible to translate that data 
from either Unicode (UTF-8) or a raw 8-bit data stream. The image can be 
rendered as either a Portable Network Graphic (PNG) image, Windows Bitmap 
(BMP), Graphics Interchange Format (GIF), ZSoft Paintbrush image (PCX), as 
Encapsulated Post Script (EPS) or as a Scalable Vector Graphic (SVG). Many 
options are available for setting the characteristics of the output image 
including the size and 

[arch-commits] Commit in zint/trunk (PKGBUILD zint-qt.appdata.xml)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 23:38:34
  Author: bgyorgy
Revision: 418789

upgpkg: zint 2.6.3-2

Add AppStream metadata

Added:
  zint/trunk/zint-qt.appdata.xml
Modified:
  zint/trunk/PKGBUILD

-+
 PKGBUILD|   15 +--
 zint-qt.appdata.xml |   29 +
 2 files changed, 38 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 22:59:04 UTC (rev 418788)
+++ PKGBUILD2018-12-28 23:38:34 UTC (rev 418789)
@@ -3,15 +3,17 @@
 pkgbase=zint
 pkgname=(zint zint-qt)
 pkgver=2.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Barcode encoding library supporting over 50 symbologies"
 arch=('x86_64')
 url="http://zint.org.uk/;
 license=('GPL')
-depends=('qt5-base')
+depends=('hicolor-icon-theme' 'qt5-base')
 makedepends=('cmake' 'qt5-tools')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.src.tar.gz;)
-sha256sums=('adcaebeb2931163a567073644c8e7952430ea31e08060363432d77cc599318d8')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.src.tar.gz;
+zint-qt.appdata.xml)
+sha256sums=('adcaebeb2931163a567073644c8e7952430ea31e08060363432d77cc599318d8'
+'6c99514fb9079b6e6322b3b11fed5ff2c43cdcdd24c15e3cbf2663b884fc2f0c')
 
 build() {
cd $pkgbase-$pkgver.src
@@ -32,11 +34,12 @@
 
 package_zint-qt() {
pkgdesc="Zint Barcode Studio GUI"
-   depends=('qt5-base' 'zint')
+   depends=('hicolor-icon-theme' 'qt5-base' 'zint')
 
cd $pkgbase-$pkgver.src
make -C backend_qt DESTDIR="$pkgdir" install
make -C frontend_qt DESTDIR="$pkgdir" install
-   install -Dm644 zint.png "$pkgdir/usr/share/pixmaps/zint.png"
+   install -Dm644 zint.png 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/zint.png"
install -Dm644 zint-qt.desktop 
"$pkgdir/usr/share/applications/zint-qt.desktop"
+   install -Dm644 ../zint-qt.appdata.xml 
"$pkgdir/usr/share/metainfo/zint-qt.appdata.xml"
 }

Added: zint-qt.appdata.xml
===
--- zint-qt.appdata.xml (rev 0)
+++ zint-qt.appdata.xml 2018-12-28 23:38:34 UTC (rev 418789)
@@ -0,0 +1,29 @@
+
+
+  org.zint.zint-qt
+  zint-qt.desktop
+  Zint Barcode Studio
+  Barcode generator
+  CC0-1.0
+  GPL-3.0
+  
+The Zint project aims to provide a complete barcode generating 
solution. It is hoped that Zint provides a solution which is flexible enough 
for professional users while at the same time takes care of as much of the 
processing as possible to allow easy translation from input data to barcode 
image.
+Zint is currently able to encode data in over 50 barcode symbologies 
(types of barcode), for each of which it is possible to translate that data 
from either Unicode (UTF-8) or a raw 8-bit data stream. The image can be 
rendered as either a Portable Network Graphic (PNG) image, Windows Bitmap 
(BMP), Graphics Interchange Format (GIF), ZSoft Paintbrush image (PCX), as 
Encapsulated Post Script (EPS) or as a Scalable Vector Graphic (SVG). Many 
options are available for setting the characteristics of the output image 
including the size and colour of the image, the amount of error correction used 
in the symbol and, in the case of raster images, the orientation of the 
image.
+  
+  
+
+  http://zint.org.uk/_images/manualImages/gui1.png
+
+
+  http://zint.org.uk/_images/manualImages/gui2.png
+
+
+​  http://zint.org.uk/_images/manualImages/gui3.png
+
+
+​  http://zint.org.uk/_images/manualImages/gui4.png
+
+  
+  https://sourceforge.net/p/zint/tickets/
+  http://zint.org.uk/
+


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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 22:59:00
  Author: bgyorgy
Revision: 418787

upgpkg: merkaartor 0.18.3-6

Fix build by removing obsoleted QtWebkit dependency, add AppStream metadata

Added:
  merkaartor/trunk/merkaartor.appdata.xml
  merkaartor/trunk/nowebkit.patch
Modified:
  merkaartor/trunk/PKGBUILD

+
 PKGBUILD   |   20 +-
 merkaartor.appdata.xml |   43 +
 nowebkit.patch |  356 +++
 3 files changed, 414 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 21:49:36 UTC (rev 418786)
+++ PKGBUILD2018-12-28 22:59:00 UTC (rev 418787)
@@ -6,20 +6,29 @@
 
 pkgname=merkaartor
 pkgver=0.18.3
-pkgrel=5
+pkgrel=6
 pkgdesc='OpenStreetMap editor'
 arch=('x86_64')
 url='http://merkaartor.be/'
 license=('GPL2')
-depends=('exiv2' 'gdal' 'gpsd' 'hicolor-icon-theme' 'qt5-svg' 'qt5-webkit')
+depends=('exiv2' 'gdal' 'gpsd' 'hicolor-icon-theme' 'qt5-svg')
 makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstreetmap/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstreetmap/$pkgname/archive/$pkgver.tar.gz;
+merkaartor.appdata.xml
+nowebkit.patch)
+sha256sums=('d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947'
+'4082cae211a5480501abb95c302608c45363cc3152a70746a3f41f57c4252df6'
+'f976a3bb6bcd0f0ef8723dcc8597f5ae9789c93143e7ef47f24f43c67913129b')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../nowebkit.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   lrelease src/src.pro
-  qmake Merkaartor.pro PREFIX=/usr GPSDLIB=1 GEOIMAGE=1
+  qmake Merkaartor.pro PREFIX=/usr GPSDLIB=1 GEOIMAGE=1 USEWEBENGINE=0
   make
 }
 
@@ -26,4 +35,5 @@
 package() {
   cd $pkgname-$pkgver
   make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 ../merkaartor.appdata.xml 
"$pkgdir/usr/share/metainfo/merkaartor.appdata.xml"
 }

Added: merkaartor.appdata.xml
===
--- merkaartor.appdata.xml  (rev 0)
+++ merkaartor.appdata.xml  2018-12-28 22:59:00 UTC (rev 418787)
@@ -0,0 +1,43 @@
+
+
+  org.merkaartor.merkaartor
+  merkaartor.desktop
+  Merkaartor
+  OpenStreetMap editor
+  CC0-1.0
+  GPL-2.0
+  
+Merkaartor is a map editor for OpenStreetMap.org, the free editable map 
of the whole world. Features:
+
+  Download from and upload to the OpenStreetMap server
+  Open .osm and .gpx files
+  Create and move trackpoints, ways, and areas
+  Add tags, delete features
+  Reverse, split and join ways
+  Visualize some leisure/landuse areas and road types
+  Displaying GPS information
+
+  
+  
+
+  Merkaartor 0.15.3 with Mapnik style
+​  
https://wiki.openstreetmap.org/w/images/0/04/Merkaartor_0.15.3.png
+
+
+  Merkaartor 0.15.3 with Maxspeed style
+​  
https://wiki.openstreetmap.org/w/images/b/b4/Merkaartor_0.15.3_maxspeed.png
+
+
+  Merkaartor 0.15.3 showing the fully localized GUI
+​  
https://wiki.openstreetmap.org/w/images/4/48/Merkaartor_0.15.3_i18n.png
+
+
+  Merkaartor 0.15.3 with WMS background and semi-transparent map 
layer
+​  
https://wiki.openstreetmap.org/w/images/c/c9/Merkaartor_0.15.3_wms.png
+
+  
+  https://github.com/openstreetmap/merkaartor/issues
+  http://merkaartor.be/
+  merkaar...@openstreetmap.org
+  merkaartor
+

Added: nowebkit.patch
===
--- nowebkit.patch  (rev 0)
+++ nowebkit.patch  2018-12-28 22:59:00 UTC (rev 418787)
@@ -0,0 +1,356 @@
+From df515ecf4e6ce1a249af299840e82126c68fcf91 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ladislav=20L=C3=A1ska?= 
+Date: Mon, 26 Sep 2016 13:02:57 +0200
+Subject: [PATCH] Updated QWeb to QWebView.
+
+---
+ src/Layers/LicenseDisplayDialog.ui  |  6 +++---
+ src/QMapControl/browserimagemanager.cpp | 20 +---
+ src/QMapControl/browserimagemanager.h   | 17 ++---
+ src/src.pro |  2 +-
+ 4 files changed, 19 insertions(+), 26 deletions(-)
+
+diff --git a/src/Layers/LicenseDisplayDialog.ui 
b/src/Layers/LicenseDisplayDialog.ui
+index 103816c6..3dabd130 100755
+--- a/src/Layers/LicenseDisplayDialog.ui
 b/src/Layers/LicenseDisplayDialog.ui
+@@ -15,7 +15,7 @@
+   
+   
+
+-
++
+  
+   
+about:blank
+@@ -41,9 +41,9 @@
+  
+  
+   
+-   QWebView
++   QWebEngineView
+QWidget
+-   QtWebKit/QWebView
++   QWebEngineView
+   
+  
+  
+diff --git a/src/QMapControl/browserimagemanager.cpp 
b/src/QMapControl/browserimagemanager.cpp
+index 468cf2b6..4021d40f 100644
+--- a/src/QMapControl/browserimagemanager.cpp
 

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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 22:59:04
  Author: bgyorgy
Revision: 418788

archrelease: copy trunk to community-x86_64

Added:
  merkaartor/repos/community-x86_64/PKGBUILD
(from rev 418787, merkaartor/trunk/PKGBUILD)
  merkaartor/repos/community-x86_64/merkaartor.appdata.xml
(from rev 418787, merkaartor/trunk/merkaartor.appdata.xml)
  merkaartor/repos/community-x86_64/nowebkit.patch
(from rev 418787, merkaartor/trunk/nowebkit.patch)
Deleted:
  merkaartor/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |   68 +---
 merkaartor.appdata.xml |   43 +
 nowebkit.patch |  356 +++
 3 files changed, 438 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 22:59:00 UTC (rev 418787)
+++ PKGBUILD2018-12-28 22:59:04 UTC (rev 418788)
@@ -1,29 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Gaetan Bisson 
-# Contributor: Michael Kanis 
-# Contributor: Paulo Freire 
-# Contributor: Brice Maron 
-
-pkgname=merkaartor
-pkgver=0.18.3
-pkgrel=5
-pkgdesc='OpenStreetMap editor'
-arch=('x86_64')
-url='http://merkaartor.be/'
-license=('GPL2')
-depends=('exiv2' 'gdal' 'gpsd' 'hicolor-icon-theme' 'qt5-svg' 'qt5-webkit')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstreetmap/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947')
-
-build() {
-  cd $pkgname-$pkgver
-  lrelease src/src.pro
-  qmake Merkaartor.pro PREFIX=/usr GPSDLIB=1 GEOIMAGE=1
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: merkaartor/repos/community-x86_64/PKGBUILD (from rev 418787, 
merkaartor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 22:59:04 UTC (rev 418788)
@@ -0,0 +1,39 @@
+# Maintainer: Balló György 
+# Contributor: Gaetan Bisson 
+# Contributor: Michael Kanis 
+# Contributor: Paulo Freire 
+# Contributor: Brice Maron 
+
+pkgname=merkaartor
+pkgver=0.18.3
+pkgrel=6
+pkgdesc='OpenStreetMap editor'
+arch=('x86_64')
+url='http://merkaartor.be/'
+license=('GPL2')
+depends=('exiv2' 'gdal' 'gpsd' 'hicolor-icon-theme' 'qt5-svg')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstreetmap/$pkgname/archive/$pkgver.tar.gz;
+merkaartor.appdata.xml
+nowebkit.patch)
+sha256sums=('d6b3e4d982b2c7b82331bc5bc8d993d733c443250f02919c3c4dbd6924e6e947'
+'4082cae211a5480501abb95c302608c45363cc3152a70746a3f41f57c4252df6'
+'f976a3bb6bcd0f0ef8723dcc8597f5ae9789c93143e7ef47f24f43c67913129b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../nowebkit.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  lrelease src/src.pro
+  qmake Merkaartor.pro PREFIX=/usr GPSDLIB=1 GEOIMAGE=1 USEWEBENGINE=0
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 ../merkaartor.appdata.xml 
"$pkgdir/usr/share/metainfo/merkaartor.appdata.xml"
+}

Copied: merkaartor/repos/community-x86_64/merkaartor.appdata.xml (from rev 
418787, merkaartor/trunk/merkaartor.appdata.xml)
===
--- merkaartor.appdata.xml  (rev 0)
+++ merkaartor.appdata.xml  2018-12-28 22:59:04 UTC (rev 418788)
@@ -0,0 +1,43 @@
+
+
+  org.merkaartor.merkaartor
+  merkaartor.desktop
+  Merkaartor
+  OpenStreetMap editor
+  CC0-1.0
+  GPL-2.0
+  
+Merkaartor is a map editor for OpenStreetMap.org, the free editable map 
of the whole world. Features:
+
+  Download from and upload to the OpenStreetMap server
+  Open .osm and .gpx files
+  Create and move trackpoints, ways, and areas
+  Add tags, delete features
+  Reverse, split and join ways
+  Visualize some leisure/landuse areas and road types
+  Displaying GPS information
+
+  
+  
+
+  Merkaartor 0.15.3 with Mapnik style
+​  
https://wiki.openstreetmap.org/w/images/0/04/Merkaartor_0.15.3.png
+
+
+  Merkaartor 0.15.3 with Maxspeed style
+​  
https://wiki.openstreetmap.org/w/images/b/b4/Merkaartor_0.15.3_maxspeed.png
+
+
+  Merkaartor 0.15.3 showing the fully localized GUI
+​  
https://wiki.openstreetmap.org/w/images/4/48/Merkaartor_0.15.3_i18n.png
+
+
+  Merkaartor 0.15.3 with WMS background and semi-transparent map 
layer
+​  
https://wiki.openstreetmap.org/w/images/c/c9/Merkaartor_0.15.3_wms.png
+
+  
+  https://github.com/openstreetmap/merkaartor/issues
+  http://merkaartor.be/
+  merkaar...@openstreetmap.org
+  merkaartor
+

Copied: merkaartor/repos/community-x86_64/nowebkit.patch (from rev 418787, 
merkaartor/trunk/nowebkit.patch)

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

2018-12-28 Thread Andrew Crerar via arch-commits
Date: Friday, December 28, 2018 @ 21:49:36
  Author: andrewsc
Revision: 418786

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  464 ++---
 1 file changed, 232 insertions(+), 232 deletions(-)

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

[arch-commits] Commit in steadyflow/trunk (PKGBUILD steadyflow.appdata.xml)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 21:31:28
  Author: bgyorgy
Revision: 418784

upgpkg: steadyflow 0.2.0-8

Add AppStream metadata

Added:
  steadyflow/trunk/steadyflow.appdata.xml
Modified:
  steadyflow/trunk/PKGBUILD

+
 PKGBUILD   |5 -
 steadyflow.appdata.xml |   21 +
 2 files changed, 25 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 21:30:51 UTC (rev 418783)
+++ PKGBUILD2018-12-28 21:31:28 UTC (rev 418784)
@@ -5,7 +5,7 @@
 
 pkgname=steadyflow
 pkgver=0.2.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Simple download manager for GNOME"
 arch=('x86_64')
 url='https://launchpad.net/steadyflow'
@@ -13,8 +13,10 @@
 depends=('gtk3' 'gvfs' 'libgee' 'libnotify')
 makedepends=('cmake' 'vala')
 
source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz
+steadyflow.appdata.xml
 fixes.patch)
 sha256sums=('ab1f23d52be78c952979ee0bb1778b8bf4664145c6fb28db219d516aae7dddb6'
+'93f639db692fd05ea4c3bc1ee5dff13d6611deccb6926d13ea1f5b23c9b23be9'
 '24b76cd43e1f0a091f9180ec33a9e8c86c1de40eb8a58fcfe1d9e5df79ccc3ef')
 
 prepare() {
@@ -31,4 +33,5 @@
 package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
+   install -Dm644 ../steadyflow.appdata.xml 
"$pkgdir/usr/share/metainfo/steadyflow.appdata.xml"
 }

Added: steadyflow.appdata.xml
===
--- steadyflow.appdata.xml  (rev 0)
+++ steadyflow.appdata.xml  2018-12-28 21:31:28 UTC (rev 418784)
@@ -0,0 +1,21 @@
+
+
+  net.launchpad.steadyflow
+  steadyflow.desktop
+  Steadyflow
+  Simple download manager
+  CC0-1.0
+  GPL-3.0
+  
+Steadyflow is a download manager that aims for minimalism, ease of use, 
and a clean, malleable codebase. It should be easy to control, whether from the 
GUI, command line, or D-Bus.
+  
+  
+
+  
https://screenshots.debian.net/screenshots/000/008/798/large.png
+
+  
+  https://bugs.launchpad.net/steadyflow
+  https://launchpad.net/steadyflow
+  steadyf...@googlegroups.com
+  steadyflow
+


[arch-commits] Commit in steadyflow/repos/community-x86_64 (5 files)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 21:31:33
  Author: bgyorgy
Revision: 418785

archrelease: copy trunk to community-x86_64

Added:
  steadyflow/repos/community-x86_64/PKGBUILD
(from rev 418784, steadyflow/trunk/PKGBUILD)
  steadyflow/repos/community-x86_64/fixes.patch
(from rev 418784, steadyflow/trunk/fixes.patch)
  steadyflow/repos/community-x86_64/steadyflow.appdata.xml
(from rev 418784, steadyflow/trunk/steadyflow.appdata.xml)
Deleted:
  steadyflow/repos/community-x86_64/PKGBUILD
  steadyflow/repos/community-x86_64/fixes.patch

+
 PKGBUILD   |   71 ++--
 fixes.patch|  166 +++
 steadyflow.appdata.xml |   21 +
 3 files changed, 141 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 21:31:28 UTC (rev 418784)
+++ PKGBUILD2018-12-28 21:31:33 UTC (rev 418785)
@@ -1,34 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: M0Rf30
-# Contributor: Dan Serban
-# Contributor: zbito https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz
-fixes.patch)
-sha256sums=('ab1f23d52be78c952979ee0bb1778b8bf4664145c6fb28db219d516aae7dddb6'
-'24b76cd43e1f0a091f9180ec33a9e8c86c1de40eb8a58fcfe1d9e5df79ccc3ef')
-
-prepare() {
-   cd $pkgname-$pkgver
-   patch -Np1 -i ../fixes.patch
-}
-
-build() {
-   cd $pkgname-$pkgver
-   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCOMPILE_GSETTINGS_ON_INSTALL=OFF 
-DWANT_AYATANA=OFF
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="$pkgdir" install
-}

Copied: steadyflow/repos/community-x86_64/PKGBUILD (from rev 418784, 
steadyflow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 21:31:33 UTC (rev 418785)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György 
+# Contributor: M0Rf30
+# Contributor: Dan Serban
+# Contributor: zbito https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz
+steadyflow.appdata.xml
+fixes.patch)
+sha256sums=('ab1f23d52be78c952979ee0bb1778b8bf4664145c6fb28db219d516aae7dddb6'
+'93f639db692fd05ea4c3bc1ee5dff13d6611deccb6926d13ea1f5b23c9b23be9'
+'24b76cd43e1f0a091f9180ec33a9e8c86c1de40eb8a58fcfe1d9e5df79ccc3ef')
+
+prepare() {
+   cd $pkgname-$pkgver
+   patch -Np1 -i ../fixes.patch
+}
+
+build() {
+   cd $pkgname-$pkgver
+   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCOMPILE_GSETTINGS_ON_INSTALL=OFF 
-DWANT_AYATANA=OFF
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+   install -Dm644 ../steadyflow.appdata.xml 
"$pkgdir/usr/share/metainfo/steadyflow.appdata.xml"
+}

Deleted: fixes.patch
===
--- fixes.patch 2018-12-28 21:31:28 UTC (rev 418784)
+++ fixes.patch 2018-12-28 21:31:33 UTC (rev 418785)
@@ -1,83 +0,0 @@
-diff -Naur steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake 
steadyflow-0.2.0/cmake/FindExtraDeps.cmake
 steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake2012-06-30 
14:39:35.0 +0200
-+++ steadyflow-0.2.0/cmake/FindExtraDeps.cmake 2017-07-16 09:54:03.871584093 
+0200
-@@ -1,5 +1,5 @@
- message("-- Checking for libgee...")
--pkg_check_modules(GEE gee-1.0)
-+pkg_check_modules(GEE gee-0.8)
- message("-- Checking for libnotify >= 0.7...")
- pkg_check_modules(LIBNOTIFY libnotify>=0.7)
- 
-diff -Naur steadyflow-0.2.0.orig/CMakeLists.txt steadyflow-0.2.0/CMakeLists.txt
 steadyflow-0.2.0.orig/CMakeLists.txt   2012-06-30 14:39:35.0 
+0200
-+++ steadyflow-0.2.0/CMakeLists.txt2017-07-16 09:54:03.871584093 +0200
-@@ -48,7 +48,7 @@
- )
- 
- set(VALA_PACKAGES
--  gee-1.0
-+  gee-0.8
-   gio-2.0
-   glib-2.0
-   gtk+-3.0
-diff -Naur steadyflow-0.2.0.orig/Steadyflow/FileListController.vala 
steadyflow-0.2.0/Steadyflow/FileListController.vala
 steadyflow-0.2.0.orig/Steadyflow/FileListController.vala   2012-06-30 
14:39:35.0 +0200
-+++ steadyflow-0.2.0/Steadyflow/FileListController.vala2017-07-16 
09:53:53.937975668 +0200
-@@ -27,7 +27,7 @@
-   private static const double REDRAW_SEC = 0.2;
- 
-   private TreeView tree;
--  private ListStore model;
-+  private Gtk.ListStore model;
-   private string filter = "";
-   private Timer redraw_timer;
- 
-@@ -46,7 +46,7 @@
-   column.pack_start (renderer, true);
-   column.set_cell_data_func (renderer, set_cell_data);
-   
--  model = new ListStore.newv ({ typeof (IDownloadFile) });
-+  model = new Gtk.ListStore.newv ({ typeof (IDownloadFile) });
-   tree.set_model (model);
-   tree.append_column (column);
-   
-diff -Naur 

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

2018-12-28 Thread Andrew Crerar via arch-commits
Date: Friday, December 28, 2018 @ 21:30:51
  Author: andrewsc
Revision: 418783

upgpkg: firefox-developer-edition-i18n 65.0b7-1

firefox-developer-edition-i18n: Updating to 65.0b7

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 21:06:52 UTC (rev 418782)
+++ PKGBUILD2018-12-28 21:30:51 UTC (rev 418783)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=65.0b6
+pkgver=65.0b7
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -133,100 +133,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('faf0fd4cdf4407cdeb4f461efc64197d425194acd7c7e77148b3f750307ed75fdc6723ecc9108a041c81aab6a04af126f407d6b920f21081a57dd8b1176949a5'
-
'846cd3b4a00f50cb704dffb1dd24ae641352130ee0a0b2db722fbe3491d3b678a968515806fb1a468db1ac28f0cb18cc45c38643c2bc41e3849ea2bd46389a16'
-
'155255f4ad81ada0dbce5f707c0dfe34ef780f36568e88de2c580f5d4a91d83af3031067743bf0fec179ae758142370e2519e64c1b6195eda0e0edc178f6bc84'
-
'5a0839788ec94452110e9c3706b3846edebb9b91af89f8d16f5c834f9102650fc082cb11698b24947c28653fa8a16defaecc2c99addab23d558b5b56809f85f1'
-
'c336ed54a277132470b38aa63d1bcc3018e43860a5053de511c9326403df561a828638f62cee7f1df5294e3cf0fcb4f54b7dcd0f80bc2b24ae6321c712b99136'
-
'1b02422e7bfb943d04569b00d3b65a10ef49705af447de38c7493e12de07e7c8c4bc4c8f1500b3565077ff5fa6c6dca6b760bb6a0c5eaeb88adfc10b8338fc1c'
-
'55cd47e459c6b181518b39cf1e2fa6ed40a36e90af983ffa73b4f6714ec2a974856b11d05c837e43f085d6a2e078d9a62a1cf76c00500f07b296aae7c70d40ad'
-
'12e35180456533e5a1b57383ebc62339aed6a6fbf91944366c36dcd3fa475ce14627bd3e16e123e823094867a6b84872e4f83ea42d5389d50a33430149b2db36'
-
'9eb9d6e11a3e818f7e4097561eeb915af771a89ba1db8a975f57986c73ff4f496db24fd27200ecba0193ecb7b731447571dc3cda4eb1ec72e9c91fe3c7a3462b'
-
'4baf8cad3b4a729dd0aa635144a7a2ee00f58065b70b6bb3524bb71fe4c13899f99da96aded6fbcc0bf78419980dd5620754f89d3a73aed99132354102ed8379'
-
'0d70c01c418859bafd7dbc8d75b5aa8970a6ef6aa0ec185f4e5519f2808a4de7dbb1a949804e75366f2c159ca22783239179ffed03e32f67a043a6e533f707b4'
-
'5ae99db61690b7c17f68edacfc6cefd5ab2347f73b331532a28f5220b92155f4d3094a6fb1d036a14824989af483183672cdf5d59071607956f3f36509dcb438'
-
'ebc55ba06a337946709b137000a80d1cb8e633e6571b0e2aa8e568cdb2484378c5bdbf310aa51ab7f3de65ea7dc5aa024736ec050cc60a1ff398effd62110792'
-
'77d6d6b75c419e8e44c68a1f765c9e5c6794b4a307b0c34e9ebc1bee8f368d4cb2d87542d464eca5e26b9e134fc08bf2fbdf2cff6e736a27ba097c31f671bda4'
-
'58d17509ac8ea3db5ade7dd6227302af750153a6804847864e1afa5ad08c9daef0eff36d7c7eafded00e5e0ccddd023966d2c1c2ecf8e95dac396b9e6e2f190b'
-
'bb091fda45ecd82fbe11cc1ff8bad51a2c2ab65d84104cbc6b12574340ca345efa26617ea5b620108f1f4f816189f983313655b45934d017a9258ae282f528ab'
-
'7cb596521ac21715240165d7a04a88b88b19240fc13fe57447b165aa3f812a6a27ade02f82d6d21a419b7333f869d9fe31ba1294dc49bac1a406ac444127e8a0'
-
'a1920c5332c48ba57010c377efd2d07408f1cbcedb791f92e7b5a068ba5812bb34c1347eef2fbef798c93bdb6d7159a7c5b14823c5dd283d7f1cce367d65cec6'
-
'e6e4ae2ec8164b48c9072d773b505235e4514b2f3f46a98287b2feba66395246e3f4f57d646381e1f0feec7c5700a9493a43ccae754e5635ba09982517a0ea8e'
-
'eda29d168462da430cb4449389d47b6e52099b32421c273ac92c988af37820a33d9b9ed344026875a6e6ea7fcfdf673639ba4c33c88362cde053a7546912136e'
-
'26456944cae45205776b765382912708ef7a85137d60fef68f554df442ed0e24ac0654dad1e5f75c0a404dde1540dfc4a116bad21ed7d59003177279ab78d840'
-
'76e5650ae65f0e33feee0b04517b1cca3d3ab5936f2909d4e7289ffb1954ad2a5623d3e5b53d028821497ffba84b9fe1347562c3c6950a643ce6f2f61d1eb7eb'
-
'e6974e3a69441c220d3dd09c1cab4a6ce6be96124dfc4064fec2cafb043005cc9219fb5c20b982f4638e9c7f73830ce3d84c9ee0c151ea462084fe99f94bfde7'
-
'9c034a9ce9c60d7147683f2b7a18b10e55ed22b54a24df80127a40b851bbe4df06623abc121afe46c501ba3d0d6f1dc96d0a855685548d5d797337da2ba14d8f'
-
'ab1e9f9574e84eadd5f7664d0cab71e09fdfac43e571f7951cd66fccd900f897dc7ab40aa5698278b736eed05c68b122f7c82d5070de60e31d40762603ffa291'
-
'd2e7e913ee07bf4777554ffcc074890bad2f31ba1ee82180b83c5cc31c4c806d1bf963276b1c24bc534cd43a00e3689d612f9ead29d35f09cad9be5273c7746e'
-
'877803773a1d41290e3eacd7fbafa6c97e7e68d88aa647a24689054b3856f1efd105efad207e261cb93b037c8111730bd0921d1a9899125898628b043a2de035'
-
'58435b427e4dbbe843f4a5f739dbb5d4bd4853d43ef472e578769e066c0d9668e54f58e8dae29e310a9028dd9adc85f54591415f08335dabf643b3a7a23c0ed4'
-

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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 21:06:48
  Author: bgyorgy
Revision: 418781

upgpkg: guvcview 2.0.6-3

Fix icon for AppStream metadata

Modified:
  guvcview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:54:36 UTC (rev 418780)
+++ PKGBUILD2018-12-28 21:06:48 UTC (rev 418781)
@@ -5,7 +5,7 @@
 pkgbase=guvcview
 pkgname=(guvcview guvcview-common guvcview-qt)
 pkgver=2.0.6
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple interface for capturing and viewing video from v4l2 devices"
 arch=('x86_64')
 url="http://guvcview.sourceforge.net/;
@@ -50,6 +50,7 @@
   make DESTDIR="$pkgdir" install
   make -C guvcview DESTDIR="$pkgdir" uninstall
   make -C data DESTDIR="$pkgdir" uninstall-man1 uninstall-appdataDATA 
uninstall-desktopDATA
+  install -Dm644 data/icons/guvcview.png 
"$pkgdir"/usr/share/icons/hicolor/128x128/apps/guvcview.png
 }
 
 package_guvcview() {
@@ -59,6 +60,7 @@
   cd $pkgbase-src-$pkgver
   make -C guvcview DESTDIR="$pkgdir" install
   make -C data DESTDIR="$pkgdir" install-man1 install-appdataDATA 
install-desktopDATA
+  sed -i 's/^Icon=.*/Icon=guvcview/' 
"$pkgdir"/usr/share/applications/guvcview.desktop
 }
 
 package_guvcview-qt() {
@@ -71,7 +73,8 @@
   mv "$pkgdir"/usr/bin/guvcview{,-qt}
   mv "$pkgdir"/usr/share/man/man1/guvcview{,-qt}.1
   mv "$pkgdir"/usr/share/applications/guvcview{,-qt}.desktop
-  sed -i 's/Exec=guvcview/Exec=guvcview-qt/' 
"$pkgdir"/usr/share/applications/guvcview-qt.desktop
+  sed -i 's/Exec=guvcview/Exec=guvcview-qt/
+  s/^Icon=.*/Icon=guvcview/' 
"$pkgdir"/usr/share/applications/guvcview-qt.desktop
   mv "$pkgdir"/usr/share/metainfo/guvcview{,-qt}.appdata.xml
   sed -i 's/net.sourceforge.guvcview/net.sourceforge.guvcview-qt/
   s/guvcview.desktop/guvcview-qt.desktop/' 
"$pkgdir"/usr/share/metainfo/guvcview-qt.appdata.xml


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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 21:06:52
  Author: bgyorgy
Revision: 418782

archrelease: copy trunk to community-x86_64

Added:
  
guvcview/repos/community-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
(from rev 418781, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
  guvcview/repos/community-x86_64/PKGBUILD
(from rev 418781, guvcview/trunk/PKGBUILD)
Deleted:
  
guvcview/repos/community-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
  guvcview/repos/community-x86_64/PKGBUILD

-+
 0001-Update-AppStream-metadata-to-a-newer-version.patch |  142 ++--
 PKGBUILD|  159 +++---
 2 files changed, 152 insertions(+), 149 deletions(-)

Deleted: 0001-Update-AppStream-metadata-to-a-newer-version.patch
===
--- 0001-Update-AppStream-metadata-to-a-newer-version.patch 2018-12-28 
21:06:48 UTC (rev 418781)
+++ 0001-Update-AppStream-metadata-to-a-newer-version.patch 2018-12-28 
21:06:52 UTC (rev 418782)
@@ -1,71 +0,0 @@
-From ee2a783223fc9be7135505535f67ade84d984940 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
-Date: Fri, 28 Dec 2018 21:35:06 +0100
-Subject: [PATCH] Update AppStream metadata to a newer version
-

- data/Makefile.am|  2 +-
- data/guvcview.appdata.xml.in.in | 29 -
- 2 files changed, 21 insertions(+), 10 deletions(-)
-
-diff --git a/data/Makefile.am b/data/Makefile.am
-index 22055f0..ad14d10 100644
 a/data/Makefile.am
-+++ b/data/Makefile.am
-@@ -28,7 +28,7 @@ desktop_DATA = $(DESKTOP_FILES)
- APPDATA_IN_FILES= guvcview.appdata.xml.in
- APPDATA_FILES= $(APPDATA_IN_FILES:.xml.in=.xml)
- 
--appdatadir = $(datadir)/appdata
-+appdatadir = $(datadir)/metainfo
- appdata_DATA = $(APPDATA_FILES)
- 
- endif
-diff --git a/data/guvcview.appdata.xml.in.in b/data/guvcview.appdata.xml.in.in
-index 61ba8c3..de934f7 100644
 a/data/guvcview.appdata.xml.in.in
-+++ b/data/guvcview.appdata.xml.in.in
-@@ -1,7 +1,8 @@
- 
- 
--
-- guvcview.desktop
-+
-+ net.sourceforge.guvcview
-+ guvcview.desktop
-  CC0-1.0
-  GPL-2.0+
-  Simple UVC Viewer
-@@ -16,12 +17,22 @@
-  that is compatible with any other v4l2 app.
-  
-  
--  
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
--  
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
--  
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
--  
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
--  
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
-+  
-+   
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
-+  
-+  
-+   
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
-+  
-+  
-+   
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
-+  
-+  
-+   
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
-+  
-+  
-+   
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
-+  
-  
-  http://guvcview.sourceforge.net/
-- ass...@gmail.com
--
-+ ass...@gmail.com
-+
--- 
-2.20.1
-

Copied: 
guvcview/repos/community-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
 (from rev 418781, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
===
--- 0001-Update-AppStream-metadata-to-a-newer-version.patch 
(rev 0)
+++ 0001-Update-AppStream-metadata-to-a-newer-version.patch 2018-12-28 
21:06:52 UTC (rev 418782)
@@ -0,0 +1,71 @@
+From ee2a783223fc9be7135505535f67ade84d984940 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 21:35:06 +0100
+Subject: [PATCH] Update AppStream metadata to a newer version
+
+---
+ data/Makefile.am|  2 +-
+ data/guvcview.appdata.xml.in.in | 29 -
+ 2 files changed, 21 insertions(+), 10 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index 22055f0..ad14d10 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -28,7 +28,7 @@ desktop_DATA = $(DESKTOP_FILES)
+ APPDATA_IN_FILES= guvcview.appdata.xml.in
+ APPDATA_FILES= $(APPDATA_IN_FILES:.xml.in=.xml)
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_DATA = $(APPDATA_FILES)
+ 
+ endif
+diff --git a/data/guvcview.appdata.xml.in.in b/data/guvcview.appdata.xml.in.in
+index 61ba8c3..de934f7 100644
+--- a/data/guvcview.appdata.xml.in.in
 b/data/guvcview.appdata.xml.in.in
+@@ -1,7 +1,8 @@
+ 
+ 
+-
+- guvcview.desktop
++
++ net.sourceforge.guvcview
++ guvcview.desktop
+  CC0-1.0
+  GPL-2.0+
+  Simple UVC Viewer
+@@ -16,12 +17,22 @@
+  that is compatible with any other v4l2 app.
+  
+  
+-  

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:54:36
  Author: felixonmars
Revision: 418780

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 418779, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
418779, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:54:36 UTC (rev 418780)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.0
+pkgrel=164
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7c1afe6a53b596c2ce01e9ad7a7f464af1f4efbc5f8edc13d5ec8bc32ce4e91ddde91dff6ab8e01cf3cf30a37a3a18953d937debc36c9df664f718d968e2ae74')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:54:20
  Author: felixonmars
Revision: 418779

upgpkg: tamarin-prover 1.4.0-164

rebuild with wai-logger 2.3.4

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:53:17 UTC (rev 418778)
+++ PKGBUILD2018-12-28 20:54:20 UTC (rev 418779)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.0
-pkgrel=163
+pkgrel=164
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 20:53:17
  Author: bgyorgy
Revision: 418778

archrelease: copy trunk to community-x86_64

Added:
  
guvcview/repos/community-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
(from rev 418777, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
  guvcview/repos/community-x86_64/PKGBUILD
(from rev 418777, guvcview/trunk/PKGBUILD)
Deleted:
  guvcview/repos/community-x86_64/PKGBUILD

-+
 0001-Update-AppStream-metadata-to-a-newer-version.patch |   71 +++
 PKGBUILD|  130 --
 2 files changed, 149 insertions(+), 52 deletions(-)

Copied: 
guvcview/repos/community-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
 (from rev 418777, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
===
--- 0001-Update-AppStream-metadata-to-a-newer-version.patch 
(rev 0)
+++ 0001-Update-AppStream-metadata-to-a-newer-version.patch 2018-12-28 
20:53:17 UTC (rev 418778)
@@ -0,0 +1,71 @@
+From ee2a783223fc9be7135505535f67ade84d984940 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 21:35:06 +0100
+Subject: [PATCH] Update AppStream metadata to a newer version
+
+---
+ data/Makefile.am|  2 +-
+ data/guvcview.appdata.xml.in.in | 29 -
+ 2 files changed, 21 insertions(+), 10 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index 22055f0..ad14d10 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -28,7 +28,7 @@ desktop_DATA = $(DESKTOP_FILES)
+ APPDATA_IN_FILES= guvcview.appdata.xml.in
+ APPDATA_FILES= $(APPDATA_IN_FILES:.xml.in=.xml)
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_DATA = $(APPDATA_FILES)
+ 
+ endif
+diff --git a/data/guvcview.appdata.xml.in.in b/data/guvcview.appdata.xml.in.in
+index 61ba8c3..de934f7 100644
+--- a/data/guvcview.appdata.xml.in.in
 b/data/guvcview.appdata.xml.in.in
+@@ -1,7 +1,8 @@
+ 
+ 
+-
+- guvcview.desktop
++
++ net.sourceforge.guvcview
++ guvcview.desktop
+  CC0-1.0
+  GPL-2.0+
+  Simple UVC Viewer
+@@ -16,12 +17,22 @@
+  that is compatible with any other v4l2 app.
+  
+  
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
+-  
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
++  
++  
++   
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
+  
+  http://guvcview.sourceforge.net/
+- ass...@gmail.com
+-
++ ass...@gmail.com
++
+-- 
+2.20.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 20:53:13 UTC (rev 418777)
+++ PKGBUILD2018-12-28 20:53:17 UTC (rev 418778)
@@ -1,52 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Giovanni Scafora 
-# Contributor: Maxwell Pray a.k.a. Synthead 
-
-pkgbase=guvcview
-pkgname=(guvcview guvcview-qt)
-pkgver=2.0.6
-pkgrel=1
-pkgdesc="Simple interface for capturing and viewing video from v4l2 devices"
-arch=('x86_64')
-url="http://guvcview.sourceforge.net/;
-license=('GPL3')
-depends=('ffmpeg' 'gsl' 'gtk3' 'qt5-base' 'portaudio')
-makedepends=('intltool')
-source=("https://downloads.sourceforge.net/$pkgbase/$pkgbase-src-$pkgver.tar.gz;)
-sha256sums=('95381cef5ee139e15f90b79d1425cc22bbaae43f87452cdce6674636aff37e85')
-
-prepare() {
-  cd $pkgbase-src-$pkgver
-  cp -a ../$pkgbase{,-qt}-src-$pkgver
-}
-
-build() {
-  # GTK+ version
-  cd $pkgbase-src-$pkgver
-  ./configure --prefix=/usr --disable-debian-menu
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-
-  # Qt version
-  cd ../$pkgbase-qt-src-$pkgver
-  ./configure --prefix=/usr --disable-debian-menu --disable-gtk3 --enable-qt5
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_guvcview() {
-  pkgdesc="Simple GTK+ interface for capturing and viewing video from v4l2 
devices"
-  depends=('ffmpeg' 'gsl' 'gtk3' 'portaudio')
-
-  cd $pkgbase-src-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-package_guvcview-qt() {
-  pkgdesc="Simple Qt interface for capturing and viewing video from v4l2 
devices"
-  depends=('ffmpeg' 'gsl' 'qt5-base' 'portaudio')
-  conflicts=('guvcview')
-
-  cd 

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:52:54
  Author: felixonmars
Revision: 418776

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 418775, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:52:54 UTC (rev 418776)
@@ -0,0 +1,77 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.5.0.0
+pkgrel=90
+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=('ba8974cc83de3a7fcf1ede454eed726d6dfe7d677e4b34bbf6a03f11cc648d6812c2f101684175bb1f4d0f0b384795a737791ce807c257eae67158e2fc74b0a0'
+
'54257b24e646175c3687d3d0b224092441e0a8093d04327fb900da6c463625bfc952aabe46bcbbee8d0b4b96d4c07b4b148efa5ac4dcd9dd60bf7d3da5a49fcd')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../new-hasql.patch
+
+sed -i 's/==/>=/' $pkgname.cabal
+
+sed -i '/import\s*Safe/d' src/PostgREST/App.hs
+sed -i '/safe/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-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 
418775, postgrest/trunk/new-hasql.patch)
===
--- community-staging-x86_64/new-hasql.patch(rev 0)
+++ community-staging-x86_64/new-hasql.patch2018-12-28 20:52:54 UTC (rev 
418776)
@@ -0,0 +1,477 @@
+From f02992e562fafc807092d09a8034f2117c9db00d 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 ++---
+ 

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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 20:53:13
  Author: bgyorgy
Revision: 418777

upgpkg: guvcview 2.0.6-2

Avoid conflict between GTK+/Qt interfaces, fix AppStream metadata

Added:
  guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch
Modified:
  guvcview/trunk/PKGBUILD

-+
 0001-Update-AppStream-metadata-to-a-newer-version.patch |   71 ++
 PKGBUILD|   44 ++--
 2 files changed, 106 insertions(+), 9 deletions(-)

Added: 0001-Update-AppStream-metadata-to-a-newer-version.patch
===
--- 0001-Update-AppStream-metadata-to-a-newer-version.patch 
(rev 0)
+++ 0001-Update-AppStream-metadata-to-a-newer-version.patch 2018-12-28 
20:53:13 UTC (rev 418777)
@@ -0,0 +1,71 @@
+From ee2a783223fc9be7135505535f67ade84d984940 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 21:35:06 +0100
+Subject: [PATCH] Update AppStream metadata to a newer version
+
+---
+ data/Makefile.am|  2 +-
+ data/guvcview.appdata.xml.in.in | 29 -
+ 2 files changed, 21 insertions(+), 10 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index 22055f0..ad14d10 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -28,7 +28,7 @@ desktop_DATA = $(DESKTOP_FILES)
+ APPDATA_IN_FILES= guvcview.appdata.xml.in
+ APPDATA_FILES= $(APPDATA_IN_FILES:.xml.in=.xml)
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_DATA = $(APPDATA_FILES)
+ 
+ endif
+diff --git a/data/guvcview.appdata.xml.in.in b/data/guvcview.appdata.xml.in.in
+index 61ba8c3..de934f7 100644
+--- a/data/guvcview.appdata.xml.in.in
 b/data/guvcview.appdata.xml.in.in
+@@ -1,7 +1,8 @@
+ 
+ 
+-
+- guvcview.desktop
++
++ net.sourceforge.guvcview
++ guvcview.desktop
+  CC0-1.0
+  GPL-2.0+
+  Simple UVC Viewer
+@@ -16,12 +17,22 @@
+  that is compatible with any other v4l2 app.
+  
+  
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
+-  
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
++  
++  
++   
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
+  
+  http://guvcview.sourceforge.net/
+- ass...@gmail.com
+-
++ ass...@gmail.com
++
+-- 
+2.20.1
+

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:52:54 UTC (rev 418776)
+++ PKGBUILD2018-12-28 20:53:13 UTC (rev 418777)
@@ -3,9 +3,9 @@
 # Contributor: Maxwell Pray a.k.a. Synthead 
 
 pkgbase=guvcview
-pkgname=(guvcview guvcview-qt)
+pkgname=(guvcview guvcview-common guvcview-qt)
 pkgver=2.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple interface for capturing and viewing video from v4l2 devices"
 arch=('x86_64')
 url="http://guvcview.sourceforge.net/;
@@ -12,11 +12,19 @@
 license=('GPL3')
 depends=('ffmpeg' 'gsl' 'gtk3' 'qt5-base' 'portaudio')
 makedepends=('intltool')
-source=("https://downloads.sourceforge.net/$pkgbase/$pkgbase-src-$pkgver.tar.gz;)
-sha256sums=('95381cef5ee139e15f90b79d1425cc22bbaae43f87452cdce6674636aff37e85')
+options=('!emptydirs')
+source=("https://downloads.sourceforge.net/$pkgbase/$pkgbase-src-$pkgver.tar.gz;
+0001-Update-AppStream-metadata-to-a-newer-version.patch)
+sha256sums=('95381cef5ee139e15f90b79d1425cc22bbaae43f87452cdce6674636aff37e85'
+'d9c65a9bf53eb28c48f9a9126035f5ebe520923124eae507d1cb2994e2a0d08f')
 
 prepare() {
   cd $pkgbase-src-$pkgver
+
+  # Update AppStream metadata to a newer version
+  patch -Np1 -i ../0001-Update-AppStream-metadata-to-a-newer-version.patch
+
+  autoreconf -fi
   cp -a ../$pkgbase{,-qt}-src-$pkgver
 }
 
@@ -34,19 +42,37 @@
   make
 }
 
+package_guvcview-common() {
+  pkgdesc="Common files for guvcview"
+  depends=('ffmpeg' 'gsl' 'libusb' 'portaudio')
+
+  cd $pkgbase-src-$pkgver
+  make DESTDIR="$pkgdir" install
+  make -C guvcview DESTDIR="$pkgdir" uninstall
+  make -C data DESTDIR="$pkgdir" uninstall-man1 uninstall-appdataDATA 
uninstall-desktopDATA
+}
+
 package_guvcview() {
   pkgdesc="Simple GTK+ interface for capturing and viewing video from v4l2 
devices"
-  depends=('ffmpeg' 'gsl' 'gtk3' 'portaudio')
+  depends=('guvcview-common' 'gtk3')
 
   cd $pkgbase-src-$pkgver
-  make DESTDIR="$pkgdir" 

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:52:38
  Author: felixonmars
Revision: 418775

upgpkg: postgrest 0.5.0.0-90

rebuild with wai-logger 2.3.4

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:49:21 UTC (rev 418774)
+++ PKGBUILD2018-12-28 20:52:38 UTC (rev 418775)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=0.5.0.0
-pkgrel=89
+pkgrel=90
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:49:21
  Author: felixonmars
Revision: 418774

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 418773, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:49:21 UTC (rev 418774)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=22
+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/' 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)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:49:05
  Author: felixonmars
Revision: 418773

upgpkg: idris 1.3.1-22

rebuild with wai-logger 2.3.4

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:47:39 UTC (rev 418772)
+++ PKGBUILD2018-12-28 20:49:05 UTC (rev 418773)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("BSD")


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:47:39
  Author: polyzen
Revision: 418772

Require Cargo.lock is up to date

Modified:
  gitprompt-rs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:42:01 UTC (rev 418771)
+++ PKGBUILD2018-12-28 20:47:39 UTC (rev 418772)
@@ -15,7 +15,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  cargo build --release
+  cargo build --release --locked
 }
 
 package() {


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:42:01
  Author: polyzen
Revision: 418771

archrelease: copy trunk to community-x86_64

Added:
  vivid/repos/community-x86_64/
  vivid/repos/community-x86_64/PKGBUILD
(from rev 418770, vivid/trunk/PKGBUILD)

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

Copied: vivid/repos/community-x86_64/PKGBUILD (from rev 418770, 
vivid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-12-28 20:42:01 UTC (rev 418771)
@@ -0,0 +1,28 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=vivid
+pkgver=0.4.0
+pkgrel=2
+pkgdesc='LS_COLORS manager with multiple themes'
+arch=('x86_64')
+url=https://github.com/sharkdp/vivid
+license=('Apache' 'MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha512sums=('debef0a9a46b4afee3bee96fa3f877525d0208395adbe5ac70ba37da81037243839f2dd180749cf4e2c1c1824ebe76d4edab5b1e80aa8cf99339bdd7552b1a77')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/vivid
+  install -Dm644 -t "$pkgdir"/usr/share/$pkgname config/*
+  install -Dm644 -t "$pkgdir"/usr/share/$pkgname/themes themes/*
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:41:40
  Author: polyzen
Revision: 418770

Initial commit

Added:
  vivid/
  vivid/repos/
  vivid/trunk/
  vivid/trunk/PKGBUILD

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

Added: vivid/trunk/PKGBUILD
===
--- vivid/trunk/PKGBUILD(rev 0)
+++ vivid/trunk/PKGBUILD2018-12-28 20:41:40 UTC (rev 418770)
@@ -0,0 +1,28 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=vivid
+pkgver=0.4.0
+pkgrel=2
+pkgdesc='LS_COLORS manager with multiple themes'
+arch=('x86_64')
+url=https://github.com/sharkdp/vivid
+license=('Apache' 'MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha512sums=('debef0a9a46b4afee3bee96fa3f877525d0208395adbe5ac70ba37da81037243839f2dd180749cf4e2c1c1824ebe76d4edab5b1e80aa8cf99339bdd7552b1a77')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/vivid
+  install -Dm644 -t "$pkgdir"/usr/share/$pkgname config/*
+  install -Dm644 -t "$pkgdir"/usr/share/$pkgname/themes themes/*
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:35:46
  Author: felixonmars
Revision: 418769

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 418768, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 418768, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:35:46 UTC (rev 418769)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.3
+pkgrel=145
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
+ 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b8113e9dc6f44fbf684edfe6134eb44d55b1ef43afc3cb2051920daaec3e108df6209cfe822a8eeff884360c9b9415f2ab8273e7681e6bbcc1b9c77490370195')
+
+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" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${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 hoogle/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:35:29
  Author: felixonmars
Revision: 418768

upgpkg: hoogle 5.0.17.3-145

rebuild with wai-logger 2.3.4

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:34:06 UTC (rev 418767)
+++ PKGBUILD2018-12-28 20:35:29 UTC (rev 418768)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.3
-pkgrel=144
+pkgrel=145
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("BSD")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:33:50
  Author: felixonmars
Revision: 418766

upgpkg: hledger-web 1.12-22

rebuild with wai-logger 2.3.4

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:32:31 UTC (rev 418765)
+++ PKGBUILD2018-12-28 20:33:50 UTC (rev 418766)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.12
-pkgrel=21
+pkgrel=22
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:34:06
  Author: felixonmars
Revision: 418767

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 418766, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 418766, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:34:06 UTC (rev 418767)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.12
+pkgrel=22
+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-api/repos (2 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:32:31
  Author: felixonmars
Revision: 418765

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 418764, hledger-api/trunk/PKGBUILD)

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 418764, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:32:31 UTC (rev 418765)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.12
+pkgrel=20
+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)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:32:14
  Author: felixonmars
Revision: 418764

upgpkg: hledger-api 1.12-20

rebuild with wai-logger 2.3.4

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:31:40 UTC (rev 418763)
+++ PKGBUILD2018-12-28 20:32:14 UTC (rev 418764)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-api
 pkgver=1.12
-pkgrel=19
+pkgrel=20
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:31:40
  Author: polyzen
Revision: 418763

archrelease: copy trunk to community-x86_64

Added:
  gitprompt-rs/repos/community-x86_64/
  gitprompt-rs/repos/community-x86_64/PKGBUILD
(from rev 418762, gitprompt-rs/trunk/PKGBUILD)

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

Copied: gitprompt-rs/repos/community-x86_64/PKGBUILD (from rev 418762, 
gitprompt-rs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-12-28 20:31:40 UTC (rev 418763)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Streetwalrus 
+
+pkgname=gitprompt-rs
+pkgver=0.2.0
+pkgrel=2
+pkgdesc='Simple Git prompt'
+arch=('x86_64')
+url=https://github.com/Streetwalrus/gitprompt-rs
+license=('MPL2')
+depends=('git')
+makedepends=('rust')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('0126379b1b6dd767a392f41456f4ac41fb9b9ef5a1df4dce91098eba2d31766c53407a1186b61dc4b196ac445c763cdaea61170a732056a1d4e8cb3fbb1a772b')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:31:15
  Author: polyzen
Revision: 418762

Initial commit

Added:
  gitprompt-rs/
  gitprompt-rs/repos/
  gitprompt-rs/trunk/
  gitprompt-rs/trunk/PKGBUILD

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

Added: gitprompt-rs/trunk/PKGBUILD
===
--- gitprompt-rs/trunk/PKGBUILD (rev 0)
+++ gitprompt-rs/trunk/PKGBUILD 2018-12-28 20:31:15 UTC (rev 418762)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Streetwalrus 
+
+pkgname=gitprompt-rs
+pkgver=0.2.0
+pkgrel=2
+pkgdesc='Simple Git prompt'
+arch=('x86_64')
+url=https://github.com/Streetwalrus/gitprompt-rs
+license=('MPL2')
+depends=('git')
+makedepends=('rust')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('0126379b1b6dd767a392f41456f4ac41fb9b9ef5a1df4dce91098eba2d31766c53407a1186b61dc4b196ac445c763cdaea61170a732056a1d4e8cb3fbb1a772b')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:30:40
  Author: felixonmars
Revision: 418760

upgpkg: git-annex 7.20181211-12

rebuild with wai-logger 2.3.4

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:25:28 UTC (rev 418759)
+++ PKGBUILD2018-12-28 20:30:40 UTC (rev 418760)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20181211
-pkgrel=11
+pkgrel=12
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:30:56
  Author: felixonmars
Revision: 418761

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 418760, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/ghc-8.4.patch
(from rev 418760, git-annex/trunk/ghc-8.4.patch)

---+
 PKGBUILD  |   56 +
 ghc-8.4.patch |  121 
 2 files changed, 177 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 418760, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:30:56 UTC (rev 418761)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20181211
+pkgrel=12
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  sed -i '1i{-# language NoMonadFailDesugaring #-}' Remote/Glacier.hs 
Remote/Ddar.hs Remote/Helper/Ssh.hs Remote/Bup.hs Annex/YoutubeDl.hs 
Remote/Git.hs Assistant/TransferQueue.hs Assistant/Threads/RemoteControl.hs 
Test.hs
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/ghc-8.4.patch (from rev 
418760, git-annex/trunk/ghc-8.4.patch)
===
--- community-staging-x86_64/ghc-8.4.patch  (rev 0)
+++ community-staging-x86_64/ghc-8.4.patch  2018-12-28 20:30:56 UTC (rev 
418761)
@@ -0,0 +1,121 @@
+diff --git a/Command/Info.hs b/Command/Info.hs
+index c9a314056a..3ae82f5532 100644
+--- a/Command/Info.hs
 b/Command/Info.hs
+@@ -56,15 +56,17 @@ data KeyData = KeyData
+   , backendsKeys :: M.Map KeyVariety Integer
+   }
+ 
+-instance Monoid KeyData where
+-  mempty = KeyData 0 0 0 M.empty
+-  mappend a b = KeyData
++instance Semigroup KeyData where
++  a <> b = KeyData
+   { countKeys = countKeys a + countKeys b
+   , sizeKeys = sizeKeys a + sizeKeys b
+   , unknownSizeKeys = unknownSizeKeys a + unknownSizeKeys b
+   , backendsKeys = backendsKeys a <> backendsKeys b
+   }
+ 

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:25:28
  Author: felixonmars
Revision: 418759

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 418758, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
418758, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:25:28 UTC (rev 418759)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=32
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+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-yesod-static/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:25:12
  Author: felixonmars
Revision: 418758

upgpkg: haskell-yesod-static 1.6.0.1-32

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:24:05 UTC (rev 418757)
+++ PKGBUILD2018-12-28 20:25:12 UTC (rev 418758)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=31
+pkgrel=32
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:24:05
  Author: felixonmars
Revision: 418757

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-test/repos/community-staging-x86_64/
  haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD
(from rev 418756, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
418756, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:24:05 UTC (rev 418757)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.5.1
+pkgrel=39
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="http://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('dbee2f3753062bc1a8c5a7657e832e65f2d360fdb1960285f168387fa20fb3fdb98efd6f749ba1e87a4dd78a3823e282205daa1662e831f2bad5572f817c5beb')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_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-yesod-test/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:23:49
  Author: felixonmars
Revision: 418756

upgpkg: haskell-yesod-test 1.6.5.1-39

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:22:47 UTC (rev 418755)
+++ PKGBUILD2018-12-28 20:23:49 UTC (rev 418756)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.5.1
-pkgrel=38
+pkgrel=39
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="http://www.yesodweb.com;
 license=('MIT')


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:22:47
  Author: felixonmars
Revision: 418755

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 418754, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
418754, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:22:47 UTC (rev 418755)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.5
+pkgrel=36
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('53daff7afd430c87e0359e2a712e34d10508768b2dece3d2c29b34fa18133d209b870f9f59df83dcf30b86ae75e7881eb7e05d7a51daa6787a2e3f220cadaf7e')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:22:31
  Author: felixonmars
Revision: 418754

upgpkg: haskell-yesod-auth 1.6.5-36

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:21:21 UTC (rev 418753)
+++ PKGBUILD2018-12-28 20:22:31 UTC (rev 418754)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.5
-pkgrel=35
+pkgrel=36
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:21:04
  Author: felixonmars
Revision: 418752

upgpkg: haskell-yesod 1.6.0-184

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:20:11 UTC (rev 418751)
+++ PKGBUILD2018-12-28 20:21:04 UTC (rev 418752)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=183
+pkgrel=184
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:21:21
  Author: felixonmars
Revision: 418753

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 418752, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:21:21 UTC (rev 418753)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.0
+pkgrel=184
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default-class' 'haskell-fast-logger' 
'haskell-monad-logger'
+ 'haskell-resourcet' 'haskell-shakespeare' 'haskell-streaming-commons'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-extra' 
'haskell-wai-logger'
+ 'haskell-warp' 'haskell-yaml' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('36caa5ee5c27a2355aff9e5dc210100661670717e251bb42bac48c02cd6979c38ae7b5fda1dd2e264aefb7b5b3808f7ccc9e511fd38b6de7090e16c7a91e1b15')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:20:11
  Author: felixonmars
Revision: 418751

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 418750, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
418750, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:20:11 UTC (rev 418751)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.3
+pkgrel=34
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8f9d55147c1c65b8e0e0c7414850f02a3b4fddc766287621c11c444584096f68fc2245ab600f3e340b58c6ecedc40848538a7e652342a85a844d30b25336efc8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:19:55
  Author: felixonmars
Revision: 418750

upgpkg: haskell-yesod-form 1.6.3-34

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:18:46 UTC (rev 418749)
+++ PKGBUILD2018-12-28 20:19:55 UTC (rev 418750)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.3
-pkgrel=33
+pkgrel=34
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:18:30
  Author: felixonmars
Revision: 418748

upgpkg: haskell-yesod-persistent 1.6.0.1-37

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:17:40 UTC (rev 418747)
+++ PKGBUILD2018-12-28 20:18:30 UTC (rev 418748)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.1
-pkgrel=36
+pkgrel=37
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:18:46
  Author: felixonmars
Revision: 418749

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 418748, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 418748, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:18:46 UTC (rev 418749)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.1
+pkgrel=37
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('da12967cef7660581eeea16c5f4a28675fdc1fd697b265e9eee9c462e26385870e894653eada6a02532655693d3b72f202fde445949d44324ebfab40c7f6b52d')
+
+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-yesod-default/repos (2 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:17:40
  Author: felixonmars
Revision: 418747

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 418746, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
418746, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:17:40 UTC (rev 418747)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=450
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:17:24
  Author: felixonmars
Revision: 418746

upgpkg: haskell-yesod-default 1.2.0-450

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:16:34 UTC (rev 418745)
+++ PKGBUILD2018-12-28 20:17:24 UTC (rev 418746)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=449
+pkgrel=450
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:16:16
  Author: felixonmars
Revision: 418744

upgpkg: haskell-yesod-core 1.6.9-18

rebuild with wai-logger 2.3.4

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:15:09 UTC (rev 418743)
+++ PKGBUILD2018-12-28 20:16:16 UTC (rev 418744)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.9
-pkgrel=17
+pkgrel=18
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:16:34
  Author: felixonmars
Revision: 418745

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 418744, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
418744, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:16:34 UTC (rev 418745)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.9
+pkgrel=18
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-case-insensitive' 
'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-rio' 
'haskell-shakespeare'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a2b7c80fe612fb428e115c737ed5dfe5ba9cc165929e5d1896358fe9091552aaea1fbdd0252dc8cc6a987cfc82947aa469e26aab1d3ae2d24c0ef8be53365d69')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:15:09
  Author: felixonmars
Revision: 418743

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 418742, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:15:09 UTC (rev 418743)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.14.1
+pkgrel=15
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="http://haskell-servant.readthedocs.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 
'haskell-base64-bytestring'
+ 'haskell-exceptions' 'haskell-http-api-data' 'haskell-http-media' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-monad-control' 'haskell-network' 
'haskell-servant'
+ 'haskell-string-conversions' 'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-transformers-compat' 
'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-word8')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-should-not-typecheck' 'haskell-quickcheck' 
'haskell-safe' 'haskell-wai-extra'
+ 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6a22b6c60ff79363df740f48fed89f2bed264b207051dbe83a5f347b67359519c98df7769eceb03363c9ca354e858ff51b7b3c2026d173e311d756a0fe68344a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *4.12/<5/' -e 's/< *0.6/<1/' $_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-servant-server/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:14:52
  Author: felixonmars
Revision: 418742

upgpkg: haskell-servant-server 0.14.1-15

rebuild with wai-logger 2.3.4

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:14:19 UTC (rev 418741)
+++ PKGBUILD2018-12-28 20:14:52 UTC (rev 418742)
@@ -4,7 +4,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.14.1
-pkgrel=14
+pkgrel=15
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="http://haskell-servant.readthedocs.org/;
 license=("BSD")


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:14:19
  Author: polyzen
Revision: 418741

Add python-mock checkdep

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:13:21 UTC (rev 418740)
+++ PKGBUILD2018-12-28 20:14:19 UTC (rev 418741)
@@ -10,6 +10,7 @@
 url=https://www.dulwich.io
 license=('GPL')
 depends=('python-certifi' 'python-urllib3')
+checkdepends=('python-mock')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
 sha256sums=('5e1e39555f594939a8aff1ca08b3bdf6c7efd4b941c2850760983a0197240974')
 


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:13:05
  Author: felixonmars
Revision: 418739

upgpkg: haskell-hjsonschema 1.9.0-140

rebuild with wai-logger 2.3.4

Modified:
  haskell-hjsonschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:11:42 UTC (rev 418738)
+++ PKGBUILD2018-12-28 20:13:05 UTC (rev 418739)
@@ -4,7 +4,7 @@
 _hkgname=hjsonschema
 pkgname=haskell-hjsonschema
 pkgver=1.9.0
-pkgrel=139
+pkgrel=140
 pkgdesc="JSON Schema library"
 url="https://github.com/seagreen/hjsonschema;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:13:21
  Author: felixonmars
Revision: 418740

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsonschema/repos/community-staging-x86_64/PKGBUILD (from rev 
418739, haskell-hjsonschema/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:13:21 UTC (rev 418740)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonschema
+pkgname=haskell-hjsonschema
+pkgver=1.9.0
+pkgrel=140
+pkgdesc="JSON Schema library"
+url="https://github.com/seagreen/hjsonschema;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 'haskell-hashable' 
'haskell-hjsonpointer'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-pcre-heavy'
+ 'haskell-profunctors' 'haskell-protolude' 'haskell-quickcheck' 
'haskell-safe-exceptions'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-app-static' 'haskell-warp')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c71f4f23453abbb7e5c3b8a04e9fd2bea560e03ccf590fbad3739f609fe0e4e5292acfe94204b2d52d30f8fda8cc1c94edac41d5095f6be1c4cf8c05ec08e273')
+
+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 "json-schema.org is NXDOMAIN as of 
2018-06-03"
+}
+
+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 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:11:26
  Author: felixonmars
Revision: 418737

upgpkg: haskell-hakyll 4.12.4.0-98

rebuild with wai-logger 2.3.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:09:45 UTC (rev 418736)
+++ PKGBUILD2018-12-28 20:11:26 UTC (rev 418737)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.4.0
-pkgrel=97
+pkgrel=98
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("BSD")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:11:42
  Author: felixonmars
Revision: 418738

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 418737, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
418737, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:11:42 UTC (rev 418738)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.4.0
+pkgrel=98
+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=('45c167a59a44065e7252472ab1cf116a9ff7dabab6b7c35354716e9487fcd26ebc33f1b94a41a1558eadfd7bfa89047409818b868f5a8bce9111a83f5a42451e')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.3/<3/' -e 's/< *0.6/<1/' -e 's/< *0.11/<1/' -e 's/< 
0.15/<1/' $_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 --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
+}
+
+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-wai-app-static/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:09:29
  Author: felixonmars
Revision: 418735

upgpkg: haskell-wai-app-static 3.1.6.2-152

rebuild with wai-logger 2.3.4

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:08:41 UTC (rev 418734)
+++ PKGBUILD2018-12-28 20:09:29 UTC (rev 418735)
@@ -4,7 +4,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.2
-pkgrel=151
+pkgrel=152
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


[arch-commits] Commit in haskell-wai-app-static/repos (2 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:09:45
  Author: felixonmars
Revision: 418736

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 418735, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 418735, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:09:45 UTC (rev 418736)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.2
+pkgrel=152
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('20c79810096f12d3901af3474a5ef4fe2385e639f97f2de803b09902d115321e3be7544cc3741b52b75a2710a0141bc19cb611fd4e6248ec60d11b522b9cb59c')
+
+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-print
+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-hspec-wai-json/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:08:24
  Author: felixonmars
Revision: 418733

upgpkg: haskell-hspec-wai-json 0.9.0-151

rebuild with wai-logger 2.3.4

Modified:
  haskell-hspec-wai-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:07:49 UTC (rev 418732)
+++ PKGBUILD2018-12-28 20:08:24 UTC (rev 418733)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai-json
 pkgname=haskell-hspec-wai-json
 pkgver=0.9.0
-pkgrel=150
+pkgrel=151
 pkgdesc="Testing JSON APIs with hspec-wai"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


[arch-commits] Commit in haskell-hspec-wai-json/repos (2 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:08:41
  Author: felixonmars
Revision: 418734

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-wai-json/repos/community-staging-x86_64/
  haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD
(from rev 418733, haskell-hspec-wai-json/trunk/PKGBUILD)

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

Copied: haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD (from 
rev 418733, haskell-hspec-wai-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:08:41 UTC (rev 418734)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai-json
+pkgname=haskell-hspec-wai-json
+pkgver=0.9.0
+pkgrel=151
+pkgdesc="Testing JSON APIs with hspec-wai"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-qq' 
'haskell-case-insensitive'
+ 'haskell-hspec-wai')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('550bbf263c52c817f5ba26f30ac9e612645597d8bea7a5614e61452da0b0ae728484f4ac9a486e523b0e4d2cf1518d95a55d9dc5d7be1e1fa15d67432f7a')
+
+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-dulwich/repos (community-any)

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:07:49
  Author: polyzen
Revision: 418732

Removed community-any for python-dulwich

Deleted:
  python-dulwich/repos/community-any/


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:07:40
  Author: felixonmars
Revision: 418730

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-wai/repos/community-staging-x86_64/
  haskell-hspec-wai/repos/community-staging-x86_64/PKGBUILD
(from rev 418729, haskell-hspec-wai/trunk/PKGBUILD)

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

Copied: haskell-hspec-wai/repos/community-staging-x86_64/PKGBUILD (from rev 
418729, haskell-hspec-wai/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:07:40 UTC (rev 418730)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai
+pkgname=haskell-hspec-wai
+pkgver=0.9.0
+pkgrel=131
+pkgdesc="Experimental Hspec support for testing WAI applications"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-hspec-expectations' 
'haskell-http-types'
+ 'haskell-wai' 'haskell-wai-extra')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('47822443b1a141a9ca6f6365a07906f7b11b44c2c999ef80bf6c87e66538a3a9d3e3221f48098414aea3538f7ea957bb3435255a490268b5eaecf3785fec407c')
+
+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-dulwich/repos (2 files)

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:07:43
  Author: polyzen
Revision: 418731

archrelease: copy trunk to community-x86_64

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

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

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


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:07:24
  Author: felixonmars
Revision: 418729

upgpkg: haskell-hspec-wai 0.9.0-131

rebuild with wai-logger 2.3.4

Modified:
  haskell-hspec-wai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:07:16 UTC (rev 418728)
+++ PKGBUILD2018-12-28 20:07:24 UTC (rev 418729)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai
 pkgname=haskell-hspec-wai
 pkgver=0.9.0
-pkgrel=130
+pkgrel=131
 pkgdesc="Experimental Hspec support for testing WAI applications"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 20:07:16
  Author: polyzen
Revision: 418728

Update runtime deps

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:06:39 UTC (rev 418727)
+++ PKGBUILD2018-12-28 20:07:16 UTC (rev 418728)
@@ -4,13 +4,12 @@
 _name=dulwich
 pkgname=python-dulwich
 pkgver=0.19.9
-pkgrel=1
+pkgrel=2
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
 arch=('x86_64')
 url=https://www.dulwich.io
 license=('GPL')
-depends=('python')
-checkdepends=('python-urllib3')
+depends=('python-certifi' 'python-urllib3')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
 sha256sums=('5e1e39555f594939a8aff1ca08b3bdf6c7efd4b941c2850760983a0197240974')
 


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:06:21
  Author: felixonmars
Revision: 418726

upgpkg: haskell-cheapskate 0.1.1.1-15

rebuild with wai-logger 2.3.4

Modified:
  haskell-cheapskate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:05:20 UTC (rev 418725)
+++ PKGBUILD2018-12-28 20:06:21 UTC (rev 418726)
@@ -4,7 +4,7 @@
 _hkgname=cheapskate
 pkgname=haskell-cheapskate
 pkgver=0.1.1.1
-pkgrel=14
+pkgrel=15
 pkgdesc="Experimental markdown processor."
 url="https://github.com/jgm/cheapskate;
 license=("BSD")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:06:39
  Author: felixonmars
Revision: 418727

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cheapskate/repos/community-staging-x86_64/PKGBUILD (from rev 
418726, haskell-cheapskate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:06:39 UTC (rev 418727)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cheapskate
+pkgname=haskell-cheapskate
+pkgver=0.1.1.1
+pkgrel=15
+pkgdesc="Experimental markdown processor."
+url="https://github.com/jgm/cheapskate;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-blaze-html" 
"haskell-data-default" "haskell-http-types"
+ "haskell-syb" "haskell-uniplate" "haskell-wai"
+ "haskell-wai-extra" "haskell-xss-sanitize")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('551fdf43f8ed8e15ed4a5ac1649f319477cc80762a34499eed58c7c77e1f3e2bc0c4f9887aac7632f341e825c202850617d0572fa6cb748104bbf2874dfba353')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fdingus
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:05:02
  Author: felixonmars
Revision: 418724

upgpkg: haskell-wai-extra 3.0.24.3-24

rebuild with wai-logger 2.3.4

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 20:04:03 UTC (rev 418723)
+++ PKGBUILD2018-12-28 20:05:02 UTC (rev 418724)
@@ -4,7 +4,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.24.3
-pkgrel=23
+pkgrel=24
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:05:20
  Author: felixonmars
Revision: 418725

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-extra/repos/community-staging-x86_64/
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 418724, haskell-wai-extra/trunk/PKGBUILD)

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

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
418724, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:05:20 UTC (rev 418725)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.24.3
+pkgrel=24
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base64-bytestring'
+ 'haskell-case-insensitive' 'haskell-cookie' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-iproute' 
'haskell-network'
+ 'haskell-old-locale' 'haskell-resourcet' 'haskell-streaming-commons'
+ 'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('84b2a644ba2a4c0634fc452cac315da0c2ef4828354a988423ba20c5b1e5c8982c441c0ec7523f79449963485035187074c4c1f6236ffd4a03073eac98f89496')
+
+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-build-example
+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-wai-logger/repos (2 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:04:03
  Author: felixonmars
Revision: 418723

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-logger/repos/community-staging-x86_64/
  haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD
(from rev 418722, haskell-wai-logger/trunk/PKGBUILD)

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

Copied: haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
418722, haskell-wai-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 20:04:03 UTC (rev 418723)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-logger
+pkgname=haskell-wai-logger
+pkgver=2.3.4
+pkgrel=1
+pkgdesc="A logging system for WAI"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-byteorder' 'haskell-fast-logger'
+ 'haskell-http-types' 'haskell-network' 'haskell-wai')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+checkdepends=('haskell-wai-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('458c54db0a4c3d2f4ac165c3c5b392551e19624b099336dd63042210e72e195fa763b11e305753846307eac210d666501aea9408107f801e6663b4fb5995da27')
+
+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-wai-logger/trunk (PKGBUILD)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 20:03:47
  Author: felixonmars
Revision: 418722

upgpkg: haskell-wai-logger 2.3.4-1

rebuild with wai-logger 2.3.4

Modified:
  haskell-wai-logger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 19:42:12 UTC (rev 418721)
+++ PKGBUILD2018-12-28 20:03:47 UTC (rev 418722)
@@ -3,8 +3,8 @@
 
 _hkgname=wai-logger
 pkgname=haskell-wai-logger
-pkgver=2.3.3
-pkgrel=3
+pkgver=2.3.4
+pkgrel=1
 pkgdesc="A logging system for WAI"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")
@@ -14,7 +14,7 @@
 makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
 checkdepends=('haskell-wai-extra')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('de108f9be5eed8e0185b68f31a6dcd2d49a45507ee114a904eda7ff0f23d3e982d61cd2bd215196db531a4e137cb48d114121a00fc6ab18992a1ffb235b034f1')
+sha512sums=('458c54db0a4c3d2f4ac165c3c5b392551e19624b099336dd63042210e72e195fa763b11e305753846307eac210d666501aea9408107f801e6663b4fb5995da27')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-12-28 Thread Andrew Crerar via arch-commits
Date: Friday, December 28, 2018 @ 19:42:12
  Author: andrewsc
Revision: 418721

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 418720, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 418720, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 418720, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 418720, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

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

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

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

2018-12-28 Thread Andrew Crerar via arch-commits
Date: Friday, December 28, 2018 @ 19:21:48
  Author: andrewsc
Revision: 418720

upgpkg: firefox-developer-edition 65.0b7-1

firefox-developer-edition: Updating to 65.0b7

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 18:54:35 UTC (rev 418719)
+++ PKGBUILD2018-12-28 19:21:48 UTC (rev 418720)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=65.0b6
+pkgver=65.0b7
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:54:35
  Author: bgyorgy
Revision: 418719

archrelease: copy trunk to community-x86_64

Added:
  xpad/repos/community-x86_64/PKGBUILD
(from rev 418718, xpad/trunk/PKGBUILD)
  xpad/repos/community-x86_64/xpad.appdata.xml
(from rev 418718, xpad/trunk/xpad.appdata.xml)
Deleted:
  xpad/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   71 +++--
 xpad.appdata.xml |   21 +++
 2 files changed, 58 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 18:54:31 UTC (rev 418718)
+++ PKGBUILD2018-12-28 18:54:35 UTC (rev 418719)
@@ -1,34 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Kevin Piche 
-# Contributor: Ben 
-
-pkgname=xpad
-pkgver=5.2.0
-pkgrel=1
-pkgdesc="Stickies-like notes application"
-arch=('x86_64')
-depends=('gtksourceview3' 'libsm')
-makedepends=('intltool')
-url="https://launchpad.net/xpad;
-license=('GPL3')
-source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2)
-# Unknown key
-#validpgpkeys=('3930646349B9DD3886D9087392BF2FCCA6F2322B'
-#'8450BEE19B722715FFDB18C6683EAA45951FC552')
-sha256sums=('53464f911e45d154f0a41c0203ed2596da3dee1e8a4b99c2a7a77c37de1e63a9')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: xpad/repos/community-x86_64/PKGBUILD (from rev 418718, 
xpad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 18:54:35 UTC (rev 418719)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György 
+# Contributor: Kevin Piche 
+# Contributor: Ben 
+
+pkgname=xpad
+pkgver=5.3.0
+pkgrel=1
+pkgdesc="Stickies-like notes application"
+arch=('x86_64')
+depends=('gtksourceview3' 'libsm')
+makedepends=('intltool')
+url="https://launchpad.net/xpad;
+license=('GPL3')
+source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2{,.asc}
+xpad.appdata.xml)
+validpgpkeys=('3930646349B9DD3886D9087392BF2FCCA6F2322B'
+ '8450BEE19B722715FFDB18C6683EAA45951FC552')
+sha256sums=('6444ab85110e84571f02551ac0f87fd850235d2518371cd35e5364189b8d693f'
+'SKIP'
+'37a5d234a672438476cc410be3c0bf4bf23a0b5a1c9e882d782c675a9f4d5618')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../xpad.appdata.xml 
"$pkgdir/usr/share/metainfo/xpad.appdata.xml"
+}

Copied: xpad/repos/community-x86_64/xpad.appdata.xml (from rev 418718, 
xpad/trunk/xpad.appdata.xml)
===
--- xpad.appdata.xml(rev 0)
+++ xpad.appdata.xml2018-12-28 18:54:35 UTC (rev 418719)
@@ -0,0 +1,21 @@
+
+
+  net.launchpad.xpad
+  xpad.desktop
+  Xpad
+  Jot down notes for later
+  CC0-1.0
+  GPL-3.0
+  
+Xpad is a sticky note application that strives to be simple, 
fault-tolerant, and customizable. Xpad consists of independent pad windows; 
each is basically a text box in which notes can be written.
+  
+  
+
+  
https://wiki.gnome.org/Apps/Xpad?action=AttachFiledo=gettarget=xpad-window.png
+
+  
+  https://bugs.launchpad.net/xpad
+  https://launchpad.net/xpad
+  xpad-hack...@lists.launchpad.net
+  xpad
+


[arch-commits] Commit in xpad/trunk (PKGBUILD xpad.appdata.xml)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:54:31
  Author: bgyorgy
Revision: 418718

upgpkg: xpad 5.3.0-1

Update to new version, add AppStream metadata

Added:
  xpad/trunk/xpad.appdata.xml
Modified:
  xpad/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 xpad.appdata.xml |   21 +
 2 files changed, 30 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 18:52:28 UTC (rev 418717)
+++ PKGBUILD2018-12-28 18:54:31 UTC (rev 418718)
@@ -3,7 +3,7 @@
 # Contributor: Ben 
 
 pkgname=xpad
-pkgver=5.2.0
+pkgver=5.3.0
 pkgrel=1
 pkgdesc="Stickies-like notes application"
 arch=('x86_64')
@@ -11,11 +11,13 @@
 makedepends=('intltool')
 url="https://launchpad.net/xpad;
 license=('GPL3')
-source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2)
-# Unknown key
-#validpgpkeys=('3930646349B9DD3886D9087392BF2FCCA6F2322B'
-#'8450BEE19B722715FFDB18C6683EAA45951FC552')
-sha256sums=('53464f911e45d154f0a41c0203ed2596da3dee1e8a4b99c2a7a77c37de1e63a9')
+source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2{,.asc}
+xpad.appdata.xml)
+validpgpkeys=('3930646349B9DD3886D9087392BF2FCCA6F2322B'
+ '8450BEE19B722715FFDB18C6683EAA45951FC552')
+sha256sums=('6444ab85110e84571f02551ac0f87fd850235d2518371cd35e5364189b8d693f'
+'SKIP'
+'37a5d234a672438476cc410be3c0bf4bf23a0b5a1c9e882d782c675a9f4d5618')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -31,4 +33,5 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../xpad.appdata.xml 
"$pkgdir/usr/share/metainfo/xpad.appdata.xml"
 }

Added: xpad.appdata.xml
===
--- xpad.appdata.xml(rev 0)
+++ xpad.appdata.xml2018-12-28 18:54:31 UTC (rev 418718)
@@ -0,0 +1,21 @@
+
+
+  net.launchpad.xpad
+  xpad.desktop
+  Xpad
+  Jot down notes for later
+  CC0-1.0
+  GPL-3.0
+  
+Xpad is a sticky note application that strives to be simple, 
fault-tolerant, and customizable. Xpad consists of independent pad windows; 
each is basically a text box in which notes can be written.
+  
+  
+
+  
https://wiki.gnome.org/Apps/Xpad?action=AttachFiledo=gettarget=xpad-window.png
+
+  
+  https://bugs.launchpad.net/xpad
+  https://launchpad.net/xpad
+  xpad-hack...@lists.launchpad.net
+  xpad
+


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 18:52:28
  Author: felixonmars
Revision: 418717

archrelease: copy trunk to community-any

Added:
  gnomon/repos/community-any/
  gnomon/repos/community-any/PKGBUILD
(from rev 418716, gnomon/trunk/PKGBUILD)

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

Copied: gnomon/repos/community-any/PKGBUILD (from rev 418716, 
gnomon/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-28 18:52:28 UTC (rev 418717)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=gnomon
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Utility to annotate console logging statements with timestamps and 
find slow processes"
+arch=('any')
+url="https://github.com/paypal/gnomon;
+license=('MIT')
+depends=('nodejs' 'semver')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('0c199bada9e7588896206b2e075d18542ce10a77b229465a021a93731e3afd00380771bb02b5331c5048f3b6029642d6ada180a26c47b7bc0d10ab2719de9c95')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Experimental dedup
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 18:52:10
  Author: felixonmars
Revision: 418716

addpkg: gnomon 1.5.0-1

Added:
  gnomon/
  gnomon/repos/
  gnomon/trunk/
  gnomon/trunk/PKGBUILD

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

Added: gnomon/trunk/PKGBUILD
===
--- gnomon/trunk/PKGBUILD   (rev 0)
+++ gnomon/trunk/PKGBUILD   2018-12-28 18:52:10 UTC (rev 418716)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=gnomon
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Utility to annotate console logging statements with timestamps and 
find slow processes"
+arch=('any')
+url="https://github.com/paypal/gnomon;
+license=('MIT')
+depends=('nodejs' 'semver')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('0c199bada9e7588896206b2e075d18542ce10a77b229465a021a93731e3afd00380771bb02b5331c5048f3b6029642d6ada180a26c47b7bc0d10ab2719de9c95')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Experimental dedup
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-28 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 18:26:55
  Author: polyzen
Revision: 418715

Has C extensions

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 18:24:48 UTC (rev 418714)
+++ PKGBUILD2018-12-28 18:26:55 UTC (rev 418715)
@@ -6,7 +6,7 @@
 pkgver=0.19.9
 pkgrel=1
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('any')
+arch=('x86_64')
 url=https://www.dulwich.io
 license=('GPL')
 depends=('python')


[arch-commits] Commit in gnome-mplayer/trunk (PKGBUILD gnome-mplayer.appdata.xml)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:24:44
  Author: bgyorgy
Revision: 418713

upgpkg: gnome-mplayer 1.0.9-7

Add AppStream metadata

Added:
  gnome-mplayer/trunk/gnome-mplayer.appdata.xml
Modified:
  gnome-mplayer/trunk/PKGBUILD

---+
 PKGBUILD  |5 -
 gnome-mplayer.appdata.xml |   22 ++
 2 files changed, 26 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 18:03:36 UTC (rev 418712)
+++ PKGBUILD2018-12-28 18:24:44 UTC (rev 418713)
@@ -5,7 +5,7 @@
 
 pkgname=gnome-mplayer
 pkgver=1.0.9
-pkgrel=6
+pkgrel=7
 pkgdesc='GTK/Gnome interface around MPlayer'
 arch=('x86_64')
 url='https://sites.google.com/site/kdekorte2/gnomemplayer'
@@ -16,8 +16,10 @@
 'nautilus: file manager integration for Nautilus'
 'nemo: file manager integration for Nemo')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/kdekorte/$pkgname/archive/v$pkgver.tar.gz;
+"gnome-mplayer.appdata.xml"
 "caja.patch")
 sha256sums=('07e11bc42834dae14ad66f887e6045f2bea94eae7f797b624c9a099f806b5cde'
+'2e661347fa2765a9553938db9582a833b42385db92f6687172507deecf404567'
 '52dbf11e64042c03ec94677ee667d88306f5f45521b7a1da82e5e5f02f59ed28')
 
 prepare() {
@@ -37,4 +39,5 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnome-mplayer.appdata.xml 
"$pkgdir/usr/share/metainfo/gnome-mplayer.appdata.xml"
 }

Added: gnome-mplayer.appdata.xml
===
--- gnome-mplayer.appdata.xml   (rev 0)
+++ gnome-mplayer.appdata.xml   2018-12-28 18:24:44 UTC (rev 418713)
@@ -0,0 +1,22 @@
+
+
+  com.github.gnome-mplayer
+  gnome-mplayer.desktop
+  GNOME MPlayer
+  Play your media
+  CC0-1.0
+  GPL-2.0
+  Kevin DeKorte
+  
+A GTK2/GTK3 interface to MPlayer. The power of MPlayer combined with a 
friendly interface for your desktop; You can play all your multimedia (audio, 
video, CD, DVDs, and VCDs, streams etc.), organize, sort and create playlists, 
take screenshots while playing videos, be notified about media changes. Full 
DVD and MKV chapter support, when supported by Mplayer. Subtitle support with 
the ability to specify preferred audio and subtitle languages if the media 
supports it. Support for cover art retrieval from Amazon.com for audio media 
files with artist and/or album information contained in the file.
+  
+  
+
+  
https://4.bp.blogspot.com/-sKqZ66tAsA4/Tbrp2t8NllI/FxA/DouKylNm_0s/s1600/Screenshot-www.thematrix.com+-+Animatrix+Trailer+-+GNOME+MPlayer.png
+
+  
+  https://github.com/kdekorte/gnome-mplayer/issues
+  https://sites.google.com/site/kdekorte2/gnomemplayer
+  gnome-mpla...@googlegroups.com
+  gnome-mplayer
+


[arch-commits] Commit in gnome-mplayer/repos/community-x86_64 (5 files)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:24:48
  Author: bgyorgy
Revision: 418714

archrelease: copy trunk to community-x86_64

Added:
  gnome-mplayer/repos/community-x86_64/PKGBUILD
(from rev 418713, gnome-mplayer/trunk/PKGBUILD)
  gnome-mplayer/repos/community-x86_64/caja.patch
(from rev 418713, gnome-mplayer/trunk/caja.patch)
  gnome-mplayer/repos/community-x86_64/gnome-mplayer.appdata.xml
(from rev 418713, gnome-mplayer/trunk/gnome-mplayer.appdata.xml)
Deleted:
  gnome-mplayer/repos/community-x86_64/PKGBUILD
  gnome-mplayer/repos/community-x86_64/caja.patch

---+
 PKGBUILD  |   84 +++
 caja.patch|  482 ++--
 gnome-mplayer.appdata.xml |   22 ++
 3 files changed, 306 insertions(+), 282 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 18:24:44 UTC (rev 418713)
+++ PKGBUILD2018-12-28 18:24:48 UTC (rev 418714)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Lukas Fleischer 
-# Contributor: Allan McRae 
-# Contributor: Daniel J Griffiths 
-
-pkgname=gnome-mplayer
-pkgver=1.0.9
-pkgrel=6
-pkgdesc='GTK/Gnome interface around MPlayer'
-arch=('x86_64')
-url='https://sites.google.com/site/kdekorte2/gnomemplayer'
-license=('GPL')
-depends=('dbus-glib' 'libgda' 'libgpod' 'libnotify' 'gmtk')
-makedepends=('caja' 'nautilus' 'nemo' 'python')
-optdepends=('caja: file manager integration for Caja'
-'nautilus: file manager integration for Nautilus'
-'nemo: file manager integration for Nemo')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kdekorte/$pkgname/archive/v$pkgver.tar.gz;
-"caja.patch")
-sha256sums=('07e11bc42834dae14ad66f887e6045f2bea94eae7f797b624c9a099f806b5cde'
-'52dbf11e64042c03ec94677ee667d88306f5f45521b7a1da82e5e5f02f59ed28')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np0 -i ../caja.patch
-  sed -i 's/Exec=gnome-mplayer %U/Exec=gnome-mplayer %F/' $pkgname.desktop
-  sed -i '/AM_GCONF_SOURCE_2/d' configure.in
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-mplayer/repos/community-x86_64/PKGBUILD (from rev 418713, 
gnome-mplayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 18:24:48 UTC (rev 418714)
@@ -0,0 +1,43 @@
+# Maintainer: Balló György 
+# Contributor: Lukas Fleischer 
+# Contributor: Allan McRae 
+# Contributor: Daniel J Griffiths 
+
+pkgname=gnome-mplayer
+pkgver=1.0.9
+pkgrel=7
+pkgdesc='GTK/Gnome interface around MPlayer'
+arch=('x86_64')
+url='https://sites.google.com/site/kdekorte2/gnomemplayer'
+license=('GPL')
+depends=('dbus-glib' 'libgda' 'libgpod' 'libnotify' 'gmtk')
+makedepends=('caja' 'nautilus' 'nemo' 'python')
+optdepends=('caja: file manager integration for Caja'
+'nautilus: file manager integration for Nautilus'
+'nemo: file manager integration for Nemo')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kdekorte/$pkgname/archive/v$pkgver.tar.gz;
+"gnome-mplayer.appdata.xml"
+"caja.patch")
+sha256sums=('07e11bc42834dae14ad66f887e6045f2bea94eae7f797b624c9a099f806b5cde'
+'2e661347fa2765a9553938db9582a833b42385db92f6687172507deecf404567'
+'52dbf11e64042c03ec94677ee667d88306f5f45521b7a1da82e5e5f02f59ed28')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np0 -i ../caja.patch
+  sed -i 's/Exec=gnome-mplayer %U/Exec=gnome-mplayer %F/' $pkgname.desktop
+  sed -i '/AM_GCONF_SOURCE_2/d' configure.in
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnome-mplayer.appdata.xml 
"$pkgdir/usr/share/metainfo/gnome-mplayer.appdata.xml"
+}

Deleted: caja.patch
===
--- caja.patch  2018-12-28 18:24:44 UTC (rev 418713)
+++ caja.patch  2018-12-28 18:24:48 UTC (rev 418714)
@@ -1,241 +0,0 @@
-Index: src/Makefile.am
-===
 src/Makefile.am(revision 2474)
-+++ src/Makefile.am(working copy)
-@@ -144,7 +144,34 @@
- 
- endif #HAVE_NEMO
- 
-+if HAVE_CAJA
- 
-+cajadir = $(CAJADIR)
-+caja_PROGRAMS = libgnome-mplayer-caja-properties-page.so
-+
-+libgnome_mplayer_caja_properties_page_so_SOURCES = \
-+../config.h \
-+mime_types.h \
-+caja_property_page.c \
-+property_page_common.c \
-+property_page_common.h
-+
-+libgnome_mplayer_caja_properties_page_so_CFLAGS = -fPIC \
-+$(CAJA_CFLAGS) \
-+  $(GTK_CFLAGS) \
-+$(GIO_CFLAGS) \
-+$(AM_CFLAGS)
-+
-+libgnome_mplayer_caja_properties_page_so_LDFLAGS = -shared
-+

[arch-commits] Commit in gnome-break-timer/repos/community-x86_64 (3 files)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:03:36
  Author: bgyorgy
Revision: 418712

archrelease: copy trunk to community-x86_64

Added:
  
gnome-break-timer/repos/community-x86_64/0001-Fix-AppStream-metadata-validation.patch
(from rev 418711, 
gnome-break-timer/trunk/0001-Fix-AppStream-metadata-validation.patch)
  gnome-break-timer/repos/community-x86_64/PKGBUILD
(from rev 418711, gnome-break-timer/trunk/PKGBUILD)
Deleted:
  gnome-break-timer/repos/community-x86_64/PKGBUILD

--+
 0001-Fix-AppStream-metadata-validation.patch |   67 
 PKGBUILD |   81 -
 2 files changed, 109 insertions(+), 39 deletions(-)

Copied: 
gnome-break-timer/repos/community-x86_64/0001-Fix-AppStream-metadata-validation.patch
 (from rev 418711, 
gnome-break-timer/trunk/0001-Fix-AppStream-metadata-validation.patch)
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-28 18:03:36 UTC 
(rev 418712)
@@ -0,0 +1,67 @@
+From 8280360b66c2dde9414f294a537969bcf4b4cc19 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 18:57:32 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+---
+ data/Makefile.am  |  2 +-
+ data/gnome-break-timer.appdata.xml.in | 33 +--
+ 2 files changed, 22 insertions(+), 13 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index d26b312..4f0cc66 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -27,7 +27,7 @@ check: $(desktop_DATA) $(autostart_DATA)
+ 
+ # appdata
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_in_files = gnome-break-timer.appdata.xml.in
+ appdata_DATA = $(appdata_in_files:.appdata.xml.in=.appdata.xml)
+ 
+diff --git a/data/gnome-break-timer.appdata.xml.in 
b/data/gnome-break-timer.appdata.xml.in
+index f2ae5e3..d63dfc3 100644
+--- a/data/gnome-break-timer.appdata.xml.in
 b/data/gnome-break-timer.appdata.xml.in
+@@ -1,15 +1,24 @@
+ 
+-
+- gnome-break-timer.desktop
+- GPLv3
++
++ org.gnome.breaktimer
++ gnome-break-timer.desktop
++ CC0-1.0
++ GPL-3.0
+  <_name>Break Timer
+  <_summary>Remember to take regular breaks from using the computer
+- <_description>
+-Break Timer keeps track of how much you are using the computer, and it 
reminds you to take regular breaks. It is designed to encourage healthy 
behaviour, with a mix of short breaks for your eyes and wrists, as well as 
longer breaks to keep your body moving and your mind on task.
+-Break Timer is simple to set up, so you can pick a break schedule that 
works for you and it will carry on working in the background.
+-
+-
+-
+-https://wiki.gnome.org/GnomeBreakTimer
+-dylanmcc...@ubuntu.com
+-
++ 
++  <_p>Break Timer keeps track of how much you are using the computer, and it 
reminds you to take regular breaks. It is designed to encourage healthy 
behaviour, with a mix of short breaks for your eyes and wrists, as well as 
longer breaks to keep your body moving and your mind on task.
++  <_p>Break Timer is simple to set up, so you can pick a break schedule that 
works for you and it will carry on working in the background.
++ 
++ 
++  
++   
https://i0.wp.com/dylanmc.ca/wp-content/uploads/Screenshot-from-2013-09-13-183224.png
++  
++  
++   
https://i0.wp.com/dylanmc.ca/wp-content/uploads/Screenshot-from-2013-09-13-182608.png
++  
++ 
++ https://gitlab.gnome.org/GNOME/gnome-break-timer/issues
++ https://wiki.gnome.org/Apps/BreakTimer
++ dylanmcc...@ubuntu.com
++
+-- 
+2.20.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 18:03:31 UTC (rev 418711)
+++ PKGBUILD2018-12-28 18:03:36 UTC (rev 418712)
@@ -1,39 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=gnome-break-timer
-pkgver=1.1+47+ga51a32a
-pkgrel=2
-pkgdesc="Keeps track of how much you are using the computer, and it reminds 
you to take regular breaks"
-arch=('x86_64')
-url="https://wiki.gnome.org/Apps/BreakTimer;
-license=('GPL3')
-depends=('gtk3' 'libcanberra' 'libgee' 'libnotify')
-makedepends=('intltool' 'git' 'gobject-introspection' 'vala')
-_commit=a51a32a3c64110d8aafae2f21492754f693cd973  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-break-timer#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  sed -i 's/gee-1.0/gee-0.8/' configure.ac helper/helper.am 
settings/settings.am
-  sed -i 
's|$(top_builddir)/helper/libgnome_break_timer_service.la|libgnome_break_timer_service.la|'
 helper/Makefile.am
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  

[arch-commits] Commit in gnome-break-timer/trunk (2 files)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 18:03:31
  Author: bgyorgy
Revision: 418711

upgpkg: gnome-break-timer 1.1+47+ga51a32a-3

Fix AppStream metadata

Added:
  gnome-break-timer/trunk/0001-Fix-AppStream-metadata-validation.patch
Modified:
  gnome-break-timer/trunk/PKGBUILD

--+
 0001-Fix-AppStream-metadata-validation.patch |   67 +
 PKGBUILD |9 ++-
 2 files changed, 73 insertions(+), 3 deletions(-)

Added: 0001-Fix-AppStream-metadata-validation.patch
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-28 18:03:31 UTC 
(rev 418711)
@@ -0,0 +1,67 @@
+From 8280360b66c2dde9414f294a537969bcf4b4cc19 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 18:57:32 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+---
+ data/Makefile.am  |  2 +-
+ data/gnome-break-timer.appdata.xml.in | 33 +--
+ 2 files changed, 22 insertions(+), 13 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index d26b312..4f0cc66 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -27,7 +27,7 @@ check: $(desktop_DATA) $(autostart_DATA)
+ 
+ # appdata
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_in_files = gnome-break-timer.appdata.xml.in
+ appdata_DATA = $(appdata_in_files:.appdata.xml.in=.appdata.xml)
+ 
+diff --git a/data/gnome-break-timer.appdata.xml.in 
b/data/gnome-break-timer.appdata.xml.in
+index f2ae5e3..d63dfc3 100644
+--- a/data/gnome-break-timer.appdata.xml.in
 b/data/gnome-break-timer.appdata.xml.in
+@@ -1,15 +1,24 @@
+ 
+-
+- gnome-break-timer.desktop
+- GPLv3
++
++ org.gnome.breaktimer
++ gnome-break-timer.desktop
++ CC0-1.0
++ GPL-3.0
+  <_name>Break Timer
+  <_summary>Remember to take regular breaks from using the computer
+- <_description>
+-Break Timer keeps track of how much you are using the computer, and it 
reminds you to take regular breaks. It is designed to encourage healthy 
behaviour, with a mix of short breaks for your eyes and wrists, as well as 
longer breaks to keep your body moving and your mind on task.
+-Break Timer is simple to set up, so you can pick a break schedule that 
works for you and it will carry on working in the background.
+-
+-
+-
+-https://wiki.gnome.org/GnomeBreakTimer
+-dylanmcc...@ubuntu.com
+-
++ 
++  <_p>Break Timer keeps track of how much you are using the computer, and it 
reminds you to take regular breaks. It is designed to encourage healthy 
behaviour, with a mix of short breaks for your eyes and wrists, as well as 
longer breaks to keep your body moving and your mind on task.
++  <_p>Break Timer is simple to set up, so you can pick a break schedule that 
works for you and it will carry on working in the background.
++ 
++ 
++  
++   
https://i0.wp.com/dylanmc.ca/wp-content/uploads/Screenshot-from-2013-09-13-183224.png
++  
++  
++   
https://i0.wp.com/dylanmc.ca/wp-content/uploads/Screenshot-from-2013-09-13-182608.png
++  
++ 
++ https://gitlab.gnome.org/GNOME/gnome-break-timer/issues
++ https://wiki.gnome.org/Apps/BreakTimer
++ dylanmcc...@ubuntu.com
++
+-- 
+2.20.1
+

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 17:45:47 UTC (rev 418710)
+++ PKGBUILD2018-12-28 18:03:31 UTC (rev 418711)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-break-timer
 pkgver=1.1+47+ga51a32a
-pkgrel=2
+pkgrel=3
 pkgdesc="Keeps track of how much you are using the computer, and it reminds 
you to take regular breaks"
 arch=('x86_64')
 url="https://wiki.gnome.org/Apps/BreakTimer;
@@ -10,8 +10,10 @@
 depends=('gtk3' 'libcanberra' 'libgee' 'libnotify')
 makedepends=('intltool' 'git' 'gobject-introspection' 'vala')
 _commit=a51a32a3c64110d8aafae2f21492754f693cd973  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-break-timer#commit=$_commit;)
-sha256sums=('SKIP')
+source=("git+https://gitlab.gnome.org/GNOME/gnome-break-timer#commit=$_commit;
+0001-Fix-AppStream-metadata-validation.patch)
+sha256sums=('SKIP'
+'b043a8f1687438df61199ea32f614f4541cbe1253b676761c561c24b2eded9d1')
 
 pkgver() {
   cd $pkgname
@@ -20,6 +22,7 @@
 
 prepare() {
   cd $pkgname
+  patch -Np1 -i ../0001-Fix-AppStream-metadata-validation.patch
   sed -i 's/gee-1.0/gee-0.8/' configure.ac helper/helper.am 
settings/settings.am
   sed -i 
's|$(top_builddir)/helper/libgnome_break_timer_service.la|libgnome_break_timer_service.la|'
 helper/Makefile.am
 


[arch-commits] Commit in deepin-daemon/repos (4 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:45:47
  Author: felixonmars
Revision: 418710

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-daemon/repos/community-testing-x86_64/
  deepin-daemon/repos/community-testing-x86_64/PKGBUILD
(from rev 418709, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-testing-x86_64/deepin-daemon.install
(from rev 418709, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-testing-x86_64/deepin-daemon.sysusers
(from rev 418709, deepin-daemon/trunk/deepin-daemon.sysusers)

+
 PKGBUILD   |   68 +++
 deepin-daemon.install  |3 ++
 deepin-daemon.sysusers |2 +
 3 files changed, 73 insertions(+)

Copied: deepin-daemon/repos/community-testing-x86_64/PKGBUILD (from rev 418709, 
deepin-daemon/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-12-28 17:45:47 UTC (rev 418710)
@@ -0,0 +1,68 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-daemon
+pkgver=3.15.0
+pkgrel=2
+pkgdesc='Daemon handling the DDE session settings'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-daemon;
+license=('GPL3')
+depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'poppler-glib' 
'rfkill' 'bluez'
+ 'deepin-notifications' 'iso-codes' 'lsb-release' 
'mobile-broadband-provider-info'
+ 'deepin-polkit-agent' 'deepin-polkit-agent-ext-gnomekeyring' 
'udisks2' 'upower'
+ 'libxkbfile' 'accountsservice' 'deepin-desktop-base' 'bamf' 
'pulseaudio'
+ 'gnome-keyring' 'noto-fonts' 'imwheel')
+makedepends=('deepin-dbus-factory' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'sqlite' 'deepin-gettext-tools' 'git' 'mercurial' 
'python-gobject'
+ 'networkmanager' 'go-pie')
+optdepends=('networkmanager: for network management support'
+'deepin-grub2-themes: theme for grub module'
+'iw: for miracast module'
+'proxychains-ng: for proxy configuration module')
+conflicts=('dde-daemon')
+replaces=('dde-daemon')
+groups=('deepin')
+install="${pkgname}.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-daemon/archive/$pkgver.tar.gz;
+
https://raw.githubusercontent.com/jouyouyun/tap-gesture-patches/master/patches/dde-daemon_3.8.0.patch
+'deepin-daemon.sysusers')
+sha512sums=('61225ed04c76da111af55fa610bae3b526e5781dde0432d47eb03c134b60d2358f1bf9ef7e6a30bf2649a7758b903602604f225f031f7079f05287bc7a862578'
+
'334839a8136cad44aadb4c97be29ae89f8a1106928175b9bd9115051b34d52cb468902636a67bae8685888bdfe8d8ae195cf8df2b9e93e480f3f008494942e74'
+
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a')
+
+prepare() {
+  cd dde-daemon-$pkgver
+  patch -p1 -i ../dde-daemon_3.8.0.patch
+
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+
+  # https://github.com/niemeyer/gopkg/issues/50
+  git config --global http.https://gopkg.in.followRedirects true
+
+  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/linuxdeepin/go-x11-client \
+ github.com/mattn/go-sqlite3 gopkg.in/alecthomas/kingpin.v2 
github.com/disintegration/imaging \
+ github.com/BurntSushi/freetype-go/freetype 
github.com/BurntSushi/freetype-go/freetype/truetype \
+ github.com/BurntSushi/graphics-go/graphics 
github.com/fsnotify/fsnotify golang.org/x/sys/unix \
+ gopkg.in/yaml.v2 github.com/axgle/mahonia github.com/msteinert/pam 
github.com/nfnt/resize \
+ golang.org/x/text/encoding/charmap github.com/cryptix/wav 
golang.org/x/net/context
+
+  sed -i 
's#/usr/share/backgrounds/default_background.jpg#/usr/share/backgrounds/deepin/desktop.jpg#'
 accounts/user.go
+}
+
+build() {
+  cd dde-daemon-$pkgver
+  make -C network/nm_generator gen-nm-code
+  make
+}
+
+package() {
+  cd dde-daemon-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mv "$pkgdir"{,/usr}/lib/systemd
+  rmdir "$pkgdir"/lib
+
+  install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
+}

Copied: deepin-daemon/repos/community-testing-x86_64/deepin-daemon.install 
(from rev 418709, deepin-daemon/trunk/deepin-daemon.install)
===
--- community-testing-x86_64/deepin-daemon.install  
(rev 0)
+++ community-testing-x86_64/deepin-daemon.install  2018-12-28 17:45:47 UTC 
(rev 418710)
@@ -0,0 +1,3 @@
+post_remove() {
+  rm -f /var/cache/deepin/mark-setup-network-services
+}

Copied: deepin-daemon/repos/community-testing-x86_64/deepin-daemon.sysusers 
(from rev 418709, 

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:45:26
  Author: felixonmars
Revision: 418709

upgpkg: deepin-daemon 3.15.0-2

rebuild with go-lib 1.6.0-2 to fix dbus issue on systemd 240+

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 17:42:21 UTC (rev 418708)
+++ PKGBUILD2018-12-28 17:45:26 UTC (rev 418709)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-daemon
 pkgver=3.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon handling the DDE session settings'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:42:21
  Author: felixonmars
Revision: 418708

archrelease: copy trunk to community-testing-x86_64

Added:
  startdde/repos/community-testing-x86_64/
  startdde/repos/community-testing-x86_64/PKGBUILD
(from rev 418707, startdde/trunk/PKGBUILD)

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

Copied: startdde/repos/community-testing-x86_64/PKGBUILD (from rev 418707, 
startdde/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-12-28 17:42:21 UTC (rev 418708)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.8.0
+pkgrel=2
+pkgdesc="starter of deepin desktop environment"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
+makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory')
+replaces=('deepin-wm-switcher')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
+sha512sums=('ca0915636b51472b5224bf1031ecf09d634e55ec1a61198934f913fe529ae29206bb3614324261bcb498f3fa87a96e6c5bc96e154246e265259e307f15c987ed')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify \
+ github.com/cryptix/wav golang.org/x/net/context 
github.com/linuxdeepin/go-x11-client
+
+  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
+}
+
+build() {
+  cd startdde-$pkgver
+  make
+}
+
+package() {
+  cd startdde-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:42:04
  Author: felixonmars
Revision: 418707

upgpkg: startdde 3.8.0-2

rebuild with go-lib 1.6.0-2 to fix dbus issue on systemd 240+

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 17:41:17 UTC (rev 418706)
+++ PKGBUILD2018-12-28 17:42:04 UTC (rev 418707)
@@ -4,7 +4,7 @@
 
 pkgname=startdde
 pkgver=3.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="starter of deepin desktop environment"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/startdde;


[arch-commits] Commit in tasque/trunk (PKGBUILD tasque.appdata.xml)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 17:41:12
  Author: bgyorgy
Revision: 418705

upgpkg: tasque 0.1.12-6

Add AppStream metadata

Added:
  tasque/trunk/tasque.appdata.xml
Modified:
  tasque/trunk/PKGBUILD

+
 PKGBUILD   |8 ++--
 tasque.appdata.xml |   21 +
 2 files changed, 27 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 17:37:08 UTC (rev 418704)
+++ PKGBUILD2018-12-28 17:41:12 UTC (rev 418705)
@@ -2,17 +2,19 @@
 
 pkgname=tasque
 pkgver=0.1.12
-pkgrel=5
+pkgrel=6
 pkgdesc="Easy quick task management app written in C Sharp"
 arch=('any')
-url="https://wiki.gnome.org/Apps/Tasque;
+url="https://wiki.gnome.org/Attic/Tasque;
 license=('MIT')
 depends=('notify-sharp' 'sqlite')
 makedepends=('intltool')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+tasque.appdata.xml
 dbus-sharp-2-porting.patch
 use_dbussharp_2.patch)
 sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
+'f5d76db752d95eedde81857cfa9a46caa21e9d7528f8992e0b3d9a992a8ca624'
 '9bcd0f2e854ade96203a44ca7e322d20e0a197057ea2c2271099720a211006b1'
 'b75cdba593bcd28beef7e55212511f5ebedda38a25c210b16226d9db4b180ef6')
 
@@ -33,4 +35,6 @@
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 ../tasque.appdata.xml 
"$pkgdir/usr/share/metainfo/tasque.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
 }

Added: tasque.appdata.xml
===
--- tasque.appdata.xml  (rev 0)
+++ tasque.appdata.xml  2018-12-28 17:41:12 UTC (rev 418705)
@@ -0,0 +1,21 @@
+
+
+  org.gnome.tasque
+  tasque.desktop
+  Tasque
+  Easy quick task management
+  CC0-1.0
+  MIT
+  
+Tasque is a simple task management app (TODO list). It supports syncing 
with the on-line service Remember the Milk or simply storing your tasks 
locally.
+  
+  
+
+  https://people.gnome.org/~sharm/tasque-0.1.8.png
+
+  
+  https://gitlab.gnome.org/Archive/tasque/issues
+  https://wiki.gnome.org/Attic/Tasque
+  tasque-l...@gnome.org
+  tasque
+


[arch-commits] Commit in tasque/repos/community-any (7 files)

2018-12-28 Thread Balló György via arch-commits
Date: Friday, December 28, 2018 @ 17:41:17
  Author: bgyorgy
Revision: 418706

archrelease: copy trunk to community-any

Added:
  tasque/repos/community-any/PKGBUILD
(from rev 418705, tasque/trunk/PKGBUILD)
  tasque/repos/community-any/dbus-sharp-2-porting.patch
(from rev 418705, tasque/trunk/dbus-sharp-2-porting.patch)
  tasque/repos/community-any/tasque.appdata.xml
(from rev 418705, tasque/trunk/tasque.appdata.xml)
  tasque/repos/community-any/use_dbussharp_2.patch
(from rev 418705, tasque/trunk/use_dbussharp_2.patch)
Deleted:
  tasque/repos/community-any/PKGBUILD
  tasque/repos/community-any/dbus-sharp-2-porting.patch
  tasque/repos/community-any/use_dbussharp_2.patch

+
 PKGBUILD   |   76 ++-
 dbus-sharp-2-porting.patch |   44 
 tasque.appdata.xml |   21 +++
 use_dbussharp_2.patch  |   64 ++--
 4 files changed, 115 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 17:41:12 UTC (rev 418705)
+++ PKGBUILD2018-12-28 17:41:17 UTC (rev 418706)
@@ -1,36 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=tasque
-pkgver=0.1.12
-pkgrel=5
-pkgdesc="Easy quick task management app written in C Sharp"
-arch=('any')
-url="https://wiki.gnome.org/Apps/Tasque;
-license=('MIT')
-depends=('notify-sharp' 'sqlite')
-makedepends=('intltool')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-dbus-sharp-2-porting.patch
-use_dbussharp_2.patch)
-sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
-'9bcd0f2e854ade96203a44ca7e322d20e0a197057ea2c2271099720a211006b1'
-'b75cdba593bcd28beef7e55212511f5ebedda38a25c210b16226d9db4b180ef6')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../dbus-sharp-2-porting.patch
-  patch -Np1 -i ../use_dbussharp_2.patch
-  autoreconf -fi
-}
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-appindicator
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: tasque/repos/community-any/PKGBUILD (from rev 418705, 
tasque/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 17:41:17 UTC (rev 418706)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György 
+
+pkgname=tasque
+pkgver=0.1.12
+pkgrel=6
+pkgdesc="Easy quick task management app written in C Sharp"
+arch=('any')
+url="https://wiki.gnome.org/Attic/Tasque;
+license=('MIT')
+depends=('notify-sharp' 'sqlite')
+makedepends=('intltool')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+tasque.appdata.xml
+dbus-sharp-2-porting.patch
+use_dbussharp_2.patch)
+sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
+'f5d76db752d95eedde81857cfa9a46caa21e9d7528f8992e0b3d9a992a8ca624'
+'9bcd0f2e854ade96203a44ca7e322d20e0a197057ea2c2271099720a211006b1'
+'b75cdba593bcd28beef7e55212511f5ebedda38a25c210b16226d9db4b180ef6')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../dbus-sharp-2-porting.patch
+  patch -Np1 -i ../use_dbussharp_2.patch
+  autoreconf -fi
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-appindicator
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 ../tasque.appdata.xml 
"$pkgdir/usr/share/metainfo/tasque.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
+}

Deleted: dbus-sharp-2-porting.patch
===
--- dbus-sharp-2-porting.patch  2018-12-28 17:41:12 UTC (rev 418705)
+++ dbus-sharp-2-porting.patch  2018-12-28 17:41:17 UTC (rev 418706)
@@ -1,22 +0,0 @@
-Description: Port to dbus#2 API
-Forwarded: not-needed
-
 tasque-0.1.12.orig/src/Gtk.Tasque/RemoteControlProxy.cs
-+++ tasque-0.1.12/src/Gtk.Tasque/RemoteControlProxy.cs
-@@ -22,8 +22,7 @@ namespace Tasque
-   BusG.Init ();
- 
-   RemoteControl remote_control = new RemoteControl ();
--  Bus.Session.Register (Namespace,
--new ObjectPath (Path),
-+  Bus.Session.Register (new ObjectPath (Path),
- remote_control);
- 
-   if (Bus.Session.RequestName (Namespace)
-@@ -33,4 +32,4 @@ namespace Tasque
-   return remote_control;
-

[arch-commits] Commit in deepin-go-lib/repos (3 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:37:08
  Author: felixonmars
Revision: 418704

archrelease: copy trunk to community-testing-any

Added:
  deepin-go-lib/repos/community-testing-any/
  deepin-go-lib/repos/community-testing-any/PKGBUILD
(from rev 418703, deepin-go-lib/trunk/PKGBUILD)
  deepin-go-lib/repos/community-testing-any/dbus-fix.patch
(from rev 418703, deepin-go-lib/trunk/dbus-fix.patch)

+
 PKGBUILD   |   26 ++
 dbus-fix.patch |   44 
 2 files changed, 70 insertions(+)

Copied: deepin-go-lib/repos/community-testing-any/PKGBUILD (from rev 418703, 
deepin-go-lib/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-12-28 17:37:08 UTC (rev 418704)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-go-lib
+pkgver=1.6.0
+pkgrel=2
+pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
+arch=('any')
+url="https://github.com/linuxdeepin/go-lib;
+license=('GPL3')
+depends=('libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 'libx11')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz;
+dbus-fix.patch)
+sha512sums=('c350792d5a445d0f235f0402e36952c7ff9e5a88bf39b41fa2ae6a31f9cbd67e73c6426f4bc76bc14d465fc84750ee2f65f4450ecbe725a0d5ce7169a7c2182c'
+
'80a540358c2d9c51b647d7afa1b9c2a075677b596861fdb894f97298ba580b242f8cfcaa3d0ac7b8a4fdd18d39fb9eee8c62ef20d0efb5f928a88117b6fa8a9c')
+
+prepare() {
+  cd go-lib-$pkgver
+  patch -p1 -i ../dbus-fix.patch
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
+  cp -a go-lib-$pkgver "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
+
+  rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
+}

Copied: deepin-go-lib/repos/community-testing-any/dbus-fix.patch (from rev 
418703, deepin-go-lib/trunk/dbus-fix.patch)
===
--- community-testing-any/dbus-fix.patch(rev 0)
+++ community-testing-any/dbus-fix.patch2018-12-28 17:37:08 UTC (rev 
418704)
@@ -0,0 +1,44 @@
+diff --git a/dbus/conn.go b/dbus/conn.go
+index 20f65b1..01da4e3 100644
+--- a/dbus/conn.go
 b/dbus/conn.go
+@@ -26,6 +26,7 @@ import (
+   "reflect"
+   "strings"
+   "sync"
++  dbus1 "pkg.deepin.io/lib/dbus1"
+ )
+ 
+ const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
+@@ -112,12 +113,12 @@ func SessionBus() (conn *Conn, err error) {
+ 
+ // SessionBusPrivate returns a new private connection to the session bus.
+ func SessionBusPrivate() (*Conn, error) {
+-  address := os.Getenv("DBUS_SESSION_BUS_ADDRESS")
+-  if address != "" && address != "autolaunch:" {
+-  return Dial(address)
++  address, err := dbus1.GetSessionBusAddress()
++  if err != nil {
++  return nil, err
+   }
+ 
+-  return sessionBusPlatform()
++  return Dial(address)
+ }
+ 
+ // SystemBus returns a shared connection to the system bus, connecting to it 
if
+diff --git a/dbus1/conn.go b/dbus1/conn.go
+index 2737621..ac89088 100644
+--- a/dbus1/conn.go
 b/dbus1/conn.go
+@@ -77,6 +77,10 @@ func SessionBus() (conn *Conn, err error) {
+   return
+ }
+ 
++func GetSessionBusAddress() (string, error) {
++  return getSessionBusAddress()
++}
++
+ func getSessionBusAddress() (string, error) {
+   if address := os.Getenv("DBUS_SESSION_BUS_ADDRESS"); address != "" && 
address != "autolaunch:" {
+   return address, nil


[arch-commits] Commit in deepin-go-lib/trunk (PKGBUILD dbus-fix.patch)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 17:36:50
  Author: felixonmars
Revision: 418703

upgpkg: deepin-go-lib 1.6.0-2

try to fix dbus for systemd 240

Added:
  deepin-go-lib/trunk/dbus-fix.patch
Modified:
  deepin-go-lib/trunk/PKGBUILD

+
 PKGBUILD   |   13 ++---
 dbus-fix.patch |   44 
 2 files changed, 54 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 17:30:59 UTC (rev 418702)
+++ PKGBUILD2018-12-28 17:36:50 UTC (rev 418703)
@@ -2,15 +2,22 @@
 
 pkgname=deepin-go-lib
 pkgver=1.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
 arch=('any')
 url="https://github.com/linuxdeepin/go-lib;
 license=('GPL3')
 depends=('libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 'libx11')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/go-lib/archive/$pkgver.tar.gz;)
-sha512sums=('c350792d5a445d0f235f0402e36952c7ff9e5a88bf39b41fa2ae6a31f9cbd67e73c6426f4bc76bc14d465fc84750ee2f65f4450ecbe725a0d5ce7169a7c2182c')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz;
+dbus-fix.patch)
+sha512sums=('c350792d5a445d0f235f0402e36952c7ff9e5a88bf39b41fa2ae6a31f9cbd67e73c6426f4bc76bc14d465fc84750ee2f65f4450ecbe725a0d5ce7169a7c2182c'
+
'80a540358c2d9c51b647d7afa1b9c2a075677b596861fdb894f97298ba580b242f8cfcaa3d0ac7b8a4fdd18d39fb9eee8c62ef20d0efb5f928a88117b6fa8a9c')
 
+prepare() {
+  cd go-lib-$pkgver
+  patch -p1 -i ../dbus-fix.patch
+}
+
 package() {
   mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
   cp -a go-lib-$pkgver "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib

Added: dbus-fix.patch
===
--- dbus-fix.patch  (rev 0)
+++ dbus-fix.patch  2018-12-28 17:36:50 UTC (rev 418703)
@@ -0,0 +1,44 @@
+diff --git a/dbus/conn.go b/dbus/conn.go
+index 20f65b1..01da4e3 100644
+--- a/dbus/conn.go
 b/dbus/conn.go
+@@ -26,6 +26,7 @@ import (
+   "reflect"
+   "strings"
+   "sync"
++  dbus1 "pkg.deepin.io/lib/dbus1"
+ )
+ 
+ const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
+@@ -112,12 +113,12 @@ func SessionBus() (conn *Conn, err error) {
+ 
+ // SessionBusPrivate returns a new private connection to the session bus.
+ func SessionBusPrivate() (*Conn, error) {
+-  address := os.Getenv("DBUS_SESSION_BUS_ADDRESS")
+-  if address != "" && address != "autolaunch:" {
+-  return Dial(address)
++  address, err := dbus1.GetSessionBusAddress()
++  if err != nil {
++  return nil, err
+   }
+ 
+-  return sessionBusPlatform()
++  return Dial(address)
+ }
+ 
+ // SystemBus returns a shared connection to the system bus, connecting to it 
if
+diff --git a/dbus1/conn.go b/dbus1/conn.go
+index 2737621..ac89088 100644
+--- a/dbus1/conn.go
 b/dbus1/conn.go
+@@ -77,6 +77,10 @@ func SessionBus() (conn *Conn, err error) {
+   return
+ }
+ 
++func GetSessionBusAddress() (string, error) {
++  return getSessionBusAddress()
++}
++
+ func getSessionBusAddress() (string, error) {
+   if address := os.Getenv("DBUS_SESSION_BUS_ADDRESS"); address != "" && 
address != "autolaunch:" {
+   return address, nil


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

2018-12-28 Thread Eli Schwartz via arch-commits
Date: Friday, December 28, 2018 @ 17:30:59
  Author: eschwartz
Revision: 418702

clean up stale x86_64 PKGBUILD

Deleted:
  anki/repos/community-x86_64/


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:31:13
  Author: felixonmars
Revision: 418688

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 418687, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
418687, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 16:31:13 UTC (rev 418688)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.0
+pkgrel=163
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7c1afe6a53b596c2ce01e9ad7a7f464af1f4efbc5f8edc13d5ec8bc32ce4e91ddde91dff6ab8e01cf3cf30a37a3a18953d937debc36c9df664f718d968e2ae74')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:30:55
  Author: felixonmars
Revision: 418687

upgpkg: tamarin-prover 1.4.0-163

rebuild with rio 0.1.7.0

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 16:29:11 UTC (rev 418686)
+++ PKGBUILD2018-12-28 16:30:55 UTC (rev 418687)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.0
-pkgrel=162
+pkgrel=163
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:29:11
  Author: felixonmars
Revision: 418686

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 418685, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 16:29:11 UTC (rev 418686)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=21
+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 418685, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2018-12-28 16:29:11 UTC (rev 
418686)
@@ -0,0 +1,4 @@
+post_install() {
+  

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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:28:55
  Author: felixonmars
Revision: 418685

upgpkg: stack 1.9.3-21

rebuild with rio 0.1.7.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 16:23:02 UTC (rev 418684)
+++ PKGBUILD2018-12-28 16:28:55 UTC (rev 418685)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=20
+pkgrel=21
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:22:46
  Author: felixonmars
Revision: 418683

upgpkg: hledger-web 1.12-21

rebuild with rio 0.1.7.0

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 16:21:14 UTC (rev 418682)
+++ PKGBUILD2018-12-28 16:22:46 UTC (rev 418683)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.12
-pkgrel=20
+pkgrel=21
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:23:02
  Author: felixonmars
Revision: 418684

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 418683, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 418683, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 16:23:02 UTC (rev 418684)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.12
+pkgrel=21
+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 git-annex/repos (3 files)

2018-12-28 Thread Felix Yan via arch-commits
Date: Friday, December 28, 2018 @ 16:21:14
  Author: felixonmars
Revision: 418682

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 418681, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/ghc-8.4.patch
(from rev 418681, git-annex/trunk/ghc-8.4.patch)

---+
 PKGBUILD  |   56 +
 ghc-8.4.patch |  121 
 2 files changed, 177 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 418681, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 16:21:14 UTC (rev 418682)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20181211
+pkgrel=11
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  sed -i '1i{-# language NoMonadFailDesugaring #-}' Remote/Glacier.hs 
Remote/Ddar.hs Remote/Helper/Ssh.hs Remote/Bup.hs Annex/YoutubeDl.hs 
Remote/Git.hs Assistant/TransferQueue.hs Assistant/Threads/RemoteControl.hs 
Test.hs
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/ghc-8.4.patch (from rev 
418681, git-annex/trunk/ghc-8.4.patch)
===
--- community-staging-x86_64/ghc-8.4.patch  (rev 0)
+++ community-staging-x86_64/ghc-8.4.patch  2018-12-28 16:21:14 UTC (rev 
418682)
@@ -0,0 +1,121 @@
+diff --git a/Command/Info.hs b/Command/Info.hs
+index c9a314056a..3ae82f5532 100644
+--- a/Command/Info.hs
 b/Command/Info.hs
+@@ -56,15 +56,17 @@ data KeyData = KeyData
+   , backendsKeys :: M.Map KeyVariety Integer
+   }
+ 
+-instance Monoid KeyData where
+-  mempty = KeyData 0 0 0 M.empty
+-  mappend a b = KeyData
++instance Semigroup KeyData where
++  a <> b = KeyData
+   { countKeys = countKeys a + countKeys b
+   , sizeKeys = sizeKeys a + sizeKeys b
+   , unknownSizeKeys = unknownSizeKeys a + unknownSizeKeys b
+   , backendsKeys = backendsKeys a <> backendsKeys b
+   }
+ 

  1   2   >