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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 04:39:44
  Author: felixonmars
Revision: 501440

archrelease: copy trunk to community-testing-x86_64

Added:
  apm/repos/community-testing-x86_64/
  apm/repos/community-testing-x86_64/0001-git-utils-nodejs-12-update.patch
(from rev 501439, apm/trunk/0001-git-utils-nodejs-12-update.patch)
  apm/repos/community-testing-x86_64/PKGBUILD
(from rev 501439, apm/trunk/PKGBUILD)
  apm/repos/community-testing-x86_64/apm-nodejs-12-update.patch
(from rev 501439, apm/trunk/apm-nodejs-12-update.patch)
  apm/repos/community-testing-x86_64/apm.js
(from rev 501439, apm/trunk/apm.js)
  apm/repos/community-testing-x86_64/no-scripts.patch
(from rev 501439, apm/trunk/no-scripts.patch)
  apm/repos/community-testing-x86_64/python2.patch
(from rev 501439, apm/trunk/python2.patch)
  apm/repos/community-testing-x86_64/use-system-npm.patch
(from rev 501439, apm/trunk/use-system-npm.patch)

---+
 0001-git-utils-nodejs-12-update.patch |  273 
 PKGBUILD  |  120 ++
 apm-nodejs-12-update.patch|   28 +++
 apm.js|   13 +
 no-scripts.patch  |   16 +
 python2.patch |   14 +
 use-system-npm.patch  |   10 +
 7 files changed, 474 insertions(+)

Copied: 
apm/repos/community-testing-x86_64/0001-git-utils-nodejs-12-update.patch (from 
rev 501439, apm/trunk/0001-git-utils-nodejs-12-update.patch)
===
--- community-testing-x86_64/0001-git-utils-nodejs-12-update.patch  
(rev 0)
+++ community-testing-x86_64/0001-git-utils-nodejs-12-update.patch  
2019-08-24 04:39:44 UTC (rev 501440)
@@ -0,0 +1,273 @@
+From aea3de850594dba287083b6906312ff86ebf4867 Mon Sep 17 00:00:00 2001
+From: "Xl.W" 
+Date: Thu, 22 Aug 2019 13:40:59 +0800
+Subject: [PATCH] git-utils: nodejs 12 update
+
+---
+ binding.gyp   |  1 +
+ package-lock.json |  2 +-
+ package.json  |  4 ++--
+ src/repository.cc | 56 +++
+ 4 files changed, 32 insertions(+), 31 deletions(-)
+
+diff --git a/binding.gyp b/binding.gyp
+index 71fafac..3bb9c0e 100644
+--- a/binding.gyp
 b/binding.gyp
+@@ -162,6 +162,7 @@
+ 'deps/libgit2/src/message.h',
+ 'deps/libgit2/src/mwindow.c',
+ 'deps/libgit2/src/mwindow.h',
++'deps/libgit2/src/net.c',
+ 'deps/libgit2/src/netops.c',
+ 'deps/libgit2/src/netops.h',
+ 'deps/libgit2/src/notes.c',
+diff --git a/package-lock.json b/package-lock.json
+index c4ff155..9ca5d82 100644
+--- a/package-lock.json
 b/package-lock.json
+@@ -1595,7 +1595,7 @@
+   "integrity": "sha1-uDx1fIAOaOHW78GjoaE/85/23NI=",
+   "dev": true,
+   "requires": {
+-"jasmine-node": 
"jasmine-node@git+https://github.com/kevinsawicki/jasmine-node.git#81af4f953a2b7dfb5bde8331c05362a4b464c5ef;,
++"jasmine-node": 
"git+https://github.com/kevinsawicki/jasmine-node.git#81af4f953a2b7dfb5bde8331c05362a4b464c5ef;,
+ "underscore-plus": "1.x",
+ "walkdir": "0.0.7"
+   },
+diff --git a/package.json b/package.json
+index 93ea078..ec43547 100644
+--- a/package.json
 b/package.json
