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

2017-12-30 Thread Jan Steffens via arch-commits
Date: Sunday, December 31, 2017 @ 06:10:34
  Author: heftig
Revision: 277518

archrelease: copy trunk to community-staging-x86_64

Added:
  
openvdb/repos/community-staging-x86_64/22d09714f9a6a29c62668b533495ed2afd4251ef.patch
(from rev 277517, 
openvdb/trunk/22d09714f9a6a29c62668b533495ed2afd4251ef.patch)
  openvdb/repos/community-staging-x86_64/PKGBUILD
(from rev 277517, openvdb/trunk/PKGBUILD)
Deleted:
  
openvdb/repos/community-staging-x86_64/22d09714f9a6a29c62668b533495ed2afd4251ef.patch
  openvdb/repos/community-staging-x86_64/PKGBUILD

+
 22d09714f9a6a29c62668b533495ed2afd4251ef.patch |  296 +++
 PKGBUILD   |  111 
 2 files changed, 205 insertions(+), 202 deletions(-)

Deleted: 22d09714f9a6a29c62668b533495ed2afd4251ef.patch
===
--- 22d09714f9a6a29c62668b533495ed2afd4251ef.patch  2017-12-31 06:09:29 UTC 
(rev 277517)
+++ 22d09714f9a6a29c62668b533495ed2afd4251ef.patch  2017-12-31 06:10:34 UTC 
(rev 277518)
@@ -1,148 +0,0 @@
-From 22d09714f9a6a29c62668b533495ed2afd4251ef Mon Sep 17 00:00:00 2001
-From: Jonathan Scruggs 
-Date: Wed, 20 Sep 2017 10:18:19 +0100
-Subject: [PATCH] Attempt to fix boost 1.65 ndarray
-

- openvdb/python/pyFloatGrid.cc |  8 +---
- openvdb/python/pyGrid.h   | 31 ---
- 2 files changed, 25 insertions(+), 14 deletions(-)
-
-diff --git a/openvdb/python/pyFloatGrid.cc b/openvdb/python/pyFloatGrid.cc
-index e5686b20..7eb9eda2 100644
 a/openvdb/python/pyFloatGrid.cc
-+++ b/openvdb/python/pyFloatGrid.cc
-@@ -45,9 +45,11 @@ exportFloatGrid()
- // Add a module-level list that gives the types of all supported Grid 
classes.
- py::scope().attr("GridTypes") = py::list();
- 
--// Specify that py::numeric::array should refer to the Python type 
numpy.ndarray
--// (rather than the older Numeric.array).
--py::numeric::array::set_module_and_type("numpy", "ndarray");
-+#if BOOST_VERSION < 106500
-+// Specify that py::numeric::array should refer to the Python type 
numpy.ndarray
-+// (rather than the older Numeric.array).
-+py::numeric::array::set_module_and_type("numpy", "ndarray");
-+#endif
- 
- pyGrid::exportGrid();
- #ifdef PY_OPENVDB_WRAP_ALL_GRID_TYPES
-diff --git a/openvdb/python/pyGrid.h b/openvdb/python/pyGrid.h
-index f1a01d92..0ae36db7 100644
 a/openvdb/python/pyGrid.h
