[arch-commits] Commit in grpc (4 files)

2019-04-02 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, April 3, 2019 @ 06:56:38
  Author: mtorromeo
Revision: 448270

archrelease: copy trunk to community-x86_64

Added:
  grpc/repos/
  grpc/repos/community-x86_64/
  grpc/repos/community-x86_64/PKGBUILD
(from rev 448269, grpc/trunk/PKGBUILD)
  grpc/repos/community-x86_64/makefile.patch
(from rev 448269, grpc/trunk/makefile.patch)

+
 PKGBUILD   |   95 +++
 makefile.patch |   15 
 2 files changed, 110 insertions(+)

Copied: grpc/repos/community-x86_64/PKGBUILD (from rev 448269, 
grpc/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2019-04-03 06:56:38 UTC (rev 448270)
@@ -0,0 +1,95 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Aleksey Filippov 
+# Contributor: Victor Aurélio Santos 
+
+pkgbase='grpc'
+pkgname=('grpc' 'python-grpcio' 'php-grpc' 'grpc-cli')
+pkgver=1.19.1
+_gtestver=1.8.1
+pkgrel=1
+pkgdesc="High performance, open source, general RPC framework that puts mobile 
and HTTP/2 first."
+arch=('x86_64')
+url='https://grpc.io'
+license=('BSD')
+makedepends=('re2c' 'protobuf' 'php' 'c-ares' 'openssl' 'chrpath' 'gflags'
+ 'cython')
+source=("https://github.com/$pkgname/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz";
+
"https://github.com/google/googletest/archive/release-$_gtestver/googletest-$_gtestver.tar.gz";
+"makefile.patch")
+sha256sums=('f869c648090e8bddaa1260a271b1089caccbe735bf47ac9cd7d44d35a02fb129'
+'9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c'
+'f292cb387f0cf7567e6e8004a6dd57bf0375abbaa8968dcd97cbd7e72409670f')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -p1 -i "$srcdir/makefile.patch"
+
+  sed -r 's/-Werror//g;/ldconfig/d;s/ strip-(static|shared)_c(xx)? / /' -i 
Makefile
+
+  ln -sf "$srcdir/googletest-release-$_gtestver/"{googlemock,googletest} \
+third_party/googletest
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make prefix=/usr
+  make prefix=/usr grpc_cli
+
+  # Don't install it as part of main package
+  mv bins/opt/grpc_cli .
+
+  # Python
+  GRPC_PYTHON_BUILD_WITH_CYTHON=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_CARES=1 \
+  python setup.py build
+
+  # PHP
+  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
+  phpize
+  LDFLAGS=-L"$srcdir/$pkgname-$pkgver/libs/opt" ./configure 
--enable-grpc="$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package_grpc() {
+  depends=('c-ares' 'protobuf' 'openssl')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make prefix="$pkgdir/usr" install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-grpcio() {
+  depends=('c-ares' 'python')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  python setup.py install -O1 --skip-build --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_php-grpc() {
+  depends=('grpc' 'php')
+  backup=('etc/php/conf.d/grpc.ini')
+
+  # Install PHP extension.
+  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
+  make install "INSTALL_ROOT=$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove RPATH
+  chrpath -d "$pkgdir/usr/lib/php/modules/grpc.so"
+
+  echo ';extension=grpc.so' >grpc.ini
+  install -Dm644 grpc.ini "$pkgdir/etc/php/conf.d/grpc.ini"
+}
+
+package_grpc-cli() {
+  depends=('c-ares' 'gflags' 'protobuf' 'openssl')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  install -Dm755 grpc_cli "$pkgdir"/usr/bin/grpc_cli
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: grpc/repos/community-x86_64/makefile.patch (from rev 448269, 
grpc/trunk/makefile.patch)
===
--- repos/community-x86_64/makefile.patch   (rev 0)
+++ repos/community-x86_64/makefile.patch   2019-04-03 06:56:38 UTC (rev 
448270)
@@ -0,0 +1,15 @@
+diff --git a/Makefile b/Makefile
+index d8a0e01..9596d6c 100644
+--- a/Makefile
 b/Makefile
+@@ -3022,8 +3022,8 @@ install-headers_c:
+ 
+ install-headers_cxx:
+   $(E) "[INSTALL] Installing public C++ headers"
+-  $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir 
$(h)) && ) exit 0 || exit 1
+-  $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) 
&& ) exit 0 || exit 1
++  $(Q) DIRS="$(shell dirname $(PUBLIC_HEADERS_CXX) | uniq )"; 
for d in $$DIRS; do [ ! -d $(prefix)/$$d ] && $(INSTALL) -d $(prefix)/$$d || : 
; done
++  $(Q) for f in $(PUBLIC_HEADERS_CXX); do $(INSTALL) $$f $(prefix)/$$f ; 
done
+ 
+ install-static: install-static_c install-static_cxx
+ 


[arch-commits] Commit in (5 files)

2019-04-02 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, April 3, 2019 @ 06:55:58
  Author: mtorromeo
Revision: 448269

Added grpc packages

Added:
  grpc/
  grpc/trunk/
  grpc/trunk/PKGBUILD
  grpc/trunk/makefile.patch
Deleted:
  python-grpcio/

+
 PKGBUILD   |   95 +++
 makefile.patch |   15 
 2 files changed, 110 insertions(+)

Added: grpc/trunk/PKGBUILD
===
--- grpc/trunk/PKGBUILD (rev 0)
+++ grpc/trunk/PKGBUILD 2019-04-03 06:55:58 UTC (rev 448269)
@@ -0,0 +1,95 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Aleksey Filippov 
+# Contributor: Victor Aurélio Santos 
+
+pkgbase='grpc'
+pkgname=('grpc' 'python-grpcio' 'php-grpc' 'grpc-cli')
+pkgver=1.19.1
+_gtestver=1.8.1
+pkgrel=1
+pkgdesc="High performance, open source, general RPC framework that puts mobile 
and HTTP/2 first."
+arch=('x86_64')
+url='https://grpc.io'
+license=('BSD')
+makedepends=('re2c' 'protobuf' 'php' 'c-ares' 'openssl' 'chrpath' 'gflags'
+ 'cython')
+source=("https://github.com/$pkgname/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz";
+
"https://github.com/google/googletest/archive/release-$_gtestver/googletest-$_gtestver.tar.gz";
+"makefile.patch")
+sha256sums=('f869c648090e8bddaa1260a271b1089caccbe735bf47ac9cd7d44d35a02fb129'
+'9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c'
+'f292cb387f0cf7567e6e8004a6dd57bf0375abbaa8968dcd97cbd7e72409670f')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -p1 -i "$srcdir/makefile.patch"
+
+  sed -r 's/-Werror//g;/ldconfig/d;s/ strip-(static|shared)_c(xx)? / /' -i 
Makefile
+
+  ln -sf "$srcdir/googletest-release-$_gtestver/"{googlemock,googletest} \
+third_party/googletest
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make prefix=/usr
+  make prefix=/usr grpc_cli
+
+  # Don't install it as part of main package
+  mv bins/opt/grpc_cli .
+
+  # Python
+  GRPC_PYTHON_BUILD_WITH_CYTHON=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 \
+  GRPC_PYTHON_BUILD_SYSTEM_CARES=1 \
+  python setup.py build
+
+  # PHP
+  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
+  phpize
+  LDFLAGS=-L"$srcdir/$pkgname-$pkgver/libs/opt" ./configure 
--enable-grpc="$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package_grpc() {
+  depends=('c-ares' 'protobuf' 'openssl')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make prefix="$pkgdir/usr" install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-grpcio() {
+  depends=('c-ares' 'python')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  python setup.py install -O1 --skip-build --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_php-grpc() {
+  depends=('grpc' 'php')
+  backup=('etc/php/conf.d/grpc.ini')
+
+  # Install PHP extension.
+  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
+  make install "INSTALL_ROOT=$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove RPATH
+  chrpath -d "$pkgdir/usr/lib/php/modules/grpc.so"
+
+  echo ';extension=grpc.so' >grpc.ini
+  install -Dm644 grpc.ini "$pkgdir/etc/php/conf.d/grpc.ini"
+}
+
+package_grpc-cli() {
+  depends=('c-ares' 'gflags' 'protobuf' 'openssl')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  install -Dm755 grpc_cli "$pkgdir"/usr/bin/grpc_cli
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Added: grpc/trunk/makefile.patch
===
--- grpc/trunk/makefile.patch   (rev 0)
+++ grpc/trunk/makefile.patch   2019-04-03 06:55:58 UTC (rev 448269)
@@ -0,0 +1,15 @@
+diff --git a/Makefile b/Makefile
+index d8a0e01..9596d6c 100644
+--- a/Makefile
 b/Makefile
+@@ -3022,8 +3022,8 @@ install-headers_c:
+ 
+ install-headers_cxx:
+   $(E) "[INSTALL] Installing public C++ headers"
+-  $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir 
$(h)) && ) exit 0 || exit 1
+-  $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) 
&& ) exit 0 || exit 1
++  $(Q) DIRS="$(shell dirname $(PUBLIC_HEADERS_CXX) | uniq )"; 
for d in $$DIRS; do [ ! -d $(prefix)/$$d ] && $(INSTALL) -d $(prefix)/$$d || : 
; done
++  $(Q) for f in $(PUBLIC_HEADERS_CXX); do $(INSTALL) $$f $(prefix)/$$f ; 
done
+ 
+ install-static: install-static_c install-static_cxx
+ 


[arch-commits] Commit in (xsnow)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:44:05
  Author: arojas
Revision: 349792

Spring cleanup

Deleted:
  xsnow/


[arch-commits] Commit in (xmahjongg)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:43:41
  Author: arojas
Revision: 349790

Spring cleanup

Deleted:
  xmahjongg/


[arch-commits] Commit in (xfig)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:43:08
  Author: arojas
Revision: 349788

Spring cleanup

Deleted:
  xfig/


[arch-commits] Commit in (xbill)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:42:38
  Author: arojas
Revision: 349786

Spring cleanup

Deleted:
  xbill/


[arch-commits] Commit in (wpa_actiond)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:42:17
  Author: arojas
Revision: 349784

Spring cleanup

Deleted:
  wpa_actiond/


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

2019-04-02 Thread Christian Hesse via arch-commits
Date: Wednesday, April 3, 2019 @ 06:41:24
  Author: eworm
Revision: 349782

archrelease: copy trunk to testing-x86_64

Added:
  jemalloc/repos/testing-x86_64/
  jemalloc/repos/testing-x86_64/PKGBUILD
(from rev 349781, jemalloc/trunk/PKGBUILD)

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