+@@ -36,8 +36,8 @@
+ "wrench": "~1.4.4"
+   },
+   "dependencies": {
+-"nan": "^2.0.0",
+-"fs-plus": "^3.0.0"
++"fs-plus": "^3.0.0",
++"nan": "^2.14.0"
+   },
+   "scripts": {
+ "prepublish": "standard src spec",
+diff --git a/src/repository.cc b/src/repository.cc
+index 103e2ba..4f9b423 100644
+--- a/src/repository.cc
 b/src/repository.cc
+@@ -64,7 +64,7 @@ void Repository::Init(Local target) {
+   Nan::SetMethod(proto, "add", Repository::Add);
+ 
+   target->Set(Nan::New("Repository").ToLocalChecked(),
+-newTemplate->GetFunction());
++
Nan::GetFunction(newTemplate).ToLocalChecked());
+ }
+ 
+ NODE_MODULE(git, Repository::Init)
+@@ -87,13 +87,13 @@ git_repository* 
Repository::GetAsyncRepository(Nan::NAN_METHOD_ARGS_TYPE args) {
+ 
+ int Repository::GetBlob(Nan::NAN_METHOD_ARGS_TYPE args,
+ git_repository* repo, git_blob*& blob) {
+-  std::string path(*String::Utf8Value(args[0]));
++  std::string path(*Nan::Utf8String(args[0]));
+ 
+   int useIndex = false;
+   if (args.Length() >= 3) {
+ Local optionsArg(Local::Cast(args[2]));
+-if (optionsArg->Get(
+-Nan::New("useIndex").ToLocalChecked())->BooleanValue())
++if (Nan::To(optionsArg->Get(
++Nan::New("useIndex").ToLocalChecked())).FromJust())
+   useIndex = true;
+   }
+ 
+@@ -266,7 +266,7 @@ NAN_METHOD(Repository::IsIgnored) {
+ return info.GetReturnValue().Set(Nan::New(false));
+ 
+   git_repository* repository = GetRepository(info);
+-  std::string path(*String::Utf8Value(info[0]));
++  std::string 

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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 04:39:20
  Author: felixonmars
Revision: 501439

upgpkg: apm 2.4.2-2

rebuild with nodejs 12

Added:
  apm/trunk/0001-git-utils-nodejs-12-update.patch
  apm/trunk/apm-nodejs-12-update.patch
Modified:
  apm/trunk/PKGBUILD

---+
 0001-git-utils-nodejs-12-update.patch |  273 
 PKGBUILD  |   28 ++-
 apm-nodejs-12-update.patch|   28 +++
 3 files changed, 324 insertions(+), 5 deletions(-)

Added: 0001-git-utils-nodejs-12-update.patch
===
--- 0001-git-utils-nodejs-12-update.patch   (rev 0)
+++ 0001-git-utils-nodejs-12-update.patch   2019-08-24 04:39:20 UTC (rev 
501439)
@@ -0,0 +1,273 @@
+From aea3de850594dba287083b6906312ff86ebf4867 Mon Sep 17 00:00:00 2001
+From: "Xl.W" 
+Date: Thu, 22 Aug 2019 13:40:59 +0800
+Subject: [PATCH] git-utils: nodejs 12 update
+
+---
+ binding.gyp   |  1 +
+ package-lock.json |  2 +-
+ package.json  |  4 ++--
+ src/repository.cc | 56 +++
+ 4 files changed, 32 insertions(+), 31 deletions(-)
+
+diff --git a/binding.gyp b/binding.gyp
+index 71fafac..3bb9c0e 100644
+--- a/binding.gyp
 b/binding.gyp
+@@ -162,6 +162,7 @@
+ 'deps/libgit2/src/message.h',
+ 'deps/libgit2/src/mwindow.c',
+ 'deps/libgit2/src/mwindow.h',
++'deps/libgit2/src/net.c',
+ 'deps/libgit2/src/netops.c',
+ 'deps/libgit2/src/netops.h',
+ 'deps/libgit2/src/notes.c',
+diff --git a/package-lock.json b/package-lock.json
+index c4ff155..9ca5d82 100644
+--- a/package-lock.json
 b/package-lock.json
+@@ -1595,7 +1595,7 @@
+   "integrity": "sha1-uDx1fIAOaOHW78GjoaE/85/23NI=",
+   "dev": true,
+   "requires": {
+-"jasmine-node": 
"jasmine-node@git+https://github.com/kevinsawicki/jasmine-node.git#81af4f953a2b7dfb5bde8331c05362a4b464c5ef;,
++"jasmine-node": 
"git+https://github.com/kevinsawicki/jasmine-node.git#81af4f953a2b7dfb5bde8331c05362a4b464c5ef;,
+ "underscore-plus": "1.x",
+ "walkdir": "0.0.7"
+   },
+diff --git a/package.json b/package.json
+index 93ea078..ec43547 100644
+--- a/package.json
 b/package.json
+@@ -36,8 +36,8 @@
+ "wrench": "~1.4.4"
+   },
+   "dependencies": {
+-"nan": "^2.0.0",
+-"fs-plus": "^3.0.0"
++"fs-plus": "^3.0.0",
++"nan": "^2.14.0"
+   },
+   "scripts": {
+ "prepublish": "standard src spec",
+diff --git a/src/repository.cc b/src/repository.cc
+index 103e2ba..4f9b423 100644
+--- a/src/repository.cc
 b/src/repository.cc
+@@ -64,7 +64,7 @@ void Repository::Init(Local target) {
+   Nan::SetMethod(proto, "add", Repository::Add);
+ 
+   target->Set(Nan::New("Repository").ToLocalChecked(),
+-newTemplate->GetFunction());
++
Nan::GetFunction(newTemplate).ToLocalChecked());
+ }
+ 
+ NODE_MODULE(git, Repository::Init)
+@@ -87,13 +87,13 @@ git_repository* 
Repository::GetAsyncRepository(Nan::NAN_METHOD_ARGS_TYPE args) {
+ 
+ int Repository::GetBlob(Nan::NAN_METHOD_ARGS_TYPE args,
+ git_repository* repo, git_blob*& blob) {
+-  std::string path(*String::Utf8Value(args[0]));
++  std::string path(*Nan::Utf8String(args[0]));
+ 
+   int useIndex = false;
+   if (args.Length() >= 3) {
+ Local optionsArg(Local::Cast(args[2]));
+-if (optionsArg->Get(
+-Nan::New("useIndex").ToLocalChecked())->BooleanValue())
++if (Nan::To(optionsArg->Get(
++Nan::New("useIndex").ToLocalChecked())).FromJust())
+   useIndex = true;
+   }
+ 
+@@ -266,7 +266,7 @@ NAN_METHOD(Repository::IsIgnored) {
+ return info.GetReturnValue().Set(Nan::New(false));
+ 
+   git_repository* repository = GetRepository(info);
+-  std::string path(*String::Utf8Value(info[0]));
++  std::string path(*Nan::Utf8String(info[0]));
+   int ignored;
+   if (git_ignore_path_is_ignored(,
+  repository,
+@@ -284,7 +284,7 @@ NAN_METHOD(Repository::IsSubmodule) {
+   git_index* index;
+   git_repository* repository = GetRepository(info);
+   if (git_repository_index(, repository) == GIT_OK) {
+-std::string path(*String::Utf8Value(info[0]));
++std::string path(*Nan::Utf8String(info[0]));
+ const git_index_entry* entry = git_index_get_bypath(index, path.c_str(), 
0);
+ Local isSubmodule = Nan::New(
+ entry != NULL && (entry->mode & S_IFMT) == GIT_FILEMODE_COMMIT);
+@@ -305,7 +305,7 @@ NAN_METHOD(Repository::GetConfigValue) {
+   if (git_repository_config_snapshot(, repository) != GIT_OK)
+ return info.GetReturnValue().Set(Nan::Null());
+ 
+-  std::string configKey(*String::Utf8Value(info[0]));
++  std::string configKey(*Nan::Utf8String(info[0]));
+   const char* configValue;
+   if (git_config_get_string(
+ , config, configKey.c_str()) == GIT_OK) {
+@@ -328,8 

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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:47:44
  Author: felixonmars
Revision: 360625

archrelease: copy trunk to extra-x86_64

Added:
  ibus/repos/extra-x86_64/PKGBUILD
(from rev 360624, ibus/trunk/PKGBUILD)
  ibus/repos/extra-x86_64/ibus.install
(from rev 360624, ibus/trunk/ibus.install)
Deleted:
  ibus/repos/extra-x86_64/PKGBUILD
  ibus/repos/extra-x86_64/ibus.install

--+
 PKGBUILD |  122 -
 ibus.install |   32 +++---
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 03:47:32 UTC (rev 360624)
+++ PKGBUILD2019-08-24 03:47:44 UTC (rev 360625)
@@ -1,61 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=ibus
-pkgname=(ibus libibus)
-pkgver=1.5.20
-pkgrel=2
-pkgdesc="Next Generation Input Bus for Linux"
-arch=('x86_64')
-url="https://github.com/ibus/ibus/wiki;
-license=('LGPL')
-depends=('dconf' 'gtk2' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'python-dbus' 
'python-gobject'
- 'iso-codes' 'python2-gobject2' 'python2-dbus' 'python2-gobject' 
'librsvg')
-makedepends=('gobject-introspection' 'vala' 'intltool' 'gnome-common' 
'gtk-doc' 'qt5-base'
- 'cldr-emoji-annotation' 'unicode-character-database' 
'unicode-emoji')
-options=('!emptydirs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/ibus/ibus/archive/$pkgver.tar.gz;)
-sha512sums=('a8174c5a8266a546310b14fae442cb9f03dd8f284f2c2db626fe4ccddb06810af9dde69939b3074c714442e4ee07596a0fb875478328eba9c0c8017fff2128e9')
-
-prepare() {
-  cd ibus-$pkgver
-  sed -i 's|$(libibus) $(libibus_emoji_dialog)|$(libibus_emoji_dialog) 
$(libibus)|' ui/gtk3/Makefile.am
-}
-
-build() {
-  cd ibus-$pkgver
-  ./autogen.sh \
---prefix=/usr \
---libexecdir=/usr/lib/ibus \
---sysconfdir=/etc \
---enable-dconf \
---enable-wayland \
---enable-gtk-doc \
---disable-memconf \
---enable-ui \
---enable-python-library \
---with-python=python3 \
---with-ucd-dir=/usr/share/unicode/
-  make
-}
-
-package_ibus() {
-  depends+=("libibus=$pkgver")
-  install=ibus.install
-
-  cd ibus-$pkgver
-  make DESTDIR="$pkgdir" install
-  make -C src DESTDIR="$pkgdir" uninstall
-  make -C bindings DESTDIR="$pkgdir" uninstall
-  rm -r "$pkgdir"/usr/lib/python2.7/site-packages/gi # compiled pyc/pyo files 
were not cleaned
-  make DESTDIR="$pkgdir" uninstall-pkgconfigDATA
-}
-
-package_libibus() {
-  pkgdesc="IBus support library"
-  depends=('glib2')
-
-  cd ibus-$pkgver
-  make -C src DESTDIR="$pkgdir" install
-  make -C bindings DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" install-pkgconfigDATA
-}

Copied: ibus/repos/extra-x86_64/PKGBUILD (from rev 360624, ibus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 03:47:44 UTC (rev 360625)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+
+pkgbase=ibus
+pkgname=(ibus libibus)
+pkgver=1.5.21
+pkgrel=1
+pkgdesc="Next Generation Input Bus for Linux"
+arch=('x86_64')
+url="https://github.com/ibus/ibus/wiki;
+license=('LGPL')
+depends=('dconf' 'gtk2' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'python-dbus' 
'python-gobject'
+ 'iso-codes' 'python2-gobject2' 'python2-dbus' 'python2-gobject' 
'librsvg')
+makedepends=('gobject-introspection' 'vala' 'intltool' 'gnome-common' 
'gtk-doc' 'qt5-base'
+ 'cldr-emoji-annotation' 'unicode-character-database' 
'unicode-emoji')
+options=('!emptydirs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/ibus/ibus/archive/$pkgver.tar.gz;)
+sha512sums=('39f5ffe0727af3254e060b82cc99a60126489271863272775e5b1d0e26f31d42d2f9a0cbfe1cb797854f2ae66d5b6c8cdf83bab800af8576b82250ec1e6fb33f')
+
+prepare() {
+  cd ibus-$pkgver
+  sed -i 's|$(libibus) $(libibus_emoji_dialog)|$(libibus_emoji_dialog) 
$(libibus)|' ui/gtk3/Makefile.am
+}
+
+build() {
+  cd ibus-$pkgver
+  ./autogen.sh \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus \
+--sysconfdir=/etc \
+--enable-dconf \
+--enable-wayland \
+--enable-gtk-doc \
+--disable-memconf \
+--enable-ui \
+--enable-python-library \
+--with-python=python3 \
+--with-ucd-dir=/usr/share/unicode/
+  make
+}
+
+package_ibus() {
+  depends+=("libibus=$pkgver")
+  install=ibus.install
+
+  cd ibus-$pkgver
+  make DESTDIR="$pkgdir" install
+  make -C src DESTDIR="$pkgdir" uninstall
+  make -C bindings DESTDIR="$pkgdir" uninstall
+  rm -r "$pkgdir"/usr/lib/python2.7/site-packages/gi # compiled pyc/pyo files 
were not cleaned
+  make DESTDIR="$pkgdir" uninstall-pkgconfigDATA
+}
+
+package_libibus() {
+  pkgdesc="IBus support library"
+  depends=('glib2')
+
+  cd ibus-$pkgver
+  make -C src DESTDIR="$pkgdir" install
+  make -C bindings DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" install-pkgconfigDATA
+}

Deleted: ibus.install

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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:47:14
  Author: felixonmars
Revision: 501438

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 501437, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 03:47:04 UTC (rev 501437)
+++ PKGBUILD2019-08-24 03:47:14 UTC (rev 501438)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=6.2.1
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='https://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('112ec1cc4cebd10ea6e532bd8befe24e92a37255e2b4e7432b8bd3d3b3aa6e4053dbf55c37f80ef442f50b81e52b74c039762fd88b5c99b551f633b5311d1f26')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 501437, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 03:47:14 UTC (rev 501438)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=6.2.2
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='https://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('99fd1e94e9311db772197d4824452c341cc20ddca8520963177ad19607f2621d29c069eb78b7348e30fa66e95e3a26e39a751664b636797c12a2878e8062768f')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+  done
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:47:32
  Author: felixonmars
Revision: 360624

upgpkg: ibus 1.5.21-1

Modified:
  ibus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 03:45:18 UTC (rev 360623)
+++ PKGBUILD2019-08-24 03:47:32 UTC (rev 360624)
@@ -2,8 +2,8 @@
 
 pkgbase=ibus
 pkgname=(ibus libibus)
-pkgver=1.5.20
-pkgrel=2
+pkgver=1.5.21
+pkgrel=1
 pkgdesc="Next Generation Input Bus for Linux"
 arch=('x86_64')
 url="https://github.com/ibus/ibus/wiki;
@@ -14,7 +14,7 @@
  'cldr-emoji-annotation' 'unicode-character-database' 
'unicode-emoji')
 options=('!emptydirs')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/ibus/ibus/archive/$pkgver.tar.gz;)
-sha512sums=('a8174c5a8266a546310b14fae442cb9f03dd8f284f2c2db626fe4ccddb06810af9dde69939b3074c714442e4ee07596a0fb875478328eba9c0c8017fff2128e9')
+sha512sums=('39f5ffe0727af3254e060b82cc99a60126489271863272775e5b1d0e26f31d42d2f9a0cbfe1cb797854f2ae66d5b6c8cdf83bab800af8576b82250ec1e6fb33f')
 
 prepare() {
   cd ibus-$pkgver


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:47:04
  Author: felixonmars
Revision: 501437

upgpkg: eslint 6.2.2-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 03:45:30 UTC (rev 501436)
+++ PKGBUILD2019-08-24 03:47:04 UTC (rev 501437)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=6.2.1
+pkgver=6.2.2
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('112ec1cc4cebd10ea6e532bd8befe24e92a37255e2b4e7432b8bd3d3b3aa6e4053dbf55c37f80ef442f50b81e52b74c039762fd88b5c99b551f633b5311d1f26')
+sha512sums=('99fd1e94e9311db772197d4824452c341cc20ddca8520963177ad19607f2621d29c069eb78b7348e30fa66e95e3a26e39a751664b636797c12a2878e8062768f')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:45:30
  Author: felixonmars
Revision: 501436

archrelease: copy trunk to community-any

Added:
  perl-test-simple/repos/community-any/PKGBUILD
(from rev 501435, perl-test-simple/trunk/PKGBUILD)
Deleted:
  perl-test-simple/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 03:45:20 UTC (rev 501435)
+++ PKGBUILD2019-08-24 03:45:30 UTC (rev 501436)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-test-simple
-pkgver=1.302166
-pkgrel=1
-pkgdesc="Basic utilities for writing tests"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Test-Simple;
-depends=('perl')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
-sha512sums=('7bf1759d265f1c9dec01cf42baf0359926e1bb955ebe93b9c9f3d918932cdc39cabd07e18fa2e899540ae5495d7be5b21877cc74805e911db9a9abaf154cefd5')
-
-build() {
-  cd Test-Simple-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test-Simple-$pkgver
-  make test
-}
-
-package() {
-  cd Test-Simple-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-test-simple/repos/community-any/PKGBUILD (from rev 501435, 
perl-test-simple/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 03:45:30 UTC (rev 501436)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-test-simple
+pkgver=1.302167
+pkgrel=1
+pkgdesc="Basic utilities for writing tests"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Test-Simple;
+depends=('perl')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
+sha512sums=('0c081ec63e26f53e4270af85af19a2322930ec7b5ddc124e0ab61b1626c5bc8767b6fcb865412e40f18ed879336fd0096faedc205f254c258e30035865d11eaf')
+
+build() {
+  cd Test-Simple-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test-Simple-$pkgver
+  make test
+}
+
+package() {
+  cd Test-Simple-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:45:20
  Author: felixonmars
Revision: 501435

upgpkg: perl-test-simple 1.302167-1

Modified:
  perl-test-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 03:44:00 UTC (rev 501434)
+++ PKGBUILD2019-08-24 03:45:20 UTC (rev 501435)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-test-simple
-pkgver=1.302166
+pkgver=1.302167
 pkgrel=1
 pkgdesc="Basic utilities for writing tests"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-$pkgver.tar.gz;)
-sha512sums=('7bf1759d265f1c9dec01cf42baf0359926e1bb955ebe93b9c9f3d918932cdc39cabd07e18fa2e899540ae5495d7be5b21877cc74805e911db9a9abaf154cefd5')
+sha512sums=('0c081ec63e26f53e4270af85af19a2322930ec7b5ddc124e0ab61b1626c5bc8767b6fcb865412e40f18ed879336fd0096faedc205f254c258e30035865d11eaf')
 
 build() {
   cd Test-Simple-$pkgver


[arch-commits] Commit in perl-error/repos/extra-any (PKGBUILD PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:45:18
  Author: felixonmars
Revision: 360623

archrelease: copy trunk to extra-any

Added:
  perl-error/repos/extra-any/PKGBUILD
(from rev 360622, perl-error/trunk/PKGBUILD)
Deleted:
  perl-error/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 03:44:47 UTC (rev 360622)
+++ PKGBUILD2019-08-24 03:45:18 UTC (rev 360623)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-error
-pkgver=0.17027
-pkgrel=2
-pkgdesc="Perl/CPAN Error module - Error/exception handling in an OO-ish way"
-url="http://search.cpan.org/dist/Error/;
-arch=('any')
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-${pkgver}.tar.gz)
-sha512sums=('f7a649254bd2a5228a0baaa7bb286872dcbcf373134446176ff63a5ec0159e7472e0ea930aaff78f7f7961f797ae0a8e5c8725bdc06d2bab177ce469a4ede4b9')
-
-build() {
-  cd Error-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make 
-}
-
-check() {
-  cd Error-${pkgver}
-  make test
-}
-
-package() {
-  cd Error-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: perl-error/repos/extra-any/PKGBUILD (from rev 360622, 
perl-error/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 03:45:18 UTC (rev 360623)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-error
+pkgver=0.17028
+pkgrel=1
+pkgdesc="Perl/CPAN Error module - Error/exception handling in an OO-ish way"
+url="http://search.cpan.org/dist/Error/;
+arch=('any')
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-${pkgver}.tar.gz)
+sha512sums=('bba62e9cac092f53e7606d7673a6cbf4e2684eefd7a44e17859071e6a2dfb45ea471279443b287e1b40dfb89ce351d17d92151d91d6ad59a7737a32e472c58fc')
+
+build() {
+  cd Error-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make 
+}
+
+check() {
+  cd Error-${pkgver}
+  make test
+}
+
+package() {
+  cd Error-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 03:44:47
  Author: felixonmars
Revision: 360622

upgpkg: perl-error 0.17028-1

Modified:
  perl-error/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 21:18:36 UTC (rev 360621)
+++ PKGBUILD2019-08-24 03:44:47 UTC (rev 360622)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-error
-pkgver=0.17027
-pkgrel=2
+pkgver=0.17028
+pkgrel=1
 pkgdesc="Perl/CPAN Error module - Error/exception handling in an OO-ish way"
 url="http://search.cpan.org/dist/Error/;
 arch=('any')
@@ -11,7 +11,7 @@
 checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-${pkgver}.tar.gz)
-sha512sums=('f7a649254bd2a5228a0baaa7bb286872dcbcf373134446176ff63a5ec0159e7472e0ea930aaff78f7f7961f797ae0a8e5c8725bdc06d2bab177ce469a4ede4b9')
+sha512sums=('bba62e9cac092f53e7606d7673a6cbf4e2684eefd7a44e17859071e6a2dfb45ea471279443b287e1b40dfb89ce351d17d92151d91d6ad59a7737a32e472c58fc')
 
 build() {
   cd Error-${pkgver}


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

2019-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, August 23, 2019 @ 23:18:00
  Author: svenstaro
Revision: 501409

upgpkg: gitlab 12.2.1-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 21:11:05 UTC (rev 501408)
+++ PKGBUILD2019-08-23 23:18:00 UTC (rev 501409)
@@ -10,8 +10,8 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab
-pkgver=12.1.6
-pkgrel=2
+pkgver=12.2.1
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce;
@@ -20,7 +20,6 @@
 depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
 makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
 optdepends=('postgresql: database backend'
-'mysql: database backend'
 'python2-docutils: reStructuredText markup language support'
 'smtp-server: mail server in order to receive mail notifications')
 backup=("etc/webapps/${pkgname}/application.rb"
@@ -38,7 +37,7 @@
 gitlab.tmpfiles.d
 gitlab.logrotate)
 install='gitlab.install'
-sha512sums=('00b8e827e704a357489c8ccb09626353b26b5f1a1511a4318b51e9673c34ade62c3afd394b78e32990da7373987771004c0745960cd2a3c526f4f33a31c2c91e'
+sha512sums=('16a79090e744191cdd32b2a63d9ae1eca91eec8ed981c1958c6c6c880295088da5fc924dc87e56c18304017839e7c8aaac3805dd17c99e02a2bdf18acba31274'
 
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
 
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
 
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
@@ -87,8 +86,7 @@
   # We need this one untouched because otherwise assets will fail
   cp config/database.yml.postgresql config/database.yml.postgresql.orig
 
-  echo "Patching username in database.yml.{mysql,postgresql}..."
-  sed -i -e "s|username: git|username: gitlab|" config/database.yml.mysql
+  echo "Patching username in database.yml.postgresql..."
   sed -i -e "s|username: git|username: gitlab|" config/database.yml.postgresql
 
   echo "Patching redis connection in resque.yml"
@@ -196,7 +194,7 @@
   ln -fs "${_etcdir}/secrets.yml" "${pkgdir}${_datadir}/config/secrets.yml"
 
   # Install license and help files
-  mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG.md PROCESS.md VERSION 
config/*.{example,mysql,postgresql} "${pkgdir}/usr/share/doc/${pkgname}"
+  mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG.md PROCESS.md VERSION 
config/*.{example,postgresql} "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # https://gitlab.com/gitlab-org/gitlab-ce/issues/765


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

2019-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, August 23, 2019 @ 23:18:17
  Author: svenstaro
Revision: 501410

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 501409, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 501409, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 501409, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 501409, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 501409, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab-unicorn.service
(from rev 501409, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 501409, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 501409, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 501409, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 501409, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab-unicorn.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  434 ++
 gitlab-backup.service   |   40 ++--
 gitlab-backup.timer |   20 +-
 gitlab-mailroom.service |   44 ++--
 gitlab-sidekiq.service  |   62 +++---
 gitlab-unicorn.service  |   68 +++
 gitlab.install  |   40 ++--
 gitlab.logrotate|   22 +-
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 10 files changed, 372 insertions(+), 374 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 23:18:00 UTC (rev 501409)
+++ PKGBUILD2019-08-23 23:18:17 UTC (rev 501410)
@@ -1,218 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab
-pkgver=12.1.6
-pkgrel=2
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-ce;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
-makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'mysql: database backend'
-'python2-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/${pkgname}/application.rb"
-"etc/webapps/${pkgname}/gitlab.yml"
-"etc/webapps/${pkgname}/resque.yml"
-"etc/webapps/${pkgname}/unicorn.rb"
-"etc/logrotate.d/${pkgname}")
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ce/repository/archive?sha=v${pkgver};
-gitlab-unicorn.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('00b8e827e704a357489c8ccb09626353b26b5f1a1511a4318b51e9673c34ade62c3afd394b78e32990da7373987771004c0745960cd2a3c526f4f33a31c2c91e'
-
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
-
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
-
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
-
'fdb698c86057574aecaa1f1503f3d3319e06d5e872c676d58590b48bb7b3483b837bc991136eb2cc4b2cea68b52d294b8c1b382c9659f14027a923ac3c17d6d5'
-

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

2019-08-23 Thread Jan de Groot via arch-commits
Date: Friday, August 23, 2019 @ 21:18:36
  Author: jgc
Revision: 360621

Fix FTBS with automake 1.16 (FS#62022)

Modified:
  gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:31:58 UTC (rev 360620)
+++ PKGBUILD2019-08-23 21:18:36 UTC (rev 360621)
@@ -30,6 +30,7 @@
 
 prepare() {
   cd gtk
+  git cherry-pick -n 2dbf31c0ea4f17a817b931c731f8de14c278300d
   patch -Np1 -i ../xid-collision-debug.patch
   sed -i '1s/python$/&2/' gtk/gtk-builder-convert
   NOCONFIGURE=1 ./autogen.sh


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

2019-08-23 Thread Andrew Crerar via arch-commits
Date: Friday, August 23, 2019 @ 21:11:05
  Author: andrewsc
Revision: 501408

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 501407, 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-08-23 21:10:42 UTC (rev 501407)
+++ PKGBUILD2019-08-23 21:11:05 UTC (rev 501408)
@@ -1,224 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=69.0b15
-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=('96c212b2056f82c388d5bd04a4792deb45e06d1c798399ae69358bee717478c3e8e6336b05c8bfd52d6e5bf9b324ed0a8494e154b1a00a2bf5ca4bc34c93d93c'
-
'5e29136a3771dec320860bb7feec044f708ec1f35b9f934a87dd773b60e9d1a372f1d90cf8b56cc6753ba6a9d5619939d591f97aa664b55e27ea14004b321748'
-
'1e99b92916719472d0ddeaa994156ef5b8144162e3b1b04fc0bb1de694add6e817d49653494c1bd4334aa08cb8d41e1ef0815a73b5be5bba15fe7b2fef976448'
-
'9058d6920d9f72e01e58ae9db79c0434e6fad6b7a5a3823b45aacf5400baee7f362250bbca24bb41a28226f7928834fde33d72cd85c077bbf543a5f3bc784234'
-
'54289584bf6f611807c82534793121af4d2926154622c1002e40587585bd2118c75181ef1b5a1d97d807b119cf5ecd2737b29d2eb0392c91ad7666d33abcfc1f'
-
'926c20ee4a9f9da6760f7c2d5da8c94f0587de7ca2f6b9910534cda22fa62aa9f57de2c20efcbdabad7ebc2b74800f09ca6624dd468c98851fd69e2b8cfc9176'
-
'5e1e766ae3c918056a83a2f0f118663904ddc634dd0c1e02edbc31f1a3fae5c05aa1f45e5c8c7a8648f00499d376fcd1525efedb75a8ff04e3fc17ac9b49ab66'
-

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

2019-08-23 Thread Andrew Crerar via arch-commits
Date: Friday, August 23, 2019 @ 21:10:42
  Author: andrewsc
Revision: 501407

upgpkg: firefox-developer-edition-i18n 69.0b16-1

firefox-developer-edition-i18n: Updating to 69.0b16

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 21:02:39 UTC (rev 501406)
+++ PKGBUILD2019-08-23 21:10:42 UTC (rev 501407)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=69.0b15
+pkgver=69.0b16
 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=('96c212b2056f82c388d5bd04a4792deb45e06d1c798399ae69358bee717478c3e8e6336b05c8bfd52d6e5bf9b324ed0a8494e154b1a00a2bf5ca4bc34c93d93c'
-
'5e29136a3771dec320860bb7feec044f708ec1f35b9f934a87dd773b60e9d1a372f1d90cf8b56cc6753ba6a9d5619939d591f97aa664b55e27ea14004b321748'
-
'1e99b92916719472d0ddeaa994156ef5b8144162e3b1b04fc0bb1de694add6e817d49653494c1bd4334aa08cb8d41e1ef0815a73b5be5bba15fe7b2fef976448'
-
'9058d6920d9f72e01e58ae9db79c0434e6fad6b7a5a3823b45aacf5400baee7f362250bbca24bb41a28226f7928834fde33d72cd85c077bbf543a5f3bc784234'
-
'54289584bf6f611807c82534793121af4d2926154622c1002e40587585bd2118c75181ef1b5a1d97d807b119cf5ecd2737b29d2eb0392c91ad7666d33abcfc1f'
-
'926c20ee4a9f9da6760f7c2d5da8c94f0587de7ca2f6b9910534cda22fa62aa9f57de2c20efcbdabad7ebc2b74800f09ca6624dd468c98851fd69e2b8cfc9176'
-
'5e1e766ae3c918056a83a2f0f118663904ddc634dd0c1e02edbc31f1a3fae5c05aa1f45e5c8c7a8648f00499d376fcd1525efedb75a8ff04e3fc17ac9b49ab66'
-
'cb657f26d85ea2c48e52d74784d2d47a081bc0a1ca8d044d07169d199d67467004fa422f073436db1c56f0c96882457928b32028cd496e07b71ff9f668348657'
-
'de62a813a49ac51043a97166dafd6e56280c080bc0814be7e43e7e9649ab10ae13402218e6dbf3cdffdf07c3468d4e7e1da70259e1572786d9a95e999dd5380e'
-
'30857bf1141168377a631bcef56c65abb77804d6f046321f91758b11ff23cb364cc2fc195bb34fde3cd10aad883ad22b0771cc8d80b378b9fbacf74524aa8e50'
-
'70f886c851e0d10851330ea21adbb6030cc884fc9a134fcba629daa0fe323faada8773341758772e4ca754a3a3f4e281f52059e04c3682aa14a3f6c81100f93e'
-
'880eebae379f8238db0368e484c7759ec0d7f3bd5686a31b35621b925f3b2e27b2293450844e8571624282f9d866c174a8d8b68e013ae9246b6b0c1e4846ceaa'
-
'8109ca6733668900cc2ce6c902786e29ef841de17453da7c7899e94f6172976976e14beb8c3837bc7e4c59b850dcea11f8ce0562856303ad4457750fee543924'
-
'35dc54a339957f0c9048aa777f9813f6e7dd48c979bf48bd97cb9ff9ae9deb9c427346a2b439cb46e306a18883eb6df11f54b490807e44fcea12e03441325387'
-
'8122177b6d60fe9bc1231f67cf62c4eae9c4202efb6659c9adc74d763b23040d96bbb470fb88a71c2dfaecf26a20a2c3a2e010a4dd97032c9812a3f58a3946b5'
-
'9818a0333f479067bdb497dbb3c71e3389032f5944a0693e868fbeb654a36e4a10380780ba78e864d75d3c0f79bd0c8202a5cacd51d4a7ef9f5263defc457b42'
-
'5d58056b886f02f2c01570cdc85648584354d4ce982148f9708aa769416d1ca9796797a4ec439518e9ad2bcf6ffc3a8376a70e19be638e04ecab4e88096edb6a'
-
'68d82a5f20f1bee8264cd7d5c1993486c892bbb1d775363934a3dfdad62713b7e9901f9e9a51fa00ee2cc538bff37f824641719a2f5bcb64740e743703ac406b'
-
'c9e9200c6423a64b09bce33d34ff09c5619591cdf24cde71af3fd754097d4c4009452d16fb91cf7e138ba8d5838a839c89171bb3ffa40fed32537a9734a40605'
-
'8d83a3dc3e1cf3b937d67338630e2069cac028b5eae6ca0a5966f74d9bb6c19c2d01df822e11943af310c67ef7dfef0f31406276a2cc589ad8478d37bf242bc6'
-
'c4091ad25db8710809f91349ecf131fc99f5b6303d58f82873a11c09a5cc60d212a4aeef12344405b93459468034da1b0763ef686e25e9e6466d38435d215a0c'
-
'e8b6ffa676010edfdc8d68da7213897e72ed4b8e0b573471ee031088815cf3294050e7e8302cfc954e77c36c645758e3e6cd91bab00cd3cb90c9a7b2ae4da9b0'
-
'3e504779e22f924f1c1dd8734f8dd999ed9ee8f651ad50d28b05dd3433373f06ef15192bc2a33afad0aabe7a18004652a73c9c8823efb108decd5850bed98805'
-
'a753fc16d52c8fb80c99c1218fa4ce7366bbf11fa0773c8d3706d5ea7745ea6de135b3ab79eee2ed979ecc4cfd40d53007a1518e219c1cb9d9a88b04d4b5af8f'
-
'7468b52273ccd8fa9dc3c9380aedc218c47a4d86c67ff7536ae5f9aa66aaf986126b7d2d69c54a598a49f6f10a05bf149f1788769b517ce9c702f00cfe1c54b5'
-
'7fc37c0b6c92b4c2657455f75ba76a12d6747332144ba27948383f010be1c5fd74520df3548e3e64e85d5d734450bc3dd90dce04720d53989f95852f4c763e38'
-
'356242508c895bc8ef43e3bf84ecd6c695ae7de7a5c8244f0fb8c5a91fd2627a93e2e352e1b257a7d6ce791b5785856b4a87d6328a3bfc4ddb6a7d9a80b40e15'
-
'd92a79b28efc2dfab12533ee2855b4d534a3990e5c59378c990c185c2837698faa93adfd90fdddbcea387813646529c0ec5bcc3598b3ed3ee8577d3a26891f66'
-

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

2019-08-23 Thread Andrew Crerar via arch-commits
Date: Friday, August 23, 2019 @ 21:02:05
  Author: andrewsc
Revision: 501405

upgpkg: firefox-developer-edition 69.0b16-1

firefox-developer-edition: Updating to 69.0b16

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 20:38:54 UTC (rev 501404)
+++ PKGBUILD2019-08-23 21:02:05 UTC (rev 501405)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=69.0b15
+pkgver=69.0b16
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -24,7 +24,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop firefox-symbolic.svg)
-sha512sums=('53a30532a39e980744ee5ef43a1d14b61d4b1f2782c4dcf19daac88a7518ae61daa2997422d10693d7c799a36e229b66419f6a3ad172cb646d8685436eaffc38'
+sha512sums=('5cec5d932c64bbdd454dcffea78cdde7b333534542174750c90d941dbae63d24ccab0637365d249ef2021f70b4a10d74c14d7184da8cd2c72cf81a971e9c4d29'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'40c931b8abbe5880122dbcc93d457e04e9b4f2bc3e0275e9e3e35dd347fe0658f9446c89e99553203be8a8c9ab6f4ca872a7aedc514920c107b9235c04df91dc'


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

2019-08-23 Thread Andrew Crerar via arch-commits
Date: Friday, August 23, 2019 @ 21:02:39
  Author: andrewsc
Revision: 501406

archrelease: copy trunk to community-x86_64

Added:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 501405, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 501405, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 501405, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 501405, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 501405, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

+
 0001-Use-remoting-name-for-GDK-application-names.patch |  112 +-
 PKGBUILD   |  434 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 firefox-symbolic.svg   |  128 +-
 5 files changed, 720 insertions(+), 720 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-23 
21:02:05 UTC (rev 501405)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-23 
21:02:39 UTC (rev 501406)
@@ -1,56 +0,0 @@
-From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
-Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp | 6 +-
- widget/gtk/nsAppShell.cpp   | 7 +++
- 2 files changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 0b808ef215f06..28911c0ffeaec 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3728,11 +3728,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
-index 0686ff814916b..ae4a4ea55f420 100644
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -171,10 +172,8 @@ nsresult nsAppShell::Init() {
- // option when program uses gdk_set_program_class().
- //
- // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
--nsAutoString brandName;
--mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--if (!brandName.IsEmpty()) {
--  gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+if (gAppData) {
-+  gdk_set_program_class(gAppData->remotingName);
- }
-   }
- 
--- 
-2.21.0
-

Copied: 
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 501405, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  
(rev 0)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-08-23 
21:02:39 UTC (rev 501406)
@@ -0,0 +1,56 @@
+From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
+Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp | 6 +-
+ widget/gtk/nsAppShell.cpp   | 7 +++
+ 2 

[arch-commits] Commit in yubikey-manager-qt/trunk (PKGBUILD)

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:38:49
  Author: eworm
Revision: 501403

upgpkg: yubikey-manager-qt 1.1.3-1

new upstream release

Modified:
  yubikey-manager-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 20:35:31 UTC (rev 501402)
+++ PKGBUILD2019-08-23 20:38:49 UTC (rev 501403)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=yubikey-manager-qt
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 replaces=('yubikey-neo-manager')
 validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

 
source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('088bdafbc9ffe9bd56c8c10f19c155ace9532054427bfd96d4424395e5475d05'
+sha256sums=('6759436b3ce39929d74315fc57b3a9cbb93c66138ab00d8142350f0b62d2f520'
 'SKIP')
 
 build() {


[arch-commits] Commit in yubikey-manager-qt/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:38:54
  Author: eworm
Revision: 501404

archrelease: copy trunk to community-x86_64

Added:
  yubikey-manager-qt/repos/community-x86_64/PKGBUILD
(from rev 501403, yubikey-manager-qt/trunk/PKGBUILD)
Deleted:
  yubikey-manager-qt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 20:38:49 UTC (rev 501403)
+++ PKGBUILD2019-08-23 20:38:54 UTC (rev 501404)
@@ -1,31 +0,0 @@
-# Maintainer: Christian Hesse 
-# Maintainer: Morten Linderud 
-
-pkgname=yubikey-manager-qt
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
-arch=('x86_64')
-url='https://developers.yubico.com/yubikey-manager-qt/'
-license=('BSD')
-depends=('yubikey-manager' 'qt5-quickcontrols' 'qt5-quickcontrols2' 
'qt5-graphicaleffects' 'python-pyotherside')
-replaces=('yubikey-neo-manager')
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

-source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('088bdafbc9ffe9bd56c8c10f19c155ace9532054427bfd96d4424395e5475d05'
-'SKIP')
-
-build() {
-   cd ${pkgname}
-   qmake-qt5
-   make
-}
-
-package() {
-   cd ${pkgname}
-   make INSTALL_ROOT="${pkgdir}/" install
-   install -D -m0644 resources/ykman-gui.desktop 
"${pkgdir}/usr/share/applications/ykman-gui.desktop"
-   install -D -m0644 resources/icons/ykman.png 
"${pkgdir}/usr/share/pixmaps/ykman.png"
-   install -D -m0644 debian/copyright 
"${pkgdir}/usr/share/licenses/${pkgname}/copyright"
-}
-

Copied: yubikey-manager-qt/repos/community-x86_64/PKGBUILD (from rev 501403, 
yubikey-manager-qt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 20:38:54 UTC (rev 501404)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
+
+pkgname=yubikey-manager-qt
+pkgver=1.1.3
+pkgrel=1
+pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
+arch=('x86_64')
+url='https://developers.yubico.com/yubikey-manager-qt/'
+license=('BSD')
+depends=('yubikey-manager' 'qt5-quickcontrols' 'qt5-quickcontrols2' 
'qt5-graphicaleffects' 'python-pyotherside')
+replaces=('yubikey-neo-manager')
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

+source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('6759436b3ce39929d74315fc57b3a9cbb93c66138ab00d8142350f0b62d2f520'
+'SKIP')
+
+build() {
+   cd ${pkgname}
+   qmake-qt5
+   make
+}
+
+package() {
+   cd ${pkgname}
+   make INSTALL_ROOT="${pkgdir}/" install
+   install -D -m0644 resources/ykman-gui.desktop 
"${pkgdir}/usr/share/applications/ykman-gui.desktop"
+   install -D -m0644 resources/icons/ykman.png 
"${pkgdir}/usr/share/pixmaps/ykman.png"
+   install -D -m0644 debian/copyright 
"${pkgdir}/usr/share/licenses/${pkgname}/copyright"
+}
+


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:35:31
  Author: eworm
Revision: 501402

archrelease: copy trunk to community-any

Added:
  yubikey-manager/repos/community-any/PKGBUILD
(from rev 501401, yubikey-manager/trunk/PKGBUILD)
Deleted:
  yubikey-manager/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 20:35:16 UTC (rev 501401)
+++ PKGBUILD2019-08-23 20:35:31 UTC (rev 501402)
@@ -1,45 +0,0 @@
-# Maintainer: Christian Hesse 
-# Maintainer: Morten Linderud 
-# Contributor: Karol Babioch 
-
-pkgname='yubikey-manager'
-pkgver=3.0.0
-pkgrel=4
-pkgdesc='Python library and command line tool for configuring a YubiKey'
-arch=('any')
-url='https://developers.yubico.com/yubikey-manager/'
-license=('BSD')
-depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
- 'python-pyusb' 'python-six' 'python-fido2' 'ccid' 'libu2f-host'
- 'yubikey-personalization')
-makedepends=('python-setuptools')
-checkdepends=('python-mock')
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

-  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
-source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('815746ad93780884a0ceb8cb4569a902f2317511b3a41ceead8f9be0a9b1f220'
-'SKIP')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-
-   python setup.py build
-}
-
-check(){
-   cd "${pkgname}-${pkgver}"
-
-   python setup.py test
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-
-   install -d 
"${pkgdir}"/usr/share/{bash-completion/completions,zsh/site-functions}
-   PYTHONPATH="$PYTHONPATH:${pkgdir}/usr/" _YKMAN_COMPLETE=source 
"${pkgdir}"/usr/bin/ykman > 
"${pkgdir}"/usr/share/bash-completion/completions/ykman || true
-   PYTHONPATH="$PYTHONPATH:${pkgdir}/usr/" _YKMAN_COMPLETE=source_zsh 
"${pkgdir}"/usr/bin/ykman > "${pkgdir}"/usr/share/zsh/site-functions/_ykman || 
true
-}

Copied: yubikey-manager/repos/community-any/PKGBUILD (from rev 501401, 
yubikey-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 20:35:31 UTC (rev 501402)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
+# Contributor: Karol Babioch 
+
+pkgname='yubikey-manager'
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='Python library and command line tool for configuring a YubiKey'
+arch=('any')
+url='https://developers.yubico.com/yubikey-manager/'
+license=('BSD')
+depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
+ 'python-pyusb' 'python-six' 'python-fido2' 'ccid' 'libu2f-host'
+ 'yubikey-personalization')
+makedepends=('python-setuptools')
+checkdepends=('python-mock')
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

+  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
+source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
+sha256sums=('0137acd30cffa60421dde8277b3bb0c5d5e2179d36df0d190de6faf7eec76359'
+'SKIP')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+
+   python setup.py build
+}
+
+check(){
+   cd "${pkgname}-${pkgver}"
+
+   python setup.py test
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+
+   install -d 
"${pkgdir}"/usr/share/{bash-completion/completions,zsh/site-functions}
+   PYTHONPATH="$PYTHONPATH:${pkgdir}/usr/" _YKMAN_COMPLETE=source 
"${pkgdir}"/usr/bin/ykman > 
"${pkgdir}"/usr/share/bash-completion/completions/ykman || true
+   PYTHONPATH="$PYTHONPATH:${pkgdir}/usr/" _YKMAN_COMPLETE=source_zsh 
"${pkgdir}"/usr/bin/ykman > "${pkgdir}"/usr/share/zsh/site-functions/_ykman || 
true
+}


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:35:16
  Author: eworm
Revision: 501401

upgpkg: yubikey-manager 3.1.0-1

new upstream release

Modified:
  yubikey-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 20:30:19 UTC (rev 501400)
+++ PKGBUILD2019-08-23 20:35:16 UTC (rev 501401)
@@ -3,8 +3,8 @@
 # Contributor: Karol Babioch 
 
 pkgname='yubikey-manager'
-pkgver=3.0.0
-pkgrel=4
+pkgver=3.1.0
+pkgrel=1
 pkgdesc='Python library and command line tool for configuring a YubiKey'
 arch=('any')
 url='https://developers.yubico.com/yubikey-manager/'
@@ -17,7 +17,7 @@
 validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

   '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
 
source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('815746ad93780884a0ceb8cb4569a902f2317511b3a41ceead8f9be0a9b1f220'
+sha256sums=('0137acd30cffa60421dde8277b3bb0c5d5e2179d36df0d190de6faf7eec76359'
 'SKIP')
 
 build() {


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:30:19
  Author: eworm
Revision: 501400

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 20:30:15 UTC (rev 501399)
+++ PKGBUILD2019-08-23 20:30:19 UTC (rev 501400)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bruno Parmentier 
-
-pkgname=python-pyscard
-_pyname=pyscard
-pkgver=1.9.7
-pkgrel=2
-pkgdesc='Framework for building smart card aware applications in Python'
-arch=('x86_64')
-url='https://pyscard.sourceforge.io/'
-license=('LGPL')
-depends=('python' 'pcsclite')
-makedepends=('swig' 'python-setuptools')
-validpgpkeys=('535E3696356979F4932CB7443F4A8A8FE07F1CF9'  # Ludovic Rousseau 

-  'F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

-source=("https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%20${pkgver}/pyscard-${pkgver}.tar.gz"{,.asc})
-sha256sums=('412c74c83e7401566e9d3d7b8b5ca965e74582a1f33179b3c1fabf1da73ebf80'
-'SKIP')
-
-package() {
-   cd "${srcdir}/${_pyname}-${pkgver}/"
-
-   python setup.py build_ext install --root="${pkgdir}/" --optimize=1
-   install -D -m0644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: python-pyscard/repos/community-x86_64/PKGBUILD (from rev 501399, 
python-pyscard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 20:30:19 UTC (rev 501400)
@@ -0,0 +1,26 @@
+# Maintainer: Christian Hesse 
+# Contributor: Bruno Parmentier 
+
+pkgname=python-pyscard
+_pyname=pyscard
+pkgver=1.9.9
+pkgrel=1
+pkgdesc='Framework for building smart card aware applications in Python'
+arch=('x86_64')
+url='https://pyscard.sourceforge.io/'
+license=('LGPL')
+depends=('python' 'pcsclite')
+makedepends=('swig' 'python-setuptools')
+validpgpkeys=('535E3696356979F4932CB7443F4A8A8FE07F1CF9'  # Ludovic Rousseau 

+  'F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

+source=("https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%20${pkgver}/pyscard-${pkgver}.tar.gz"{,.asc})
+sha256sums=('e6bde541990183858740793806b1c7f4e798670519ae4c96145f35d5d7944c20'
+'SKIP')
+
+package() {
+   cd "${srcdir}/${_pyname}-${pkgver}/"
+
+   python setup.py build_ext install --root="${pkgdir}/" --optimize=1
+   install -D -m0644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:30:15
  Author: eworm
Revision: 501399

upgpkg: python-pyscard 1.9.9-1

new upstream release

Modified:
  python-pyscard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 20:29:06 UTC (rev 501398)
+++ PKGBUILD2019-08-23 20:30:15 UTC (rev 501399)
@@ -3,8 +3,8 @@
 
 pkgname=python-pyscard
 _pyname=pyscard
-pkgver=1.9.7
-pkgrel=2
+pkgver=1.9.9
+pkgrel=1
 pkgdesc='Framework for building smart card aware applications in Python'
 arch=('x86_64')
 url='https://pyscard.sourceforge.io/'
@@ -14,7 +14,7 @@
 validpgpkeys=('535E3696356979F4932CB7443F4A8A8FE07F1CF9'  # Ludovic Rousseau 

   'F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

 
source=("https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%20${pkgver}/pyscard-${pkgver}.tar.gz"{,.asc})
-sha256sums=('412c74c83e7401566e9d3d7b8b5ca965e74582a1f33179b3c1fabf1da73ebf80'
+sha256sums=('e6bde541990183858740793806b1c7f4e798670519ae4c96145f35d5d7944c20'
 'SKIP')
 
 package() {


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:29:06
  Author: eworm
Revision: 501398

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 20:29:02 UTC (rev 501397)
+++ PKGBUILD2019-08-23 20:29:06 UTC (rev 501398)
@@ -1,38 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=4.0.26
-pkgrel=1
-pkgdesc='ODBC module for Python'
-arch=('x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('e39fe201dcab91dec300f0dda226706a06d34eb0210149e1cb4943fca87430bb')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: python-pyodbc/repos/community-x86_64/PKGBUILD (from rev 501397, 
python-pyodbc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 20:29:06 UTC (rev 501398)
@@ -0,0 +1,38 @@
+# Maintainer: Christian Hesse 
+# Contributor: Robert Knauer 
+
+pkgbase=python-pyodbc
+pkgname=(python-pyodbc python2-pyodbc)
+_srcname=pyodbc
+pkgver=4.0.27
+pkgrel=1
+pkgdesc='ODBC module for Python'
+arch=('x86_64')
+url='https://github.com/mkleehammer/pyodbc'
+license=('MIT')
+makedepends=('python' 'python2' 'unixodbc')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
+sha256sums=('4e165622b952bc6beb539b71c929aef646c6850edd4d58bb6643eb205f6894fa')
+
+prepare() {
+   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
+}
+
+package_python-pyodbc() {
+   pkgdesc='ODBC module for Python 3.x'
+   depends=('python' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1
+}
+
+package_python2-pyodbc() {
+   pkgdesc='ODBC module for Python 2.x'
+   depends=('python2' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+}
+


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

2019-08-23 Thread Christian Hesse via arch-commits
Date: Friday, August 23, 2019 @ 20:29:02
  Author: eworm
Revision: 501397

upgpkg: python-pyodbc 4.0.27-1

new upstream release

Modified:
  python-pyodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 20:16:26 UTC (rev 501396)
+++ PKGBUILD2019-08-23 20:29:02 UTC (rev 501397)
@@ -4,7 +4,7 @@
 pkgbase=python-pyodbc
 pkgname=(python-pyodbc python2-pyodbc)
 _srcname=pyodbc
-pkgver=4.0.26
+pkgver=4.0.27
 pkgrel=1
 pkgdesc='ODBC module for Python'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=('MIT')
 makedepends=('python' 'python2' 'unixodbc')
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('e39fe201dcab91dec300f0dda226706a06d34eb0210149e1cb4943fca87430bb')
+sha256sums=('4e165622b952bc6beb539b71c929aef646c6850edd4d58bb6643eb205f6894fa')
 
 prepare() {
echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"


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

2019-08-23 Thread Andrzej Giniewicz via arch-commits
Date: Friday, August 23, 2019 @ 20:16:19
  Author: aginiewicz
Revision: 501395

upgpkg: python-xlsxwriter 1.1.9-1

python-xlsxwriter: new upstream release

Modified:
  python-xlsxwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:57:53 UTC (rev 501394)
+++ PKGBUILD2019-08-23 20:16:19 UTC (rev 501395)
@@ -2,7 +2,7 @@
 
 pkgbase=python-xlsxwriter
 pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.8
+pkgver=1.1.9
 pkgrel=1
 pkgdesc="A Python module for creating Excel XLSX files"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
-sha256sums=('b9311ec075693be4c0bc6ebbe292bbdac21399f863cb0c4e55100a561d67a56d')
+sha256sums=('113a2a4bc14a9c8c905a905a48beb695c4a4d92b2896c1b25e24da7af9f21846')
 
 prepare() {
   cd "$srcdir"


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

2019-08-23 Thread Andrzej Giniewicz via arch-commits
Date: Friday, August 23, 2019 @ 20:16:26
  Author: aginiewicz
Revision: 501396

archrelease: copy trunk to community-any

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

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

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

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


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:57:53
  Author: felixonmars
Revision: 501394

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:57:44
  Author: felixonmars
Revision: 501393

upgpkg: xmobar 0.29.5-44

rebuild with extra 1.6.18

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:56:20 UTC (rev 501392)
+++ PKGBUILD2019-08-23 18:57:44 UTC (rev 501393)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.5
-pkgrel=43
+pkgrel=44
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:56:20
  Author: felixonmars
Revision: 501392

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   83 
 stack.install |4 ++
 2 files changed, 87 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 501391, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:56:20 UTC (rev 501392)
@@ -0,0 +1,83 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=13
+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
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls 

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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:56:09
  Author: felixonmars
Revision: 501391

upgpkg: stack 2.1.3-13

rebuild with extra 1.6.18

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:50:42 UTC (rev 501390)
+++ PKGBUILD2019-08-23 18:56:09 UTC (rev 501391)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=12
+pkgrel=13
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:50:42
  Author: felixonmars
Revision: 501390

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 501389, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:50:42 UTC (rev 501390)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=11
+pkgdesc="Shell script analysis tool"
+url="http://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
+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-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:50:33
  Author: felixonmars
Revision: 501389

upgpkg: shellcheck 0.7.0-11

rebuild with extra 1.6.18

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:47:18 UTC (rev 501388)
+++ PKGBUILD2019-08-23 18:50:33 UTC (rev 501389)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=10
+pkgrel=11
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:47:18
  Author: felixonmars
Revision: 501388

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
501387, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:47:18 UTC (rev 501388)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.1
+pkgrel=77
+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 pandoc-crossref/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:47:09
  Author: felixonmars
Revision: 501387

upgpkg: pandoc-crossref 0.3.4.1-77

rebuild with extra 1.6.18

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:45:40 UTC (rev 501386)
+++ PKGBUILD2019-08-23 18:47:09 UTC (rev 501387)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=76
+pkgrel=77
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:45:31
  Author: felixonmars
Revision: 501385

upgpkg: haskell-hakyll 4.12.5.2-74

rebuild with extra 1.6.18

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:43:33 UTC (rev 501384)
+++ PKGBUILD2019-08-23 18:45:31 UTC (rev 501385)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=73
+pkgrel=74
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:45:40
  Author: felixonmars
Revision: 501386

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
501385, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:45:40 UTC (rev 501386)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=74
+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-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:43:33
  Author: felixonmars
Revision: 501384

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
501383, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:43:33 UTC (rev 501384)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=95
+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-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:43:24
  Author: felixonmars
Revision: 501383

upgpkg: pandoc-citeproc 0.16.2-95

rebuild with extra 1.6.18

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:40:18 UTC (rev 501382)
+++ PKGBUILD2019-08-23 18:43:24 UTC (rev 501383)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=94
+pkgrel=95
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:40:18
  Author: felixonmars
Revision: 501382

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 501381, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:40:18 UTC (rev 501382)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.7.3
+pkgrel=28
+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
+}
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:40:09
  Author: felixonmars
Revision: 501381

upgpkg: pandoc 2.7.3-28

rebuild with extra 1.6.18

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:28:48 UTC (rev 501380)
+++ PKGBUILD2019-08-23 18:40:09 UTC (rev 501381)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.3
-pkgrel=27
+pkgrel=28
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:28:39
  Author: felixonmars
Revision: 501379

upgpkg: hoogle 5.0.17.10-7

rebuild with extra 1.6.18

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:26:58 UTC (rev 501378)
+++ PKGBUILD2019-08-23 18:28:39 UTC (rev 501379)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.10
-pkgrel=6
+pkgrel=7
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:28:48
  Author: felixonmars
Revision: 501380

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 501379, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:28:48 UTC (rev 501380)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.10
+pkgrel=7
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('7b9a181510ee0555812d1dd3c90ca02e21597732d9881e8be895ef9ffdbfa1f9bf9f3551351493e829852fa0c9b7f57cb405fcae1650efb7ce57dd0aa6d0c5a0')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:26:58
  Author: felixonmars
Revision: 501378

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 501377, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 501377, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:26:58 UTC (rev 501378)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.7.0
+pkgrel=28
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-cryptohash-sha1' 
'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-monad-control' 
'haskell-monadlib'
+ 'haskell-panic' 'haskell-random' 'haskell-sbv' 'haskell-simple-smt' 
'haskell-strict'
+ 'haskell-tf-random' 'haskell-transformers-base' 
'haskell-ansi-terminal'
+ 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;)
+sha512sums=('e46b6ebf242d57287c8032db4c1763917acbfc9add76c92db35b5d3538df617248ffe20754e20ebc97e594150e309ac92cf1d3b17c3389895e2ca26f95a007f9')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:26:48
  Author: felixonmars
Revision: 501377

upgpkg: cryptol 2.7.0-28

rebuild with extra 1.6.18

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:23:39 UTC (rev 501376)
+++ PKGBUILD2019-08-23 18:26:48 UTC (rev 501377)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.7.0
-pkgrel=27
+pkgrel=28
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:23:39
  Author: felixonmars
Revision: 501376

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 501375, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:23:39 UTC (rev 501376)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.3
+pkgrel=17
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.com/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8efec98e296331a00202a7ded35205160628b59e1129a50eb2cb7c26deec4a553c4d9cd9055f1fdd3fec206a82601017fa91268871774f1816894dc79fc18408')
+
+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-sbv/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:23:31
  Author: felixonmars
Revision: 501375

upgpkg: haskell-sbv 8.3-17

rebuild with extra 1.6.18

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:13:59 UTC (rev 501374)
+++ PKGBUILD2019-08-23 18:23:31 UTC (rev 501375)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=8.3
-pkgrel=16
+pkgrel=17
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="https://leventerkok.github.com/sbv;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:13:59
  Author: felixonmars
Revision: 501374

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 501373, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:13:59 UTC (rev 501374)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1
+pkgrel=60
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8717dac6496905afc5e8735abc3b3a4a90b171253b035efa0751a6311b901caad563fdfeaa455987c1307d0532273ab80be37256562143db575f13c326843bf4')
+
+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-ipynb/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:13:50
  Author: felixonmars
Revision: 501373

upgpkg: haskell-ipynb 0.1-60

rebuild with extra 1.6.18

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:13:01 UTC (rev 501372)
+++ PKGBUILD2019-08-23 18:13:50 UTC (rev 501373)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1
-pkgrel=59
+pkgrel=60
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb;
 license=('BSD')


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:13:01
  Author: felixonmars
Revision: 501372

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-diff/repos/community-staging-x86_64/
  haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 501371, haskell-aeson-diff/trunk/PKGBUILD)

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
501371, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:13:01 UTC (rev 501372)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.7
+pkgrel=30
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('309cc2c73337079414df2b8491ffa379c02e8c658b8c0bc886e45bb8ea22a8ef9284ca7d940201717a35e002ae116571acf6f3f57ef02805e0c397494e574a0b')
+
+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-aeson-diff/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:12:52
  Author: felixonmars
Revision: 501371

upgpkg: haskell-aeson-diff 1.1.0.7-30

rebuild with extra 1.6.18

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:11:26 UTC (rev 501370)
+++ PKGBUILD2019-08-23 18:12:52 UTC (rev 501371)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.7
-pkgrel=29
+pkgrel=30
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff;
 license=('BSD')


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:11:17
  Author: felixonmars
Revision: 501369

upgpkg: hlint 2.1.14-57

rebuild with extra 1.6.18

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:09:53 UTC (rev 501368)
+++ PKGBUILD2019-08-23 18:11:17 UTC (rev 501369)
@@ -3,7 +3,7 @@
 
 pkgname=hlint
 pkgver=2.1.14
-pkgrel=56
+pkgrel=57
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:11:26
  Author: felixonmars
Revision: 501370

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 501369, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 501369, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:11:26 UTC (rev 501370)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.1.14
+pkgrel=57
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d4c7474791252401740d121118576579dd82b2c6cd52072b28faaf39e431f0b378387675d70f122109e6dc111e9889a51310c1c8881f6e33c13b889be4f4bb41')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:09:53
  Author: felixonmars
Revision: 501368

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 501367, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:09:53 UTC (rev 501368)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=123
+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')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:09:44
  Author: felixonmars
Revision: 501367

upgpkg: hledger-web 1.14.1-123

rebuild with extra 1.6.18

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:08:06 UTC (rev 501366)
+++ PKGBUILD2019-08-23 18:09:44 UTC (rev 501367)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=122
+pkgrel=123
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:08:06
  Author: felixonmars
Revision: 501366

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 501365, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 501365, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:08:06 UTC (rev 501366)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.14.2
+pkgrel=60
+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=('3d47bda183ab0d4022dca579ec38b574a168d2a30c4a6ab4ac141e373d18f9ae2858f09a35bf818af98394ff66bf2b287fb828eb1dfd21da4457364bc4420b46')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:07:56
  Author: felixonmars
Revision: 501365

upgpkg: hledger-ui 1.14.2-60

rebuild with extra 1.6.18

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:06:59 UTC (rev 501364)
+++ PKGBUILD2019-08-23 18:07:56 UTC (rev 501365)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.14.2
-pkgrel=59
+pkgrel=60
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:06:59
  Author: felixonmars
Revision: 501364

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:06:50
  Author: felixonmars
Revision: 501363

upgpkg: hledger-api 1.14-109

rebuild with extra 1.6.18

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:05:45 UTC (rev 501362)
+++ PKGBUILD2019-08-23 18:06:50 UTC (rev 501363)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-api
 pkgver=1.14
-pkgrel=108
+pkgrel=109
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:05:45
  Author: felixonmars
Revision: 501362

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 501361, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:05:45 UTC (rev 501362)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.14.2
+pkgrel=49
+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-test-framework' 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('87d1bc94a24d73c6da231520da6de55f1b64ace090cd9e64e264c68fefb4857d1d49c9d6c21e8cb44845f17eeed2dac96ad22cf50afded10248edad57e712cbe')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:05:36
  Author: felixonmars
Revision: 501361

upgpkg: hledger 1.14.2-49

rebuild with extra 1.6.18

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 18:04:24 UTC (rev 501360)
+++ PKGBUILD2019-08-23 18:05:36 UTC (rev 501361)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.14.2
-pkgrel=48
+pkgrel=49
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:04:24
  Author: felixonmars
Revision: 501360

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 501359, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 18:04:24 UTC (rev 501360)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.18.3
+pkgrel=17
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="https://shakebuild.com;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-filepattern' 'haskell-hashable' 
'haskell-heaps'
+ 'haskell-js-dgtable' 'haskell-js-flot' 'haskell-js-jquery' 
'haskell-primitive'
+ 'haskell-random' 'haskell-unordered-containers' 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d7d3ac1c7db8cec76df7e09d115f54be09cd66f95740c27ad807e3fa35b9ea37d20874c279b22d62b173b52205050a7bcaa805a265dab0fe73776e9a0b9a36db')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
+sed -e 's/runhaskell -package=Cabal Setup.hs configure/runhaskell 
-package=Cabal Setup.hs configure --enable-executable-dynamic 
--disable-library-vanilla/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-portable -f-cloud
+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-shake/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 18:04:15
  Author: felixonmars
Revision: 501359

upgpkg: haskell-shake 0.18.3-17

rebuild with extra 1.6.18

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:55:52 UTC (rev 501358)
+++ PKGBUILD2019-08-23 18:04:15 UTC (rev 501359)
@@ -4,7 +4,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.18.3
-pkgrel=16
+pkgrel=17
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="https://shakebuild.com;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:55:52
  Author: felixonmars
Revision: 501358

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 501357, haskell-hledger-lib/trunk/PKGBUILD)

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

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
501357, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:55:52 UTC (rev 501358)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.14.1
+pkgrel=43
+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-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-uglymemo' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1f639631233b31889e67f3fd83f9ec1244f48f0d752247f6959a537ef2be1edfe3dbd5796099f36bb82974ac4b6d6a67b28283b25d15f2bcc68a29c4f1383676')
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:55:43
  Author: felixonmars
Revision: 501357

upgpkg: haskell-hledger-lib 1.14.1-43

rebuild with extra 1.6.18

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:49:20 UTC (rev 501356)
+++ PKGBUILD2019-08-23 17:55:43 UTC (rev 501357)
@@ -4,7 +4,7 @@
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
 pkgver=1.14.1
-pkgrel=42
+pkgrel=43
 pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
 url="http://hledger.org;
 license=("GPL")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:49:10
  Author: felixonmars
Revision: 501355

upgpkg: python-openstacksdk 0.33.0-1

Modified:
  python-openstacksdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:47:49 UTC (rev 501354)
+++ PKGBUILD2019-08-23 17:49:10 UTC (rev 501355)
@@ -3,7 +3,7 @@
 
 pkgbase=python-openstacksdk
 pkgname=(python-openstacksdk python2-openstacksdk)
-pkgver=0.32.0
+pkgver=0.33.0
 pkgrel=1
 pkgdesc="An SDK for building applications to work with OpenStack"
 arch=('any')
@@ -22,7 +22,7 @@
   'python2-requests-mock' 'python-oslotest' 'python2-oslotest' 
'python-jsonschema'
   'python2-jsonschema')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/openstacksdk/archive/$pkgver.tar.gz;)
-sha512sums=('58b6e014f105c105f8a8dad961050e9dfc3314454d13404d84cb188bcea523cc806b163a24b3053c162e881fc4f97152711174baecd56d32a3e33a2a24f8db41')
+sha512sums=('db5ae5ccb5bddb6424c0f140185e79fa10ccfb31e27624478cb4853b3310cebcbf0479bb432f2d95f9e4464bb24e97c237c87de428a551ade69c75bf84f9e140')
 
 export PBR_VERSION=$pkgver
 


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:49:20
  Author: felixonmars
Revision: 501356

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 17:49:10 UTC (rev 501355)
+++ PKGBUILD2019-08-23 17:49:20 UTC (rev 501356)
@@ -1,77 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-openstacksdk
-pkgname=(python-openstacksdk python2-openstacksdk)
-pkgver=0.32.0
-pkgrel=1
-pkgdesc="An SDK for building applications to work with OpenStack"
-arch=('any')
-url="https://developer.openstack.org/sdks/python/openstacksdk;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-jsonpatch'
- 'python2-jsonpatch' 'python-appdirs' 'python2-appdirs' 
'python-keystoneauth1'
- 'python2-keystoneauth1' 'python-os-service-types' 
'python2-os-service-types'
- 'python-deprecation' 'python2-deprecation' 
'python-requestsexceptions'
- 'python2-requestsexceptions' 'python-yaml' 'python2-yaml' 
'python-decorator'
- 'python2-decorator' 'python-jmespath' 'python2-jmespath' 
'python2-ipaddress'
- 'python2-futures' 'python-iso8601' 'python2-iso8601' 
'python-netifaces'
- 'python2-netifaces' 'python-dogpile.cache' 
'python2-dogpile.cache' 'python-munch'
- 'python2-munch')
-checkdepends=('python-stestr' 'python2-stestr' 'python-mock' 'python2-mock' 
'python-requests-mock'
-  'python2-requests-mock' 'python-oslotest' 'python2-oslotest' 
'python-jsonschema'
-  'python2-jsonschema')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/openstacksdk/archive/$pkgver.tar.gz;)
-sha512sums=('58b6e014f105c105f8a8dad961050e9dfc3314454d13404d84cb188bcea523cc806b163a24b3053c162e881fc4f97152711174baecd56d32a3e33a2a24f8db41')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  echo -e "\nglobal-include *.json" >> openstacksdk-$pkgver/MANIFEST.in
-  cp -a openstacksdk-$pkgver{,-py2}
-  sed -i 's/assertItemsEqual/assertCountEqual/' 
openstacksdk-$pkgver/openstack/tests/unit/*.py 
openstacksdk-$pkgver/openstack/tests/unit/*/*.py
-}
-
-build() {
-  cd "$srcdir"/openstacksdk-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # From https://github.com/openstack/openstacksdk/blob/master/tox.ini
-  export OS_LOG_CAPTURE=true OS_STDOUT_CAPTURE=true OS_STDERR_CAPTURE=true
-
-  cd "$srcdir"/openstacksdk-$pkgver
-  stestr run || warning "Tests failed"
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  PYTHON=python2 stestr2 run || warning "Tests failed"
-}
-
-package_python-openstacksdk() {
-  depends=('python-six' 'python-pbr' 'python-jsonpatch' 'python-appdirs' 
'python-keystoneauth1'
-   'python-os-service-types' 'python-deprecation' 
'python-requestsexceptions'
-   'python-decorator' 'python-jmespath' 'python-iso8601' 
'python-netifaces'
-   'python-dogpile.cache' 'python-munch')
-
-  cd "$srcdir"/openstacksdk-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-openstacksdk() {
-  depends=('python2-six' 'python2-pbr' 'python2-jsonpatch' 'python2-appdirs'
-   'python2-keystoneauth1' 'python2-os-service-types' 
'python2-deprecation'
-   'python2-requestsexceptions' 'python2-decorator' 'python2-jmespath' 
'python2-ipaddress'
-   'python2-futures' 'python2-iso8601' 'python2-netifaces' 
'python2-dogpile.cache'
-   'python2-munch')
-
-  cd "$srcdir"/openstacksdk-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/openstack-inventory{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openstacksdk/repos/community-any/PKGBUILD (from rev 501355, 
python-openstacksdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 17:49:20 UTC (rev 501356)
@@ -0,0 +1,77 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-openstacksdk
+pkgname=(python-openstacksdk python2-openstacksdk)
+pkgver=0.33.0
+pkgrel=1
+pkgdesc="An SDK for building applications to work with OpenStack"
+arch=('any')
+url="https://developer.openstack.org/sdks/python/openstacksdk;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-jsonpatch'
+ 'python2-jsonpatch' 'python-appdirs' 'python2-appdirs' 
'python-keystoneauth1'
+ 'python2-keystoneauth1' 'python-os-service-types' 

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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:47:49
  Author: felixonmars
Revision: 501354

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-filepattern/repos/community-staging-x86_64/PKGBUILD (from rev 
501353, haskell-filepattern/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:47:49 UTC (rev 501354)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=filepattern
+pkgname=haskell-filepattern
+pkgver=0.1.1
+pkgrel=18
+pkgdesc="File path glob-like matching"
+url="https://github.com/ndmitchell/filepattern;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra')
+makedepends=('ghc' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6346cade88d9d2d059c059bc95d9de8d92c2e76284da114223278deccc3421aea292c05621b569208f8dd64339ed05979cda6cb165e1490cdb0754db92bcb047')
+
+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-filepattern/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:47:40
  Author: felixonmars
Revision: 501353

upgpkg: haskell-filepattern 0.1.1-18

rebuild with extra 1.6.18

Modified:
  haskell-filepattern/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:46:52 UTC (rev 501352)
+++ PKGBUILD2019-08-23 17:47:40 UTC (rev 501353)
@@ -3,7 +3,7 @@
 _hkgname=filepattern
 pkgname=haskell-filepattern
 pkgver=0.1.1
-pkgrel=17
+pkgrel=18
 pkgdesc="File path glob-like matching"
 url="https://github.com/ndmitchell/filepattern;
 license=('BSD')


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:46:52
  Author: felixonmars
Revision: 501352

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

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 501351, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:46:52 UTC (rev 501352)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190819
+pkgrel=6
+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-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
+}
+
+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 git-annex/trunk (PKGBUILD)

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:46:43
  Author: felixonmars
Revision: 501351

upgpkg: git-annex 7.20190819-6

rebuild with extra 1.6.18

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:38:34 UTC (rev 501350)
+++ PKGBUILD2019-08-23 17:46:43 UTC (rev 501351)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190819
-pkgrel=5
+pkgrel=6
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:38:34
  Author: felixonmars
Revision: 501350

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-fdo-notify/repos/community-staging-x86_64/
  haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD
(from rev 501349, haskell-fdo-notify/trunk/PKGBUILD)

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

Copied: haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD (from rev 
501349, haskell-fdo-notify/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:38:34 UTC (rev 501350)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=fdo-notify
+pkgname=haskell-fdo-notify
+pkgver=0.3.1
+pkgrel=187
+pkgdesc="Desktop Notifications client"
+url="https://bitbucket.org/taejo/fdo-notify/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-dbus")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d9193899d5eebd7c36e9464571827bd5b560fcc156e89822877b3b67a1f376c7abea9958f7e0aa6f79da06ad5f35a8738ad30a40d447b64ad557ed341054e6b6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:38:25
  Author: felixonmars
Revision: 501349

upgpkg: haskell-fdo-notify 0.3.1-187

rebuild with extra 1.6.18

Modified:
  haskell-fdo-notify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:37:25 UTC (rev 501348)
+++ PKGBUILD2019-08-23 17:38:25 UTC (rev 501349)
@@ -4,7 +4,7 @@
 _hkgname=fdo-notify
 pkgname=haskell-fdo-notify
 pkgver=0.3.1
-pkgrel=186
+pkgrel=187
 pkgdesc="Desktop Notifications client"
 url="https://bitbucket.org/taejo/fdo-notify/;
 license=("BSD")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:37:25
  Author: felixonmars
Revision: 501348

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dbus/repos/community-staging-x86_64/PKGBUILD (from rev 501347, 
haskell-dbus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:37:25 UTC (rev 501348)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=dbus
+pkgname=haskell-dbus
+pkgver=1.2.7
+pkgrel=27
+pkgdesc="A client library for the D-Bus IPC system"
+url="https://john-millikin.com/software/haskell-dbus/;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-conduit' 'haskell-exceptions' 
'haskell-lens'
+ 'haskell-network' 'haskell-random' 'haskell-split' 'haskell-th-lift'
+ 'haskell-vector' 'haskell-xml-conduit' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-extra' 'haskell-quickcheck' 'haskell-resourcet' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('07ab78ae93b0249f7f2da0af59b5f958daa1b140287eab21962eb8ed53bc608dbd0d906d91a6a7e1bc8a9a82a2ad8e294b540ab0a6c3e01337fbb151a2211ca3')
+
+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.txt"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:37:16
  Author: felixonmars
Revision: 501347

upgpkg: haskell-dbus 1.2.7-27

rebuild with extra 1.6.18

Modified:
  haskell-dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:36:34 UTC (rev 501346)
+++ PKGBUILD2019-08-23 17:37:16 UTC (rev 501347)
@@ -4,7 +4,7 @@
 _hkgname=dbus
 pkgname=haskell-dbus
 pkgver=1.2.7
-pkgrel=26
+pkgrel=27
 pkgdesc="A client library for the D-Bus IPC system"
 url="https://john-millikin.com/software/haskell-dbus/;
 license=("GPL3")


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:36:34
  Author: felixonmars
Revision: 501346

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 17:36:24 UTC (rev 501345)
+++ PKGBUILD2019-08-23 17:36:34 UTC (rev 501346)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-elasticsearch
-pkgname=('python-elasticsearch' 'python2-elasticsearch')
-pkgver=7.0.3
-pkgrel=1
-arch=('any')
-pkgdesc='Python client for Elasticsearch'
-url='https://github.com/elastic/elasticsearch-py'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-urllib3' 
'python2-urllib3')
-checkdepends=('python-nose' 'python2-nose' 'python-requests' 
'python2-requests' 'python-coverage'
-  'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
-  'python-nosexcover' 'python2-nosexcover')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz;)
-sha512sums=('32bd4923cc9a9187315b1029ccd3ffd6498726f48bbb0a225b7a7f1016064c630a3d002866b7033d7410c632b25c10503baf5f2cde29606fddf9089e8bf2151d')
-
-prepare() {
-  sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
-  cp -a elasticsearch-py-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/elasticsearch-py-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/elasticsearch-py-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/elasticsearch-py-$pkgver
-  # https://github.com/elastic/elasticsearch-py/issues/816
-  # python setup.py test
-
-  cd "$srcdir"/elasticsearch-py-$pkgver-py2
-  # python2 setup.py test
-}
-
-package_python-elasticsearch() {
-  depends=('python-urllib3')
-
-  cd elasticsearch-py-$pkgver
-  python setup.py install --root "$pkgdir" --optimize=1
-}
-
-package_python2-elasticsearch() {
-  depends=('python2-urllib3')
-
-  cd elasticsearch-py-$pkgver-py2
-  python2 setup.py install --root "$pkgdir" --optimize=1
-}

Copied: python-elasticsearch/repos/community-any/PKGBUILD (from rev 501345, 
python-elasticsearch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 17:36:34 UTC (rev 501346)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-elasticsearch
+pkgname=('python-elasticsearch' 'python2-elasticsearch')
+pkgver=7.0.4
+pkgrel=1
+arch=('any')
+pkgdesc='Python client for Elasticsearch'
+url='https://github.com/elastic/elasticsearch-py'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-urllib3' 
'python2-urllib3')
+checkdepends=('python-nose' 'python2-nose' 'python-requests' 
'python2-requests' 'python-coverage'
+  'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
+  'python-nosexcover' 'python2-nosexcover')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz;)
+sha512sums=('f59c095c4adf9e5896143ee195bb31a8dcb33e511c9679e115f6fcf162281d1c4b6b5ed69e16c31f2e082f86df703714d1fe3699f2102400476f97ada10dd918')
+
+prepare() {
+  sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
+  cp -a elasticsearch-py-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/elasticsearch-py-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/elasticsearch-py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/elasticsearch-py-$pkgver
+  # https://github.com/elastic/elasticsearch-py/issues/816
+  # python setup.py test
+
+  cd "$srcdir"/elasticsearch-py-$pkgver-py2
+  # python2 setup.py test
+}
+
+package_python-elasticsearch() {
+  depends=('python-urllib3')
+
+  cd elasticsearch-py-$pkgver
+  python setup.py install --root "$pkgdir" --optimize=1
+}
+
+package_python2-elasticsearch() {
+  depends=('python2-urllib3')
+
+  cd elasticsearch-py-$pkgver-py2
+  python2 setup.py install --root "$pkgdir" --optimize=1
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:36:24
  Author: felixonmars
Revision: 501345

upgpkg: python-elasticsearch 7.0.4-1

Modified:
  python-elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:35:37 UTC (rev 501344)
+++ PKGBUILD2019-08-23 17:36:24 UTC (rev 501345)
@@ -2,7 +2,7 @@
 
 pkgbase=python-elasticsearch
 pkgname=('python-elasticsearch' 'python2-elasticsearch')
-pkgver=7.0.3
+pkgver=7.0.4
 pkgrel=1
 arch=('any')
 pkgdesc='Python client for Elasticsearch'
@@ -13,7 +13,7 @@
   'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
   'python-nosexcover' 'python2-nosexcover')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz;)
-sha512sums=('32bd4923cc9a9187315b1029ccd3ffd6498726f48bbb0a225b7a7f1016064c630a3d002866b7033d7410c632b25c10503baf5f2cde29606fddf9089e8bf2151d')
+sha512sums=('f59c095c4adf9e5896143ee195bb31a8dcb33e511c9679e115f6fcf162281d1c4b6b5ed69e16c31f2e082f86df703714d1fe3699f2102400476f97ada10dd918')
 
 prepare() {
   sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:35:37
  Author: felixonmars
Revision: 501344

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-extra/repos/community-staging-x86_64/PKGBUILD (from rev 501343, 
haskell-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-23 17:35:37 UTC (rev 501344)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=extra
+pkgname=haskell-extra
+pkgver=1.6.18
+pkgrel=1
+pkgdesc="Extra functions I use."
+url="https://github.com/ndmitchell/extra#readme;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-clock')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('df64f8b93826e3fcb13e41fc3eed22c2bfeca93d70125b0e73b4f62a8109a46cda2bc2a4e0c973d9ca23199664670a89a42e7ef6f685e3420103c76cd942f06a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-23 Thread Felix Yan via arch-commits
Date: Friday, August 23, 2019 @ 17:35:28
  Author: felixonmars
Revision: 501343

upgpkg: haskell-extra 1.6.18-1

rebuild with extra 1.6.18

Modified:
  haskell-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 17:22:27 UTC (rev 501342)
+++ PKGBUILD2019-08-23 17:35:28 UTC (rev 501343)
@@ -3,8 +3,8 @@
 
 _hkgname=extra
 pkgname=haskell-extra
-pkgver=1.6.17
-pkgrel=7
+pkgver=1.6.18
+pkgrel=1
 pkgdesc="Extra functions I use."
 url="https://github.com/ndmitchell/extra#readme;
 license=("BSD")
@@ -12,7 +12,7 @@
 depends=('ghc-libs' 'haskell-clock')
 makedepends=('ghc' 'haskell-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('1bfaeec404e131d4226e0120ae862b19c4521417b51b895b4f3e7881c448769aee9512f1258d8c982bee22dd62b9078097a21f0cbc3db430ad3d18a1bd49d3a7')
+sha512sums=('df64f8b93826e3fcb13e41fc3eed22c2bfeca93d70125b0e73b4f62a8109a46cda2bc2a4e0c973d9ca23199664670a89a42e7ef6f685e3420103c76cd942f06a')
 
 prepare() {
 cd $_hkgname-$pkgver


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

2019-08-23 Thread Jelle van der Waa via arch-commits
Date: Friday, August 23, 2019 @ 16:09:12
  Author: jelle
Revision: 501317

upgpkg: zapcc 7.0.325000-2

remove python2 dependency

Modified:
  zapcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 15:39:01 UTC (rev 501316)
+++ PKGBUILD2019-08-23 16:09:12 UTC (rev 501317)
@@ -8,7 +8,7 @@
 arch=('x86_64')
 license=('custom')
 url='https://zapcc.com/'
-depends=('python' 'python2' 'z3')
+depends=('python' 'z3')
 makedepends=('cmake' 'git' 'ninja')
 conflicts=('clang')
 source=("git+https://github.com/yrnkrn/zapcc.git#commit=9bd04e7;)


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

2019-08-23 Thread Jelle van der Waa via arch-commits
Date: Friday, August 23, 2019 @ 16:09:22
  Author: jelle
Revision: 501318

archrelease: copy trunk to community-x86_64

Added:
  zapcc/repos/community-x86_64/PKGBUILD
(from rev 501317, zapcc/trunk/PKGBUILD)
Deleted:
  zapcc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 16:09:12 UTC (rev 501317)
+++ PKGBUILD2019-08-23 16:09:22 UTC (rev 501318)
@@ -1,37 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Evangelos Foutras 
-
-pkgname=zapcc
-pkgver=7.0.325000
-pkgrel=2
-pkgdesc='C++ compiler based on Clang, but significantly faster'
-arch=('x86_64')
-license=('custom')
-url='https://zapcc.com/'
-depends=('python' 'python2' 'z3')
-makedepends=('cmake' 'git' 'ninja')
-conflicts=('clang')
-source=("git+https://github.com/yrnkrn/zapcc.git#commit=9bd04e7;)
-sha256sums=('SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake "../$pkgname" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLLVM_ENABLE_WARNINGS=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--G Ninja
-  ninja
-}
-
-package() {
-  cd build
-  for component in clang-headers zapcc zapccs; do
-DESTDIR="$pkgdir" cmake -DCOMPONENT="$component" -P ./cmake_install.cmake
-  done
-  install -Dm644 ../$pkgname/LICENSE.TXT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: zapcc/repos/community-x86_64/PKGBUILD (from rev 501317, 
zapcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 16:09:22 UTC (rev 501318)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Evangelos Foutras 
+
+pkgname=zapcc
+pkgver=7.0.325000
+pkgrel=2
+pkgdesc='C++ compiler based on Clang, but significantly faster'
+arch=('x86_64')
+license=('custom')
+url='https://zapcc.com/'
+depends=('python' 'z3')
+makedepends=('cmake' 'git' 'ninja')
+conflicts=('clang')
+source=("git+https://github.com/yrnkrn/zapcc.git#commit=9bd04e7;)
+sha256sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "../$pkgname" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_ENABLE_WARNINGS=OFF \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd build
+  for component in clang-headers zapcc zapccs; do
+DESTDIR="$pkgdir" cmake -DCOMPONENT="$component" -P ./cmake_install.cmake
+  done
+  install -Dm644 ../$pkgname/LICENSE.TXT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-23 Thread Jelle van der Waa via arch-commits
Date: Friday, August 23, 2019 @ 15:38:48
  Author: jelle
Revision: 501315

upgpkg: evemu 2.7.0-4

drop python2 module

Modified:
  evemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 15:16:21 UTC (rev 501314)
+++ PKGBUILD2019-08-23 15:38:48 UTC (rev 501315)
@@ -4,15 +4,14 @@
  
 pkgname=evemu
 pkgver=2.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Tools and bindings for kernel input event device emulation and data 
capture and replay'
 arch=(x86_64)
 url='https://www.freedesktop.org/wiki/Evemu'
 license=(GPL3)
 depends=(libevdev)
-makedepends=(asciidoc python python2 xmlto)
-optdepends=('python: Python 3 bindings'
-'python2: Python 2 bindings')
+makedepends=(asciidoc python xmlto)
+optdepends=('python: Python 3 bindings')
 
source=(https://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
 validpgpkeys=(0A75E35E0FAEE97EC769103E2F2670AC164DB36F) # Benjamin Tissoires 

 sha1sums=('16c6e1484253e1610a019dcca22b1698002824ca'
@@ -19,14 +18,9 @@
   'SKIP')
  
 build() {
-  cp -r $pkgname-$pkgver python2
-
   cd $pkgname-$pkgver
   PYTHON=python3 ./configure --prefix=/usr
   make
-
-  cd ../python2
-  PYTHON=python2 ./configure --prefix=/usr --disable-tests
 }
 
 check() {
@@ -38,7 +32,4 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-
-  cd ../python2
-  make -C python DESTDIR="$pkgdir" install
 }


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

2019-08-23 Thread Jelle van der Waa via arch-commits
Date: Friday, August 23, 2019 @ 15:39:01
  Author: jelle
Revision: 501316

archrelease: copy trunk to community-x86_64

Added:
  evemu/repos/community-x86_64/PKGBUILD
(from rev 501315, evemu/trunk/PKGBUILD)
Deleted:
  evemu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-23 15:38:48 UTC (rev 501315)
+++ PKGBUILD2019-08-23 15:39:01 UTC (rev 501316)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-# Contributor: Nicolas Quiénot < niQo at aur >
-# Contributor: Damián Nohales 
- 
-pkgname=evemu
-pkgver=2.7.0
-pkgrel=3
-pkgdesc='Tools and bindings for kernel input event device emulation and data 
capture and replay'
-arch=(x86_64)
-url='https://www.freedesktop.org/wiki/Evemu'
-license=(GPL3)
-depends=(libevdev)
-makedepends=(asciidoc python python2 xmlto)
-optdepends=('python: Python 3 bindings'
-'python2: Python 2 bindings')
-source=(https://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-validpgpkeys=(0A75E35E0FAEE97EC769103E2F2670AC164DB36F) # Benjamin Tissoires 

-sha1sums=('16c6e1484253e1610a019dcca22b1698002824ca'
-  'SKIP')
- 
-build() {
-  cp -r $pkgname-$pkgver python2
-
-  cd $pkgname-$pkgver
-  PYTHON=python3 ./configure --prefix=/usr
-  make
-
-  cd ../python2
-  PYTHON=python2 ./configure --prefix=/usr --disable-tests
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Tests have to be run as 'root'
-  # make check
-}
- 
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cd ../python2
-  make -C python DESTDIR="$pkgdir" install
-}

Copied: evemu/repos/community-x86_64/PKGBUILD (from rev 501315, 
evemu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-23 15:39:01 UTC (rev 501316)
@@ -0,0 +1,35 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Nicolas Quiénot < niQo at aur >
+# Contributor: Damián Nohales 
+ 
+pkgname=evemu
+pkgver=2.7.0
+pkgrel=4
+pkgdesc='Tools and bindings for kernel input event device emulation and data 
capture and replay'
+arch=(x86_64)
+url='https://www.freedesktop.org/wiki/Evemu'
+license=(GPL3)
+depends=(libevdev)
+makedepends=(asciidoc python xmlto)
+optdepends=('python: Python 3 bindings')
+source=(https://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+validpgpkeys=(0A75E35E0FAEE97EC769103E2F2670AC164DB36F) # Benjamin Tissoires 

+sha1sums=('16c6e1484253e1610a019dcca22b1698002824ca'
+  'SKIP')
+ 
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=python3 ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Tests have to be run as 'root'
+  # make check
+}
+ 
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-23 Thread Jelle van der Waa via arch-commits
Date: Friday, August 23, 2019 @ 15:06:38
  Author: jelle
Revision: 501312

Drop python2 module

Modified:
  python-pyusb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:01:09 UTC (rev 501311)
+++ PKGBUILD2019-08-23 15:06:38 UTC (rev 501312)
@@ -6,8 +6,7 @@
 # Contributor: Jason Giangrande 
 
 _pkgname=pyusb
-pkgbase=python-pyusb
-pkgname=('python-pyusb' 'python2-pyusb')
+pkgname=python-pyusb
 pkgdesc="USB access on Python"
 pkgver=1.0.2
 pkgrel=2
@@ -14,7 +13,8 @@
 arch=('any')
 url="https://github.com/pyusb/pyusb;
 license=('custom')
-makedepends=('python-distribute' 'python2-distribute')
+depends=('python' 'libusb')
+makedepends=('python-distribute')
 
#source=("${pkgname}-${pkgver}.tar.gz::https://github.com/walac/${_pkgname}/archive/${pkgver}.tar.gz;)
 
source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
 
"${_pkgname}-${pkgver}.tar.gz.asc::https://pypi.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz.asc;)
@@ -22,26 +22,8 @@
 'SKIP')
 validpgpkeys=('B04841AE800C1BF01FE1BC3D084C5584542E1574') # Wander Lairson 
Costa 
 
-prepare() {
-# Create a copy for the python2 package
-cp -r "${_pkgname}-${pkgver}" "python2-${_pkgname}-${pkgver}"
-}
-
-package_python-pyusb() {
-pkgdesc="USB access on Python 3"
-depends=('python' 'libusb')
-
+package() {
 cd "${srcdir}/${_pkgname}-${pkgver}"
 python setup.py install --root="${pkgdir}" --optimize=1
 install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
-
-package_python2-pyusb() {
-pkgdesc="USB access on Python 2"
-depends=('python2' 'libusb')
-replaces=('python2-pyusb-beta')
-
-cd "${srcdir}/python2-${_pkgname}-${pkgver}"
-python2 setup.py install --root="${pkgdir}" --optimize=1
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:31:58
  Author: andyrtr
Revision: 360620

use https url

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:30:01 UTC (rev 360619)
+++ PKGBUILD2019-08-23 14:31:58 UTC (rev 360620)
@@ -9,7 +9,7 @@
 arch=('x86_64')
 license=('custom')
 groups=('xorg')
-url="http://xorg.freedesktop.org;
+url="https://xorg.freedesktop.org;
 makedepends=('xorgproto' 'pixman' 'libx11' 'mesa' 'mesa-libgl' 'xtrans'
  'libxkbfile' 'libxfont2' 'libpciaccess' 'libxv'
  'libxmu' 'libxrender' 'libxi' 'libxaw' 'libdmx' 'libxtst' 
'libxres'


[arch-commits] Commit in xf86-input-synaptics/trunk (PKGBUILD)

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:30:01
  Author: andyrtr
Revision: 360619

use https url

Modified:
  xf86-input-synaptics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:29:42 UTC (rev 360618)
+++ PKGBUILD2019-08-23 14:30:01 UTC (rev 360619)
@@ -18,7 +18,7 @@
 conflicts=('synaptics')
 groups=('xorg-drivers')
 install=xf86-input-synaptics.install
-source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+source=(https://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('978eddd456aa7361047bc3d72e5127b24b13de29b0dddb6a0acc9f9da93931baa2b22fb5d1e6be164f629a11e5d97d753b835426435396b45b1af5eb8d546c3f'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:29:42
  Author: andyrtr
Revision: 360618

use https url

Modified:
  openjpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:27:58 UTC (rev 360617)
+++ PKGBUILD2019-08-23 14:29:42 UTC (rev 360618)
@@ -11,7 +11,7 @@
 makedepends=('libtiff' 'lcms2' 'libpng' 'doxygen')
 optdepends=('lcms2: j2k_to_image and image_to_j2k programs'
 'libpng: j2k_to_image and image_to_j2k programs')
-source=(http://downloads.sourceforge.net/openjpeg.mirror/${pkgname}-${pkgver}.tar.gz)
+source=(https://downloads.sourceforge.net/openjpeg.mirror/${pkgname}-${pkgver}.tar.gz)
 
sha512sums=('b945cf4f8b5e3227a0c07120c94b0ed5bf30c901de73059ee1d47975f46744fb62bbe84cdb2917c6431128f400020874eb07160af870b5448ced897998b08862')
 
 


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:27:58
  Author: andyrtr
Revision: 360617

use https url

Modified:
  openjade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:25:23 UTC (rev 360616)
+++ PKGBUILD2019-08-23 14:27:58 UTC (rev 360617)
@@ -6,7 +6,7 @@
 _debpatch=13
 pkgdesc="Implementation of the DSSSL language"
 arch=('x86_64')
-url="http://openjade.sourceforge.net/;
+url="http://openjade.sourceforge.net/; # no https
 license=('custom')
 depends=('opensp' 'sgml-common')
 makedepends=('perl-perl4-corelibs')
@@ -13,7 +13,7 @@
 install=${pkgname}.install
 conflicts=('jade')
 provides=('jade')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz
+source=(https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://ftp.debian.org/debian/pool/main/o/${pkgname}1.3/${pkgname}1.3_${pkgver}-${_debpatch}.diff.gz)
 sha256sums=('1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1'
 '11d90e242eae60ce06bf27fd234adbd8efd7d4a9a4a2da058faa4e8336dc423a')


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:25:23
  Author: andyrtr
Revision: 360616

use https url

Modified:
  mythes-en/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:23:59 UTC (rev 360615)
+++ PKGBUILD2019-08-23 14:25:23 UTC (rev 360616)
@@ -5,11 +5,11 @@
 pkgrel=4
 pkgdesc="English thesaurus"
 arch=('any')
-url="http://wiki.services.openoffice.org/wiki/Dictionaries#English_.28AU.2CCA.2CGB.2CNZ.2CUS.2CZA.29;
+url="https://wiki.services.openoffice.org/wiki/Dictionaries#English_.28AU.2CCA.2CGB.2CNZ.2CUS.2CZA.29;
 license=('LGPL')
 optdepends=('libmythes: offers thesaurus library functions')
 # Fedora uses http://www.danielnaber.de/wn2ooo/ but it doesn't look more fresh
-source=("http://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/thes_en_US_v2.zip;)
+source=("https://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/thes_en_US_v2.zip;)
 md5sums=('ec611ad21ae4ee2b4415e27e252e4952')
 
 package() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:23:59
  Author: andyrtr
Revision: 360615

use https url

Modified:
  lpsolve/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:23:20 UTC (rev 360614)
+++ PKGBUILD2019-08-23 14:23:59 UTC (rev 360615)
@@ -7,10 +7,10 @@
 pkgrel=3
 pkgdesc="a Mixed Integer Linear Programming (MILP) solver"
 arch=('x86_64')
-url="http://lpsolve.sourceforge.net/;
+url="http://lpsolve.sourceforge.net/; # no https
 license=('LGPL2.1')
 depends=('glibc')
-source=(http://downloads.sourceforge.net/project/lpsolve/lpsolve/${pkgver}/lp_solve_${pkgver}_source.tar.gz
+source=(https://downloads.sourceforge.net/project/lpsolve/lpsolve/${pkgver}/lp_solve_${pkgver}_source.tar.gz
 cflags.patch
 lpsolve-5.5.2.0.defines.patch)
 sha1sums=('232ce8edb073c7c9b6d9100abf77038d989c45c8'


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:23:20
  Author: andyrtr
Revision: 360614

use https url

Modified:
  libwps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:22:56 UTC (rev 360613)
+++ PKGBUILD2019-08-23 14:23:20 UTC (rev 360614)
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('libwpd' 'librevenge')
 makedepends=('boost' 'doxygen')
-source=("http://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz;)
+source=("https://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz;)
 sha1sums=('01f5fb626ed82bb3044baa28e265791f0949daee')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:22:56
  Author: andyrtr
Revision: 360613

use https url

Modified:
  libtirpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:20:57 UTC (rev 360612)
+++ PKGBUILD2019-08-23 14:22:56 UTC (rev 360613)
@@ -6,12 +6,12 @@
 pkgrel=1
 pkgdesc="Transport Independent RPC library (SunRPC replacement)"
 arch=('x86_64')
-url="http://libtirpc.sourceforge.net/;
+url="http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary;
 license=('BSD')
 depends=('krb5')
 backup=('etc/netconfig')
 # git tree: git://linux-nfs.org/~steved/libtirpc
-source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
+source=(https://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
 sha1sums=('d85717035cb9bd6c45557a1eb1351d3af9a69ff7')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:20:57
  Author: andyrtr
Revision: 360612

use https url

Modified:
  librevenge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:20:31 UTC (rev 360611)
+++ PKGBUILD2019-08-23 14:20:57 UTC (rev 360612)
@@ -9,7 +9,7 @@
 license=('MPL')
 depends=('boost-libs')
 makedepends=('boost' 'doxygen' 'cppunit')
-source=(http://sourceforge.net/projects/libwpd/files/librevenge/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz)
+source=(https://sourceforge.net/projects/libwpd/files/librevenge/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz)
 sha1sums=('533dd83a668d3efc0095ad82718e34662395635d')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:20:31
  Author: andyrtr
Revision: 360611

use https url

Modified:
  libmythes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:18:34 UTC (rev 360610)
+++ PKGBUILD2019-08-23 14:20:31 UTC (rev 360611)
@@ -6,12 +6,12 @@
 epoch=1
 pkgdesc="a simple thesaurus"
 arch=('x86_64')
-url="http://hunspell.sourceforge.net/ "
+url="https://hunspell.github.io/;
 license=('custom')
 depends=('glibc' 'perl')
 makedepends=('hunspell')
 provides=('mythes')
-source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
+source=(https://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
 
sha512sums=('a04da39812bcfb1391a2cba7de73e955eafe141679ec03ed6657d03bebf360b432480d0037dff9ed72a1dfda5a70d77d44ac2bb14cdb109fd8e2a38376feee21')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:18:34
  Author: andyrtr
Revision: 360610

use https url

Modified:
  hyphen-de/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:15:24 UTC (rev 360609)
+++ PKGBUILD2019-08-23 14:18:34 UTC (rev 360610)
@@ -13,8 +13,8 @@
 # mirror from ApacheOpenOffice - see: 
http://www.openoffice.org/distribution/mirrors/master.html
 # 
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_DE.zip
 # 
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_CH.zip
-
http://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/hyph_de_DE.zip
-
http://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/hyph_de_CH.zip)
+
https://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/hyph_de_DE.zip
+
https://www.mirrorservice.org/sites/download.openoffice.org/contrib/dictionaries/hyph_de_CH.zip)
 md5sums=('20e5b706ee3201aa2741dabca824cd8b'
  '7b8567cc0ee1623dded40f2cba366e91')
 


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:15:24
  Author: andyrtr
Revision: 360609

use https url

Modified:
  hyphen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:14:41 UTC (rev 360608)
+++ PKGBUILD2019-08-23 14:15:24 UTC (rev 360609)
@@ -5,10 +5,10 @@
 pkgver=2.8.8
 pkgrel=2
 arch=('x86_64')
-url="http://hunspell.sf.net;
+url="https://hunspell.sf.net;
 license=('GPL2' 'LGPL2.1' 'MPL')
 makedepends=('glibc' 'perl')
-source=(http://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)
+source=(https://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)
 sha1sums=('0556c392beb59433e577e3517575801212201df6')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:14:41
  Author: andyrtr
Revision: 360608

use https url

Modified:
  gutenprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:13:06 UTC (rev 360607)
+++ PKGBUILD2019-08-23 14:14:41 UTC (rev 360608)
@@ -7,11 +7,11 @@
 pkgdesc="Top quality printer drivers for POSIX systems"
 arch=('x86_64')
 license=('GPL')
+url="http://gimp-print.sourceforge.net/; # no https
 makedepends=('gimp' 'gtk2' 'cups' 'ghostscript'
 # for the docs
 'dialog' 'doxygen' 'docbook-utils' 'texi2html' 'texlive-bin')
-source=(http://downloads.sourceforge.net/gimp-print/$pkgname-$pkgver.tar.xz)
-url="http://gimp-print.sourceforge.net/;
+source=(https://downloads.sourceforge.net/gimp-print/$pkgname-$pkgver.tar.xz)
 options=('!emptydirs')
 sha1sums=('f7e03d5c7070035ef0acba62973f57bbc505ef68')
 


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:13:06
  Author: andyrtr
Revision: 360607

use https url

Modified:
  glew/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:12:07 UTC (rev 360606)
+++ PKGBUILD2019-08-23 14:13:06 UTC (rev 360607)
@@ -7,10 +7,10 @@
 pkgrel=1
 pkgdesc="The OpenGL Extension Wrangler Library"
 arch=('x86_64')
-url="http://glew.sourceforge.net;
+url="http://glew.sourceforge.net; # no https available
 license=('BSD' 'MIT' 'GPL')
 depends=('libxmu' 'libxi' 'glu')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
 sha1sums=('18eca05460d0b61709fc115e632b6fe320718b44')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:12:07
  Author: andyrtr
Revision: 360606

use https url

Modified:
  docbook-sgml31/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:11:38 UTC (rev 360605)
+++ PKGBUILD2019-08-23 14:12:07 UTC (rev 360606)
@@ -12,7 +12,7 @@
 license=('MIT')
 depends=('sgml-common')
 install=$pkgname.install
-source=("http://www.docbook.org/sgml/${pkgver}/docbk31.zip;)
+source=("https://www.docbook.org/sgml/${pkgver}/docbk31.zip;)
 sha256sums=('20261d2771b9a052abfa3d8fab1aa62be05791a010281c566f9073bf0e644538')
 
 build() {


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

2019-08-23 Thread Andreas Radke via arch-commits
Date: Friday, August 23, 2019 @ 14:11:38
  Author: andyrtr
Revision: 360605

use https url

Modified:
  docbook-sgml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 14:11:07 UTC (rev 360604)
+++ PKGBUILD2019-08-23 14:11:38 UTC (rev 360605)
@@ -7,11 +7,11 @@
 pkgrel=6
 pkgdesc='Document type definitions for verification of SGML data files against 
the DocBook rule set.'
 arch=('any')
-url='http://www.docbook.org/sgml/'
+url='https://www.docbook.org/sgml/'
 license=('MIT')
 depends=('sgml-common')
 install='docbook-sgml.install'
-source=("http://www.docbook.org/sgml/${pkgver}/docbook-${pkgver}.zip;)
+source=("https://www.docbook.org/sgml/${pkgver}/docbook-${pkgver}.zip;)
 sha256sums=('8043e514e80c6c19cb146b5d37937d1305bf3abf9b0097c36df7f70f611cdf43')
 
 build() {


  1   2   3   >