[arch-commits] Commit in php-memcache/trunk (PKGBUILD php73.patch)

2019-12-20 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 21, 2019 @ 07:42:38
  Author: foutrelis
Revision: 538593

upgpkg: php-memcache 4.0.5.2-1: New upstream release.

Modified:
  php-memcache/trunk/PKGBUILD
Deleted:
  php-memcache/trunk/php73.patch

-+
 PKGBUILD|   39 +++
 php73.patch |   31 ---
 2 files changed, 7 insertions(+), 63 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 04:24:06 UTC (rev 538592)
+++ PKGBUILD2019-12-21 07:42:38 UTC (rev 538593)
@@ -1,46 +1,21 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=php-memcache
-pkgver=3.0.8
-pkgrel=8
-_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
+pkgver=4.0.5.2
+pkgrel=1
 pkgdesc="Memcache module for PHP"
 arch=('x86_64')
 url="https://pecl.php.net/package/memcache;
 license=('PHP')
 depends=('php')
-makedepends=('git')
 checkdepends=('memcached')
 backup=('etc/php/conf.d/memcache.ini')
 install=php-memcache.install
-#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
-source=("git+https://github.com/websupport-sk/pecl-memcache.git#commit=$_commit;
-php73.patch)
-sha256sums=('SKIP'
-'4192de8fde7e69ce8d14053d1e0842d61239da4ca9a1317a9451075c4188be0f')
+source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+sha256sums=('7b7667813baea003671f174bbec849e43ff235a8ea4ab7e36c3a0380c2a9ed63')
 