Copied: jemalloc/repos/testing-x86_64/PKGBUILD (from rev 349781, 
jemalloc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-03 06:41:24 UTC (rev 349782)
@@ -0,0 +1,35 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Kovivchak Evgen 
+
+pkgname=jemalloc
+epoch=1
+pkgver=5.2.0
+pkgrel=1
+pkgdesc='General-purpose scalable concurrent malloc implementation'
+arch=('x86_64')
+license=('BSD')
+url='http://www.canonware.com/jemalloc/'
+depends=('glibc')
+provides=('libjemalloc.so')
+optdepends=('perl: for jeprof')
+source=("https://github.com/jemalloc/jemalloc/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
+sha256sums=('74be9f44a60d2a99398e706baa921e4efde82bf8fd16e5c0643c375c5851e3b4')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--enable-autogen \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  chmod 644 "$pkgdir/usr/lib/libjemalloc_pic.a"
+}


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

2019-04-02 Thread Christian Hesse via arch-commits
Date: Wednesday, April 3, 2019 @ 06:41:20
  Author: eworm
Revision: 349781

upgpkg: jemalloc 1:5.2.0-1

new upstream release

Modified:
  jemalloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 06:40:32 UTC (rev 349780)
+++ PKGBUILD2019-04-03 06:41:20 UTC (rev 349781)
@@ -4,7 +4,7 @@
 
 pkgname=jemalloc
 epoch=1
-pkgver=5.1.0
+pkgver=5.2.0
 pkgrel=1
 pkgdesc='General-purpose scalable concurrent malloc implementation'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 provides=('libjemalloc.so')
 optdepends=('perl: for jeprof')
 
source=("https://github.com/jemalloc/jemalloc/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
-sha256sums=('5396e61cc6103ac393136c309fae09e44d74743c86f90e266948c50f3dbb7268')
+sha256sums=('74be9f44a60d2a99398e706baa921e4efde82bf8fd16e5c0643c375c5851e3b4')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in (ttf-ubraille)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:40:32
  Author: arojas
Revision: 349780

Spring cleanup

Deleted:
  ttf-ubraille/


[arch-commits] Commit in (ttf-mph-2b-damase)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:39:22
  Author: arojas
Revision: 349778

Spring cleanup

Deleted:
  ttf-mph-2b-damase/


[arch-commits] Commit in (ttf-freebanglafont)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:38:50
  Author: arojas
Revision: 349776

Spring cleanup

Deleted:
  ttf-freebanglafont/


[arch-commits] Commit in (thinkfinger)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:38:05
  Author: arojas
Revision: 349772

Spring cleanup

Deleted:
  thinkfinger/


[arch-commits] Commit in (ttf-cheapskate)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:38:26
  Author: arojas
Revision: 349774

Spring cleanup

Deleted:
  ttf-cheapskate/


[arch-commits] Commit in (streamripper)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:37:41
  Author: arojas
Revision: 349770

Spring cleanup

Deleted:
  streamripper/


[arch-commits] Commit in (scim-uim)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:35:27
  Author: arojas
Revision: 349768

Spring cleanup

Deleted:
  scim-uim/


[arch-commits] Commit in (scim-pinyin)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:34:46
  Author: arojas
Revision: 349764

Spring cleanup

Deleted:
  scim-pinyin/


[arch-commits] Commit in (scim-tables)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:35:07
  Author: arojas
Revision: 349766

Spring cleanup

Deleted:
  scim-tables/


[arch-commits] Commit in (scim-m17n)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:34:25
  Author: arojas
Revision: 349762

Spring cleanup

Deleted:
  scim-m17n/


[arch-commits] Commit in (scim-anthy)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:33:30
  Author: arojas
Revision: 349758

Spring cleanup

Deleted:
  scim-anthy/


[arch-commits] Commit in (scim-hangul)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:34:04
  Author: arojas
Revision: 349760

Spring cleanup

Deleted:
  scim-hangul/


[arch-commits] Commit in (sbsms)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:33:10
  Author: arojas
Revision: 349756

Spring cleanup

Deleted:
  sbsms/


[arch-commits] Commit in (idnkit)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:29:47
  Author: arojas
Revision: 349750

Spring cleanup

Deleted:
  idnkit/


[arch-commits] Commit in (luajson)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:30:27
  Author: arojas
Revision: 349754

Spring cleanup

Deleted:
  luajson/


[arch-commits] Commit in (linux_logo)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:30:08
  Author: arojas
Revision: 349752

Spring cleanup

Deleted:
  linux_logo/


[arch-commits] Commit in (gnome-alsamixer)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:27:34
  Author: arojas
Revision: 349748

Spring cleanup

Deleted:
  gnome-alsamixer/


[arch-commits] Commit in (glsof)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:26:47
  Author: arojas
Revision: 349744

Spring cleanup

Deleted:
  glsof/


[arch-commits] Commit in (gnet)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:27:07
  Author: arojas
Revision: 349746

Spring cleanup

Deleted:
  gnet/


[arch-commits] Commit in (fyre)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:23:27
  Author: arojas
Revision: 349742

Spring cleanup

Deleted:
  fyre/


[arch-commits] Commit in (fvwm-crystal)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:22:53
  Author: arojas
Revision: 349740

Spring cleanup

Deleted:
  fvwm-crystal/


[arch-commits] Commit in (foobillard++)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:22:30
  Author: arojas
Revision: 349738

Spring cleanup

Deleted:
  foobillard++/


[arch-commits] Commit in (fetchmail)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:20:00
  Author: arojas
Revision: 349734

Spring cleanup

Deleted:
  fetchmail/


[arch-commits] Commit in (fonts-tlwg)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:20:22
  Author: arojas
Revision: 349736

Spring cleanup

Deleted:
  fonts-tlwg/


[arch-commits] Commit in (epplet-base)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:19:39
  Author: arojas
Revision: 349732

Spring cleanup

Deleted:
  epplet-base/


[arch-commits] Commit in (enlightenment16)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:17:56
  Author: arojas
Revision: 349730

Spring cleanup

Deleted:
  enlightenment16/


[arch-commits] Commit in (bootchart)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:17:02
  Author: arojas
Revision: 349726

Spring cleanup

Deleted:
  bootchart/


[arch-commits] Commit in (di)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:17:28
  Author: arojas
Revision: 349728

Spring cleanup

Deleted:
  di/


[arch-commits] Commit in (artwiz-fonts)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:15:27
  Author: arojas
Revision: 349724

Spring cleanup

Deleted:
  artwiz-fonts/


[arch-commits] Commit in (alsaplayer)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 3, 2019 @ 06:14:53
  Author: arojas
Revision: 349722

Spring cleanup

Deleted:
  alsaplayer/


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

2019-04-02 Thread Andreas Radke via arch-commits
Date: Wednesday, April 3, 2019 @ 06:10:31
  Author: andyrtr
Revision: 349719

upgpkg: linux-lts 4.19.33-1

upstream update 4.19.33

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 05:21:53 UTC (rev 349718)
+++ PKGBUILD2019-04-03 06:10:31 UTC (rev 349719)
@@ -3,7 +3,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.19
-pkgver=4.19.32
+pkgver=4.19.33
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/";
@@ -23,7 +23,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('0c68f5655528aed4f99dae71a5b259edc93239fa899e2df79c055275c21749a1'
 'SKIP'
-'85a7e12b38575199d2ed889b7cf108b7740f20f1fe4d967f1c338df1682b4259'
+'d0ec3478a4b38184ac073bcb3b45dbfbc69c797145f82b07e7192835a0fdd797'
 '2dbe737dd5d186ca0b3b1753ad3d7a4a722b3eb03ec224dc24b49dd491c18cf1'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'


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

2019-04-02 Thread Andreas Radke via arch-commits
Date: Wednesday, April 3, 2019 @ 06:10:52
  Author: andyrtr
Revision: 349720

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 349719, 
linux-lts/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  linux-lts/repos/testing-x86_64/60-linux.hook
(from rev 349719, linux-lts/trunk/60-linux.hook)
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 349719, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 349719, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 349719, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 349719, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 349719, linux-lts/trunk/linux-lts.preset)

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  103 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  232 
 config  | 9793 
++
 linux-lts.install   |   10 
 linux-lts.preset|   14 
 7 files changed, 10175 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 349719:349720 to see the changes.


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

2019-04-02 Thread Andrzej Giniewicz via arch-commits
Date: Wednesday, April 3, 2019 @ 05:58:33
  Author: aginiewicz
Revision: 448266

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 05:58:25 UTC (rev 448265)
+++ PKGBUILD2019-04-03 05:58:33 UTC (rev 448266)
@@ -1,110 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Keith Hughitt 
-
-# TODO: move python-xarray from AUR to community (converting Panels to xarray)
-# TODO: move python-pyarrow from AUR to community (Feather Format and Apache 
Parquet)
-# TODO: move python-fastparque from AUR to community (Apache Parquet)
-# TODO: move python-snappy from AUR to community (compression for Apache 
Parquet)
-# TODO: optdepend on python-brotlipy (compression for Apache Parquet)
-# TODO: move python-s3fs from AUR to community (Amazon S3 access)
-# TODO: move python-gcsfs from AUR to community (Google Cloud Storage access)
-# TODO: package pandas-gbq (Google BigQuery I/O)
-
-pkgbase=python-pandas
-pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.24.1
-pkgrel=1
-pkgdesc="Cross-section and time series data analysis toolkit"
-arch=('x86_64')
-url="https://pandas.pydata.org/";
-license=('BSD')
-makedepends=('python-setuptools' 'python-dateutil' 'python-numpy' 'python-pytz'
- 'python2-setuptools' 'python2-dateutil' 'python2-numpy' 
'python2-pytz'
- 'cython' 'cython2')
-source=("https://github.com/pandas-dev/pandas/releases/download/v${pkgver}/pandas-${pkgver}.tar.gz";)
-sha1sums=('bbfce739589ef9201d807c05bb2b6a8fa1d9')
-
-prepare() {
-  cd "$srcdir"
-  cp -a pandas-${pkgver} pandas-py2-${pkgver}
-  cd pandas-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  # "Building Python2"
-  cd "$srcdir"/pandas-py2-${pkgver}
-  python2 setup.py build_ext --inplace
-  python2 setup.py build
-
-  # "Building Python3"
-  cd "$srcdir"/pandas-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package_python2-pandas() {
-  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz' 
'python2-setuptools')
-  optdepends=('python2-pandas-datareader: pandas.io.data replacement 
(recommended)'
-  'python2-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python2-bottleneck: needed for accelerating certain types of 
nan evaluations (recommended)'
-  'python2-scipy: needed for miscellaneous statistical functions'
-  'python2-pytables: needed for HDF5-based storage'
-  'python2-sqlalchemy: needed for SQL database support'
-  'python2-matplotlib: needed for plotting'
-  'python2-openpyxl: needed for Excel XLSX input/output'
-  'python2-xlrd: needed for Excel XLS input'
-  'python2-xlwt: needed for Excel XLS output'
-  'python2-xlsxwriter: alternative Excel XLSX output'
-  'python2-jinja: needed for conditional HTML formatting'
-  'python2-blosc: for msgpack compression using blosc'
-  'python2-qtpy: needed for read_clipboard function (only one 
needed)'
-  'python2-pyqt5: needed for read_clipboard function (only one 
needed)'
-  'pygtk: needed for read_clipboard function (only one needed)'
-  'xsel: needed for read_clipboard function (only one needed)'
-  'xclip: needed for read_clipboard function (only one needed)'
-  'python2-backports.lzma: needed for xz compressed DataFrames in 
CSV'
-  'python2-beautifulsoup4: needed for read_html function'
-  'python2-lxml: needed for read_html function (and/or 
python2-html5lib)'
-  'python2-html5lib: needed for read_hmlt function (and/or 
python2-lxml)')
-
-  cd "$srcdir"/pandas-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-pandas() {
-  depends=('python-numpy' 'python-dateutil' 'python-pytz' 'python-setuptools')
-  optdepends=('python-pandas-datareader: pandas.io.data replacement 
(recommended)'
-  'python-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python-bottleneck: needed for accelerating certain types of nan 
evaluations (recommended)'
-  'python-scipy: needed for miscellaneous statistical functions'
-  'python-pytable

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

2019-04-02 Thread Andrzej Giniewicz via arch-commits
Date: Wednesday, April 3, 2019 @ 05:58:56
  Author: aginiewicz
Revision: 448267

upgpkg: python-xlsxwriter 1.1.5-1

python-xlsxwriter: new upstream release

Modified:
  python-xlsxwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 05:58:33 UTC (rev 448266)
+++ PKGBUILD2019-04-03 05:58:56 UTC (rev 448267)
@@ -2,7 +2,7 @@
 
 pkgbase=python-xlsxwriter
 pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.4
+pkgver=1.1.5
 pkgrel=1
 pkgdesc="A Python module for creating Excel XLSX files"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz";)
-sha1sums=('0cdc277ee0e39306bf7897d0d570e5710a444a4e')
+sha256sums=('5b7c597f7e49c9cccd68538bc96ec0d43a83529c4ee3947e6f5c810f2a3719b7')
 
 prepare() {
   cd "$srcdir"


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

2019-04-02 Thread Andrzej Giniewicz via arch-commits
Date: Wednesday, April 3, 2019 @ 05:59:00
  Author: aginiewicz
Revision: 448268

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 05:58:56 UTC (rev 448267)
+++ PKGBUILD2019-04-03 05:59:00 UTC (rev 448268)
@@ -1,51 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgbase=python-xlsxwriter
-pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="A Python module for creating Excel XLSX files"
-arch=('any')
-url="https://github.com/jmcnamara/XlsxWriter";
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz";)
-sha1sums=('0cdc277ee0e39306bf7897d0d570e5710a444a4e')
-
-prepare() {
-  cd "$srcdir"
-  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
-}
-
-build() {
-  # "Building Python2"
-  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
-  python2 setup.py build
-
-  # "Building Python3"
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-  python setup.py build
-}
-
-package_python2-xlsxwriter() {
-  depends=('python2')
-
-  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  mv "$pkgdir"/usr/bin/vba_extract{,2}.py
-}
-
-package_python-xlsxwriter() {
-  depends=('python')
-
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-xlsxwriter/repos/community-any/PKGBUILD (from rev 448267, 
python-xlsxwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-03 05:59:00 UTC (rev 448268)
@@ -0,0 +1,51 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgbase=python-xlsxwriter
+pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
+pkgver=1.1.5
+pkgrel=1
+pkgdesc="A Python module for creating Excel XLSX files"
+arch=('any')
+url="https://github.com/jmcnamara/XlsxWriter";
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz";)
+sha256sums=('5b7c597f7e49c9cccd68538bc96ec0d43a83529c4ee3947e6f5c810f2a3719b7')
+
+prepare() {
+  cd "$srcdir"
+  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
+}
+
+build() {
+  # "Building Python2"
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+  python2 setup.py build
+
+  # "Building Python3"
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python setup.py build
+}
+
+package_python2-xlsxwriter() {
+  depends=('python2')
+
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  mv "$pkgdir"/usr/bin/vba_extract{,2}.py
+}
+
+package_python-xlsxwriter() {
+  depends=('python')
+
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2019-04-02 Thread Andrzej Giniewicz via arch-commits
Date: Wednesday, April 3, 2019 @ 05:58:25
  Author: aginiewicz
Revision: 448265

upgpkg: python-pandas 0.24.2-1

python-pandas: new upstream release

Modified:
  python-pandas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 04:24:25 UTC (rev 448264)
+++ PKGBUILD2019-04-03 05:58:25 UTC (rev 448265)
@@ -12,7 +12,7 @@
 
 pkgbase=python-pandas
 pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.24.1
+pkgver=0.24.2
 pkgrel=1
 pkgdesc="Cross-section and time series data analysis toolkit"
 arch=('x86_64')
@@ -22,7 +22,7 @@
  'python2-setuptools' 'python2-dateutil' 'python2-numpy' 
'python2-pytz'
  'cython' 'cython2')
 
source=("https://github.com/pandas-dev/pandas/releases/download/v${pkgver}/pandas-${pkgver}.tar.gz";)
-sha1sums=('bbfce739589ef9201d807c05bb2b6a8fa1d9')
+sha256sums=('4f919f409c433577a501e023943e582c57355d50a724c589e78bc1d551a535a2')
 
 prepare() {
   cd "$srcdir"


[arch-commits] Commit in notification-daemon/repos/community-x86_64 (2 files)

2019-04-02 Thread Brett Cornwall via arch-commits
Date: Wednesday, April 3, 2019 @ 04:24:25
  Author: ainola
Revision: 448264

archrelease: copy trunk to community-x86_64

Added:
  notification-daemon/repos/community-x86_64/PKGBUILD
(from rev 448263, notification-daemon/trunk/PKGBUILD)
Deleted:
  notification-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 04:24:06 UTC (rev 448263)
+++ PKGBUILD2019-04-03 04:24:25 UTC (rev 448264)
@@ -1,36 +0,0 @@
-# Contributor: Jan de Groot 
-# Contributor: Mark Rosenstand 
-
-pkgname=notification-daemon
-pkgver=3.20.0
-pkgrel=2
-pkgdesc="Notification daemon for the desktop notifications framework"
-arch=(x86_64)
-license=(GPL)
-url="http://www.gnome.org/";
-depends=(gtk3 libcanberra)
-makedepends=(intltool)
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('dd13768f35fd8bba9c4920b0f8269f39270e5a3cfed1a34c3b940a492286ece5')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/notification-daemon-1.0 \
---localstatedir=/var --disable-static
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: notification-daemon/repos/community-x86_64/PKGBUILD (from rev 448263, 
notification-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-03 04:24:25 UTC (rev 448264)
@@ -0,0 +1,32 @@
+# Contributor: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=3.20.0
+pkgrel=3
+pkgdesc="Server implementation of the freedesktop.org desktop notification 
specification"
+arch=(x86_64)
+license=(GPL2)
+url="https://wiki.gnome.org/Projects/NotificationDaemon";
+depends=(gtk3)
+makedepends=(intltool)
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('dd13768f35fd8bba9c4920b0f8269f39270e5a3cfed1a34c3b940a492286ece5')
+
+build() {
+cd "${pkgname}-${pkgver}"
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+make check
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2019-04-02 Thread Brett Cornwall via arch-commits
Date: Wednesday, April 3, 2019 @ 04:24:06
  Author: ainola
Revision: 448263

upgpkg: notification-daemon 3.20.0-3

PKGBUILD cleanups

Modified:
  notification-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 04:13:49 UTC (rev 448262)
+++ PKGBUILD2019-04-03 04:24:06 UTC (rev 448263)
@@ -3,22 +3,18 @@
 
 pkgname=notification-daemon
 pkgver=3.20.0
-pkgrel=2
-pkgdesc="Notification daemon for the desktop notifications framework"
+pkgrel=3
+pkgdesc="Server implementation of the freedesktop.org desktop notification 
specification"
 arch=(x86_64)
-license=(GPL)
-url="http://www.gnome.org/";
-depends=(gtk3 libcanberra)
+license=(GPL2)
+url="https://wiki.gnome.org/Projects/NotificationDaemon";
+depends=(gtk3)
 makedepends=(intltool)
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz";)
 sha256sums=('dd13768f35fd8bba9c4920b0f8269f39270e5a3cfed1a34c3b940a492286ece5')
 
-prepare() {
-cd ${pkgname}-${pkgver}
-}
-
 build() {
-cd ${pkgname}-${pkgver}
+cd "${pkgname}-${pkgver}"
 ./configure --prefix=/usr --sysconfdir=/etc \
 --libexecdir=/usr/lib/notification-daemon-1.0 \
 --localstatedir=/var --disable-static
@@ -26,11 +22,11 @@
 }
 
 check() {
-cd ${pkgname}-${pkgver}
+cd "${pkgname}-${pkgver}"
 make check
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
 }


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

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 3, 2019 @ 04:13:49
  Author: polyzen
Revision: 448262

archrelease: copy trunk to community-any

Added:
  firefox-ublock-origin/repos/community-any/PKGBUILD
(from rev 448261, firefox-ublock-origin/trunk/PKGBUILD)
Deleted:
  firefox-ublock-origin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 04:13:01 UTC (rev 448261)
+++ PKGBUILD2019-04-03 04:13:49 UTC (rev 448262)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-ublock-origin
-pkgver=1.18.14
-pkgrel=1
-pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
-url=https://github.com/gorhill/uBlock
-arch=('any')
-license=('GPL3')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('4f63ac3cb84fbee3d391d983b9de2f9cb0d6f39fe3a2ea901686b621712d83c2')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-ublock-origin/repos/community-any/PKGBUILD (from rev 448261, 
firefox-ublock-origin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-03 04:13:49 UTC (rev 448262)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-ublock-origin
+pkgver=1.18.16
+pkgrel=1
+pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
+url=https://github.com/gorhill/uBlock
+arch=('any')
+license=('GPL3')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
+noextract=("${source##*/}")
+sha256sums=('d65565207ff63c6646b83bcbf434fd3a879d0dcde06b9c032f05a0d7d3ddeca1')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 3, 2019 @ 04:13:01
  Author: polyzen
Revision: 448261

upgpkg: firefox-ublock-origin 1.18.16-1

Modified:
  firefox-ublock-origin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 04:10:59 UTC (rev 448260)
+++ PKGBUILD2019-04-03 04:13:01 UTC (rev 448261)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-ublock-origin
-pkgver=1.18.14
+pkgver=1.18.16
 pkgrel=1
 pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
 url=https://github.com/gorhill/uBlock
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
 noextract=("${source##*/}")
-sha256sums=('4f63ac3cb84fbee3d391d983b9de2f9cb0d6f39fe3a2ea901686b621712d83c2')
+sha256sums=('d65565207ff63c6646b83bcbf434fd3a879d0dcde06b9c032f05a0d7d3ddeca1')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi


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

2019-04-02 Thread Brett Cornwall via arch-commits
Date: Wednesday, April 3, 2019 @ 04:10:59
  Author: ainola
Revision: 448260

archrelease: copy trunk to community-x86_64

Added:
  opendbx/repos/community-x86_64/PKGBUILD
(from rev 448259, opendbx/trunk/PKGBUILD)
  opendbx/repos/community-x86_64/opendbx.patch
(from rev 448259, opendbx/trunk/opendbx.patch)
Deleted:
  opendbx/repos/community-x86_64/PKGBUILD
  opendbx/repos/community-x86_64/opendbx.patch

---+
 PKGBUILD  |   82 
 opendbx.patch |   22 +++
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 04:10:45 UTC (rev 448259)
+++ PKGBUILD2019-04-03 04:10:59 UTC (rev 448260)
@@ -1,41 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Leonard de Ruijter 
-# Contributor: Hubert Kario 
-# Contributor: Artyom Smirnov 
-
-pkgname=opendbx
-pkgver=1.4.6
-pkgrel=9
-pkgdesc="Extremely lightweight but extensible database access library written 
in C."
-arch=('x86_64')
-url="http://www.linuxnetworks.de/doc/index.php/OpenDBX";
-license=('LGPL')
-depends=('libfbclient' 'mariadb-libs' 'postgresql-libs' 'sqlite' 'freetds')
-source=(https://linuxnetworks.de/opendbx/download/${pkgname}-${pkgver}.tar.gz
-'opendbx.patch')
-sha256sums=('2246a03812c7d90f10194ad01c2213a7646e383000a800277c6fb8d2bf81497c'
-'786f9622791de113bfe1ee9fc2fdc42ea4a58d31a006db1dc91ffd7fb8b6deeb')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -up1 <"$srcdir/opendbx.patch"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  CPPFLAGS=${CPPFLAGS}" -I/usr/include/mysql"\
-  ./configure --with-backends="firebird mysql mssql odbc pgsql sqlite3 sqlite3 
sybase" \
-  --prefix=/usr
-  make all -j1
-}
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opendbx/repos/community-x86_64/PKGBUILD (from rev 448259, 
opendbx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-03 04:10:59 UTC (rev 448260)
@@ -0,0 +1,41 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Leonard de Ruijter 
+# Contributor: Hubert Kario 
+# Contributor: Artyom Smirnov 
+
+pkgname=opendbx
+pkgver=1.4.6
+pkgrel=10
+pkgdesc="Extremely lightweight but extensible database access library written 
in C."
+arch=('x86_64')
+url="https://www.linuxnetworks.de/doc/index.php/OpenDBX";
+license=('LGPL')
+depends=('libfbclient' 'mariadb-libs' 'postgresql-libs' 'sqlite' 'freetds')
+source=(https://linuxnetworks.de/opendbx/download/${pkgname}-${pkgver}.tar.gz
+'opendbx.patch')
+sha256sums=('2246a03812c7d90f10194ad01c2213a7646e383000a800277c6fb8d2bf81497c'
+'786f9622791de113bfe1ee9fc2fdc42ea4a58d31a006db1dc91ffd7fb8b6deeb')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -up1 <"$srcdir/opendbx.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  CPPFLAGS=${CPPFLAGS}" -I/usr/include/mysql"\
+  ./configure --with-backends="firebird mysql mssql odbc pgsql sqlite3 sqlite3 
sybase" \
+  --prefix=/usr
+  make all
+}
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: opendbx.patch
===
--- opendbx.patch   2019-04-03 04:10:45 UTC (rev 448259)
+++ opendbx.patch   2019-04-03 04:10:59 UTC (rev 448260)
@@ -1,11 +0,0 @@
 opendbx-1.4.5/backends/mssql/mssql_basic.c 2010-04-19 10:55:58.0 
+0200
-+++ opendbx-1.4.5-2/backends/mssql/mssql_basic.c   2012-01-24 
16:03:09.560260177 +0100
-@@ -454,7 +454,7 @@
- 
-   DBINT i, dlen;
-   BYTE* data;
--  DBDATEREC di;
-+  struct tds_sybase_dbdaterec di;
-   struct tdsgres* gres = (struct tdsgres*) result->generic;
-   struct tdsares* ares = (struct tdsares*) result->aux;
- 

Copied: opendbx/repos/community-x86_64/opendbx.patch (from rev 448259, 
opendbx/trunk/opendbx.patch)
===
--- opendbx.patch   (rev 0)
+++ opendbx.patch   2019-04-03 04:10:59 UTC (rev 448260)
@@ -0,0 +1,11 @@
+--- opendbx-1.4.5/backends/mssql/mssql_basic.c 2010-04-19 10:55:58.0 
+0200
 opendbx-1.4.5-2/backends/mssql/mssql_basic.c   2012-01-24 
16:03:09.560260177 +0100
+@@ -454,7 +454,7 @@
+ 
+   DBINT i, dlen;
+   BYTE* data;
+-  DBDATEREC di;
++  struct tds_sybase_dbdaterec di;
+   struct tdsgres* gres = (struct tdsgres*) result->generic;
+   struct tdsares* ares = (struct tdsares*) result->aux;
+ 


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

2019-04-02 Thread Brett Cornwall via arch-commits
Date: Wednesday, April 3, 2019 @ 04:10:45
  Author: ainola
Revision: 448259

upgpkg: opendbx 1.4.6-10

cleanups

Modified:
  opendbx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 03:20:20 UTC (rev 448258)
+++ PKGBUILD2019-04-03 04:10:45 UTC (rev 448259)
@@ -5,10 +5,10 @@
 
 pkgname=opendbx
 pkgver=1.4.6
-pkgrel=9
+pkgrel=10
 pkgdesc="Extremely lightweight but extensible database access library written 
in C."
 arch=('x86_64')
-url="http://www.linuxnetworks.de/doc/index.php/OpenDBX";
+url="https://www.linuxnetworks.de/doc/index.php/OpenDBX";
 license=('LGPL')
 depends=('libfbclient' 'mariadb-libs' 'postgresql-libs' 'sqlite' 'freetds')
 source=(https://linuxnetworks.de/opendbx/download/${pkgname}-${pkgver}.tar.gz
@@ -17,24 +17,24 @@
 '786f9622791de113bfe1ee9fc2fdc42ea4a58d31a006db1dc91ffd7fb8b6deeb')
 
 prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
   patch -up1 <"$srcdir/opendbx.patch"
 }
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
   CPPFLAGS=${CPPFLAGS}" -I/usr/include/mysql"\
   ./configure --with-backends="firebird mysql mssql odbc pgsql sqlite3 sqlite3 
sybase" \
   --prefix=/usr
-  make all -j1
+  make all
 }
 check() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
   make check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}/" install
 }
 


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

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 3, 2019 @ 03:20:20
  Author: polyzen
Revision: 448258

archrelease: copy trunk to community-x86_64

Added:
  skim/repos/community-x86_64/PKGBUILD
(from rev 448257, skim/trunk/PKGBUILD)
Deleted:
  skim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-03 03:19:50 UTC (rev 448257)
+++ PKGBUILD2019-04-03 03:20:20 UTC (rev 448258)
@@ -1,34 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: fenuks
-
-pkgname=skim
-pkgver=0.6.5
-pkgrel=1
-pkgdesc='Fuzzy Finder in rust!'
-arch=('x86_64')
-depends=('ncurses')
-makedepends=('rust')
-url=https://github.com/lotabout/skim
-license=('MIT')
-source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
-sha512sums=('f643cb2a72b1311b9de2955b0a719af4371ea276fb3465935f83844ffdd7cf8362b40c7f4e51f0c085e5b51542a69b6fe99e4864daf357778638706fc112f2a1')
-
-build() {
-  cd skim-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd skim-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd skim-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/man1/*
-  install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
-  install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
-  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
-}

Copied: skim/repos/community-x86_64/PKGBUILD (from rev 448257, 
skim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-03 03:20:20 UTC (rev 448258)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: fenuks
+
+pkgname=skim
+pkgver=0.6.6
+pkgrel=1
+pkgdesc='Fuzzy Finder in rust!'
+arch=('x86_64')
+depends=('ncurses')
+makedepends=('rust')
+url=https://github.com/lotabout/skim
+license=('MIT')
+source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
+sha512sums=('df4c8c9a3641321786e014f63d1f1bc4b15762d666792d3f8b86e73704c15643ca01e3f6242243eb903454cc7c8e983255583b1cddc39cfdd5e779c00f1a546e')
+
+build() {
+  cd skim-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd skim-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd skim-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/man1/*
+  install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
+  install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
+  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
+}


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

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 3, 2019 @ 03:19:50
  Author: polyzen
Revision: 448257

upgpkg: skim 0.6.6-1

Modified:
  skim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 23:57:50 UTC (rev 448256)
+++ PKGBUILD2019-04-03 03:19:50 UTC (rev 448257)
@@ -2,7 +2,7 @@
 # Contributor: fenuks
 
 pkgname=skim
-pkgver=0.6.5
+pkgver=0.6.6
 pkgrel=1
 pkgdesc='Fuzzy Finder in rust!'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 url=https://github.com/lotabout/skim
 license=('MIT')
 source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
-sha512sums=('f643cb2a72b1311b9de2955b0a719af4371ea276fb3465935f83844ffdd7cf8362b40c7f4e51f0c085e5b51542a69b6fe99e4864daf357778638706fc112f2a1')
+sha512sums=('df4c8c9a3641321786e014f63d1f1bc4b15762d666792d3f8b86e73704c15643ca01e3f6242243eb903454cc7c8e983255583b1cddc39cfdd5e779c00f1a546e')
 
 build() {
   cd skim-$pkgver


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

2019-04-02 Thread Anatol Pomozov via arch-commits
Date: Tuesday, April 2, 2019 @ 23:57:50
  Author: anatolik
Revision: 448256

archrelease: copy trunk to community-x86_64

Added:
  ruby-hpricot/repos/community-x86_64/PKGBUILD
(from rev 448255, ruby-hpricot/trunk/PKGBUILD)
Deleted:
  ruby-hpricot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 23:57:13 UTC (rev 448255)
+++ PKGBUILD2019-04-02 23:57:50 UTC (rev 448256)
@@ -1,30 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Andrea Scarpino 
-# Contributor: William Rea 
-# Contributor: 
-# Contributor: Alexsandr Pavlov 
-
-_gemname=hpricot
-pkgname=ruby-$_gemname
-pkgver=0.8.6
-pkgrel=7
-pkgdesc='A swift, liberal HTML parser with a fantastic library'
-arch=(x86_64)
-url='http://code.whytheluckystiff.net/hpricot/'
-license=(MIT)
-depends=(ruby)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('87ce2c17960a5e1d7ceaa16d0591ca6a28379ce0')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install --no-document -i 
"$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-  find "$pkgdir/$_gemdir/extensions/" -name *.so -delete
-  rm -r "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/test"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  rm -r "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/ext"
-}

Copied: ruby-hpricot/repos/community-x86_64/PKGBUILD (from rev 448255, 
ruby-hpricot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 23:57:50 UTC (rev 448256)
@@ -0,0 +1,30 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Andrea Scarpino 
+# Contributor: William Rea 
+# Contributor: 
+# Contributor: Alexsandr Pavlov 
+
+_gemname=hpricot
+pkgname=ruby-$_gemname
+pkgver=0.8.6
+pkgrel=8
+pkgdesc='A swift, liberal HTML parser with a fantastic library'
+arch=(x86_64)
+url='https://github.com/hpricot/hpricot'
+license=(MIT)
+depends=(ruby)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('87ce2c17960a5e1d7ceaa16d0591ca6a28379ce0')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install --no-document -i 
"$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  find "$pkgdir/$_gemdir/extensions/" -name *.so -delete
+  rm -r "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/test"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  rm -r "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/ext"
+}


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

2019-04-02 Thread Anatol Pomozov via arch-commits
Date: Tuesday, April 2, 2019 @ 23:57:13
  Author: anatolik
Revision: 448255

upgpkg: ruby-hpricot 0.8.6-8

Modified:
  ruby-hpricot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 21:49:52 UTC (rev 448254)
+++ PKGBUILD2019-04-02 23:57:13 UTC (rev 448255)
@@ -7,7 +7,7 @@
 _gemname=hpricot
 pkgname=ruby-$_gemname
 pkgver=0.8.6
-pkgrel=7
+pkgrel=8
 pkgdesc='A swift, liberal HTML parser with a fantastic library'
 arch=(x86_64)
 url='https://github.com/hpricot/hpricot'


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

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 22:18:44
  Author: arojas
Revision: 349715

archrelease: copy trunk to extra-x86_64

Added:
  kwallet-pam/repos/extra-x86_64/PKGBUILD
(from rev 349714, kwallet-pam/trunk/PKGBUILD)
Deleted:
  kwallet-pam/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 22:18:17 UTC (rev 349714)
+++ PKGBUILD2019-04-02 22:18:44 UTC (rev 349715)
@@ -1,47 +0,0 @@
-# Maintainer:Antonio Rojas 
-
-pkgname=kwallet-pam
-pkgver=5.15.4
-pkgrel=1
-pkgdesc='KWallet PAM integration'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(pam libgcrypt socat)
-makedepends=(extra-cmake-modules qt5-base)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('48df46fc3f850e61fc6bc67d034b8579bd3977d4063047087c7ec3cf8c4d0e72'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell 

-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson 

-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib
-  make
-
-  cd ../build4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DKWALLET4=1
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ../build4
-  make DESTDIR="$pkgdir" install
-}

Copied: kwallet-pam/repos/extra-x86_64/PKGBUILD (from rev 349714, 
kwallet-pam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 22:18:44 UTC (rev 349715)
@@ -0,0 +1,37 @@
+# Maintainer:Antonio Rojas 
+
+pkgname=kwallet-pam
+pkgver=5.15.4
+pkgrel=2
+pkgdesc='KWallet PAM integration'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(pam libgcrypt socat)
+makedepends=(extra-cmake-modules qt5-base)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('67d41df8b573ab0e29e731264cc990b34f0ba66004737ce00ae0b2ecabe53fdf'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell 

+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson 

+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in mplayer/repos/extra-x86_64 (8 files)

2019-04-02 Thread Levente Polyak via arch-commits
Date: Tuesday, April 2, 2019 @ 22:18:05
  Author: anthraxx
Revision: 349713

archrelease: copy trunk to extra-x86_64

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

-+
 PKGBUILD|  208 +-
 include-samba-4.0.patch |   24 ++---
 mplayer.desktop |   44 -
 revert-icl-fixes.patch  |  132 ++---
 4 files changed, 214 insertions(+), 194 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 22:17:57 UTC (rev 349712)
+++ PKGBUILD2019-04-02 22:18:05 UTC (rev 349713)
@@ -1,94 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Hugo Doria 
-
-pkgbase=mplayer
-pkgname=('mplayer' 'mencoder')
-pkgver=38125
-pkgrel=3
-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' 'rtmpdump' 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg')
-options=('!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"
-  # https://bugs.archlinux.org/task/62050
-  sed -E "s|(#include )|#include \n\1|g" -i 
stream/stream_smb.c
-  ./version.sh
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  export CFLAGS="${CFLAGS/-march=x86-64/}"
-  export CFLAGS="${CFLAGS/-mtune=generic/}"
-  export LDFLAGS="${LDFLAGS/,O1/}"
-  export LDFLAGS="${LDFLAGS/,--sort-common/}"
-  ./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 \
---extra-cflags="${CFLAGS}" \
---extra-ldflags="${LDFLAGS}"
-  [[ "${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' 'x264' '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' 'x264' '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/repo

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

2019-04-02 Thread Levente Polyak via arch-commits
Date: Tuesday, April 2, 2019 @ 22:17:57
  Author: anthraxx
Revision: 349712

upgpkg: mplayer 38125-4 (extended and explicit deps)

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 21:05:36 UTC (rev 349711)
+++ PKGBUILD2019-04-02 22:17:57 UTC (rev 349712)
@@ -6,15 +6,24 @@
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
 pkgver=38125
-pkgrel=3
+pkgrel=4
 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' 'rtmpdump' 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg')
+makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'libmng' 
'libxss'
+ 'smbclient' 'aalib' 'jack' 'libcaca' 'faac' 'faad2' 'lirc' 'libxv'
+ 'libxvmc' 'enca' 'libdca' 'a52dec' 'libvpx' 'unzip' 'mesa'
+ 'live-media' 'yasm' 'git' 'mpg123' 'ladspa' 'libcdio' 'zlib'
+ 'libcdio-paranoia' 'subversion' 'x264' 'libx264.so' 'rtmpdump'
+ 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg' 'giflib' 'libgif.so'
+ 'libbs2b' 'fribidi' 'opus' 'libvorbis' 'libvorbis.so' 'gsm'
+ 'libpulse' 'alsa-lib' 'glibc' 'libass' 'libass.so' 'libjpeg'
+ 'libpng' 'libogg' 'libtheora' 'libbluray' 'libbluray.so'
+ 'xvidcore' 'libxvidcore.so' 'ncurses' 'libncursesw.so'
+ 'fontconfig' 'freetype2' 'libx11' 'libxext' 'libvdpau' 'libgl'
+ 'lame' 'desktop-file-utils' 'ttf-font' 'openal' 'speex'
+ 'libmpeg2')
 options=('!emptydirs')
 
source=(${pkgbase}-${pkgver}::"svn://svn.mplayerhq.hu/mplayer/trunk#revision=${pkgver}"
 mplayer.desktop
@@ -45,8 +54,6 @@
 --disable-gui \
 --disable-arts \
 --disable-liblzo \
---disable-speex \
---disable-openal \
 --disable-libdv \
 --disable-musepack \
 --disable-esd \
@@ -60,7 +67,7 @@
 --enable-smb \
 --language=all \
 --confdir=/etc/mplayer \
---extra-cflags="${CFLAGS}" \
+--extra-cflags="${CFLAGS} ${CPPFLAGS}" \
 --extra-ldflags="${LDFLAGS}"
   [[ "${CARCH}" = "i686" ]] && sed 's|-march=i486|-march=i686|g' -i config.mak
   make
@@ -68,11 +75,18 @@
 
 package_mplayer() {
   pkgdesc='Media player for Linux'
-  backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
+  backup=('etc/mplayer/codecs.conf'
+  'etc/mplayer/input.conf')
   depends=('desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
'lirc' 'x264' 'libmng' 'libdca' 'aalib' 'libxinerama' 'smbclient'
-   'jack' 'libmad' 'libcaca' 'libxxf86dga' 'faac' 'faad2' 'libxvmc' 
'mpg123'
-   'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 'ffmpeg')
+   'jack' 'libmad' 'libcaca' 'libxxf86dga' 'libxxf86vm' 'faac' 'faad2'
+   'libxv' 'libxvmc' 'mpg123' 'libx11' 'libcdio' 'libcdio-paranoia'
+   'rtmpdump' 'libdvdread' 'libdvdnav' 'ffmpeg' 'libbs2b' 'alsa-lib'
+   'giflib' 'libgif.so' 'glibc' 'libass' 'libass.so' 'zlib' 'libjpeg'
+   'libpng' 'libpulse' 'libogg' 'fribidi' 'libtheora' 'libvorbis'
+   'libvorbis.so' 'libbluray' 'libbluray.so' 'xvidcore'
+   'libxvidcore.so' 'ncurses' 'libncursesw.so' 'fontconfig' 'freetype2'
+   'libxext' 'libvdpau' 'libgl' 'openal' 'speex' 'libmpeg2')
 
   cd ${pkgbase}-${pkgver}
   make DESTDIR="${pkgdir}" install-mplayer install-mplayer-man
@@ -84,8 +98,14 @@
 
 package_mencoder() {
   pkgdesc='Free command line video decoding, encoding and filtering tool'
-  depends=('enca' 'a52dec' 'libvpx' 'x264' 'libmng' 'libdca' 'smbclient' 
'libmad'
-   'faac' 'faad2' 'mpg123' 'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 
'ffmpeg')
+  depends=('glibc' 'enca' 'a52dec' 'libvpx' 'x264' 'libx264.so' 'libmng' 
'libdca'
+   'smbclient' 'libmad' 'faac' 'faad2' 'mpg123' 'libcdio'
+   'libcdio-paranoia' 'rtmpdump' 'libdvdread' 'libdvdnav' 'ffmpeg'
+   'libbs2b' 'ncurses' 'libncursesw.so' 'zlib' 'alsa-lib' 'fontconfig'
+   'freetype2' 'fribidi' 'giflib' 'libgif.so' 'libvorbis'
+   'libvorbis.so' 'libpng' 'libjpeg' 'libass' 'libass.so' 'lame'
+   'libbluray' 'libbluray.so' 'libtheora' 'xvidcore' 'libxvidcore.so'
+   'openal' 'speex' 'libmpeg2')
 
   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 {} +


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

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 22:18:17
  Author: arojas
Revision: 349714

Drop KDE4 kwallet support, it's long gone

Modified:
  kwallet-pam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 22:18:05 UTC (rev 349713)
+++ PKGBUILD2019-04-02 22:18:17 UTC (rev 349714)
@@ -2,7 +2,7 @@
 
 pkgname=kwallet-pam
 pkgver=5.15.4
-pkgrel=1
+pkgrel=2
 pkgdesc='KWallet PAM integration'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'
@@ -19,7 +19,7 @@
   '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

 
 prepare() {
-  mkdir -p build{,4}
+  mkdir -p build
 }
 
 build() {
@@ -29,19 +29,9 @@
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DCMAKE_INSTALL_LIBEXECDIR=lib
   make
-
-  cd ../build4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DKWALLET4=1
-  make
 }
 
 package() {
   cd build
   make DESTDIR="$pkgdir" install
-  cd ../build4
-  make DESTDIR="$pkgdir" install
 }


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

2019-04-02 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, April 2, 2019 @ 21:49:33
  Author: kgizdov
Revision: 448253

updated to v0.7.1

Modified:
  absl-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 21:28:02 UTC (rev 448252)
+++ PKGBUILD2019-04-02 21:49:33 UTC (rev 448253)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=absl-py
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="Abseil Python Common Libraries"
 arch=(any)
@@ -9,7 +9,7 @@
 license=(APACHE)
 makedepends=(python-setuptools)
 source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
-sha512sums=('7b1b27be4115405098b2ff1a20a8c8b005bcc81a50a37bc82fd196f0d6d4954136bb10431294adf893f3432c5cca7c4856f79fd58ff00f933bfe38a085d2facb')
+sha512sums=('c21e6a4f32044d790787f88d5dd44d7f226562419cedd4194c96218e293d157bb6e15bb1dafaec480548cfa6f34b3145bca70481854afcc31f6dca85f0067072')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-04-02 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, April 2, 2019 @ 21:49:52
  Author: kgizdov
Revision: 448254

archrelease: copy trunk to community-any

Added:
  absl-py/repos/community-any/PKGBUILD
(from rev 448253, absl-py/trunk/PKGBUILD)
Deleted:
  absl-py/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 21:49:33 UTC (rev 448253)
+++ PKGBUILD2019-04-02 21:49:52 UTC (rev 448254)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=absl-py
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Abseil Python Common Libraries"
-arch=(any)
-url="https://github.com/abseil/abseil-py";
-license=(APACHE)
-makedepends=(python-setuptools)
-source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
-sha512sums=('7b1b27be4115405098b2ff1a20a8c8b005bcc81a50a37bc82fd196f0d6d4954136bb10431294adf893f3432c5cca7c4856f79fd58ff00f933bfe38a085d2facb')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  chmod -R +r "${pkgdir}"/usr/lib
-}
-
-# vim:set ts=2 sw=2 et:

Copied: absl-py/repos/community-any/PKGBUILD (from rev 448253, 
absl-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 21:49:52 UTC (rev 448254)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=absl-py
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="Abseil Python Common Libraries"
+arch=(any)
+url="https://github.com/abseil/abseil-py";
+license=(APACHE)
+makedepends=(python-setuptools)
+source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
+sha512sums=('c21e6a4f32044d790787f88d5dd44d7f226562419cedd4194c96218e293d157bb6e15bb1dafaec480548cfa6f34b3145bca70481854afcc31f6dca85f0067072')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  chmod -R +r "${pkgdir}"/usr/lib
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-04-02 Thread Andrew Crerar via arch-commits
Date: Tuesday, April 2, 2019 @ 21:28:02
  Author: andrewsc
Revision: 448252

archrelease: copy trunk to community-any

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

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

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

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

2019-04-02 Thread Andrew Crerar via arch-commits
Date: Tuesday, April 2, 2019 @ 21:10:07
  Author: andrewsc
Revision: 448251

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

firefox-developer-edition-i18n: Updating 67.0b7

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 21:04:23 UTC (rev 448250)
+++ PKGBUILD2019-04-02 21:10:07 UTC (rev 448251)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=67.0b6
+pkgver=67.0b7
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -133,100 +133,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('ac8ca171616465a3992f10b89fcce111f1363890bc0afbb8dc287ffcb12eab4bfca4f6fa9bb6de1a3296e4b745b31c72efa5030b028f984dd410b7a306c4e843'
-
'8444e26b684a08961f09d733ffab1141c1436d7086dad0e9f9d0e0753efbcca8936b2c94f37952d7c8b790d19e9b1f017d2a4c4aec26c0e2858d0b6191de8f9a'
-
'546ad3df95c8223d7635d71ba9a9c6c0dc4f087a82fa94f154deff852e89f4c250ce9f63b1a87fb5d7ad39f6b7ee0c1b5ef1f6b5a1e432b4861d3a1329bcd9ed'
-
'14fad7fce5a8760392b14db9d8ff0d5b9cabb48c290e8526a77d4a621f1145ddbe3b18142ff83b20257729b6c38f9f3098c555a43b57a4d028560a1b20d04861'
-
'98b249ae10f59f457d8c3b30e550217646bed7466edd7f898a65882adcb0c6b31f13ce0b53ecb8c063808be3713cf40c023b6f70ea7422408d9cab7ed79670d7'
-
'7a5cb774874b310784ab73cf5e4dd053e67e8eb26d92ce753e994335acf3487fea707323abed4a05408cf093d4f1d264e136c9a818ab04e9750bed57d7d60dd7'
-
'b0aa0027ab0fa39246d2254bb7e373695e3cae3836d85311c847896baf0b1e1a79eeecfc4e07127032738d47d67a9dda0471d9fb72846e2c28f0788a0aaedb88'
-
'0a8ab171252e5042040f83d63de7458d9892305328d7ebd9ec5327bede369167da1d8d70fd5c0174e58a6778dd7a8be47a530cc77f9688b789d9a8331deb'
-
'f4ec56d3fe8d5ce1b69400d8dde4082eefbb974e435783aa16ebc5321632ce572797e846df27c15821b767cea84756249ee8454508700c17087ac0a87e47626d'
-
'da2b52edb824830f24c2dfb71d723c2f2ea5eff75675d75170282adbe17249b4a08afc35c165535dfa63e57d26df76aeb2269c9e31ba47f3d4bdf4c1329b9dbf'
-
'ba6ba39bbdfdfb78325784e6f169d2ca5506cb16c31d7529432f558a167f4295f717c80430fc80e02e412ff170a72188e6febd23affc91a982c3d226f620074c'
-
'29819292f64a06843255af11e408031d44afd7bdc6898361e562675287dc84cf99f721d5c36bea4860d40c4000cf56cbb7315b8b5514194e76ed14a5ff1f6bd9'
-
'a8227f917fcfedb20d3632415518e1f4fe18b37bd55efddde73486a77ca45c12b87943d4bd85e3397f1f4bb61bf27172166727ab46a358807ca3a0cf893eb335'
-
'6a703ec8f050a03c5978bfcbb45a76c3f200d3120e92f870c4db4d9ee6958e84ef1db189848617d36b1f5c206f87c246940d71f1b811aa03567f391b15ecc364'
-
'934f7d67d7bd624fbaa577191cfc190ba4072d19cd678f314fc5ee709dbc118e3c7097232c8a1e65a0d7da3b36fcf29c3db96ea00b7b99b39b9926f5c32482bb'
-
'6c816bad8a4830fdbc0bc02034ec827c0b6bfcc61fbd16b51a05d35cf53841b12daeb766f2a643023bf6aa5bd0860c24882a3a447095ba874dca4a8acb7c9fde'
-
'd4bda595e59a8f791d443feeacd4f2b9f0e61bbfddc5a409f3c291b79d8de6f766eae70255952c300b738daba5f7ec5016342a3d7960ae1b053ca7749560e35c'
-
'9d1f2a3f6b354e8ac335d74d5754adcfc26ef1e3a61695758ef17ca61f63489d0538bd8a9735f95f8d1dc6520b2e2b760792932a3538df901c860318160351bd'
-
'bfeb86dac0e6aff0a07fe7b299b2cbd8a28a190c20b0de40c9a8d2d17087386a9668ad8a6e6d3476c973b06f6b04e244787d9a4d7d649f4ec71a2154f1712327'
-
'9353d9bf0c3e178c0efdd8f9568cfd6609afcf0fc8c5de8669b29b0c471b8222ace966c4694a782f67d9ed467c908099517c179cd876c5f86c4ae61aa24eb69c'
-
'50dac1f6c2b79958a3d4596f0f0aac5fade85db5cde06f7b029201dcdb2713320e39998598ff292acc9954356da97ca26fd238feef50ea6279a41b38cf48ef61'
-
'9490178c660b99863ced760a8fda5c23726e93707804b0223b41ded9ef0b7e5e19ac4f414941e324969d297647e142ecdf3ea3aac6efb3da3c4c176f031dbec0'
-
'51a39af550278fccbe854c591f89d4dd09f6026e8d97c11284fe36ba978f4c3c072b4d89c6755f9f9cbd3f7a7b6b27fc0de9a3ae2de0955d51d8f4474ad3da91'
-
'18ef84ad135a0fc8378d11c1b98bb4811cac65a3b84ab8eeaf2db7afda9dd5d6cb5f48d4a3963c5da8b7a5e2e7492e39fd2e341074365391084b954d188675ca'
-
'2dc70532a7e526d3b01ed8cc0a5d867b884695d2fc070f668d62bf906b570462ba0bbe1c65a7b78be303971b09ad2d740d49471d71bab053cb3ebdda2175e12e'
-
'39348e0fab681bd4a5dac2afbd9db92bfa1b61c2fc80c4fb035d5041ebebb38ef9139f71bb0b94ccd3651641477786bfbf8c9eb4e1e9a7d58dd200b028fd1517'
-
'dc2ae2e87cef2ebb1c29792f1be3551d70838b75eb86252dadf26c1782ac5918c994123a771ff72f2c5d1274da8672d8a9efd70bd49a7f64008390aac0f3fca0'
-
'95a7f6ca5caa916902adbf306ce5179b64b5412cc54b3758bed41d919949a6235a51bc245f9795fbfe19b4daa3a156478db49dd50034ca1c1245347ea97df384'
-
'63d12b8e7157d6

[arch-commits] Commit in (bluefish)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 21:05:36
  Author: arojas
Revision: 349711

Moved to community

Deleted:
  bluefish/


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

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 21:04:23
  Author: arojas
Revision: 448250

archrelease: copy trunk to community-x86_64

Added:
  bluefish/repos/community-x86_64/PKGBUILD
(from rev 448249, bluefish/trunk/PKGBUILD)
  bluefish/repos/community-x86_64/bluefish.install
(from rev 448249, bluefish/trunk/bluefish.install)
Deleted:
  bluefish/repos/community-x86_64/PKGBUILD
  bluefish/repos/community-x86_64/bluefish.install

--+
 PKGBUILD |   82 ++---
 bluefish.install |   48 +++
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 21:03:52 UTC (rev 448249)
+++ PKGBUILD2019-04-02 21:04:23 UTC (rev 448250)
@@ -1,41 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=bluefish
-pkgver=2.2.10
-pkgrel=3
-pkgdesc="A powerful HTML editor for experienced web designers and programmers"
-arch=('x86_64')
-url="http://bluefish.openoffice.nl/";
-license=('GPL3')
-depends=('gtk3' 'enchant' 'python2')
-makedepends=('gucharmap' 'intltool')
-optdepends=('gucharmap: for using the charmap plugin')
-install=bluefish.install
-source=(https://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
-sha1sums=('abb2080b5cbc65cd9c7551572ac21012c5ee2031'
-  'SKIP')
-validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
-data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
-  sed -e 's|\[enchant\]|\[enchant-2\]|g' -e 's|\[enchant >|\[enchant-2 >|g' \
--e 's|enchant/enchant.h|enchant-2/enchant.h|g' -e 's|BF_dependencies 
enchant|BF_dependencies enchant-2|g' \
--i configure.ac
-  autoreconf -vi
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
---enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: bluefish/repos/community-x86_64/PKGBUILD (from rev 448249, 
bluefish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 21:04:23 UTC (rev 448250)
@@ -0,0 +1,41 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=bluefish
+pkgver=2.2.10
+pkgrel=4
+pkgdesc="A powerful HTML editor for experienced web designers and programmers"
+arch=('x86_64')
+url="http://bluefish.openoffice.nl/";
+license=('GPL3')
+depends=('gtk3' 'enchant' 'python2')
+makedepends=('gucharmap' 'intltool')
+optdepends=('gucharmap: for using the charmap plugin')
+install=bluefish.install
+source=(https://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
+sha1sums=('abb2080b5cbc65cd9c7551572ac21012c5ee2031'
+  'SKIP')
+validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
+data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
+  sed -e 's|\[enchant\]|\[enchant-2\]|g' -e 's|\[enchant >|\[enchant-2 >|g' \
+-e 's|enchant/enchant.h|enchant-2/enchant.h|g' -e 's|BF_dependencies 
enchant|BF_dependencies enchant-2|g' \
+-i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+--enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: bluefish.install
===
--- bluefish.install2019-04-02 21:03:52 UTC (rev 448249)
+++ bluefish.install2019-04-02 21:04:23 UTC (rev 448250)
@@ -1,24 +0,0 @@
-post_install() {
-  if [ ! -d etc/xml ]; then
-mkdir -p etc/xml
-  fi
-  if [ ! -e etc/xml/catalog ]; then
-xmlcatalog --noout --create etc/xml/catalog
-  fi
-  xmlcatalog --noout --add 'delegateURI' \
-'http://bluefish.openoffice.nl/ns/bflang/2.0/' /usr/share/xml/bluefish \
-etc/xml/catalog
-}
-
-pre_upgrade() {
-  post_remove
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  xmlcatalog --noout --del \
-/usr/share/xml/bluefish etc/xml/catalog
-}

Copied: bluefish/repos/community-x86_64/bluefish.install (from rev 448249, 
bluefish/trunk/bluefish.install)
===
--- bluefish.install(rev 0)
+++ bluefish.install2019-04-02 21:04:23 UTC 

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

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 21:03:52
  Author: arojas
Revision: 448249

Rebuild for moving to community

Modified:
  bluefish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 20:58:22 UTC (rev 448248)
+++ PKGBUILD2019-04-02 21:03:52 UTC (rev 448249)
@@ -2,7 +2,7 @@
 
 pkgname=bluefish
 pkgver=2.2.10
-pkgrel=3
+pkgrel=4
 pkgdesc="A powerful HTML editor for experienced web designers and programmers"
 arch=('x86_64')
 url="http://bluefish.openoffice.nl/";


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

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 20:58:22
  Author: arojas
Revision: 448248

archrelease: copy trunk to community-x86_64

Added:
  bluefish/repos/community-x86_64/
  bluefish/repos/community-x86_64/PKGBUILD
(from rev 448247, bluefish/trunk/PKGBUILD)
  bluefish/repos/community-x86_64/bluefish.install
(from rev 448247, bluefish/trunk/bluefish.install)

--+
 PKGBUILD |   41 +
 bluefish.install |   24 
 2 files changed, 65 insertions(+)

Copied: bluefish/repos/community-x86_64/PKGBUILD (from rev 448247, 
bluefish/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-04-02 20:58:22 UTC (rev 448248)
@@ -0,0 +1,41 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=bluefish
+pkgver=2.2.10
+pkgrel=3
+pkgdesc="A powerful HTML editor for experienced web designers and programmers"
+arch=('x86_64')
+url="http://bluefish.openoffice.nl/";
+license=('GPL3')
+depends=('gtk3' 'enchant' 'python2')
+makedepends=('gucharmap' 'intltool')
+optdepends=('gucharmap: for using the charmap plugin')
+install=bluefish.install
+source=(https://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
+sha1sums=('abb2080b5cbc65cd9c7551572ac21012c5ee2031'
+  'SKIP')
+validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
+data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
+  sed -e 's|\[enchant\]|\[enchant-2\]|g' -e 's|\[enchant >|\[enchant-2 >|g' \
+-e 's|enchant/enchant.h|enchant-2/enchant.h|g' -e 's|BF_dependencies 
enchant|BF_dependencies enchant-2|g' \
+-i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+--enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: bluefish/repos/community-x86_64/bluefish.install (from rev 448247, 
bluefish/trunk/bluefish.install)
===
--- community-x86_64/bluefish.install   (rev 0)
+++ community-x86_64/bluefish.install   2019-04-02 20:58:22 UTC (rev 448248)
@@ -0,0 +1,24 @@
+post_install() {
+  if [ ! -d etc/xml ]; then
+mkdir -p etc/xml
+  fi
+  if [ ! -e etc/xml/catalog ]; then
+xmlcatalog --noout --create etc/xml/catalog
+  fi
+  xmlcatalog --noout --add 'delegateURI' \
+'http://bluefish.openoffice.nl/ns/bflang/2.0/' /usr/share/xml/bluefish \
+etc/xml/catalog
+}
+
+pre_upgrade() {
+  post_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  xmlcatalog --noout --del \
+/usr/share/xml/bluefish etc/xml/catalog
+}


[arch-commits] Commit in (5 files)

2019-04-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, April 2, 2019 @ 20:58:18
  Author: arojas
Revision: 448247

extra2community: Moving bluefish from extra to community

Added:
  bluefish/
  bluefish/repos/
  bluefish/trunk/
  bluefish/trunk/PKGBUILD
  bluefish/trunk/bluefish.install

--+
 PKGBUILD |   41 +
 bluefish.install |   24 
 2 files changed, 65 insertions(+)

Added: bluefish/trunk/PKGBUILD
===
--- bluefish/trunk/PKGBUILD (rev 0)
+++ bluefish/trunk/PKGBUILD 2019-04-02 20:58:18 UTC (rev 448247)
@@ -0,0 +1,41 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=bluefish
+pkgver=2.2.10
+pkgrel=3
+pkgdesc="A powerful HTML editor for experienced web designers and programmers"
+arch=('x86_64')
+url="http://bluefish.openoffice.nl/";
+license=('GPL3')
+depends=('gtk3' 'enchant' 'python2')
+makedepends=('gucharmap' 'intltool')
+optdepends=('gucharmap: for using the charmap plugin')
+install=bluefish.install
+source=(https://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
+sha1sums=('abb2080b5cbc65cd9c7551572ac21012c5ee2031'
+  'SKIP')
+validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
+data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
+  sed -e 's|\[enchant\]|\[enchant-2\]|g' -e 's|\[enchant >|\[enchant-2 >|g' \
+-e 's|enchant/enchant.h|enchant-2/enchant.h|g' -e 's|BF_dependencies 
enchant|BF_dependencies enchant-2|g' \
+-i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+--enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: bluefish/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: bluefish/trunk/bluefish.install
===
--- bluefish/trunk/bluefish.install (rev 0)
+++ bluefish/trunk/bluefish.install 2019-04-02 20:58:18 UTC (rev 448247)
@@ -0,0 +1,24 @@
+post_install() {
+  if [ ! -d etc/xml ]; then
+mkdir -p etc/xml
+  fi
+  if [ ! -e etc/xml/catalog ]; then
+xmlcatalog --noout --create etc/xml/catalog
+  fi
+  xmlcatalog --noout --add 'delegateURI' \
+'http://bluefish.openoffice.nl/ns/bflang/2.0/' /usr/share/xml/bluefish \
+etc/xml/catalog
+}
+
+pre_upgrade() {
+  post_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  xmlcatalog --noout --del \
+/usr/share/xml/bluefish etc/xml/catalog
+}


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

2019-04-02 Thread Andrew Crerar via arch-commits
Date: Tuesday, April 2, 2019 @ 20:45:12
  Author: andrewsc
Revision: 448246

archrelease: copy trunk to community-x86_64

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

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

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

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

2019-04-02 Thread Andrew Crerar via arch-commits
Date: Tuesday, April 2, 2019 @ 20:24:54
  Author: andrewsc
Revision: 448245

upgpkg: firefox-developer-edition 67.0b7-1

firefox-developer-edition: Updating to 67.0b7

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 20:09:30 UTC (rev 448244)
+++ PKGBUILD2019-04-02 20:24:54 UTC (rev 448245)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=67.0b6
+pkgver=67.0b7
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2019-04-02 Thread Andreas Radke via arch-commits
Date: Tuesday, April 2, 2019 @ 19:23:11
  Author: andyrtr
Revision: 349708

upgpkg: hplip 1:3.19.3-1

upstream update 3.19.3

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 19:14:41 UTC (rev 349707)
+++ PKGBUILD2019-04-02 19:23:11 UTC (rev 349708)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.1
+pkgver=3.19.3
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('b1d663a3538a19ab2c195bc627c765b9dded047b0431f6fc2096a8a31b4efb5cf52c88ad9665a2d78893ba66c1c47ccf79c161965f308a27eeeb11b156b446c8'
+sha512sums=('6191974d6c9a35e58a9b0d2ff1077b3a9479e44ccb76a551f3e29ca56d420bfe0778fa6b7a4e51b18f2e55cae9ad1f5216f716e22b651122ec0fe9e730fcd29a'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


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

2019-04-02 Thread Andreas Radke via arch-commits
Date: Tuesday, April 2, 2019 @ 19:23:19
  Author: andyrtr
Revision: 349709

archrelease: copy trunk to testing-x86_64

Added:
  hplip/repos/testing-x86_64/
  
hplip/repos/testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
(from rev 349708, 
hplip/trunk/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
  
hplip/repos/testing-x86_64/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
(from rev 349708, 
hplip/trunk/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch)
  
hplip/repos/testing-x86_64/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
(from rev 349708, 
hplip/trunk/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
  hplip/repos/testing-x86_64/PKGBUILD
(from rev 349708, hplip/trunk/PKGBUILD)
  hplip/repos/testing-x86_64/disable_upgrade.patch
(from rev 349708, hplip/trunk/disable_upgrade.patch)

-+
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch |   50 
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch   |   29 ++
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch |  113 
++
 PKGBUILD|   85 +++
 disable_upgrade.patch   |   14 +
 5 files changed, 291 insertions(+)

Copied: 
hplip/repos/testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 (from rev 349708, 
hplip/trunk/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
===
--- 
testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch  
(rev 0)
+++ 
testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch  
2019-04-02 19:23:19 UTC (rev 349709)
@@ -0,0 +1,50 @@
+From b3a7fa4d4a573cfe0073ae50197f679af7e3a0ac Mon Sep 17 00:00:00 2001
+From: Till Kamppeter 
+Date: Sat, 24 Sep 2016 10:37:20 +0200
+Subject: Add 'include ' in various places as CUPS 2.2 moved some
+ definitions to ppd.h
+
+---
+ configure.in   | 2 +-
+ prnt/hpcups/HPCupsFilter.h | 2 ++
+ prnt/hpijs/hpcupsfax.cpp   | 1 +
+ 3 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/configure.in b/configure.in
+index d3a1ddb..eabe14a 100755
+--- a/configure.in
 b/configure.in
+@@ -554,7 +554,7 @@ fi
+ 
+ if test "$hpijs_only_build" = "no" && test "$hpcups_only_build" = "no"; then
+AC_CHECK_LIB([cups], [cupsDoFileRequest], [LIBS="$LIBS"], 
[AC_MSG_ERROR([cannot find libcups support], 9)])
+-   AC_CHECK_HEADERS(cups/cups.h, ,[AC_MSG_ERROR([cannot find cups-devel 
support], 3)])
++   AC_CHECK_HEADERS(cups/cups.h cups/ppd.h, ,[AC_MSG_ERROR([cannot find 
cups-devel support], 3)])
+if test "$libusb01_build" = "yes"; then
+   AC_CHECK_LIB([usb], [usb_init], [LIBS="$LIBS"], [AC_MSG_ERROR([cannot 
find libusb support], 2)])
+   AC_CHECK_HEADERS(usb.h, ,[AC_MSG_ERROR([cannot find libusb-devel 
support], 11)])
+diff --git a/prnt/hpcups/HPCupsFilter.h b/prnt/hpcups/HPCupsFilter.h
+index ff5548e..c517989 100644
+--- a/prnt/hpcups/HPCupsFilter.h
 b/prnt/hpcups/HPCupsFilter.h
+@@ -38,6 +38,8 @@
+ 
+ #include "dbuscomm.h"
+ 
++#include 
++
+ #define   DBITMAPFILEHEADER   14
+ #define   DBITMAPINFOHEADER   40
+ 
+diff --git a/prnt/hpijs/hpcupsfax.cpp b/prnt/hpijs/hpcupsfax.cpp
+index 8514775..994e50f 100644
+--- a/prnt/hpijs/hpcupsfax.cpp
 b/prnt/hpijs/hpcupsfax.cpp
+@@ -43,6 +43,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #ifdef FALSE

Copied: 
hplip/repos/testing-x86_64/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 (from rev 349708, 
hplip/trunk/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch)
===
--- testing-x86_64/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
(rev 0)
+++ testing-x86_64/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
2019-04-02 19:23:19 UTC (rev 349709)
@@ -0,0 +1,29 @@
+From 04b5a1ddac1dd90c5a392f23aaf7df42eae32918 Mon Sep 17 00:00:00 2001
+From: Gaurav Sood 
+Date: Thu, 4 May 2017 18:32:08 +0200
+Subject: Fix handling of unicode filenames in sixext.py
+
+LP: #1480152
+Closes: #861731
+---
+ base/sixext.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/base/sixext.py b/base/sixext.py
+index 0bf4fc4f4..311bf72c6 100644
+--- a/base/sixext.py
 b/base/sixext.py
+@@ -110,11 +110,11 @@ if PY3:
+ 
+ 
+ def to_string_utf8(s):
+-return s.decode("utf-8")
++return s.decode("utf-8", 'ignore')
+ 
+ 
+ def to_string_latin(s):
+-return s.decode("latin-1")
++return s.decode("latin-1", 'ignore')
+ 
+ 
+ def to_unicode(s, enc=None):

Copied: 
hplip/repos/testing-x86_64/0025

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

2019-04-02 Thread Andreas Radke via arch-commits
Date: Tuesday, April 2, 2019 @ 19:14:41
  Author: andyrtr
Revision: 349707

archrelease: copy trunk to testing-x86_64

Added:
  openjpeg2/repos/testing-x86_64/
  openjpeg2/repos/testing-x86_64/PKGBUILD
(from rev 349706, openjpeg2/trunk/PKGBUILD)

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

Copied: openjpeg2/repos/testing-x86_64/PKGBUILD (from rev 349706, 
openjpeg2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-02 19:14:41 UTC (rev 349707)
@@ -0,0 +1,44 @@
+# Maintainer: Andreas Radke 
+# Contributor: Sergej Pupykin 
+
+pkgname=openjpeg2
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="An open source JPEG 2000 codec, version ${pkgver}"
+arch=(x86_64)
+license=('custom: BSD')
+url="https://github.com/uclouvain/openjpeg";
+makedepends=('cmake' 'doxygen')
+depends=('zlib' 'libpng' 'libtiff' 'lcms2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/uclouvain/openjpeg/archive/v$pkgver.tar.gz";)
+sha256sums=('63f5a4713ecafc86de51bfad89cc07bb788e9bba24ebbf0c4ca637621aadb6a9')
+
+prepare() {
+  cd ${srcdir}
+  mkdir build
+
+  # Install doxygen docs to the right directory
+  sed -i -e "s:DESTINATION\ share/doc:DESTINATION\ share/doc/${pkgname}:" 
openjpeg-${pkgver}/doc/CMakeLists.txt
+}
+
+build() {
+  cd "${srcdir}/build"
+
+  cmake "../openjpeg-${pkgver}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=OFF \
+-DBUILD_DOC=on
+
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+  
+  install -m755 -d "${pkgdir}/usr/share/licenses/openjpeg2"
+  mv ${pkgdir}/usr/share/doc/openjpeg-*/LICENSE 
${pkgdir}/usr/share/licenses/openjpeg2
+  rmdir ${pkgdir}/usr/share/doc/openjpeg-*
+}


[arch-commits] Commit in openjpeg2/trunk (PKGBUILD openjpeg2_install.patch)

2019-04-02 Thread Andreas Radke via arch-commits
Date: Tuesday, April 2, 2019 @ 19:14:31
  Author: andyrtr
Revision: 349706

upgpkg: openjpeg2 2.3.1-1

upstream update 2.3.1

Modified:
  openjpeg2/trunk/PKGBUILD
Deleted:
  openjpeg2/trunk/openjpeg2_install.patch

-+
 PKGBUILD|   30 +-
 openjpeg2_install.patch |   12 
 2 files changed, 5 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 19:13:39 UTC (rev 349705)
+++ PKGBUILD2019-04-02 19:14:31 UTC (rev 349706)
@@ -2,42 +2,28 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=openjpeg2
-pkgver=2.3.0
-pkgrel=3
+pkgver=2.3.1
+pkgrel=1
 pkgdesc="An open source JPEG 2000 codec, version ${pkgver}"
 arch=(x86_64)
 license=('custom: BSD')
-#url="http://www.openjpeg.org";
 url="https://github.com/uclouvain/openjpeg";
 makedepends=('cmake' 'doxygen')
- #'fcgi' 'xerces2-java')
 depends=('zlib' 'libpng' 'libtiff' 'lcms2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/uclouvain/openjpeg/archive/v$pkgver.tar.gz";
-openjpeg2_install.patch)
-sha256sums=('3dc787c1bb6023ba846c2a0d9b1f6e179f1cd255172bde9eb75b01f1e6c7d71a'
-'3196676a215f2c2921928b992ff8df1e76c616b8bdc8e5f84c0552db8c327239')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/uclouvain/openjpeg/archive/v$pkgver.tar.gz";)
+sha256sums=('63f5a4713ecafc86de51bfad89cc07bb788e9bba24ebbf0c4ca637621aadb6a9')
 
 prepare() {
   cd ${srcdir}
   mkdir build
-  # remove thirdparty libs
-#  sed -i '/add_subdirectory(thirdparty)/d' openjpeg-${pkgver}/CMakeLists.txt
-  
+
   # Install doxygen docs to the right directory
   sed -i -e "s:DESTINATION\ share/doc:DESTINATION\ share/doc/${pkgname}:" 
openjpeg-${pkgver}/doc/CMakeLists.txt
-
-  patch -Np0 -i openjpeg2_install.patch
 }
 
 build() {
   cd "${srcdir}/build"
 
-  # CMAKE flags
-  # MJ2 executables: '-DBUILD_MJ2:bool=on' (default: 'OFF')
-  # JPWL executables and JPWL library: '-DBUILD_JPWL:bool=on' (default: 'OFF')
-  # JPIP client (java compiler recommended) library and executables: 
'-DBUILD_JPIP:bool=on' (default: 'OFF')
-  # JPIP server (need fcgi) library and executables: 
'-DBUILD_JPIP_SERVER:bool=on' (default: 'OFF')
-
   cmake "../openjpeg-${pkgver}" \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -45,12 +31,6 @@
 -DBUILD_STATIC_LIBS=OFF \
 -DBUILD_DOC=on
 
-#-DBUILD_MJ2=ON \
-#-DBUILD_JPWL=ON \
-#-DBUILD_JPIP=ON \
-#-DBUILD_JPIP_SERVER=ON \
-#-DBUILD_JP3D=ON # --help -LAH
-
   make
 }
 

Deleted: openjpeg2_install.patch
===
--- openjpeg2_install.patch 2019-04-02 19:13:39 UTC (rev 349705)
+++ openjpeg2_install.patch 2019-04-02 19:14:31 UTC (rev 349706)
@@ -1,12 +0,0 @@
-diff -rupN openjpeg-2.3.0/src/lib/openjp2/CMakeLists.txt 
openjpeg-2.3.0-new/src/lib/openjp2/CMakeLists.txt
 openjpeg-2.3.0/src/lib/openjp2/CMakeLists.txt  2017-10-05 
00:23:14.0 +0200
-+++ openjpeg-2.3.0-new/src/lib/openjp2/CMakeLists.txt  2017-12-25 
13:53:07.0 +0100
-@@ -99,6 +99,7 @@ else()
- set(INSTALL_LIBS ${OPENJPEG_LIBRARY_NAME} openjp2_static)
-   else()
- add_library(${OPENJPEG_LIBRARY_NAME} ${OPENJPEG_SRCS})
-+set(INSTALL_LIBS ${OPENJPEG_LIBRARY_NAME})
-   endif()
- endif()
- 
-


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

2019-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 2, 2019 @ 19:13:39
  Author: heftig
Revision: 349705

archrelease: copy trunk to extra-x86_64

Added:
  
mutter/repos/extra-x86_64/0001-wayland-output-Report-unscaled-size-even-in-logical-.patch
(from rev 349704, 
mutter/trunk/0001-wayland-output-Report-unscaled-size-even-in-logical-.patch)
  mutter/repos/extra-x86_64/216.patch
(from rev 349704, mutter/trunk/216.patch)
  mutter/repos/extra-x86_64/PKGBUILD
(from rev 349704, mutter/trunk/PKGBUILD)
Deleted:
  
mutter/repos/extra-x86_64/0001-wayland-output-Report-unscaled-size-even-in-logical-.patch
  mutter/repos/extra-x86_64/216.patch
  mutter/repos/extra-x86_64/PKGBUILD

-+
 0001-wayland-output-Report-unscaled-size-even-in-logical-.patch |  294 
+-
 216.patch   |  256 
 PKGBUILD|  118 ++--
 3 files changed, 334 insertions(+), 334 deletions(-)

Deleted: 0001-wayland-output-Report-unscaled-size-even-in-logical-.patch
===
--- 0001-wayland-output-Report-unscaled-size-even-in-logical-.patch 
2019-04-02 19:02:56 UTC (rev 349704)
+++ 0001-wayland-output-Report-unscaled-size-even-in-logical-.patch 
2019-04-02 19:13:39 UTC (rev 349705)
@@ -1,147 +0,0 @@
-From 761000ec8f4b53d0fa06f235be2ed30b80ec5bcb Mon Sep 17 00:00:00 2001
-Message-Id: 
<761000ec8f4b53d0fa06f235be2ed30b80ec5bcb.1553890447.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Wed, 27 Mar 2019 00:38:02 +0100
-Subject: [PATCH] wayland/output: Report unscaled size even in logical layout
- mode
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-In physical layout mode, the size and scale of the `wl_output` matches
-the actual monitor:
-
-| Monitor  | `wl_output`  | `GdkMonitor` |
-|  |  |  |
-| 3840×2160 @1 | 3840×2160 @1 | 3840×2160 @1 |
-| 3840×2160 @2 | 3840×2160 @2 | 1920×1080 @2 |
-
-GTK currently does not support `xdg_output`. To estimate the logical
-output size for `GdkMonitor`, it divides the output's size by its scale
-factor. There might be other legacy clients making the same assumption.
-
-In logical layout mode, mutter currently reports logical geometry for
-the `wl_output`s, but this no longer matches the monitors:
-
-| Monitor| `wl_output`  | `GdkMonitor` |
-| -- |  |  |
-| 3840×2160 @1   | 3840×2160 @1 | 3840×2160 @1 |
-| 3840×2160 @2   | 1920×1080 @2 |  960×540  @2 |
-| 3840×2160 @1.5 | 2560×1440 @2 | 1280×720  @2 |
-
-This patch changes logical layout mode to multiply the sizes by the
-`wl_output`'s scale factor before sending them to the client. Now the
-sizes match the physical layout mode again:
-
-| Monitor| `wl_output`  | `GdkMonitor` |
-| -- |  |  |
-| 3840×2160 @1   | 3840×2160 @1 | 3840×2160 @1 |
-| 3840×2160 @2   | 3840×2160 @2 | 1920×1080 @2 |
-| 3840×2160 @1.5 | 5120×2880 @2 | 2560×1440 @2 |
-
-Unfortunately, non-integer output scales are not representable in
-`wl_output`. Still, I believe these values are better than before, and
-the best we can do for clients that do not know about `xdg_output`: The
-size of the output will match the size that a buffer for a fullscreen
-surface should have at the indicated scale.
-
-Fixes part of https://bugzilla.mozilla.org/show_bug.cgi?id=1534089
-https://gitlab.gnome.org/GNOME/mutter/merge_requests/510

- src/wayland/meta-wayland-outputs.c | 33 +++---
- 1 file changed, 21 insertions(+), 12 deletions(-)
-
-diff --git a/src/wayland/meta-wayland-outputs.c 
b/src/wayland/meta-wayland-outputs.c
-index 7695d86af..712a143a8 100644
 a/src/wayland/meta-wayland-outputs.c
-+++ b/src/wayland/meta-wayland-outputs.c
-@@ -181,24 +181,36 @@ send_output_events (struct wl_resource *resource,
-   MetaLogicalMonitor *old_logical_monitor;
-   guint old_mode_flags;
-   gint old_scale;
-+  gint scale;
-+  MetaRectangle old_rect;
-+  MetaRectangle rect;
-   float old_refresh_rate;
-   float refresh_rate;
- 
-   old_logical_monitor = wayland_output->logical_monitor;
-   old_mode_flags = wayland_output->mode_flags;
-   old_scale = wayland_output->scale;
-+  old_rect = old_logical_monitor->rect;
-   old_refresh_rate = wayland_output->refresh_rate;
- 
-+  scale = calculate_wayland_output_scale (logical_monitor);
-+  rect = logical_monitor->rect;
-   monitor = pick_main_monitor (logical_monitor);
--
-   current_mode = meta_monitor_get_current_mode (monitor);
-   refresh_rate = meta_monitor_mode_get_refresh_rate (current_mode);
- 
-+  if (meta_is_stage_views_scaled ()) {
-+old_rect.width *= old_scale;
-+old_rect.height *= old_scale;
-+rect.width *= scale;
-+rect.height *= scale;
-+  }
-+
-   gboolean need_done = FALSE;
- 
-   if (need

[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 2, 2019 @ 19:05:08
  Author: polyzen
Revision: 447862

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 447861, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 19:04:43 UTC (rev 447861)
+++ PKGBUILD2019-04-02 19:05:08 UTC (rev 447862)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=3.0.4
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'GPL' 'LGPL')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('062a12e876d81eff0dde197f248ae8b4799d9a16421d930482d54320adb9f3c3')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 447861, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 19:05:08 UTC (rev 447862)
@@ -0,0 +1,20 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=3.0.5
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'GPL' 'LGPL')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi";)
+noextract=("${source##*/}")
+sha256sums=('25e6e071461e20e262bd4ce8f56d5cd319653cabe978172cb28836d6eb7aab9c')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2019-04-02 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 2, 2019 @ 19:04:43
  Author: polyzen
Revision: 447861

upgpkg: firefox-tree-style-tab 3.0.5-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:49:09 UTC (rev 447860)
+++ PKGBUILD2019-04-02 19:04:43 UTC (rev 447861)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=3.0.4
+pkgver=3.0.5
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,7 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi";)
 noextract=("${source##*/}")
-sha256sums=('062a12e876d81eff0dde197f248ae8b4799d9a16421d930482d54320adb9f3c3')
+sha256sums=('25e6e071461e20e262bd4ce8f56d5cd319653cabe978172cb28836d6eb7aab9c')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


[arch-commits] Commit in zabbix/repos/extra-x86_64 (28 files)

2019-04-02 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, April 2, 2019 @ 19:02:56
  Author: bpiotrowski
Revision: 349704

archrelease: copy trunk to extra-x86_64

Added:
  zabbix/repos/extra-x86_64/PKGBUILD
(from rev 349703, zabbix/trunk/PKGBUILD)
  zabbix/repos/extra-x86_64/zabbix-agent.service
(from rev 349703, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/extra-x86_64/zabbix-agent.sysusers
(from rev 349703, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles
(from rev 349703, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service
(from rev 349703, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service
(from rev 349703, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service
(from rev 349703, zabbix/trunk/zabbix-proxy-sqlite.service)
  zabbix/repos/extra-x86_64/zabbix-proxy.sysusers
(from rev 349703, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles
(from rev 349703, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/extra-x86_64/zabbix-server-mysql.service
(from rev 349703, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/extra-x86_64/zabbix-server-pgsql.service
(from rev 349703, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/extra-x86_64/zabbix-server.install
(from rev 349703, zabbix/trunk/zabbix-server.install)
  zabbix/repos/extra-x86_64/zabbix-server.sysusers
(from rev 349703, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/extra-x86_64/zabbix-server.tmpfiles
(from rev 349703, zabbix/trunk/zabbix-server.tmpfiles)
Deleted:
  zabbix/repos/extra-x86_64/PKGBUILD
  zabbix/repos/extra-x86_64/zabbix-agent.service
  zabbix/repos/extra-x86_64/zabbix-agent.sysusers
  zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles
  zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service
  zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service
  zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service
  zabbix/repos/extra-x86_64/zabbix-proxy.sysusers
  zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles
  zabbix/repos/extra-x86_64/zabbix-server-mysql.service
  zabbix/repos/extra-x86_64/zabbix-server-pgsql.service
  zabbix/repos/extra-x86_64/zabbix-server.install
  zabbix/repos/extra-x86_64/zabbix-server.sysusers
  zabbix/repos/extra-x86_64/zabbix-server.tmpfiles

-+
 PKGBUILD|  362 +-
 zabbix-agent.service|   22 +-
 zabbix-agent.sysusers   |2 
 zabbix-agent.tmpfiles   |2 
 zabbix-proxy-mysql.service  |   36 ++--
 zabbix-proxy-pgsql.service  |   36 ++--
 zabbix-proxy-sqlite.service |   36 ++--
 zabbix-proxy.sysusers   |2 
 zabbix-proxy.tmpfiles   |2 
 zabbix-server-mysql.service |   36 ++--
 zabbix-server-pgsql.service |   36 ++--
 zabbix-server.install   |   24 +-
 zabbix-server.sysusers  |2 
 zabbix-server.tmpfiles  |2 
 14 files changed, 300 insertions(+), 300 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 19:02:41 UTC (rev 349703)
+++ PKGBUILD2019-04-02 19:02:56 UTC (rev 349704)
@@ -1,181 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Florian Pritz 
-
-pkgbase=zabbix
-pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
-pkgver=4.0.6
-pkgrel=1
-arch=(x86_64)
-url='https://www.zabbix.com/'
-license=(GPL)
-makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent)
-source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
-zabbix-agent.{service,sysusers,tmpfiles}
-zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
-zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
-
-sha512sums=('43b7ccadfaebc34098a827ef7e27c2c637d4bb74db4d06cdaee7650171b7b5e14787a473a66b638a252c1342e841b546e089bd762de703e99e0a34b0549393ca'
-
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
-
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
-
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
-
'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f'
-
'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475'
-
'4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e'
-
'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f8

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

2019-04-02 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, April 2, 2019 @ 19:02:41
  Author: bpiotrowski
Revision: 349703

4.2.0-1

Modified:
  zabbix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:58:23 UTC (rev 349702)
+++ PKGBUILD2019-04-02 19:02:41 UTC (rev 349703)
@@ -3,7 +3,7 @@
 
 pkgbase=zabbix
 pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
-pkgver=4.0.6
+pkgver=4.2.0
 pkgrel=1
 arch=(x86_64)
 url='https://www.zabbix.com/'
@@ -14,7 +14,7 @@
 zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
 zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
 
-sha512sums=('43b7ccadfaebc34098a827ef7e27c2c637d4bb74db4d06cdaee7650171b7b5e14787a473a66b638a252c1342e841b546e089bd762de703e99e0a34b0549393ca'
+sha512sums=('3bca08c78c0d95a109569f3c27c1b40c0c999231f9858cb0ed0e09ffc635279d8e728c34be0e02dcc12d406e690621ba030f090dca579b73bd8fb8a12d2209d7'
 
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
 
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
 
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'


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

2019-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 2, 2019 @ 18:58:23
  Author: heftig
Revision: 349702

3.32.0+49+gb2d0184c6-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 17:04:33 UTC (rev 349701)
+++ PKGBUILD2019-04-02 18:58:23 UTC (rev 349702)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=3.32.0+38+g9d49e8abd
+pkgver=3.32.0+49+gb2d0184c6
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://gitlab.gnome.org/GNOME/mutter";
@@ -15,7 +15,7 @@
 makedepends=(gobject-introspection git egl-wayland meson xorg-server)
 checkdepends=(xorg-server-xvfb)
 groups=(gnome)
-_commit=9d49e8abd077941b126685dde3b64753cc4fc916  # master
+_commit=b2d0184c6efa164ad5dd7a2ca8b10cf13acf5b4c  # master
 source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit";
 0001-wayland-output-Report-unscaled-size-even-in-logical-.patch
 216.patch)


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

2019-04-02 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, April 2, 2019 @ 18:48:58
  Author: bpiotrowski
Revision: 447859

1.2.0-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:34:37 UTC (rev 447858)
+++ PKGBUILD2019-04-02 18:48:58 UTC (rev 447859)
@@ -2,7 +2,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=1.1.2
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
@@ -12,7 +12,7 @@
  btrfs-progs slirp4netns)
 makedepends=(go-pie go-md2man git)
 source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('d70ac478be5403919f4d03d3dd2f1223d42d1995f4b80c74599778a804ab6b1a')
+sha256sums=('b4d6843e13c0f2f1557ab20b4364bb42ea9102442ee3f1be806c06128aa687d8')
 
 prepare() {
   mkdir -p src/github.com/containers src/github.com/varlink


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

2019-04-02 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, April 2, 2019 @ 18:49:09
  Author: bpiotrowski
Revision: 447860

archrelease: copy trunk to community-x86_64

Added:
  podman/repos/community-x86_64/PKGBUILD
(from rev 447859, podman/trunk/PKGBUILD)
Deleted:
  podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-02 18:48:58 UTC (rev 447859)
+++ PKGBUILD2019-04-02 18:49:09 UTC (rev 447860)
@@ -1,48 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
- btrfs-progs slirp4netns)
-makedepends=(go-pie go-md2man git)
-source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('d70ac478be5403919f4d03d3dd2f1223d42d1995f4b80c74599778a804ab6b1a')
-
-prepare() {
-  mkdir -p src/github.com/containers src/github.com/varlink
-  cp -r libpod-$pkgver src/github.com/containers/libpod
-}
-
-build() {
-  export GOPATH="$srcdir"
-  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
-
-  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
-  unset LDFLAGS
-
-  cd src/github.com/containers/libpod
-  make install.tools
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd src/github.com/containers/libpod
-  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd src/github.com/containers/libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 447859, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-02 18:49:09 UTC (rev 447860)
@@ -0,0 +1,48 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
+ btrfs-progs slirp4netns)
+makedepends=(go-pie go-md2man git)
+source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha256sums=('b4d6843e13c0f2f1557ab20b4364bb42ea9102442ee3f1be806c06128aa687d8')
+
+prepare() {
+  mkdir -p src/github.com/containers src/github.com/varlink
+  cp -r libpod-$pkgver src/github.com/containers/libpod
+}
+
+build() {
+  export GOPATH="$srcdir"
+  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
+
+  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
+  unset LDFLAGS
+
+  cd src/github.com/containers/libpod
+  make install.tools
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd src/github.com/containers/libpod
+  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd src/github.com/containers/libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
+}


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:34:37
  Author: felixonmars
Revision: 447858

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 447857, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 447857, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-02 18:34:37 UTC (rev 447858)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.29.4
+pkgrel=37
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('d56ce2ec6014f9bd1d224980524d91c0f72030d4559c001dfbc049902931541b9abd3c8f055cacc10fd3e7cdd067686cdc4f15fcdc37d4c50dfc59d6edcb036e')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:34:21
  Author: felixonmars
Revision: 447857

upgpkg: xmobar 0.29.4-37

rebuild with transformers-compat 0.6.3

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:32:56 UTC (rev 447856)
+++ PKGBUILD2019-04-02 18:34:21 UTC (rev 447857)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.4
-pkgrel=36
+pkgrel=37
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:32:56
  Author: felixonmars
Revision: 447856

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 447855, tamarin-prover/trunk/PKGBUILD)

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

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


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:32:40
  Author: felixonmars
Revision: 447855

upgpkg: tamarin-prover 1.4.1-40

rebuild with transformers-compat 0.6.3

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:30:55 UTC (rev 447854)
+++ PKGBUILD2019-04-02 18:32:40 UTC (rev 447855)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=39
+pkgrel=40
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io";
 license=("GPL")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:30:55
  Author: felixonmars
Revision: 447854

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
447853, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-02 18:30:55 UTC (rev 447854)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.2.1
+pkgrel=15
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('580353475fbd400bae4d7e7e4177ce3799b657601f29ad8158959ea8a40f875a9575b8b02a1a36f4e9c364ab5e266408ef2b3a004a09db6286e139e67c954d6d')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *1.21/<2/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:30:38
  Author: felixonmars
Revision: 447853

upgpkg: stylish-haskell 0.9.2.1-15

rebuild with transformers-compat 0.6.3

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:29:24 UTC (rev 447852)
+++ PKGBUILD2019-04-02 18:30:38 UTC (rev 447853)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.2.1
-pkgrel=14
+pkgrel=15
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell";
 license=("BSD")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:29:24
  Author: felixonmars
Revision: 447852

archrelease: copy trunk to community-staging-x86_64

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

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

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

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 447851, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-04-02 18:29:24 UTC (rev 
447852)
@@ -0,0 +1,4 @@
+pos

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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:29:08
  Author: felixonmars
Revision: 447851

upgpkg: stack 1.9.3-87

rebuild with transformers-compat 0.6.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:22:06 UTC (rev 447850)
+++ PKGBUILD2019-04-02 18:29:08 UTC (rev 447851)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=86
+pkgrel=87
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:22:06
  Author: felixonmars
Revision: 447850

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 447849, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-02 18:22:06 UTC (rev 447850)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=63
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz";)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:21:49
  Author: felixonmars
Revision: 447849

upgpkg: shellcheck 0.6.0-63

rebuild with transformers-compat 0.6.3

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:18:32 UTC (rev 447848)
+++ PKGBUILD2019-04-02 18:21:49 UTC (rev 447849)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=62
+pkgrel=63
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net";
 license=("GPL")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:18:32
  Author: felixonmars
Revision: 447848

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:18:16
  Author: felixonmars
Revision: 447847

upgpkg: postgrest 5.2.0-30

rebuild with transformers-compat 0.6.3

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:14:45 UTC (rev 447846)
+++ PKGBUILD2019-04-02 18:18:16 UTC (rev 447847)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=29
+pkgrel=30
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest";
 license=("MIT")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:14:45
  Author: felixonmars
Revision: 447846

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 447845, pandoc-crossref/trunk/PKGBUILD)

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

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


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:14:28
  Author: felixonmars
Revision: 447845

upgpkg: pandoc-crossref 0.3.4.0-66

rebuild with transformers-compat 0.6.3

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:12:51 UTC (rev 447844)
+++ PKGBUILD2019-04-02 18:14:28 UTC (rev 447845)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.0
-pkgrel=65
+pkgrel=66
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:12:51
  Author: felixonmars
Revision: 447844

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
447843, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-02 18:12:51 UTC (rev 447844)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.1
+pkgrel=33
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bc8cc9944229c691fbec6b7e6ea52e8a65bd8cc2093d42bd577e30ded1767370b439d8dc694e9842b300f7c884f851cac6a2a9de2817a961c779b83fb0ee1718')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.7/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:12:34
  Author: felixonmars
Revision: 447843

upgpkg: haskell-hakyll 4.12.5.1-33

rebuild with transformers-compat 0.6.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:10:30 UTC (rev 447842)
+++ PKGBUILD2019-04-02 18:12:34 UTC (rev 447843)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.1
-pkgrel=32
+pkgrel=33
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("BSD")


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:10:30
  Author: felixonmars
Revision: 447842

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 447841, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
447841, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-02 18:10:30 UTC (rev 447842)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.1.3
+pkgrel=9
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('01e32fe8d7c75878c6aa1004badc892eef946ecf0f0e5a3f76242e18188dcf3f9b555892b97ce668de7de050daf344eeff2ee9322ac5ee44a141af88e3637d91')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2019-04-02 Thread Felix Yan via arch-commits
Date: Tuesday, April 2, 2019 @ 18:10:14
  Author: felixonmars
Revision: 447841

upgpkg: pandoc-citeproc 0.16.1.3-9

rebuild with transformers-compat 0.6.3

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 18:07:04 UTC (rev 447840)
+++ PKGBUILD2019-04-02 18:10:14 UTC (rev 447841)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.1.3
-pkgrel=8
+pkgrel=9
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("BSD")


  1   2   3   4   5   6   7   >