-+++ b/openvdb/python/pyGrid.h
-@@ -81,6 +81,15 @@ using namespace openvdb::OPENVDB_VERSION_NAME;
- #pragma clang diagnostic pop
- #endif
- 
-+#if BOOST_VERSION < 106500
-+typedef typename py::numeric::array pyndarray;
-+namespace arrayFunc = boost::python::numeric;
-+#else
-+#include 
-+typedef typename py::numpy::ndarray pyndarray;
-+namespace arrayFunc = boost::python::numpy;
-+#endif
-+
- 
- namespace pyopenvdb {
- 
-@@ -820,7 +829,7 @@ class CopyOpBase
- 
- // Extract a reference to (not a copy of) the NumPy array,
- // or throw an exception if arrObj is not a NumPy array object.
--const py::numeric::array arrayObj = 
pyutil::extractArg(
-+const pyndarray arrayObj = pyutil::extractArg(
- arrObj, opName[toGrid], pyutil::GridTraits::name(),
- /*argIdx=*/1, "numpy.ndarray");
- 
-@@ -1113,7 +1122,7 @@ struct CopyVecOp {
- // and sizes from NumPy arrays to STL vectors
- template
- inline void
--copyVecArray(py::numeric::array& arrayObj, std::vector& vec)
-+copyVecArray(pyndarray& arrayObj, std::vector& vec)
- {
- typedef typename VecT::ValueType ValueT;
- 
-@@ -1156,7 +1165,7 @@ meshToLevelSet(py::object pointsObj, py::object 
trianglesObj, py::object quadsOb
- 
- // Raise a Python exception if the given NumPy array does not have 
dimensions M x N
- // or does not have an integer or floating-point data type.
--static void validate2DNumPyArray(py::numeric::array arrayObj,
-+static void validate2DNumPyArray(pyndarray arrayObj,
- const int N, const char* desiredType)
- {
- PyArrayObject* arrayObjPtr = 
reinterpret_cast(arrayObj.ptr());
-@@ -1222,7 +1231,7 @@ meshToLevelSet(py::object pointsObj, py::object 
trianglesObj, py::object quadsOb
- if (!pointsObj.is_none()) {
- // Extract a reference to (not a copy of) a NumPy array argument,
- // or throw an exception if the argument is not a NumPy array object.
--py::numeric::array arrayObj = extractValueArg(
-+pyndarray arrayObj = extractValueArg(
- pointsObj, Local::methodName(), /*argIdx=*/1, "numpy.ndarray");
- 
- // Throw an exception if the array has the wrong type or dimensions.
-@@ -1235,7 +1244,7 @@ meshToLevelSet(py::object pointsObj, py::object 
trianglesObj, py::object quadsOb
- // 

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

2017-12-30 Thread Jan Steffens via arch-commits
Date: Sunday, December 31, 2017 @ 06:09:29
  Author: heftig
Revision: 277517

4.0.2-4: Move docs

Modified:
  openvdb/trunk/PKGBUILD(contents, properties)

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 04:37:14 UTC (rev 277516)
+++ PKGBUILD2017-12-31 06:09:29 UTC (rev 277517)
@@ -1,8 +1,9 @@
+# $Id$
 # Maintainer : Sven-Hendrik Haase 
 
 pkgname=openvdb
 pkgver=4.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
 url='https://github.com/dreamworksanimation/openvdb'
 arch=('x86_64')
@@ -21,6 +22,8 @@
   cd "${srcdir}/${pkgname}-${pkgver}"
 
   patch -Np1 < "${srcdir}/22d09714f9a6a29c62668b533495ed2afd4251ef.patch"
+
+  sed -i "s|DESTINATION docs|DESTINATION share/doc/$pkgname|" 
openvdb/CMakeLists.txt
 }
 
 build() {


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


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 04:37:14
  Author: felixonmars
Revision: 277516

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 277515, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 277515, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 04:36:47 UTC (rev 277515)
+++ PKGBUILD2017-12-31 04:37:14 UTC (rev 277516)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.3.3
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('6e59f269de81a4cb33d07e0fd8293ceb7872d1a39135bef9b72fa8e21d09c0c14a791beb52499a63b512416453b06136b87723f45dae00f08904d5484a49c7fe')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 277515, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 04:37:14 UTC (rev 277516)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.3.4
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('85f230b80408e5d9573f7d14b5d996a1817d93eca956a05721d99de9928189a3471ef03cb72ed996831edfeed2e4010a564c476e30729780df44743b42966abb')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2017-12-31 04:36:47 UTC (rev 277515)
+++ uglify-js.install   2017-12-31 04:37:14 UTC (rev 277516)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 277515, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-12-31 04:37:14 UTC (rev 277516)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 04:36:47
  Author: felixonmars
Revision: 277515

upgpkg: uglify-js 3.3.4-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 01:22:56 UTC (rev 277514)
+++ PKGBUILD2017-12-31 04:36:47 UTC (rev 277515)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.3.3
+pkgver=3.3.4
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('6e59f269de81a4cb33d07e0fd8293ceb7872d1a39135bef9b72fa8e21d09c0c14a791beb52499a63b512416453b06136b87723f45dae00f08904d5484a49c7fe')
+sha512sums=('85f230b80408e5d9573f7d14b5d996a1817d93eca956a05721d99de9928189a3471ef03cb72ed996831edfeed2e4010a564c476e30729780df44743b42966abb')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-12-30 Thread Christian Hesse via arch-commits
Date: Sunday, December 31, 2017 @ 01:22:56
  Author: eworm
Revision: 277514

this is [community]...

Added:
  freeradius/repos/community-testing-x86_64/
Deleted:
  freeradius/repos/community-testing-x86_64/
  freeradius/repos/testing-x86_64/


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

2017-12-30 Thread Christian Hesse via arch-commits
Date: Sunday, December 31, 2017 @ 01:20:38
  Author: eworm
Revision: 277512

upgpkg: freeradius 3.0.15-6

Package libwbclient is required for default configuration, so make it a
hard dependency.

Modified:
  freeradius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 00:53:33 UTC (rev 277511)
+++ PKGBUILD2017-12-31 01:20:38 UTC (rev 277512)
@@ -5,17 +5,17 @@
 
 pkgname=freeradius
 pkgver=3.0.15
-pkgrel=5
+pkgrel=6
 pkgdesc='The premier open source RADIUS server'
 arch=('x86_64')
 url="https://freeradius.org/;
 license=('GPL')
-depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc' 
'libpcap')
+depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc'
+ 'libpcap' 'libwbclient')
 makedepends=('unixodbc' 'python2' 'curl' 'json-c' 'samba')
 optdepends=('unixodbc: for ODBC'
 'python2: for Python'
 'json-c: rlm_rest module'
-'libwbclient: rlm_mschap module'
 'curl: for REST')
 options=('!makeflags')
 validpgpkeys=('BF2384EC6938B9744B03E2A620E37C25995B4F85') # FreeRADIUS - 
Package Signing [...] 


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

2017-12-30 Thread Christian Hesse via arch-commits
Date: Sunday, December 31, 2017 @ 01:20:48
  Author: eworm
Revision: 277513

archrelease: copy trunk to testing-x86_64

Added:
  freeradius/repos/testing-x86_64/
  freeradius/repos/testing-x86_64/PKGBUILD
(from rev 277512, freeradius/trunk/PKGBUILD)
  freeradius/repos/testing-x86_64/freeradius-sysusers.conf
(from rev 277512, freeradius/trunk/freeradius-sysusers.conf)
  freeradius/repos/testing-x86_64/freeradius-tmpfiles.conf
(from rev 277512, freeradius/trunk/freeradius-tmpfiles.conf)
  freeradius/repos/testing-x86_64/freeradius.service
(from rev 277512, freeradius/trunk/freeradius.service)

--+
 PKGBUILD |   59 +
 freeradius-sysusers.conf |1 
 freeradius-tmpfiles.conf |8 ++
 freeradius.service   |   19 ++
 4 files changed, 87 insertions(+)

Copied: freeradius/repos/testing-x86_64/PKGBUILD (from rev 277512, 
freeradius/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-31 01:20:48 UTC (rev 277513)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jason R Begley (jay...@digitalgoat.com>
+# Contributor: Daniel Micay 
+
+pkgname=freeradius
+pkgver=3.0.15
+pkgrel=6
+pkgdesc='The premier open source RADIUS server'
+arch=('x86_64')
+url="https://freeradius.org/;
+license=('GPL')
+depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc'
+ 'libpcap' 'libwbclient')
+makedepends=('unixodbc' 'python2' 'curl' 'json-c' 'samba')
+optdepends=('unixodbc: for ODBC'
+'python2: for Python'
+'json-c: rlm_rest module'
+'curl: for REST')
+options=('!makeflags')
+validpgpkeys=('BF2384EC6938B9744B03E2A620E37C25995B4F85') # FreeRADIUS - 
Package Signing [...] 
+source=("ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2"{,.sig}
+   'freeradius-sysusers.conf'
+   'freeradius-tmpfiles.conf'
+   'freeradius.service')
+sha256sums=('23267d8505e7b2909f5bdbf3938ca077c1fe122290dc969304d4f3b594f7e3ba'
+'SKIP'
+'573c05df429405d8647f5b52f68f7ad13bf7392314d30154df770ab170d793f8'
+'f536a9aa972e3e42a6b1a6d8ee17166eb721c7cba2e80f60473811497c7bd8bc'
+'c469e1a3f9edad769da01c324779babe783ee85a9b53ce4638d3d2d09c7c8d4b')
+
+build() {
+  cd "$srcdir"/freeradius-server-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libdir=/usr/lib/freeradius \
+--localstatedir=/var \
+--enable-heimdal-krb5 \
+--with-system-libltdl \
+--with-system-libtool \
+--with-udpfromto
+  make
+}
+
+package() {
+  cd "$srcdir"/freeradius-server-$pkgver
+
+  make install R="$pkgdir"
+  chmod o+r "$pkgdir"/etc/raddb/*
+  mv "$pkgdir"/etc/raddb "$pkgdir"/etc/raddb.default
+  rm -rf "$pkgdir"/var/run
+
+  install -D -m0644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+  install -D -m0644 "$srcdir"/$pkgname-sysusers.conf 
"$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
+  install -D -m0644 "$srcdir"/$pkgname-tmpfiles.conf 
"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+}

Copied: freeradius/repos/testing-x86_64/freeradius-sysusers.conf (from rev 
277512, freeradius/trunk/freeradius-sysusers.conf)
===
--- testing-x86_64/freeradius-sysusers.conf (rev 0)
+++ testing-x86_64/freeradius-sysusers.conf 2017-12-31 01:20:48 UTC (rev 
277513)
@@ -0,0 +1 @@
+u radiusd - "radius daemon" /var/lib/radiusd

Copied: freeradius/repos/testing-x86_64/freeradius-tmpfiles.conf (from rev 
277512, freeradius/trunk/freeradius-tmpfiles.conf)
===
--- testing-x86_64/freeradius-tmpfiles.conf (rev 0)
+++ testing-x86_64/freeradius-tmpfiles.conf 2017-12-31 01:20:48 UTC (rev 
277513)
@@ -0,0 +1,8 @@
+# configuration directory
+C /etc/raddb 0755 radiusd radiusd - /etc/raddb.default
+
+# log file
+f /var/log/radius/radius.log 0644 radiusd radiusd -
+
+# run directory
+d /run/radiusd 0755 radiusd radiusd -

Copied: freeradius/repos/testing-x86_64/freeradius.service (from rev 277512, 
freeradius/trunk/freeradius.service)
===
--- testing-x86_64/freeradius.service   (rev 0)
+++ testing-x86_64/freeradius.service   2017-12-31 01:20:48 UTC (rev 277513)
@@ -0,0 +1,19 @@
+[Unit]
+Description=FreeRADIUS high performance RADIUS server.
+After=syslog.target network.target
+Documentation=man:radiusd(8) man:radiusd.conf(5) 
https://wiki.freeradius.org/Home 
https://networkradius.com/freeradius-documentation/
+
+[Service]
+Type=forking

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

2017-12-30 Thread Christian Hesse via arch-commits
Date: Sunday, December 31, 2017 @ 00:53:33
  Author: eworm
Revision: 277511

enable rlm_mschap (winbind) module (FS#56907)

Modified:
  freeradius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:37:59 UTC (rev 277510)
+++ PKGBUILD2017-12-31 00:53:33 UTC (rev 277511)
@@ -11,11 +11,12 @@
 url="https://freeradius.org/;
 license=('GPL')
 depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc' 
'libpcap')
-makedepends=('unixodbc' 'python2' 'curl' 'json-c')
+makedepends=('unixodbc' 'python2' 'curl' 'json-c' 'samba')
 optdepends=('unixodbc: for ODBC'
-   'python2: for Python'
-   'json-c: rlm_rest module'
-   'curl: for REST')
+'python2: for Python'
+'json-c: rlm_rest module'
+'libwbclient: rlm_mschap module'
+'curl: for REST')
 options=('!makeflags')
 validpgpkeys=('BF2384EC6938B9744B03E2A620E37C25995B4F85') # FreeRADIUS - 
Package Signing [...] 
 
source=("ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2"{,.sig}


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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 23:54:06
  Author: alucryd
Revision: 313823

archrelease: copy trunk to testing-x86_64

Added:
  ffmpeg/repos/testing-x86_64/PKGBUILD
(from rev 313822, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/testing-x86_64/fs56089.patch
(from rev 313822, ffmpeg/trunk/fs56089.patch)
Deleted:
  ffmpeg/repos/testing-x86_64/PKGBUILD
  ffmpeg/repos/testing-x86_64/fs56089.patch

---+
 PKGBUILD  |  201 
 fs56089.patch |  168 +++---
 2 files changed, 185 insertions(+), 184 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 23:53:50 UTC (rev 313822)
+++ PKGBUILD2017-12-30 23:54:06 UTC (rev 313823)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=3.4.1
-pkgrel=2
-epoch=1
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=('x86_64')
-url='http://ffmpeg.org/'
-license=('GPL3')
-depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
- 'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
- 'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libvdpau' 'libwebp'
- 'libx11' 'libxcb' 'opencore-amr' 'openjpeg2' 'opus' 'sdl2' 'speex'
- 'v4l-utils' 'xz' 'zlib'
- 'libass.so' 'libbluray.so' 'libfreetype.so' 'libva-drm.so' 'libva.so'
- 'libva-x11.so' 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so'
- 'libvpx.so' 'libx264.so' 'libx265.so' 'libxvidcore.so')
-makedepends=('ladspa' 'libvdpau' 'yasm')
-optdepends=('ladspa: LADSPA filters')
-provides=('libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
-  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
-  'libswscale.so')
-source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc}
-'fs56089.patch')
-validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
-sha256sums=('5a77278a63741efa74e26bf197b9bb09ac6381b9757391b922407210f0f991c0'
-'SKIP'
-'0bfcd12d1992903f21c146ae56d9ad89b52818cfb2303197ee905347c25a5427')
-
-prepare() {
-  cd ffmpeg-${pkgver}
-
-  # https://bugs.archlinux.org/task/56089
-  # Backport of 
http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=a606f27f4c610708fa96e35eed7b7537d3d8f712
-  patch -Np1 -i ../fs56089.patch
-}
-
-build() {
-  cd ffmpeg-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-avisynth \
---enable-avresample \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-ladspa \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libiec61883 \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-libsoxr \
---enable-libspeex \
---enable-libssh \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvidstab \
---enable-libvorbis \
---enable-libvpx \
---enable-libwebp \
---enable-libx264 \
---enable-libx265 \
---enable-libxcb \
---enable-libxvid \
---enable-shared \
---enable-version3
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd ffmpeg-${pkgver}
-
-  make DESTDIR="${pkgdir}" install install-man
-  install -Dm 755 tools/qt-faststart "${pkgdir}"/usr/bin/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffmpeg/repos/testing-x86_64/PKGBUILD (from rev 313822, 
ffmpeg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-30 23:54:06 UTC (rev 313823)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=3.4.1
+pkgrel=3
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('x86_64')
+url='http://ffmpeg.org/'
+license=('GPL3')
+depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
+ 'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
+ 'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libvdpau' 'libwebp'
+ 'libx11' 'libxcb' 'libxml2' 'opencore-amr' 

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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 23:53:50
  Author: alucryd
Revision: 313822

FS#56886: ffmpeg 1:3.4.1-3

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:43:03 UTC (rev 313821)
+++ PKGBUILD2017-12-30 23:53:50 UTC (rev 313822)
@@ -7,7 +7,7 @@
 
 pkgname=ffmpeg
 pkgver=3.4.1
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=('x86_64')
@@ -16,8 +16,8 @@
 depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
  'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
  'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libvdpau' 'libwebp'
- 'libx11' 'libxcb' 'opencore-amr' 'openjpeg2' 'opus' 'sdl2' 'speex'
- 'v4l-utils' 'xz' 'zlib'
+ 'libx11' 'libxcb' 'libxml2' 'opencore-amr' 'openjpeg2' 'opus' 'sdl2'
+ 'speex' 'v4l-utils' 'xz' 'zlib'
  'libass.so' 'libbluray.so' 'libfreetype.so' 'libva-drm.so' 'libva.so'
  'libva-x11.so' 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so'
  'libvpx.so' 'libx264.so' 'libx265.so' 'libxvidcore.so')
@@ -81,6 +81,7 @@
 --enable-libx264 \
 --enable-libx265 \
 --enable-libxcb \
+--enable-libxml2 \
 --enable-libxvid \
 --enable-shared \
 --enable-version3


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:43:03
  Author: bpiotrowski
Revision: 313821

archrelease: copy trunk to staging-x86_64

Added:
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 313820, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/ekiga-4.0.1-libresolv.patch
(from rev 313820, ekiga/trunk/ekiga-4.0.1-libresolv.patch)

-+
 PKGBUILD|   43 ++
 ekiga-4.0.1-libresolv.patch |   13 
 2 files changed, 56 insertions(+)

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 313820, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 23:43:03 UTC (rev 313821)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=28
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf' 
'gnome-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'python')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ekiga-4.0.1-libresolv.patch)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b'
+'5b0e4a8fd7d575f620ff1cbaaf126fcb5d9a48da948b032526084911ed41b63f')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ekiga-4.0.1-libresolv.patch
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/ekiga-4.0.1-libresolv.patch (from rev 
313820, ekiga/trunk/ekiga-4.0.1-libresolv.patch)
===
--- staging-x86_64/ekiga-4.0.1-libresolv.patch  (rev 0)
+++ staging-x86_64/ekiga-4.0.1-libresolv.patch  2017-12-30 23:43:03 UTC (rev 
313821)
@@ -0,0 +1,13 @@
+diff -up ekiga-4.0.1/configure.ac.libresolv ekiga-4.0.1/configure.ac
+--- ekiga-4.0.1/configure.ac.libresolv 2017-02-23 02:30:42.051227852 -0600
 ekiga-4.0.1/configure.ac   2017-02-23 02:32:04.609519837 -0600
+@@ -324,7 +324,8 @@ if test "x$enable_ldap" = "xyes"; then
+ 
+   dnl Checking for libresolv
+   if test ${gm_platform} = "linux" ; then
+-  AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], 
AC_MSG_ERROR([You need the libresolv library to compile Ekiga]), -lresolv)
++  # AC_CHECK_LIB(resolv, res_gethostbyaddr, [LIBS="-lresolv $LIBS"], 
AC_MSG_ERROR([You need the libresolv library to compile Ekiga]), -lresolv)
++  AC_WARNING([Just adding libresolv to LDAP_LIBS, without checking 
anything])
+   LDAP_LIBS="${LDAP_LIBS} -lresolv"
+   fi
+   found_ldap="yes"


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:42:34
  Author: bpiotrowski
Revision: 313820

4.0.1-28: rebuild against boost 1.66

Modified:
  ekiga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:25:26 UTC (rev 313819)
+++ PKGBUILD2017-12-30 23:42:34 UTC (rev 313820)
@@ -4,13 +4,13 @@
 
 pkgname=ekiga
 pkgver=4.0.1
-pkgrel=27
+pkgrel=28
 pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
 url="http://www.ekiga.org;
 license=(GPL)
 arch=(x86_64)
 depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf' 
'gnome-icon-theme')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'python')
 optdepends=('evolution-data-server: Evolution integration')
 options=(!emptydirs)
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:37:48
  Author: bpiotrowski
Revision: 277509

2.18-2: rebuild against boost 1.66

Modified:
  btfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:34:15 UTC (rev 277508)
+++ PKGBUILD2017-12-30 23:37:48 UTC (rev 277509)
@@ -3,7 +3,7 @@
 
 pkgname=btfs
 pkgver=2.18
-pkgrel=1
+pkgrel=2
 pkgdesc="A bittorrent filesystem based on FUSE"
 arch=('x86_64')
 url="https://github.com/johang/btfs;
@@ -12,7 +12,7 @@
 makedepends=('boost')
 optdepends=('python2: for btplay')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/johang/btfs/archive/v$pkgver.tar.gz;)
-sha512sums=('19768f1dffb036012ac992acf8690b0875815f1abc91c82150b423096b2f796dbe0fa84ecafe991639b3bb96daa9b332dcac2330866a8d84a1f127f4188fc269')
+sha512sums=('d29f3816527c1eed105b45da559d025d61c8652144358227ed0ca3e516582cd8186fdcdf730b19fde6e7e9db1477690237444d2efe7c740f81f91032f1a12f86')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:37:59
  Author: bpiotrowski
Revision: 277510

archrelease: copy trunk to community-staging-x86_64

Added:
  btfs/repos/community-staging-x86_64/
  btfs/repos/community-staging-x86_64/PKGBUILD
(from rev 277509, btfs/trunk/PKGBUILD)

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

Copied: btfs/repos/community-staging-x86_64/PKGBUILD (from rev 277509, 
btfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 23:37:59 UTC (rev 277510)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=btfs
+pkgver=2.18
+pkgrel=2
+pkgdesc="A bittorrent filesystem based on FUSE"
+arch=('x86_64')
+url="https://github.com/johang/btfs;
+license=('GPL')
+depends=('fuse2' 'libtorrent-rasterbar' 'curl')
+makedepends=('boost')
+optdepends=('python2: for btplay')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/johang/btfs/archive/v$pkgver.tar.gz;)
+sha512sums=('d29f3816527c1eed105b45da559d025d61c8652144358227ed0ca3e516582cd8186fdcdf730b19fde6e7e9db1477690237444d2efe7c740f81f91032f1a12f86')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
+  autoreconf -i
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:34:15
  Author: bpiotrowski
Revision: 277508

archrelease: copy trunk to community-staging-x86_64

Added:
  qbittorrent/repos/community-staging-x86_64/
  qbittorrent/repos/community-staging-x86_64/PKGBUILD
(from rev 277507, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-staging-x86_64/qbittorrent@.service
(from rev 277507, qbittorrent/trunk/qbittorrent@.service)

--+
 PKGBUILD |   57 +
 qbittorrent@.service |   12 ++
 2 files changed, 69 insertions(+)

Copied: qbittorrent/repos/community-staging-x86_64/PKGBUILD (from rev 277507, 
qbittorrent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 23:34:15 UTC (rev 277508)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=4.0.3
+pkgrel=2
+arch=(x86_64)
+url="https://www.qbittorrent.org;
+license=(custom GPL)
+makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
+source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('9a03b84e6d2ac81a0add84a7946033ff9ea854de49252069e478b9f6efce6bd2'
+'SKIP')
+validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir $pkgbase
+  pushd $pkgbase
+  ../configure --prefix=/usr
+  make
+
+  # Build nox variant
+  popd
+  mkdir "$pkgbase-nox"
+  pushd "$pkgbase-nox"
+  ../configure --prefix=/usr --disable-gui --enable-systemd
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends=(libtorrent-rasterbar qt5-svg hicolor-icon-theme)
+  optdepends=('python: needed for torrent search tab')
+
+  cd $pkgbase-$pkgver/$pkgbase
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_qbittorrent-nox() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
+  depends=(libtorrent-rasterbar qt5-base)
+
+  cd $pkgbase-$pkgver/$pkgbase-nox
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-staging-x86_64/qbittorrent@.service (from 
rev 277507, qbittorrent/trunk/qbittorrent@.service)
===
--- community-staging-x86_64/qbittorrent@.service   
(rev 0)
+++ community-staging-x86_64/qbittorrent@.service   2017-12-30 23:34:15 UTC 
(rev 277508)
@@ -0,0 +1,12 @@
+[Unit]
+Description=qbittorrent-nox Daemon
+Documentation=https://github.com/qbittorrent/qBittorrent/wiki
+After=network.target
+
+[Service]
+User=%i
+Type=forking
+ExecStart=/usr/bin/qbittorrent-nox --daemon --webui-port=8080
+
+[Install]
+WantedBy=multi-user.target


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:33:38
  Author: bpiotrowski
Revision: 277507

4.0.3-2: rebuild against boost 1.66

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:08:56 UTC (rev 277506)
+++ PKGBUILD2017-12-30 23:33:38 UTC (rev 277507)
@@ -10,7 +10,7 @@
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
 pkgver=4.0.3
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url="https://www.qbittorrent.org;
 license=(custom GPL)


[arch-commits] Commit in licq/repos/staging-x86_64 (4 files)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:25:26
  Author: bpiotrowski
Revision: 313819

archrelease: copy trunk to staging-x86_64

Added:
  licq/repos/staging-x86_64/PKGBUILD
(from rev 313818, licq/trunk/PKGBUILD)
  licq/repos/staging-x86_64/licq-gcc6.patch
(from rev 313818, licq/trunk/licq-gcc6.patch)
Deleted:
  licq/repos/staging-x86_64/PKGBUILD
  licq/repos/staging-x86_64/licq-gcc6.patch

-+
 PKGBUILD|  106 +++---
 licq-gcc6.patch |   48 
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 23:19:37 UTC (rev 313818)
+++ PKGBUILD2017-12-30 23:25:26 UTC (rev 313819)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-
-pkgname=licq
-pkgver=1.8.2
-pkgrel=19
-pkgdesc="Advanced graphical ICQ clone and more for Unix"
-arch=('x86_64')
-url="http://www.licq.org;
-license=('GPL')
-depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0')
-makedepends=('cmake' 'boost' 'optipng')
-source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2
 licq-gcc6.patch)
-md5sums=('46af2bc95865ee61a103d27812fe6e6a'
- '8af303d8d31573246470f0ba0ccba428')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  mkdir build
-
-  # Fix invalid PNG images to work with libpng 1.6
-  # https://github.com/licq-im/licq/pull/32
-  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
-
-  # Fix build with GCC 6
-  patch -p1 -i ../licq-gcc6.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd
-  
-  local plugins="" _plugin
-  for _plugin in ${licq_plugins}; do
-plugins+=" ${_plugin}\/CMakeLists.txt"
-  done
-  sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" 
plugins/CMakeLists.txt
-
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON 
-DBUILD_TESTS=OFF \
--DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
--DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
--DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
-..
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-}

Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 313818, 
licq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-30 23:25:26 UTC (rev 313819)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=19
+pkgdesc="Advanced graphical ICQ clone and more for Unix"
+arch=('x86_64')
+url="http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2
 licq-gcc6.patch)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a'
+ '8af303d8d31573246470f0ba0ccba428')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # https://github.com/licq-im/licq/pull/32
+  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
+
+  # Fix build with GCC 6
+  patch -p1 -i ../licq-gcc6.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd
+  
+  local plugins="" _plugin
+  for _plugin in ${licq_plugins}; do
+plugins+=" ${_plugin}\/CMakeLists.txt"
+  done
+  sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" 
plugins/CMakeLists.txt
+
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON 
-DBUILD_TESTS=OFF \
+-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
+..
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: licq-gcc6.patch
===
--- licq-gcc6.patch 2017-12-30 23:19:37 UTC (rev 313818)
+++ licq-gcc6.patch 2017-12-30 23:25:26 UTC (rev 313819)
@@ -1,24 +0,0 @@
 licq-1.8.2/src/licq.cpp.orig   2016-05-12 15:27:35.927500283 +
-+++ licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 +
-@@ -568,18 +568,18 @@
- if (!licqConf.get(szKey, pluginName))
-   continue;
- 
--bool loaded = LoadPlugin(pluginName, argc, argv);
-+bool loaded= (bool)LoadPlugin(pluginName, argc, argv);
- 
- // Make upgrade from 1.3.x and older easier by automatically 
switching from kde/qt-gui to kde4/qt4-gui
- if 

[arch-commits] Commit in libtorrent-rasterbar/repos (4 files)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:19:37
  Author: bpiotrowski
Revision: 313818

archrelease: copy trunk to staging-x86_64

Added:
  libtorrent-rasterbar/repos/staging-x86_64/
  libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD
(from rev 313817, libtorrent-rasterbar/trunk/PKGBUILD)
  libtorrent-rasterbar/repos/staging-x86_64/boost-1.66-2.patch
(from rev 313817, libtorrent-rasterbar/trunk/boost-1.66-2.patch)
  libtorrent-rasterbar/repos/staging-x86_64/boost-1.66.patch
(from rev 313817, libtorrent-rasterbar/trunk/boost-1.66.patch)

+
 PKGBUILD   |   71 
 boost-1.66-2.patch |   22 +++
 boost-1.66.patch   |  301 +++
 3 files changed, 394 insertions(+)

Copied: libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD (from rev 313817, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 23:19:37 UTC (rev 313818)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.1.5
+pkgrel=2
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="http://www.rasterbar.com/products/libtorrent/;
+arch=('x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz
+boost-1.66.patch
+boost-1.66-2.patch)
+sha512sums=('edaff6347bf922af8b6d74e332e180fe122f64152a152fb905f4f2c3371dc29d668fc2b0ffcda3f56b50a1a51b25d1a3ae4284ed6e09f6a2eb7b34bcce8dd9c7'
+
'e26464b2921f5e197252c3452ba6271a22e64ebc486d00c26870c8ad0751a5de13cb01dd1ab1f04ec9358e7c58831599360f3d4205bf709ebbf686372d37f9de'
+
'69231b14900a303a9e89803f19700eadfdae997f8cac8d562e6076f3c7e5eddeb2123017acc3b21caf1c1a102c369a7fe53d1f1876c3ad9d6efd2f2032fa2267')
+
+prepare() {
+  mkdir py2 py3
+  cd libtorrent-libtorrent-${_pkgver}
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  # Fix build with boost 1.66
+  patch -p1 -i "$srcdir"/boost-1.66.patch
+  patch -p1 -i "$srcdir"/boost-1.66-2.patch
+
+  ./autotool.sh
+}
+
+_build() (
+  cd py$1
+
+  # FS#50745
+  _boost="boost_python"
+  if [ $1 -eq 3 ]; then _boost="boost_python3"; fi
+
+  # 
https://github.com/qbittorrent/qBittorrent/issues/5265#issuecomment-220007436
+  CXXFLAGS="$CXXFLAGS -std=c++11" \
+  PYTHON=/usr/bin/python$1 \
+  ../libtorrent-libtorrent-${_pkgver}/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv \
+--with-boost-python=$_boost
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 libtorrent-libtorrent-${_pkgver}/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}

Copied: libtorrent-rasterbar/repos/staging-x86_64/boost-1.66-2.patch (from rev 
313817, libtorrent-rasterbar/trunk/boost-1.66-2.patch)
===
--- staging-x86_64/boost-1.66-2.patch   (rev 0)
+++ staging-x86_64/boost-1.66-2.patch   2017-12-30 23:19:37 UTC (rev 313818)
@@ -0,0 +1,22 @@
+From: arvidn 
+Date: Tue, 28 Nov 2017 23:57:38 +0100
+Subject: [PATCH] update io_service forward declaration to be boost-1.66
+ compatible
+
+diff --git a/include/libtorrent/io_service_fwd.hpp 
b/include/libtorrent/io_service_fwd.hpp
+index c14997d82e..398c91216f 100644
+--- a/include/libtorrent/io_service_fwd.hpp
 b/include/libtorrent/io_service_fwd.hpp
+@@ -54,7 +54,12 @@ namespace sim { namespace asio {
+ #endif
+ 
+ namespace boost { namespace asio {
++#if BOOST_VERSION < 106600
+   class io_service;
++#else
++  class io_context;
++  typedef io_context io_service;
++#endif
+ }}
+ 
+ namespace libtorrent

Copied: libtorrent-rasterbar/repos/staging-x86_64/boost-1.66.patch (from rev 
313817, libtorrent-rasterbar/trunk/boost-1.66.patch)
===
--- staging-x86_64/boost-1.66.patch (rev 0)
+++ staging-x86_64/boost-1.66.patch 2017-12-30 23:19:37 UTC (rev 313818)
@@ -0,0 +1,301 @@
+From: arvidn 
+Date: Thu, 14 Dec 2017 01:37:27 +0100
+Subject: [PATCH] fix build against boost-1.66, specifically the boost.asio
+ changes
+
+diff --git a/include/libtorrent/proxy_base.hpp 

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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:18:53
  Author: bpiotrowski
Revision: 313816

archrelease: copy trunk to staging-x86_64

Added:
  licq/repos/staging-x86_64/
  licq/repos/staging-x86_64/PKGBUILD
(from rev 313815, licq/trunk/PKGBUILD)
  licq/repos/staging-x86_64/licq-gcc6.patch
(from rev 313815, licq/trunk/licq-gcc6.patch)

-+
 PKGBUILD|   53 +
 licq-gcc6.patch |   24 
 2 files changed, 77 insertions(+)

Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 313815, 
licq/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 23:18:53 UTC (rev 313816)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=19
+pkgdesc="Advanced graphical ICQ clone and more for Unix"
+arch=('x86_64')
+url="http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2
 licq-gcc6.patch)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a'
+ '8af303d8d31573246470f0ba0ccba428')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # https://github.com/licq-im/licq/pull/32
+  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
+
+  # Fix build with GCC 6
+  patch -p1 -i ../licq-gcc6.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd
+  
+  local plugins="" _plugin
+  for _plugin in ${licq_plugins}; do
+plugins+=" ${_plugin}\/CMakeLists.txt"
+  done
+  sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" 
plugins/CMakeLists.txt
+
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON 
-DBUILD_TESTS=OFF \
+-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
+..
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}

Copied: licq/repos/staging-x86_64/licq-gcc6.patch (from rev 313815, 
licq/trunk/licq-gcc6.patch)
===
--- staging-x86_64/licq-gcc6.patch  (rev 0)
+++ staging-x86_64/licq-gcc6.patch  2017-12-30 23:18:53 UTC (rev 313816)
@@ -0,0 +1,24 @@
+--- licq-1.8.2/src/licq.cpp.orig   2016-05-12 15:27:35.927500283 +
 licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 +
+@@ -568,18 +568,18 @@
+ if (!licqConf.get(szKey, pluginName))
+   continue;
+ 
+-bool loaded = LoadPlugin(pluginName, argc, argv);
++bool loaded= (bool)LoadPlugin(pluginName, argc, argv);
+ 
+ // Make upgrade from 1.3.x and older easier by automatically 
switching from kde/qt-gui to kde4/qt4-gui
+ if (!loaded && pluginName == "kde-gui")
+ {
+   gLog.warning(tr("Plugin kde-gui is no longer available, trying to 
load kde4-gui instead."));
+-  loaded = LoadPlugin("kde4-gui", argc, argv);
++  loaded= (bool)LoadPlugin("kde4-gui", argc, argv);
+ }
+ if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui"))
+ {
+   gLog.warning(tr("Plugin %s is no longer available, trying to load 
qt4-gui instead."), pluginName.c_str());
+-  loaded = LoadPlugin("qt4-gui", argc, argv);
++  loaded= (bool)LoadPlugin("qt4-gui", argc, argv);
+ }
+ 
+ if (!loaded)


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:19:27
  Author: bpiotrowski
Revision: 313817

1:1.1.5-2: rebuild against boost 1.66

Added:
  libtorrent-rasterbar/trunk/boost-1.66-2.patch
  libtorrent-rasterbar/trunk/boost-1.66.patch
Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

+
 PKGBUILD   |   14 +-
 boost-1.66-2.patch |   22 +++
 boost-1.66.patch   |  301 +++
 3 files changed, 334 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:18:53 UTC (rev 313816)
+++ PKGBUILD2017-12-30 23:19:27 UTC (rev 313817)
@@ -5,7 +5,7 @@
 
 pkgname=libtorrent-rasterbar
 pkgver=1.1.5
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
 url="http://www.rasterbar.com/products/libtorrent/;
@@ -15,8 +15,12 @@
 makedepends=('boost' 'python2' 'python')
 options=('!emptydirs')
 _pkgver=${pkgver//./_}
-source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz)
-sha512sums=('edaff6347bf922af8b6d74e332e180fe122f64152a152fb905f4f2c3371dc29d668fc2b0ffcda3f56b50a1a51b25d1a3ae4284ed6e09f6a2eb7b34bcce8dd9c7')
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz
+boost-1.66.patch
+boost-1.66-2.patch)
+sha512sums=('edaff6347bf922af8b6d74e332e180fe122f64152a152fb905f4f2c3371dc29d668fc2b0ffcda3f56b50a1a51b25d1a3ae4284ed6e09f6a2eb7b34bcce8dd9c7'
+
'e26464b2921f5e197252c3452ba6271a22e64ebc486d00c26870c8ad0751a5de13cb01dd1ab1f04ec9358e7c58831599360f3d4205bf709ebbf686372d37f9de'
+
'69231b14900a303a9e89803f19700eadfdae997f8cac8d562e6076f3c7e5eddeb2123017acc3b21caf1c1a102c369a7fe53d1f1876c3ad9d6efd2f2032fa2267')
 
 prepare() {
   mkdir py2 py3
@@ -25,6 +29,10 @@
   # Avoid depending on newer processors
   sed -i 's/-msse4.2//' configure.ac
 
+  # Fix build with boost 1.66
+  patch -p1 -i "$srcdir"/boost-1.66.patch
+  patch -p1 -i "$srcdir"/boost-1.66-2.patch
+
   ./autotool.sh
 }
 

Added: boost-1.66-2.patch
===
--- boost-1.66-2.patch  (rev 0)
+++ boost-1.66-2.patch  2017-12-30 23:19:27 UTC (rev 313817)
@@ -0,0 +1,22 @@
+From: arvidn 
+Date: Tue, 28 Nov 2017 23:57:38 +0100
+Subject: [PATCH] update io_service forward declaration to be boost-1.66
+ compatible
+
+diff --git a/include/libtorrent/io_service_fwd.hpp 
b/include/libtorrent/io_service_fwd.hpp
+index c14997d82e..398c91216f 100644
+--- a/include/libtorrent/io_service_fwd.hpp
 b/include/libtorrent/io_service_fwd.hpp
+@@ -54,7 +54,12 @@ namespace sim { namespace asio {
+ #endif
+ 
+ namespace boost { namespace asio {
++#if BOOST_VERSION < 106600
+   class io_service;
++#else
++  class io_context;
++  typedef io_context io_service;
++#endif
+ }}
+ 
+ namespace libtorrent

Added: boost-1.66.patch
===
--- boost-1.66.patch(rev 0)
+++ boost-1.66.patch2017-12-30 23:19:27 UTC (rev 313817)
@@ -0,0 +1,301 @@
+From: arvidn 
+Date: Thu, 14 Dec 2017 01:37:27 +0100
+Subject: [PATCH] fix build against boost-1.66, specifically the boost.asio
+ changes
+
+diff --git a/include/libtorrent/proxy_base.hpp 
b/include/libtorrent/proxy_base.hpp
+index 00246af76e..7e8ab32930 100644
+--- a/include/libtorrent/proxy_base.hpp
 b/include/libtorrent/proxy_base.hpp
+@@ -66,6 +66,11 @@ class proxy_base : boost::noncopyable
+   m_port = port;
+   }
+ 
++#if BOOST_VERSION >= 106600
++  typedef tcp::socket::executor_type executor_type;
++  executor_type get_executor() { return m_sock.get_executor(); }
++#endif
++
+   template 
+   void async_read_some(Mutable_Buffers const& buffers, Handler const& 
handler)
+   {
+@@ -122,6 +127,18 @@ class proxy_base : boost::noncopyable
+   m_sock.async_write_some(buffers, handler);
+   }
+ 
++#ifndef BOOST_NO_EXCEPTIONS
++  void non_blocking(bool b)
++  {
++  m_sock.non_blocking(b);
++  }
++#endif
++
++  error_code non_blocking(bool b, error_code& ec)
++  {
++  return m_sock.non_blocking(b, ec);
++  }
++
+ #ifndef BOOST_NO_EXCEPTIONS
+   template 
+   void set_option(SettableSocketOption const& opt)
+diff --git a/include/libtorrent/socket_type.hpp 
b/include/libtorrent/socket_type.hpp
+index 0b58159715..884a86e684 100644
+--- a/include/libtorrent/socket_type.hpp
 b/include/libtorrent/socket_type.hpp
+@@ -267,6 +267,14 @@ namespace libtorrent
+   error_code set_option(SettableSocketOption const& opt, 
error_code& ec)
+   { TORRENT_SOCKTYPE_FORWARD_RET(set_option(opt, ec), ec) }
+ 
++  void non_blocking(bool b, 

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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:18:27
  Author: bpiotrowski
Revision: 313815

1.8.2-19: rebuild against boost 1.66

Modified:
  licq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:18:16 UTC (rev 313814)
+++ PKGBUILD2017-12-30 23:18:27 UTC (rev 313815)
@@ -3,7 +3,7 @@
 
 pkgname=licq
 pkgver=1.8.2
-pkgrel=18
+pkgrel=19
 pkgdesc="Advanced graphical ICQ clone and more for Unix"
 arch=('x86_64')
 url="http://www.licq.org;


[arch-commits] Commit in libpst/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:18:16
  Author: bpiotrowski
Revision: 313814

archrelease: copy trunk to staging-x86_64

Added:
  libpst/repos/staging-x86_64/
  libpst/repos/staging-x86_64/PKGBUILD
(from rev 313813, libpst/trunk/PKGBUILD)

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

Copied: libpst/repos/staging-x86_64/PKGBUILD (from rev 313813, 
libpst/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 23:18:16 UTC (rev 313814)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.71
+pkgrel=2
+arch=('x86_64')
+url="http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost' 'libgsf')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha256sums=('fb9208d21a39f103011fe09ee8d1a37596f679df5495a8c58071c4c7b39e168c')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_libpst() {
+  pkgdesc="Outlook .pst file converter"
+  depends=('gcc-libs' 'libgsf')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libpst-docs() {
+  pkgdesc="Documentation for Outlook .pst file converter"
+  options=('docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install-htmlDATA
+  cd html
+  make DESTDIR="${pkgdir}" install-htmldevelDATA
+}


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:17:46
  Author: bpiotrowski
Revision: 313813

0.6.71-2: rebuild against boost 1.66

Modified:
  libpst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:09:45 UTC (rev 313812)
+++ PKGBUILD2017-12-30 23:17:46 UTC (rev 313813)
@@ -4,7 +4,7 @@
 pkgbase=libpst
 pkgname=('libpst' 'libpst-docs')
 pkgver=0.6.71
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="http://www.five-ten-sg.com/libpst/;
 license=('GPL')


[arch-commits] Commit in schroot/repos (9 files)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:06:47
  Author: bpiotrowski
Revision: 277502

archrelease: copy trunk to community-staging-x86_64

Added:
  schroot/repos/community-staging-x86_64/
  schroot/repos/community-staging-x86_64/PKGBUILD
(from rev 277501, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-x86_64/arch32-config
(from rev 277501, schroot/trunk/arch32-config)
  schroot/repos/community-staging-x86_64/arch32-copyfiles
(from rev 277501, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-x86_64/arch32-example
(from rev 277501, schroot/trunk/arch32-example)
  schroot/repos/community-staging-x86_64/arch32-mount
(from rev 277501, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-x86_64/arch32-nssdatabases
(from rev 277501, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-x86_64/pam.d.schroot.patch
(from rev 277501, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-staging-x86_64/schroot-cppunit.patch
(from rev 277501, schroot/trunk/schroot-cppunit.patch)

---+
 PKGBUILD  |   85 
 arch32-config |   11 ++
 arch32-copyfiles  |6 +++
 arch32-example|   10 +
 arch32-mount  |   12 ++
 arch32-nssdatabases   |6 +++
 pam.d.schroot.patch   |   15 
 schroot-cppunit.patch |   11 ++
 8 files changed, 156 insertions(+)

Copied: schroot/repos/community-staging-x86_64/PKGBUILD (from rev 277501, 
schroot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 23:06:47 UTC (rev 277502)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=schroot
+pkgver=1.6.10
+pkgrel=18
+pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
+url="http://packages.qa.debian.org/s/schroot.html;
+license=('GPL3')
+depends=('pam' 'lockdev' 'boost-libs' 'e2fsprogs')
+makedepends=('boost' 'cppunit')
+optdepends=('btrfs-progs-unstable' 'lvm2')
+arch=('x86_64')
+conflicts=('dchroot')
+replaces=('dchroot')
+provides=('schroot' 'sbuild' 'dchroot')
+backup=('etc/schroot/schroot.conf'
+   'etc/schroot/arch32/config'
+   'etc/schroot/arch32/copyfiles'
+   'etc/schroot/arch32/mount'
+   'etc/schroot/arch32/nssdatabases')
+source=("http://http.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
+   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-3+deb9u1.debian.tar.xz;
+   'arch32-example'
+   'arch32-config'
+   'arch32-copyfiles'
+   'arch32-mount'
+   'arch32-nssdatabases'
+   'pam.d.schroot.patch'
+   'schroot-cppunit.patch')
+md5sums=('f8ec667831487f4b12e094bc0dc9bbe3'
+ '467f67cfc9596ddf301bd26968935d29'
+ '54239847f89b9a4772910415bde6276a'
+ '5a3f7b839c7e0b8933748da7c5b6385b'
+ 'ddb2f09c02b24dab777110f9808472e1'
+ 'f0d5d5b5e34a860f6f90b5628c680f46'
+ 'af1da6edd8c8c0dafeeb2c2c4e0c840b'
+ 'a8d77cac806a0a9adef3f93cdbeb280a'
+ '4c744c38b1541359de5696c65a508e5e')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+   cat "$srcdir"/debian/patches/series | while read p; do
+   patch -p1 -i "$srcdir"/debian/patches/$p
+   done
+# fix configure with cppunit 1.4
+   patch -p1 -i ../schroot-cppunit.patch
+   ./bootstrap
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-dchroot \
+   --enable-lvm-snapshot \
+   --enable-btrfs-snapshot \
+   
--with-bash-completion-dir=/usr/share/bash-completion/completions/ \
+   BTRFS=/sbin/btrfs \
+   BTRFSCTL=/sbin/btrfsctl \
+   LVCREATE=/sbin/lvcreate \
+   LVREMOVE=/sbin/lvremove
+   # --enable-csbuild
+   make
+}
+
+check() {
+   cd ${pkgname}-${pkgver}
+#  make -k check
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="$pkgdir" install
+   install -dm 755 "$pkgdir"/etc/schroot/arch32
+   install -m 644 "$srcdir"/arch32-{config,mount,copyfiles,nssdatabases} 
"$pkgdir"/etc/schroot/arch32
+   rename 'arch32-' '' "$pkgdir"/etc/schroot/arch32/*
+   install -m 644 "$srcdir"/arch32-example 
"$pkgdir"/etc/schroot/chroot.d/arch32.conf.example
+   patch -i "$srcdir"/pam.d.schroot.patch "$pkgdir"/etc/pam.d/schroot
+}

Copied: schroot/repos/community-staging-x86_64/arch32-config (from rev 277501, 
schroot/trunk/arch32-config)

[arch-commits] Commit in schroot/trunk (PKGBUILD fix-bash-completion.patch)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:06:33
  Author: bpiotrowski
Revision: 277501

1.6.10-18: rebuild against boost 1.66

Modified:
  schroot/trunk/PKGBUILD
Deleted:
  schroot/trunk/fix-bash-completion.patch

---+
 PKGBUILD  |   15 ++-
 fix-bash-completion.patch |   11 ---
 2 files changed, 6 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:05:55 UTC (rev 277500)
+++ PKGBUILD2017-12-30 23:06:33 UTC (rev 277501)
@@ -4,7 +4,7 @@
 
 pkgname=schroot
 pkgver=1.6.10
-pkgrel=17
+pkgrel=18
 pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
 url="http://packages.qa.debian.org/s/schroot.html;
 license=('GPL3')
@@ -20,8 +20,8 @@
'etc/schroot/arch32/copyfiles'
'etc/schroot/arch32/mount'
'etc/schroot/arch32/nssdatabases')
-source=("http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
-   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-3.debian.tar.xz;
+source=("http://http.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
+   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-3+deb9u1.debian.tar.xz;
'arch32-example'
'arch32-config'
'arch32-copyfiles'
@@ -28,10 +28,9 @@
'arch32-mount'
'arch32-nssdatabases'
'pam.d.schroot.patch'
-   'schroot-cppunit.patch'
-   'fix-bash-completion.patch')
+   'schroot-cppunit.patch')
 md5sums=('f8ec667831487f4b12e094bc0dc9bbe3'
- '6ac9df83936f350ffe178fbe042829a1'
+ '467f67cfc9596ddf301bd26968935d29'
  '54239847f89b9a4772910415bde6276a'
  '5a3f7b839c7e0b8933748da7c5b6385b'
  'ddb2f09c02b24dab777110f9808472e1'
@@ -38,12 +37,10 @@
  'f0d5d5b5e34a860f6f90b5628c680f46'
  'af1da6edd8c8c0dafeeb2c2c4e0c840b'
  'a8d77cac806a0a9adef3f93cdbeb280a'
- '4c744c38b1541359de5696c65a508e5e'
- '5ba775d4f401e2c167414caa548b71e5')
+ '4c744c38b1541359de5696c65a508e5e')
 
 prepare() {
cd ${pkgname}-${pkgver}
-   patch -p1 -i "$srcdir"/fix-bash-completion.patch
cat "$srcdir"/debian/patches/series | while read p; do
patch -p1 -i "$srcdir"/debian/patches/$p
done

Deleted: fix-bash-completion.patch
===
--- fix-bash-completion.patch   2017-12-30 23:05:55 UTC (rev 277500)
+++ fix-bash-completion.patch   2017-12-30 23:06:33 UTC (rev 277501)
@@ -1,11 +0,0 @@
 a/etc/bash_completion/schroot
-+++ b/etc/bash_completion/schroot
-@@ -15,7 +15,7 @@
- # along with this program.  If not, see
- # .
- 
--have schroot &&
-+_have schroot &&
- _schroot()
- {
- local cur prev options


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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:05:55
  Author: bpiotrowski
Revision: 277500

archrelease: copy trunk to community-staging-x86_64

Added:
  heaptrack/repos/community-staging-x86_64/
  heaptrack/repos/community-staging-x86_64/PKGBUILD
(from rev 277499, heaptrack/trunk/PKGBUILD)
  heaptrack/repos/community-staging-x86_64/heaptrack-glibc-2.26.patch
(from rev 277499, heaptrack/trunk/heaptrack-glibc-2.26.patch)

+
 PKGBUILD   |   38 ++
 heaptrack-glibc-2.26.patch |  114 +++
 2 files changed, 152 insertions(+)

Copied: heaptrack/repos/community-staging-x86_64/PKGBUILD (from rev 277499, 
heaptrack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 23:05:55 UTC (rev 277500)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=heaptrack
+pkgver=1.0.0
+pkgrel=3
+arch=(x86_64)
+pkgdesc="A heap memory profiler for Linux"
+url="http://milianw.de/tag/heaptrack;
+license=(GPL)
+depends=(kdiagram threadweaver kitemmodels kio boost-libs)
+makedepends=(extra-cmake-modules boost python sparsehash)
+source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
+heaptrack-glibc-2.26.patch)
+sha256sums=('01d87ea1b424a67f943483ff141c0a32a46c5b6109834e2e832ebef898a4474f'
+'SKIP'
+'39a04e0bacb99ecd91d1d8225b944cc9c852853813520b7538b10bcd5ec6d591')
+validpgpkeys=(3D8568869097C65C98F8D2760C0EB212CD1D1393) # Milian Wolff 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../heaptrack-glibc-2.26.patch # fix build with glibc 2.26
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DBUILD_TESTING=OFF
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: heaptrack/repos/community-staging-x86_64/heaptrack-glibc-2.26.patch 
(from rev 277499, heaptrack/trunk/heaptrack-glibc-2.26.patch)
===
--- community-staging-x86_64/heaptrack-glibc-2.26.patch 
(rev 0)
+++ community-staging-x86_64/heaptrack-glibc-2.26.patch 2017-12-30 23:05:55 UTC 
(rev 277500)
@@ -0,0 +1,114 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8cc25bd..5df5f4d 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -73,6 +73,11 @@ if (NOT HAVE_LINUX_HEADERS)
+ message(FATAL_ERROR "You are missing some Linux headers required to 
compile heaptrack.")
+ endif()
+ 
++# cfree() does not exist in glibc 2.26+.
++# See: https://bugs.kde.org/show_bug.cgi?id=383889
++include(CheckSymbolExists)
++check_symbol_exists(cfree malloc.h HAVE_CFREE)
++
+ set(BIN_INSTALL_DIR "bin")
+ set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)")
+ set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}")
+diff --git a/src/track/heaptrack_inject.cpp b/src/track/heaptrack_inject.cpp
+index 0bf75f8..2956613 100644
+--- a/src/track/heaptrack_inject.cpp
 b/src/track/heaptrack_inject.cpp
+@@ -18,6 +18,7 @@
+  */
+ 
+ #include "libheaptrack.h"
++#include "util/config.h"
+ 
+ #include 
+ #include 
+@@ -43,12 +44,6 @@
+ #error unsupported word size
+ #endif
+ 
+-#if defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || defined(__USE_MISC)
+-#define HAVE_CFREE 1
+-#else
+-#define HAVE_CFREE 0
+-#endif
+-
+ namespace {
+ 
+ namespace Elf {
+diff --git a/src/track/heaptrack_preload.cpp b/src/track/heaptrack_preload.cpp
+index b106bcd..343b193 100644
+--- a/src/track/heaptrack_preload.cpp
 b/src/track/heaptrack_preload.cpp
+@@ -18,6 +18,7 @@
+  */
+ 
+ #include "libheaptrack.h"
++#include "util/config.h"
+ 
+ #include 
+ #include 
+@@ -30,7 +31,6 @@
+ using namespace std;
+ 
+ #define HAVE_ALIGNED_ALLOC defined(_ISOC11_SOURCE)
+-#define HAVE_CFREE (defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || 
defined(__USE_MISC))
+ 
+ namespace {
+ 
+diff --git a/src/util/config.h.cmake b/src/util/config.h.cmake
+index d24034a..8239ae3 100644
+--- a/src/util/config.h.cmake
 b/src/util/config.h.cmake
+@@ -30,4 +30,8 @@
+ 
+ #define HEAPTRACK_DEBUG_BUILD @HEAPTRACK_DEBUG_BUILD@
+ 
++// cfree() does not exist in glibc 2.26+.
++// See: https://bugs.kde.org/show_bug.cgi?id=383889
++#cmakedefine01 HAVE_CFREE
++
+ #endif // HEAPTRACK_CONFIG_H
+diff --git a/tests/manual/CMakeLists.txt b/tests/manual/CMakeLists.txt
+index 63f9526..4b6 100644
+--- a/tests/manual/CMakeLists.txt
 b/tests/manual/CMakeLists.txt
+@@ -2,6 +2,10 @@ set(CMAKE_BUILD_TYPE Debug)
+ 
+ add_executable(test_c test.c)
+ add_executable(test_cpp test.cpp)
++set_target_properties(test_cpp PROPERTIES
++  INCLUDE_DIRECTORIES ${CMAKE_CURRENT_BINARY_DIR}/../../src/
++)
++
+ add_executable(threaded threaded.cpp)
+ target_link_libraries(threaded 

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

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 23:05:46
  Author: bpiotrowski
Revision: 277499

1.0.0-3: rebuild against boost 1.66

Modified:
  heaptrack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 22:11:04 UTC (rev 277498)
+++ PKGBUILD2017-12-30 23:05:46 UTC (rev 277499)
@@ -2,7 +2,7 @@
 
 pkgname=heaptrack
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 pkgdesc="A heap memory profiler for Linux"
 url="http://milianw.de/tag/heaptrack;


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

2017-12-30 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 30, 2017 @ 22:11:04
  Author: svenstaro
Revision: 277498

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
(from rev 277497, telegram-desktop/trunk/CMakeLists.inj)
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 277497, telegram-desktop/trunk/PKGBUILD)
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
(from rev 277497, telegram-desktop/trunk/libtgvoip.patch)
  telegram-desktop/repos/community-x86_64/tdesktop.patch
(from rev 277497, telegram-desktop/trunk/tdesktop.patch)
  telegram-desktop/repos/community-x86_64/telegram-desktop.desktop
(from rev 277497, telegram-desktop/trunk/telegram-desktop.desktop)
  telegram-desktop/repos/community-x86_64/telegram-desktop.install
(from rev 277497, telegram-desktop/trunk/telegram-desktop.install)
  telegram-desktop/repos/community-x86_64/tg.protocol
(from rev 277497, telegram-desktop/trunk/tg.protocol)
Deleted:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
  telegram-desktop/repos/community-x86_64/PKGBUILD
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
  telegram-desktop/repos/community-x86_64/tdesktop.patch
  telegram-desktop/repos/community-x86_64/telegram-desktop.desktop
  telegram-desktop/repos/community-x86_64/telegram-desktop.install
  telegram-desktop/repos/community-x86_64/tg.protocol

--+
 CMakeLists.inj   |   28 -
 PKGBUILD |  178 +++---
 libtgvoip.patch  |   36 -
 tdesktop.patch   | 1152 ++---
 telegram-desktop.desktop |   22 
 telegram-desktop.install |   20 
 tg.protocol  |   22 
 7 files changed, 730 insertions(+), 728 deletions(-)

Deleted: CMakeLists.inj
===
--- CMakeLists.inj  2017-12-30 22:10:37 UTC (rev 277497)
+++ CMakeLists.inj  2017-12-30 22:11:04 UTC (rev 277498)
@@ -1,14 +0,0 @@
-# - debian/CMakeLists.inj begin -
-# The text will be putted into the appropriate CMakeLists by debian/rules 
script
-
-# Avoid rpath compiler parameter
-set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
-
-# This makes up for patch of gyp utility, supporting precompiled headers. If
-# Telegram/Patches/gyp.diff file will be changed in future, please check these
-# lines.
-include(../../Telegram/gyp/PrecompiledHeader.cmake)
-add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
-
-# vim: ft=cmake
-# -- debian/CMakeLists.inj end --

Copied: telegram-desktop/repos/community-x86_64/CMakeLists.inj (from rev 
277497, telegram-desktop/trunk/CMakeLists.inj)
===
--- CMakeLists.inj  (rev 0)
+++ CMakeLists.inj  2017-12-30 22:11:04 UTC (rev 277498)
@@ -0,0 +1,14 @@
+# - debian/CMakeLists.inj begin -
+# The text will be putted into the appropriate CMakeLists by debian/rules 
script
+
+# Avoid rpath compiler parameter
+set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
+
+# This makes up for patch of gyp utility, supporting precompiled headers. If
+# Telegram/Patches/gyp.diff file will be changed in future, please check these
+# lines.
+include(../../Telegram/gyp/PrecompiledHeader.cmake)
+add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
+
+# vim: ft=cmake
+# -- debian/CMakeLists.inj end --

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 22:10:37 UTC (rev 277497)
+++ PKGBUILD2017-12-30 22:11:04 UTC (rev 277498)
@@ -1,89 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: hexchain 
-
-# Thanks Nicholas Guriev  for the patches!
-# https://github.com/mymedia2/tdesktop
-
-pkgname=telegram-desktop
-pkgver=1.2.1
-pkgrel=4
-pkgdesc='Official Telegram Desktop client'
-arch=('x86_64')
-url="https://desktop.telegram.org/;
-license=('GPL3')
-depends=('ffmpeg' 'hicolor-icon-theme' 'minizip' 'openal' 'qt5-base' 
'qt5-imageformats' 'openssl-1.0' 'libappindicator-gtk3')
-makedepends=('cmake' 'git' 'gyp' 'libexif' 'libva' 'libwebp' 'mtdev' 
'range-v3' 'python' 'python2' 'gtk3' 'dee')
-install=telegram-desktop.install
-source=(
-
"tdesktop::git+https://github.com/telegramdesktop/tdesktop.git#tag=v$pkgver;
-"GSL::git+https://github.com/Microsoft/GSL.git;
-"libtgvoip::git+https://github.com/telegramdesktop/libtgvoip.git;
-"variant::git+https://github.com/mapbox/variant.git;
-"Catch::git+https://github.com/philsquared/Catch;
-"telegram-desktop.desktop"
-"tg.protocol"
-"CMakeLists.inj"
-"tdesktop.patch"
-"libtgvoip.patch"
-)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-

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

2017-12-30 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 30, 2017 @ 22:10:37
  Author: svenstaro
Revision: 277497

upgpkg: telegram-desktop 1.2.6-1

Modified:
  telegram-desktop/trunk/PKGBUILD
  telegram-desktop/trunk/tdesktop.patch

+
 PKGBUILD   |6 ++---
 tdesktop.patch |   64 ---
 2 files changed, 36 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 22:00:36 UTC (rev 277496)
+++ PKGBUILD2017-12-30 22:10:37 UTC (rev 277497)
@@ -5,8 +5,8 @@
 # https://github.com/mymedia2/tdesktop
 
 pkgname=telegram-desktop
-pkgver=1.2.1
-pkgrel=4
+pkgver=1.2.6
+pkgrel=1
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
 url="https://desktop.telegram.org/;
@@ -34,7 +34,7 @@
 'b12b6d25fc2e6fb0a60a14bbab8b600ec71cf4651279180730c1a469afd1173c'
 'd4cdad0d091c7e47811d8a26d55bbee492e7845e968c522e86f120815477e9eb'
 '7a06af83609168a8eaec59a65252caa41dcd0ecc805225886435eb65073e9c82'
-'35ca9d917254ee71141ebfbae1b8447b8d3a5601f8d3a78db2cceedfe83c54f2'
+'9011d01340549d8a7b6627c44de5355356342a7e83789672e9e0aa92657ee04f'
 '0e55b150b91aeeddcb813fb242a62fe4d1977bcac457eb9d65997faef643f075')
 
 prepare() {

Modified: tdesktop.patch
===
--- tdesktop.patch  2017-12-30 22:00:36 UTC (rev 277496)
+++ tdesktop.patch  2017-12-30 22:10:37 UTC (rev 277497)
@@ -1,5 +1,5 @@
 diff --git a/Telegram/Resources/qrc/telegram_linux.qrc 
b/Telegram/Resources/qrc/telegram_linux.qrc
-index 0554fa179..3ea027406 100644
+index 0554fa17..3ea02740 100644
 --- a/Telegram/Resources/qrc/telegram_linux.qrc
 +++ b/Telegram/Resources/qrc/telegram_linux.qrc
 @@ -1,5 +1,4 @@
@@ -9,10 +9,10 @@

  
 diff --git a/Telegram/SourceFiles/core/launcher.cpp 
b/Telegram/SourceFiles/core/launcher.cpp
-index c05915976..9b19941df 100644
+index bf21d14d..6b63016e 100644
 --- a/Telegram/SourceFiles/core/launcher.cpp
 +++ b/Telegram/SourceFiles/core/launcher.cpp
-@@ -43,9 +43,10 @@ void Launcher::init() {
+@@ -44,9 +44,10 @@ void Launcher::init() {
  
QCoreApplication::setApplicationName(qsl("TelegramDesktop"));
  
@@ -25,7 +25,7 @@
  
initHook();
  }
-@@ -63,6 +64,13 @@ int Launcher::exec() {
+@@ -64,6 +65,13 @@ int Launcher::exec() {
Logs::start(this); // must be started before Platform is started
Platform::start(); // must be started before QApplication is created
  
@@ -36,11 +36,11 @@
 +  // Telegram doesn't start when extraordinary theme is set, see 
launchpad.net/bugs/1680943
 +  unsetenv("QT_QPA_PLATFORMTHEME");
 +
-   auto result = 0;
-   {
-   Application app(this, _argc, _argv);
+   auto result = executeApplication();
+ 
+   DEBUG_LOG(("Telegram finished, result: %1").arg(result));
 diff --git a/Telegram/SourceFiles/platform/linux/linux_libs.h 
b/Telegram/SourceFiles/platform/linux/linux_libs.h
-index e9e349be9..d82963fa2 100644
+index e9e349be..d82963fa 100644
 --- a/Telegram/SourceFiles/platform/linux/linux_libs.h
 +++ b/Telegram/SourceFiles/platform/linux/linux_libs.h
 @@ -30,7 +30,7 @@ extern "C" {
@@ -54,7 +54,7 @@
  
 diff --git a/Telegram/SourceFiles/qt_functions.cpp 
b/Telegram/SourceFiles/qt_functions.cpp
 new file mode 100644
-index 0..4a722b8d7
+index ..4a722b8d
 --- /dev/null
 +++ b/Telegram/SourceFiles/qt_functions.cpp
 @@ -0,0 +1,94 @@
@@ -153,7 +153,7 @@
 +flags |= QTextItem::StrikeOut;
 +}
 diff --git a/Telegram/SourceFiles/qt_static_plugins.cpp 
b/Telegram/SourceFiles/qt_static_plugins.cpp
-index b975c7a84..f2f876b30 100644
+index b975c7a8..f2f876b3 100644
 --- a/Telegram/SourceFiles/qt_static_plugins.cpp
 +++ b/Telegram/SourceFiles/qt_static_plugins.cpp
 @@ -28,13 +28,4 @@ Q_IMPORT_PLUGIN(QWebpPlugin)
@@ -171,7 +171,7 @@
 -Q_IMPORT_PLUGIN(QHimePlatformInputContextPlugin)
  #endif // Q_OS_WIN | Q_OS_MAC | Q_OS_LINUX
 diff --git a/Telegram/SourceFiles/ui/text/text.cpp 
b/Telegram/SourceFiles/ui/text/text.cpp
-index 710277fe2..5eb4465d6 100644
+index 7d34a19b..a4b3d31a 100644
 --- a/Telegram/SourceFiles/ui/text/text.cpp
 +++ b/Telegram/SourceFiles/ui/text/text.cpp
 @@ -1707,11 +1707,11 @@ private:
@@ -190,23 +190,24 @@
auto blockIndex = _lineStartBlock;
auto currentBlock = _t->_blocks[blockIndex].get();
 diff --git a/Telegram/SourceFiles/ui/text/text_block.cpp 
b/Telegram/SourceFiles/ui/text/text_block.cpp
-index e435b50dc..893496b4f 100644
+index a10b5393..4e1eb62d 100644
 --- a/Telegram/SourceFiles/ui/text/text_block.cpp
 +++ b/Telegram/SourceFiles/ui/text/text_block.cpp
-@@ -332,7 +332,7 @@ TextBlock::TextBlock(const style::font , const 
QString , QFixed minResi
-   CrashReports::SetAnnotationRef("CrashString", );
+@@ -333,6 +333,9 @@ TextBlock::TextBlock(const style::font , const 
QString , QFixed minResi
  
   

[arch-commits] Commit in mythplugins/repos (6 files)

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:57:09
  Author: alucryd
Revision: 277490

archrelease: copy trunk to community-staging-x86_64

Added:
  mythplugins/repos/community-staging-x86_64/
  mythplugins/repos/community-staging-x86_64/PKGBUILD
(from rev 277489, mythplugins/trunk/PKGBUILD)
  mythplugins/repos/community-staging-x86_64/cdparanoia.patch
(from rev 277489, mythplugins/trunk/cdparanoia.patch)
  mythplugins/repos/community-staging-x86_64/mythplugins-mythweb.install
(from rev 277489, mythplugins/trunk/mythplugins-mythweb.install)
  mythplugins/repos/community-staging-x86_64/mythplugins-mythzoneminder.install
(from rev 277489, mythplugins/trunk/mythplugins-mythzoneminder.install)
  mythplugins/repos/community-staging-x86_64/qt510.patch
(from rev 277489, mythplugins/trunk/qt510.patch)

+
 PKGBUILD   |  147 +
 cdparanoia.patch   |   52 +++
 mythplugins-mythweb.install|4 
 mythplugins-mythzoneminder.install |3 
 qt510.patch|  154 +++
 5 files changed, 360 insertions(+)

Copied: mythplugins/repos/community-staging-x86_64/PKGBUILD (from rev 277489, 
mythplugins/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 21:57:09 UTC (rev 277490)
@@ -0,0 +1,147 @@
+# $Id$
+# Maintainer:
+# Contributor: Jonathan Conder 
+# Contributor: Giovanni Scafora 
+
+pkgbase=mythplugins
+pkgname=('mythplugins-mytharchive'
+ 'mythplugins-mythbrowser'
+ 'mythplugins-mythgallery'
+ 'mythplugins-mythgame'
+ 'mythplugins-mythmusic'
+ 'mythplugins-mythnetvision'
+ 'mythplugins-mythnews'
+ 'mythplugins-mythweather'
+ 'mythplugins-mythweb'
+ 'mythplugins-mythzoneminder')
+pkgver=29.0
+pkgrel=4
+epoch=1
+arch=('x86_64')
+url="http://www.mythtv.org;
+license=('GPL')
+makedepends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif'
+ 'libvorbis' 'mesa' 'mesa-libgl' "mythtv=$epoch:$pkgver"
+ 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size'
+ 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax'
+ 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 
'python2-pillow'
+ 'python2-pycurl' 'zlib' 'gdb' 'perl-cgi')
+source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz;
+
"mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz;
+'cdparanoia.patch'
+'qt510.patch')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
+
'bc6f4f6b73136f5c0342b055dd4814ed177b7ca05d70dcb43e7966c3cd854f77dcd7a391eef2b870acf87c82d09c018cf8fb5176724ab55b59a6f2ab3845e0fe'
+
'6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b'
+
'da82e43545cf6c0e882e9729d30cdb1786019da6a1aaf59667594a3a9bebd613422557e470969d35dcad52bc9b255c5d762301eff4c8e759fb2b6a22cd0c8841')
+
+prepare() {
+  cd "$srcdir/mythtv-$pkgver/$pkgbase"
+
+  find . -name '*.py' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+  patch -Np1 -i "$srcdir/cdparanoia.patch"
+  patch -Np2 -i ../../qt510.patch
+
+  cd "$srcdir/mythweb-$pkgver"
+
+  sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php'
+}
+
+build() {
+  cd "$srcdir/mythtv-$pkgver/$pkgbase"
+
+  ./configure --prefix=/usr \
+  --enable-all \
+  --python=python2
+  qmake-qt5 mythplugins.pro
+  make -s
+}
+
+package_mythplugins-mytharchive() {
+  pkgdesc="Create DVDs or archive recorded shows in MythTV"
+  depends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv'
+   'python2-pillow')
+
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mytharchive"
+  make INSTALL_ROOT="$pkgdir" install
+}
+
+package_mythplugins-mythbrowser() {
+  pkgdesc="Mini web browser for MythTV"
+  depends=('mythtv')
+
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythbrowser"
+  make INSTALL_ROOT="$pkgdir" install
+}
+
+package_mythplugins-mythgallery() {
+  pkgdesc="Image gallery plugin for MythTV"
+  depends=('libexif' 'mythtv')
+
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgallery"
+  make INSTALL_ROOT="$pkgdir" install
+}
+
+package_mythplugins-mythgame() {
+  pkgdesc="Game emulator plugin for MythTV"
+  depends=('mythtv')
+
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgame"
+  make INSTALL_ROOT="$pkgdir" install
+}
+
+package_mythplugins-mythmusic() {
+  pkgdesc="Music playing plugin for MythTV"
+  depends=('mythtv' 'libcdio-paranoia')
+
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythmusic"

[arch-commits] Commit in mythplugins/trunk (PKGBUILD qt510.patch)

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:56:48
  Author: alucryd
Revision: 277489

x264 152 rebuild: mythplugins 1:29.0-4

Added:
  mythplugins/trunk/qt510.patch
Modified:
  mythplugins/trunk/PKGBUILD

-+
 PKGBUILD|   11 ++--
 qt510.patch |  154 ++
 2 files changed, 161 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 21:52:20 UTC (rev 277488)
+++ PKGBUILD2017-12-30 21:56:48 UTC (rev 277489)
@@ -15,7 +15,7 @@
  'mythplugins-mythweb'
  'mythplugins-mythzoneminder')
 pkgver=29.0
-pkgrel=3
+pkgrel=4
 epoch=1
 arch=('x86_64')
 url="http://www.mythtv.org;
@@ -28,10 +28,12 @@
  'python2-pycurl' 'zlib' 'gdb' 'perl-cgi')
 
source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz;
 
"mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz;
-'cdparanoia.patch')
-sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae'
+'cdparanoia.patch'
+'qt510.patch')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
 
'bc6f4f6b73136f5c0342b055dd4814ed177b7ca05d70dcb43e7966c3cd854f77dcd7a391eef2b870acf87c82d09c018cf8fb5176724ab55b59a6f2ab3845e0fe'
-
'6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b')
+
'6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b'
+
'da82e43545cf6c0e882e9729d30cdb1786019da6a1aaf59667594a3a9bebd613422557e470969d35dcad52bc9b255c5d762301eff4c8e759fb2b6a22cd0c8841')
 
 prepare() {
   cd "$srcdir/mythtv-$pkgver/$pkgbase"
@@ -38,6 +40,7 @@
 
   find . -name '*.py' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np1 -i "$srcdir/cdparanoia.patch"
+  patch -Np2 -i ../../qt510.patch
 
   cd "$srcdir/mythweb-$pkgver"
 

Added: qt510.patch
===
--- qt510.patch (rev 0)
+++ qt510.patch 2017-12-30 21:56:48 UTC (rev 277489)
@@ -0,0 +1,154 @@
+diff --git a/mythplugins/configure b/mythplugins/configure
+index 9ba22c8956..3b6cc3f914 100755
+--- a/mythplugins/configure
 b/mythplugins/configure
+@@ -527,14 +527,6 @@ EOF
+ die "Sanity test failed."
+ fi
+ 
+-is_qmake5(){
+-$1 --version 2>&1 | egrep -q -e "Qt version 5\.[0-9]\.[0-9]"
+-}
+-
+-is_qmake4(){
+-$1 --version 2>&1 | egrep -q -e "Qt version 4\.[8-9]\.[0-9]"
+-}
+-
+ # bring in mythtv config
+ if [ -e $prefix/include/mythtv/mythconfig.mak ] ; then
+ rm mythconfig.mak 2> /dev/null
+@@ -570,30 +562,40 @@ OPENGLES=$(cat mythconfig.mak | grep -e 
"^HAVE_GLES2_GL2_H=yes")
+ EXTRALIBS=$(cat mythconfig.mak | grep -e "^EXTRALIBS=")
+ EXTRALIBS=${EXTRALIBS#EXTRALIBS=}
+ 
++version2string(){
++# accepts version as in 1.10.4 and turns it into 0001.0010.0004.. 
which can be compared as a string
++echo $1 | awk -F. '{ printf("%04d.%04d.%04d.%04d.%04d", $1, $2, $3, $4, 
$5); };'
++}
++
++# Minimum supported Qt version
++qt_minimum_version="5.2"
++
+ # qmake-qt5 /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake
+ if [ x"$qmake" = "xqmake" ]; then
+-CHECK_QMAKE="qmake-qt5 /usr/lib64/qt5/bin/qmake 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake $qmake 
qmake-qt4"
++CHECK_QMAKE=`which -a qmake-qt5 2>/dev/null`" /usr/lib64/qt5/bin/qmake 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake `which 
-a $qmake 2>/dev/null`"
+ else
+-CHECK_QMAKE="$qmake qmake-qt5 /usr/lib64/qt5/bin/qmake 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake 
qmake-qt4"
++CHECK_QMAKE=`which -a $qmake 2>/dev/null`" "`which -a qmake-qt5 
2>/dev/null`" /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake 
/usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake"
+ fi
+ # try to find a qt5 qmake to use
+ found_qmake=''
+ for i in $CHECK_QMAKE; do
+-if is_qmake5 $i; then
+-found_qmake=$i
+-break;
+-elif is_qmake4 $i; then
+-found_qmake=$i
+-break;
++if test -e $i ; then
++qmake_version=`$i --version | sed -n  "s/.*Qt version 
\([0-9]*\.[0-9]*\.[0-9]*\) .*/\1/p"`
++if ! [ $(version2string $qmake_version) \< $(version2string 
$qt_minimum_version) ]; then
++ 

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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:52:20
  Author: alucryd
Revision: 277488

archrelease: copy trunk to community-staging-x86_64

Added:
  mythtv/repos/community-staging-x86_64/
  mythtv/repos/community-staging-x86_64/99-mythbackend.rules
(from rev 277487, mythtv/trunk/99-mythbackend.rules)
  mythtv/repos/community-staging-x86_64/PKGBUILD
(from rev 277487, mythtv/trunk/PKGBUILD)
  mythtv/repos/community-staging-x86_64/libcec4.patch
(from rev 277487, mythtv/trunk/libcec4.patch)
  mythtv/repos/community-staging-x86_64/loggingserver.patch
(from rev 277487, mythtv/trunk/loggingserver.patch)
  mythtv/repos/community-staging-x86_64/mythbackend.service
(from rev 277487, mythtv/trunk/mythbackend.service)
  mythtv/repos/community-staging-x86_64/mythtv.install
(from rev 277487, mythtv/trunk/mythtv.install)
  mythtv/repos/community-staging-x86_64/qt510.patch
(from rev 277487, mythtv/trunk/qt510.patch)

--+
 99-mythbackend.rules |6 
 PKGBUILD |   77 ++
 libcec4.patch|  551 
 loggingserver.patch  |   11 
 mythbackend.service  |   16 +
 mythtv.install   |   21 +
 qt510.patch  |  601 +
 7 files changed, 1283 insertions(+)

Copied: mythtv/repos/community-staging-x86_64/99-mythbackend.rules (from rev 
277487, mythtv/trunk/99-mythbackend.rules)
===
--- community-staging-x86_64/99-mythbackend.rules   
(rev 0)
+++ community-staging-x86_64/99-mythbackend.rules   2017-12-30 21:52:20 UTC 
(rev 277488)
@@ -0,0 +1,6 @@
+#
+# Create systemd device units for capture devices
+#
+SUBSYSTEM=="video4linux", TAG+="systemd"
+SUBSYSTEM=="dvb", TAG+="systemd"
+SUBSYSTEM=="firewire", TAG+="systemd"

Copied: mythtv/repos/community-staging-x86_64/PKGBUILD (from rev 277487, 
mythtv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 21:52:20 UTC (rev 277488)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Jonathan Conder 
+# Contributor: Giovanni Scafora 
+# Contributor: Juergen Hoetzel 
+# Contributor: 
+# Contributor: dorphell 
+
+pkgname=mythtv
+pkgver=29.0
+pkgrel=5
+epoch=1
+pkgdesc="A Homebrew PVR project"
+arch=('x86_64')
+url="http://www.mythtv.org/;
+license=('GPL')
+depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
+ 'libgl' 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc' 
'mariadb-clients'
+ 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
+ 'perl-net-upnp' 'python2-lxml' 'qt5-webkit' 'qt5-script' 'taglib' 
'urlgrabber'
+ 'libx264' 'libvdpau' 'exiv2' 'libxrandr' 'jack')
+makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264' 'gdb')
+optdepends=('glew: for GPU commercial flagging'
+'libcec: for consumer electronics control capabilities'
+'libxml2: to read blu-ray metadata'
+'openssl: for AirTunes (RAOP) support')
+conflicts=('myththemes' 'mythplugins-mythvideo')
+replaces=('myththemes' 'mythplugins-mythvideo')
+install='mythtv.install'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
+'mythbackend.service' '99-mythbackend.rules' 'qt510.patch')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
+
'41533da5d8ef694d8c12f60d956673d9e49fb6781ae58d6bfd0bf31e4f380fddb508f9cad3b91264a3ad55853c24c6932bdf83bb5b711c34c0836d71b46be02c'
+
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8'
+
'5070b4e8ad5ebd4208a3e8393ebabb55118615c2966cb1ba585e94084c4ad643dc5644bfca9267eb81e6c27be16b088e541aa8118a43cbebaf9d28c52e15a35c')
+
+prepare() {
+  cd $pkgname-$pkgver/$pkgname
+
+  patch -Np2 -i ../../qt510.patch
+
+  find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+}
+
+build() {
+  cd $pkgname-$pkgver/$pkgname
+
+  ARCH="${CARCH/_/-}"
+  ./configure --prefix=/usr \
+  --cpu="$ARCH" \
+  --disable-altivec \
+  --disable-audio-jack \
+  --disable-ccache \
+  --disable-distcc \
+  --enable-libfftw3 \
+  --enable-libmp3lame \
+  --enable-libvpx \
+  --enable-libx264 \
+  --enable-vaapi \
+  --python=python2 \
+  --perl-config-opts=INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/$pkgname
+  make 

[arch-commits] Commit in mythtv/trunk (PKGBUILD qt510.patch)

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:51:59
  Author: alucryd
Revision: 277487

x264 152 rebuild: mythtv 1:29.0-5

Added:
  mythtv/trunk/qt510.patch
Modified:
  mythtv/trunk/PKGBUILD

-+
 PKGBUILD|   11 -
 qt510.patch |  601 ++
 2 files changed, 608 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 21:17:23 UTC (rev 277486)
+++ PKGBUILD2017-12-30 21:51:59 UTC (rev 277487)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=29.0
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('x86_64')
@@ -27,14 +27,17 @@
 replaces=('myththemes' 'mythplugins-mythvideo')
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
-'mythbackend.service' '99-mythbackend.rules')
-sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae'
+'mythbackend.service' '99-mythbackend.rules' 'qt510.patch')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
 
'41533da5d8ef694d8c12f60d956673d9e49fb6781ae58d6bfd0bf31e4f380fddb508f9cad3b91264a3ad55853c24c6932bdf83bb5b711c34c0836d71b46be02c'
-
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8')
+
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8'
+
'5070b4e8ad5ebd4208a3e8393ebabb55118615c2966cb1ba585e94084c4ad643dc5644bfca9267eb81e6c27be16b088e541aa8118a43cbebaf9d28c52e15a35c')
 
 prepare() {
   cd $pkgname-$pkgver/$pkgname
 
+  patch -Np2 -i ../../qt510.patch
+
   find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
 }
 

Added: qt510.patch
===
--- qt510.patch (rev 0)
+++ qt510.patch 2017-12-30 21:51:59 UTC (rev 277487)
@@ -0,0 +1,601 @@
+diff --git a/mythtv/configure b/mythtv/configure
+index 8b7ba2ed6f..32fbe2bf60 100755
+--- a/mythtv/configure
 b/mythtv/configure
+@@ -6099,21 +6099,26 @@ enable_weak_pic() {
+ 
+ enabled pic && enable_weak_pic
+ 
+-is_qmake5(){
+-$1 --version 2>&1 | egrep -q -e "Qt version 5\.[2-9]\.[0-9]"
++version2string(){
++# accepts version as in 1.10.4 and turns it into 0001.0010.0004.. 
which can be compared as a string
++echo $1 | awk -F. '{ printf("%04d.%04d.%04d.%04d.%04d", $1, $2, $3, $4, 
$5); };'
+ }
+ 
++# Minimum supported Qt version
++qt_minimum_version="5.2"
++
+ # qmake-qt5 /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake
+ if [ x"$qmake" = "xqmake" ]; then
+-CHECK_QMAKE=`which qmake-qt5 2>&1`" /usr/lib64/qt5/bin/qmake 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake `which 
$qmake 2>&1`"
++CHECK_QMAKE=`which -a qmake-qt5 2>/dev/null`" /usr/lib64/qt5/bin/qmake 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake `which 
-a $qmake 2>/dev/null`"
+ else
+-CHECK_QMAKE=`which $qmake 2>&1`" "`which qmake-qt5 2>&1`" 
/usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake 
/usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake"
++CHECK_QMAKE=`which -a $qmake 2>/dev/null`" "`which -a qmake-qt5 
2>/dev/null`" /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake 
/usr/lib/i386-linux-gnu/qt5/bin/qmake 
/usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake"
+ fi
+ # try to find a qt5 qmake to use
+ found_qmake=''
+ for i in $CHECK_QMAKE; do
+ if test -e $i ; then
+-if is_qmake5 $i; then
++qmake_version=`$i --version | sed -n  "s/.*Qt version 
\([0-9]*\.[0-9]*\.[0-9]*\) .*/\1/p"`
++if ! [ $(version2string $qmake_version) \< $(version2string 
$qt_minimum_version) ]; then
+ found_qmake=$i
+ check_cxxflags -DQT_DISABLE_DEPRECATED_BEFORE=0x05
+ break;
+@@ -6124,7 +6129,7 @@ for i in $CHECK_QMAKE; do
+ fi
+ done
+ if [ x"$found_qmake" = "x" ]; then
+-die "qmake for Qt5.2 or newer not found.\nPlease specify the correct 
qmake with --qmake="
++die "qmake for Qt version $qt_minimum_version or newer not found.  Please 
specify the correct qmake with --qmake="
+ else
+ qmake=$found_qmake
+ fi
+diff --git a/mythtv/libs/libmyth/libmyth.pro b/mythtv/libs/libmyth/libmyth.pro
+index 24ec735b18..1fd5cc01c0 100644
+--- a/mythtv/libs/libmyth/libmyth.pro
 

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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:20:45
  Author: alucryd
Revision: 313801

archrelease: copy trunk to staging-x86_64

Added:
  mplayer/repos/staging-x86_64/
  mplayer/repos/staging-x86_64/PKGBUILD
(from rev 313800, mplayer/trunk/PKGBUILD)
  mplayer/repos/staging-x86_64/include-samba-4.0.patch
(from rev 313800, mplayer/trunk/include-samba-4.0.patch)
  mplayer/repos/staging-x86_64/mplayer.desktop
(from rev 313800, mplayer/trunk/mplayer.desktop)
  mplayer/repos/staging-x86_64/revert-icl-fixes.patch
(from rev 313800, mplayer/trunk/revert-icl-fixes.patch)

-+
 PKGBUILD|   86 ++
 include-samba-4.0.patch |   12 ++
 mplayer.desktop |   22 +++
 revert-icl-fixes.patch  |   66 +++
 4 files changed, 186 insertions(+)

Copied: mplayer/repos/staging-x86_64/PKGBUILD (from rev 313800, 
mplayer/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 21:20:45 UTC (rev 313801)
@@ -0,0 +1,86 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Hugo Doria 
+
+pkgbase=mplayer
+pkgname=('mplayer' 'mencoder')
+pkgver=37998
+pkgrel=2
+pkgdesc='Media player for Linux'
+url='http://www.mplayerhq.hu/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('libxxf86dga' 'libmad' 'libxinerama' 'libmng' 'libxss' 
'smbclient' 'aalib' 'jack'
+ 'libcaca' 'faac' 'faad2' 'lirc'  'libxvmc' 'enca' 'libdca' 
'a52dec' 'libvpx' 'unzip'
+ 'mesa' 'live-media' 'yasm' 'git' 'mpg123' 'ladspa' 
'libcdio-paranoia' 'subversion'
+ 'x264' 'libx264' 'rtmpdump' 'libdvdcss' 'libdvdread' 'libdvdnav' 
'ffmpeg')
+options=('!buildflags' '!emptydirs')
+source=(${pkgbase}-${pkgver}::"svn://svn.mplayerhq.hu/mplayer/trunk#revision=${pkgver}"
+mplayer.desktop
+include-samba-4.0.patch
+revert-icl-fixes.patch)
+sha512sums=('SKIP'
+
'd3c5cbf0035279c6f307e4e225473d7b77f9b56566537a26aa694e68446b9e3240333296da627ad5af83b04cc8f476d1a3f8c05e4cf81cd6e77153feb4ed74bc'
+
'9debb8c58b996f6c716c22c86c720bf9dc49b4ee9b76c57519f791667ae1de2cc6f5add878fbf4ac02c6b6fd1865e1bcfa6105e75de4bf7ec596c338ed0cae99'
+
'0cae0b26d3d97fd4c962962c43a481de20335369cbca406cadfc9bda1a0608b32f5374e76c477cb9a85bda83a568a1ed17126df224ae61579d0a402c1824aea8')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 < "../include-samba-4.0.patch"
+  patch -p0 < "../revert-icl-fixes.patch"
+  ./version.sh
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr \
+--enable-runtime-cpudetection \
+--disable-gui \
+--disable-arts \
+--disable-liblzo \
+--disable-speex \
+--disable-openal \
+--disable-libdv \
+--disable-musepack \
+--disable-esd \
+--disable-mga \
+--disable-ass-internal \
+--disable-cdparanoia \
+--disable-ffmpeg_a \
+--enable-xvmc \
+--enable-radio \
+--enable-radio-capture \
+--enable-smb \
+--language=all \
+--confdir=/etc/mplayer
+  [[ "${CARCH}" = "i686" ]] && sed 's|-march=i486|-march=i686|g' -i config.mak
+  make
+}
+
+package_mplayer() {
+  pkgdesc='Media player for Linux'
+  backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
+  depends=('desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
+   'lirc' 'libx264' 'libmng' 'libdca' 'aalib' 'libxinerama' 'smbclient'
+   'jack' 'libmad' 'libcaca' 'libxxf86dga' 'faac' 'faad2' 'libxvmc' 
'mpg123'
+   'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 'ffmpeg')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install-mplayer install-mplayer-man
+
+  install -Dm 644 etc/{codecs.conf,input.conf,example.conf} 
"${pkgdir}/etc/mplayer"
+  install -Dm 644 "${srcdir}/mplayer.desktop" -t 
"${pkgdir}/usr/share/applications"
+  install -Dm 644 etc/mplayer256x256.png 
"${pkgdir}/usr/share/pixmaps/mplayer.png"
+}
+
+package_mencoder() {
+  pkgdesc='Free command line video decoding, encoding and filtering tool'
+  depends=('enca' 'a52dec' 'libvpx' 'libx264' 'libmng' 'libdca' 'smbclient' 
'libmad'
+   'faac' 'faad2' 'mpg123' 'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 
'ffmpeg')
+
+  make -C ${pkgbase}-${pkgver} DESTDIR="${pkgdir}" install-mencoder 
install-mencoder-man
+  find "${pkgdir}/usr/share/man" -name mplayer.1 -exec rename mplayer.1 
mencoder.1 {} +
+}
+
+# vim: ts=2 sw=2 et:

Copied: mplayer/repos/staging-x86_64/include-samba-4.0.patch (from rev 313800, 
mplayer/trunk/include-samba-4.0.patch)
===
--- staging-x86_64/include-samba-4.0.patch  (rev 0)
+++ staging-x86_64/include-samba-4.0.patch 

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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:20:17
  Author: alucryd
Revision: 313800

x264 152 rebuild: mplayer 37998-2

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 21:11:17 UTC (rev 313799)
+++ PKGBUILD2017-12-30 21:20:17 UTC (rev 313800)
@@ -6,7 +6,7 @@
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
 pkgver=37998
-pkgrel=1
+pkgrel=2
 pkgdesc='Media player for Linux'
 url='http://www.mplayerhq.hu/'
 arch=('x86_64')


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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:17:23
  Author: alucryd
Revision: 277486

archrelease: copy trunk to community-staging-x86_64

Added:
  obs-studio/repos/community-staging-x86_64/
  obs-studio/repos/community-staging-x86_64/PKGBUILD
(from rev 277485, obs-studio/trunk/PKGBUILD)

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

Copied: obs-studio/repos/community-staging-x86_64/PKGBUILD (from rev 277485, 
obs-studio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 21:17:23 UTC (rev 277486)
@@ -0,0 +1,35 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=20.1.3
+pkgrel=2
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264' 'vlc')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support'
+'vlc: VLC Media Source support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('4f62a84786c3d0072a0e943657e9dfe9')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}


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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:17:13
  Author: alucryd
Revision: 277485

x264 152 rebuild: obs-studio 20.1.3-2

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 18:58:25 UTC (rev 277484)
+++ PKGBUILD2017-12-30 21:17:13 UTC (rev 277485)
@@ -3,7 +3,7 @@
 
 pkgname=obs-studio
 pkgver=20.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('x86_64')
 url="https://obsproject.com;


[arch-commits] Commit in opal/repos (7 files)

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:11:17
  Author: alucryd
Revision: 313799

archrelease: copy trunk to staging-x86_64

Added:
  opal/repos/staging-x86_64/
  opal/repos/staging-x86_64/PKGBUILD
(from rev 313798, opal/trunk/PKGBUILD)
  opal/repos/staging-x86_64/disable-samples-ftbfs.diff
(from rev 313798, opal/trunk/disable-samples-ftbfs.diff)
  opal/repos/staging-x86_64/ffmpeg_2.9.patch
(from rev 313798, opal/trunk/ffmpeg_2.9.patch)
  opal/repos/staging-x86_64/libav10.patch
(from rev 313798, opal/trunk/libav10.patch)
  opal/repos/staging-x86_64/libav9.patch
(from rev 313798, opal/trunk/libav9.patch)
  opal/repos/staging-x86_64/opal-gcc7.patch
(from rev 313798, opal/trunk/opal-gcc7.patch)

+
 PKGBUILD   |   48 +++
 disable-samples-ftbfs.diff |   14 +
 ffmpeg_2.9.patch   |  171 +
 libav10.patch  |  208 
 libav9.patch   |  543 +++
 opal-gcc7.patch|   13 +
 6 files changed, 997 insertions(+)

Copied: opal/repos/staging-x86_64/PKGBUILD (from rev 313798, 
opal/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-30 21:11:17 UTC (rev 313799)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+pkgname=opal
+pkgver=3.10.11
+pkgrel=15
+pkgdesc="Open Phone Abstraction Library"
+arch=(x86_64)
+url="http://www.opalvoip.org;
+license=(GPL)
+depends=(ptlib libtheora libx264 speex gsm celt)
+makedepends=(ffmpeg x264)
+optdepends=('ffmpeg: h263 and mpeg4 plugins')
+options=(!makeflags)
+source=(https://downloads.sourceforge.net/opalvoip/$pkgname-$pkgver.tar.bz2
+disable-samples-ftbfs.diff
+libav9.patch
+libav10.patch
+ffmpeg_2.9.patch
+opal-gcc7.patch)
+sha256sums=('f38e7969e88a28dd9a10a6051315aceecde79d0bbd1a35676868dc5787aed706'
+'f6497c74bbfd47fac036ff97dd74e8c87e6040d686944d29a926ccf3b7525be2'
+'460e5c814aaedc8573b14b2096930464d669f7dcd884f9fce7188533927ae968'
+'a47ca14dd5f04b63fda7a3d0481692ae01340b84b65b693ad43cfacf778a6534'
+'0d4392ce9688cf576ae864605d48ed58427a2a281ad88028ff5bd7016341d276'
+'cb7270055f1f2a29dec19ecab398ce0e75b1e440312e17df8a893308bfb3732c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../disable-samples-ftbfs.diff
+  patch -Np1 -i ../libav9.patch
+  patch -Np1 -i ../libav10.patch
+  patch -Np1 -i ../ffmpeg_2.9.patch
+  patch -Np1 -i ../opal-gcc7.patch # Fix build with GCC 7
+  sed -e '/<< mime.PrintContents/ s/mime/(const std::string\&)&/' -i 
src/im/msrp.cxx
+}
+
+build() {
+  cd $pkgname-$pkgver
+  CXXFLAGS="$CXXFLAGS -fpermissive" \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: opal/repos/staging-x86_64/disable-samples-ftbfs.diff (from rev 313798, 
opal/trunk/disable-samples-ftbfs.diff)
===
--- staging-x86_64/disable-samples-ftbfs.diff   (rev 0)
+++ staging-x86_64/disable-samples-ftbfs.diff   2017-12-30 21:11:17 UTC (rev 
313799)
@@ -0,0 +1,14 @@
+Index: opal-3.10.4~dfsg/Makefile.in
+===
+--- opal-3.10.4~dfsg.orig/Makefile.in  2012-02-22 10:08:36.0 +1100
 opal-3.10.4~dfsg/Makefile.in   2012-03-08 08:32:44.0 +1100
+@@ -45,8 +45,7 @@
+samples/codectest \
+samples/callgen \
+samples/opalecho \
+-   samples/faxopal \
+-   samples/c_api
++   samples/faxopal 
+ ifeq ($(OPAL_IVR),yes)
+ SUBDIRS += samples/opalmcu \
+samples/ivropal \

Copied: opal/repos/staging-x86_64/ffmpeg_2.9.patch (from rev 313798, 
opal/trunk/ffmpeg_2.9.patch)
===
--- staging-x86_64/ffmpeg_2.9.patch (rev 0)
+++ staging-x86_64/ffmpeg_2.9.patch 2017-12-30 21:11:17 UTC (rev 313799)
@@ -0,0 +1,171 @@
+Description: Replace deprecated FFmpeg API
+Author: Andreas Cadhalpun 
+Last-Update: <2015-11-02>
+
+--- opal-3.10.10~dfsg2.orig/plugins/video/H.263-1998/h263-1998.cxx
 opal-3.10.10~dfsg2/plugins/video/H.263-1998/h263-1998.cxx
+@@ -230,11 +230,10 @@ bool H263_Base_EncoderContext::Init(AVCo
+ 
+   m_context->opaque = this;
+ 
+-  m_context->flags = CODEC_FLAG_EMU_EDGE   // don't draw edges
+-   | CODEC_FLAG_TRUNCATED  // Possible missing packets
++  m_context->flags = CODEC_FLAG_TRUNCATED  // Possible missing packets
+;
+ 
+-  m_context->pix_fmt = PIX_FMT_YUV420P;
++  m_context->pix_fmt = AV_PIX_FMT_YUV420P;
+   

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

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:10:59
  Author: alucryd
Revision: 313798

x264 152 rebuild: opal 3.10.11-15

Modified:
  opal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 13:50:15 UTC (rev 313797)
+++ PKGBUILD2017-12-30 21:10:59 UTC (rev 313798)
@@ -3,7 +3,7 @@
 # Contributor: Tom K 
 pkgname=opal
 pkgver=3.10.11
-pkgrel=14
+pkgrel=15
 pkgdesc="Open Phone Abstraction Library"
 arch=(x86_64)
 url="http://www.opalvoip.org;


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 18:58:10
  Author: zorun
Revision: 277483

upgpkg: gobby 0.6.0+e5c2d1-1

This is the version packaged by Debian in testing, because upstream is
slow to release the new 0.6 version.

Modified:
  gobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 18:56:58 UTC (rev 277482)
+++ PKGBUILD2017-12-30 18:58:10 UTC (rev 277483)
@@ -1,29 +1,30 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
 # Contributor: William Rea 
-# Maintainer: Angel 'angvp' Velasquez 
+# Contributor: Angel 'angvp' Velasquez 
 
 pkgname=gobby
-pkgver=0.5.0
-pkgrel=5
+_gitver=e5c2d145d020e080c8612f80a3d123f3a024a13a
+pkgver=0.6.0+e5c2d1
+pkgrel=1
 pkgdesc="A collaborative text editor"
 arch=('x86_64')
 url="https://gobby.github.io/;
 license=('GPL')
-depends=('gtkmm' 'gtksourceview2' 'libinfinity' 'libxml++2.6')
+depends=('gtkmm3' 'gtksourceview3' 'libinfinity' 'libxml++2.6')
 makedepends=('gnome-doc-utils' 'intltool')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
-sha256sums=('f45d0e0969fdd4ff57b43f7eae9f3f6d853c25e667a52f77d939510e19199480')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gobby/gobby/archive/${_gitver}.tar.gz;)
+sha512sums=('9f67bc5704caa23b4b3a2b8c64a69c619d0f6aea1295a74b9c7e5fda5a28939b6157957690af68dc19338a7833a07744ec5aac7b38c98df17ddcd4dd797ee425')
+validpgpkeys=('B63A7560B25B619CA11E219225A941E879B57591') # Armin Burgmeier 

 
 build() {
-  cd "$srcdir"/gobby-$pkgver
+  cd "$srcdir"/gobby-$_gitver
   [ -x configure ] || ./autogen.sh
-  CXXFLAGS+=' -std=c++11'
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir"/gobby-$pkgver
+  cd "$srcdir"/gobby-$_gitver
   make DESTDIR="$pkgdir" install
 }


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 18:58:25
  Author: zorun
Revision: 277484

archrelease: copy trunk to community-testing-x86_64

Added:
  gobby/repos/community-testing-x86_64/
  gobby/repos/community-testing-x86_64/ChangeLog
(from rev 277483, gobby/trunk/ChangeLog)
  gobby/repos/community-testing-x86_64/PKGBUILD
(from rev 277483, gobby/trunk/PKGBUILD)

---+
 ChangeLog |3 +++
 PKGBUILD  |   30 ++
 2 files changed, 33 insertions(+)

Copied: gobby/repos/community-testing-x86_64/ChangeLog (from rev 277483, 
gobby/trunk/ChangeLog)
===
--- community-testing-x86_64/ChangeLog  (rev 0)
+++ community-testing-x86_64/ChangeLog  2017-12-30 18:58:25 UTC (rev 277484)
@@ -0,0 +1,3 @@
+2007-06-27 tardo 
+* Built for x86_64
+* No need for .install since gnome moved to /usr

Copied: gobby/repos/community-testing-x86_64/PKGBUILD (from rev 277483, 
gobby/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-30 18:58:25 UTC (rev 277484)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+# Contributor: Angel 'angvp' Velasquez 
+
+pkgname=gobby
+_gitver=e5c2d145d020e080c8612f80a3d123f3a024a13a
+pkgver=0.6.0+e5c2d1
+pkgrel=1
+pkgdesc="A collaborative text editor"
+arch=('x86_64')
+url="https://gobby.github.io/;
+license=('GPL')
+depends=('gtkmm3' 'gtksourceview3' 'libinfinity' 'libxml++2.6')
+makedepends=('gnome-doc-utils' 'intltool')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gobby/gobby/archive/${_gitver}.tar.gz;)
+sha512sums=('9f67bc5704caa23b4b3a2b8c64a69c619d0f6aea1295a74b9c7e5fda5a28939b6157957690af68dc19338a7833a07744ec5aac7b38c98df17ddcd4dd797ee425')
+validpgpkeys=('B63A7560B25B619CA11E219225A941E879B57591') # Armin Burgmeier 

+
+build() {
+  cd "$srcdir"/gobby-$_gitver
+  [ -x configure ] || ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/gobby-$_gitver
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 18:56:58
  Author: zorun
Revision: 277482

archrelease: copy trunk to community-testing-x86_64

Added:
  libinfinity/repos/community-testing-x86_64/
  libinfinity/repos/community-testing-x86_64/PKGBUILD
(from rev 277481, libinfinity/trunk/PKGBUILD)

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

Copied: libinfinity/repos/community-testing-x86_64/PKGBUILD (from rev 277481, 
libinfinity/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-30 18:56:58 UTC (rev 277482)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Gregory Haynes 
+
+pkgname=libinfinity
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="A library to build collaborative text editors. Includes the infinoted 
server"
+arch=('x86_64')
+url="http://gobby.github.io/;
+license=('GPL')
+depends=('gnutls' 'gsasl' 'glib2' 'libxml2' 'gobject-introspection-runtime')
+makedepends=('gtk-doc' 'gtk3' 'avahi' 'gobject-introspection')
+optdepends=('avahi: zeroconf support'
+'gtk3: gtk support')
+source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('626ee0841bfe24f471580cd17d906dd83b973cf4f10019574adfdfc5327482cb'
+'SKIP')
+validpgpkeys=('728834F3B8D552ED25CC1B1FB1C71544BF1D92C7') # Armin Burgmeier 

+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  [ -x configure ] || ./autogen.sh
+  ./configure --prefix=/usr --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -rf "$pkgdir"/var
+}


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 18:56:34
  Author: zorun
Revision: 277481

upgpkg: libinfinity 0.7.1-1

Gobby 0.5 does not build against libinfinity 0.7.X, so push this to
[community-testing] first.

Modified:
  libinfinity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 18:16:08 UTC (rev 277480)
+++ PKGBUILD2017-12-30 18:56:34 UTC (rev 277481)
@@ -1,21 +1,24 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
+# Contributor: Sven-Hendrik Haase 
 # Contributor: Gregory Haynes 
 
 pkgname=libinfinity
-pkgver=0.6.8
+pkgver=0.7.1
 pkgrel=1
-pkgdesc="An implementation of the Infininote protocol written in GObject-based 
C"
+pkgdesc="A library to build collaborative text editors. Includes the infinoted 
server"
 arch=('x86_64')
 url="http://gobby.github.io/;
 license=('GPL')
-depends=('gnutls>=1.7.2' 'gsasl>=0.2.21' 'glib2>=2.16' 'libxml2>=2.0')
-makedepends=('gtk-doc' 'pkgconfig' 'gtk2')
+depends=('gnutls' 'gsasl' 'glib2' 'libxml2' 'gobject-introspection-runtime')
+makedepends=('gtk-doc' 'gtk3' 'avahi' 'gobject-introspection')
 optdepends=('avahi: zeroconf support'
-'gtk2: gtk support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/libinfinity/archive/${pkgver}.tar.gz;)
-sha256sums=('aa058ee50dd62f9a6732a0e78ed2cef7df2c8174638ed398e040af9b7e988e81')
+'gtk3: gtk support')
+source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('626ee0841bfe24f471580cd17d906dd83b973cf4f10019574adfdfc5327482cb'
+'SKIP')
+validpgpkeys=('728834F3B8D552ED25CC1B1FB1C71544BF1D92C7') # Armin Burgmeier 

 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver}


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

2017-12-30 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 30, 2017 @ 18:16:08
  Author: demize
Revision: 277480

archrelease: copy trunk to community-testing-x86_64

Added:
  girara/repos/community-testing-x86_64/
  girara/repos/community-testing-x86_64/PKGBUILD
(from rev 277479, girara/trunk/PKGBUILD)
  girara/repos/community-testing-x86_64/fix-font-handling-gtk-3.21.patch
(from rev 277479, girara/trunk/fix-font-handling-gtk-3.21.patch)
  girara/repos/community-testing-x86_64/revert-incorrect-changes.patch
(from rev 277479, girara/trunk/revert-incorrect-changes.patch)

--+
 PKGBUILD |   40 +++
 fix-font-handling-gtk-3.21.patch |  190 +
 revert-incorrect-changes.patch   |   30 +
 3 files changed, 260 insertions(+)

Copied: girara/repos/community-testing-x86_64/PKGBUILD (from rev 277479, 
girara/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-30 18:16:08 UTC (rev 277480)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: mlq 
+
+pkgname=girara
+pkgver=0.2.8
+pkgrel=2
+
+pkgdesc="User interface library focused on simplicity and minimalism"
+url="http://pwmt.org/projects/girara;
+arch=('x86_64')
+license=('custom')
+
+provides=('girara-gtk3' 'girara-common')
+replaces=('girara-gtk3' 'girara-common')
+conflicts=('girara-gtk3' 'girara-common')
+
+depends=('gtk3')
+
+source=(https://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz)
+
+sha1sums=('fa7fddfb5fe2592252ca7253b69be4eb0706438a')
+
+prepare() {
+  cd girara-$pkgver
+}
+
+build() {
+  cd girara-$pkgver
+  touch colors.mk
+  make GIRARA_GTK_VERSION=3
+}
+
+package() {
+  cd girara-$pkgver
+  make GIRARA_GTK_VERSION=3 DESTDIR="$pkgdir/" install
+  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: girara/repos/community-testing-x86_64/fix-font-handling-gtk-3.21.patch 
(from rev 277479, girara/trunk/fix-font-handling-gtk-3.21.patch)
===
--- community-testing-x86_64/fix-font-handling-gtk-3.21.patch   
(rev 0)
+++ community-testing-x86_64/fix-font-handling-gtk-3.21.patch   2017-12-30 
18:16:08 UTC (rev 277480)
@@ -0,0 +1,190 @@
+From 949c879aa84e9496fabc7d3602060e29f9dc42a1 Mon Sep 17 00:00:00 2001
+From: Sebastian Ramacher 
+Date: Sat, 3 Sep 2016 11:54:53 +0200
+Subject: [PATCH] Update font handling for changes in Gtk+ 3.21
+
+Signed-off-by: Sebastian Ramacher 
+---
+ data/girara-post-3.20.css_t | 11 ++-
+ girara/config.c |  3 +--
+ girara/internal.h   |  2 ++
+ girara/session.c| 93 
++---
+ 4 files changed, 103 insertions(+), 6 deletions(-)
+
+diff --git a/data/girara-post-3.20.css_t b/data/girara-post-3.20.css_t
+index 491e08e..29758de 100644
+--- a/data/girara-post-3.20.css_t
 b/data/girara-post-3.20.css_t
+@@ -2,7 +2,15 @@
+   color: @default-fg@;
+   background-color: @default-bg@;
+   background-image: none;
+-  font: @font@;
++  font-family: @font-family@;
++  font-size: @font-size@;
++  font-weight: @font-weight@;
++  box-shadow: none;
++  border-style: none;
++  margin: 0px;
++  padding: @bottombox-padding1@px @bottombox-padding2@px 
@bottombox-padding3@px
++@bottombox-padding4@px;
++
+ }
+ 
+ /* Scrollbar */
+@@ -114,4 +122,5 @@
+ #@session@ scrolledwindow overshoot.right,
+ #@session@ scrolledwindow overshoot.right:backdrop {
+   background-color: transparent;
++  background-image: none;
+ }
+diff --git a/girara/config.c b/girara/config.c
+index 4e4092a..63127e8 100644
+--- a/girara/config.c
 b/girara/config.c
+@@ -50,8 +50,7 @@ cb_font(girara_session_t* session, const char* UNUSED(name),
+ {
+   g_return_if_fail(session != NULL && value != NULL);
+ 
+-  girara_template_set_variable_value(session->private_data->csstemplate, 
"font",
+-  value);
++  css_template_fill_font(session->private_data->csstemplate, value);
+ }
+ 
+ static void
+diff --git a/girara/internal.h b/girara/internal.h
+index dac88b5..8e2d754 100644
+--- a/girara/internal.h
 b/girara/internal.h
+@@ -148,6 +148,8 @@ HIDDEN bool girara_cmd_dump_config(girara_session_t* 
session,
+ HIDDEN bool girara_sc_feedkeys(girara_session_t* session, girara_argument_t* 
argument,
+ girara_event_t* event, unsigned int t);
+ 
++HIDDEN void css_template_fill_font(GiraraTemplate* csstemplate, const char* 
font);
++
+ /**
+  * Structure of a command
+  */
+diff --git a/girara/session.c b/girara/session.c
+index b313f4d..2172fc7 100644
+--- a/girara/session.c
 b/girara/session.c
+@@ 

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

2017-12-30 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 30, 2017 @ 18:16:01
  Author: demize
Revision: 277479

Rebuild for json-c in testing

Modified:
  girara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 17:05:21 UTC (rev 277478)
+++ PKGBUILD2017-12-30 18:16:01 UTC (rev 277479)
@@ -6,7 +6,7 @@
 
 pkgname=girara
 pkgver=0.2.8
-pkgrel=1
+pkgrel=2
 
 pkgdesc="User interface library focused on simplicity and minimalism"
 url="http://pwmt.org/projects/girara;


[arch-commits] Commit in kea-devel-docs (3 files)

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 17:05:21
  Author: zorun
Revision: 277478

archrelease: copy trunk to community-any

Added:
  kea-devel-docs/repos/
  kea-devel-docs/repos/community-any/
  kea-devel-docs/repos/community-any/PKGBUILD
(from rev 277477, kea-devel-docs/trunk/PKGBUILD)

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

Copied: kea-devel-docs/repos/community-any/PKGBUILD (from rev 277477, 
kea-devel-docs/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2017-12-30 17:05:21 UTC (rev 277478)
@@ -0,0 +1,33 @@
+# Maintainer: Baptiste Jonglez 
+pkgname='kea-devel-docs'
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='Developer documentation for Kea, a high-performance, extensible DHCP 
server engine'
+arch=('any')
+url='http://kea.isc.org'
+license=('MPL2')
+depends=()
+makedepends=('botan' 'boost' 'log4cplus' # Only here to make ./configure 
happy, not actually used.
+ 'libxslt' 'docbook-xsl' 'elinks' 'doxygen' 'graphviz')
+source=(https://ftp.isc.org/isc/kea/${pkgver}/kea-${pkgver}.tar.gz{,.asc})
+sha512sums=('4708485efe537d9af00b50da9a3f33b740edaf37d9bbfe96f5625e30715349c48ef8a32f5abb8320f00821aea642a5b7ecdbc9f0d323a71b7a07f46f1bed978b'
+'SKIP')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+build() {
+  cd "${srcdir}/kea-${pkgver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var'
+  make -C doc devel
+}
+
+package() {
+  cd "${srcdir}/kea-${pkgver}"
+  install -d "${pkgdir}/usr/share/doc/kea/"
+  cp -r doc/html "${pkgdir}/usr/share/doc/kea/devel"
+}


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 17:02:50
  Author: zorun
Revision: 277477

Revert unrelated changes introduced by mistake...

Modified:
  gobby/trunk/PKGBUILD
  libinfinity/trunk/PKGBUILD

+
 gobby/trunk/PKGBUILD   |   14 ++
 libinfinity/trunk/PKGBUILD |   21 +
 2 files changed, 15 insertions(+), 20 deletions(-)

Modified: gobby/trunk/PKGBUILD
===
--- gobby/trunk/PKGBUILD2017-12-30 16:58:36 UTC (rev 277476)
+++ gobby/trunk/PKGBUILD2017-12-30 17:02:50 UTC (rev 277477)
@@ -1,11 +1,11 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: Sergej Pupykin 
+# $Id$
+# Maintainer: Sergej Pupykin 
 # Contributor: William Rea 
-# Contributor: Angel 'angvp' Velasquez 
+# Maintainer: Angel 'angvp' Velasquez 
 
 pkgname=gobby
 pkgver=0.5.0
-pkgrel=6
+pkgrel=5
 pkgdesc="A collaborative text editor"
 arch=('x86_64')
 url="https://gobby.github.io/;
@@ -12,10 +12,8 @@
 license=('GPL')
 depends=('gtkmm' 'gtksourceview2' 'libinfinity' 'libxml++2.6')
 makedepends=('gnome-doc-utils' 'intltool')
-source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8ceb3598d27cfccdf9c9889b781c4c5c8e1731ca6beb183f5d4555644c06bd98'
-'SKIP')
-validpgpkeys=('B63A7560B25B619CA11E219225A941E879B57591') # Armin Burgmeier 

+source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
+sha256sums=('f45d0e0969fdd4ff57b43f7eae9f3f6d853c25e667a52f77d939510e19199480')
 
 build() {
   cd "$srcdir"/gobby-$pkgver

Modified: libinfinity/trunk/PKGBUILD
===
--- libinfinity/trunk/PKGBUILD  2017-12-30 16:58:36 UTC (rev 277476)
+++ libinfinity/trunk/PKGBUILD  2017-12-30 17:02:50 UTC (rev 277477)
@@ -1,24 +1,21 @@
 # $Id$
-# Maintainer: Baptiste Jonglez 
-# Contributor: Sergej Pupykin 
-# Contributor: Sven-Hendrik Haase 
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Gregory Haynes 
 
 pkgname=libinfinity
-pkgver=0.7.1
+pkgver=0.6.8
 pkgrel=1
-pkgdesc="A library to build collaborative text editors. Includes the infinoted 
server"
+pkgdesc="An implementation of the Infininote protocol written in GObject-based 
C"
 arch=('x86_64')
 url="http://gobby.github.io/;
 license=('GPL')
-depends=('gnutls' 'gsasl' 'glib2' 'libxml2' 'gobject-introspection-runtime')
-makedepends=('gtk-doc' 'gtk3' 'avahi' 'gobject-introspection')
+depends=('gnutls>=1.7.2' 'gsasl>=0.2.21' 'glib2>=2.16' 'libxml2>=2.0')
+makedepends=('gtk-doc' 'pkgconfig' 'gtk2')
 optdepends=('avahi: zeroconf support'
-'gtk3: gtk support')
-source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('626ee0841bfe24f471580cd17d906dd83b973cf4f10019574adfdfc5327482cb'
-'SKIP')
-validpgpkeys=('728834F3B8D552ED25CC1B1FB1C71544BF1D92C7') # Armin Burgmeier 

+'gtk2: gtk support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/libinfinity/archive/${pkgver}.tar.gz;)
+sha256sums=('aa058ee50dd62f9a6732a0e78ed2cef7df2c8174638ed398e040af9b7e988e81')
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver}


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

2017-12-30 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 30, 2017 @ 16:58:36
  Author: jlichtblau
Revision: 277476

archrelease: copy trunk to community-staging-x86_64

Added:
  luminancehdr/repos/community-staging-x86_64/
  luminancehdr/repos/community-staging-x86_64/PKGBUILD
(from rev 277475, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-staging-x86_64/luminancehdr.changelog
(from rev 277475, luminancehdr/trunk/luminancehdr.changelog)

+
 PKGBUILD   |   33 +++
 luminancehdr.changelog |   99 +++
 2 files changed, 132 insertions(+)

Copied: luminancehdr/repos/community-staging-x86_64/PKGBUILD (from rev 277475, 
luminancehdr/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 16:58:36 UTC (rev 277476)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dmitry N. Shilov 
+
+pkgname=luminancehdr
+pkgver=2.5.1
+pkgrel=6
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webengine' 
'qt5-svg'
+ 'qt5-webkit' 'ccfits' 'desktop-file-utils' 'hicolor-icon-theme' 
'boost-libs')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
+optdepends=('hugin: align image stack functionality')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2)
+sha256sums=('a8986e0afba434a2e9da7e8aed19cdb763fedc8de2655bdb496c4ee9d3f41696')
+
+build() {
+  cd "${srcdir}"/luminance-hdr-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/luminance-hdr-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: luminancehdr/repos/community-staging-x86_64/luminancehdr.changelog 
(from rev 277475, luminancehdr/trunk/luminancehdr.changelog)
===
--- community-staging-x86_64/luminancehdr.changelog 
(rev 0)
+++ community-staging-x86_64/luminancehdr.changelog 2017-12-30 16:58:36 UTC 
(rev 277476)
@@ -0,0 +1,99 @@
+2017-12-30 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-6 boost 1.66.0 rebuild
+
+2017-09-10 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-5 boost 1.65.1 rebuild
+
+2017-08-16 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-4 FS#55166 fix
+
+2017-07-14 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-3 exiv2 0.26 rebuild
+
+2017-06-24 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-2 gsl 2.4 rebuild
+
+2017-06-04 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-1
+
+2017-05-19 Jaroslav Lichtblau 
+   * luminancehdr 2.5.0-3 boost 1.64.0 rebuild
+
+2017-04-18 Jaroslav Lichtblau 
+   * luminancehdr 2.5.0-1
+
+2017-01-07 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-9 libraw 0.18 rebuild
+
+2016-05-01 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-8 pacman hooks rebuild
+
+2016-02-20 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-7 gsl 2.1 rebuild
+
+2015-08-27 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-5 libraw 0.17 rebuild
+
+2015-07-03 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-4 exiv2-0.25 rebuild
+
+2015-05-14 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-3
+
+2014-02-04 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-1
+
+2014-01-20 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-4 libraw rebuild
+
+2013-06-15 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-3 libraw rebuild
+
+2013-04-20 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-1
+
+2012-07-30 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
+
+2012-07-07 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-1
+
+2012-03-18 Jaroslav Lichtblau 
+   * luminancehdr 2.2.1-1
+
+2012-01-27 Eric Belanger  
+   * Rebuild against libpng 1.5 and libtiff 4.0
+
+2011-08-21 Jaroslav Lichtblau 
+   * luminancehdr 2.1.0-1
+
+2011-05-01 Jaroslav Lichtblau 
+   * luminancehdr 2.0.2-1
+
+2010-10-19 

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

2017-12-30 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 30, 2017 @ 16:58:14
  Author: jlichtblau
Revision: 277475

upgpkg: luminancehdr 2.5.1-6 - boost 1.66.0 rebuild

Modified:
  luminancehdr/trunk/PKGBUILD
  luminancehdr/trunk/luminancehdr.changelog

+
 PKGBUILD   |2 +-
 luminancehdr.changelog |3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 16:52:11 UTC (rev 277474)
+++ PKGBUILD2017-12-30 16:58:14 UTC (rev 277475)
@@ -5,7 +5,7 @@
 
 pkgname=luminancehdr
 pkgver=2.5.1
-pkgrel=5
+pkgrel=6
 pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
 arch=('x86_64')
 url='http://qtpfsgui.sourceforge.net/'

Modified: luminancehdr.changelog
===
--- luminancehdr.changelog  2017-12-30 16:52:11 UTC (rev 277474)
+++ luminancehdr.changelog  2017-12-30 16:58:14 UTC (rev 277475)
@@ -1,3 +1,6 @@
+2017-12-30 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-6 boost 1.66.0 rebuild
+
 2017-09-10 Jaroslav Lichtblau 
* luminancehdr 2.5.1-5 boost 1.65.1 rebuild
 


[arch-commits] Commit in (5 files)

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:52:11
  Author: zorun
Revision: 277474

Add kea-devel-docs (copied from kea split package)

Added:
  kea-devel-docs/
  kea-devel-docs/trunk/
  kea-devel-docs/trunk/PKGBUILD
Modified:
  gobby/trunk/PKGBUILD
  libinfinity/trunk/PKGBUILD

---+
 gobby/trunk/PKGBUILD  |   14 --
 kea-devel-docs/trunk/PKGBUILD |   33 +
 libinfinity/trunk/PKGBUILD|   21 -
 3 files changed, 53 insertions(+), 15 deletions(-)

Modified: gobby/trunk/PKGBUILD
===
--- gobby/trunk/PKGBUILD2017-12-30 16:50:07 UTC (rev 277473)
+++ gobby/trunk/PKGBUILD2017-12-30 16:52:11 UTC (rev 277474)
@@ -1,11 +1,11 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
 # Contributor: William Rea 
-# Maintainer: Angel 'angvp' Velasquez 
+# Contributor: Angel 'angvp' Velasquez 
 
 pkgname=gobby
 pkgver=0.5.0
-pkgrel=5
+pkgrel=6
 pkgdesc="A collaborative text editor"
 arch=('x86_64')
 url="https://gobby.github.io/;
@@ -12,8 +12,10 @@
 license=('GPL')
 depends=('gtkmm' 'gtksourceview2' 'libinfinity' 'libxml++2.6')
 makedepends=('gnome-doc-utils' 'intltool')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/gobby/archive/v$pkgver.tar.gz;)
-sha256sums=('f45d0e0969fdd4ff57b43f7eae9f3f6d853c25e667a52f77d939510e19199480')
+source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('8ceb3598d27cfccdf9c9889b781c4c5c8e1731ca6beb183f5d4555644c06bd98'
+'SKIP')
+validpgpkeys=('B63A7560B25B619CA11E219225A941E879B57591') # Armin Burgmeier 

 
 build() {
   cd "$srcdir"/gobby-$pkgver

Added: kea-devel-docs/trunk/PKGBUILD
===
--- kea-devel-docs/trunk/PKGBUILD   (rev 0)
+++ kea-devel-docs/trunk/PKGBUILD   2017-12-30 16:52:11 UTC (rev 277474)
@@ -0,0 +1,33 @@
+# Maintainer: Baptiste Jonglez 
+pkgname='kea-devel-docs'
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='Developer documentation for Kea, a high-performance, extensible DHCP 
server engine'
+arch=('any')
+url='http://kea.isc.org'
+license=('MPL2')
+depends=()
+makedepends=('botan' 'boost' 'log4cplus' # Only here to make ./configure 
happy, not actually used.
+ 'libxslt' 'docbook-xsl' 'elinks' 'doxygen' 'graphviz')
+source=(https://ftp.isc.org/isc/kea/${pkgver}/kea-${pkgver}.tar.gz{,.asc})
+sha512sums=('4708485efe537d9af00b50da9a3f33b740edaf37d9bbfe96f5625e30715349c48ef8a32f5abb8320f00821aea642a5b7ecdbc9f0d323a71b7a07f46f1bed978b'
+'SKIP')
+validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
+
+build() {
+  cd "${srcdir}/kea-${pkgver}"
+  autoreconf --install
+  ./configure \
+  --prefix='/usr' \
+  --sbindir='/usr/bin' \
+  --libexecdir='/usr/bin' \
+  --sysconfdir='/etc' \
+  --localstatedir='/var'
+  make -C doc devel
+}
+
+package() {
+  cd "${srcdir}/kea-${pkgver}"
+  install -d "${pkgdir}/usr/share/doc/kea/"
+  cp -r doc/html "${pkgdir}/usr/share/doc/kea/devel"
+}

Modified: libinfinity/trunk/PKGBUILD
===
--- libinfinity/trunk/PKGBUILD  2017-12-30 16:50:07 UTC (rev 277473)
+++ libinfinity/trunk/PKGBUILD  2017-12-30 16:52:11 UTC (rev 277474)
@@ -1,21 +1,24 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Baptiste Jonglez 
+# Contributor: Sergej Pupykin 
+# Contributor: Sven-Hendrik Haase 
 # Contributor: Gregory Haynes 
 
 pkgname=libinfinity
-pkgver=0.6.8
+pkgver=0.7.1
 pkgrel=1
-pkgdesc="An implementation of the Infininote protocol written in GObject-based 
C"
+pkgdesc="A library to build collaborative text editors. Includes the infinoted 
server"
 arch=('x86_64')
 url="http://gobby.github.io/;
 license=('GPL')
-depends=('gnutls>=1.7.2' 'gsasl>=0.2.21' 'glib2>=2.16' 'libxml2>=2.0')
-makedepends=('gtk-doc' 'pkgconfig' 'gtk2')
+depends=('gnutls' 'gsasl' 'glib2' 'libxml2' 'gobject-introspection-runtime')
+makedepends=('gtk-doc' 'gtk3' 'avahi' 'gobject-introspection')
 optdepends=('avahi: zeroconf support'
-'gtk2: gtk support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gobby/libinfinity/archive/${pkgver}.tar.gz;)
-sha256sums=('aa058ee50dd62f9a6732a0e78ed2cef7df2c8174638ed398e040af9b7e988e81')
+'gtk3: gtk support')
+source=(http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('626ee0841bfe24f471580cd17d906dd83b973cf4f10019574adfdfc5327482cb'
+  

[arch-commits] Commit in kea/repos/community-staging-x86_64 (15 files)

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:50:07
  Author: zorun
Revision: 277473

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 277472, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/add-missing-header.patch
(from rev 277472, kea/trunk/add-missing-header.patch)
  kea/repos/community-staging-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 277472, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 277472, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 277472, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 277472, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 277472, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-staging-x86_64/LICENSE
  kea/repos/community-staging-x86_64/PKGBUILD
  kea/repos/community-staging-x86_64/add-missing-header.patch
  kea/repos/community-staging-x86_64/asiolink-fix-build-with-boost-1.66.patch
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
  kea/repos/community-staging-x86_64/kea-dhcp4.service
  kea/repos/community-staging-x86_64/kea-dhcp6.service
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf

--+
 LICENSE  |  374 -
 PKGBUILD |  177 ++---
 add-missing-header.patch |   36 +-
 asiolink-fix-build-with-boost-1.66.patch |  198 +++
 fix-scripts-include-path.patch   |  324 -
 kea-dhcp4.service|   24 -
 kea-dhcp6.service|   24 -
 tmpfiles-kea.conf|2 
 8 files changed, 383 insertions(+), 776 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-30 16:48:44 UTC (rev 277472)
+++ LICENSE 2017-12-30 16:50:07 UTC (rev 277473)
@@ -1,374 +0,0 @@
-Mozilla Public License Version 2.0
-==
-
-1. Definitions
---
-
-1.1. "Contributor"
-means each individual or legal entity that creates, contributes to
-the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-means the combination of the Contributions of others (if any) used
-by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-means Source Code Form to which the initial Contributor has attached
-the notice in Exhibit A, the Executable Form of such Source Code
-Form, and Modifications of such Source Code Form, in each case
-including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-means
-
-(a) that the initial Contributor has attached the notice described
-in Exhibit B to the Covered Software; or
-
-(b) that the Covered Software was made available under the terms of
-version 1.1 or earlier of the License, but not also under the
-terms of a Secondary License.
-
-1.6. "Executable Form"
-means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-means a work that combines Covered Software with other material, in
-a separate file or files, that is not Covered Software.
-
-1.8. "License"
-means this document.
-
-1.9. "Licensable"
-means having the right to grant, to the maximum extent possible,
-whether at the time of the initial grant or subsequently, any and
-all of the rights conveyed by this License.
-
-1.10. "Modifications"
-means any of the following:
-
-(a) any file in Source Code Form that results from an addition to,
-deletion from, or modification of the contents of Covered
-Software; or
-
-(b) any new file in Source Code Form that contains any Covered
-Software.
-
-1.11. "Patent Claims" of a Contributor
-means any patent claim(s), including without limitation, method,
-process, and apparatus claims, in any patent Licensable by such
-Contributor that would be infringed, but for the grant of the
-License, by the making, using, selling, offering for sale, having
-made, import, or transfer of either its Contributions or its
-Contributor Version.
-
-1.12. "Secondary License"
-means either the GNU General Public License, Version 2.0, the GNU
-Lesser General Public License, Version 2.1, the GNU Affero General
-Public License, Version 3.0, or any later versions of those
-licenses.
-
-1.13. "Source Code Form"
-means the form of the work preferred for making modifications.
-
-1.14. "You" (or "Your")
-means an individual or a legal entity 

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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:48:44
  Author: zorun
Revision: 277472

kea: revert 277469, this was meant to go in community-staging

Added:
  kea/repos/community-x86_64/LICENSE
(from rev 277468, kea/repos/community-x86_64/LICENSE)
  kea/repos/community-x86_64/PKGBUILD
(from rev 277468, kea/trunk/PKGBUILD)
  kea/repos/community-x86_64/add-missing-header.patch
(from rev 277468, kea/trunk/add-missing-header.patch)
  kea/repos/community-x86_64/fix-scripts-include-path.patch
(from rev 277468, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-x86_64/kea-dhcp4.service
(from rev 277468, kea/trunk/kea-dhcp4.service)
  kea/repos/community-x86_64/kea-dhcp6.service
(from rev 277468, kea/trunk/kea-dhcp6.service)
  kea/repos/community-x86_64/tmpfiles-kea.conf
(from rev 277468, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-x86_64/PKGBUILD
  kea/repos/community-x86_64/add-missing-header.patch
  kea/repos/community-x86_64/asiolink-fix-build-with-boost-1.66.patch
  kea/repos/community-x86_64/fix-scripts-include-path.patch
  kea/repos/community-x86_64/kea-dhcp4.service
  kea/repos/community-x86_64/kea-dhcp6.service
  kea/repos/community-x86_64/tmpfiles-kea.conf

--+
 LICENSE  |  374 +
 PKGBUILD |  173 +++--
 add-missing-header.patch |   36 +-
 asiolink-fix-build-with-boost-1.66.patch |   99 ---
 fix-scripts-include-path.patch   |  324 -
 kea-dhcp4.service|   24 -
 kea-dhcp6.service|   24 -
 tmpfiles-kea.conf|2 
 8 files changed, 673 insertions(+), 383 deletions(-)

Copied: kea/repos/community-x86_64/LICENSE (from rev 277468, 
kea/repos/community-x86_64/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-12-30 16:48:44 UTC (rev 277472)
@@ -0,0 +1,374 @@
+Mozilla Public License Version 2.0
+==
+
+1. Definitions
+--
+
+1.1. "Contributor"
+means each individual or legal entity that creates, contributes to
+the creation of, or owns Covered Software.
+
+1.2. "Contributor Version"
+means the combination of the Contributions of others (if any) used
+by a Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution"
+means Covered Software of a particular Contributor.
+
+1.4. "Covered Software"
+means Source Code Form to which the initial Contributor has attached
+the notice in Exhibit A, the Executable Form of such Source Code
+Form, and Modifications of such Source Code Form, in each case
+including portions thereof.
+
+1.5. "Incompatible With Secondary Licenses"
+means
+
+(a) that the initial Contributor has attached the notice described
+in Exhibit B to the Covered Software; or
+
+(b) that the Covered Software was made available under the terms of
+version 1.1 or earlier of the License, but not also under the
+terms of a Secondary License.
+
+1.6. "Executable Form"
+means any form of the work other than Source Code Form.
+
+1.7. "Larger Work"
+means a work that combines Covered Software with other material, in
+a separate file or files, that is not Covered Software.
+
+1.8. "License"
+means this document.
+
+1.9. "Licensable"
+means having the right to grant, to the maximum extent possible,
+whether at the time of the initial grant or subsequently, any and
+all of the rights conveyed by this License.
+
+1.10. "Modifications"
+means any of the following:
+
+(a) any file in Source Code Form that results from an addition to,
+deletion from, or modification of the contents of Covered
+Software; or
+
+(b) any new file in Source Code Form that contains any Covered
+Software.
+
+1.11. "Patent Claims" of a Contributor
+means any patent claim(s), including without limitation, method,
+process, and apparatus claims, in any patent Licensable by such
+Contributor that would be infringed, but for the grant of the
+License, by the making, using, selling, offering for sale, having
+made, import, or transfer of either its Contributions or its
+Contributor Version.
+
+1.12. "Secondary License"
+means either the GNU General Public License, Version 2.0, the GNU
+Lesser General Public License, Version 2.1, the GNU Affero General
+Public License, Version 3.0, or any later versions of those
+licenses.
+
+1.13. "Source Code Form"
+means the form of the work preferred for making modifications.
+
+1.14. "You" (or "Your")
+means an individual or a legal entity exercising rights under this
+License. For legal entities, "You" includes any entity that
+controls, is controlled by, or 

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

2017-12-30 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 30, 2017 @ 16:41:31
  Author: jlichtblau
Revision: 277470

upgpkg: perl-tidy 20171214-1 - new upstream release

Modified:
  perl-tidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 16:41:30 UTC (rev 277469)
+++ PKGBUILD2017-12-30 16:41:31 UTC (rev 277470)
@@ -1,9 +1,10 @@
 # $Id$
 # Maintainer: Sergej Pupykin 
-# Maintainer: Firmicus 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Firmicus 
 
 pkgname=perl-tidy
-pkgver=20170521
+pkgver=20171214
 pkgrel=1
 pkgdesc="Parses and beautifies perl source"
 arch=('any')
@@ -12,7 +13,7 @@
 depends=('perl>=5.10.0')
 options=('!emptydirs')
 source=(https://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
-sha256sums=('01b3f178c13ac24154a0ee2a62d3ce3f29cfcc6b327b0b3021094e00309ea4da')
+sha256sums=('d664af2aa99eba6a0f4a39586ccc8df774c13878d8cf5cd17edac668949f')
 
 build() {
   cd  "$srcdir"/Perl-Tidy-$pkgver


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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:41:30
  Author: zorun
Revision: 277469

archrelease: copy trunk to community-x86_64

Added:
  kea/repos/community-x86_64/PKGBUILD
(from rev 277468, kea/trunk/PKGBUILD)
  kea/repos/community-x86_64/add-missing-header.patch
(from rev 277468, kea/trunk/add-missing-header.patch)
  kea/repos/community-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 277468, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-x86_64/fix-scripts-include-path.patch
(from rev 277468, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-x86_64/kea-dhcp4.service
(from rev 277468, kea/trunk/kea-dhcp4.service)
  kea/repos/community-x86_64/kea-dhcp6.service
(from rev 277468, kea/trunk/kea-dhcp6.service)
  kea/repos/community-x86_64/tmpfiles-kea.conf
(from rev 277468, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-x86_64/LICENSE
  kea/repos/community-x86_64/PKGBUILD
  kea/repos/community-x86_64/add-missing-header.patch
  kea/repos/community-x86_64/fix-scripts-include-path.patch
  kea/repos/community-x86_64/kea-dhcp4.service
  kea/repos/community-x86_64/kea-dhcp6.service
  kea/repos/community-x86_64/tmpfiles-kea.conf

--+
 LICENSE  |  374 -
 PKGBUILD |  173 ++---
 add-missing-header.patch |   36 +-
 asiolink-fix-build-with-boost-1.66.patch |   99 +++
 fix-scripts-include-path.patch   |  324 -
 kea-dhcp4.service|   24 -
 kea-dhcp6.service|   24 -
 tmpfiles-kea.conf|2 
 8 files changed, 383 insertions(+), 673 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-30 16:41:08 UTC (rev 277468)
+++ LICENSE 2017-12-30 16:41:30 UTC (rev 277469)
@@ -1,374 +0,0 @@
-Mozilla Public License Version 2.0
-==
-
-1. Definitions
---
-
-1.1. "Contributor"
-means each individual or legal entity that creates, contributes to
-the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-means the combination of the Contributions of others (if any) used
-by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-means Source Code Form to which the initial Contributor has attached
-the notice in Exhibit A, the Executable Form of such Source Code
-Form, and Modifications of such Source Code Form, in each case
-including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-means
-
-(a) that the initial Contributor has attached the notice described
-in Exhibit B to the Covered Software; or
-
-(b) that the Covered Software was made available under the terms of
-version 1.1 or earlier of the License, but not also under the
-terms of a Secondary License.
-
-1.6. "Executable Form"
-means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-means a work that combines Covered Software with other material, in
-a separate file or files, that is not Covered Software.
-
-1.8. "License"
-means this document.
-
-1.9. "Licensable"
-means having the right to grant, to the maximum extent possible,
-whether at the time of the initial grant or subsequently, any and
-all of the rights conveyed by this License.
-
-1.10. "Modifications"
-means any of the following:
-
-(a) any file in Source Code Form that results from an addition to,
-deletion from, or modification of the contents of Covered
-Software; or
-
-(b) any new file in Source Code Form that contains any Covered
-Software.
-
-1.11. "Patent Claims" of a Contributor
-means any patent claim(s), including without limitation, method,
-process, and apparatus claims, in any patent Licensable by such
-Contributor that would be infringed, but for the grant of the
-License, by the making, using, selling, offering for sale, having
-made, import, or transfer of either its Contributions or its
-Contributor Version.
-
-1.12. "Secondary License"
-means either the GNU General Public License, Version 2.0, the GNU
-Lesser General Public License, Version 2.1, the GNU Affero General
-Public License, Version 3.0, or any later versions of those
-licenses.
-
-1.13. "Source Code Form"
-means the form of the work preferred for making modifications.
-
-1.14. "You" (or "Your")
-means an individual or a legal entity exercising rights under this
-License. For legal entities, "You" includes any entity that
-controls, is controlled by, or is under common control with You. For
-purposes of this definition, 

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

2017-12-30 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 30, 2017 @ 16:41:53
  Author: jlichtblau
Revision: 277471

archrelease: copy trunk to community-any

Added:
  perl-tidy/repos/community-any/PKGBUILD
(from rev 277470, perl-tidy/trunk/PKGBUILD)
Deleted:
  perl-tidy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 16:41:31 UTC (rev 277470)
+++ PKGBUILD2017-12-30 16:41:53 UTC (rev 277471)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Firmicus 
-
-pkgname=perl-tidy
-pkgver=20170521
-pkgrel=1
-pkgdesc="Parses and beautifies perl source"
-arch=('any')
-url="http://search.cpan.org/dist/Perl-Tidy;
-license=('GPL' 'PerlArtistic')
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
-sha256sums=('01b3f178c13ac24154a0ee2a62d3ce3f29cfcc6b327b0b3021094e00309ea4da')
-
-build() {
-  cd  "$srcdir"/Perl-Tidy-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Perl-Tidy-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-tidy/repos/community-any/PKGBUILD (from rev 277470, 
perl-tidy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-30 16:41:53 UTC (rev 277471)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Firmicus 
+
+pkgname=perl-tidy
+pkgver=20171214
+pkgrel=1
+pkgdesc="Parses and beautifies perl source"
+arch=('any')
+url="http://search.cpan.org/dist/Perl-Tidy;
+license=('GPL' 'PerlArtistic')
+depends=('perl>=5.10.0')
+options=('!emptydirs')
+source=(https://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
+sha256sums=('d664af2aa99eba6a0f4a39586ccc8df774c13878d8cf5cd17edac668949f')
+
+build() {
+  cd  "$srcdir"/Perl-Tidy-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Perl-Tidy-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}


[arch-commits] Commit in kea/trunk (LICENSE)

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:41:08
  Author: zorun
Revision: 277468

upgpkg: kea 1.3.0-3

Move kea-devel-docs to a separate package, remove license that is now in
the "licenses" package (MPL2).

Deleted:
  kea/trunk/LICENSE

-+
 LICENSE |  374 --
 1 file changed, 374 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-30 16:40:02 UTC (rev 277467)
+++ LICENSE 2017-12-30 16:41:08 UTC (rev 277468)
@@ -1,374 +0,0 @@
-Mozilla Public License Version 2.0
-==
-
-1. Definitions
---
-
-1.1. "Contributor"
-means each individual or legal entity that creates, contributes to
-the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-means the combination of the Contributions of others (if any) used
-by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-means Source Code Form to which the initial Contributor has attached
-the notice in Exhibit A, the Executable Form of such Source Code
-Form, and Modifications of such Source Code Form, in each case
-including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-means
-
-(a) that the initial Contributor has attached the notice described
-in Exhibit B to the Covered Software; or
-
-(b) that the Covered Software was made available under the terms of
-version 1.1 or earlier of the License, but not also under the
-terms of a Secondary License.
-
-1.6. "Executable Form"
-means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-means a work that combines Covered Software with other material, in
-a separate file or files, that is not Covered Software.
-
-1.8. "License"
-means this document.
-
-1.9. "Licensable"
-means having the right to grant, to the maximum extent possible,
-whether at the time of the initial grant or subsequently, any and
-all of the rights conveyed by this License.
-
-1.10. "Modifications"
-means any of the following:
-
-(a) any file in Source Code Form that results from an addition to,
-deletion from, or modification of the contents of Covered
-Software; or
-
-(b) any new file in Source Code Form that contains any Covered
-Software.
-
-1.11. "Patent Claims" of a Contributor
-means any patent claim(s), including without limitation, method,
-process, and apparatus claims, in any patent Licensable by such
-Contributor that would be infringed, but for the grant of the
-License, by the making, using, selling, offering for sale, having
-made, import, or transfer of either its Contributions or its
-Contributor Version.
-
-1.12. "Secondary License"
-means either the GNU General Public License, Version 2.0, the GNU
-Lesser General Public License, Version 2.1, the GNU Affero General
-Public License, Version 3.0, or any later versions of those
-licenses.
-
-1.13. "Source Code Form"
-means the form of the work preferred for making modifications.
-
-1.14. "You" (or "Your")
-means an individual or a legal entity exercising rights under this
-License. For legal entities, "You" includes any entity that
-controls, is controlled by, or is under common control with You. For
-purposes of this definition, "control" means (a) the power, direct
-or indirect, to cause the direction or management of such entity,
-whether by contract or otherwise, or (b) ownership of more than
-fifty percent (50%) of the outstanding shares or beneficial
-ownership of such entity.
-
-2. License Grants and Conditions
-
-
-2.1. Grants
-
-Each Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than patent or trademark)
-Licensable by such Contributor to use, reproduce, make available,
-modify, display, perform, distribute, and otherwise exploit its
-Contributions, either on an unmodified basis, with Modifications, or
-as part of a Larger Work; and
-
-(b) under Patent Claims of such Contributor to make, use, sell, offer
-for sale, have made, import, and otherwise transfer either its
-Contributions or its Contributor Version.
-
-2.2. Effective Date
-
-The licenses granted in Section 2.1 with respect to any Contribution
-become effective for each Contribution on the date the Contributor first
-distributes such Contribution.
-
-2.3. Limitations on Grant Scope
-
-The licenses granted in this Section 2 are the only rights granted under
-this License. No additional rights or licenses will be implied from the
-distribution or licensing of Covered Software under this License.
-Notwithstanding Section 2.1(b) 

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

2017-12-30 Thread Baptiste Jonglez via arch-commits
Date: Saturday, December 30, 2017 @ 16:40:02
  Author: zorun
Revision: 277467

upgpkg: kea 1.3.0-3

Move kea-devel-docs to a separate package

Modified:
  kea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 15:18:41 UTC (rev 277466)
+++ PKGBUILD2017-12-30 16:40:02 UTC (rev 277467)
@@ -1,9 +1,8 @@
 # Maintainer: Baptiste Jonglez 
 # Contributor: nfnty
-pkgbase='kea'
-pkgname=('kea' 'kea-devel-docs')
+pkgname='kea'
 pkgver=1.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
 arch=('x86_64')
 url='http://kea.isc.org'
@@ -11,8 +10,11 @@
 depends=('botan' 'boost-libs' 'log4cplus' 'libmariadbclient' 'postgresql-libs')
 makedepends=('boost'
  'postgresql' # Needed for some headers
- 'python' # kea-shell
-'libxslt' 'docbook-xsl' 'elinks' 'doxygen' 'graphviz') # Doc
+ 'python') # kea-shell
+optdepends=('mariadb: lease information database'
+'postgresql: lease information database'
+'python: to use kea-shell'
+'kea-devel-docs: developer documentation')
 # Checks are disabled for now
 #checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
 backup=('etc/kea/kea.conf' 'etc/kea/kea-ca.conf' # Config files up to Kea 1.2
@@ -21,7 +23,6 @@
 source=(https://ftp.isc.org/isc/kea/${pkgver}/kea-${pkgver}.tar.gz{,.asc}
 fix-scripts-include-path.patch
 asiolink-fix-build-with-boost-1.66.patch
-LICENSE
 tmpfiles-kea.conf
 kea-dhcp4.service
 kea-dhcp6.service)
@@ -29,7 +30,6 @@
 'SKIP'
 
'81874fd3a12f55ea23593b7248c7653450c3a6e5ba8e79c7c5fb40ab685b0dc5d4e29e50f1bd9018200731dba35f15e5d86c8005c94d14865d73e19983e5'
 
'2ac01524f70c95986cb64f8d0fc29612aec38c8ab95892469329ced071cf3660b4e9997b6e22a62765c244a9c68b41c4729aec8cfe03099e009ce858faa5c661'
-
'32a402845f82f89a8357208be666b58672d70cf30fc264f3093b89b4201bf73b57877a080ed123c9beb8e50cd5396092a6286c33e511b595efb1b43e196e3be1'
 
'13a473bea4f8a1ba40f5667b880010590c5fddecaa76c360113e977c9ab3898558141cda17000def7b1c592b7dc6f8d5a508752351c601f6484abd775b60d214'
 
'24fdd95fc25bcd6aaf21cec598f3d09715418705aadbb2403792b62f4d8789b1897aa65f5e68184612d0a2c1c6be4123491db2fc3b1d602f6e7c5cd6c2d278eb'
 
'f4d54483034ac5d2815a5a06cec84a20aa2849484630d7eeed4d9f2bd7cb96814f80d1f06da2f10b43eabdba0f79f4fb7befe06171001b7d1617844fe8813dae')
@@ -56,10 +56,8 @@
   --localstatedir='/var' \
   --with-dhcp-mysql \
   --with-dhcp-pgsql \
-  --enable-shell \
-  --enable-generate-docs
+  --enable-shell
   make
-  make -C doc devel
 }
 
 check() {
@@ -68,12 +66,7 @@
   #make check
 }
 
-package_kea() {
-  optdepends=('mariadb: Lease information database'
-  'postgresql: Lease information database'
-  'python: To use kea-shell'
-  'kea-devel-docs: development documentation')
-
+package() {
   cd "${srcdir}/kea-${pkgver}"
   make DESTDIR="${pkgdir}" install
   # Handle /var/run -> /run symlink
@@ -84,15 +77,3 @@
   install -Dm644 "${srcdir}"/kea-dhcp4.service 
"${pkgdir}"/usr/lib/systemd/system/kea-dhcp4.service
   install -Dm644 "${srcdir}"/kea-dhcp6.service 
"${pkgdir}"/usr/lib/systemd/system/kea-dhcp6.service
 }
-
-package_kea-devel-docs() {
-  pkgdesc="Development documentation for kea"
-  depends=()
-  backup=()
-
-  cd "${srcdir}/kea-${pkgver}"
-  install -d "${pkgdir}/usr/share/doc/kea/"
-  cp -r doc/html "${pkgdir}/usr/share/doc/kea/devel"
-  # License, see https://bugs.archlinux.org/task/31547
-  install -Dm644 "${srcdir}"/LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}


[arch-commits] Commit in kea/repos/community-staging-x86_64 (16 files)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 14:41:17
  Author: bpiotrowski
Revision: 277172

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/LICENSE
(from rev 277171, kea/trunk/LICENSE)
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 277171, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/add-missing-header.patch
(from rev 277171, kea/trunk/add-missing-header.patch)
  kea/repos/community-staging-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 277171, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 277171, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 277171, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 277171, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 277171, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-staging-x86_64/LICENSE
  kea/repos/community-staging-x86_64/PKGBUILD
  kea/repos/community-staging-x86_64/add-missing-header.patch
  kea/repos/community-staging-x86_64/asiolink-fix-build-with-boost-1.66.patch
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
  kea/repos/community-staging-x86_64/kea-dhcp4.service
  kea/repos/community-staging-x86_64/kea-dhcp6.service
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf

--+
 LICENSE  |  748 ++---
 PKGBUILD |  196 +++
 add-missing-header.patch |   36 -
 asiolink-fix-build-with-boost-1.66.patch |  198 +++
 fix-scripts-include-path.patch   |  324 ++--
 kea-dhcp4.service|   24 
 kea-dhcp6.service|   24 
 tmpfiles-kea.conf|2 
 8 files changed, 776 insertions(+), 776 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-30 14:39:04 UTC (rev 277171)
+++ LICENSE 2017-12-30 14:41:17 UTC (rev 277172)
@@ -1,374 +0,0 @@
-Mozilla Public License Version 2.0
-==
-
-1. Definitions
---
-
-1.1. "Contributor"
-means each individual or legal entity that creates, contributes to
-the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-means the combination of the Contributions of others (if any) used
-by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-means Source Code Form to which the initial Contributor has attached
-the notice in Exhibit A, the Executable Form of such Source Code
-Form, and Modifications of such Source Code Form, in each case
-including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-means
-
-(a) that the initial Contributor has attached the notice described
-in Exhibit B to the Covered Software; or
-
-(b) that the Covered Software was made available under the terms of
-version 1.1 or earlier of the License, but not also under the
-terms of a Secondary License.
-
-1.6. "Executable Form"
-means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-means a work that combines Covered Software with other material, in
-a separate file or files, that is not Covered Software.
-
-1.8. "License"
-means this document.
-
-1.9. "Licensable"
-means having the right to grant, to the maximum extent possible,
-whether at the time of the initial grant or subsequently, any and
-all of the rights conveyed by this License.
-
-1.10. "Modifications"
-means any of the following:
-
-(a) any file in Source Code Form that results from an addition to,
-deletion from, or modification of the contents of Covered
-Software; or
-
-(b) any new file in Source Code Form that contains any Covered
-Software.
-
-1.11. "Patent Claims" of a Contributor
-means any patent claim(s), including without limitation, method,
-process, and apparatus claims, in any patent Licensable by such
-Contributor that would be infringed, but for the grant of the
-License, by the making, using, selling, offering for sale, having
-made, import, or transfer of either its Contributions or its
-Contributor Version.
-
-1.12. "Secondary License"
-means either the GNU General Public License, Version 2.0, the GNU
-Lesser General Public License, Version 2.1, the GNU Affero General
-Public License, Version 3.0, or any later versions of those
-licenses.
-
-1.13. "Source Code Form"
-means the form of the work preferred for making modifications.
-
-1.14. 

[arch-commits] Commit in kea/repos (9 files)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 14:39:04
  Author: bpiotrowski
Revision: 277171

archrelease: copy trunk to community-staging-x86_64

Added:
  kea/repos/community-staging-x86_64/
  kea/repos/community-staging-x86_64/LICENSE
(from rev 277170, kea/trunk/LICENSE)
  kea/repos/community-staging-x86_64/PKGBUILD
(from rev 277170, kea/trunk/PKGBUILD)
  kea/repos/community-staging-x86_64/add-missing-header.patch
(from rev 277170, kea/trunk/add-missing-header.patch)
  kea/repos/community-staging-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 277170, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-staging-x86_64/fix-scripts-include-path.patch
(from rev 277170, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-staging-x86_64/kea-dhcp4.service
(from rev 277170, kea/trunk/kea-dhcp4.service)
  kea/repos/community-staging-x86_64/kea-dhcp6.service
(from rev 277170, kea/trunk/kea-dhcp6.service)
  kea/repos/community-staging-x86_64/tmpfiles-kea.conf
(from rev 277170, kea/trunk/tmpfiles-kea.conf)

--+
 LICENSE  |  374 +
 PKGBUILD |   98 +++
 add-missing-header.patch |   18 +
 asiolink-fix-build-with-boost-1.66.patch |   99 +++
 fix-scripts-include-path.patch   |  162 
 kea-dhcp4.service|   12 
 kea-dhcp6.service|   12 
 tmpfiles-kea.conf|1 
 8 files changed, 776 insertions(+)

Copied: kea/repos/community-staging-x86_64/LICENSE (from rev 277170, 
kea/trunk/LICENSE)
===
--- community-staging-x86_64/LICENSE(rev 0)
+++ community-staging-x86_64/LICENSE2017-12-30 14:39:04 UTC (rev 277171)
@@ -0,0 +1,374 @@
+Mozilla Public License Version 2.0
+==
+
+1. Definitions
+--
+
+1.1. "Contributor"
+means each individual or legal entity that creates, contributes to
+the creation of, or owns Covered Software.
+
+1.2. "Contributor Version"
+means the combination of the Contributions of others (if any) used
+by a Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution"
+means Covered Software of a particular Contributor.
+
+1.4. "Covered Software"
+means Source Code Form to which the initial Contributor has attached
+the notice in Exhibit A, the Executable Form of such Source Code
+Form, and Modifications of such Source Code Form, in each case
+including portions thereof.
+
+1.5. "Incompatible With Secondary Licenses"
+means
+
+(a) that the initial Contributor has attached the notice described
+in Exhibit B to the Covered Software; or
+
+(b) that the Covered Software was made available under the terms of
+version 1.1 or earlier of the License, but not also under the
+terms of a Secondary License.
+
+1.6. "Executable Form"
+means any form of the work other than Source Code Form.
+
+1.7. "Larger Work"
+means a work that combines Covered Software with other material, in
+a separate file or files, that is not Covered Software.
+
+1.8. "License"
+means this document.
+
+1.9. "Licensable"
+means having the right to grant, to the maximum extent possible,
+whether at the time of the initial grant or subsequently, any and
+all of the rights conveyed by this License.
+
+1.10. "Modifications"
+means any of the following:
+
+(a) any file in Source Code Form that results from an addition to,
+deletion from, or modification of the contents of Covered
+Software; or
+
+(b) any new file in Source Code Form that contains any Covered
+Software.
+
+1.11. "Patent Claims" of a Contributor
+means any patent claim(s), including without limitation, method,
+process, and apparatus claims, in any patent Licensable by such
+Contributor that would be infringed, but for the grant of the
+License, by the making, using, selling, offering for sale, having
+made, import, or transfer of either its Contributions or its
+Contributor Version.
+
+1.12. "Secondary License"
+means either the GNU General Public License, Version 2.0, the GNU
+Lesser General Public License, Version 2.1, the GNU Affero General
+Public License, Version 3.0, or any later versions of those
+licenses.
+
+1.13. "Source Code Form"
+means the form of the work preferred for making modifications.
+
+1.14. "You" (or "Your")
+means an individual or a legal entity exercising rights under this
+License. For legal entities, "You" includes any entity that
+controls, is controlled by, or is under common control with You. For
+purposes of this definition, "control" means (a) the power, direct
+or indirect, to cause the 

[arch-commits] Commit in kea/trunk (PKGBUILD asiolink-fix-build-with-boost-1.66.patch)

2017-12-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, December 30, 2017 @ 14:36:56
  Author: bpiotrowski
Revision: 277170

1.3.0-2: rebuild against boost 1.66

Added:
  kea/trunk/asiolink-fix-build-with-boost-1.66.patch
Modified:
  kea/trunk/PKGBUILD

--+
 PKGBUILD |6 +
 asiolink-fix-build-with-boost-1.66.patch |   99 +
 2 files changed, 104 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 14:35:24 UTC (rev 277169)
+++ PKGBUILD2017-12-30 14:36:56 UTC (rev 277170)
@@ -3,7 +3,7 @@
 pkgbase='kea'
 pkgname=('kea' 'kea-devel-docs')
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
 arch=('x86_64')
 url='http://kea.isc.org'
@@ -20,6 +20,7 @@
 
 source=(https://ftp.isc.org/isc/kea/${pkgver}/kea-${pkgver}.tar.gz{,.asc}
 fix-scripts-include-path.patch
+asiolink-fix-build-with-boost-1.66.patch
 LICENSE
 tmpfiles-kea.conf
 kea-dhcp4.service
@@ -27,6 +28,7 @@
 
sha512sums=('4708485efe537d9af00b50da9a3f33b740edaf37d9bbfe96f5625e30715349c48ef8a32f5abb8320f00821aea642a5b7ecdbc9f0d323a71b7a07f46f1bed978b'
 'SKIP'
 
'81874fd3a12f55ea23593b7248c7653450c3a6e5ba8e79c7c5fb40ab685b0dc5d4e29e50f1bd9018200731dba35f15e5d86c8005c94d14865d73e19983e5'
+
'2ac01524f70c95986cb64f8d0fc29612aec38c8ab95892469329ced071cf3660b4e9997b6e22a62765c244a9c68b41c4729aec8cfe03099e009ce858faa5c661'
 
'32a402845f82f89a8357208be666b58672d70cf30fc264f3093b89b4201bf73b57877a080ed123c9beb8e50cd5396092a6286c33e511b595efb1b43e196e3be1'
 
'13a473bea4f8a1ba40f5667b880010590c5fddecaa76c360113e977c9ab3898558141cda17000def7b1c592b7dc6f8d5a508752351c601f6484abd775b60d214'
 
'24fdd95fc25bcd6aaf21cec598f3d09715418705aadbb2403792b62f4d8789b1897aa65f5e68184612d0a2c1c6be4123491db2fc3b1d602f6e7c5cd6c2d278eb'
@@ -39,6 +41,8 @@
   # Also, it fallbacks to the absolute path inside the chrooted build dir,
   # which will certainly not exist on the target system...
   patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
+
+  patch -p1 < "${srcdir}"/asiolink-fix-build-with-boost-1.66.patch
 }
 
 build() {

Added: asiolink-fix-build-with-boost-1.66.patch
===
--- asiolink-fix-build-with-boost-1.66.patch(rev 0)
+++ asiolink-fix-build-with-boost-1.66.patch2017-12-30 14:36:56 UTC (rev 
277170)
@@ -0,0 +1,99 @@
+From 758f62a57395ce851f87a56af93409a36c69e5a7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
+Date: Sat, 30 Dec 2017 14:40:24 +0100
+Subject: [PATCH] asiolink: fix build with boost 1.66
+
+- use native_handle() for getting native socket type
+- use io_context instead of io_service
+---
+ src/lib/asiolink/io_acceptor.h | 4 
+ src/lib/asiolink/io_service.h  | 5 +
+ src/lib/asiolink/tcp_socket.h  | 4 
+ src/lib/asiolink/udp_socket.h  | 4 
+ src/lib/asiolink/unix_domain_socket.cc | 4 
+ 5 files changed, 21 insertions(+)
+
+diff --git a/src/lib/asiolink/io_acceptor.h b/src/lib/asiolink/io_acceptor.h
+index c493d34..913a328 100644
+--- a/src/lib/asiolink/io_acceptor.h
 b/src/lib/asiolink/io_acceptor.h
+@@ -47,7 +47,11 @@ public:
+ 
+ /// @brief Returns file descriptor of the underlying socket.
+ virtual int getNative() const {
++#if BOOST_VERSION < 106600
+ return (acceptor_->native());
++#else
++return (acceptor_->native_handle());
++#endif
+ }
+ 
+ /// @brief Opens acceptor socket given the endpoint.
+diff --git a/src/lib/asiolink/io_service.h b/src/lib/asiolink/io_service.h
+index e9e402d..e0832b2 100644
+--- a/src/lib/asiolink/io_service.h
 b/src/lib/asiolink/io_service.h
+@@ -11,7 +11,12 @@
+ 
+ namespace boost {
+ namespace asio {
++#if BOOST_VERSION < 106600
+ class io_service;
++#else
++class io_context;
++typedef io_context io_service;
++#endif
+ }
+ }
+ 
+diff --git a/src/lib/asiolink/tcp_socket.h b/src/lib/asiolink/tcp_socket.h
+index adf74d1..83b8264 100644
+--- a/src/lib/asiolink/tcp_socket.h
 b/src/lib/asiolink/tcp_socket.h
+@@ -75,7 +75,11 @@ public:
+ 
+ /// \brief Return file descriptor of underlying socket
+ virtual int getNative() const {
++#if BOOST_VERSION < 106600
+ return (socket_.native());
++#else
++return (socket_.native_handle());
++#endif
+ }
+ 
+ /// \brief Return protocol of socket
+diff --git a/src/lib/asiolink/udp_socket.h b/src/lib/asiolink/udp_socket.h
+index 07ba447..5b040cf 100644
+--- a/src/lib/asiolink/udp_socket.h
 b/src/lib/asiolink/udp_socket.h
+@@ -61,7 +61,11 @@ public:
+ 
+ /// \brief Return file descriptor of underlying socket
+ virtual int getNative() const {
++#if 

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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 14:35:04
  Author: felixonmars
Revision: 277168

upgpkg: haskell-jose 0.6.0.3-9

rebuild with text,1.2.3.0

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 14:33:43 UTC (rev 277167)
+++ PKGBUILD2017-12-30 14:35:04 UTC (rev 277168)
@@ -5,7 +5,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.6.0.3
-pkgrel=8
+pkgrel=9
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 14:35:24
  Author: felixonmars
Revision: 277169

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-jose/repos/community-staging-x86_64/PKGBUILD (from rev 277168, 
haskell-jose/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 14:35:24 UTC (rev 277169)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=9
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+mv "$pkgdir"/usr/bin/{,jose-}example
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 14:33:43
  Author: felixonmars
Revision: 277167

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 277166, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 14:33:43 UTC (rev 277167)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.6.3
+pkgrel=6
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-bindings-uname'
+ 'haskell-blaze-builder' 'haskell-clock' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo' 
'haskell-exceptions'
+ 'haskell-extra' 'haskell-fast-logger' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hastache' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-microlens-mtl' 'haskell-mintty' 
'haskell-monad-logger'
+ 'haskell-mono-traversable' 'haskell-mtl' '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-pid1' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resourcet' 'haskell-retry' 
'haskell-semigroups'
+ 'haskell-split' 'haskell-stm' 'haskell-store' 'haskell-store-core'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-text'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-unicode-transforms'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;)
+sha512sums=('28cb4d65fdcfdb999ef9ef853629b1590cde3fdd736c768c1e41350dec3a8dd3dae8519acef17eca6665c50f46fb3958cc2b9347a10b627842c47c0b9b0cd175')
+
+prepare() {
+  cd $pkgname-$pkgver
+  hpack
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -fintegration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test || warning "Expected 4 failures on Arch currently"
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: 

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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 14:33:23
  Author: felixonmars
Revision: 277166

upgpkg: stack 1.6.3-6

rebuild with text,1.2.3.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 14:24:37 UTC (rev 277165)
+++ PKGBUILD2017-12-30 14:33:23 UTC (rev 277166)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.6.3
-pkgrel=5
+pkgrel=6
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-12-30 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 30, 2017 @ 14:24:37
  Author: bisson
Revision: 277165

archrelease: copy trunk to community-x86_64

Added:
  subsurface/repos/community-x86_64/PKGBUILD
(from rev 277164, subsurface/trunk/PKGBUILD)
Deleted:
  subsurface/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 14:23:24 UTC (rev 277164)
+++ PKGBUILD2017-12-30 14:24:37 UTC (rev 277165)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface
-_pkgname=Subsurface
-pkgver=4.7.5
-pkgrel=1
-pkgdesc='Divelog program'
-url='https://subsurface-divelog.org/'
-license=('GPL2')
-arch=('x86_64')
-makedepends=('cmake' 'asciidoc' 'qt5-tools')
-depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
- 'subsurface-libdc' 'qt5-svg' 'qt5-location'
- 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps')
-source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('02ad73ec10eb6dec8de5c81049a4595da4db96467b622b5826992a216bb61563')
-
-# qt5-webkit still used for: printing, manual, facebook
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   install -d build
-   cd build
-   cmake \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \
-   ..
-   make
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: subsurface/repos/community-x86_64/PKGBUILD (from rev 277164, 
subsurface/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-30 14:24:37 UTC (rev 277165)
@@ -0,0 +1,38 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.7.6
+pkgrel=1
+pkgdesc='Divelog program'
+url='https://subsurface-divelog.org/'
+license=('GPL2')
+arch=('x86_64')
+makedepends=('cmake' 'asciidoc' 'qt5-tools')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'qt5-svg' 'qt5-location'
+ 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps')
+source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha256sums=('cf9b14a3b4b6e3fc2a74c2c6b9c850640fd4d9ea1df720e04ce00dd6bfc3884b')
+
+# qt5-webkit still used for: printing, manual, facebook
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   install -d build
+   cd build
+   cmake \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \
+   ..
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2017-12-30 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 30, 2017 @ 14:23:24
  Author: bisson
Revision: 277164

upstream update

Modified:
  subsurface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 14:16:48 UTC (rev 277163)
+++ PKGBUILD2017-12-30 14:23:24 UTC (rev 277164)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface
 _pkgname=Subsurface
-pkgver=4.7.5
+pkgver=4.7.6
 pkgrel=1
 pkgdesc='Divelog program'
 url='https://subsurface-divelog.org/'
@@ -15,7 +15,7 @@
  'subsurface-libdc' 'qt5-svg' 'qt5-location'
  'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps')
 source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('02ad73ec10eb6dec8de5c81049a4595da4db96467b622b5826992a216bb61563')
+sha256sums=('cf9b14a3b4b6e3fc2a74c2c6b9c850640fd4d9ea1df720e04ce00dd6bfc3884b')
 
 # qt5-webkit still used for: printing, manual, facebook
 


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

2017-12-30 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 30, 2017 @ 14:03:29
  Author: bisson
Revision: 277162

archrelease: copy trunk to community-x86_64

Added:
  subsurface-libdc/repos/community-x86_64/PKGBUILD
(from rev 277161, subsurface-libdc/trunk/PKGBUILD)
Deleted:
  subsurface-libdc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-30 14:02:57 UTC (rev 277161)
+++ PKGBUILD2017-12-30 14:03:29 UTC (rev 277162)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface-libdc
-_pkgname=libdivecomputer-subsurface-branch
-pkgver=4.7.5
-pkgrel=1
-pkgdesc='Library for communication with dive computers'
-url='https://github.com/Subsurface-divelog/libdc'
-license=('LGPL')
-arch=('x86_64')
-source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('9d485965e8c0e5d31f56ccbc6ebcd5c689d7db9ad6a34e1d3564f9c35eb54ff7')
-
-conflicts=('libdivecomputer')
-provides=('libdivecomputer')
-replaces=('libdivecomputer')
-
-build() {
-   cd "${srcdir}/${_pkgname}"
-   autoreconf --install
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: subsurface-libdc/repos/community-x86_64/PKGBUILD (from rev 277161, 
subsurface-libdc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-30 14:03:29 UTC (rev 277162)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.7.6
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='https://github.com/Subsurface-divelog/libdc'
+license=('LGPL')
+arch=('x86_64')
+source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha256sums=('571f2c730dc1b920526050aa9f69753987a774fb7f9951fb7ad222e510aaee0e')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2017-12-30 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 30, 2017 @ 14:02:57
  Author: bisson
Revision: 277161

upstream update

Modified:
  subsurface-libdc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 13:10:48 UTC (rev 277160)
+++ PKGBUILD2017-12-30 14:02:57 UTC (rev 277161)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface-libdc
 _pkgname=libdivecomputer-subsurface-branch
-pkgver=4.7.5
+pkgver=4.7.6
 pkgrel=1
 pkgdesc='Library for communication with dive computers'
 url='https://github.com/Subsurface-divelog/libdc'
@@ -11,7 +11,7 @@
 license=('LGPL')
 arch=('x86_64')
 source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('9d485965e8c0e5d31f56ccbc6ebcd5c689d7db9ad6a34e1d3564f9c35eb54ff7')
+sha256sums=('571f2c730dc1b920526050aa9f69753987a774fb7f9951fb7ad222e510aaee0e')
 
 conflicts=('libdivecomputer')
 provides=('libdivecomputer')
@@ -18,7 +18,7 @@
 replaces=('libdivecomputer')
 
 build() {
-   cd "${srcdir}/${_pkgname}"
+   cd "${srcdir}/${_pkgname}-${pkgver}"
autoreconf --install
./configure --prefix=/usr
make
@@ -25,6 +25,6 @@
 }
 
 package() {
-   cd "${srcdir}/${_pkgname}"
+   cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
 }


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:10:48
  Author: felixonmars
Revision: 277160

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
277159, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 13:10:48 UTC (rev 277160)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.0.0
+pkgrel=6
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-file-embed' 
'haskell-mtl'
+ 'haskell-open-browser' 'haskell-optparse-applicative' 'pandoc' 
'haskell-pandoc-types'
+ 'haskell-roman-numerals' 'haskell-syb' 'haskell-text' 
'haskell-utility-ht')
+makedepends=('ghc')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('1a7e50a16b39a7d348901c58d1da177f9f2f941d4ce52c9f6a45e84c45d3e74a3f5c8dfe98ec7e2b922ffacf5fefc39778d393dc62832e2f81caf7d967e41826')
+
+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
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:10:26
  Author: felixonmars
Revision: 277159

upgpkg: pandoc-crossref 0.3.0.0-6

rebuild with text,1.2.3.0

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 13:09:21 UTC (rev 277158)
+++ PKGBUILD2017-12-30 13:10:26 UTC (rev 277159)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:09:21
  Author: felixonmars
Revision: 277158

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
277157, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 13:09:21 UTC (rev 277158)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.10.0.0
+pkgrel=8
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-fsnotify' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-lrucache' 'haskell-mtl' 'haskell-network' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-parsec'
+ 'haskell-random' 'haskell-regex-base' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-scientific' 'haskell-system-filepath' 'haskell-tagsoup' 
'haskell-text'
+ '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=('17c5986ba3a522d081067e7d728113311b918289c2b35da372d5804d1606fe58494249b3acc9e0988a0608f8d9715eace172f6e64fed1e45625b791410a61d37')
+
+prepare() {
+sed -e 's/tasty  >= 0.11 && < 0.12,/tasty,/' \
+-e 's/tasty-hunit>= 0.9  && < 0.10,/tasty-hunit,/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_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
+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 "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:09:00
  Author: felixonmars
Revision: 277157

upgpkg: haskell-hakyll 4.10.0.0-8

rebuild with text,1.2.3.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 13:07:01 UTC (rev 277156)
+++ PKGBUILD2017-12-30 13:09:00 UTC (rev 277157)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.10.0.0
-pkgrel=7
+pkgrel=8
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:07:01
  Author: felixonmars
Revision: 277156

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
277155, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 13:07:01 UTC (rev 277156)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.12.2
+pkgrel=3
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-mtl' 
'haskell-old-locale' 'pandoc'
+ 'haskell-pandoc-types' 'haskell-parsec' 'haskell-rfc5051' 
'haskell-setenv' 'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-text' 
'haskell-text-icu'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-xml-conduit' 
'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('e706a8c4d202ac026563ed763295947809dc4baa70ee1f6a4d147e5b2a7acefc6e50f2b49fa387e682541c23a8102b5cd8e35fb3ecbddc10f417d4007b1f08dd')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+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}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:06:29
  Author: felixonmars
Revision: 277155

upgpkg: pandoc-citeproc 0.12.2-3

rebuild with text,1.2.3.0

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 13:03:32 UTC (rev 277154)
+++ PKGBUILD2017-12-30 13:06:29 UTC (rev 277155)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.12.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:03:32
  Author: felixonmars
Revision: 277154

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 277153, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 13:03:32 UTC (rev 277154)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.0.5
+pkgrel=6
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-aeson-pretty" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-case-insensitive" "haskell-cmark-gfm"
+ "haskell-data-default" "haskell-doctemplates" "haskell-glob" 
"haskell-mtl"
+ "haskell-haddock-library" "haskell-skylighting" "haskell-hslua" 
"haskell-hslua-module-text"
+ "haskell-http-client" "haskell-syb" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-safe" "haskell-split" "haskell-text" "haskell-texmath" 
"haskell-network"
+ "haskell-pandoc-types" "haskell-parsec" "haskell-random" 
"haskell-scientific"
+ "haskell-tagsoup" "haskell-temporary" "haskell-network-uri" 
"haskell-unordered-containers"
+ "haskell-zip-archive" "haskell-vector" "haskell-xml" "haskell-yaml" 
"haskell-zlib")
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9235255b8a421bf072e37074ee435635f8b32bc5efc38b8ef1629cb19c9d08a300d498185e32f589c58e312cfcf3f5e5dbed06fc29537f329de428015c701430')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -f-trypandoc -f-embed_data_files 
-f-weigh-pandoc -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 13:03:10
  Author: felixonmars
Revision: 277153

upgpkg: pandoc 2.0.5-6

rebuild with text,1.2.3.0

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:54:05 UTC (rev 277152)
+++ PKGBUILD2017-12-30 13:03:10 UTC (rev 277153)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.0.5
-pkgrel=5
+pkgrel=6
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


[arch-commits] Commit in haskell-hslua-module-text/repos (2 files)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:54:05
  Author: felixonmars
Revision: 277152

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hslua-module-text/repos/community-staging-x86_64/
  haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD
(from rev 277151, haskell-hslua-module-text/trunk/PKGBUILD)

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

Copied: haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD (from 
rev 277151, haskell-hslua-module-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:54:05 UTC (rev 277152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua-module-text
+pkgname=haskell-hslua-module-text
+pkgver=0.1.2.1
+pkgrel=4
+pkgdesc="Lua module for text"
+url="https://github.com/hslua/hslua-module-test;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hslua' 'haskell-text')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('06f6b5611d452479e99772bbd1eb622f56740a5fc17091cd5c49e13dacb5654deb6d073fe2f40ffb7240ab9267ea3c59d0282ef8f55fce9095525b3d29a73513')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_hkgname}-${pkgver}"
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_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-hslua-module-text/trunk (PKGBUILD)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:53:43
  Author: felixonmars
Revision: 277151

upgpkg: haskell-hslua-module-text 0.1.2.1-4

rebuild with text,1.2.3.0

Modified:
  haskell-hslua-module-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:53:09 UTC (rev 277150)
+++ PKGBUILD2017-12-30 12:53:43 UTC (rev 277151)
@@ -5,7 +5,7 @@
 _hkgname=hslua-module-text
 pkgname=haskell-hslua-module-text
 pkgver=0.1.2.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Lua module for text"
 url="https://github.com/hslua/hslua-module-test;
 license=("MIT")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:53:09
  Author: felixonmars
Revision: 277150

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hslua/repos/community-staging-x86_64/PKGBUILD (from rev 277149, 
haskell-hslua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:53:09 UTC (rev 277150)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua
+pkgname=haskell-hslua
+pkgver=0.9.3
+pkgrel=2
+pkgdesc="A Lua language interpreter embedding in Haskell"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'lua' 'haskell-exceptions' 'haskell-mtl' 'haskell-text')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b0d1703610b210a2c9e760aebf278d46b425f424bd9163a282284b1118818679ffb86f4b2a096f1515dd2cbbd9ded123a65c04749b64c16172828908395eb1e4')
+
+prepare() {
+sed -e '/, fail/d' \
+-e 's/pkgconfig-depends: lua5.3/pkgconfig-depends: lua53/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_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-luajit -f-apicheck -fsystem-lua -f-lua_32bits -fallow-unsafe-gc 
-fexport-dynamic -f-lua501 -f-lua502 -fuse-pkgconfig
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_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 "COPYRIGHT" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:52:47
  Author: felixonmars
Revision: 277149

upgpkg: haskell-hslua 0.9.3-2

rebuild with text,1.2.3.0

Modified:
  haskell-hslua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:51:26 UTC (rev 277148)
+++ PKGBUILD2017-12-30 12:52:47 UTC (rev 277149)
@@ -5,7 +5,7 @@
 _hkgname=hslua
 pkgname=haskell-hslua
 pkgver=0.9.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A Lua language interpreter embedding in Haskell"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("MIT")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:51:26
  Author: felixonmars
Revision: 277148

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 277147, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:51:26 UTC (rev 277148)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.1.1
+pkgrel=20
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+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-mtl" "haskell-libffi" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parsers" "haskell-regex-tdfa" 
"haskell-safe"
+ "haskell-split" "haskell-terminal-size" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-trifecta" "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-vector-binary-instances" 
"haskell-zip-archive")
+makedepends=('ghc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('5768705f0ae22053214e62e79720d6d70e4bda55a8ddff45302c7b4f6c484999102100ee8146a7ec3abd823e028a7a3fecb82d67be49a9401219ef26cf7aa946')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+
+sed -i 's/, ansi-terminal < 0.7/, ansi-terminal/' idris.cabal
+}
+
+build() {
+cd "$srcdir"/Idris-dev-$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 \
+-fFFI -fGMP -frelease -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
+}
+
+package() {
+cd "$srcdir"/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)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:50:47
  Author: felixonmars
Revision: 277147

upgpkg: idris 1.1.1-20

rebuild with text,1.2.3.0

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:37:54 UTC (rev 277146)
+++ PKGBUILD2017-12-30 12:50:47 UTC (rev 277147)
@@ -4,7 +4,7 @@
 
 pkgname=idris
 pkgver=1.1.1
-pkgrel=19
+pkgrel=20
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("custom:BSD3")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:37:54
  Author: felixonmars
Revision: 277146

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 277145, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:37:54 UTC (rev 277146)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5.20170909
+pkgrel=15
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('x86_64')
+depends=('curl' 'ghc' "haskell-async" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-cryptohash" "haskell-data-ordlist" "haskell-fgl" 
"haskell-graphviz"
+ "haskell-hashable" "haskell-html" "haskell-http" "haskell-knob" 
"haskell-mmap"
+ "haskell-mtl" "haskell-network" "haskell-network-uri" 
"haskell-old-time" "haskell-parsec"
+ "haskell-sandi" "haskell-random" "haskell-regex-applicative" 
"haskell-regex-compat-tdfa"
+ "haskell-tar" "haskell-text" "haskell-unix-compat" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-zip-archive" "haskell-zlib")
+makedepends=('ghc')
+# Fetched from http://darcs.net/reviewed/reviewed.zip
+source=("https://pkgbuild.com/~felixonmars/sources/darcs-2.12.5.20170909.zip;)
+#source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('64f44e9d9727b8f7e00402a8a5dde9b6dc8f103776c4decef90b28af9603830f')
+
+prepare() {
+mv reviewed $pkgname-$pkgver
+sed -e 's/graphviz >= 2999.18.1 && < 2999.19,/graphviz >= 
2999.18.1,/' \
+-e 's/process  >= 1.2.3.0 && < 1.5.0.0,/process  >= 1.2.3.0,/' 
\
+-e 's/time >= 1.5.0.1 && < 1.8,/time >= 1.5.0.1,/' \
+-i $pkgname-$pkgver/darcs.cabal
+}
+
+build() {
+cd $pkgname-$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 \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+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 $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:37:34
  Author: felixonmars
Revision: 277145

upgpkg: darcs 2.12.5.20170909-15

rebuild with text,1.2.3.0

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:34:34 UTC (rev 277144)
+++ PKGBUILD2017-12-30 12:37:34 UTC (rev 277145)
@@ -4,7 +4,7 @@
 
 pkgname=darcs
 pkgver=2.12.5.20170909
-pkgrel=14
+pkgrel=15
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:34:34
  Author: felixonmars
Revision: 277144

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD (from rev 
277143, haskell-zip-archive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:34:34 UTC (rev 277144)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=zip-archive
+pkgname=haskell-zip-archive
+pkgver=0.3.1.1
+pkgrel=5
+pkgdesc="Library for creating and modifying zip archives."
+url="https://github.com/jgm/zip-archive;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-digest" "haskell-mtl" "haskell-old-time" 
"haskell-temporary" "haskell-text"
+ "haskell-zlib")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6ee07b9dd05a2d03e1cfccff6b65d2fbe9bc74de3a47e7e2c378a2ae6b0f1440b25bd6b8b717b0fea5716aabe33c8425671c2f8ce71a288fd7ff663e5cfddea9')
+
+build() {
+cd "${srcdir}/${_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 \
+-f-executable -fsplitbase
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-zip-archive/trunk (PKGBUILD)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:34:14
  Author: felixonmars
Revision: 277143

upgpkg: haskell-zip-archive 0.3.1.1-5

rebuild with text,1.2.3.0

Modified:
  haskell-zip-archive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:33:32 UTC (rev 277142)
+++ PKGBUILD2017-12-30 12:34:14 UTC (rev 277143)
@@ -5,7 +5,7 @@
 _hkgname=zip-archive
 pkgname=haskell-zip-archive
 pkgver=0.3.1.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Library for creating and modifying zip archives."
 url="https://github.com/jgm/zip-archive;
 license=("custom:BSD3")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:33:32
  Author: felixonmars
Revision: 277142

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 277141, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-x86_64/binary-orphans-0.1.8.0.patch
(from rev 277141, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)

--+
 PKGBUILD |   54 +
 binary-orphans-0.1.8.0.patch |   16 
 2 files changed, 70 insertions(+)

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
277141, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:33:32 UTC (rev 277142)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.2.2
+pkgrel=44
+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-mtl" "haskell-resourcet" "haskell-safe"
+ "haskell-shakespeare" "haskell-text" "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;
+binary-orphans-0.1.8.0.patch)
+sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de'
+'d2f700f4d5b0a3aaf239139bc4abba85acdc2ab86ae3ff7fe345b95679998011')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+patch -p1 -i ../binary-orphans-0.1.8.0.patch
+}
+
+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
+}

Copied: 
tamarin-prover/repos/community-staging-x86_64/binary-orphans-0.1.8.0.patch 
(from rev 277141, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
===
--- community-staging-x86_64/binary-orphans-0.1.8.0.patch   
(rev 0)
+++ community-staging-x86_64/binary-orphans-0.1.8.0.patch   2017-12-30 
12:33:32 UTC (rev 277142)
@@ -0,0 +1,16 @@
+diff --git a/src/Web/Types.hs b/src/Web/Types.hs
+index 8efe669..95e75f3 100644
+--- a/src/Web/Types.hs
 b/src/Web/Types.hs
+@@ -79,11 +79,6 @@ import   Yesod.Static
+ import   Theory
+ 
+ 
+--- | Derived Instances to fix things
+-instance Bin.Binary ZonedTime where
+-  get = liftM2 ZonedTime Bin.get Bin.get
+-  put (ZonedTime d tod) = Bin.put d >> Bin.put tod
+-
+ --
+ -- Types
+ --


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:33:12
  Author: felixonmars
Revision: 277141

upgpkg: tamarin-prover 1.2.2-44

rebuild with text,1.2.3.0

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:31:40 UTC (rev 277140)
+++ PKGBUILD2017-12-30 12:33:12 UTC (rev 277141)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.2.2
-pkgrel=43
+pkgrel=44
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:31:40
  Author: felixonmars
Revision: 277140

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 277139, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:31:40 UTC (rev 277140)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.4
+pkgrel=42
+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-base-compat' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-data-default'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-hunit'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-text' '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' 'haskell-mtl' 'haskell-parsec')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2c890a2f45b0ab5ffb781887bdd4e9f48465bb63e70118e59ec64f3ea5077df67462f52c0a6f292a970d893fd03a870b1d0a1093d32c1d3ed4a56a8a59d8c57f')
+
+prepare() {
+sed -e 's/, megaparsec >=5.0 && < 6.2/, megaparsec >=5/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--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
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:31:15
  Author: felixonmars
Revision: 277139

upgpkg: hledger-web 1.4-42

rebuild with text,1.2.3.0

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:29:34 UTC (rev 277138)
+++ PKGBUILD2017-12-30 12:31:15 UTC (rev 277139)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-web
 pkgver=1.4
-pkgrel=41
+pkgrel=42
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:29:34
  Author: felixonmars
Revision: 277138

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 277137, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 277137, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:29:34 UTC (rev 277138)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20171214
+pkgrel=9
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' '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-conduit' 
'haskell-crypto-api'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
+ 'haskell-disk-free-space' 'haskell-dlist' 'haskell-dns' 
'haskell-edit-distance'
+ 'haskell-esqueleto' 'haskell-exceptions' 'haskell-fdo-notify' 
'haskell-feed'
+ 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 'haskell-memory'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-mtl'
+ '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' 'haskell-stm-chans' 
'haskell-tagsoup'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun'
+ 'haskell-text' 'haskell-torrent' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-uuid' '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')
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -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
+}


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:29:05
  Author: felixonmars
Revision: 277137

upgpkg: git-annex 6.20171214-9

rebuild with text,1.2.3.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:23:10 UTC (rev 277136)
+++ PKGBUILD2017-12-30 12:29:05 UTC (rev 277137)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20171214
-pkgrel=8
+pkgrel=9
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:23:10
  Author: felixonmars
Revision: 277136

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 277135, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
277135, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:23:10 UTC (rev 277136)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3.1
+pkgrel=46
+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-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-memory" 
"haskell-css-text"
+ "haskell-data-default" "haskell-exceptions" "haskell-file-embed" 
"haskell-hashable"
+ "haskell-hjsmin" "haskell-http-types" "haskell-mime-types" 
"haskell-old-time"
+ "haskell-resourcet" "haskell-text" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-wai" "haskell-wai-app-static" "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1ba2061e05d7374579e6ada4760db569817e957ae7adcbde49deab88cb60d2940475b530d017b12dc92ae9acc722c4ac46750e65ec23e485097ccb6e54d123a2')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:22:50
  Author: felixonmars
Revision: 277135

upgpkg: haskell-yesod-static 1.5.3.1-46

rebuild with text,1.2.3.0

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:21:57 UTC (rev 277134)
+++ PKGBUILD2017-12-30 12:22:50 UTC (rev 277135)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.3.1
-pkgrel=45
+pkgrel=46
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:21:57
  Author: felixonmars
Revision: 277134

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 277133, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
277133, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:21:57 UTC (rev 277134)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.21
+pkgrel=15
+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-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "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=('827cfff9ffb0f533b0cbc68cac53be1a057dde531596b57d823c14a3e737ba7c26394fd33b93dc6ad881ff6cc62e3246807f338c21ebe895be45b856460e7e23')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:21:33
  Author: felixonmars
Revision: 277133

upgpkg: haskell-yesod-auth 1.4.21-15

rebuild with text,1.2.3.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:20:23 UTC (rev 277132)
+++ PKGBUILD2017-12-30 12:21:33 UTC (rev 277133)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.21
-pkgrel=14
+pkgrel=15
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:20:23
  Author: felixonmars
Revision: 277132

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 277131, haskell-yesod/trunk/PKGBUILD)

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 277131, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:20:23 UTC (rev 277132)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=139
+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-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "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;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+build() {
+cd "${srcdir}/${_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 "${srcdir}/${_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/trunk (PKGBUILD)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:20:03
  Author: felixonmars
Revision: 277131

upgpkg: haskell-yesod 1.4.5-139

rebuild with text,1.2.3.0

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:19:13 UTC (rev 277130)
+++ PKGBUILD2017-12-30 12:20:03 UTC (rev 277131)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=138
+pkgrel=139
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:19:13
  Author: felixonmars
Revision: 277130

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 277129, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
277129, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-30 12:19:13 UTC (rev 277130)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.16
+pkgrel=37
+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-semigroups"
+ "haskell-shakespeare" "haskell-text" "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=('ca350cea4dd1cdd1645ad20c2d54f929cf7cb6d6f45cdf1c7ab0bb5475199bf65f5f5ac79dedf8b6b9013e6eeda7bf4a8fd190666253709a0a63800c7f560dd0')
+
+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)

2017-12-30 Thread Felix Yan via arch-commits
Date: Saturday, December 30, 2017 @ 12:18:53
  Author: felixonmars
Revision: 277129

upgpkg: haskell-yesod-form 1.4.16-37

rebuild with text,1.2.3.0

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 12:17:44 UTC (rev 277128)
+++ PKGBUILD2017-12-30 12:18:53 UTC (rev 277129)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.16
-pkgrel=36
+pkgrel=37
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


  1   2   3   >