-prepare() {
-  cd "$srcdir/pecl-memcache"
-
-  # 
https://github.com/php/php-src/blob/php-7.3.0RC1/UPGRADING.INTERNALS#L90-L96
-  patch -Np1 -i ../php73.patch
-
-  # Disable UDP tests
-  sed -i "s|^\(\$udpPort2\? =\) .*|\1 0;|" tests/connect.inc
-
-  # Remove flaky tests
-  #   [tests/040.phpt] memcache->increment()/decrement() with multiple keys
-  #   [tests/042.phpt] memcache->set() with multiple values
-  #   strange keys [tests/005.phpt]
-  #   ini_set('session.save_handler') [tests/036.phpt]
-  #   ini_set('memcache.session_redundancy') [tests/044.phpt]
-  #   ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
-  #   session locking [tests/057.phpt]
-  rm tests/{005,034,036,040,042,044,053,057}.phpt
-}
-
 build() {
-  cd "$srcdir/pecl-memcache"
+  cd "$srcdir/memcache-$pkgver"
 
   phpize
   ./configure --prefix=/usr
@@ -48,7 +23,7 @@
 }
 
 check() {
-  cd "$srcdir/pecl-memcache"
+  cd "$srcdir/memcache-$pkgver"
 
   sed -i "s|^\(\$domainsocket =\) .*|\1 'unix://$PWD/memcached.sock';|" \
 tests/connect.inc
@@ -67,7 +42,7 @@
 }
 
 package() {
-  cd "$srcdir/pecl-memcache"
+  cd "$srcdir/memcache-$pkgver"
 
   make INSTALL_ROOT="$pkgdir" install
   echo ';extension=memcache.so' >memcache.ini

Deleted: php73.patch
===
--- php73.patch 2019-12-21 04:24:06 UTC (rev 538592)
+++ php73.patch 2019-12-21 07:42:38 UTC (rev 538593)
@@ -1,31 +0,0 @@
-diff --git a/php7/memcache.c b/php7/memcache.c
-index c7d4e0a..1818db4 100644
 a/php7/memcache.c
-+++ b/php7/memcache.c
-@@ -721,7 +721,7 @@ mmc_t *mmc_find_persistent(const char *host, int host_len, 
unsigned short port,
-   mmc = mmc_server_new(host, host_len, port, udp_port, 1, 
timeout, retry_interval);
-   le->type = le_memcache_server;
-   le->ptr  = mmc;
--  GC_REFCOUNT(le) = 1;
-+  GC_SET_REFCOUNT(le, 1);
- 
-   /* register new persistent connection */
-   if (zend_hash_str_update_mem((persistent_list), key, 
key_len, le, sizeof(*le)) == NULL) {
-@@ -779,7 +779,7 @@ static mmc_t *php_mmc_pool_addserver(
-   pool->failure_callback = _mmc_failure_callback;
-   list_res = zend_register_resource(pool, le_memcache_pool);
-   add_property_resource(mmc_object, "connection", list_res);
--  GC_REFCOUNT(list_res)++;
-+  GC_ADDREF(list_res);
-   }
-   else {
-   pool = zend_fetch_resource_ex(connection, "connection", 
le_memcache_pool);
-@@ -863,7 +863,7 @@ static void php_mmc_connect(INTERNAL_FUNCTION_PARAMETERS, 
zend_bool persistent)
-   mmc_object = return_value;
-   object_init_ex(mmc_object, memcache_ce);
-   add_property_resource(mmc_object, "connection", list_res);
--  GC_REFCOUNT(list_res)++;
-+  GC_ADDREF(list_res);
-   } else {
-   RETVAL_TRUE;
-   }


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

2019-12-20 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 21, 2019 @ 07:42:43
  Author: foutrelis
Revision: 538594

archrelease: copy trunk to community-x86_64

Added:
  php-memcache/repos/community-x86_64/PKGBUILD
(from rev 538593, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/community-x86_64/php-memcache.install
(from rev 538593, php-memcache/trunk/php-memcache.install)
Deleted:
  php-memcache/repos/community-x86_64/PKGBUILD
  php-memcache/repos/community-x86_64/php-memcache.install
  php-memcache/repos/community-x86_64/php73.patch

--+
 PKGBUILD |  129 +++--
 php-memcache.install |   20 +++
 php73.patch  |   31 ---
 3 files changed, 62 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 07:42:38 UTC (rev 538593)
+++ PKGBUILD2019-12-21 07:42:43 UTC (rev 538594)
@@ -1,77 +0,0 @@
-# Maintainer: Evangelos Foutras 
-
-pkgname=php-memcache
-pkgver=3.0.8
-pkgrel=8
-_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
-pkgdesc="Memcache module for PHP"
-arch=('x86_64')
-url="https://pecl.php.net/package/memcache;
-license=('PHP')
-depends=('php')
-makedepends=('git')
-checkdepends=('memcached')
-backup=('etc/php/conf.d/memcache.ini')
-install=php-memcache.install
-#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
-source=("git+https://github.com/websupport-sk/pecl-memcache.git#commit=$_commit;
-php73.patch)
-sha256sums=('SKIP'
-'4192de8fde7e69ce8d14053d1e0842d61239da4ca9a1317a9451075c4188be0f')
-
-prepare() {
-  cd "$srcdir/pecl-memcache"
-
-  # 
https://github.com/php/php-src/blob/php-7.3.0RC1/UPGRADING.INTERNALS#L90-L96
-  patch -Np1 -i ../php73.patch
-
-  # Disable UDP tests
-  sed -i "s|^\(\$udpPort2\? =\) .*|\1 0;|" tests/connect.inc
-
-  # Remove flaky tests
-  #   [tests/040.phpt] memcache->increment()/decrement() with multiple keys
-  #   [tests/042.phpt] memcache->set() with multiple values
-  #   strange keys [tests/005.phpt]
-  #   ini_set('session.save_handler') [tests/036.phpt]
-  #   ini_set('memcache.session_redundancy') [tests/044.phpt]
-  #   ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
-  #   session locking [tests/057.phpt]
-  rm tests/{005,034,036,040,042,044,053,057}.phpt
-}
-
-build() {
-  cd "$srcdir/pecl-memcache"
-
-  phpize
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$srcdir/pecl-memcache"
-
-  sed -i "s|^\(\$domainsocket =\) .*|\1 'unix://$PWD/memcached.sock';|" \
-tests/connect.inc
-
-  memcached_pids=()
-  memcached -p 11211 -U 11211 >/dev/null& memcached_pids+=($!)
-  memcached -p 11212 -U 11212 >/dev/null& memcached_pids+=($!)
-  memcached -s "$PWD/memcached.sock" >/dev/null & memcached_pids+=($!)
-
-  local ret=0
-  make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1 || ret=1
-
-  kill ${memcached_pids[@]}
-
-  return $ret
-}
-
-package() {
-  cd "$srcdir/pecl-memcache"
-
-  make INSTALL_ROOT="$pkgdir" install
-  echo ';extension=memcache.so' >memcache.ini
-  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/community-x86_64/PKGBUILD (from rev 538593, 
php-memcache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 07:42:43 UTC (rev 538594)
@@ -0,0 +1,52 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=4.0.5.2
+pkgrel=1
+pkgdesc="Memcache module for PHP"
+arch=('x86_64')
+url="https://pecl.php.net/package/memcache;
+license=('PHP')
+depends=('php')
+checkdepends=('memcached')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+sha256sums=('7b7667813baea003671f174bbec849e43ff235a8ea4ab7e36c3a0380c2a9ed63')
+
+build() {
+  cd "$srcdir/memcache-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$srcdir/memcache-$pkgver"
+
+  sed -i "s|^\(\$domainsocket =\) .*|\1 'unix://$PWD/memcached.sock';|" \
+tests/connect.inc
+
+  memcached_pids=()
+  memcached -p 11211 -U 11211 >/dev/null& memcached_pids+=($!)
+  memcached -p 11212 -U 11212 >/dev/null& memcached_pids+=($!)
+  memcached -s "$PWD/memcached.sock" >/dev/null & memcached_pids+=($!)
+
+  local ret=0
+  make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1 || ret=1
+
+  kill ${memcached_pids[@]}
+
+  return $ret
+}
+
+package() {
+  cd "$srcdir/memcache-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=memcache.so' >memcache.ini
+  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: php-memcache.install
===
--- php-memcache.install2019-12-21 07:42:38 UTC (rev 538593)
+++ php-memcache.install2019-12-21 07:42:43 

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

2019-12-20 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 21, 2019 @ 02:41:21
  Author: bisson
Revision: 372012

archrelease: copy trunk to testing-x86_64

Added:
  libedit/repos/testing-x86_64/
  libedit/repos/testing-x86_64/PKGBUILD
(from rev 372011, libedit/trunk/PKGBUILD)

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

Copied: libedit/repos/testing-x86_64/PKGBUILD (from rev 372011, 
libedit/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-21 02:41:21 UTC (rev 372012)
@@ -0,0 +1,30 @@
+# Maintainer: Gaetan Bisson 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Roman Cheplyaka 
+
+pkgname=libedit
+_pkgver=20191211-3.1
+pkgver=${_pkgver/-/_}
+pkgrel=1
+pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
+url='https://thrysoee.dk/editline/'
+arch=('x86_64')
+license=('BSD')
+depends=('ncurses')
+source=("https://thrysoee.dk/editline/libedit-${_pkgver}.tar.gz;)
+sha256sums=('ea51bf76ab18073debbd0d27e4348bb11cc30cbe6ef15debcde7704b115f41d9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${_pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${_pkgver}"
+   make prefix="${pkgdir}"/usr install
+
+   rm "${pkgdir}"/usr/share/man/man3/history.3 # conflicts with readline
+   cp "${pkgdir}"/usr/share/man/man3/editline.3 
"${pkgdir}"/usr/share/man/man3/el.3
+   install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/libedit/LICENSE
+}


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

2019-12-20 Thread Gaëtan Bisson via arch-commits
Date: Saturday, December 21, 2019 @ 02:41:03
  Author: bisson
Revision: 372011

upstream update

Modified:
  libedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 00:41:28 UTC (rev 372010)
+++ PKGBUILD2019-12-21 02:41:03 UTC (rev 372011)
@@ -3,7 +3,7 @@
 # Contributor: Roman Cheplyaka 
 
 pkgname=libedit
-_pkgver=20191025-3.1
+_pkgver=20191211-3.1
 pkgver=${_pkgver/-/_}
 pkgrel=1
 pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
@@ -12,7 +12,7 @@
 license=('BSD')
 depends=('ncurses')
 source=("https://thrysoee.dk/editline/libedit-${_pkgver}.tar.gz;)
-sha256sums=('6dff036660d478bfaa14e407fc5de26d22da1087118c897b1a3ad2e90cb7bf39')
+sha256sums=('ea51bf76ab18073debbd0d27e4348bb11cc30cbe6ef15debcde7704b115f41d9')
 
 build() {
cd "${srcdir}/${pkgname}-${_pkgver}"


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

2019-12-20 Thread Daurnimator via arch-commits
Date: Saturday, December 21, 2019 @ 01:30:59
  Author: daurnimator
Revision: 538591

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 538590, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 01:30:24 UTC (rev 538590)
+++ PKGBUILD2019-12-21 01:30:59 UTC (rev 538591)
@@ -1,43 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=1.7.6
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go-pie' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha256sums=('ade232a8624adef864b0ce052b340ca3ef1b4aea26acbc1442fce9a061cef9c5')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  go build \
--tags noupgrade,noembeddocs \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X github.com/twpayne/chezmoi/cmd.VersionStr=$pkgver \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 538590, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 01:30:59 UTC (rev 538591)
@@ -0,0 +1,43 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=1.7.9
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
+sha256sums=('51d2684ec622bdcfe95ab1bc8198d0234235a044a3451044d71b151e52f63737')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  go build \
+-tags noupgrade,noembeddocs \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X github.com/twpayne/chezmoi/cmd.VersionStr=$pkgver \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/* "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-12-20 Thread Daurnimator via arch-commits
Date: Saturday, December 21, 2019 @ 01:30:24
  Author: daurnimator
Revision: 538590

upgpkg: chezmoi 1.7.9-1

Modified:
  chezmoi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 00:59:55 UTC (rev 538589)
+++ PKGBUILD2019-12-21 01:30:24 UTC (rev 538590)
@@ -3,7 +3,7 @@
 # Contributor:  
 
 pkgname=chezmoi
-pkgver=1.7.6
+pkgver=1.7.9
 pkgrel=1
 pkgdesc="Manage your dotfiles across multiple machines"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go-pie' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz;)
-sha256sums=('ade232a8624adef864b0ce052b340ca3ef1b4aea26acbc1442fce9a061cef9c5')
+sha256sums=('51d2684ec622bdcfe95ab1bc8198d0234235a044a3451044d71b151e52f63737')
 
 build() {
   cd "$pkgname-$pkgver"


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:59:55
  Author: arojas
Revision: 538589

archrelease: copy trunk to community-staging-x86_64

Added:
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 538588, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/zart-opencv4.patch
(from rev 538588, gmic/trunk/zart-opencv4.patch)

+
 PKGBUILD   |   86 +++
 zart-opencv4.patch |   22 +
 2 files changed, 108 insertions(+)

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 538588, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 00:59:55 UTC (rev 538589)
@@ -0,0 +1,86 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
+pkgver=2.8.1
+pkgrel=2
+arch=(x86_64)
+url="https://gmic.eu/;
+license=(custom:CeCILL)
+makedepends=(gimp qt5-base fftw openexr opencv eigen git xorgproto)
+source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch
+git+https://github.com/c-koi/zart#commit=2d8727b5)
+sha256sums=('1a2b4c75c428201e52e920bd07e6c04118ae294cb89fce3c1c4ef386421b2a7a'
+'f4295a2b9a6730060e1dd763c602bd5156570d623bc69c2214dfd11e94943296'
+'SKIP')
+
+prepare() {
+# Use git version of zart which builds with current gmic
+  rm -r gmic-$pkgver/zart
+  mv zart gmic-$pkgver
+
+  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
+# fix overlinking
+  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' \
+  -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
+# fix build with openCV 4.0
+  cd gmic-$pkgver/zart
+  patch -p1 -i ../../zart-opencv4.patch
+  sed -e 's|opencv|opencv4|' -i zart.pro
+}
+
+build() {
+  cd gmic-$pkgver
+  make -C src cli lib libc WGET=/bin/true LIBS=${LDFLAGS} -j1
+
+  cd gmic-qt
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
+  make  
+
+  cd ../zart
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on QMAKE_CXXFLAGS+=" 
-DOPENCV2_HEADERS"
+  make
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=(opencv fftw curl)
+  optdepends=('qt5-base: for the Qt UI')
+
+  cd gmic-$pkgver/src
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=(gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
+  install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=(gimp gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt 
"$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_krita-plugin-gmic() {
+  pkgdesc="Krita plugin for the G'MIC image processing framework"
+  depends=(krita gmic)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: gmic/repos/community-staging-x86_64/zart-opencv4.patch (from rev 
538588, gmic/trunk/zart-opencv4.patch)
===
--- community-staging-x86_64/zart-opencv4.patch (rev 0)
+++ community-staging-x86_64/zart-opencv4.patch 2019-12-21 00:59:55 UTC (rev 
538589)
@@ -0,0 +1,22 @@
+diff --git a/src/ImageConverter.cpp b/src/ImageConverter.cpp
+index dc7605b..56f59db 100644
+--- a/src/ImageConverter.cpp
 b/src/ImageConverter.cpp
+@@ -70,7 +70,7 @@ void ImageConverter::convert(const cv::Mat * in, QImage * 
out)
+ 
+   cv::Mat tmp(in->cols, in->rows, in->depth());
+ 
+-  cvtColor(*in, tmp, (in->channels() == 1) ? CV_GRAY2RGB : CV_BGR2RGB);
++  cvtColor(*in, tmp, (in->channels() == 1) ? cv::COLOR_GRAY2RGB : 
cv::COLOR_BGR2RGB);
+ 
+   const unsigned int w3 = 3 * tmp.cols;
+   unsigned char * src = reinterpret_cast(tmp.ptr());
+@@ -106,7 +106,7 @@ void ImageConverter::convert(const QImage & in, cv::Mat ** 
out)
+   dst += step;
+ }
+   }
+-  cvtColor(**out, **out, CV_BGR2RGB);
++  cvtColor(**out, **out, cv::COLOR_BGR2RGB);
+ }
+ 
+ void 

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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:59:27
  Author: arojas
Revision: 538588

opencv 4.2 rebuild

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 23:58:55 UTC (rev 538587)
+++ PKGBUILD2019-12-21 00:59:27 UTC (rev 538588)
@@ -7,11 +7,11 @@
 pkgbase=gmic
 pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
 pkgver=2.8.1
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url="https://gmic.eu/;
 license=(custom:CeCILL)
-makedepends=(gimp qt5-base fftw openexr opencv eigen git)
+makedepends=(gimp qt5-base fftw openexr opencv eigen git xorgproto)
 source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch
 git+https://github.com/c-koi/zart#commit=2d8727b5)
 sha256sums=('1a2b4c75c428201e52e920bd07e6c04118ae294cb89fce3c1c4ef386421b2a7a'


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:41:28
  Author: arojas
Revision: 372010

archrelease: copy trunk to staging-x86_64

Added:
  mlt/repos/staging-x86_64/
  mlt/repos/staging-x86_64/PKGBUILD
(from rev 372009, mlt/trunk/PKGBUILD)
  mlt/repos/staging-x86_64/mlt-opencv4.patch
(from rev 372009, mlt/trunk/mlt-opencv4.patch)

---+
 PKGBUILD  |   76 
 mlt-opencv4.patch |   27 ++
 2 files changed, 103 insertions(+)

Copied: mlt/repos/staging-x86_64/PKGBUILD (from rev 372009, mlt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-21 00:41:28 UTC (rev 372010)
@@ -0,0 +1,76 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Fabian Schoelzel 
+# Contributor: funkyou 
+# Contributor: tardo 
+# Contributor: Stefan Husmann 
+# Contributor: Gustavo Alvarez 
+
+pkgbase=mlt
+pkgname=(mlt python-mlt)
+pkgver=6.18.0
+pkgrel=3
+pkgdesc="An open source multimedia framework"
+arch=(x86_64)
+url="https://www.mltframework.org;
+license=(GPL)
+makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg
+ jack libexif python swig movit eigen opencv libebur128 gtk2 
xorgproto)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;
+mlt-opencv4.patch)
+sha256sums=('9ea6775300b9f997460f5d6adde1ea41e525ecfd30a70b987e13800e4c387ddb'
+'e770eaa39337cbbeb7d03357c11013e62ea355696023d1bd2d0fca6d1812b627')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../mlt-opencv4.patch # Fix build with openCV 4
+}
+
+build() {
+  cd mlt-$pkgver
+
+  ./configure --prefix=/usr \
+   --avformat-swscale \
+   --enable-gpl \
+--enable-gpl3 \
+--enable-opencv
+  make
+
+# python bindings
+  cd src/swig/python
+  ./build
+}
+
+package_mlt() {
+  depends=(libebur128)
+  optdepends=('sdl_image: SDL1 plugin'
+'sdl2: SDL2 plugin'
+'libsamplerate: libavresample plugin'
+'sox: SOX (Audio Swiss Army Knife) plugin'
+'ffmpeg: ffmpeg plugin'
+'vid.stab: video stabilize plugin'
+'gtk2: Gtk plugin'
+'qt5-svg: Qt5 plugins'
+'jack: JACK sound output plugin'
+'ladspa: LADSPA plugins'
+'libexif: auto rotate plugin'
+'frei0r-plugins: for additional effects'
+'movit: opengl plugin'
+'opencv: openCV plugin')
+
+  cd mlt-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+package_python-mlt() {
+  depends=(python mlt)
+  conflicts=(mlt-python-bindings)
+  provides=(mlt-python-bindings)
+  replaces=(mlt-python-bindings)
+
+  _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
+  cd "$srcdir/mlt-$pkgver/src/swig/python"
+  mkdir -p "$pkgdir/$_pythonpath"
+  install -m755 mlt.py "$pkgdir/$_pythonpath"
+  install -m755 _mlt.so "$pkgdir/$_pythonpath"
+}

Copied: mlt/repos/staging-x86_64/mlt-opencv4.patch (from rev 372009, 
mlt/trunk/mlt-opencv4.patch)
===
--- staging-x86_64/mlt-opencv4.patch(rev 0)
+++ staging-x86_64/mlt-opencv4.patch2019-12-21 00:41:28 UTC (rev 372010)
@@ -0,0 +1,27 @@
+diff --git a/src/modules/opencv/configure b/src/modules/opencv/configure
+index 36851f67..f8084301 100755
+--- a/src/modules/opencv/configure
 b/src/modules/opencv/configure
+@@ -26,18 +26,18 @@ else
+   exit 0
+   fi
+ 
+-pkg-config --atleast-version=3.1.0 'opencv'
++pkg-config --atleast-version=3.1.0 'opencv4'
+   if [ $? -eq 0 ]
+   then
+-result=`pkg-config --libs opencv | grep "opencv_tracking"`
++result=`pkg-config --libs opencv4 | grep "opencv_tracking"`
+ if [ -z "$result" ]
+ then
+ echo "- OpenCV tracking contrib module NOT found, 
disabling OpenCV modules"
+ touch ../disable-opencv
+ exit 0
+ else
+-echo "CFLAGS += $(pkg-config --cflags opencv)" >> 
config.mak
+-echo "LDFLAGS += $(pkg-config --libs opencv)" >> 
config.mak
++echo "CFLAGS += $(pkg-config --cflags opencv4)" >> 
config.mak
++echo "LDFLAGS += $(pkg-config --libs opencv4)" >> 
config.mak
+ fi
+   else
+   echo "- OpenCV >= 3.1.0 NOT found: disabling"


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:41:08
  Author: arojas
Revision: 372009

opencv 4.2 rebuild

Modified:
  mlt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 00:28:03 UTC (rev 372008)
+++ PKGBUILD2019-12-21 00:41:08 UTC (rev 372009)
@@ -9,13 +9,13 @@
 pkgbase=mlt
 pkgname=(mlt python-mlt)
 pkgver=6.18.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An open source multimedia framework"
 arch=(x86_64)
 url="https://www.mltframework.org;
 license=(GPL)
 makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg
- jack libexif python swig movit eigen opencv libebur128 gtk2)
+ jack libexif python swig movit eigen opencv libebur128 gtk2 
xorgproto)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;
 mlt-opencv4.patch)
 sha256sums=('9ea6775300b9f997460f5d6adde1ea41e525ecfd30a70b987e13800e4c387ddb'


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:28:03
  Author: arojas
Revision: 372008

archrelease: copy trunk to staging-x86_64

Added:
  opencv/repos/staging-x86_64/
  opencv/repos/staging-x86_64/PKGBUILD
(from rev 372007, opencv/trunk/PKGBUILD)
  opencv/repos/staging-x86_64/opencv-includedir.patch
(from rev 372007, opencv/trunk/opencv-includedir.patch)

-+
 PKGBUILD|   94 ++
 opencv-includedir.patch |9 
 2 files changed, 103 insertions(+)

Copied: opencv/repos/staging-x86_64/PKGBUILD (from rev 372007, 
opencv/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-21 00:28:03 UTC (rev 372008)
@@ -0,0 +1,94 @@
+# Maintainer: Ray Rashif 
+# Contributor: Tobias Powalowski 
+
+pkgbase=opencv
+pkgname=(opencv opencv-samples)
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Open Source Computer Vision Library"
+arch=(x86_64)
+license=(BSD)
+url="https://opencv.org/;
+depends=(intel-tbb openexr gst-plugins-base libdc1394 cblas lapack libgphoto2 
jasper ffmpeg)
+makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke 
qt5-base vtk glew ant java-environment xorgproto)
+optdepends=('opencv-samples: samples'
+'vtk: for the viz module'
+'qt5-base: for the HighGUI module and the Python bindings'
+'hdf5: for the HDF5 module and the Python bindings'
+'opencl-icd-loader: For coding with OpenCL'
+'python-numpy: Python bindings'
+'java-runtime: Java interface')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/opencv/opencv/archive/$pkgver.zip;
+
"opencv_contrib-$pkgver.tar.gz::https://github.com/opencv/opencv_contrib/archive/$pkgver.tar.gz;
+opencv-includedir.patch)
+sha256sums=('55bd939079d141a50fca74bde5b61b339dd0f0ece6320ec76859aaff03c90d9f'
+'8a6b5661611d89baa59a26eb7ccf4abb3e55d73f99bb52d8f7c32265c8a43020'
+'a96e35c9592e655b21a62cfe04e864a10e21535ad900e5de67356b9e9f40ca10')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../opencv-includedir.patch # Fix wrong include patch in 
pkgconfig file
+
+  sed -e '/ocv_tbb_cmake_guess(HAVE_TBB)/d' -i cmake/OpenCVDetectTBB.cmake # 
Don't use TBB's cmake config, it breaks build
+}
+
+build() {
+  cd build
+  export JAVA_HOME="/usr/lib/jvm/default"
+  # cmake's FindLAPACK doesn't add cblas to LAPACK_LIBRARIES, so we need to 
specify them manually
+  _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
+  cmake ../$pkgname-$pkgver \
+-DWITH_OPENCL=ON \
+-DWITH_OPENGL=ON \
+-DWITH_TBB=ON \
+-DWITH_QT=ON \
+-DBUILD_WITH_DEBUG_INFO=OFF \
+-DBUILD_TESTS=OFF \
+-DBUILD_PERF_TESTS=OFF \
+-DBUILD_EXAMPLES=ON \
+-DINSTALL_C_EXAMPLES=ON \
+-DINSTALL_PYTHON_EXAMPLES=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCPU_BASELINE_DISABLE=SSE3 \
+-DCPU_BASELINE_REQUIRE=SSE2 \
+-DOPENCV_EXTRA_MODULES_PATH="$srcdir/opencv_contrib-$pkgver/modules" \
+-DOPENCV_SKIP_PYTHON_LOADER=ON \
+-DOPENCV_PYTHON3_INSTALL_PATH=$_pythonpath \
+
-DLAPACK_LIBRARIES="/usr/lib/liblapack.so;/usr/lib/libblas.so;/usr/lib/libcblas.so"
 \
+-DLAPACK_CBLAS_H="/usr/include/cblas.h" \
+-DLAPACK_LAPACKE_H="/usr/include/lapacke.h" \
+-DOPENCV_GENERATE_PKGCONFIG=ON \
+-DOPENCV_ENABLE_NONFREE=ON \
+-DOPENCV_JNI_INSTALL_PATH=lib \
+-DOPENCV_GENERATE_SETUPVARS=OFF \
+-DEIGEN_INCLUDE_PATH=/usr/include/eigen3
+  make
+}
+
+package_opencv() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  # install license file
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
+
+  # separate samples package
+  cd "$pkgdir"/usr/share
+  mv opencv4/samples "$srcdir"/$pkgname-samples
+}
+
+package_opencv-samples() {
+  pkgdesc+=" (samples)"
+  depends=("opencv=$pkgver")
+  unset optdepends
+
+  mkdir -p "$pkgdir"/usr/share/opencv
+  cp -r "$srcdir"/opencv-samples "$pkgdir"/usr/share/opencv/samples
+  # fix permissions
+  chmod 755 "$pkgdir"/usr/share/opencv/samples/*
+
+  # install license file
+  install -Dm644 "$srcdir"/opencv-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}

Copied: opencv/repos/staging-x86_64/opencv-includedir.patch (from rev 372007, 
opencv/trunk/opencv-includedir.patch)
===
--- staging-x86_64/opencv-includedir.patch  (rev 0)
+++ staging-x86_64/opencv-includedir.patch  2019-12-21 00:28:03 UTC (rev 
372008)
@@ -0,0 +1,9 @@
+diff -u -r opencv-4.0.1/cmake/templates/opencv-XXX.pc.in 
opencv-4.0.1-includedir/cmake/templates/opencv-XXX.pc.in
+--- opencv-4.0.1/cmake/templates/opencv-XXX.pc.in  2018-12-22 
07:03:30.0 +
 opencv-4.0.1-includedir/cmake/templates/opencv-XXX.pc.in   

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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 00:25:29
  Author: arojas
Revision: 372007

Update to 4.2.0

Modified:
  opencv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 19:04:18 UTC (rev 372006)
+++ PKGBUILD2019-12-21 00:25:29 UTC (rev 372007)
@@ -3,14 +3,14 @@
 
 pkgbase=opencv
 pkgname=(opencv opencv-samples)
-pkgver=4.1.2
-pkgrel=4
+pkgver=4.2.0
+pkgrel=1
 pkgdesc="Open Source Computer Vision Library"
 arch=(x86_64)
 license=(BSD)
 url="https://opencv.org/;
 depends=(intel-tbb openexr gst-plugins-base libdc1394 cblas lapack libgphoto2 
jasper ffmpeg)
-makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke 
qt5-base vtk glew ant java-environment)
+makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke 
qt5-base vtk glew ant java-environment xorgproto)
 optdepends=('opencv-samples: samples'
 'vtk: for the viz module'
 'qt5-base: for the HighGUI module and the Python bindings'
@@ -21,8 +21,8 @@
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/opencv/opencv/archive/$pkgver.zip;
 
"opencv_contrib-$pkgver.tar.gz::https://github.com/opencv/opencv_contrib/archive/$pkgver.tar.gz;
 opencv-includedir.patch)
-sha256sums=('546d7d19388f2eea709a1951c7bfd56943241e41649473278950f4cbef656661'
-'0f6c3d30baa39e3e7611afb481ee86dea45dafb182cac87d570c95dccd83eb8b'
+sha256sums=('55bd939079d141a50fca74bde5b61b339dd0f0ece6320ec76859aaff03c90d9f'
+'8a6b5661611d89baa59a26eb7ccf4abb3e55d73f99bb52d8f7c32265c8a43020'
 'a96e35c9592e655b21a62cfe04e864a10e21535ad900e5de67356b9e9f40ca10')
 
 prepare() {


[arch-commits] Commit in matrix-synapse/repos (11 files)

2019-12-20 Thread Johannes Löthberg via arch-commits
Date: Friday, December 20, 2019 @ 23:58:55
  Author: demize
Revision: 538587

db-move: moved matrix-synapse from [community-testing] to [community] (any)

Added:
  matrix-synapse/repos/community-any/PKGBUILD
(from rev 538586, matrix-synapse/repos/community-testing-any/PKGBUILD)
  matrix-synapse/repos/community-any/synapse.install
(from rev 538586, 
matrix-synapse/repos/community-testing-any/synapse.install)
  matrix-synapse/repos/community-any/synapse.service
(from rev 538586, 
matrix-synapse/repos/community-testing-any/synapse.service)
  matrix-synapse/repos/community-any/sysusers-synapse.conf
(from rev 538586, 
matrix-synapse/repos/community-testing-any/sysusers-synapse.conf)
  matrix-synapse/repos/community-any/tmpfiles-synapse.conf
(from rev 538586, 
matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf)
Deleted:
  matrix-synapse/repos/community-any/PKGBUILD
  matrix-synapse/repos/community-any/synapse.install
  matrix-synapse/repos/community-any/synapse.service
  matrix-synapse/repos/community-any/sysusers-synapse.conf
  matrix-synapse/repos/community-any/tmpfiles-synapse.conf
  matrix-synapse/repos/community-testing-any/

-+
 /PKGBUILD   |   65 ++
 /synapse.install|   38 +++
 /synapse.service|   18 +
 /sysusers-synapse.conf  |1 
 /tmpfiles-synapse.conf  |1 
 community-any/PKGBUILD  |   65 --
 community-any/synapse.install   |   38 ---
 community-any/synapse.service   |   18 -
 community-any/sysusers-synapse.conf |1 
 community-any/tmpfiles-synapse.conf |1 
 10 files changed, 123 insertions(+), 123 deletions(-)

Deleted: community-any/PKGBUILD
===
--- community-any/PKGBUILD  2019-12-20 23:00:23 UTC (rev 538586)
+++ community-any/PKGBUILD  2019-12-20 23:58:55 UTC (rev 538587)
@@ -1,65 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgname=matrix-synapse
-pkgver=1.7.0
-pkgrel=1
-
-pkgdesc="Matrix reference homeserver"
-url="https://github.com/matrix-org/synapse;
-arch=('any')
-license=('Apache')
-
-depends=('python-jsonschema' 'python-twisted' 'python-service-identity'
- 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
- 'python-daemonize' 'python-bcrypt' 'python-frozendict'
- 'python-pillow' 'python-ujson'
- 'python-pysaml2' 'python-setuptools'
- 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
- 'python-signedjson' 'python-pymacaroons'
- 'python-service-identity' 'python-msgpack'
- 'python-phonenumbers' 'python-prometheus_client'
- 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
- 'python-treq' 'python-idna' 'python-jinja'
- 'python-bleach' 'python-typing_extensions' 'systemd')
-checkdepends=('python-lxml' 'python-mock' 'python-parameterized')
-optdepends=('python-psycopg2: PostgreSQL support'
-'python-lxml: URL previewing'
-'python-psutil: metrics'
-'python-pyjwt: jwt')
-
-source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
-'synapse.service'
-'sysusers-synapse.conf'
-'tmpfiles-synapse.conf')
-
-md5sums=('8a4c73000f2f01eb7e9f927f962e241e'
- 'fb196dee4f38a4b19e0a160f45574032'
- 'ecd9f66fb57fe1a2e1e2df07a460a35b'
- 'e961c9ecad84a70345a57a7e9e6d5b09')
-
-backup=('etc/synapse/log_config.yaml')
-install=synapse.install
-
-build() {
-   cd synapse-$pkgver
-   python setup.py build
-}
-
-check() {
-   cd synapse-$pkgver
-   PYTHONPATH=. trial3 tests
-}
-
-package() {
-   install -Dm644 synapse.service 
"$pkgdir"/usr/lib/systemd/system/synapse.service
-
-   cd synapse-$pkgver
-   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
-
-   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
-
-   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
-   install -Dm644 "$srcdir"/sysusers-synapse.conf 
"$pkgdir"/usr/lib/sysusers.d/synapse.conf
-   install -Dm644 "$srcdir"/tmpfiles-synapse.conf 
"$pkgdir"/usr/lib/tmpfiles.d/synapse.conf
-}

Copied: matrix-synapse/repos/community-any/PKGBUILD (from rev 538586, 
matrix-synapse/repos/community-testing-any/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-12-20 23:58:55 UTC (rev 538587)
@@ -0,0 +1,65 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.7.2
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"

[arch-commits] Commit in intel-compute-runtime/trunk (PKGBUILD)

2019-12-20 Thread Daniel Bermond via arch-commits
Date: Friday, December 20, 2019 @ 22:59:59
  Author: dbermond
Revision: 538585

upgpkg: intel-compute-runtime 19.50.15079-1: Update to version 19.50.15079

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 22:59:36 UTC (rev 538584)
+++ PKGBUILD2019-12-20 22:59:59 UTC (rev 538585)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=intel-compute-runtime
-pkgver=19.49.15055
+pkgver=19.50.15079
 pkgrel=1
 pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
 arch=(x86_64)
@@ -14,7 +14,7 @@
 'libdrm: for cl_intel_va_api_media_sharing')
 provides=(opencl-driver)
 
source=("https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('509f1741149346cdc7149a1cdc4e3cf2cdc8752db77976eac687f563f51fd320')
+sha256sums=('25f89b1dde59bb9149d822c3ba33fda0f13bc0b941d9c2b11321e2f4432974b0')
 
 build() {
 cmake -B build -S compute-runtime-${pkgver} \


[arch-commits] Commit in intel-compute-runtime/repos/community-x86_64 (2 files)

2019-12-20 Thread Daniel Bermond via arch-commits
Date: Friday, December 20, 2019 @ 23:00:23
  Author: dbermond
Revision: 538586

archrelease: copy trunk to community-x86_64

Added:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD
(from rev 538585, intel-compute-runtime/trunk/PKGBUILD)
Deleted:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 22:59:59 UTC (rev 538585)
+++ PKGBUILD2019-12-20 23:00:23 UTC (rev 538586)
@@ -1,31 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-compute-runtime
-pkgver=19.49.15055
-pkgrel=1
-pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
-arch=(x86_64)
-url="https://01.org/compute-runtime;
-license=(MIT)
-depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
-makedepends=(cmake libva)
-optdepends=('libva: for cl_intel_va_api_media_sharing'
-'libdrm: for cl_intel_va_api_media_sharing')
-provides=(opencl-driver)
-source=("https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('509f1741149346cdc7149a1cdc4e3cf2cdc8752db77976eac687f563f51fd320')
-
-build() {
-cmake -B build -S compute-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DNEO_DRIVER_VERSION=${pkgver}
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -D -m644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-compute-runtime/repos/community-x86_64/PKGBUILD (from rev 538585, 
intel-compute-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 23:00:23 UTC (rev 538586)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-compute-runtime
+pkgver=19.50.15079
+pkgrel=1
+pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
+arch=(x86_64)
+url="https://01.org/compute-runtime;
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver)
+source=("https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('25f89b1dde59bb9149d822c3ba33fda0f13bc0b941d9c2b11321e2f4432974b0')
+
+build() {
+cmake -B build -S compute-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_DRIVER_VERSION=${pkgver}
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -D -m644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-graphics-compiler/repos/community-x86_64 (2 files)

2019-12-20 Thread Daniel Bermond via arch-commits
Date: Friday, December 20, 2019 @ 22:59:36
  Author: dbermond
Revision: 538584

archrelease: copy trunk to community-x86_64

Added:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD
(from rev 538583, intel-graphics-compiler/trunk/PKGBUILD)
Deleted:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 22:59:12 UTC (rev 538583)
+++ PKGBUILD2019-12-20 22:59:36 UTC (rev 538584)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-graphics-compiler
-epoch=1
-pkgver=1.0.3032
-pkgrel=1
-pkgdesc="Intel Graphics Compiler for OpenCL"
-arch=(x86_64)
-url="https://github.com/intel/intel-graphics-compiler;
-license=(MIT)
-depends=(llvm-libs intel-opencl-clang)
-makedepends=(cmake clang llvm zlib python)
-options=(!emptydirs)
-source=("${url}/archive/igc-${pkgver}.tar.gz")
-sha256sums=('242c90e37c899a288214aaa53b5d368d42739e3af0b2792f024db62ef3a2ed29')
-
-build() {
-cmake -B build -S ${pkgname}-igc-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
--DIGC_PREFERRED_LLVM_VERSION='9.0.0' \
--DINSTALL_GENX_IR=ON \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-graphics-compiler/repos/community-x86_64/PKGBUILD (from rev 
538583, intel-graphics-compiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 22:59:36 UTC (rev 538584)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-graphics-compiler
+epoch=1
+pkgver=1.0.3041
+pkgrel=1
+pkgdesc="Intel Graphics Compiler for OpenCL"
+arch=(x86_64)
+url="https://github.com/intel/intel-graphics-compiler;
+license=(MIT)
+depends=(llvm-libs intel-opencl-clang)
+makedepends=(cmake clang llvm zlib python)
+options=(!emptydirs)
+source=("${url}/archive/igc-${pkgver}.tar.gz")
+sha256sums=('91233f7c2fb5f1e829232815a0e3b80585f7f7537360aa1445955973ad0d928d')
+
+build() {
+cmake -B build -S ${pkgname}-igc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
+-DIGC_PREFERRED_LLVM_VERSION='9.0.0' \
+-DINSTALL_GENX_IR=ON \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-graphics-compiler/trunk (PKGBUILD)

2019-12-20 Thread Daniel Bermond via arch-commits
Date: Friday, December 20, 2019 @ 22:59:12
  Author: dbermond
Revision: 538583

upgpkg: intel-graphics-compiler 1:1.0.3041-1: Update to version 1.0.3041

Modified:
  intel-graphics-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 22:49:59 UTC (rev 538582)
+++ PKGBUILD2019-12-20 22:59:12 UTC (rev 538583)
@@ -3,7 +3,7 @@
 
 pkgname=intel-graphics-compiler
 epoch=1
-pkgver=1.0.3032
+pkgver=1.0.3041
 pkgrel=1
 pkgdesc="Intel Graphics Compiler for OpenCL"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(cmake clang llvm zlib python)
 options=(!emptydirs)
 source=("${url}/archive/igc-${pkgver}.tar.gz")
-sha256sums=('242c90e37c899a288214aaa53b5d368d42739e3af0b2792f024db62ef3a2ed29')
+sha256sums=('91233f7c2fb5f1e829232815a0e3b80585f7f7537360aa1445955973ad0d928d')
 
 build() {
 cmake -B build -S ${pkgname}-igc-${pkgver} \


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

2019-12-20 Thread Christian Hesse via arch-commits
Date: Friday, December 20, 2019 @ 22:49:51
  Author: eworm
Revision: 538581

upgpkg: etckeeper 1.18.13-1

new upstream release

Modified:
  etckeeper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 22:30:05 UTC (rev 538580)
+++ PKGBUILD2019-12-20 22:49:51 UTC (rev 538581)
@@ -4,8 +4,8 @@
 # Contributor: Danie Roux 
 
 pkgname=etckeeper
-_tag='e7fbd70e5db8e3c526e028a632406d85c2f0e37f' # git rev-parse ${pkgver}
-pkgver=1.18.12
+_tag='96d77f387ecda715b1994fd71d2f7ee43cf56429' # git rev-parse ${pkgver}
+pkgver=1.18.13
 pkgrel=1
 pkgdesc='Collection of tools to let /etc be stored in a git, hg or bzr 
repository'
 arch=(any)


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

2019-12-20 Thread Christian Hesse via arch-commits
Date: Friday, December 20, 2019 @ 22:49:59
  Author: eworm
Revision: 538582

archrelease: copy trunk to community-any

Added:
  etckeeper/repos/community-any/PKGBUILD
(from rev 538581, etckeeper/trunk/PKGBUILD)
Deleted:
  etckeeper/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 22:49:51 UTC (rev 538581)
+++ PKGBUILD2019-12-20 22:49:59 UTC (rev 538582)
@@ -1,39 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: mathieu.clabaut 
-# Contributor: Buce 
-# Contributor: Danie Roux 
-
-pkgname=etckeeper
-_tag='e7fbd70e5db8e3c526e028a632406d85c2f0e37f' # git rev-parse ${pkgver}
-pkgver=1.18.12
-pkgrel=1
-pkgdesc='Collection of tools to let /etc be stored in a git, hg or bzr 
repository'
-arch=(any)
-url='https://etckeeper.branchable.com/'
-license=(GPL2)
-depends=(git diffutils inetutils sed)
-makedepends=(python2 mercurial bzr)
-optdepends=('mercurial: use mercurial for version control'
-'bzr: use bazaar for version control'
-'which: etckeeper vcs  support')
-backup=('etc/etckeeper/etckeeper.conf')
-source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
-sha256sums=('SKIP')
-validpgpkeys=('E85A5F63B31D24C1EBF0D81CC910D9222512E3C7') # Joey Hess 

-
-build() {
-   cd ${pkgname}
-
-   # Fix python name
-   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
-   sed -i '1s/python/python2/' zypper-etckeeper.py
-
-   # We want pacman :D
-   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
-   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
-}
-
-package() {
-   cd ${pkgname}
-   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
-}

Copied: etckeeper/repos/community-any/PKGBUILD (from rev 538581, 
etckeeper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 22:49:59 UTC (rev 538582)
@@ -0,0 +1,39 @@
+# Maintainer: Christian Hesse 
+# Contributor: mathieu.clabaut 
+# Contributor: Buce 
+# Contributor: Danie Roux 
+
+pkgname=etckeeper
+_tag='96d77f387ecda715b1994fd71d2f7ee43cf56429' # git rev-parse ${pkgver}
+pkgver=1.18.13
+pkgrel=1
+pkgdesc='Collection of tools to let /etc be stored in a git, hg or bzr 
repository'
+arch=(any)
+url='https://etckeeper.branchable.com/'
+license=(GPL2)
+depends=(git diffutils inetutils sed)
+makedepends=(python2 mercurial bzr)
+optdepends=('mercurial: use mercurial for version control'
+'bzr: use bazaar for version control'
+'which: etckeeper vcs  support')
+backup=('etc/etckeeper/etckeeper.conf')
+source=("git+https://git.kitenet.net/git/etckeeper.git#tag=${_tag}?signed;)
+sha256sums=('SKIP')
+validpgpkeys=('E85A5F63B31D24C1EBF0D81CC910D9222512E3C7') # Joey Hess 

+
+build() {
+   cd ${pkgname}
+
+   # Fix python name
+   sed -i '/^PYTHON=/c PYTHON=python2' Makefile
+   sed -i '1s/python/python2/' zypper-etckeeper.py
+
+   # We want pacman :D
+   sed -i -e "/^LOWLEVEL_PACKAGE_MANAGER/c 
LOWLEVEL_PACKAGE_MANAGER=pacman" \
+   -e "/^HIGHLEVEL_PACKAGE_MANAGER/c 
HIGHLEVEL_PACKAGE_MANAGER=pacman" etckeeper.conf
+}
+
+package() {
+   cd ${pkgname}
+   make DESTDIR="${pkgdir}" systemddir=/usr/lib/systemd/system install
+}


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

2019-12-20 Thread Daniel M. Capella via arch-commits
Date: Friday, December 20, 2019 @ 22:30:05
  Author: polyzen
Revision: 538580

archrelease: copy trunk to community-any

Added:
  borgmatic/repos/community-any/PKGBUILD
(from rev 538579, borgmatic/trunk/PKGBUILD)
Deleted:
  borgmatic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 22:29:39 UTC (rev 538579)
+++ PKGBUILD2019-12-20 22:30:05 UTC (rev 538580)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor: Alexander Görtz 
-# Contributor: Dan Beste 
-# Contributor: Julien Nicoulaud 
-# Contributor: stef204 
-
-pkgname=borgmatic
-pkgver=1.4.20
-pkgrel=1
-pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
-arch=('any')
-url=https://torsion.org/borgmatic
-license=('GPL3')
-depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
- 'python-ruamel-yaml' 'python-setuptools')
-optdepends=('python-llfuse: for mount action')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('78454c494ff8f72e10a8e80a59e189329cf78b350ff9962e5106726b22c6d110')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
-}
-
-# vim: ts=2 sw=2 et:

Copied: borgmatic/repos/community-any/PKGBUILD (from rev 538579, 
borgmatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 22:30:05 UTC (rev 538580)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor: Alexander Görtz 
+# Contributor: Dan Beste 
+# Contributor: Julien Nicoulaud 
+# Contributor: stef204 
+
+pkgname=borgmatic
+pkgver=1.4.21
+pkgrel=1
+pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
+arch=('any')
+url=https://torsion.org/borgmatic
+license=('GPL3')
+depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
+ 'python-ruamel-yaml' 'python-setuptools')
+optdepends=('python-llfuse: for mount action')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('1ed9adc370fc06ae41bbc7083702c3bb7ea58014d60cb473f28ce321151a48c8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-20 Thread Daniel M. Capella via arch-commits
Date: Friday, December 20, 2019 @ 22:29:39
  Author: polyzen
Revision: 538579

upgpkg: borgmatic 1.4.21-1

Modified:
  borgmatic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 21:54:05 UTC (rev 538578)
+++ PKGBUILD2019-12-20 22:29:39 UTC (rev 538579)
@@ -6,7 +6,7 @@
 # Contributor: stef204 
 
 pkgname=borgmatic
-pkgver=1.4.20
+pkgver=1.4.21
 pkgrel=1
 pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
 arch=('any')
@@ -16,7 +16,7 @@
  'python-ruamel-yaml' 'python-setuptools')
 optdepends=('python-llfuse: for mount action')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('78454c494ff8f72e10a8e80a59e189329cf78b350ff9962e5106726b22c6d110')
+sha256sums=('1ed9adc370fc06ae41bbc7083702c3bb7ea58014d60cb473f28ce321151a48c8')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-12-20 Thread Jelle van der Waa via arch-commits
Date: Friday, December 20, 2019 @ 21:54:05
  Author: jelle
Revision: 538578

archrelease: copy trunk to community-x86_64

Added:
  pdf2djvu/repos/community-x86_64/PKGBUILD
(from rev 538577, pdf2djvu/trunk/PKGBUILD)
Deleted:
  pdf2djvu/repos/community-x86_64/PKGBUILD
  pdf2djvu/repos/community-x86_64/pdf2djvu-poppler-0.76.patch

-+
 PKGBUILD|   70 +-
 pdf2djvu-poppler-0.76.patch |   11 --
 2 files changed, 35 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 21:53:54 UTC (rev 538577)
+++ PKGBUILD2019-12-20 21:54:05 UTC (rev 538578)
@@ -1,35 +0,0 @@
-# Contributor: Paulo Matias 
-# Maintainer: Jelle van der Waa 
-
-pkgname=pdf2djvu
-pkgver=0.9.14
-pkgrel=2
-pkgdesc="Creates DjVu files from PDF files"
-arch=('x86_64')
-url="https://jwilk.net/software/pdf2djvu;
-license=('GPL')
-depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
-makedepends=('python2-nose' 'ttf-liberation' 'boost')
-source=(https://github.com/jwilk/pdf2djvu/releases/download/$pkgver/pdf2djvu-$pkgver.tar.xz{,.asc})
-sha256sums=('f19b83c896bc70676cd6ede7fb92a334fd5832cb9271878c89da5d52de5ae217'
-'SKIP')
-validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-make PYTHON=python2 test
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make install DESTDIR=${pkgdir}
-}

Copied: pdf2djvu/repos/community-x86_64/PKGBUILD (from rev 538577, 
pdf2djvu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 21:54:05 UTC (rev 538578)
@@ -0,0 +1,35 @@
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+
+pkgname=pdf2djvu
+pkgver=0.9.15
+pkgrel=1
+pkgdesc="Creates DjVu files from PDF files"
+arch=('x86_64')
+url="https://jwilk.net/software/pdf2djvu;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
+makedepends=('python2-nose' 'ttf-liberation' 'boost')
+source=(https://github.com/jwilk/pdf2djvu/releases/download/$pkgver/pdf2djvu-$pkgver.tar.xz{,.asc})
+sha256sums=('d27a9f4e358486e1914d1e0fd701f861255836d0ea4f8616e6bd4efbf859b56b'
+'SKIP')
+validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+
+   make PYTHON=python2 test
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+}

Deleted: pdf2djvu-poppler-0.76.patch
===
--- pdf2djvu-poppler-0.76.patch 2019-12-20 21:53:54 UTC (rev 538577)
+++ pdf2djvu-poppler-0.76.patch 2019-12-20 21:54:05 UTC (rev 538578)
@@ -1,11 +0,0 @@
 pdf2djvu-0.9.12/pdf2djvu.cc.orig   2019-04-23 21:54:19.435727639 +
-+++ pdf2djvu-0.9.12/pdf2djvu.cc2019-04-23 21:54:33.762565515 +
-@@ -87,7 +87,7 @@
- if (dest->isPageRef())
- {
-   Ref pageref = dest->getPageRef();
--  page = catalog->findPage(pageref.num, pageref.gen);
-+  page = catalog->findPage(pageref);
- }
- else
-   page = dest->getPageNum();


[arch-commits] Commit in pdf2djvu/trunk (PKGBUILD pdf2djvu-poppler-0.76.patch)

2019-12-20 Thread Jelle van der Waa via arch-commits
Date: Friday, December 20, 2019 @ 21:53:54
  Author: jelle
Revision: 538577

upgpkg: pdf2djvu 0.9.15-1

Upstream update

Modified:
  pdf2djvu/trunk/PKGBUILD
Deleted:
  pdf2djvu/trunk/pdf2djvu-poppler-0.76.patch

-+
 PKGBUILD|8 
 pdf2djvu-poppler-0.76.patch |   11 ---
 2 files changed, 4 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 20:05:47 UTC (rev 538576)
+++ PKGBUILD2019-12-20 21:53:54 UTC (rev 538577)
@@ -2,8 +2,8 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=pdf2djvu
-pkgver=0.9.14
-pkgrel=2
+pkgver=0.9.15
+pkgrel=1
 pkgdesc="Creates DjVu files from PDF files"
 arch=('x86_64')
 url="https://jwilk.net/software/pdf2djvu;
@@ -11,7 +11,7 @@
 depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
 makedepends=('python2-nose' 'ttf-liberation' 'boost')
 
source=(https://github.com/jwilk/pdf2djvu/releases/download/$pkgver/pdf2djvu-$pkgver.tar.xz{,.asc})
-sha256sums=('f19b83c896bc70676cd6ede7fb92a334fd5832cb9271878c89da5d52de5ae217'
+sha256sums=('d27a9f4e358486e1914d1e0fd701f861255836d0ea4f8616e6bd4efbf859b56b'
 'SKIP')
 validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
 
@@ -25,7 +25,7 @@
 check() {
 cd ${pkgname}-${pkgver}
 
-make PYTHON=python2 test
+   make PYTHON=python2 test
 }
 
 package() {

Deleted: pdf2djvu-poppler-0.76.patch
===
--- pdf2djvu-poppler-0.76.patch 2019-12-20 20:05:47 UTC (rev 538576)
+++ pdf2djvu-poppler-0.76.patch 2019-12-20 21:53:54 UTC (rev 538577)
@@ -1,11 +0,0 @@
 pdf2djvu-0.9.12/pdf2djvu.cc.orig   2019-04-23 21:54:19.435727639 +
-+++ pdf2djvu-0.9.12/pdf2djvu.cc2019-04-23 21:54:33.762565515 +
-@@ -87,7 +87,7 @@
- if (dest->isPageRef())
- {
-   Ref pageref = dest->getPageRef();
--  page = catalog->findPage(pageref.num, pageref.gen);
-+  page = catalog->findPage(pageref);
- }
- else
-   page = dest->getPageNum();


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 20:05:47
  Author: felixonmars
Revision: 538576

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-memotrie/repos/community-staging-x86_64/PKGBUILD (from rev 
538575, haskell-memotrie/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 20:05:47 UTC (rev 538576)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=MemoTrie
+pkgname=haskell-memotrie
+pkgver=0.6.10
+pkgrel=1
+pkgdesc="Trie-based memo functions"
+url="https://github.com/conal/MemoTrie;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-newtype-generics')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('73be7e356ad2aeef49abf43975d2e24ee8b883e12453f316366b52998637ac26d98feef34388c2a46f683027dc7132444b17a25a12d3e86748088fadf081b186')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 20:05:40
  Author: felixonmars
Revision: 538575

upgpkg: haskell-memotrie 0.6.10-1: rebuild with MemoTrie 0.6.10

Modified:
  haskell-memotrie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 18:50:11 UTC (rev 538574)
+++ PKGBUILD2019-12-20 20:05:40 UTC (rev 538575)
@@ -2,8 +2,8 @@
 
 _hkgname=MemoTrie
 pkgname=haskell-memotrie
-pkgver=0.6.9
-pkgrel=47
+pkgver=0.6.10
+pkgrel=1
 pkgdesc="Trie-based memo functions"
 url="https://github.com/conal/MemoTrie;
 license=('BSD')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-newtype-generics')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('d689e75b1fd18acae6d1c77189b8503e915bc1e5ea2707a04e893e180f044bd16f255ad3ee6880eab0eac9b803671a31561c7a52f90bc49830090c4615e89507')
+sha512sums=('73be7e356ad2aeef49abf43975d2e24ee8b883e12453f316366b52998637ac26d98feef34388c2a46f683027dc7132444b17a25a12d3e86748088fadf081b186')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (4 files)

2019-12-20 Thread Levente Polyak via arch-commits
Date: Friday, December 20, 2019 @ 19:04:18
  Author: anthraxx
Revision: 372006

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 372005, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 372005, linux-hardened/trunk/config)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config

--+
 PKGBUILD |  416 -
 config   |20958 ++---
 2 files changed, 10687 insertions(+), 10687 deletions(-)

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


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

2019-12-20 Thread Levente Polyak via arch-commits
Date: Friday, December 20, 2019 @ 19:04:07
  Author: anthraxx
Revision: 372005

upgpkg: linux-hardened 5.3.18.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:11:15 UTC (rev 372004)
+++ PKGBUILD2019-12-20 19:04:07 UTC (rev 372005)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.3.15.a
+pkgver=5.3.18.a
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -27,11 +27,11 @@
   '65EEFE022108E2B708CBFCF7F9E712E59AF5F22A'  # Daniel Micay
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('cec8aaea89feac4a3555f1e4b9244ff7c5e7640db242a7de796a006d1197'
+sha256sums=('20f14917c4f33122cfa12963a7d3180fe6f4685cacfe984553b2b5b4ad20638c'
 'SKIP'
-'ec8cec2000c5a040f178f5bc4fecad088f2b2327bcb6726e45e357810ffbec32'
+'377040fe84bc6d753c9e85527fdce64bccb5eae9424d38b8ac29cf01c35cbfd1'
 'SKIP'
-'74dd770958c888dd5922a579b2b61f475f8d235e4180476dd2d3b81354fdd4c3')
+'4255c35b9c9c535642dc3a8e1876ee7c121bb16fc2120d0896d4fa404c5723da')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2019-12-20 15:11:15 UTC (rev 372004)
+++ config  2019-12-20 19:04:07 UTC (rev 372005)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.3.15 Kernel Configuration
+# Linux/x86 5.3.18 Kernel Configuration
 #
 
 #


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

2019-12-20 Thread Johannes Löthberg via arch-commits
Date: Friday, December 20, 2019 @ 18:50:03
  Author: demize
Revision: 538573

upgpkg: matrix-synapse 1.7.2-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 18:42:31 UTC (rev 538572)
+++ PKGBUILD2019-12-20 18:50:03 UTC (rev 538573)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.7.0
+pkgver=1.7.2
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -33,7 +33,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-md5sums=('8a4c73000f2f01eb7e9f927f962e241e'
+md5sums=('b2c4bdcbe84b6f5ea58dc672b26d86a5'
  'fb196dee4f38a4b19e0a160f45574032'
  'ecd9f66fb57fe1a2e1e2df07a460a35b'
  'e961c9ecad84a70345a57a7e9e6d5b09')


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

2019-12-20 Thread Johannes Löthberg via arch-commits
Date: Friday, December 20, 2019 @ 18:50:11
  Author: demize
Revision: 538574

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 538573, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 538573, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 538573, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 538573, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 538573, matrix-synapse/trunk/tmpfiles-synapse.conf)

---+
 PKGBUILD  |   65 
 synapse.install   |   38 
 synapse.service   |   18 +
 sysusers-synapse.conf |1 
 tmpfiles-synapse.conf |1 
 5 files changed, 123 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 538573, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-12-20 18:50:11 UTC (rev 538574)
@@ -0,0 +1,65 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.7.2
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse;
+arch=('any')
+license=('Apache')
+
+depends=('python-jsonschema' 'python-twisted' 'python-service-identity'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-daemonize' 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-ujson'
+ 'python-pysaml2' 'python-setuptools'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-idna' 'python-jinja'
+ 'python-bleach' 'python-typing_extensions' 'systemd')
+checkdepends=('python-lxml' 'python-mock' 'python-parameterized')
+optdepends=('python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-psutil: metrics'
+'python-pyjwt: jwt')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
+'synapse.service'
+'sysusers-synapse.conf'
+'tmpfiles-synapse.conf')
+
+md5sums=('b2c4bdcbe84b6f5ea58dc672b26d86a5'
+ 'fb196dee4f38a4b19e0a160f45574032'
+ 'ecd9f66fb57fe1a2e1e2df07a460a35b'
+ 'e961c9ecad84a70345a57a7e9e6d5b09')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial3 tests
+}
+
+package() {
+   install -Dm644 synapse.service 
"$pkgdir"/usr/lib/systemd/system/synapse.service
+
+   cd synapse-$pkgver
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
+
+   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
+   install -Dm644 "$srcdir"/sysusers-synapse.conf 
"$pkgdir"/usr/lib/sysusers.d/synapse.conf
+   install -Dm644 "$srcdir"/tmpfiles-synapse.conf 
"$pkgdir"/usr/lib/tmpfiles.d/synapse.conf
+}

Copied: matrix-synapse/repos/community-testing-any/synapse.install (from rev 
538573, matrix-synapse/trunk/synapse.install)
===
--- community-testing-any/synapse.install   (rev 0)
+++ community-testing-any/synapse.install   2019-12-20 18:50:11 UTC (rev 
538574)
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+   if [[ ! -e /etc/synapse/homeserver.yaml ]]; then
+   cat <<-EOF
+   ==> A synapse configuration file needs to be generated before 
you can
+   start synapse, and you should make sure that it's readable 
by the
+   synapse user.
+
+   cd /var/lib/synapse
+   sudo -u synapse python -m synapse.app.homeserver \\
+ --server-name my.domain.name \\
+ --config-path /etc/synapse/homeserver.yaml \\
+ --generate-config \\
+ --report-stats=yes
+
+   N.B.: The default synapse config enables the webclient 
feature.
+ You need to either disable 

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

2019-12-20 Thread Johannes Löthberg via arch-commits
Date: Friday, December 20, 2019 @ 18:42:25
  Author: demize
Revision: 538571

upgpkg: python-pafy 0.5.5-1

Modified:
  python-pafy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 18:15:41 UTC (rev 538570)
+++ PKGBUILD2019-12-20 18:42:25 UTC (rev 538571)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=python-pafy
-pkgver=0.5.4
-pkgrel=5
+pkgver=0.5.5
+pkgrel=1
 
 pkgdesc="Python API for YouTube"
 url="https://github.com/mps-youtube/pafy;
@@ -15,7 +15,7 @@
 
 
source=("python-pafy-$pkgver.tar.gz::https://github.com/mps-youtube/pafy/archive/v$pkgver.tar.gz;)
 
-sha1sums=('bb79fce739f44e6ac0f13911c8e388378fd5fccf')
+sha1sums=('e190a90949605353a9c4c415f41fd4599f4ce1db')
 
 package_python-pafy() {
cd pafy-$pkgver


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

2019-12-20 Thread Johannes Löthberg via arch-commits
Date: Friday, December 20, 2019 @ 18:42:31
  Author: demize
Revision: 538572

archrelease: copy trunk to community-testing-any

Added:
  python-pafy/repos/community-testing-any/
  python-pafy/repos/community-testing-any/PKGBUILD
(from rev 538571, python-pafy/trunk/PKGBUILD)

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

Copied: python-pafy/repos/community-testing-any/PKGBUILD (from rev 538571, 
python-pafy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-12-20 18:42:31 UTC (rev 538572)
@@ -0,0 +1,23 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-pafy
+pkgver=0.5.5
+pkgrel=1
+
+pkgdesc="Python API for YouTube"
+url="https://github.com/mps-youtube/pafy;
+arch=('any')
+license=('GPL3')
+
+depends=('python' 'youtube-dl')
+makedepends=('python-setuptools')
+optdepends=('ffmpeg: fix issues with audio file downloads')
+
+source=("python-pafy-$pkgver.tar.gz::https://github.com/mps-youtube/pafy/archive/v$pkgver.tar.gz;)
+
+sha1sums=('e190a90949605353a9c4c415f41fd4599f4ce1db')
+
+package_python-pafy() {
+   cd pafy-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 18:15:05
  Author: felixonmars
Revision: 538550

upgpkg: python-hypothesis 4.52.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 17:27:46 UTC (rev 538549)
+++ PKGBUILD2019-12-20 18:15:05 UTC (rev 538550)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.51.1
+pkgver=4.52.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('a42db1c40e62d9fa2f9351144e0cdd22c297bc663ec44808906fea50d8d74e740fe1bb86a2dd0f183ad68ad6712ada2de89e45ac6e1b7caf07042f53cec465f4')
+sha512sums=('544c9f70e56b7000176cc6f5939dd3e24feffcd2d77b1ddd1e4c34c3082dff147850c03f0737a8134b6cf7e6de7a3711c57c429b324e7cd7f83b2f146fc900e3')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 18:15:14
  Author: felixonmars
Revision: 538551

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 18:15:05 UTC (rev 538550)
+++ PKGBUILD2019-12-20 18:15:14 UTC (rev 538551)
@@ -1,70 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.51.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('a42db1c40e62d9fa2f9351144e0cdd22c297bc663ec44808906fea50d8d74e740fe1bb86a2dd0f183ad68ad6712ada2de89e45ac6e1b7caf07042f53cec465f4')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 538550, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 18:15:14 UTC (rev 538551)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.52.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('544c9f70e56b7000176cc6f5939dd3e24feffcd2d77b1ddd1e4c34c3082dff147850c03f0737a8134b6cf7e6de7a3711c57c429b324e7cd7f83b2f146fc900e3')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+
+  cp -a hypothesis-$pkgver{,-py2}
+
+  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
+  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+
+  cd 

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

2019-12-20 Thread Jaroslav Lichtblau via arch-commits
Date: Friday, December 20, 2019 @ 17:27:46
  Author: jlichtblau
Revision: 538549

archrelease: copy trunk to community-any

Added:
  offlineimap/repos/community-any/PKGBUILD
(from rev 538548, offlineimap/trunk/PKGBUILD)
  offlineimap/repos/community-any/offlineimap.changelog
(from rev 538548, offlineimap/trunk/offlineimap.changelog)
Deleted:
  offlineimap/repos/community-any/PKGBUILD
  offlineimap/repos/community-any/offlineimap.changelog

---+
 PKGBUILD  |   98 +++---
 offlineimap.changelog |  329 
 2 files changed, 215 insertions(+), 212 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 17:27:38 UTC (rev 538548)
+++ PKGBUILD2019-12-20 17:27:46 UTC (rev 538549)
@@ -1,49 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Callan Barrett 
-# Contributor: mucknert 
-
-pkgname=offlineimap
-pkgver=7.3.1
-pkgrel=1
-pkgdesc='Synchronizes emails between two repositories'
-arch=('any')
-url='http://offlineimap.org/'
-license=('GPL')
-depends=('python2-six' 'python2-uritemplate' 'python2-rfc6555')
-makedepends=('asciidoc')
-optdepends=('python2-pysocks: for SOCKS5 proxy functionality')
-changelog=$pkgname.changelog
-source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
-sha256sums=('9720642b1a5a8856b696259528274ae10442dea48e161e918582e1e743995baa')
-
-prepare() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  find . -type f -exec sed '1s,^#! \?/usr/bin/\(env 
\|\)python$,#!/usr/bin/python2,' -i {} \;
-}
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  python2 setup.py build
-
-  cd "${srcdir}"/${pkgname}-${pkgver}/docs
-  make man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm644 docs/offlineimap.1 
"${pkgdir}"/usr/share/man/man1/offlineimap.1
-  install -Dm644 docs/offlineimapui.7 
"${pkgdir}"/usr/share/man/man7/offlineimapui.7
-  install -Dm644 offlineimap.conf 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf
-  install -Dm644 offlineimap.conf.minimal 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf.minimal
-
-#systemd files
-  install -Dm644 contrib/systemd/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.service
-  install -Dm644 contrib/systemd/$pkgname@.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.service
-  install -Dm644 contrib/systemd/$pkgname-oneshot.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname-oneshot.service
-  install -Dm644 contrib/systemd/$pkgname-oneshot.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname-oneshot.timer
-  install -Dm644 contrib/systemd/$pkgname-oneshot@.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname-oneshot@.service
-  install -Dm644 contrib/systemd/$pkgname-oneshot@.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname-oneshot@.timer
-}

Copied: offlineimap/repos/community-any/PKGBUILD (from rev 538548, 
offlineimap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 17:27:46 UTC (rev 538549)
@@ -0,0 +1,49 @@
+# Maintainer: Gaetan Bisson 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Callan Barrett 
+# Contributor: mucknert 
+
+pkgname=offlineimap
+pkgver=7.3.2
+pkgrel=1
+pkgdesc='Synchronizes emails between two repositories'
+arch=('any')
+url='http://offlineimap.org/'
+license=('GPL')
+depends=('python2-six' 'python2-uritemplate' 'python2-rfc6555')
+makedepends=('asciidoc')
+optdepends=('python2-pysocks: for SOCKS5 proxy functionality')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
+sha256sums=('d47b564858c3e9fc7726ef58c9a4ee518d2958c5de3dcad6cd78b7cfe0a6bdef')
+
+prepare() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  find . -type f -exec sed '1s,^#! \?/usr/bin/\(env 
\|\)python$,#!/usr/bin/python2,' -i {} \;
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python2 setup.py build
+
+  cd "${srcdir}"/${pkgname}-${pkgver}/docs
+  make man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 docs/offlineimap.1 
"${pkgdir}"/usr/share/man/man1/offlineimap.1
+  install -Dm644 docs/offlineimapui.7 
"${pkgdir}"/usr/share/man/man7/offlineimapui.7
+  install -Dm644 offlineimap.conf 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf
+  install -Dm644 offlineimap.conf.minimal 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf.minimal
+
+#systemd files
+  install -Dm644 contrib/systemd/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.service
+  install -Dm644 contrib/systemd/$pkgname@.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.service
+  install -Dm644 contrib/systemd/$pkgname-oneshot.service 

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

2019-12-20 Thread Jaroslav Lichtblau via arch-commits
Date: Friday, December 20, 2019 @ 17:27:38
  Author: jlichtblau
Revision: 538548

upgpkg: offlineimap 7.3.2-1 - new upstream release

Modified:
  offlineimap/trunk/PKGBUILD
  offlineimap/trunk/offlineimap.changelog

---+
 PKGBUILD  |4 ++--
 offlineimap.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 17:25:02 UTC (rev 538547)
+++ PKGBUILD2019-12-20 17:27:38 UTC (rev 538548)
@@ -4,7 +4,7 @@
 # Contributor: mucknert 
 
 pkgname=offlineimap
-pkgver=7.3.1
+pkgver=7.3.2
 pkgrel=1
 pkgdesc='Synchronizes emails between two repositories'
 arch=('any')
@@ -15,7 +15,7 @@
 optdepends=('python2-pysocks: for SOCKS5 proxy functionality')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
-sha256sums=('9720642b1a5a8856b696259528274ae10442dea48e161e918582e1e743995baa')
+sha256sums=('d47b564858c3e9fc7726ef58c9a4ee518d2958c5de3dcad6cd78b7cfe0a6bdef')
 
 prepare() {
   cd "${srcdir}"/${pkgname}-${pkgver}

Modified: offlineimap.changelog
===
--- offlineimap.changelog   2019-12-20 17:25:02 UTC (rev 538547)
+++ offlineimap.changelog   2019-12-20 17:27:38 UTC (rev 538548)
@@ -1,3 +1,6 @@
+2019-12-20 Jaroslav Lichtblau 
+   * offlineimap 7.3.2-1
+
 2019-12-16 Jaroslav Lichtblau 
* offlineimap 7.3.1-1
 


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

2019-12-20 Thread Connor Behan via arch-commits
Date: Friday, December 20, 2019 @ 17:25:02
  Author: cbehan
Revision: 538547

archrelease: copy trunk to community-any

Added:
  txt2tags/repos/community-any/ChangeLog
(from rev 538546, txt2tags/trunk/ChangeLog)
  txt2tags/repos/community-any/PKGBUILD
(from rev 538546, txt2tags/trunk/PKGBUILD)
Deleted:
  txt2tags/repos/community-any/ChangeLog
  txt2tags/repos/community-any/PKGBUILD

---+
 ChangeLog |   18 +-
 PKGBUILD  |  100 
 2 files changed, 36 insertions(+), 82 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2019-12-20 17:23:58 UTC (rev 538546)
+++ ChangeLog   2019-12-20 17:25:02 UTC (rev 538547)
@@ -1,9 +0,0 @@
-
-2008-08-17  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.5
-
-2008-01-14  Douglas Soares de Andrade  
-
-   * Fixed the manpage path
-

Copied: txt2tags/repos/community-any/ChangeLog (from rev 538546, 
txt2tags/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2019-12-20 17:25:02 UTC (rev 538547)
@@ -0,0 +1,9 @@
+
+2008-08-17  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.5
+
+2008-01-14  Douglas Soares de Andrade  
+
+   * Fixed the manpage path
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 17:23:58 UTC (rev 538546)
+++ PKGBUILD2019-12-20 17:25:02 UTC (rev 538547)
@@ -1,73 +0,0 @@
-# Maintainer: Connor Behan 
-# Contributor: Lukas Fleischer 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Stefan Husmann 
-
-pkgname=txt2tags
-pkgver=2.6
-pkgrel=6
-pkgdesc='A text formatting and conversion tool.'
-arch=('any')
-url='https://www.txt2tags.org'
-license=('GPL')
-depends=('python2')
-optdepends=('ruby: for running t2tmake.rb'
-'sh: for running html-update.sh'
-'vim: for using the vim-files')
-makedepends=('gettext')
-source=("https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz;)
-md5sums=('531e4ab3f0fb0a4dac5abb0605472109')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # python2 fix
-  for f in txt2tags extras/gensite; do
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' "$f"
-  done
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -d "$pkgdir/usr/share/vim/vimfiles"/{plugin,syntax,compiler,macros}
-  install -d "$pkgdir/usr/share/man"/{it,pt_BR,fr,es,ca}/man1
-  install -d "$pkgdir/usr/share/man/man1"
-
-  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 extras/pagemaker.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/pagemaker.vim"
-  install -Dm644 "extras/$pkgname.vim" 
"$pkgdir/usr/share/vim/vimfiles/syntax/$pkgname.vim"
-  install -Dm644 extras/gvim-menu.vim \
-"$pkgdir/usr/share/vim/vimfiles/plugin/$pkgname-gvim-menu.vim"
-  install -Dm644 "extras/$pkgname-compiler.vim" \
-"$pkgdir/usr/share/vim/vimfiles/compiler/$pkgname-compiler.vim"
-  install -Dm644 extras/unhtml.vim \
-"$pkgdir/usr/share/vim/vimfiles/macros/unhtml.vim"
-
-  # installing other extra tools
-  install -m755 extras/{t2tmake.rb,gensite,html-update.sh,dynartslides} 
"$pkgdir/usr/bin"
-  install -Dm644 extras/txt2tags-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/txt2tags-mode.el"
-  
-   # handling man pages
-  cd doc
-  for _file in `find . -name *.man | grep -v English`; do
-_lang=${_file:${#_file}-6:2}
-install -Dm644 "$_file" "$pkgname.1-${_lang}"
-if [[ ${_lang} == "pt" ]]; then
-  cp "$pkgname.1-${_lang}" "$pkgdir/usr/share/man/pt_BR/man1/$pkgname.1"
-else
-  install -Dm644 "$pkgname.1-${_lang}" 
"$pkgdir/usr/share/man/${_lang}/man1/$pkgname.1"
-fi
-  done
-  
-   # English man page
-  install -Dm644 English/manpage.man "$pkgdir/usr/share/man/man1/$pkgname.1"
-
-  # i18n
-  cd ../po
-  for _i in *.po
-  do
-msgfmt -o "${_i%.po}.mo" "${_i}"
-install -Dm644 "${_i%.po}.mo" 
"$pkgdir/usr/share/locale/${_i%.po}/LC_MESSAGES/$pkgname.mo"
-  done
-}

Copied: txt2tags/repos/community-any/PKGBUILD (from rev 538546, 
txt2tags/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 17:25:02 UTC (rev 538547)
@@ -0,0 +1,27 @@
+# Maintainer: Connor Behan 
+# Contributor: Lukas Fleischer 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Stefan Husmann 
+
+pkgname=txt2tags
+pkgver=3.3
+pkgrel=1
+pkgdesc='A text formatting and conversion tool.'
+arch=('any')
+url='http://www.txt2tags.org'
+license=('GPL')
+depends=('python')
+makedepends=('python-setuptools')
+md5sums=('3261d1d6e185a8159212970c2a8e617d')
+source=("https://github.com/jendrikseipp/$pkgname/archive/$pkgver.tar.gz;)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python setup.py 

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

2019-12-20 Thread Connor Behan via arch-commits
Date: Friday, December 20, 2019 @ 17:23:58
  Author: cbehan
Revision: 538546

upgpkg: txt2tags 3.3-1

Switch to maintained fork which is missing some features but supports Python 3

Modified:
  txt2tags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 17:08:58 UTC (rev 538545)
+++ PKGBUILD2019-12-20 17:23:58 UTC (rev 538546)
@@ -4,70 +4,24 @@
 # Contributor: Stefan Husmann 
 
 pkgname=txt2tags
-pkgver=2.6
-pkgrel=6
+pkgver=3.3
+pkgrel=1
 pkgdesc='A text formatting and conversion tool.'
 arch=('any')
-url='https://www.txt2tags.org'
+url='http://www.txt2tags.org'
 license=('GPL')
-depends=('python2')
-optdepends=('ruby: for running t2tmake.rb'
-'sh: for running html-update.sh'
-'vim: for using the vim-files')
-makedepends=('gettext')
-source=("https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz;)
-md5sums=('531e4ab3f0fb0a4dac5abb0605472109')
+depends=('python')
+makedepends=('python-setuptools')
+md5sums=('3261d1d6e185a8159212970c2a8e617d')
+source=("https://github.com/jendrikseipp/$pkgname/archive/$pkgver.tar.gz;)
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
-
-  # python2 fix
-  for f in txt2tags extras/gensite; do
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' "$f"
-  done
+  python setup.py build
 }
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
+  python setup.py install --root="$pkgdir"
+}
 
-  install -d "$pkgdir/usr/share/vim/vimfiles"/{plugin,syntax,compiler,macros}
-  install -d "$pkgdir/usr/share/man"/{it,pt_BR,fr,es,ca}/man1
-  install -d "$pkgdir/usr/share/man/man1"
-
-  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 extras/pagemaker.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/pagemaker.vim"
-  install -Dm644 "extras/$pkgname.vim" 
"$pkgdir/usr/share/vim/vimfiles/syntax/$pkgname.vim"
-  install -Dm644 extras/gvim-menu.vim \
-"$pkgdir/usr/share/vim/vimfiles/plugin/$pkgname-gvim-menu.vim"
-  install -Dm644 "extras/$pkgname-compiler.vim" \
-"$pkgdir/usr/share/vim/vimfiles/compiler/$pkgname-compiler.vim"
-  install -Dm644 extras/unhtml.vim \
-"$pkgdir/usr/share/vim/vimfiles/macros/unhtml.vim"
-
-  # installing other extra tools
-  install -m755 extras/{t2tmake.rb,gensite,html-update.sh,dynartslides} 
"$pkgdir/usr/bin"
-  install -Dm644 extras/txt2tags-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/txt2tags-mode.el"
-  
-   # handling man pages
-  cd doc
-  for _file in `find . -name *.man | grep -v English`; do
-_lang=${_file:${#_file}-6:2}
-install -Dm644 "$_file" "$pkgname.1-${_lang}"
-if [[ ${_lang} == "pt" ]]; then
-  cp "$pkgname.1-${_lang}" "$pkgdir/usr/share/man/pt_BR/man1/$pkgname.1"
-else
-  install -Dm644 "$pkgname.1-${_lang}" 
"$pkgdir/usr/share/man/${_lang}/man1/$pkgname.1"
-fi
-  done
-  
-   # English man page
-  install -Dm644 English/manpage.man "$pkgdir/usr/share/man/man1/$pkgname.1"
-
-  # i18n
-  cd ../po
-  for _i in *.po
-  do
-msgfmt -o "${_i%.po}.mo" "${_i}"
-install -Dm644 "${_i%.po}.mo" 
"$pkgdir/usr/share/locale/${_i%.po}/LC_MESSAGES/$pkgname.mo"
-  done
-}


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

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 17:08:53
  Author: ffy00
Revision: 538544

make package reproducible (2.089.0-2)

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 17:03:39 UTC (rev 538543)
+++ PKGBUILD2019-12-20 17:08:53 UTC (rev 538544)
@@ -4,7 +4,7 @@
 
 pkgname=dtools
 pkgver=2.089.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Ancilliary tools for the D programming language'
 license=('Boost')
 groups=('dlang')
@@ -29,7 +29,7 @@
 
 cd tools-$pkgver
 # rdmd is used to build others
-$DMD -od. -ofdtools-rdmd $_linkflags rdmd.d
+$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
 
 for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
 ./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d


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

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 17:08:58
  Author: ffy00
Revision: 538545

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 538544, dtools/trunk/PKGBUILD)
  dtools/repos/community-x86_64/autodetect.diff
(from rev 538544, dtools/trunk/autodetect.diff)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD
  dtools/repos/community-x86_64/autodetect.diff

-+
 PKGBUILD|  106 +++---
 autodetect.diff |   94 +++
 2 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 17:08:53 UTC (rev 538544)
+++ PKGBUILD2019-12-20 17:08:58 UTC (rev 538545)
@@ -1,53 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-
-pkgname=dtools
-pkgver=2.089.0
-pkgrel=1
-pkgdesc='Ancilliary tools for the D programming language'
-license=('Boost')
-groups=('dlang')
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('dmd' 'libphobos')
-provides=('ddemangle' 'dustmite' 'rdmd')
-conflicts=('ddemangle' 'dustmite' 'rdmd')
-depends=('curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
-'https://www.boost.org/LICENSE_1_0.txt'
-'autodetect.diff')
-sha512sums=('a64bed8d0b24a33fd86ca1375895f85cd86b34d2b9eb871e7d3df34235e634be058addd6b1056c5a3b010050eb0593e5ef45d907720e07b081140fd265bc00e3'
-
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
-
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
-
-build() {
-DMD=dmd
-
-# Add $LDFLAGS and $CXXFLAGS to the compilation
-_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
-
-cd tools-$pkgver
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd $_linkflags rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
-done
-}
-
-package() {
-cd tools-$pkgver
-
-mkdir -p "$pkgdir/usr/bin"
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
-done
-
-cd "$pkgdir"
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-ln -s dtools-ddemangle usr/bin/ddemangle
-
-install -Dm644 "$srcdir/LICENSE_1_0.txt" 
usr/share/licenses/$pkgname/LICENSE
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 538544, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 17:08:58 UTC (rev 538545)
@@ -0,0 +1,53 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasunse 
+
+pkgname=dtools
+pkgver=2.089.0
+pkgrel=2
+pkgdesc='Ancilliary tools for the D programming language'
+license=('Boost')
+groups=('dlang')
+arch=('x86_64')
+url='https://www.dlang.org'
+makedepends=('dmd' 'libphobos')
+provides=('ddemangle' 'dustmite' 'rdmd')
+conflicts=('ddemangle' 'dustmite' 'rdmd')
+depends=('curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
+'https://www.boost.org/LICENSE_1_0.txt'
+'autodetect.diff')
+sha512sums=('a64bed8d0b24a33fd86ca1375895f85cd86b34d2b9eb871e7d3df34235e634be058addd6b1056c5a3b010050eb0593e5ef45d907720e07b081140fd265bc00e3'
+
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
+
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
+
+build() {
+DMD=dmd
+
+# Add $LDFLAGS and $CXXFLAGS to the compilation
+_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
+
+cd tools-$pkgver
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
+done
+}
+
+package() {
+cd tools-$pkgver
+
+mkdir -p "$pkgdir/usr/bin"
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
+done
+
+cd "$pkgdir"
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+ln -s dtools-ddemangle usr/bin/ddemangle
+
+install -Dm644 "$srcdir/LICENSE_1_0.txt" 

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

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 17:03:39
  Author: ffy00
Revision: 538543

archrelease: copy trunk to community-x86_64

Added:
  dub/repos/community-x86_64/PKGBUILD
(from rev 538542, dub/trunk/PKGBUILD)
Deleted:
  dub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 17:03:29 UTC (rev 538542)
+++ PKGBUILD2019-12-20 17:03:39 UTC (rev 538543)
@@ -1,38 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-
-pkgname=dub
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="Developer package manager for D programming language"
-arch=('x86_64')
-url="https://github.com/D-Programming-Language/dub;
-license=('MIT')
-groups=('dlang')
-makedepends=('ldc')
-depends=('liblphobos' 'curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
-sha512sums=('c8eff9e9fe1edf5f2cb01119463dade936f32f53971e9d58dad6e3d27cc2a013cd9bb6976d2d42c999b7c98a4bd8f9846a2064ba6496c9c1a6dc5e15421c9cfa')
-
-build() {
-   cd "$pkgname-$pkgver"
-
-   echo Generating version file...
-   echo "module dub.version_;" > source/dub/version_.d
-   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
-
-   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
@build-files.txt
-}
-
-package() {
-   # binaries
-   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
-
-   # license
-   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   # bash completion
-   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
-}

Copied: dub/repos/community-x86_64/PKGBUILD (from rev 538542, 
dub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 17:03:39 UTC (rev 538543)
@@ -0,0 +1,38 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasuns 
+# Contributor: Moritz Maxeiner 
+
+pkgname=dub
+pkgver=1.18.0
+pkgrel=2
+pkgdesc="Developer package manager for D programming language"
+arch=('x86_64')
+url="https://github.com/D-Programming-Language/dub;
+license=('MIT')
+groups=('dlang')
+makedepends=('ldc')
+depends=('liblphobos' 'curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
+sha512sums=('c8eff9e9fe1edf5f2cb01119463dade936f32f53971e9d58dad6e3d27cc2a013cd9bb6976d2d42c999b7c98a4bd8f9846a2064ba6496c9c1a6dc5e15421c9cfa')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   echo Generating version file...
+   echo "module dub.version_;" > source/dub/version_.d
+   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
+
+   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
-L--build-id @build-files.txt
+}
+
+package() {
+   # binaries
+   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
+
+   # license
+   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   # bash completion
+   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
+}


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

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 17:03:29
  Author: ffy00
Revision: 538542

make package reproducible (1.18.0-2)

Modified:
  dub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:43:34 UTC (rev 538541)
+++ PKGBUILD2019-12-20 17:03:29 UTC (rev 538542)
@@ -5,7 +5,7 @@
 
 pkgname=dub
 pkgver=1.18.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Developer package manager for D programming language"
 arch=('x86_64')
 url="https://github.com/D-Programming-Language/dub;
@@ -23,7 +23,7 @@
echo "module dub.version_;" > source/dub/version_.d
echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
 
-   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
@build-files.txt
+   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
-L--build-id @build-files.txt
 }
 
 package() {


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:43:34
  Author: felixonmars
Revision: 538541

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

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
538540, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:43:34 UTC (rev 538541)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=203
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://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 --ghc-option='-pie'
+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-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:43:25
  Author: felixonmars
Revision: 538540

upgpkg: tamarin-prover 1.4.1-203: rebuild with file-embed 0.0.11.1

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:41:44 UTC (rev 538539)
+++ PKGBUILD2019-12-20 16:43:25 UTC (rev 538540)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=202
+pkgrel=203
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:41:44
  Author: felixonmars
Revision: 538539

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 538538, stylish-haskell/trunk/PKGBUILD)

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
538538, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:41:44 UTC (rev 538539)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.4.4
+pkgrel=12
+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-random' 'haskell-test-framework'
+ 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5226d203295e03600f07fe21905a1ea1231bd79b1d7bc5e157c74f79054181df0e5f7d549dd418de0a610d70450ba1f2ae9d9ff804fa21674dacd0c17fb26bc9')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $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 --ghc-option='-pie'
+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-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:41:35
  Author: felixonmars
Revision: 538538

upgpkg: stylish-haskell 0.9.4.4-12: rebuild with file-embed 0.0.11.1

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:40:26 UTC (rev 538537)
+++ PKGBUILD2019-12-20 16:41:35 UTC (rev 538538)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.4.4
-pkgrel=11
+pkgrel=12
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("BSD")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:40:17
  Author: felixonmars
Revision: 538536

upgpkg: stack 2.1.3-93: rebuild with file-embed 0.0.11.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:34:58 UTC (rev 538535)
+++ PKGBUILD2019-12-20 16:40:17 UTC (rev 538536)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=92
+pkgrel=93
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:40:26
  Author: felixonmars
Revision: 538537

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   84 
 stack.install |4 ++
 2 files changed, 88 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 538536, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:40:26 UTC (rev 538537)
@@ -0,0 +1,84 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=93
+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-colour'
+ '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-hi-file-parser' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 
'haskell-http-download'
+ 'haskell-http-types' 'haskell-memory' 'haskell-microlens' 
'haskell-mintty'
+ 'haskell-mono-traversable' 'haskell-mustache' 
'haskell-neat-interpolation'
+ 'haskell-network-uri' 'haskell-open-browser' 
'haskell-optparse-applicative'
+ 'haskell-optparse-generic' 'haskell-optparse-simple' 'haskell-pantry' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-terminal-size'
+ '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-raw-strings-qq'
+ '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;
+
https://github.com/commercialhaskell/stack/commit/62c24fa0552dc722260f1cee75325145e837ab6a.patch)
+sha512sums=('SKIP'
+
'99bb04cf6581a8d712413822f834856b036b37ab2ae41307e82a7064b12cdfa43c6ccc60adfa870057f9ba197e1ae4eda144a7088306630400c0798a2b60d9c6')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../62c24fa0552dc722260f1cee75325145e837ab6a.patch || :
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i '1i {-# LANGUAGE UndecidableInstances #-}' 
src/Stack/Storage/{User,Project}.hs
+}
+
+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 \
+  --ghc-option='-pie'
+  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"
+
+  

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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:34:58
  Author: felixonmars
Revision: 538535

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 538534, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:34:58 UTC (rev 538535)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=73
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('46ef486dff09bd51bdc5f053b1dda9e3f2943c66bbf6788824ddf8fcf3b69b7a3a9c00bf98bca0dee9d57ee6df833ca4088252dbf773815248be0fa667f35215')
+
+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 \
+--ghc-option='-pie'
+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-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:34:50
  Author: felixonmars
Revision: 538534

upgpkg: shellcheck 0.7.0-73: rebuild with file-embed 0.0.11.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:32:24 UTC (rev 538533)
+++ PKGBUILD2019-12-20 16:34:50 UTC (rev 538534)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=72
+pkgrel=73
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 16:32:24
  Author: ffy00
Revision: 538533

archrelease: copy trunk to community-x86_64

Added:
  arduino-cli/repos/community-x86_64/PKGBUILD
(from rev 538532, arduino-cli/trunk/PKGBUILD)
Deleted:
  arduino-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 16:32:04 UTC (rev 538532)
+++ PKGBUILD2019-12-20 16:32:24 UTC (rev 538533)
@@ -1,49 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=arduino-cli
-pkgver=0.6.0
-pkgrel=2
-arch=('x86_64')
-pkgdesc='Arduino command line interface'
-url='https://github.com/arduino/arduino-cli'
-license=('GPL3')
-groups=('arduino')
-makedepends=('go-pie' 'git')
-source=("git+$url.git#tag=$pkgver")
-sha512sums=('SKIP')
-
-prepare(){
-  cd $pkgname
-
-  # Fix version string
-  sed -i "s|versionString= \".*\"|versionString= 
\"$pkgver-arch\"|
-  s|commit   = \".*\"|commit   = \"$(git 
rev-parse HEAD)\"|" \
-  version/version.go
-
-  export GOPATH="$srcdir"/gopath
-
-  mkdir -p "$GOPATH"/src/github.com/arduino
-  ln -rTsf . "$GOPATH"/src/github.com/arduino/arduino-cli
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  export GO111MODULE=on
-
-  go mod vendor
-  go mod download
-}
-
-build(){
-  export GOPATH="$srcdir"/gopath
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  go build \
-   -gcflags "all=-trimpath=$GOPATH" \
-   -asmflags "all=-trimpath=$GOPATH" \
-   -ldflags "-extldflags $LDFLAGS" \
-   -v .
-}
-
-package() {
-  install -Dm 755 $pkgname/$pkgname "$pkgdir"/usr/bin/$pkgname
-}
-

Copied: arduino-cli/repos/community-x86_64/PKGBUILD (from rev 538532, 
arduino-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 16:32:24 UTC (rev 538533)
@@ -0,0 +1,49 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=arduino-cli
+pkgver=0.7.0
+pkgrel=1
+arch=('x86_64')
+pkgdesc='Arduino command line interface'
+url='https://github.com/arduino/arduino-cli'
+license=('GPL3')
+groups=('arduino')
+makedepends=('go-pie' 'git')
+source=("git+$url.git#tag=$pkgver")
+sha512sums=('SKIP')
+
+prepare(){
+  cd $pkgname
+
+  # Fix version string
+  sed -i "s|versionString= \".*\"|versionString= 
\"$pkgver-arch\"|
+  s|commit   = \".*\"|commit   = \"$(git 
rev-parse HEAD)\"|" \
+  version/version.go
+
+  export GOPATH="$srcdir"/gopath
+
+  mkdir -p "$GOPATH"/src/github.com/arduino
+  ln -rTsf . "$GOPATH"/src/github.com/arduino/arduino-cli
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  export GO111MODULE=on
+
+  go mod vendor
+  go mod download
+}
+
+build(){
+  export GOPATH="$srcdir"/gopath
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  go build \
+   -gcflags "all=-trimpath=$GOPATH" \
+   -asmflags "all=-trimpath=$GOPATH" \
+   -ldflags "-extldflags $LDFLAGS" \
+   -v .
+}
+
+package() {
+  install -Dm 755 $pkgname/$pkgname "$pkgdir"/usr/bin/$pkgname
+}
+


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:31:30
  Author: felixonmars
Revision: 538530

upgpkg: pandoc-crossref 0.3.4.1-138: rebuild with file-embed 0.0.11.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:29:59 UTC (rev 538529)
+++ PKGBUILD2019-12-20 16:31:30 UTC (rev 538530)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=137
+pkgrel=138
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:31:39
  Author: felixonmars
Revision: 538531

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
538530, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:31:39 UTC (rev 538531)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.1
+pkgrel=138
+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=('25cee0e9626e67d46769fff47da67fc616c1ce6c181e3c6e3f82b9dd1db1fc2bb3fe264da0e6c8d6082f8ea483530f88e917598ac9daaa2f6b97bbccca203254')
+
+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 arduino-cli/trunk (PKGBUILD)

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 16:32:04
  Author: ffy00
Revision: 538532

upgpkg: arduino-cli 0.7.0-1

Modified:
  arduino-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:31:39 UTC (rev 538531)
+++ PKGBUILD2019-12-20 16:32:04 UTC (rev 538532)
@@ -1,8 +1,8 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=arduino-cli
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.7.0
+pkgrel=1
 arch=('x86_64')
 pkgdesc='Arduino command line interface'
 url='https://github.com/arduino/arduino-cli'


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:29:50
  Author: felixonmars
Revision: 538528

upgpkg: haskell-hakyll 4.12.5.2-141: rebuild with file-embed 0.0.11.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:27:57 UTC (rev 538527)
+++ PKGBUILD2019-12-20 16:29:50 UTC (rev 538528)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=140
+pkgrel=141
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:29:59
  Author: felixonmars
Revision: 538529

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
538528, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:29:59 UTC (rev 538529)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=141
+pkgdesc="A static website compiler library"
+url="https://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=('715324fa19b85e8f39e33b4d5082a04f40fc667737b41117da68a6a0eedad288a551929fa2eea636dd421d4d416996125ff9d83752c7daaf64ecc191e9790469')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.13/<3/' -e 's/< *3.3/<4/' $_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 pandoc-citeproc/repos (2 files)

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:27:57
  Author: felixonmars
Revision: 538527

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
538526, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:27:57 UTC (rev 538527)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=157
+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=('90c3fabe3e1478f43b0157580deb691e5be8d3064144cbf4d67ab8f15bfd99c51b3e811b47bbe4fefc76c4efe660007ab05a782e5a5df01cd42965fe22e5c664')
+
+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-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:27:49
  Author: felixonmars
Revision: 538526

upgpkg: pandoc-citeproc 0.16.2-157: rebuild with file-embed 0.0.11.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:25:01 UTC (rev 538525)
+++ PKGBUILD2019-12-20 16:27:49 UTC (rev 538526)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=156
+pkgrel=157
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:25:01
  Author: felixonmars
Revision: 538525

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:24:52
  Author: felixonmars
Revision: 538524

upgpkg: pandoc 2.7.3-89: rebuild with file-embed 0.0.11.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:14:20 UTC (rev 538523)
+++ PKGBUILD2019-12-20 16:24:52 UTC (rev 538524)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.3
-pkgrel=88
+pkgrel=89
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:14:12
  Author: felixonmars
Revision: 538522

upgpkg: hledger-web 1.15-62: rebuild with file-embed 0.0.11.1

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:12:33 UTC (rev 538521)
+++ PKGBUILD2019-12-20 16:14:12 UTC (rev 538522)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.15
-pkgrel=61
+pkgrel=62
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:14:20
  Author: felixonmars
Revision: 538523

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 538522, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:14:20 UTC (rev 538523)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.15
+pkgrel=62
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1743835e21cf7b6c38ef31e293e0db80d1bf87dd064f382678547d2430b04f95c6d2dcf6d5175179e43f151581b239dead2400b208bd1cdda3bafbf2ca30')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:12:25
  Author: felixonmars
Revision: 538520

upgpkg: hledger-ui 1.15-27: rebuild with file-embed 0.0.11.1

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:11:17 UTC (rev 538519)
+++ PKGBUILD2019-12-20 16:12:25 UTC (rev 538520)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.15
-pkgrel=26
+pkgrel=27
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:12:33
  Author: felixonmars
Revision: 538521

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:11:17
  Author: felixonmars
Revision: 538519

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 538518, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:11:17 UTC (rev 538519)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.15.2
+pkgrel=20
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-diff' 
'haskell-easytest'
+ 'haskell-hashable' 'haskell-hledger-lib' 'haskell-lucid' 
'haskell-math-functions'
+ 'haskell-megaparsec' 'haskell-old-time' 'haskell-pretty-show' 
'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-shakespeare' 'haskell-split' 
'haskell-tabular' 'haskell-temporary'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 
'haskell-utility-ht'
+ 'haskell-wizards')
+makedepends=('ghc' 'haskell-extra' 'haskell-test-framework' 
'haskell-test-framework-hunit'
+ 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('77362ab356f16abe6742a1c59985b4e31a8901fb236083eb8fb77689e9ccf99e76f8bde722a4e05daebf0c23654b5bf2d1ecd2e7613b5a8ab85efd99d3282fc3')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded --ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:11:08
  Author: felixonmars
Revision: 538518

upgpkg: hledger 1.15.2-20: rebuild with file-embed 0.0.11.1

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:09:47 UTC (rev 538517)
+++ PKGBUILD2019-12-20 16:11:08 UTC (rev 538518)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.15.2
-pkgrel=19
+pkgrel=20
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:09:39
  Author: felixonmars
Revision: 538516

upgpkg: git-annex 7.20191218-2: rebuild with file-embed 0.0.11.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:02:53 UTC (rev 538515)
+++ PKGBUILD2019-12-20 16:09:39 UTC (rev 538516)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20191218
-pkgrel=1
+pkgrel=2
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:09:47
  Author: felixonmars
Revision: 538517

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 538516, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 538516, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:09:47 UTC (rev 538517)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20191218
+pkgrel=2
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-uuid' 'haskell-vector' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-warp-tls' 'haskell-yesod' 'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup -j1
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:02:53
  Author: felixonmars
Revision: 538515

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
538514, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:02:53 UTC (rev 538515)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=241
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:02:45
  Author: felixonmars
Revision: 538514

upgpkg: haskell-yesod-static 1.6.0.1-241: rebuild with file-embed 0.0.11.1

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:01:28 UTC (rev 538513)
+++ PKGBUILD2019-12-20 16:02:45 UTC (rev 538514)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=240
+pkgrel=241
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:01:18
  Author: felixonmars
Revision: 538512

upgpkg: haskell-yesod-auth 1.6.8-58: rebuild with file-embed 0.0.11.1

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 16:00:01 UTC (rev 538511)
+++ PKGBUILD2019-12-20 16:01:18 UTC (rev 538512)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.8
-pkgrel=57
+pkgrel=58
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

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

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:59:52
  Author: felixonmars
Revision: 538510

upgpkg: haskell-servant-server 0.16.2-49: rebuild with file-embed 0.0.11.1

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:58:09 UTC (rev 538509)
+++ PKGBUILD2019-12-20 15:59:52 UTC (rev 538510)
@@ -4,7 +4,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.16.2
-pkgrel=48
+pkgrel=49
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="https://haskell-servant.readthedocs.org/;
 license=("BSD")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 16:00:01
  Author: felixonmars
Revision: 538511

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 538510, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 16:00:01 UTC (rev 538511)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.16.2
+pkgrel=49
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="https://haskell-servant.readthedocs.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 
'haskell-base64-bytestring'
+ 'haskell-exceptions' 'haskell-http-api-data' 'haskell-http-media' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-monad-control' 'haskell-network' 
'haskell-servant'
+ 'haskell-string-conversions' 'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-warp'
+ 'haskell-word8')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-should-not-typecheck' 'haskell-quickcheck' 
'haskell-safe' 'haskell-wai-extra'
+ 'haskell-temporary' 'haskell-transformers-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e3bf75e6fb6422e30d7851be7b07f33509f37d9c9c28464c20b3a1fd9cea9b7dd7c328b54438efabf42beecdf0f08fee174be526742c8915ad035fef701ca871')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:58:01
  Author: felixonmars
Revision: 538508

upgpkg: haskell-wai-app-static 3.1.6.3-129: rebuild with file-embed 0.0.11.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:56:59 UTC (rev 538507)
+++ PKGBUILD2019-12-20 15:58:01 UTC (rev 538508)
@@ -4,7 +4,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.3
-pkgrel=128
+pkgrel=129
 pkgdesc="WAI application for static serving"
 url="https://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:58:09
  Author: felixonmars
Revision: 538509

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 538508, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 15:58:09 UTC (rev 538509)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.3
+pkgrel=129
+pkgdesc="WAI application for static serving"
+url="https://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('acbbb499bd357e758ba46f8d8f0afab22242e4541c3cbaa97bbb5d81d55dfd6fc7c336c36b84591718d9d910dc0a7cbdadd07434cb6a4019ca595040bd18cb79')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:56:51
  Author: felixonmars
Revision: 538506

upgpkg: haskell-tasty-lua 0.2.0.1-13: rebuild with file-embed 0.0.11.1

Modified:
  haskell-tasty-lua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:56:06 UTC (rev 538505)
+++ PKGBUILD2019-12-20 15:56:51 UTC (rev 538506)
@@ -3,7 +3,7 @@
 _hkgname=tasty-lua
 pkgname=haskell-tasty-lua
 pkgver=0.2.0.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Write tests in Lua, integrate into tasty."
 url="https://github.com/hslua/tasty-lua;
 license=('MIT')


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:56:59
  Author: felixonmars
Revision: 538507

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-lua/repos/community-staging-x86_64/
  haskell-tasty-lua/repos/community-staging-x86_64/PKGBUILD
(from rev 538506, haskell-tasty-lua/trunk/PKGBUILD)

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

Copied: haskell-tasty-lua/repos/community-staging-x86_64/PKGBUILD (from rev 
538506, haskell-tasty-lua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 15:56:59 UTC (rev 538507)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-lua
+pkgname=haskell-tasty-lua
+pkgver=0.2.0.1
+pkgrel=13
+pkgdesc="Write tests in Lua, integrate into tasty."
+url="https://github.com/hslua/tasty-lua;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-file-embed' 'haskell-hslua' 'haskell-tasty')
+makedepends=('ghc' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('25981f483b1d890b74f5b0f16b273413de2dc2a2da1a0443014e605e41c93d276bca325717aca58d194c68e580dbfde8c1dee166c1974f4f2e544887e0ed0d12')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:56:06
  Author: felixonmars
Revision: 538505

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
538504, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 15:56:06 UTC (rev 538505)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.15.2
+pkgrel=10
+pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-blaze-markup'
+ 'haskell-call-stack' 'haskell-cassava' 'haskell-cassava-megaparsec' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-easytest' 
'haskell-extra' 'haskell-fgl'
+ 'haskell-file-embed' 'haskell-glob' 'haskell-hashtables' 
'haskell-megaparsec'
+ 'haskell-old-time' 'haskell-parser-combinators' 'haskell-pretty-show' 
'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-split' 'haskell-tabular' 'haskell-timeit' 
'haskell-uglymemo'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b5d5a8f12210732d0e65fe7f7c6dd78318d3ab552b8574d1e6dc07e765199c5e68a9589a630565d30ca7d6185dac79f4fcaa2b209d196771135a07c8490e')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:55:58
  Author: felixonmars
Revision: 538504

upgpkg: haskell-hledger-lib 1.15.2-10: rebuild with file-embed 0.0.11.1

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:49:40 UTC (rev 538503)
+++ PKGBUILD2019-12-20 15:55:58 UTC (rev 538504)
@@ -4,7 +4,7 @@
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
 pkgver=1.15.2
-pkgrel=9
+pkgrel=10
 pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
 url="http://hledger.org;
 license=("GPL")


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:49:33
  Author: felixonmars
Revision: 538502

upgpkg: haskell-file-embed 0.0.11.1-1: rebuild with file-embed 0.0.11.1

Modified:
  haskell-file-embed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:31:16 UTC (rev 538501)
+++ PKGBUILD2019-12-20 15:49:33 UTC (rev 538502)
@@ -3,8 +3,8 @@
 
 _hkgname=file-embed
 pkgname=haskell-file-embed
-pkgver=0.0.11
-pkgrel=6
+pkgver=0.0.11.1
+pkgrel=1
 pkgdesc="Use Template Haskell to embed file contents directly."
 url="https://github.com/snoyberg/file-embed;
 license=("BSD")
@@ -12,7 +12,7 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('2c6ac6bdf951706a6d2cfe317bb6c50e3fb166acd746ff9af0420212bfc8f298cf4dea08b2e38cb4615b98cbc15954e1b7d46918970234e4ab91012e34bf7b41')
+sha512sums=('88874c14d77da7ee7718e094de94018e5ac5b572965b6fd5a76bb2ca704191f1493f370bb3ebdacedd1f460364d1c915c6f8af9c32979e8d0a636f7a64c460f2')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-12-20 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 15:49:40
  Author: felixonmars
Revision: 538503

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-file-embed/repos/community-staging-x86_64/
  haskell-file-embed/repos/community-staging-x86_64/PKGBUILD
(from rev 538502, haskell-file-embed/trunk/PKGBUILD)

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

Copied: haskell-file-embed/repos/community-staging-x86_64/PKGBUILD (from rev 
538502, haskell-file-embed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-20 15:49:40 UTC (rev 538503)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=file-embed
+pkgname=haskell-file-embed
+pkgver=0.0.11.1
+pkgrel=1
+pkgdesc="Use Template Haskell to embed file contents directly."
+url="https://github.com/snoyberg/file-embed;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('88874c14d77da7ee7718e094de94018e5ac5b572965b6fd5a76bb2ca704191f1493f370bb3ebdacedd1f460364d1c915c6f8af9c32979e8d0a636f7a64c460f2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in liblxqt/trunk (PKGBUILD qt5.14.diff)

2019-12-20 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, December 20, 2019 @ 15:31:16
  Author: yan12125
Revision: 538501

liblxqt: add a patch for qt 5.14

Ref: https://github.com/lxqt/liblxqt/pull/243

Added:
  liblxqt/trunk/qt5.14.diff
Modified:
  liblxqt/trunk/PKGBUILD

-+
 PKGBUILD|9 -
 qt5.14.diff |   12 
 2 files changed, 20 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 15:17:20 UTC (rev 538500)
+++ PKGBUILD2019-12-20 15:31:16 UTC (rev 538501)
@@ -12,14 +12,21 @@
 source=(

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+   qt5.14.diff
 )
 sha256sums=('1aa7325654d20d3060a0ef0ffc27febfd58ee66704ee690727dc1a77ad1069bd'
-'SKIP')
+'SKIP'
+'dbde480fe0cd9393751636ec39a2282301eb3759bb0ec076d81b18d81e0fddb2')
 validpgpkeys=(
"169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

"7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

 )
 
+prepare() {
+   cd $pkgname-$pkgver
+   # Backport of https://github.com/lxqt/liblxqt/pull/243
+   patch -Np1 -i ../qt5.14.diff
+}
 
 build() {
mkdir -p build

Added: qt5.14.diff
===
--- qt5.14.diff (rev 0)
+++ qt5.14.diff 2019-12-20 15:31:16 UTC (rev 538501)
@@ -0,0 +1,12 @@
+diff --git a/lxqtpowermanager.cpp b/lxqtpowermanager.cpp
+index aef5ca2..b0926f9 100644
+--- a/lxqtpowermanager.cpp
 b/lxqtpowermanager.cpp
+@@ -32,6 +32,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "lxqttranslator.h"
+ #include "lxqtglobals.h"
+ #include "lxqtsettings.h"


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

2019-12-20 Thread Massimiliano Torromeo via arch-commits
Date: Friday, December 20, 2019 @ 15:17:06
  Author: mtorromeo
Revision: 538499

rebuilt with stable leveldb

Modified:
  sssd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:28:31 UTC (rev 538498)
+++ PKGBUILD2019-12-20 15:17:06 UTC (rev 538499)
@@ -3,7 +3,7 @@
 
 pkgname=sssd
 pkgver=2.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc="System Security Services Daemon"
 arch=('x86_64')
 url="https://pagure.io/SSSD/sssd;


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

2019-12-20 Thread Massimiliano Torromeo via arch-commits
Date: Friday, December 20, 2019 @ 15:17:20
  Author: mtorromeo
Revision: 538500

archrelease: copy trunk to community-x86_64

Added:
  sssd/repos/community-x86_64/PKGBUILD
(from rev 538499, sssd/trunk/PKGBUILD)
Deleted:
  sssd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  180 ++---
 1 file changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 15:17:06 UTC (rev 538499)
+++ PKGBUILD2019-12-20 15:17:20 UTC (rev 538500)
@@ -1,90 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Maintainer: Mantas M. 
-
-pkgname=sssd
-pkgver=2.2.3
-pkgrel=1
-pkgdesc="System Security Services Daemon"
-arch=('x86_64')
-url="https://pagure.io/SSSD/sssd;
-license=('GPL3')
-depends=(
-  'bind'  # for nsupdate
-  'c-ares'
-  'cyrus-sasl-gssapi'
-  'ding-libs'
-  'libnl'
-  'libunistring'
-  'nss'
-  'smbclient' # for libndr-nbt
-  'nfsidmap'
-  'jansson'
-)
-makedepends=(
-  'docbook-xsl'
-  'doxygen'
-  'python'
-  'python2'
-  'samba' # for libndr-nbt headers
-  'systemd'
-)
-source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('b61d52a53e26e8efa9cb799fc6efc2314bf9d174d3cacfe591a4ca77530637591eacc0dc70c0555252e04a9617e8b134b1ab2d9b0f7351b4228e7b61499e6a10'
-'SKIP')
-validpgpkeys=('E4E366758CA0716AAB8048671EC6AB7532E7BC25'
-  '16F24229488E736048952737BA88000FE6398272')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  for f in "${source[@]}"; do
-if [[ $f == *.patch ]]; then
-  msg2 "Applying $f"
-  patch -p1 < "$srcdir/$f"
-fi
-  done
-
-  # dbus policy files in /usr/share/dbus-1
-  sed -i -e 's/^dbuspolicydir = $(sysconfdir)/dbuspolicydir = $(datadir)/' 
Makefile.in
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin\
---sysconfdir=/etc \
---localstatedir=/var  \
---libexecdir=/usr/lib/sssd\
---datadir=/usr/share  \
---enable-pammoddir=/usr/lib/security  \
---with-initscript=systemd \
---with-os=fedora  \
---with-pid-path=/run  \
---with-python2-bindings   \
---with-python3-bindings   \
---with-syslog=journald\
---without-selinux \
---without-semanage\
---with-systemdunitdir=/usr/lib/systemd/system \
-;
-  sed -i '/\/d' config.h
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 DESTDIR="$pkgdir/" install
-  rm -rf "$pkgdir"/etc/rc.d
-  rm -rf "$pkgdir"/lib
-  rm -rf "$pkgdir"/run
-  rm -f "$pkgdir"/usr/lib/ldb/modules/ldb/memberof.la
-  find "$pkgdir"/usr -depth -type d \
--exec rmdir --ignore-fail-on-non-empty {} \;
-
-  cd "$srcdir"
-  rm -rf "$pkgdir/etc/systemd" # remove the drop-in
-
-  sed '1 s/python$/python2/' -i "$pkgdir"/usr/bin/sss_obfuscate
-}
-
-# vim: ts=2:sw=2:et:nowrap

Copied: sssd/repos/community-x86_64/PKGBUILD (from rev 538499, 
sssd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 15:17:20 UTC (rev 538500)
@@ -0,0 +1,90 @@
+# Maintainer: Massimiliano Torromeo 
+# Maintainer: Mantas M. 
+
+pkgname=sssd
+pkgver=2.2.3
+pkgrel=2
+pkgdesc="System Security Services Daemon"
+arch=('x86_64')
+url="https://pagure.io/SSSD/sssd;
+license=('GPL3')
+depends=(
+  'bind'  # for nsupdate
+  'c-ares'
+  'cyrus-sasl-gssapi'
+  'ding-libs'
+  'libnl'
+  'libunistring'
+  'nss'
+  'smbclient' # for libndr-nbt
+  'nfsidmap'
+  'jansson'
+)
+makedepends=(
+  'docbook-xsl'
+  'doxygen'
+  'python'
+  'python2'
+  'samba' # for libndr-nbt headers
+  'systemd'
+)
+source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('b61d52a53e26e8efa9cb799fc6efc2314bf9d174d3cacfe591a4ca77530637591eacc0dc70c0555252e04a9617e8b134b1ab2d9b0f7351b4228e7b61499e6a10'
+'SKIP')
+validpgpkeys=('E4E366758CA0716AAB8048671EC6AB7532E7BC25'
+  '16F24229488E736048952737BA88000FE6398272')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  for f in "${source[@]}"; do
+if [[ $f == *.patch ]]; then
+  msg2 "Applying $f"
+  patch -p1 < "$srcdir/$f"
+fi
+  done
+
+  # dbus policy files in /usr/share/dbus-1
+  sed -i -e 's/^dbuspolicydir = $(sysconfdir)/dbuspolicydir = $(datadir)/' 
Makefile.in
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin\
+--sysconfdir=/etc  

[arch-commits] Commit in xdg-desktop-portal-gtk/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 15:11:15
  Author: heftig
Revision: 372003

archrelease: copy trunk to extra-x86_64

Added:
  xdg-desktop-portal-gtk/repos/extra-x86_64/PKGBUILD
(from rev 372001, xdg-desktop-portal-gtk/trunk/PKGBUILD)
Deleted:
  xdg-desktop-portal-gtk/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 15:11:14 UTC (rev 372002)
+++ PKGBUILD2019-12-20 15:11:15 UTC (rev 372003)
@@ -1,43 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Patrick Griffis 
-
-pkgname=xdg-desktop-portal-gtk
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="A GTK+ backend for xdg-desktop-portal"
-url="https://github.com/flatpak/xdg-desktop-portal-gtk;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(gtk3 gnome-desktop)
-makedepends=(xdg-desktop-portal python git evince)
-optdepends=("evince: Print preview")
-provides=(xdg-desktop-portal-impl)
-_commit=c27096099b43e47b642a4b132eb2c8b0c2a81451  # tags/1.5.2^0
-source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make 
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  DESTDIR="$pkgdir" make install
-}

Copied: xdg-desktop-portal-gtk/repos/extra-x86_64/PKGBUILD (from rev 372001, 
xdg-desktop-portal-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 15:11:15 UTC (rev 372003)
@@ -0,0 +1,43 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Patrick Griffis 
+
+pkgname=xdg-desktop-portal-gtk
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="A GTK+ backend for xdg-desktop-portal"
+url="https://github.com/flatpak/xdg-desktop-portal-gtk;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(gtk3 gnome-desktop)
+makedepends=(xdg-desktop-portal python git evince)
+optdepends=("evince: Print preview")
+provides=(xdg-desktop-portal-impl)
+_commit=3f7d1ca802419f913c0c86f194ef43e69b30b2a2  # tags/1.6.0^0
+source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make 
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  DESTDIR="$pkgdir" make install
+}


[arch-commits] Commit in xdg-desktop-portal/repos/extra-x86_64 (4 files)

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 15:11:15
  Author: heftig
Revision: 372004

archrelease: copy trunk to extra-x86_64

Added:
  xdg-desktop-portal/repos/extra-x86_64/PKGBUILD
(from rev 372001, xdg-desktop-portal/trunk/PKGBUILD)
  xdg-desktop-portal/repos/extra-x86_64/hack.diff
(from rev 372001, xdg-desktop-portal/trunk/hack.diff)
Deleted:
  xdg-desktop-portal/repos/extra-x86_64/PKGBUILD
  xdg-desktop-portal/repos/extra-x86_64/hack.diff

---+
 PKGBUILD  |  100 +++
 hack.diff |  398 ++--
 2 files changed, 249 insertions(+), 249 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 15:11:15 UTC (rev 372003)
+++ PKGBUILD2019-12-20 15:11:15 UTC (rev 372004)
@@ -1,50 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Patrick Griffis 
-
-pkgname=xdg-desktop-portal
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="Desktop integration portals for sandboxed apps"
-url="https://github.com/flatpak/xdg-desktop-portal;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(glib2 pipewire fuse2 geoclue2)
-makedepends=(python xmlto docbook-xsl git flatpak libportal)
-checkdepends=(epiphany gedit gvfs)
-_commit=5f14b2703a994041dda543ed2d57c47b0ff251b1  # tags/1.5.4^0
-source=("git+https://github.com/flatpak/xdg-desktop-portal#commit=$_commit;
-hack.diff)
-sha256sums=('SKIP'
-'9b5097ce035fff9f9bebb6963e509b6597b3d5f0cceda26321cf228d8d59cf5d')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Make tests pass
-  # https://github.com/flatpak/xdg-desktop-portal/issues/394
-  git apply -3 ../hack.diff
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make 
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  depends+=(xdg-desktop-portal-impl)
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: xdg-desktop-portal/repos/extra-x86_64/PKGBUILD (from rev 372001, 
xdg-desktop-portal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 15:11:15 UTC (rev 372004)
@@ -0,0 +1,50 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Patrick Griffis 
+
+pkgname=xdg-desktop-portal
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Desktop integration portals for sandboxed apps"
+url="https://github.com/flatpak/xdg-desktop-portal;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(glib2 pipewire fuse2 geoclue2)
+makedepends=(python xmlto docbook-xsl git flatpak libportal)
+checkdepends=(epiphany gedit gvfs)
+_commit=28b93e213a83c78bb6d65d5a1a65c57d62957827  # tags/1.6.0^0
+source=("git+https://github.com/flatpak/xdg-desktop-portal#commit=$_commit;
+hack.diff)
+sha256sums=('SKIP'
+'949ce781ed3393e05f3bffdd0048aca976e0a35d9babeea9ec9d86ab8a00e871')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Make tests pass
+  # https://github.com/flatpak/xdg-desktop-portal/issues/394
+  git apply -3 ../hack.diff
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make 
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  depends+=(xdg-desktop-portal-impl)
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: hack.diff
===
--- hack.diff   2019-12-20 15:11:15 UTC (rev 372003)
+++ hack.diff   2019-12-20 15:11:15 UTC (rev 372004)
@@ -1,199 +0,0 @@
-diff --git i/tests/camera.c w/tests/camera.c
-index 4ef0176..197e77d 100644
 i/tests/camera.c
-+++ w/tests/camera.c
-@@ -239,29 +239,31 @@ test_camera_lockdown (void)
-   require_pipewire ();
-   reset_camera_permissions ();
-   xdp_impl_lockdown_set_disable_camera (lockdown, TRUE);
-+  sleep (1);
- 
-   keyfile = g_key_file_new ();
- 
-   g_key_file_set_integer (keyfile, "backend", "delay", 200);
-   g_key_file_set_integer (keyfile, "result", "marker", 4);
-   g_key_file_set_integer (keyfile, "backend", "response", 0);
-   g_key_file_set_integer (keyfile, "result", "response", 2);
-   g_key_file_set_integer (keyfile, "result", "error_domain", 
XDG_DESKTOP_PORTAL_ERROR);
-   g_key_file_set_integer (keyfile, "result", "error_code", 
XDG_DESKTOP_PORTAL_ERROR_NOT_ALLOWED);
- 
-   path = g_build_filename (outdir, "access", NULL);
-   g_key_file_save_to_file (keyfile, path, );
-   g_assert_no_error (error);
- 
-   portal = xdp_portal_new ();
- 
-   got_info = 0;
-   xdp_portal_access_camera (portal, NULL, NULL, camera_cb, keyfile);
- 
-   while (!got_info)
- g_main_context_iteration (NULL, TRUE);
- 
-   xdp_impl_lockdown_set_disable_camera (lockdown, FALSE);
-+  sleep (1);
- }
- 
- /* Test the effect of the user denying the access dialog */
-diff --git i/tests/filechooser.c 

[arch-commits] Commit in libportal/repos/extra-x86_64 (4 files)

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 15:11:14
  Author: heftig
Revision: 372002

archrelease: copy trunk to extra-x86_64

Added:
  
libportal/repos/extra-x86_64/0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch
(from rev 372001, 
libportal/trunk/0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch)
  libportal/repos/extra-x86_64/PKGBUILD
(from rev 372001, libportal/trunk/PKGBUILD)
Deleted:
  
libportal/repos/extra-x86_64/0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch
  libportal/repos/extra-x86_64/PKGBUILD

-+
 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch |   48 +++---
 PKGBUILD|   76 
+-
 2 files changed, 64 insertions(+), 60 deletions(-)

Deleted: 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch
===
--- 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch 
2019-12-20 15:10:55 UTC (rev 372001)
+++ 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch 
2019-12-20 15:11:14 UTC (rev 372002)
@@ -1,24 +0,0 @@
-From 902917eb4f66f69496e977b3c72e0fa178775f89 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Wed, 27 Nov 2019 22:29:48 +
-Subject: [PATCH] filechooser: Don't try to free the method name; it's static
-

- libportal/filechooser.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/libportal/filechooser.c b/libportal/filechooser.c
-index 2b665b8..135c269 100644
 a/libportal/filechooser.c
-+++ b/libportal/filechooser.c
-@@ -78,7 +78,6 @@ file_call_free (FileCall *call)
-   g_object_unref (call->portal);
-   g_object_unref (call->task);
- 
--  g_free (call->method);
-   g_free (call->title);
-   g_free (call->current_name);
-   g_free (call->current_folder);
--- 
-2.24.0
-

Copied: 
libportal/repos/extra-x86_64/0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch
 (from rev 372001, 
libportal/trunk/0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch)
===
--- 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch 
(rev 0)
+++ 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch 
2019-12-20 15:11:14 UTC (rev 372002)
@@ -0,0 +1,24 @@
+From 902917eb4f66f69496e977b3c72e0fa178775f89 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Wed, 27 Nov 2019 22:29:48 +
+Subject: [PATCH] filechooser: Don't try to free the method name; it's static
+
+---
+ libportal/filechooser.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/libportal/filechooser.c b/libportal/filechooser.c
+index 2b665b8..135c269 100644
+--- a/libportal/filechooser.c
 b/libportal/filechooser.c
+@@ -78,7 +78,6 @@ file_call_free (FileCall *call)
+   g_object_unref (call->portal);
+   g_object_unref (call->task);
+ 
+-  g_free (call->method);
+   g_free (call->title);
+   g_free (call->current_name);
+   g_free (call->current_folder);
+-- 
+2.24.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 15:10:55 UTC (rev 372001)
+++ PKGBUILD2019-12-20 15:11:14 UTC (rev 372002)
@@ -1,36 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
- 
-pkgname=libportal
-pkgver=0.1.r24.g7355b1e
-pkgrel=1
-pkgdesc="GIO-style async APIs for most Flatpak portals"
-url="https://github.com/flatpak/libportal;
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2)
-makedepends=(git meson gtk-doc)
-_commit=7355b1e2e98b7c0f8f3d0601ef4d78369b91aad3  # master
-source=("git+https://github.com/flatpak/libportal#commit=$_commit;
-0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch)
-sha256sums=('SKIP'
-'934374cb20a3bb76df2c1982a56a15e1c9808a1dfa46273db6529dd6213bde1f')
-
-pkgver() {
-  cd "$pkgname"
-  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set sw=2 et:

Copied: libportal/repos/extra-x86_64/PKGBUILD (from rev 372001, 
libportal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 15:11:14 UTC (rev 372002)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+ 
+pkgname=libportal
+pkgver=0.3
+pkgrel=1
+pkgdesc="GIO-style async APIs for most Flatpak portals"
+url="https://github.com/flatpak/libportal;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2)
+makedepends=(git meson gtk-doc)
+_commit=7b11b2a42fd4e7681bd38f3986b47108c0a3cc66  # tags/0.3^0
+source=("git+https://github.com/flatpak/libportal#commit=$_commit;
+

[arch-commits] Commit in xdg-desktop-portal-gtk/trunk (PKGBUILD)

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 15:10:55
  Author: heftig
Revision: 372001

1.6.0-1

Modified:
  xdg-desktop-portal-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:43:51 UTC (rev 372000)
+++ PKGBUILD2019-12-20 15:10:55 UTC (rev 372001)
@@ -2,7 +2,7 @@
 # Contributor: Patrick Griffis 
 
 pkgname=xdg-desktop-portal-gtk
-pkgver=1.5.2
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="A GTK+ backend for xdg-desktop-portal"
 url="https://github.com/flatpak/xdg-desktop-portal-gtk;
@@ -12,7 +12,7 @@
 makedepends=(xdg-desktop-portal python git evince)
 optdepends=("evince: Print preview")
 provides=(xdg-desktop-portal-impl)
-_commit=c27096099b43e47b642a4b132eb2c8b0c2a81451  # tags/1.5.2^0
+_commit=3f7d1ca802419f913c0c86f194ef43e69b30b2a2  # tags/1.6.0^0
 
source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:43:32
  Author: arojas
Revision: 371999

Update to 5.14.0

Modified:
  pyqtchart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:40:45 UTC (rev 371998)
+++ PKGBUILD2019-12-20 14:43:32 UTC (rev 371999)
@@ -3,24 +3,26 @@
 
 pkgbase=pyqtchart
 pkgname=(python-pyqtchart)
-pkgver=5.13.1
-pkgrel=2
+pkgver=5.14.0
+pkgrel=1
 pkgdesc="Python 3 bindings for QtCharts"
 arch=(x86_64)
 url="https://www.riverbankcomputing.com/software/pyqtchart/intro;
 license=(GPL3)
 depends=(qt5-charts python-pyqt5)
-makedepends=(sip)
-source=("https://www.riverbankcomputing.com/static/Downloads/PyQtChart/$pkgver/PyQtChart-$pkgver.tar.gz;)
-sha256sums=('49960a1483527857b38c1527f9b6328d30bdcc84521f579c0a561a892f54130e')
+makedepends=(sip5 pyqt-builder)
+source=("https://pypi.python.org/packages/source/P/PyQtChart/PyQtChart-$pkgver.tar.gz;)
+sha256sums=('f9004861441becab7a4a48e834da14c3976e4c03e5513c93e005d5df36085046')
 
 build() {
   cd "$srcdir"/PyQtChart-$pkgver
-  python configure.py
+  sip-build \
+--no-make
+  cd build
   make
 }
 
 package_python-pyqtchart(){
-  cd PyQtChart-$pkgver
+  cd PyQtChart-$pkgver/build
   make INSTALL_ROOT="$pkgdir" install
 }


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:35:38
  Author: arojas
Revision: 371995

Update to 5.14.0

Modified:
  pyqt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:34:51 UTC (rev 371994)
+++ PKGBUILD2019-12-20 14:35:38 UTC (rev 371995)
@@ -7,8 +7,8 @@
 
 pkgbase=pyqt5
 pkgname=('python-pyqt5' 'python2-pyqt5')
-pkgver=5.13.2
-pkgrel=9
+pkgver=5.14.0
+pkgrel=1
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro;
 license=('GPL')
@@ -15,16 +15,11 @@
 makedepends=('sip5' 'pyqt-builder' 'python2-sip-pyqt5' 'sip' 'python-opengl' 
'python2-opengl' 'python2-enum34' 'python-pip'
  'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-multimedia' 
'qt5-tools' 'qt5-serialport' 'qt5-svg'
  'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 'qt5-networkauth' 
'qt5-xmlpatterns' 'qt5-remoteobjects')
-source=("https://www.riverbankcomputing.com/static/Downloads/PyQt5/$pkgver/PyQt5-$pkgver.tar.gz;
- pyqt5-no-write-check.patch)
-sha256sums=('adc17c077bf233987b8e43ada87d1e0deca9bd71a13e5fd5fc377482ed69c827'
-'253aa14e27be010ffb2ae21cbeedfecaa608f00ae25539deb1364690e8a8739d')
+source=("https://pypi.python.org/packages/source/P/PyQt5/PyQt5-$pkgver.tar.gz;)
+sha256sums=('0145a6b7de15756366decb736c349a0cb510d706c83fda5b8cd9e0557bc1da72')
 
 prepare() {
   cp -a PyQt5-$pkgver{,-py2}
-
-  cd PyQt5-$pkgver
-  patch -p1 -i ../pyqt5-no-write-check.patch # Don't check if target dirs are 
writtable 
https://www.riverbankcomputing.com/pipermail/pyqt/2019-December/042390.html
 }
 
 build() {
@@ -33,7 +28,6 @@
 --confirm-license \
 --no-make
   cd build
-  sed -e 's|dbus|pyqt5|' -i dbus/dbus.exp # 
https://www.riverbankcomputing.com/pipermail/pyqt/2019-December/042391.html
   make
 
   cd "$srcdir"/PyQt5-$pkgver-py2


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:43:51
  Author: arojas
Revision: 372000

archrelease: copy trunk to testing-x86_64

Added:
  pyqtchart/repos/testing-x86_64/
  pyqtchart/repos/testing-x86_64/PKGBUILD
(from rev 371999, pyqtchart/trunk/PKGBUILD)

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

Copied: pyqtchart/repos/testing-x86_64/PKGBUILD (from rev 371999, 
pyqtchart/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-20 14:43:51 UTC (rev 372000)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=pyqtchart
+pkgname=(python-pyqtchart)
+pkgver=5.14.0
+pkgrel=1
+pkgdesc="Python 3 bindings for QtCharts"
+arch=(x86_64)
+url="https://www.riverbankcomputing.com/software/pyqtchart/intro;
+license=(GPL3)
+depends=(qt5-charts python-pyqt5)
+makedepends=(sip5 pyqt-builder)
+source=("https://pypi.python.org/packages/source/P/PyQtChart/PyQtChart-$pkgver.tar.gz;)
+sha256sums=('f9004861441becab7a4a48e834da14c3976e4c03e5513c93e005d5df36085046')
+
+build() {
+  cd "$srcdir"/PyQtChart-$pkgver
+  sip-build \
+--no-make
+  cd build
+  make
+}
+
+package_python-pyqtchart(){
+  cd PyQtChart-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:36:02
  Author: arojas
Revision: 371996

archrelease: copy trunk to testing-x86_64

Added:
  pyqt5/repos/testing-x86_64/PKGBUILD
(from rev 371995, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/testing-x86_64/pyqt5-no-write-check.patch
(from rev 371995, pyqt5/trunk/pyqt5-no-write-check.patch)
Deleted:
  pyqt5/repos/testing-x86_64/PKGBUILD
  pyqt5/repos/testing-x86_64/pyqt5-no-write-check.patch

+
 PKGBUILD   |  226 ---
 pyqt5-no-write-check.patch |   26 ++--
 2 files changed, 123 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 14:35:38 UTC (rev 371995)
+++ PKGBUILD2019-12-20 14:36:02 UTC (rev 371996)
@@ -1,116 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('python-pyqt5' 'python2-pyqt5')
-pkgver=5.13.2
-pkgrel=9
-arch=('x86_64')
-url="https://riverbankcomputing.com/software/pyqt/intro;
-license=('GPL')
-makedepends=('sip5' 'pyqt-builder' 'python2-sip-pyqt5' 'sip' 'python-opengl' 
'python2-opengl' 'python2-enum34' 'python-pip'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-multimedia' 
'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras' 'qt5-networkauth' 
'qt5-xmlpatterns' 'qt5-remoteobjects')
-source=("https://www.riverbankcomputing.com/static/Downloads/PyQt5/$pkgver/PyQt5-$pkgver.tar.gz;
- pyqt5-no-write-check.patch)
-sha256sums=('adc17c077bf233987b8e43ada87d1e0deca9bd71a13e5fd5fc377482ed69c827'
-'253aa14e27be010ffb2ae21cbeedfecaa608f00ae25539deb1364690e8a8739d')
-
-prepare() {
-  cp -a PyQt5-$pkgver{,-py2}
-
-  cd PyQt5-$pkgver
-  patch -p1 -i ../pyqt5-no-write-check.patch # Don't check if target dirs are 
writtable 
https://www.riverbankcomputing.com/pipermail/pyqt/2019-December/042390.html
-}
-
-build() {
-  cd "$srcdir"/PyQt5-$pkgver
-  sip-build \
---confirm-license \
---no-make
-  cd build
-  sed -e 's|dbus|pyqt5|' -i dbus/dbus.exp # 
https://www.riverbankcomputing.com/pipermail/pyqt/2019-December/042391.html
-  make
-
-  cd "$srcdir"/PyQt5-$pkgver-py2
-  python2 configure.py \
---confirm-license \
---sip='/usr/bin/sip'
-  make
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python bindings for the Qt5 toolkit"
-  depends=('python' 'qt5-base')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort'
-  'qt5-websockets: QtWebSockets'
-  'qt5-connectivity: QtNfc, QtBluetooth'
-  'qt5-x11extras: QtX11Extras'
-  'qt5-networkauth: QtNetworkAuth'
-  'qt5-remoteobjects: QtRemoteObjects')
-
-  cd PyQt5-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install -j1
-
-  # Remove unused py2 version of uic modules:
-  rm -r "$pkgdir"/usr/lib/python*/site-packages/PyQt5/uic/port_v2
-
-  # compile Python bytecode
-  python -m compileall -d / "$pkgdir"/usr/lib
-  python -O -m compileall -d / "$pkgdir"/usr/lib
-
-  # install sip module
-  sip-module --sdist PyQt5.sip
-  pip install PyQt5_sip-*.tar.gz --root "$pkgdir"
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2 bindings for the Qt5 toolkit"
-  depends=('python2-sip-pyqt5' 'qt5-base' 'python2-enum34')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort'
-  'qt5-websockets: QtWebSockets'
-  'qt5-connectivity: QtNfc, QtBluetooth'
-  'qt5-x11extras: QtX11Extras'
-  'qt5-networkauth: QtNetworkAuth'
-  'qt5-remoteobjects: QtRemoteObjects')
-  conflicts=('pyqt5-common')
-
-  cd PyQt5-$pkgver-py2
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install -j1
-
-  # Remove unused py3 version of uic modules:
-  rm -r "$pkgdir"/usr/lib/python*/site-packages/PyQt5/uic/port_v3
-
-  # compile Python bytecode
-  python2 

[arch-commits] Commit in xdg-desktop-portal/trunk (PKGBUILD hack.diff)

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 14:34:51
  Author: heftig
Revision: 371994

1.6.0-1

Modified:
  xdg-desktop-portal/trunk/PKGBUILD
  xdg-desktop-portal/trunk/hack.diff

---+
 PKGBUILD  |6 +++---
 hack.diff |   22 +++---
 2 files changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:32:09 UTC (rev 371993)
+++ PKGBUILD2019-12-20 14:34:51 UTC (rev 371994)
@@ -2,7 +2,7 @@
 # Contributor: Patrick Griffis 
 
 pkgname=xdg-desktop-portal
-pkgver=1.5.4
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="Desktop integration portals for sandboxed apps"
 url="https://github.com/flatpak/xdg-desktop-portal;
@@ -11,11 +11,11 @@
 depends=(glib2 pipewire fuse2 geoclue2)
 makedepends=(python xmlto docbook-xsl git flatpak libportal)
 checkdepends=(epiphany gedit gvfs)
-_commit=5f14b2703a994041dda543ed2d57c47b0ff251b1  # tags/1.5.4^0
+_commit=28b93e213a83c78bb6d65d5a1a65c57d62957827  # tags/1.6.0^0
 source=("git+https://github.com/flatpak/xdg-desktop-portal#commit=$_commit;
 hack.diff)
 sha256sums=('SKIP'
-'9b5097ce035fff9f9bebb6963e509b6597b3d5f0cceda26321cf228d8d59cf5d')
+'949ce781ed3393e05f3bffdd0048aca976e0a35d9babeea9ec9d86ab8a00e871')
 
 pkgver() {
   cd $pkgname

Modified: hack.diff
===
--- hack.diff   2019-12-20 14:32:09 UTC (rev 371993)
+++ hack.diff   2019-12-20 14:34:51 UTC (rev 371994)
@@ -1,5 +1,5 @@
 diff --git i/tests/camera.c w/tests/camera.c
-index 4ef0176..197e77d 100644
+index 4fefbe4..7957d72 100644
 --- i/tests/camera.c
 +++ w/tests/camera.c
 @@ -239,29 +239,31 @@ test_camera_lockdown (void)
@@ -24,7 +24,7 @@
portal = xdp_portal_new ();
  
got_info = 0;
-   xdp_portal_access_camera (portal, NULL, NULL, camera_cb, keyfile);
+   xdp_portal_access_camera (portal, NULL, 0, NULL, camera_cb, keyfile);
  
while (!got_info)
  g_main_context_iteration (NULL, TRUE);
@@ -35,7 +35,7 @@
  
  /* Test the effect of the user denying the access dialog */
 diff --git i/tests/filechooser.c w/tests/filechooser.c
-index 0cb4f41..a60f736 100644
+index a5f9b2c..799f24b 100644
 --- i/tests/filechooser.c
 +++ w/tests/filechooser.c
 @@ -871,29 +871,31 @@ test_save_file_lockdown (void)
@@ -60,7 +60,7 @@
portal = xdp_portal_new ();
  
got_info = 0;
-   xdp_portal_save_file (portal, NULL, "test", FALSE, "test_file.txt", NULL, 
NULL, NULL, NULL, NULL, NULL, save_file_cb, keyfile);
+   xdp_portal_save_file (portal, NULL, "test", "test_file.txt", NULL, NULL, 
NULL, NULL, NULL, 0, NULL, save_file_cb, keyfile);
  
while (!got_info)
  g_main_context_iteration (NULL, TRUE);
@@ -71,7 +71,7 @@
  
  void
 diff --git i/tests/location.c w/tests/location.c
-index 207ed3f..ced3406 100644
+index 0395f77..89cdef6 100644
 --- i/tests/location.c
 +++ w/tests/location.c
 @@ -30,10 +30,8 @@ test_location_basic (void)
@@ -97,10 +97,10 @@
portal = xdp_portal_new ();
  
 diff --git i/tests/openuri.c w/tests/openuri.c
-index cacf1f8..c252696 100644
+index ddff074..ba02bfd 100644
 --- i/tests/openuri.c
 +++ w/tests/openuri.c
-@@ -328,28 +328,30 @@ test_open_uri_lockdown (void)
+@@ -366,28 +366,30 @@ test_open_uri_lockdown (void)
g_autofree char *path = NULL;
  
xdp_impl_lockdown_set_disable_application_handlers (lockdown, TRUE);
@@ -121,7 +121,7 @@
portal = xdp_portal_new ();
  
got_info = 0;
-   xdp_portal_open_uri (portal, NULL, "http://www.flatpak.org;, FALSE, NULL, 
open_uri_cb, keyfile);
+   xdp_portal_open_uri (portal, NULL, "http://www.flatpak.org;, 0, NULL, 
open_uri_cb, keyfile);
  
while (!got_info)
  g_main_context_iteration (NULL, TRUE);
@@ -132,7 +132,7 @@
  
  static void
 diff --git i/tests/print.c w/tests/print.c
-index 3effde8..4a77359 100644
+index 1b9be72..ddcac42 100644
 --- i/tests/print.c
 +++ w/tests/print.c
 @@ -187,28 +187,30 @@ test_prepare_print_lockdown (void)
@@ -156,7 +156,7 @@
portal = xdp_portal_new ();
  
got_info = 0;
-   xdp_portal_prepare_print (portal, NULL, "test", FALSE, NULL, NULL, NULL, 
prepare_cb, keyfile);
+   xdp_portal_prepare_print (portal, NULL, "test", NULL, NULL, 0, NULL, 
prepare_cb, keyfile);
  
while (!got_info)
  g_main_context_iteration (NULL, TRUE);
@@ -187,7 +187,7 @@
portal = xdp_portal_new ();
  
got_info = 0;
-   xdp_portal_print_file (portal, NULL, "test", FALSE, 0, path, NULL, 
print_cb, keyfile);
+   xdp_portal_print_file (portal, NULL, "test", 0, path, 0, NULL, print_cb, 
keyfile);
  
while (!got_info)
  g_main_context_iteration (NULL, TRUE);


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:40:45
  Author: arojas
Revision: 371998

archrelease: copy trunk to testing-x86_64

Added:
  pyqtwebengine/repos/testing-x86_64/
  pyqtwebengine/repos/testing-x86_64/PKGBUILD
(from rev 371997, pyqtwebengine/trunk/PKGBUILD)

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

Copied: pyqtwebengine/repos/testing-x86_64/PKGBUILD (from rev 371997, 
pyqtwebengine/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-20 14:40:45 UTC (rev 371998)
@@ -0,0 +1,47 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=pyqtwebengine
+pkgname=(python-pyqtwebengine python2-pyqtwebengine)
+pkgver=5.14.0
+pkgrel=1
+arch=(x86_64)
+url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro;
+license=(GPL)
+makedepends=(sip sip5 pyqt-builder qt5-webengine python-pyqt5 python2-pyqt5)
+source=("https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz;)
+sha256sums=('e11595051f8bfbfa49175d899b2c8c2eea3a3deac4141edf4db68c3555221c92')
+
+prepare() {
+  cp -a PyQtWebEngine-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyQtWebEngine-$pkgver
+  sip-build \
+--no-make
+  cd build
+  make
+
+  cd "$srcdir"/PyQtWebEngine-$pkgver-py2
+  python2 configure.py \
+--sip='/usr/bin/sip'
+  make
+}
+
+package_python-pyqtwebengine() {
+  pkgdesc="Python 3 bindings for QtWebEngine"
+  depends=(python-pyqt5 qt5-webengine)
+
+  cd PyQtWebEngine-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install -j1
+}
+
+package_python2-pyqtwebengine() {
+  pkgdesc="Python 2 bindings for QtWebEngine"
+  depends=(python2-pyqt5 qt5-webengine)
+  conflicts=(pyqtwebengine-common)
+
+  cd PyQtWebEngine-$pkgver-py2
+  make INSTALL_ROOT="$pkgdir" install -j1
+}


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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:40:30
  Author: arojas
Revision: 371997

Update to 5.14

Modified:
  pyqtwebengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:36:02 UTC (rev 371996)
+++ PKGBUILD2019-12-20 14:40:30 UTC (rev 371997)
@@ -3,14 +3,14 @@
 
 pkgbase=pyqtwebengine
 pkgname=(python-pyqtwebengine python2-pyqtwebengine)
-pkgver=5.13.2
-pkgrel=4
+pkgver=5.14.0
+pkgrel=1
 arch=(x86_64)
 url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro;
 license=(GPL)
 makedepends=(sip sip5 pyqt-builder qt5-webengine python-pyqt5 python2-pyqt5)
-source=("https://www.riverbankcomputing.com/static/Downloads/PyQtWebEngine/$pkgver/PyQtWebEngine-$pkgver.tar.gz;)
-sha256sums=('4264911b5847c75721d8c9c30af92e58a216bd25ceef37f7abf921005c1d45a9')
+source=("https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz;)
+sha256sums=('e11595051f8bfbfa49175d899b2c8c2eea3a3deac4141edf4db68c3555221c92')
 
 prepare() {
   cp -a PyQtWebEngine-$pkgver{,-py2}


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

2019-12-20 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 14:32:09
  Author: heftig
Revision: 371993

0.3-1

Modified:
  libportal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:15:06 UTC (rev 371992)
+++ PKGBUILD2019-12-20 14:32:09 UTC (rev 371993)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
  
 pkgname=libportal
-pkgver=0.1.r24.g7355b1e
+pkgver=0.3
 pkgrel=1
 pkgdesc="GIO-style async APIs for most Flatpak portals"
 url="https://github.com/flatpak/libportal;
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(glib2)
 makedepends=(git meson gtk-doc)
-_commit=7355b1e2e98b7c0f8f3d0601ef4d78369b91aad3  # master
+_commit=7b11b2a42fd4e7681bd38f3986b47108c0a3cc66  # tags/0.3^0
 source=("git+https://github.com/flatpak/libportal#commit=$_commit;
 0001-filechooser-Don-t-try-to-free-the-method-name-it-s-s.patch)
 sha256sums=('SKIP'
@@ -16,10 +16,14 @@
 '934374cb20a3bb76df2c1982a56a15e1c9808a1dfa46273db6529dd6213bde1f')
 
 pkgver() {
-  cd "$pkgname"
-  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+  cd $pkgname
+  git describe --tags | sed -r 's/[^-]+-g[^-]+$/r&/;s/-/+/g'
 }
 
+prepare() {
+  cd $pkgname
+}
+
 build() {
   arch-meson $pkgname build
   ninja -C build


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

2019-12-20 Thread Andrew Crerar via arch-commits
Date: Friday, December 20, 2019 @ 14:28:06
  Author: andrewsc
Revision: 538497

upgpkg: firefox-developer-edition-i18n 72.0b9-1

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

--+
 PKGBUILD |  188 ++---
 1 file changed, 94 insertions(+), 94 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 14:05:23 UTC (rev 538496)
+++ PKGBUILD2019-12-20 14:28:06 UTC (rev 538497)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=72.0b8
+pkgver=72.0b9
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -129,96 +129,96 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('28594f4f8b01e7f52d6c96c882418feaa4e53c694b5dcf0f481eeacf813e1d68f6222ed9ef751a654c7004a1629d441d6e2ad111ba3cbae498ea11b6191b4670'
-
'adf6e9cac5f4f0aa4f956891a6a37f260518cdf16a06997a84bb7e08314e629ada38672feb881d763403148d9fd952f1ba49a464dee998f53e6af8872deb1e05'
-
'aa0f8dfff7c03c9ec02dfc6456bc3203db2a26840078a91e4757b9046acafe5311fdcac9208254aa0f0007003d36e01e62ea1a954992e13b09efb4545de6fa93'
-
'2491641d03946c767a7d734652c9d704898e0c23b6cf5771ddd580d9dec5a87b2d0989fdefe2fa1f1cc7658611419c3285e9ba17ca852449606fef3255b4c96a'
-
'3a9d4349b07980a012300538e850c820b6e167ff5a94aa59f48458e744adbca1239cdeb1765eabf3bb287982cae2082c2700b05887640c32b83b4b5702b72a13'
-
'6e89d0c7d138e2fc28b577fb047b5b70b7ba0e515b042aec0b7780200082f72350510b114c13c836b437e6d8e7b2bc92f553a4cfadec02cc2e6e8cf73143597e'
-
'7a9e759d68dea6a50c6ed271cea0ebdcfbd7aa07f7c4ce01fddc0119e38632f53d7287702d1a77c0df07e2cd80d7cc2d43563b2bc06c23dc4bd8f883696660fd'
-
'efc83a263bb1d784e640cf8664cbff8b7b1853a93f5aadbf544d9a70a50de3c31ecbd60021afb2bb3f042f9f934d2877906f08ad10d891321b73c1311f03a784'
-
'209c5162aaf07fd2fa69223b28c681a8a8bbbeda4a9f044c55ec3d3565283eb42012e256e2e8e4994de36a82434109d7b91441427bd56d6f5424c4fc76d5753e'
-
'9ec6f44a05b0e911fe85e20f0f2f0924a4808b5e62a309e135202e950fb9138332145021f081b153d5cec1b5ecad2f6fc98845f280a3c1b059c3b9b418162840'
-
'bec919a2a9643a46c17506a7b61cd8cde9127ec86fd061d119517a78ae5055eac23a4ff2dc8280ec39b17301096eff1ca833aa7cdb6833c0ad0ad620730211cb'
-
'4c6948759b316b11cf6350305ff4a228c43acb30c7d45ccf6874d46307c52cb160bfacfdb5b5feae2159980b90de924aedf7b49bb987d3c017add540d6bdeecb'
-
'3774359678b165d4dfb460cc422e73206d7d2a4328a5b7b2bca1184b1e7b4aeed9bf256c5ec60b2de07f92bf97f1e3440f66191358feded8188302f090f6c37a'
-
'7e0013e113731391dc035cac658858ef45e1aaf33ae06dca028249dc171e0026a8860c10e0bc89e6b5e68d6d9c5909273a01a7334d03b8c1b41e3de52f83771f'
-
'8077d75ddd017ac944665d7b4de7bb08016e0d83e233a125ee01b1a6c621879635228d37e3cc41a05f19f1d06b886bf6c6da9088c936169fbd1d2a4479cdc5a9'
-
'8faf30156c09401d4b1b6e98e806c78d3d6e55d839aa516d4fe10af84ecead88922a7225c280f3c1eac18eaa6e7ecd81647d06eaae9600cfa4b61758dbd9acf5'
-
'6bdef98763a8b69bbcff74263b12bc511d17c892e8ab75e67a456bcf02c68bcf910d7aea73eab3d9b7cf509f210c326701f1d5c224b3b0451fb3733fe70f40bd'
-
'd947bc669bc43ee69f430135638802676c9200512f482a7f9568b6c038d60e33d909baee68df926c3f568a961fb59053af28a03365a4ccf9ea505ea1ed35d808'
-
'2de4bf7e26e4dd7ff0fdda58c2ec6b5fd39f6761e400d668142d93c1fdcffcbb2bcf0d825a67ef11ac665a982b3988d0812da4094106df6d812a6b75b670958b'
-
'692528a4e641f1201a20c3129040b2bb5ed50a6754d47503c9de7042fe1c830a9b7d7d3690f9b3fb0d841373e2b20ce083945a8074b75da72fc6c09ae9570ecd'
-
'ac397e3701bd0f3a0205fba15cbef736000851cdcd4cda3a077e548f1015ed0ab1284622dffa65f764abcec360de2b44c3cc82183786b545e37e3ef45294f968'
-
'9834ca21ea95a48ec35316d2fca0a5d59e3a7dabad88dbfdbd9e87090f2887dbc0b5f1c0b793a65bdba65b3452cf540a7a31cf964dfcad26369357fbff70c347'
-
'282b7e5678b8ea9f082abd6e561bf50adc99771cff8178d0f40a34e036ad84f16c15e7a7092850107fe4c2f46db5c7155df3cbc72725c9f55f5a05116ce08605'
-
'ea3f47160190600c12207bb5103931ee9f28de4383528e1ad194b64d73cf45e21aeae74ed36df05a94bbe265bf71c4eb6f4ec2f546b166cd42e13c94f791f760'
-
'7566b6a381cbdd5609b3289fca831e2a30d520ddc9e6684851439818fa3f4a5806d43a5108d148047fe1e5c0f195e89b3cf2abbf5b18d124477f2bfe740775f0'
-
'deae444270f94efc0866c10c1a0cbf55c0a211f7b79ef783fec9183700b4b90bf13445413996cb1d4ccc0febe03ae60efbd9f68afa5235d7877a00950fac3854'
-
'12fff0eafb494406d44d09b25b0b6e3cfb9f158e6a612f97363c7fa875a59f5124a34786626345b8519380137957991a4f17a43abecaca0eb621ec89b4179786'
-
'fd1da7a04cc1334691060c2b9ac97c6d913b4c178d3ee0c1c30b59ccd6b7b570c58b8a01a47d95ab2446d1e9dacdd4956fea43160e63351df21d373db3b60889'
-

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

2019-12-20 Thread Andrew Crerar via arch-commits
Date: Friday, December 20, 2019 @ 14:28:31
  Author: andrewsc
Revision: 538498

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 14:28:06 UTC (rev 538497)
+++ PKGBUILD2019-12-20 14:28:31 UTC (rev 538498)
@@ -1,224 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=72.0b8
-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"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn "Bengali"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-CA  "English (Canada)"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  '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"'
-  'mk "Macedonian"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'oc "Occitan"'
-  '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=('28594f4f8b01e7f52d6c96c882418feaa4e53c694b5dcf0f481eeacf813e1d68f6222ed9ef751a654c7004a1629d441d6e2ad111ba3cbae498ea11b6191b4670'
-
'adf6e9cac5f4f0aa4f956891a6a37f260518cdf16a06997a84bb7e08314e629ada38672feb881d763403148d9fd952f1ba49a464dee998f53e6af8872deb1e05'
-
'aa0f8dfff7c03c9ec02dfc6456bc3203db2a26840078a91e4757b9046acafe5311fdcac9208254aa0f0007003d36e01e62ea1a954992e13b09efb4545de6fa93'
-
'2491641d03946c767a7d734652c9d704898e0c23b6cf5771ddd580d9dec5a87b2d0989fdefe2fa1f1cc7658611419c3285e9ba17ca852449606fef3255b4c96a'
-
'3a9d4349b07980a012300538e850c820b6e167ff5a94aa59f48458e744adbca1239cdeb1765eabf3bb287982cae2082c2700b05887640c32b83b4b5702b72a13'
-
'6e89d0c7d138e2fc28b577fb047b5b70b7ba0e515b042aec0b7780200082f72350510b114c13c836b437e6d8e7b2bc92f553a4cfadec02cc2e6e8cf73143597e'
-
'7a9e759d68dea6a50c6ed271cea0ebdcfbd7aa07f7c4ce01fddc0119e38632f53d7287702d1a77c0df07e2cd80d7cc2d43563b2bc06c23dc4bd8f883696660fd'
-

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

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:03:19
  Author: arojas
Revision: 371986

archrelease: copy trunk to extra-x86_64

Added:
  sip/repos/extra-x86_64/PKGBUILD
(from rev 371985, sip/trunk/PKGBUILD)
Deleted:
  sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 14:02:58 UTC (rev 371985)
+++ PKGBUILD2019-12-20 14:03:19 UTC (rev 371986)
@@ -1,63 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai , Ben 
-
-pkgbase=sip
-pkgname=('sip' 'python-sip' 'python2-sip-pyqt5')
-pkgver=4.19.19
-pkgrel=4
-arch=('x86_64')
-url='https://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-makedepends=('python' 'python2')
-source=("https://www.riverbankcomputing.com/static/Downloads/sip/$pkgver/sip-$pkgver.tar.gz;)
-sha256sums=('5436b61a78f48c7e8078e93a6b59453ad33780f80c644e5f3af39f94be1ede44')
-
-prepare() {
-  mkdir -p build{,-pyqt5-py2}
-}
-
-build() {
-  cd "$srcdir"/build
-  python ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS"
-  make
-
-  cd "$srcdir"/build-pyqt5-py2
-  python2 ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS" 
--sip-module PyQt5.sip --no-tools
-  make
-}
-
-package_sip() {
-  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
-  depends=('glibc')
-
-  cd build
-  make DESTDIR="$pkgdir" install -C sipgen
-# move sip.h to /usr/include
-  mv "$pkgdir"/usr/include/{python*/sip.h,}
-  rm -r "$pkgdir"/usr/include/python*
-
-  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-sip() {
-  pkgdesc="Python SIP4 bindings for C and C++ libraries"
-  depends=('python')
-
-  cd build
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir"/usr/{bin,include} # conflicts with sip
-
-  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sip-pyqt5() {
-  pkgdesc="Python 2.x SIP bindings for C and C++ libraries (PyQt5 version)"
-  depends=('python2')
-
-  cd build-pyqt5-py2
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: sip/repos/extra-x86_64/PKGBUILD (from rev 371985, sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 14:03:19 UTC (rev 371986)
@@ -0,0 +1,63 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai , Ben 
+
+pkgbase=sip
+pkgname=('sip' 'python-sip' 'python2-sip-pyqt5')
+pkgver=4.19.20
+pkgrel=1
+arch=('x86_64')
+url='https://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+makedepends=('python' 'python2')
+source=("https://www.riverbankcomputing.com/static/Downloads/sip/$pkgver/sip-$pkgver.tar.gz;)
+sha256sums=('04cc2f87ac97e8718d8e1ef036e3ec26050ab44c21f9277618d5b67432fcbfd6')
+
+prepare() {
+  mkdir -p build{,-pyqt5-py2}
+}
+
+build() {
+  cd "$srcdir"/build
+  python ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS"
+  make
+
+  cd "$srcdir"/build-pyqt5-py2
+  python2 ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS" 
--sip-module PyQt5.sip --no-tools
+  make
+}
+
+package_sip() {
+  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
+  depends=('glibc')
+
+  cd build
+  make DESTDIR="$pkgdir" install -C sipgen
+# move sip.h to /usr/include
+  mv "$pkgdir"/usr/include/{python*/sip.h,}
+  rm -r "$pkgdir"/usr/include/python*
+
+  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-sip() {
+  pkgdesc="Python SIP4 bindings for C and C++ libraries"
+  depends=('python')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir"/usr/{bin,include} # conflicts with sip
+
+  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sip-pyqt5() {
+  pkgdesc="Python 2.x SIP bindings for C and C++ libraries (PyQt5 version)"
+  depends=('python2')
+
+  cd build-pyqt5-py2
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../sip-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in pyqt-builder/repos/extra-any (PKGBUILD PKGBUILD)

2019-12-20 Thread Antonio Rojas via arch-commits
Date: Friday, December 20, 2019 @ 14:15:06
  Author: arojas
Revision: 371992

archrelease: copy trunk to extra-any

Added:
  pyqt-builder/repos/extra-any/PKGBUILD
(from rev 371991, pyqt-builder/trunk/PKGBUILD)
Deleted:
  pyqt-builder/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 14:14:43 UTC (rev 371991)
+++ PKGBUILD2019-12-20 14:15:06 UTC (rev 371992)
@@ -1,23 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=pyqt-builder
-pkgver=1.0.1
-pkgrel=2
-pkgdesc="The PEP 517 compliant PyQt build system"
-arch=(any)
-url="https://pypi.org/project/PyQt-builder/;
-license=(GPL3)
-depends=(python)
-makedepends=(python-setuptools)
-source=("https://pypi.io/packages/source/P/PyQt-builder/PyQt-builder-$pkgver.tar.gz;)
-sha256sums=('2d19dcd078d2f86b162f9f3adf6a74098f1f0ee03b07774b0c0d603c484f264a')
-
-build() {
-  cd PyQt-builder-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd PyQt-builder-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: pyqt-builder/repos/extra-any/PKGBUILD (from rev 371991, 
pyqt-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 14:15:06 UTC (rev 371992)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=pyqt-builder
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="The PEP 517 compliant PyQt build system"
+arch=(any)
+url="https://pypi.org/project/PyQt-builder/;
+license=(GPL3)
+depends=(python)
+makedepends=(python-setuptools)
+source=("https://pypi.io/packages/source/P/PyQt-builder/PyQt-builder-$pkgver.tar.gz;)
+sha256sums=('e8a809ad75e16a2e1439bd99c42e495d59b744ed5d47039f243cf7036e92457a')
+
+build() {
+  cd PyQt-builder-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd PyQt-builder-$pkgver
+  python setup.py install --root="$pkgdir"
+}


  1   2   >