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

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Friday, December 28, 2018 @ 07:50:52
  Author: archange
Revision: 418601

archrelease: copy trunk to community-staging-x86_64

Added:
  http-parser/repos/community-staging-x86_64/
  http-parser/repos/community-staging-x86_64/PKGBUILD
(from rev 418600, http-parser/trunk/PKGBUILD)

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

Copied: http-parser/repos/community-staging-x86_64/PKGBUILD (from rev 418600, 
http-parser/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-28 07:50:52 UTC (rev 418601)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+# Contributor: Brian Bidulock 
+
+pkgname=http-parser
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="Parser for HTTP Request/Response written in C"
+arch=('x86_64')
+url="https://github.com/nodejs/http-parser;
+license=('MIT')
+depends=('glibc')
+source=($pkgname-$pkgver.tar.gz::"${url}/archive/v$pkgver.tar.gz")
+sha512sums=('40acecbf71b9f0b4ae857c74c3ec0784d7f341a0cb83cf82b308387d0c5b56d38b282241aaf8ca93816970f2a9e67989f3d9d456459f3986c29fe51ab520155e')
+
+prepare() {
+  sed -i 's|-Werror||' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make library
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX="$pkgdir/usr" install
+  install -Dm644 LICENSE-MIT -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in http-parser/trunk (PKGBUILD http-max-header-size.patch)

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Friday, December 28, 2018 @ 07:50:40
  Author: archange
Revision: 418600

upgpkg: http-parser 2.9.0-1

Drop released patch.

Modified:
  http-parser/trunk/PKGBUILD
Deleted:
  http-parser/trunk/http-max-header-size.patch

+
 PKGBUILD   |   14 ++-
 http-max-header-size.patch |   86 ---
 2 files changed, 5 insertions(+), 95 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 06:17:34 UTC (rev 418599)
+++ PKGBUILD2018-12-28 07:50:40 UTC (rev 418600)
@@ -2,22 +2,18 @@
 # Contributor: Brian Bidulock 
 
 pkgname=http-parser
-pkgver=2.8.1
-pkgrel=2
+pkgver=2.9.0
+pkgrel=1
 pkgdesc="Parser for HTTP Request/Response written in C"
 arch=('x86_64')
 url="https://github.com/nodejs/http-parser;
 license=('MIT')
 depends=('glibc')
-source=($pkgname-$pkgver.tar.gz::"${url}/archive/v$pkgver.tar.gz"
-http-max-header-size.patch) # 
"${url}/commit/0ae8d93f7335c0279f37b5ca5c26ea881ac17586.patch" + backporting
-sha512sums=('6f52f543d979f39688ccefae236527a8183929b3d30f5370570107b01cf89d0338b448249a81102b78d31615d2e8f6e7c708f8961f55ece08e7d3a40e5ad0883'
-
'24de54a77860e2d1642bd0e74562a411374967fe6a08913a885b526185089b0a8bb78f25462fec2accfbeb63d249afb2385de3c82f8d9d86bc9d430ede0e7824')
+source=($pkgname-$pkgver.tar.gz::"${url}/archive/v$pkgver.tar.gz")
+sha512sums=('40acecbf71b9f0b4ae857c74c3ec0784d7f341a0cb83cf82b308387d0c5b56d38b282241aaf8ca93816970f2a9e67989f3d9d456459f3986c29fe51ab520155e')
 
 prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|-Werror||' Makefile
-  patch -p1 -i ../http-max-header-size.patch
+  sed -i 's|-Werror||' $pkgname-$pkgver/Makefile
 }
 
 build() {

Deleted: http-max-header-size.patch
===
--- http-max-header-size.patch  2018-12-28 06:17:34 UTC (rev 418599)
+++ http-max-header-size.patch  2018-12-28 07:50:40 UTC (rev 418600)
@@ -1,86 +0,0 @@
-From 0ae8d93f7335c0279f37b5ca5c26ea881ac17586 Mon Sep 17 00:00:00 2001
-From: cjihrig 
-Date: Mon, 3 Dec 2018 09:35:31 -0500
-Subject: [PATCH] support overriding HTTP_MAX_HEADER_SIZE at runtime
-
-This commit adds http_parser_set_max_header_size(), which can
-override the compile time HTTP_MAX_HEADER_SIZE value.
-
-Fixes: https://github.com/nodejs/node/issues/24692
-Refs: https://github.com/nodejs/node/pull/24811
-PR-URL: https://github.com/nodejs/http-parser/pull/453
-Reviewed-By: Ben Noordhuis 

- http_parser.c | 17 -
- http_parser.h |  3 +++
- 2 files changed, 15 insertions(+), 5 deletions(-)
-
-diff --git a/http_parser.c b/http_parser.c
-index ba1374e..bb17bd2 100644
 a/http_parser.c
-+++ b/http_parser.c
-@@ -25,6 +25,8 @@
- #include 
- #include 
- 
-+static uint32_t max_header_size = HTTP_MAX_HEADER_SIZE;
-+
- #ifndef ULLONG_MAX
- # define ULLONG_MAX ((uint64_t) -1) /* 2^64-1 */
- #endif
-@@ -137,20 +139,20 @@ do { 
\
- } while (0)
- 
- /* Don't allow the total size of the HTTP headers (including the status
-- * line) to exceed HTTP_MAX_HEADER_SIZE.  This check is here to protect
-+ * line) to exceed max_header_size.  This check is here to protect
-  * embedders against denial-of-service attacks where the attacker feeds
-  * us a never-ending header that the embedder keeps buffering.
-  *
-  * This check is arguably the responsibility of embedders but we're doing
-  * it on the embedder's behalf because most won't bother and this way we
-- * make the web a little safer.  HTTP_MAX_HEADER_SIZE is still far bigger
-+ * make the web a little safer.  max_header_size is still far bigger
-  * than any reasonable request or response so this should never affect
-  * day-to-day operation.
-  */
- #define COUNT_HEADER_SIZE(V) \
- do { \
-   parser->nread += (V);  \
--  if (UNLIKELY(parser->nread > (HTTP_MAX_HEADER_SIZE))) {\
-+  if (UNLIKELY(parser->nread > max_header_size)) {   \
- SET_ERRNO(HPE_HEADER_OVERFLOW);  \
- goto error;  \
-   }  \
-@@ -1471,7 +1473,7 @@ size_t http_parser_execute (http_parser *parser,
-   const char* p_lf;
-   size_t limit = data + len - p;
- 
--  limit = MIN(limit, HTTP_MAX_HEADER_SIZE);
-+  limit = MIN(limit, max_header_size);
- 
-   p_cr = (const char*) memchr(p, CR, limit);
-   p_lf = (const char*) memchr(p, LF, limit);
-@@ -2438,3 +2440,8 @@ http_parser_version(void) {
-  HTTP_PARSER_VERSION_MINOR * 0x00100 |
-  HTTP_PARSER_VERSION_PATCH * 0x1;
- }
-+
-+void

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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 06:17:34
  Author: polyzen
Revision: 418599

Uncomment tests

Modified:
  proselint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 05:53:14 UTC (rev 418598)
+++ PKGBUILD2018-12-28 06:17:34 UTC (rev 418599)
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('python-click' 'python-future' 'python-six')
 makedepends=('python-setuptools')
-#checkdepends=('python-mock' 'python-nose' 'python-pytest')
+checkdepends=('python-mock' 'python-nose' 'python-pytest')
 conflicts=('python-proselint')
 replaces=('python-proselint')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
@@ -21,10 +21,10 @@
   python setup.py build
 }
 
-#check() {
-#  cd $pkgname-$pkgver
-#  pytest
-#}
+check() {
+  cd $pkgname-$pkgver
+  pytest
+}
 
 package() {
   cd $pkgname-$pkgver


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 05:53:14
  Author: polyzen
Revision: 418598

archrelease: copy trunk to community-any

Added:
  xandikos/repos/community-any/
  xandikos/repos/community-any/PKGBUILD
(from rev 418597, xandikos/trunk/PKGBUILD)

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

Copied: xandikos/repos/community-any/PKGBUILD (from rev 418597, 
xandikos/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-28 05:53:14 UTC (rev 418598)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=xandikos
+pkgver=0.0.11
+pkgrel=2
+pkgdesc='Lightweight yet complete CardDAV/CalDAV server that backs onto a Git 
repository'
+arch=('any')
+url=https://www.xandikos.org/
+license=('GPL3')
+depends=('python-defusedxml' 'python-dulwich' 'python-icalendar' 
'python-jinja')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/x/xandikos/xandikos-$pkgver.tar.gz;)
+sha512sums=('52eb3d064690a3ca8bb99c90325485102600905def933939b5a79716409b7706fb8a8c977adaa59200ab6fb49ff2ba68fc1dab5f05bf43add7f72eaa9a18f40b')
+
+build() {
+  cd xandikos-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd xandikos-$pkgver
+  python -m unittest xandikos.tests.test_suite
+}
+
+package() {
+  cd xandikos-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 xandikos.1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 05:52:51
  Author: polyzen
Revision: 418597

Initial commit

Added:
  xandikos/
  xandikos/repos/
  xandikos/trunk/
  xandikos/trunk/PKGBUILD

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

Added: xandikos/trunk/PKGBUILD
===
--- xandikos/trunk/PKGBUILD (rev 0)
+++ xandikos/trunk/PKGBUILD 2018-12-28 05:52:51 UTC (rev 418597)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=xandikos
+pkgver=0.0.11
+pkgrel=2
+pkgdesc='Lightweight yet complete CardDAV/CalDAV server that backs onto a Git 
repository'
+arch=('any')
+url=https://www.xandikos.org/
+license=('GPL3')
+depends=('python-defusedxml' 'python-dulwich' 'python-icalendar' 
'python-jinja')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/x/xandikos/xandikos-$pkgver.tar.gz;)
+sha512sums=('52eb3d064690a3ca8bb99c90325485102600905def933939b5a79716409b7706fb8a8c977adaa59200ab6fb49ff2ba68fc1dab5f05bf43add7f72eaa9a18f40b')
+
+build() {
+  cd xandikos-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd xandikos-$pkgver
+  python -m unittest xandikos.tests.test_suite
+}
+
+package() {
+  cd xandikos-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 xandikos.1
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 05:42:33
  Author: polyzen
Revision: 418596

archrelease: copy trunk to community-any

Added:
  python-dulwich/repos/community-any/
  python-dulwich/repos/community-any/PKGBUILD
(from rev 418595, python-dulwich/trunk/PKGBUILD)

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

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


[arch-commits] Commit in (4 files)

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 05:42:11
  Author: polyzen
Revision: 418595

Initial commit

Added:
  python-dulwich/
  python-dulwich/repos/
  python-dulwich/trunk/
  python-dulwich/trunk/PKGBUILD

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

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


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

2018-12-27 Thread Jan Steffens via arch-commits
Date: Friday, December 28, 2018 @ 03:45:39
  Author: heftig
Revision: 342773

Remove a stray " messing up Vim's highlighting

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-28 03:21:54 UTC (rev 342772)
+++ PKGBUILD2018-12-28 03:45:39 UTC (rev 342773)
@@ -20,7 +20,7 @@
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D'  # Emil Velikov 

   '946D09B5E4C9845E63075FF1D961C596A7203456'  # Andres Gomez 

-  'E3E8F480C52ADD73B278EE78E1ECBE07D7D70895'  # Juan Antonio 
Suárez Romero (Igalia, S.L.) "
+  'E3E8F480C52ADD73B278EE78E1ECBE07D7D70895'  # Juan Antonio 
Suárez Romero (Igalia, S.L.) 
   'A5CC9FEC93F2F837CB044912336909B6B25FADFA'  # Juan A. Suarez 
Romero 
   '71C4B75620BC75708B4BDB254C95FAAB3EB073EC') # Dylan Baker 

 


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 01:45:57
  Author: polyzen
Revision: 418587

archrelease: copy trunk to community-x86_64

Added:
  rink/repos/community-x86_64/
  rink/repos/community-x86_64/PKGBUILD
(from rev 418586, rink/trunk/PKGBUILD)

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

Copied: rink/repos/community-x86_64/PKGBUILD (from rev 418586, 
rink/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-12-28 01:45:57 UTC (rev 418587)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel M. Capella 
+
+_commit=0db3f4dcd0e7b661c720418bedd88f9e4e6e37b7
+pkgname=rink
+pkgver=0.4.3.r8.g0db3f4d
+pkgrel=2
+pkgdesc='Unit conversion tool and library written in rust'
+arch=('x86_64')
+url=https://github.com/tiffany352/rink-rs
+license=('GPL3' 'MPL2')
+depends=('gcc-libs' 'gmp' 'openssl')
+makedepends=('rust')
+source=("rink-$pkgver.tar.gz::$url/archive/$_commit.tar.gz")
+sha512sums=('719299bf3792e3c468679e6bfa910a31eef2ee0a1d78943109992773ab18f9b2e756b5f580c8200db18d9a5ec4872ab3a74a0788d442e526efb1c85a7d686227')
+
+build() {
+  cd rink-rs-$_commit
+  cargo build --release
+}
+
+check() {
+  cd rink-rs-$_commit
+  cargo test --release
+}
+
+package() {
+  cd rink-rs-$_commit
+  install -Dt "$pkgdir"/usr/bin target/release/rink
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Friday, December 28, 2018 @ 01:45:30
  Author: polyzen
Revision: 418586

Initial commit

Added:
  rink/
  rink/repos/
  rink/trunk/
  rink/trunk/PKGBUILD

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

Added: rink/trunk/PKGBUILD
===
--- rink/trunk/PKGBUILD (rev 0)
+++ rink/trunk/PKGBUILD 2018-12-28 01:45:30 UTC (rev 418586)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel M. Capella 
+
+_commit=0db3f4dcd0e7b661c720418bedd88f9e4e6e37b7
+pkgname=rink
+pkgver=0.4.3.r8.g0db3f4d
+pkgrel=2
+pkgdesc='Unit conversion tool and library written in rust'
+arch=('x86_64')
+url=https://github.com/tiffany352/rink-rs
+license=('GPL3' 'MPL2')
+depends=('gcc-libs' 'gmp' 'openssl')
+makedepends=('rust')
+source=("rink-$pkgver.tar.gz::$url/archive/$_commit.tar.gz")
+sha512sums=('719299bf3792e3c468679e6bfa910a31eef2ee0a1d78943109992773ab18f9b2e756b5f580c8200db18d9a5ec4872ab3a74a0788d442e526efb1c85a7d686227')
+
+build() {
+  cd rink-rs-$_commit
+  cargo build --release
+}
+
+check() {
+  cd rink-rs-$_commit
+  cargo test --release
+}
+
+package() {
+  cd rink-rs-$_commit
+  install -Dt "$pkgdir"/usr/bin target/release/rink
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Friday, December 28, 2018 @ 00:01:55
  Author: arodseth
Revision: 418585

archrelease: copy trunk to community-any

Added:
  pychess/repos/community-any/PKGBUILD
(from rev 418584, pychess/trunk/PKGBUILD)
Deleted:
  pychess/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-28 00:01:39 UTC (rev 418584)
+++ PKGBUILD2018-12-28 00:01:55 UTC (rev 418585)
@@ -1,30 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Allan McRae 
-# Contributor: Alexander Fehr 
-
-pkgname=pychess
-pkgver=0.99.3
-pkgrel=1
-pkgdesc='Chess client'
-arch=('any')
-url='http://pychess.org/'
-license=('GPL')
-depends=('gst-plugins-base' 'gtksourceview3' 'python-cairo' 'python-gobject'
- 'python-ptyprocess' 'python-psutil' 'python-sqlalchemy' 
'python-pexpect')
-# /usr/bin/fire and /usr/bin/gringo are mistaken for chess engines...
-conflicts=('mesa-demos' 'clingo')
-makedepends=('git' 'python-pexpect' 'xorg-server-xvfb')
-source=("git+https://github.com/$pkgname/$pkgname#tag=$pkgver;)
-sha256sums=('SKIP')
-
-package() {
-  cd pychess
-
-  xvfb-run python setup.py install --prefix=/usr --root="$pkgdir"
-
-  # FS#59882
-  find "$pkgdir" -wholename "external/pexpect" -type d -delete
-}
-
-# getver: 
raw.githubusercontent.com/pychess/pychess/master/lib/pychess/__init__.py
-# vim: ts=2 sw=2 et:

Copied: pychess/repos/community-any/PKGBUILD (from rev 418584, 
pychess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-28 00:01:55 UTC (rev 418585)
@@ -0,0 +1,30 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Allan McRae 
+# Contributor: Alexander Fehr 
+
+pkgname=pychess
+pkgver=0.99.4
+pkgrel=1
+pkgdesc='Chess client'
+arch=('any')
+url='http://pychess.org/'
+license=('GPL')
+depends=('gst-plugins-base' 'gtksourceview3' 'python-cairo' 'python-gobject'
+ 'python-ptyprocess' 'python-psutil' 'python-sqlalchemy' 
'python-pexpect')
+# /usr/bin/fire and /usr/bin/gringo are mistaken for chess engines...
+conflicts=('mesa-demos' 'clingo')
+makedepends=('git' 'python-pexpect' 'xorg-server-xvfb')
+source=("git+https://github.com/$pkgname/$pkgname#tag=$pkgver;)
+sha256sums=('SKIP')
+
+package() {
+  cd pychess
+
+  xvfb-run python setup.py install --prefix=/usr --root="$pkgdir"
+
+  # FS#59882
+  find "$pkgdir" -wholename "external/pexpect" -type d -delete
+}
+
+# getver: 
raw.githubusercontent.com/pychess/pychess/master/lib/pychess/__init__.py
+# vim: ts=2 sw=2 et:


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

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Friday, December 28, 2018 @ 00:01:39
  Author: arodseth
Revision: 418584

upgpkg: pychess 0.99.4-1

Modified:
  pychess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 23:41:26 UTC (rev 418583)
+++ PKGBUILD2018-12-28 00:01:39 UTC (rev 418584)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Fehr 
 
 pkgname=pychess
-pkgver=0.99.3
+pkgver=0.99.4
 pkgrel=1
 pkgdesc='Chess client'
 arch=('any')


[arch-commits] Commit in firefox-dark-reader/trunk (PKGBUILD)

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:41:26
  Author: polyzen
Revision: 418583

Add to firefox-addons group

Modified:
  firefox-dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 23:32:07 UTC (rev 418582)
+++ PKGBUILD2018-12-27 23:41:26 UTC (rev 418583)
@@ -8,6 +8,7 @@
 url=https://darkreader.org/
 arch=('any')
 license=('MIT')
+groups=('firefox-addons')
 conflicts=('firefox-extension-dark-reader')
 replaces=('firefox-extension-dark-reader')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:32:07
  Author: polyzen
Revision: 418582

archrelease: copy trunk to community-any

Added:
  proselint/repos/community-any/PKGBUILD
(from rev 418581, proselint/trunk/PKGBUILD)
Deleted:
  proselint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 23:31:49 UTC (rev 418581)
+++ PKGBUILD2018-12-27 23:32:07 UTC (rev 418582)
@@ -1,32 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Shane Stone 
-
-pkgname=proselint
-pkgver=0.10.2
-pkgrel=3
-pkgdesc='Linter for prose'
-arch=('any')
-url=https://github.com/amperser/proselint
-license=('BSD')
-depends=('python-click' 'python-future' 'python-six')
-makedepends=('python-setuptools')
-#checkdepends=('python-mock' 'python-nose' 'python-pytest')
-replaces=('python-proselint')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-#check() {
-#  cd $pkgname-$pkgver
-#  pytest
-#}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: proselint/repos/community-any/PKGBUILD (from rev 418581, 
proselint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 23:32:07 UTC (rev 418582)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Shane Stone 
+
+pkgname=proselint
+pkgver=0.10.2
+pkgrel=4
+pkgdesc='Linter for prose'
+arch=('any')
+url=https://github.com/amperser/proselint
+license=('BSD')
+depends=('python-click' 'python-future' 'python-six')
+makedepends=('python-setuptools')
+#checkdepends=('python-mock' 'python-nose' 'python-pytest')
+conflicts=('python-proselint')
+replaces=('python-proselint')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+#check() {
+#  cd $pkgname-$pkgver
+#  pytest
+#}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:31:49
  Author: polyzen
Revision: 418581

upgpkg: proselint 0.10.2-4

Add conflicts()

Modified:
  proselint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 23:30:29 UTC (rev 418580)
+++ PKGBUILD2018-12-27 23:31:49 UTC (rev 418581)
@@ -3,7 +3,7 @@
 
 pkgname=proselint
 pkgver=0.10.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Linter for prose'
 arch=('any')
 url=https://github.com/amperser/proselint
@@ -11,6 +11,7 @@
 depends=('python-click' 'python-future' 'python-six')
 makedepends=('python-setuptools')
 #checkdepends=('python-mock' 'python-nose' 'python-pytest')
+conflicts=('python-proselint')
 replaces=('python-proselint')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:30:29
  Author: polyzen
Revision: 418580

archrelease: copy trunk to community-any

Added:
  vint/repos/community-any/PKGBUILD
(from rev 418579, vint/trunk/PKGBUILD)
Deleted:
  vint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 23:30:12 UTC (rev 418579)
+++ PKGBUILD2018-12-27 23:30:29 UTC (rev 418580)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Darshit Shah 
-
-pkgname=vint
-pkgver=0.3.19
-pkgrel=3
-pkgdesc='Lint tool for Vim script Language'
-arch=('any')
-url=https://github.com/Kuniwak/vint
-license=('MIT')
-depends=('python-ansicolor' 'python-chardet' 'python-setuptools' 'python-yaml')
-checkdepends=('python-pytest')
-replaces=('python-vint')
-source=("$url/archive/v$pkgver/vint-v$pkgver.tar.gz")
-sha512sums=('b9024ed1cd8a18a916798e691ba0db31985034b2420e33c094459a48254c7c8f6fe89a1a64858a67ff95b0b48e67a780cf975940646af2685d2b95640e8121f9')
-
-build() {
-  cd vint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd vint-$pkgver
-  pytest
-}
-
-package() {
-  cd vint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vint/repos/community-any/PKGBUILD (from rev 418579, vint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 23:30:29 UTC (rev 418580)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Darshit Shah 
+
+pkgname=vint
+pkgver=0.3.19
+pkgrel=4
+pkgdesc='Lint tool for Vim script Language'
+arch=('any')
+url=https://github.com/Kuniwak/vint
+license=('MIT')
+depends=('python-ansicolor' 'python-chardet' 'python-setuptools' 'python-yaml')
+checkdepends=('python-pytest')
+conflicts=('python-vint')
+replaces=('python-vint')
+source=("$url/archive/v$pkgver/vint-v$pkgver.tar.gz")
+sha512sums=('b9024ed1cd8a18a916798e691ba0db31985034b2420e33c094459a48254c7c8f6fe89a1a64858a67ff95b0b48e67a780cf975940646af2685d2b95640e8121f9')
+
+build() {
+  cd vint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd vint-$pkgver
+  pytest
+}
+
+package() {
+  cd vint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:30:12
  Author: polyzen
Revision: 418579

upgpkg: vint 0.3.19-4

Modified:
  vint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 23:27:32 UTC (rev 418578)
+++ PKGBUILD2018-12-27 23:30:12 UTC (rev 418579)
@@ -3,7 +3,7 @@
 
 pkgname=vint
 pkgver=0.3.19
-pkgrel=3
+pkgrel=4
 pkgdesc='Lint tool for Vim script Language'
 arch=('any')
 url=https://github.com/Kuniwak/vint
@@ -10,6 +10,7 @@
 license=('MIT')
 depends=('python-ansicolor' 'python-chardet' 'python-setuptools' 'python-yaml')
 checkdepends=('python-pytest')
+conflicts=('python-vint')
 replaces=('python-vint')
 source=("$url/archive/v$pkgver/vint-v$pkgver.tar.gz")
 
sha512sums=('b9024ed1cd8a18a916798e691ba0db31985034b2420e33c094459a48254c7c8f6fe89a1a64858a67ff95b0b48e67a780cf975940646af2685d2b95640e8121f9')


[arch-commits] Commit in firefox-dark-reader/repos (2 files)

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:27:32
  Author: polyzen
Revision: 418578

archrelease: copy trunk to community-any

Added:
  firefox-dark-reader/repos/community-any/
  firefox-dark-reader/repos/community-any/PKGBUILD
(from rev 418577, firefox-dark-reader/trunk/PKGBUILD)

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

Copied: firefox-dark-reader/repos/community-any/PKGBUILD (from rev 418577, 
firefox-dark-reader/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-27 23:27:32 UTC (rev 418578)
@@ -0,0 +1,21 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.7.2
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+url=https://darkreader.org/
+arch=('any')
+license=('MIT')
+conflicts=('firefox-extension-dark-reader')
+replaces=('firefox-extension-dark-reader')
+source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('b1d47fb27119ec186fefb7d00cb992f0efdeed4b3e92a8f5d735c5a59b45b224')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:27:07
  Author: polyzen
Revision: 418577

Initial commit

Added:
  firefox-dark-reader/
  firefox-dark-reader/repos/
  firefox-dark-reader/trunk/
  firefox-dark-reader/trunk/PKGBUILD

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

Added: firefox-dark-reader/trunk/PKGBUILD
===
--- firefox-dark-reader/trunk/PKGBUILD  (rev 0)
+++ firefox-dark-reader/trunk/PKGBUILD  2018-12-27 23:27:07 UTC (rev 418577)
@@ -0,0 +1,21 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.7.2
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+url=https://darkreader.org/
+arch=('any')
+license=('MIT')
+conflicts=('firefox-extension-dark-reader')
+replaces=('firefox-extension-dark-reader')
+source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('b1d47fb27119ec186fefb7d00cb992f0efdeed4b3e92a8f5d735c5a59b45b224')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:04:27
  Author: polyzen
Revision: 418576

archrelease: copy trunk to community-any

Added:
  gixy/repos/community-any/
  gixy/repos/community-any/PKGBUILD
(from rev 418575, gixy/trunk/PKGBUILD)

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

Copied: gixy/repos/community-any/PKGBUILD (from rev 418575, gixy/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-27 23:04:27 UTC (rev 418576)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=gixy
+pkgver=0.1.20
+pkgrel=2
+pkgdesc='Nginx configuration static analyzer'
+arch=('any')
+url=https://github.com/yandex/gixy
+license=('MPL2')
+depends=('python-argparse' 'python-cached-property' 'python-configargparse'
+ 'python-jinja' 'python-pyparsing' 'python-setuptools' 'python-six')
+source=("https://files.pythonhosted.org/packages/source/g/gixy/gixy-$pkgver.tar.gz;)
+sha512sums=('e2d853c78d8dce6a46e3dffb8f27e0d975915664977526c722b33a2e3146feaf07f25d02f3d28abefecd1a0751d1687b05773a8891d0b83f7f36e81512c5395a')
+
+build() {
+  cd gixy-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd gixy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:04:08
  Author: polyzen
Revision: 418575

Initial commit

Added:
  gixy/
  gixy/repos/
  gixy/trunk/
  gixy/trunk/PKGBUILD

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

Added: gixy/trunk/PKGBUILD
===
--- gixy/trunk/PKGBUILD (rev 0)
+++ gixy/trunk/PKGBUILD 2018-12-27 23:04:08 UTC (rev 418575)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=gixy
+pkgver=0.1.20
+pkgrel=2
+pkgdesc='Nginx configuration static analyzer'
+arch=('any')
+url=https://github.com/yandex/gixy
+license=('MPL2')
+depends=('python-argparse' 'python-cached-property' 'python-configargparse'
+ 'python-jinja' 'python-pyparsing' 'python-setuptools' 'python-six')
+source=("https://files.pythonhosted.org/packages/source/g/gixy/gixy-$pkgver.tar.gz;)
+sha512sums=('e2d853c78d8dce6a46e3dffb8f27e0d975915664977526c722b33a2e3146feaf07f25d02f3d28abefecd1a0751d1687b05773a8891d0b83f7f36e81512c5395a')
+
+build() {
+  cd gixy-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd gixy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:01:25
  Author: polyzen
Revision: 418574

archrelease: copy trunk to community-x86_64

Added:
  diskus/repos/community-x86_64/
  diskus/repos/community-x86_64/PKGBUILD
(from rev 418573, diskus/trunk/PKGBUILD)

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

Copied: diskus/repos/community-x86_64/PKGBUILD (from rev 418573, 
diskus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-12-27 23:01:25 UTC (rev 418574)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=diskus
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="Minimal, fast alternative to 'du -sh'"
+arch=('x86_64')
+url=https://github.com/sharkdp/diskus
+license=('Apache' 'MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("diskus-$pkgver.tar.gz::https://crates.io/api/v1/crates/diskus/$pkgver/download;)
+sha512sums=('f2c3cf84732790a8a47bfeee4054f05c4a81f714b2bc0e6ed4db80e1d0ad7449b72382dfdbd266fb9900228c4dd546396ee5af26b3db43b4c2aea1c6ea4ec1ea')
+
+build() {
+  cd diskus-$pkgver
+  cargo build --release
+}
+
+package() {
+  cd diskus-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/diskus
+  install -Dm644 LICENSE-MIT "$pkgdir"/usr/share/licenses/diskus/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 23:01:04
  Author: polyzen
Revision: 418573

Initial commit

Added:
  diskus/
  diskus/repos/
  diskus/trunk/
  diskus/trunk/PKGBUILD

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

Added: diskus/trunk/PKGBUILD
===
--- diskus/trunk/PKGBUILD   (rev 0)
+++ diskus/trunk/PKGBUILD   2018-12-27 23:01:04 UTC (rev 418573)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=diskus
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="Minimal, fast alternative to 'du -sh'"
+arch=('x86_64')
+url=https://github.com/sharkdp/diskus
+license=('Apache' 'MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("diskus-$pkgver.tar.gz::https://crates.io/api/v1/crates/diskus/$pkgver/download;)
+sha512sums=('f2c3cf84732790a8a47bfeee4054f05c4a81f714b2bc0e6ed4db80e1d0ad7449b72382dfdbd266fb9900228c4dd546396ee5af26b3db43b4c2aea1c6ea4ec1ea')
+
+build() {
+  cd diskus-$pkgver
+  cargo build --release
+}
+
+package() {
+  cd diskus-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/diskus
+  install -Dm644 LICENSE-MIT "$pkgdir"/usr/share/licenses/diskus/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 22:52:42
  Author: bgyorgy
Revision: 418571

upgpkg: gnac 0.2.4.1-7

Add AppStream metadata

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

--+
 PKGBUILD |8 +++-
 gnac.appdata.xml |   21 +
 2 files changed, 28 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 21:41:41 UTC (rev 418570)
+++ PKGBUILD2018-12-27 22:52:42 UTC (rev 418571)
@@ -2,7 +2,7 @@
 
 pkgname=gnac
 pkgver=0.2.4.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Audio converter for GNOME"
 arch=('x86_64')
 url="http://gnac.sourceforge.net/;
@@ -14,9 +14,11 @@
 'gst-plugins-ugly: Extra media codecs'
 'gst-libav: Extra media codecs')
 source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2
+gnac.appdata.xml
 fix-build.patch
 gstreamer-1.0.patch)
 sha256sums=('8f9c4731bbc40fde57c311a2a7fabe4e3200198abfe7415c659b98a2d54869da'
+'936ff9d1830c2649a34cbd1f208fb572de6dd2f89aeefa20e750227287125774'
 'a7a8cc9d3cc9408776e64be50beb7c48cc1a3d9499cb98e2dac5f45a151475ac'
 '57331aaf1987e8920594a4a753bed2c719d2152c7448ab53ba09ec208521abae')
 
@@ -29,6 +31,9 @@
   # Port to GStreamer 1.0
   patch -Np1 -i ../gstreamer-1.0.patch
 
+  # Don't install icon into pixmaps
+  sed -i '/pixmaps/d' data/icons/Makefile.am
+
   autoreconf -fi
   intltoolize --force
 }
@@ -43,4 +48,5 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnac.appdata.xml 
"$pkgdir/usr/share/metainfo/gnac.appdata.xml"
 }

Added: gnac.appdata.xml
===
--- gnac.appdata.xml(rev 0)
+++ gnac.appdata.xml2018-12-27 22:52:42 UTC (rev 418571)
@@ -0,0 +1,21 @@
+
+
+  org.gnome.gnac
+  gnac.desktop
+  Gnac
+  Audio converter for GNOME
+  CC0-1.0
+  GPL-3.0+
+  
+Gnac is an easy to use audio conversion program for the Gnome desktop. 
It is designed to be powerful but simple! It provides easy audio files 
conversion between all GStreamer supported audio formats.
+  
+  
+
+  http://gnac.sourceforge.net/images/gnac.png
+
+  
+  https://gitlab.gnome.org/GNOME/gnac/issues
+  http://gnac.sourceforge.net/
+  gnac-l...@gnome.org
+  gnac
+


[arch-commits] Commit in nvidia-390xx/repos (5 files)

2018-12-27 Thread Christian Hesse via arch-commits
Date: Thursday, December 27, 2018 @ 21:48:07
  Author: eworm
Revision: 342767

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 342766, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 342766, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-4.19.patch
(from rev 342766, nvidia-390xx/trunk/kernel-4.19.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-4.20.patch
(from rev 342766, nvidia-390xx/trunk/kernel-4.20.patch)

---+
 PKGBUILD  |   95 
 kernel-4.16.patch |   33 ++
 kernel-4.19.patch |   63 ++
 kernel-4.20.patch |   43 +++
 4 files changed, 234 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 342766, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-12-27 21:48:07 UTC (rev 342767)
@@ -0,0 +1,95 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.87
+_extramodules=extramodules-ARCH
+pkgrel=24
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.20' 'linux-headers<4.21')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch kernel-4.19.patch kernel-4.20.patch)
+sha256sums=('c7c07151e17f610af11f7870560d96c3a3ee9bb91ba1bb82fcc7b5d473d40b66'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'e425320bd3712cc789035d5936412724b0b410f50463980c0a48715fd3f8c431'
+'deb45f7636dfebe938dffe566df9e9a5deeb47ccaf0bfe16a2884579b2524075')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+# Ad-hoc patch
+patch -Np1 -i ../kernel-4.19.patch
+
+# struct ipmi_user
+patch -Np1 -i ../kernel-4.20.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux>=4.19' 'linux<4.20' "nvidia-390xx-utils=${pkgver}" 
'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 342766, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch 

[arch-commits] Commit in nvidia-390xx/trunk (PKGBUILD kernel-4.20.patch)

2018-12-27 Thread Christian Hesse via arch-commits
Date: Thursday, December 27, 2018 @ 21:47:55
  Author: eworm
Revision: 342766

upgpkg: nvidia-390xx 390.87-24

rebuilt for linux 4.20

Added:
  nvidia-390xx/trunk/kernel-4.20.patch
Modified:
  nvidia-390xx/trunk/PKGBUILD

---+
 PKGBUILD  |   12 
 kernel-4.20.patch |   43 +++
 2 files changed, 51 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 17:35:56 UTC (rev 342765)
+++ PKGBUILD2018-12-27 21:47:55 UTC (rev 342766)
@@ -6,20 +6,21 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.87
 _extramodules=extramodules-ARCH
-pkgrel=23
+pkgrel=24
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;
-makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.19' 'linux-headers<4.20')
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.20' 'linux-headers<4.21')
 conflicts=('nvidia')
 license=('custom')
 options=('!strip')
 _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
-kernel-4.16.patch kernel-4.19.patch)
+kernel-4.16.patch kernel-4.19.patch kernel-4.20.patch)
 sha256sums=('c7c07151e17f610af11f7870560d96c3a3ee9bb91ba1bb82fcc7b5d473d40b66'
 '622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
-'e425320bd3712cc789035d5936412724b0b410f50463980c0a48715fd3f8c431')
+'e425320bd3712cc789035d5936412724b0b410f50463980c0a48715fd3f8c431'
+'deb45f7636dfebe938dffe566df9e9a5deeb47ccaf0bfe16a2884579b2524075')
 
 prepare() {
 sh "${_pkg}.run" --extract-only
@@ -32,6 +33,9 @@
 # Ad-hoc patch
 patch -Np1 -i ../kernel-4.19.patch
 
+# struct ipmi_user
+patch -Np1 -i ../kernel-4.20.patch
+
 cp -a kernel kernel-dkms
 cd kernel-dkms
 sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf

Added: kernel-4.20.patch
===
--- kernel-4.20.patch   (rev 0)
+++ kernel-4.20.patch   2018-12-27 21:47:55 UTC (rev 342766)
@@ -0,0 +1,43 @@
+--- a/kernel/nvidia/os-interface.c
 b/kernel/nvidia/os-interface.c
+@@ -1670,7 +1670,7 @@
+ 
+ struct nv_ipmi_softc
+ {
+-ipmi_user_t p_user; // ptr to ipmi_msghandler user structure
++struct ipmi_user*p_user;
+ spinlock_t  msg_lock;
+ struct list_headmsgs;
+ NvU32   seqNum; //request sequence number
+@@ -1679,7 +1679,7 @@
+ static inline int
+ nv_ipmi_set_my_address
+ (
+-ipmi_user_t user,
++struct ipmi_user *user,
+ unsigned char   address
+ )
+ {
+--- a/kernel/nvidia-drm/nvidia-drm-gem-nvkms-memory.c
 b/kernel/nvidia-drm/nvidia-drm-gem-nvkms-memory.c
+@@ -20,6 +20,8 @@
+  * DEALINGS IN THE SOFTWARE.
+  */
+ 
++#include 
++
+ #include "nvidia-drm-conftest.h"
+ 
+ #if defined(NV_DRM_ATOMIC_MODESET_AVAILABLE)
+@@ -345,7 +347,11 @@ static int __nv_drm_vma_fault(struct vm_area_struct *vma,
+ 
+ page_offset = vmf->pgoff - drm_vma_node_start(>vma_node);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 0)
+ ret = vm_insert_pfn(vma, address, pfn + page_offset);
++#else
++ret = vmf_insert_pfn(vma, address, pfn + page_offset);
++#endif
+ 
+ switch (ret) {
+ case 0:


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 21:41:41
  Author: bgyorgy
Revision: 418570

archrelease: copy trunk to community-x86_64

Added:
  quiterss/repos/community-x86_64/0001-Fix-AppStream-metadata-validation.patch
(from rev 418569, 
quiterss/trunk/0001-Fix-AppStream-metadata-validation.patch)
  quiterss/repos/community-x86_64/PKGBUILD
(from rev 418569, quiterss/trunk/PKGBUILD)
Deleted:
  quiterss/repos/community-x86_64/PKGBUILD

--+
 0001-Fix-AppStream-metadata-validation.patch |   46 
 PKGBUILD |   69 ++---
 2 files changed, 86 insertions(+), 29 deletions(-)

Copied: 
quiterss/repos/community-x86_64/0001-Fix-AppStream-metadata-validation.patch 
(from rev 418569, quiterss/trunk/0001-Fix-AppStream-metadata-validation.patch)
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-27 21:41:41 UTC 
(rev 418570)
@@ -0,0 +1,46 @@
+From 23adebfdb14a6328ea3c58f17f9095ee0fe71f0d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Thu, 27 Dec 2018 22:31:12 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+---
+ quiterss.appdata.xml | 21 ++---
+ 1 file changed, 14 insertions(+), 7 deletions(-)
+
+diff --git a/quiterss.appdata.xml b/quiterss.appdata.xml
+index 653f3a7c..91e2b543 100644
+--- a/quiterss.appdata.xml
 b/quiterss.appdata.xml
+@@ -1,7 +1,7 @@
+ 
+ 
+-
+-  quiterss.desktop
++
++  org.quiterss.quiterss
+   CC0-1.0
+   GPL-3.0+
+   QuiteRSS
+@@ -15,10 +15,17 @@
+ 
+   
+   
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots01.png
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots02.png
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots07.png
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots01.png
++  
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots02.png
++  
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots07.png
++  
+   
++  quiterss.desktop
+   https://quiterss.org
+-  quitersst...@gmail.com
+-
++  quitersst...@gmail.com
++

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 21:41:37 UTC (rev 418569)
+++ PKGBUILD2018-12-27 21:41:41 UTC (rev 418570)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: willemw 
-# Contributor: ThecaTTony 
-# Contributor: 
-
-pkgname=quiterss
-pkgver=0.18.12
-pkgrel=1
-pkgdesc='Fast and light RSS/Atom feed reader written in Qt/С++'
-arch=(x86_64)
-url='https://quiterss.org/'
-license=(GPL3)
-depends=(gst-plugins-good qt5-multimedia qt5-webkit)
-makedepends=(qt5-tools)
-source=($pkgname-$pkgver.tar.gz::https://github.com/QuiteRSS/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('120de0d640e2c417d664872b8b8881c85c3e76aec9b76d235f0e12e5ee78f01f')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake-qt5 CONFIG+=release PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}
-

Copied: quiterss/repos/community-x86_64/PKGBUILD (from rev 418569, 
quiterss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 21:41:41 UTC (rev 418570)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György 
+# Contributor: willemw 
+# Contributor: ThecaTTony 
+# Contributor: 
+
+pkgname=quiterss
+pkgver=0.18.12
+pkgrel=2
+pkgdesc='Fast and light RSS/Atom feed reader written in Qt/С++'
+arch=(x86_64)
+url='https://quiterss.org/'
+license=(GPL3)
+depends=(desktop-file-utils gst-plugins-good qt5-multimedia qt5-webkit)
+makedepends=(qt5-tools)
+source=($pkgname-$pkgver.tar.gz::https://github.com/QuiteRSS/$pkgname/archive/$pkgver.tar.gz
+0001-Fix-AppStream-metadata-validation.patch)
+sha256sums=('120de0d640e2c417d664872b8b8881c85c3e76aec9b76d235f0e12e5ee78f01f'
+'5cae0fb12127223a5a1ce0424e44cfcb03949bfeedaa7cf2334a88f06f6c9a07')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix AppStream metadata validation
+  # https://github.com/QuiteRSS/quiterss/pull/1130
+  patch -Np1 -i ../0001-Fix-AppStream-metadata-validation.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  qmake-qt5 CONFIG+=release PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 quiterss.appdata.xml 
"$pkgdir/usr/share/metainfo/quiterss.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
+}
+


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 21:41:37
  Author: bgyorgy
Revision: 418569

upgpkg: quiterss 0.18.12-2

Add AppStream metadata

Added:
  quiterss/trunk/0001-Fix-AppStream-metadata-validation.patch
Modified:
  quiterss/trunk/PKGBUILD

--+
 0001-Fix-AppStream-metadata-validation.patch |   46 +
 PKGBUILD |   20 --
 2 files changed, 62 insertions(+), 4 deletions(-)

Added: 0001-Fix-AppStream-metadata-validation.patch
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-27 21:41:37 UTC 
(rev 418569)
@@ -0,0 +1,46 @@
+From 23adebfdb14a6328ea3c58f17f9095ee0fe71f0d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Thu, 27 Dec 2018 22:31:12 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+---
+ quiterss.appdata.xml | 21 ++---
+ 1 file changed, 14 insertions(+), 7 deletions(-)
+
+diff --git a/quiterss.appdata.xml b/quiterss.appdata.xml
+index 653f3a7c..91e2b543 100644
+--- a/quiterss.appdata.xml
 b/quiterss.appdata.xml
+@@ -1,7 +1,7 @@
+ 
+ 
+-
+-  quiterss.desktop
++
++  org.quiterss.quiterss
+   CC0-1.0
+   GPL-3.0+
+   QuiteRSS
+@@ -15,10 +15,17 @@
+ 
+   
+   
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots01.png
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots02.png
+-  https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots07.png
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots01.png
++  
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots02.png
++  
++  
++https://github.com/QuiteRSS/tools/raw/master/screenshots/screenshots07.png
++  
+   
++  quiterss.desktop
+   https://quiterss.org
+-  quitersst...@gmail.com
+-
++  quitersst...@gmail.com
++

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 21:28:25 UTC (rev 418568)
+++ PKGBUILD2018-12-27 21:41:37 UTC (rev 418569)
@@ -5,16 +5,26 @@
 
 pkgname=quiterss
 pkgver=0.18.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and light RSS/Atom feed reader written in Qt/С++'
 arch=(x86_64)
 url='https://quiterss.org/'
 license=(GPL3)
-depends=(gst-plugins-good qt5-multimedia qt5-webkit)
+depends=(desktop-file-utils gst-plugins-good qt5-multimedia qt5-webkit)
 makedepends=(qt5-tools)
-source=($pkgname-$pkgver.tar.gz::https://github.com/QuiteRSS/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('120de0d640e2c417d664872b8b8881c85c3e76aec9b76d235f0e12e5ee78f01f')
+source=($pkgname-$pkgver.tar.gz::https://github.com/QuiteRSS/$pkgname/archive/$pkgver.tar.gz
+0001-Fix-AppStream-metadata-validation.patch)
+sha256sums=('120de0d640e2c417d664872b8b8881c85c3e76aec9b76d235f0e12e5ee78f01f'
+'5cae0fb12127223a5a1ce0424e44cfcb03949bfeedaa7cf2334a88f06f6c9a07')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix AppStream metadata validation
+  # https://github.com/QuiteRSS/quiterss/pull/1130
+  patch -Np1 -i ../0001-Fix-AppStream-metadata-validation.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   qmake-qt5 CONFIG+=release PREFIX=/usr
@@ -24,5 +34,7 @@
 package() {
   cd $pkgname-$pkgver
   make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 quiterss.appdata.xml 
"$pkgdir/usr/share/metainfo/quiterss.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
 }
 


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

2018-12-27 Thread Morten Linderud via arch-commits
Date: Thursday, December 27, 2018 @ 21:28:25
  Author: foxboron
Revision: 418568

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 418567, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 21:19:44 UTC (rev 418567)
+++ PKGBUILD2018-12-27 21:28:25 UTC (rev 418568)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=gopass
-pkgver=1.8.3
-pkgrel=1
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go-pie')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-   'xsel: clipboard support'
-   'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src
-  mv "${pkgname}-${pkgver}"/vendor/* src/
-  mkdir -p src/github.com/gopasspw
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-}
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 418567, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 21:28:25 UTC (rev 418568)
@@ -0,0 +1,35 @@
+# Maintainer: Morten Linderud 
+pkgname=gopass
+pkgver=1.8.4
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go-pie')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+   'xsel: clipboard support'
+   'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha256sums=('4d35dc565457d5dde05faa538be9e8c1e99527d48d7d759c1a7e4e5566f27171')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src
+  mv "${pkgname}-${pkgver}"/vendor/* src/
+  mkdir -p src/github.com/gopasspw
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 21:19:44
  Author: polyzen
Revision: 418567

archrelease: copy trunk to community-any

Added:
  alot/repos/community-any/
  alot/repos/community-any/PKGBUILD
(from rev 418566, alot/trunk/PKGBUILD)

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

Copied: alot/repos/community-any/PKGBUILD (from rev 418566, alot/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-27 21:19:44 UTC (rev 418567)
@@ -0,0 +1,51 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Mark Foxwell 
+# Contributor: Nicolas Pouillard [https://nicolaspouillard.fr]
+# Contributor: seschwar -- contact via Arch Linux forum or AUR
+# Contributor: Ian Denhardt 
+
+pkgname=alot
+pkgver=0.8
+pkgrel=2
+pkgdesc='Terminal-based MUA for the notmuch mail system'
+arch=(any)
+url=https://github.com/pazz/alot
+license=('GPL3')
+depends=('desktop-file-utils' 'notmuch' 'python-configobj' 'python-gpgme'
+ 'python-magic' 'python-setuptools' 'python-twisted' 'python-urwid'
+ 'python-urwidtrees')
+makedepends=('python-sphinx')
+checkdepends=('python-mock')
+source=("$url/archive/$pkgver/alot-$pkgver.tar.gz")
+sha512sums=('3013e48b6c751bb7c52c440e8500d91addb3e3bdfc37f386cad63254490c4eb93aedca1005df06b25783277df67b8d329cc03329e9a8a1e3bbb70c055d90283d')
+
+# The Arch Linux package python-magic's egg calls itself "file-magic",
+# as opposed to the python-magic on PyPI.
+prepare() {
+  cd alot-$pkgver
+  sed -i 's/python-magic/file-magic/' setup.py
+}
+
+build() {
+  cd alot-$pkgver
+  python setup.py build
+  make -C docs man
+}
+
+check() {
+  cd alot-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd alot-$pkgver
+  python setup.py install --optimize=1 --root="$pkgdir" --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 docs/build/man/alot.1
+  install -Dm644 -t "$pkgdir"/usr/share/applications extra/alot*.desktop
+  install -Dm644 extra/completion/alot-completion.zsh \
+"$pkgdir"/usr/share/zsh/functions/_alot
+  install -Dm644 -t "$pkgdir"/usr/share/alot/themes \
+extra/themes/{mutt,solarized_light,solarized_dark,sup,tomorrow}
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 21:19:22
  Author: polyzen
Revision: 418566

Initial commit

Added:
  alot/
  alot/repos/
  alot/trunk/
  alot/trunk/PKGBUILD

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

Added: alot/trunk/PKGBUILD
===
--- alot/trunk/PKGBUILD (rev 0)
+++ alot/trunk/PKGBUILD 2018-12-27 21:19:22 UTC (rev 418566)
@@ -0,0 +1,51 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Mark Foxwell 
+# Contributor: Nicolas Pouillard [https://nicolaspouillard.fr]
+# Contributor: seschwar -- contact via Arch Linux forum or AUR
+# Contributor: Ian Denhardt 
+
+pkgname=alot
+pkgver=0.8
+pkgrel=2
+pkgdesc='Terminal-based MUA for the notmuch mail system'
+arch=(any)
+url=https://github.com/pazz/alot
+license=('GPL3')
+depends=('desktop-file-utils' 'notmuch' 'python-configobj' 'python-gpgme'
+ 'python-magic' 'python-setuptools' 'python-twisted' 'python-urwid'
+ 'python-urwidtrees')
+makedepends=('python-sphinx')
+checkdepends=('python-mock')
+source=("$url/archive/$pkgver/alot-$pkgver.tar.gz")
+sha512sums=('3013e48b6c751bb7c52c440e8500d91addb3e3bdfc37f386cad63254490c4eb93aedca1005df06b25783277df67b8d329cc03329e9a8a1e3bbb70c055d90283d')
+
+# The Arch Linux package python-magic's egg calls itself "file-magic",
+# as opposed to the python-magic on PyPI.
+prepare() {
+  cd alot-$pkgver
+  sed -i 's/python-magic/file-magic/' setup.py
+}
+
+build() {
+  cd alot-$pkgver
+  python setup.py build
+  make -C docs man
+}
+
+check() {
+  cd alot-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd alot-$pkgver
+  python setup.py install --optimize=1 --root="$pkgdir" --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 docs/build/man/alot.1
+  install -Dm644 -t "$pkgdir"/usr/share/applications extra/alot*.desktop
+  install -Dm644 extra/completion/alot-completion.zsh \
+"$pkgdir"/usr/share/zsh/functions/_alot
+  install -Dm644 -t "$pkgdir"/usr/share/alot/themes \
+extra/themes/{mutt,solarized_light,solarized_dark,sup,tomorrow}
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Morten Linderud via arch-commits
Date: Thursday, December 27, 2018 @ 21:10:57
  Author: foxboron
Revision: 418565

upgpkg: gopass 1.8.4-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 21:09:38 UTC (rev 418564)
+++ PKGBUILD2018-12-27 21:10:57 UTC (rev 418565)
@@ -1,6 +1,6 @@
 # Maintainer: Morten Linderud 
 pkgname=gopass
-pkgver=1.8.3
+pkgver=1.8.4
 pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
@@ -11,7 +11,7 @@
'xsel: clipboard support'
'xclip: clipboard support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
+sha256sums=('4d35dc565457d5dde05faa538be9e8c1e99527d48d7d759c1a7e4e5566f27171')
 
 prepare(){
   export GOPATH="${srcdir}"


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 21:09:32
  Author: bgyorgy
Revision: 418563

upgpkg: regexxer 0.10-9

Add AppStream metadata

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 21:07:26 UTC (rev 418562)
+++ PKGBUILD2018-12-27 21:09:32 UTC (rev 418563)
@@ -2,7 +2,7 @@
 
 pkgname=regexxer
 pkgver=0.10
-pkgrel=8
+pkgrel=9
 pkgdesc="Interactive search and replace tool for GNOME"
 arch=('x86_64')
 url="http://regexxer.sourceforge.net/;
@@ -10,9 +10,11 @@
 depends=('gtksourceviewmm')
 makedepends=('intltool')
 
source=(https://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz
+regexxer.appdata.xml
 regexxer-glib2.32.patch
 fix-deprecated.patch)
 sha256sums=('2a7832541a0306b3d4eb63a1cf8978d7bbfc7927e9304473fe801d71fd99736c'
+'dafeaeacace596bc4313262090e15713b99d9f95420e535155735582d8dc206a'
 '1addebc552e4374f3f9ee778fb734c08c1ed3a4b2b5e70905f7c9287c9b34882'
 'e2548ccf46a4eeabcda4221f6feec6d961eaef7ae8f7a8998b6374c61a7ae77a')
 
@@ -40,4 +42,5 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../regexxer.appdata.xml 
"$pkgdir/usr/share/metainfo/regexxer.appdata.xml"
 }

Added: regexxer.appdata.xml
===
--- regexxer.appdata.xml(rev 0)
+++ regexxer.appdata.xml2018-12-27 21:09:32 UTC (rev 418563)
@@ -0,0 +1,22 @@
+
+
+  org.gnome.regexxer
+  regexxer.desktop
+  regexxer
+  Search and replace using regular expressions
+  CC0-1.0
+  GPL-2.0
+  Fabien Parent
+  
+regexxer is a nifty GUI search/replace tool featuring Perl-style 
regular expressions. If you need project-wide substitution and you’re tired of 
hacking sed command lines together, then you should definitely give it a 
try.
+  
+  
+
+  
http://regexxer.sourceforge.net/images/regexxer-screenshot.png
+
+  
+  https://gitlab.gnome.org/GNOME/regexxer/issues
+  http://regexxer.sourceforge.net/
+  paren...@gmail.com
+  regexxer
+


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 21:07:26
  Author: polyzen
Revision: 418562

Fix source URL

Modified:
  python-pathspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:54:37 UTC (rev 418561)
+++ PKGBUILD2018-12-27 21:07:26 UTC (rev 418562)
@@ -11,7 +11,7 @@
 license=('custom:MPLv2')
 depends=('python')
 makedepends=('python-setuptools')
-source=("https://files.pythonhosted.com/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
 sha256sums=('54a5eab895d89f342b52ba2bffe70930ef9f8d96e398cccf530d21fa0516a873')
 
 build() {


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:54:37
  Author: polyzen
Revision: 418561

Remove ancient conflicts()

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:51:18 UTC (rev 418560)
+++ PKGBUILD2018-12-27 20:54:37 UTC (rev 418561)
@@ -10,7 +10,6 @@
 license=('MPL' 'GPL' 'LGPL')
 groups=('firefox-addons')
 url=http://piro.sakura.ne.jp/xul/_treestyletab.html.en
-conflicts=('firefox-extension-tree-style-tab')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/$_pkgname-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
 sha256sums=('efe160743f129f231c70bf44082c1be650601c79e4494927cb384afad0a48a77')


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:51:18
  Author: polyzen
Revision: 418560

archrelease: copy trunk to community-x86_64

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

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

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


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:50:40
  Author: polyzen
Revision: 418559

Initial commit

Added:
  skim/
  skim/repos/
  skim/trunk/
  skim/trunk/PKGBUILD

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

Added: skim/trunk/PKGBUILD
===
--- skim/trunk/PKGBUILD (rev 0)
+++ skim/trunk/PKGBUILD 2018-12-27 20:50:40 UTC (rev 418559)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: fenuks
+
+pkgname=skim
+pkgver=0.5.2
+pkgrel=4
+pkgdesc='Fuzzy Finder in rust!'
+arch=('x86_64')
+depends=('ncurses')
+makedepends=('rust')
+url=https://github.com/lotabout/skim
+license=('MIT')
+source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
+sha512sums=('018962a728b9729b51afdc8975cddeceec84731f43b776a740ad2b4d2a479ceadd7a4d45c6eb5389ef73cdf18955a74ac85e9bbb4ad823e4d4a5d9972a4aa19d')
+
+build() {
+  cd skim-$pkgver
+  cargo build --release
+}
+
+check() {
+  cd skim-$pkgver
+  cargo test --release
+}
+
+package() {
+  cd skim-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
+  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
+  install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
+  install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
+}


[arch-commits] Commit in ocrfeeder/repos/community-any (3 files)

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 20:49:02
  Author: bgyorgy
Revision: 418558

archrelease: copy trunk to community-any

Added:
  ocrfeeder/repos/community-any/PKGBUILD
(from rev 418557, ocrfeeder/trunk/PKGBUILD)
  ocrfeeder/repos/community-any/ocrfeeder.appdata.xml
(from rev 418557, ocrfeeder/trunk/ocrfeeder.appdata.xml)
Deleted:
  ocrfeeder/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   83 
 ocrfeeder.appdata.xml |   30 +
 2 files changed, 72 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:48:56 UTC (rev 418557)
+++ PKGBUILD2018-12-27 20:49:02 UTC (rev 418558)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=ocrfeeder
-pkgver=0.8.1
-pkgrel=3
-pkgdesc="GTK+ document layout analysis and optical character recognition 
application"
-arch=('any')
-url="https://wiki.gnome.org/Apps/OCRFeeder;
-license=('GPL')
-depends=('python2-pyenchant' 'python2-gobject' 'python2-lxml' 'python2-pillow'
- 'python2-reportlab' 'gtk3' 'goocanvas' 'gtkspell3' 'ghostscript' 
'unpaper' 'python2-sane'
- 'iso-codes')
-makedepends=('intltool' 'gnome-doc-utils' 'python2-gobject2')
-optdepends=('tesseract: character recognition'
-'ocrad: character recognition'
-'gocr: character recognition'
-'cuneiform: character recognition')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5816401c9b4bfce98fd9a7b649a3c7ecc3d6968a30f0e4d1b3677d172d55253b')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's@^#!.*python$@#!/usr/bin/python2@' bin/ocrfeeder*.in 
src/ocrfeeder/odf/*.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  PYTHON=python2
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  ln -s ../ocrfeeder/icons/ocrfeeder.svg 
"$pkgdir/usr/share/pixmaps/ocrfeeder.svg"
-}

Copied: ocrfeeder/repos/community-any/PKGBUILD (from rev 418557, 
ocrfeeder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 20:49:02 UTC (rev 418558)
@@ -0,0 +1,42 @@
+# Maintainer: Balló György 
+
+pkgname=ocrfeeder
+pkgver=0.8.1
+pkgrel=4
+pkgdesc="GTK+ document layout analysis and optical character recognition 
application"
+arch=('any')
+url="https://wiki.gnome.org/Apps/OCRFeeder;
+license=('GPL')
+depends=('python2-pyenchant' 'python2-gobject' 'python2-lxml' 'python2-pillow'
+ 'python2-reportlab' 'gtk3' 'goocanvas' 'gtkspell3' 'ghostscript' 
'unpaper' 'python2-sane'
+ 'iso-codes')
+makedepends=('intltool' 'gnome-doc-utils' 'python2-gobject2')
+optdepends=('tesseract: character recognition'
+'ocrad: character recognition'
+'gocr: character recognition'
+'cuneiform: character recognition')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ocrfeeder.appdata.xml)
+sha256sums=('5816401c9b4bfce98fd9a7b649a3c7ecc3d6968a30f0e4d1b3677d172d55253b'
+'4513fe7200e8f9b31017d76ffc679e8d92b0c40f0846fb1be20499f0efb6e4a7')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' bin/ocrfeeder*.in 
src/ocrfeeder/odf/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  PYTHON=python2
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 resources/icons/ocrfeeder.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ocrfeeder.svg"
+  install -Dm644 ../ocrfeeder.appdata.xml 
"$pkgdir/usr/share/metainfo/ocrfeeder.appdata.xml"
+}

Copied: ocrfeeder/repos/community-any/ocrfeeder.appdata.xml (from rev 418557, 
ocrfeeder/trunk/ocrfeeder.appdata.xml)
===
--- ocrfeeder.appdata.xml   (rev 0)
+++ ocrfeeder.appdata.xml   2018-12-27 20:49:02 UTC (rev 418558)
@@ -0,0 +1,30 @@
+
+
+  org.gnome.ocrfeeder
+  ocrfeeder.desktop
+  OCRFeeder
+  The complete OCR suite
+  CC0-1.0
+  GPL-3.0+
+  Joaquim Rocha
+  
+OCRFeeder is a document layout analysis and optical character 
recognition system.
+Given the images it will automatically outline its contents, 
distinguish between what's graphics and text and perform OCR over the latter. 
It generates multiple formats being its main one ODT.
+It features a complete GTK graphical user interface that allows the 
users to correct any unrecognized characters, defined or correct bounding 
boxes, set paragraph styles, clean the input images, import PDFs, save and load 
the project, 

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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 20:48:56
  Author: bgyorgy
Revision: 418557

upgpkg: ocrfeeder 0.8.1-4

Add AppStream metadata

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

---+
 PKGBUILD  |   12 +++-
 ocrfeeder.appdata.xml |   30 ++
 2 files changed, 37 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:48:34 UTC (rev 418556)
+++ PKGBUILD2018-12-27 20:48:56 UTC (rev 418557)
@@ -2,7 +2,7 @@
 
 pkgname=ocrfeeder
 pkgver=0.8.1
-pkgrel=3
+pkgrel=4
 pkgdesc="GTK+ document layout analysis and optical character recognition 
application"
 arch=('any')
 url="https://wiki.gnome.org/Apps/OCRFeeder;
@@ -15,8 +15,10 @@
 'ocrad: character recognition'
 'gocr: character recognition'
 'cuneiform: character recognition')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5816401c9b4bfce98fd9a7b649a3c7ecc3d6968a30f0e4d1b3677d172d55253b')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ocrfeeder.appdata.xml)
+sha256sums=('5816401c9b4bfce98fd9a7b649a3c7ecc3d6968a30f0e4d1b3677d172d55253b'
+'4513fe7200e8f9b31017d76ffc679e8d92b0c40f0846fb1be20499f0efb6e4a7')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -35,6 +37,6 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  ln -s ../ocrfeeder/icons/ocrfeeder.svg 
"$pkgdir/usr/share/pixmaps/ocrfeeder.svg"
+  install -Dm644 resources/icons/ocrfeeder.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ocrfeeder.svg"
+  install -Dm644 ../ocrfeeder.appdata.xml 
"$pkgdir/usr/share/metainfo/ocrfeeder.appdata.xml"
 }

Added: ocrfeeder.appdata.xml
===
--- ocrfeeder.appdata.xml   (rev 0)
+++ ocrfeeder.appdata.xml   2018-12-27 20:48:56 UTC (rev 418557)
@@ -0,0 +1,30 @@
+
+
+  org.gnome.ocrfeeder
+  ocrfeeder.desktop
+  OCRFeeder
+  The complete OCR suite
+  CC0-1.0
+  GPL-3.0+
+  Joaquim Rocha
+  
+OCRFeeder is a document layout analysis and optical character 
recognition system.
+Given the images it will automatically outline its contents, 
distinguish between what's graphics and text and perform OCR over the latter. 
It generates multiple formats being its main one ODT.
+It features a complete GTK graphical user interface that allows the 
users to correct any unrecognized characters, defined or correct bounding 
boxes, set paragraph styles, clean the input images, import PDFs, save and load 
the project, export everything to multiple formats, etc.
+  
+  
+
+  
https://wiki.gnome.org/Apps/OCRFeeder?action=AttachFiledo=gettarget=ocrfeeder.jpeg
+
+
+  
https://wiki.gnome.org/Apps/OCRFeeder?action=AttachFiledo=gettarget=ocrfeeder_unpaper.jpeg
+
+
+  
https://wiki.gnome.org/Apps/OCRFeeder?action=AttachFiledo=gettarget=ocrfeeder_spellchecker.png
+
+  
+  https://gitlab.gnome.org/GNOME/ocrfeeder/issues/
+  https://wiki.gnome.org/Apps/OCRFeeder
+  m...@joaquimrocha.com
+  ocrfeeder
+


[arch-commits] Commit in julia/repos/community-x86_64 (8 files)

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 27, 2018 @ 20:48:34
  Author: arodseth
Revision: 418556

archrelease: copy trunk to community-x86_64

Added:
  julia/repos/community-x86_64/Make.user
(from rev 418555, julia/trunk/Make.user)
  julia/repos/community-x86_64/PKGBUILD
(from rev 418555, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/libunwind-version.patch
(from rev 418555, julia/trunk/libunwind-version.patch)
  julia/repos/community-x86_64/makefile.patch
(from rev 418555, julia/trunk/makefile.patch)
Deleted:
  julia/repos/community-x86_64/Make.user
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/libunwind-version.patch
  julia/repos/community-x86_64/makefile.patch

-+
 Make.user   |   66 
 PKGBUILD|  182 +++---
 libunwind-version.patch |   34 
 makefile.patch  |   24 +++---
 4 files changed, 154 insertions(+), 152 deletions(-)

Deleted: Make.user
===
--- Make.user   2018-12-27 20:48:22 UTC (rev 418555)
+++ Make.user   2018-12-27 20:48:34 UTC (rev 418556)
@@ -1,32 +0,0 @@
-# vim: set ft=make:
-
-override prefix = /usr
-override sysconfdir = /etc
-override MARCH = x86-64
-override JULIA_BUILD_MODE = release
-override USE_BLAS64 = 0
-override USE_SYSTEM_DSFMT = 0
-override USE_SYSTEM_FFTW = 1
-override USE_SYSTEM_GMP = 1
-override USE_SYSTEM_LIBGIT2 = 1
-override USE_SYSTEM_LIBM = 0
-override USE_SYSTEM_LIBUNWIND = 1
-override USE_SYSTEM_MPFR = 0
-override USE_SYSTEM_OPENLIBM = 0
-override USE_SYSTEM_OPENSPECFUN = 0
-override USE_SYSTEM_PCRE = 0
-override USE_SYSTEM_SUITESPARSE = 1
-override USE_SYSTEM_UTF8PROC = 1
-
-# system blas with cblas symbols linked too
-override USE_SYSTEM_BLAS = 1
-override USE_SYSTEM_CBLAS = 1
-override USE_SYSTEM_LAPACK = 1
-
-# FS#57387
-override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
-
-# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
-# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
-override USE_SYSTEM_PATCHELF = 1

Copied: julia/repos/community-x86_64/Make.user (from rev 418555, 
julia/trunk/Make.user)
===
--- Make.user   (rev 0)
+++ Make.user   2018-12-27 20:48:34 UTC (rev 418556)
@@ -0,0 +1,34 @@
+# vim: set ft=make:
+
+override prefix = /usr
+override sysconfdir = /etc
+override MARCH = x86-64
+override JULIA_BUILD_MODE = release
+override USE_BLAS64 = 0
+override USE_SYSTEM_DSFMT = 0
+override USE_SYSTEM_FFTW = 1
+override USE_SYSTEM_GMP = 1
+override USE_SYSTEM_LIBGIT2 = 1
+override USE_SYSTEM_LIBM = 0
+override USE_SYSTEM_LIBUNWIND = 1
+override USE_SYSTEM_MPFR = 0
+override USE_SYSTEM_OPENLIBM = 0
+override USE_SYSTEM_OPENSPECFUN = 0
+override USE_SYSTEM_PCRE = 0
+override USE_SYSTEM_SUITESPARSE = 1
+override USE_SYSTEM_UTF8PROC = 1
+
+# system blas with cblas symbols linked too
+override USE_SYSTEM_BLAS = 1
+override USE_SYSTEM_CBLAS = 1
+override USE_SYSTEM_LAPACK = 1
+
+# FS#57387
+override USE_SYSTEM_LLVM = 0
+
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
+# patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
+# but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
+override USE_SYSTEM_PATCHELF = 1

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:48:22 UTC (rev 418555)
+++ PKGBUILD2018-12-27 20:48:34 UTC (rev 418556)
@@ -1,91 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.0.3
-pkgrel=1
-arch=('x86_64')
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=('MIT')
-depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
- 'openblas' 'suitesparse')
-makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-'libunwind-version.patch'
-'makefile.patch'
-'Make.user')
-sha256sums=('618e6d29f1fba00f5b2bebf14e69a3a536c27c3132e021cf39774e8500dd29fa'
-'SKIP'
-'88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
-'22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
-'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'9381af45e329f874241eec5a5d85e70a7945433ab9ee82215e28a6085783df88')
-# 

[arch-commits] Commit in julia/trunk (Make.user PKGBUILD)

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 27, 2018 @ 20:48:22
  Author: arodseth
Revision: 418555

upgpkg: julia 2:1.0.3-2

relucantly include LLVM, ref FS#60227

This now works: import Pkg; Pkg.add("LLVM"); Pkg.test("LLVM")

Modified:
  julia/trunk/Make.user
  julia/trunk/PKGBUILD

---+
 Make.user |4 +++-
 PKGBUILD  |   16 
 2 files changed, 11 insertions(+), 9 deletions(-)

Modified: Make.user
===
--- Make.user   2018-12-27 20:34:42 UTC (rev 418554)
+++ Make.user   2018-12-27 20:48:22 UTC (rev 418555)
@@ -25,8 +25,10 @@
 
 # FS#57387
 override USE_SYSTEM_LLVM = 0
-override USE_LLVM_SHLIB = 0
 
+# FS#60227
+override USE_LLVM_SHLIB = 1
+
 # patchelf is not even used unless $(private_libdir_rel) != 
$(build_private_libdir_rel)
 # but we USE_SYSTEM_PATCHELF=1 to prevent building it. This is why it is not 
in makedepends.
 override USE_SYSTEM_PATCHELF = 1

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:34:42 UTC (rev 418554)
+++ PKGBUILD2018-12-27 20:48:22 UTC (rev 418555)
@@ -9,7 +9,7 @@
 pkgname=(julia julia-docs)
 epoch=2
 pkgver=1.0.3
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 pkgdesc='High-level, high-performance, dynamic programming language'
 url='https://julialang.org/'
@@ -17,17 +17,17 @@
 depends=('cblas' 'fftw' 'hicolor-icon-theme' 'libgit2' 'libunwind' 
'libutf8proc'
  'openblas' 'suitesparse')
 makedepends=('cmake' 'gcc-fortran' 'gmp' 'python2')
-source=("https://github.com/JuliaLang/$pkgbase/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
+source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
 
'cblas.patch::https://github.com/JuliaLang/julia/pull/29540/commits/0c442318196389d653ee21eba65d8c4f7beb72a0.patch'
-'libunwind-version.patch'
-'makefile.patch'
-'Make.user')
+libunwind-version.patch
+makefile.patch
+Make.user)
 sha256sums=('618e6d29f1fba00f5b2bebf14e69a3a536c27c3132e021cf39774e8500dd29fa'
 'SKIP'
 '88fcbd8a2450027aada0892a60c49c891a8dae43ee6c19e64364b1a1373d50bc'
 '22974e1a6602c250cd993cc89cf38fd24668617484f44cadd60665e9af15207b'
 'b7374fcd5a579fc59d6988795fc0c3cf411a89205942c691a5b3003793ae6c52'
-'9381af45e329f874241eec5a5d85e70a7945433ab9ee82215e28a6085783df88')
+'5d80da405df2a45a67e8d9e66ab4e25c2df754516023bbab81f9f263f6109329')
 # Julia (Binary signing key) 
 validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495')
 
@@ -63,7 +63,7 @@
 }
 
 package_julia() {
-  backup=('etc/julia/startup.jl')
+  backup=(etc/julia/startup.jl)
   optdepends=('gnuplot: If using the Gaston Package from julia')
 
   make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install
@@ -78,7 +78,7 @@
 
 package_julia-docs() {
   pkgdesc='Documentation and examples for Julia'
-  depends=('julia')
+  depends=(julia)
 
   install -d "$pkgdir/usr/share/doc"
   cp -r $pkgbase-$pkgver/doc "$pkgdir/usr/share/doc/$pkgbase"


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:34:16
  Author: polyzen
Revision: 418553

Initial commit

Added:
  vint/
  vint/repos/
  vint/trunk/
  vint/trunk/PKGBUILD

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

Added: vint/trunk/PKGBUILD
===
--- vint/trunk/PKGBUILD (rev 0)
+++ vint/trunk/PKGBUILD 2018-12-27 20:34:16 UTC (rev 418553)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Darshit Shah 
+
+pkgname=vint
+pkgver=0.3.19
+pkgrel=3
+pkgdesc='Lint tool for Vim script Language'
+arch=('any')
+url=https://github.com/Kuniwak/vint
+license=('MIT')
+depends=('python-ansicolor' 'python-chardet' 'python-setuptools' 'python-yaml')
+checkdepends=('python-pytest')
+replaces=('python-vint')
+source=("$url/archive/v$pkgver/vint-v$pkgver.tar.gz")
+sha512sums=('b9024ed1cd8a18a916798e691ba0db31985034b2420e33c094459a48254c7c8f6fe89a1a64858a67ff95b0b48e67a780cf975940646af2685d2b95640e8121f9')
+
+build() {
+  cd vint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd vint-$pkgver
+  pytest
+}
+
+package() {
+  cd vint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:34:42
  Author: polyzen
Revision: 418554

archrelease: copy trunk to community-any

Added:
  vint/repos/community-any/
  vint/repos/community-any/PKGBUILD
(from rev 418553, vint/trunk/PKGBUILD)

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

Copied: vint/repos/community-any/PKGBUILD (from rev 418553, vint/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-27 20:34:42 UTC (rev 418554)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Darshit Shah 
+
+pkgname=vint
+pkgver=0.3.19
+pkgrel=3
+pkgdesc='Lint tool for Vim script Language'
+arch=('any')
+url=https://github.com/Kuniwak/vint
+license=('MIT')
+depends=('python-ansicolor' 'python-chardet' 'python-setuptools' 'python-yaml')
+checkdepends=('python-pytest')
+replaces=('python-vint')
+source=("$url/archive/v$pkgver/vint-v$pkgver.tar.gz")
+sha512sums=('b9024ed1cd8a18a916798e691ba0db31985034b2420e33c094459a48254c7c8f6fe89a1a64858a67ff95b0b48e67a780cf975940646af2685d2b95640e8121f9')
+
+build() {
+  cd vint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd vint-$pkgver
+  pytest
+}
+
+package() {
+  cd vint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:23:01
  Author: polyzen
Revision: 418552

archrelease: copy trunk to community-any

Added:
  proselint/repos/community-any/PKGBUILD
(from rev 418551, proselint/trunk/PKGBUILD)
Deleted:
  proselint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:22:40 UTC (rev 418551)
+++ PKGBUILD2018-12-27 20:23:01 UTC (rev 418552)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Shane Stone 
-
-pkgname=proselint
-pkgver=0.10.2
-pkgrel=2
-pkgdesc='Linter for prose'
-arch=('any')
-url=https://github.com/amperser/proselint
-license=('BSD')
-depends=('python-click' 'python-future' 'python-six')
-makedepends=('python-setuptools')
-#checkdepends=('python-mock' 'python-nose' 'python-pytest')
-provides=('python-proselint')
-conflicts=('python-proselint')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-#check() {
-#  cd $pkgname-$pkgver
-#  pytest
-#}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: proselint/repos/community-any/PKGBUILD (from rev 418551, 
proselint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 20:23:01 UTC (rev 418552)
@@ -0,0 +1,32 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Shane Stone 
+
+pkgname=proselint
+pkgver=0.10.2
+pkgrel=3
+pkgdesc='Linter for prose'
+arch=('any')
+url=https://github.com/amperser/proselint
+license=('BSD')
+depends=('python-click' 'python-future' 'python-six')
+makedepends=('python-setuptools')
+#checkdepends=('python-mock' 'python-nose' 'python-pytest')
+replaces=('python-proselint')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+#check() {
+#  cd $pkgname-$pkgver
+#  pytest
+#}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:22:40
  Author: polyzen
Revision: 418551

upgpkg: proselint 0.10.2-3

Use replaces()

Modified:
  proselint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:03:42 UTC (rev 418550)
+++ PKGBUILD2018-12-27 20:22:40 UTC (rev 418551)
@@ -3,7 +3,7 @@
 
 pkgname=proselint
 pkgver=0.10.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Linter for prose'
 arch=('any')
 url=https://github.com/amperser/proselint
@@ -11,8 +11,7 @@
 depends=('python-click' 'python-future' 'python-six')
 makedepends=('python-setuptools')
 #checkdepends=('python-mock' 'python-nose' 'python-pytest')
-provides=('python-proselint')
-conflicts=('python-proselint')
+replaces=('python-proselint')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
 


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:03:42
  Author: polyzen
Revision: 418550

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:03:25 UTC (rev 418549)
+++ PKGBUILD2018-12-27 20:03:42 UTC (rev 418550)
@@ -1,22 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-_pkgname=tree_style_tab
-pkgname=firefox-tree-style-tab
-pkgver=2.7.6
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'GPL' 'LGPL')
-groups=('firefox-addons')
-url=http://piro.sakura.ne.jp/xul/_treestyletab.html.en
-conflicts=('firefox-extension-tree-style-tab')
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/$_pkgname-$pkgver-fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('abcb1b40052e0b26dc0f99caf968bf5f1320f79ed807acbbceb6d0e8a63d6bd7')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

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


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:03:25
  Author: polyzen
Revision: 418549

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

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 20:01:16 UTC (rev 418548)
+++ PKGBUILD2018-12-27 20:03:25 UTC (rev 418549)
@@ -3,7 +3,7 @@
 
 _pkgname=tree_style_tab
 pkgname=firefox-tree-style-tab
-pkgver=2.7.6
+pkgver=2.7.7
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -13,7 +13,7 @@
 conflicts=('firefox-extension-tree-style-tab')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/$_pkgname-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('abcb1b40052e0b26dc0f99caf968bf5f1320f79ed807acbbceb6d0e8a63d6bd7')
+sha256sums=('efe160743f129f231c70bf44082c1be650601c79e4494927cb384afad0a48a77')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:01:16
  Author: polyzen
Revision: 418548

archrelease: copy trunk to community-any

Added:
  firefox-umatrix/repos/community-any/PKGBUILD
(from rev 418547, firefox-umatrix/trunk/PKGBUILD)
Deleted:
  firefox-umatrix/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 20:00:37 UTC (rev 418547)
+++ PKGBUILD2018-12-27 20:01:16 UTC (rev 418548)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-umatrix
-pkgver=1.3.14
-pkgrel=2
-pkgdesc='Point and click matrix to filter net requests by source, destination 
and type'
-url=https://github.com/gorhill/uMatrix
-arch=('any')
-license=('GPL3')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/613250/umatrix-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('41f5499b2eff5931acc24f2a487daef38034fcfc4099bd2661f7fc1a9bfd105e')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/umat...@raymondhill.net.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-umatrix/repos/community-any/PKGBUILD (from rev 418547, 
firefox-umatrix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 20:01:16 UTC (rev 418548)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-umatrix
+pkgver=1.3.16
+pkgrel=1
+pkgdesc='Point and click matrix to filter net requests by source, destination 
and type'
+url=https://github.com/gorhill/uMatrix
+arch=('any')
+license=('GPL3')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/613250/umatrix-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('03dcdbca2135f81820167c49ac83b9fc75f1ba3c1792a1713f886d9274ad7fb6')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/umat...@raymondhill.net.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-27 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 27, 2018 @ 20:00:37
  Author: polyzen
Revision: 418547

upgpkg: firefox-umatrix 1.3.16-1

Modified:
  firefox-umatrix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:44:28 UTC (rev 418546)
+++ PKGBUILD2018-12-27 20:00:37 UTC (rev 418547)
@@ -1,8 +1,8 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-umatrix
-pkgver=1.3.14
-pkgrel=2
+pkgver=1.3.16
+pkgrel=1
 pkgdesc='Point and click matrix to filter net requests by source, destination 
and type'
 url=https://github.com/gorhill/uMatrix
 arch=('any')
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/613250/umatrix-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('41f5499b2eff5931acc24f2a487daef38034fcfc4099bd2661f7fc1a9bfd105e')
+sha256sums=('03dcdbca2135f81820167c49ac83b9fc75f1ba3c1792a1713f886d9274ad7fb6')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/umat...@raymondhill.net.xpi


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

2018-12-27 Thread Felix Yan via arch-commits
Date: Thursday, December 27, 2018 @ 19:44:28
  Author: felixonmars
Revision: 418546

archrelease: copy trunk to community-x86_64

Added:
  chafa/repos/community-x86_64/PKGBUILD
(from rev 418545, chafa/trunk/PKGBUILD)
Deleted:
  chafa/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:44:10 UTC (rev 418545)
+++ PKGBUILD2018-12-27 19:44:28 UTC (rev 418546)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=chafa
-pkgver=0.9.0
-pkgrel=1
-pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
-arch=("x86_64")
-url="https://hpjansson.org/chafa/;
-depends=('libmagick' 'libxslt')
-makedepends=('gtk-doc')
-license=("LGPL")
-source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.sig})
-sha512sums=('37c9050709d6ec2ac8f6c2202e172df0ac8aa85ea398277d4e680412b9671cd117aba55befe60ade6365f94d909fe47a8f93795bf6d6308e7a25f15e2536fbd2'
-'SKIP')
-validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i -e 's|wand/MagickWand.h|MagickWand/MagickWand.h|' \
- -e 's|$LDFLAGS $MAGICKWAND_LIBS|$MAGICKWAND_LIBS $LDFLAGS|' \
- configure chafa/chafa.c
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-man
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: chafa/repos/community-x86_64/PKGBUILD (from rev 418545, 
chafa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 19:44:28 UTC (rev 418546)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=chafa
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
+arch=("x86_64")
+url="https://hpjansson.org/chafa/;
+depends=('libmagick' 'libxslt')
+makedepends=('gtk-doc')
+license=("LGPL")
+source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
+sha512sums=('fe0dc8ecec77c7b1b4c694d6dd3f4de895a07faf39519f47c2284d76261e2c6298943fa5309cdca6d41ef0a22fe0321a2ef890f319903596bdfaad10394e7ec2'
+'SKIP')
+validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's|wand/MagickWand.h|MagickWand/MagickWand.h|' \
+ -e 's|$LDFLAGS $MAGICKWAND_LIBS|$MAGICKWAND_LIBS $LDFLAGS|' \
+ configure chafa/chafa.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-man
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2018-12-27 Thread Felix Yan via arch-commits
Date: Thursday, December 27, 2018 @ 19:44:10
  Author: felixonmars
Revision: 418545

upgpkg: chafa 1.0.1-1

Modified:
  chafa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:07:00 UTC (rev 418544)
+++ PKGBUILD2018-12-27 19:44:10 UTC (rev 418545)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=chafa
-pkgver=0.9.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
 arch=("x86_64")
@@ -9,8 +9,8 @@
 depends=('libmagick' 'libxslt')
 makedepends=('gtk-doc')
 license=("LGPL")
-source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.sig})
-sha512sums=('37c9050709d6ec2ac8f6c2202e172df0ac8aa85ea398277d4e680412b9671cd117aba55befe60ade6365f94d909fe47a8f93795bf6d6308e7a25f15e2536fbd2'
+source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
+sha512sums=('fe0dc8ecec77c7b1b4c694d6dd3f4de895a07faf39519f47c2284d76261e2c6298943fa5309cdca6d41ef0a22fe0321a2ef890f319903596bdfaad10394e7ec2'
 'SKIP')
 validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
 


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:07:00
  Author: aginiewicz
Revision: 418544

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  134 ++---
 1 file changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:06:56 UTC (rev 418543)
+++ PKGBUILD2018-12-27 19:07:00 UTC (rev 418544)
@@ -1,67 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Firmicus 
-# Contributor: flying sheep 
-
-pkgbase=python-fonttools
-pkgname=('python2-fonttools' 'python-fonttools')
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="Converts OpenType and TrueType fonts to and from XML"
-url="https://github.com/fonttools/fonttools;
-license=("MIT")
-arch=('any')
-makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
-source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
-sha1sums=('425affdd378aaecfb3bd7dd41a0997feec8c7b25')
-
-prepare() {
-  cd "$srcdir"
-  cp -a fonttools-${pkgver} fonttools-py2-${pkgver}
-  cd fonttools-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-
-  cd "$srcdir"/fonttools-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/fonttools-${pkgver}
-  python setup.py build
-}
-
-package_python2-fonttools() {
-  depends=("python2-numpy")
-
-  cd "$srcdir"/fonttools-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # fix conflicts with python-fonttools
-  mv "$pkgdir"/usr/bin/pyftinspect{,2}
-  mv "$pkgdir"/usr/bin/pyftmerge{,2}
-  mv "$pkgdir"/usr/bin/pyftsubset{,2}
-  mv "$pkgdir"/usr/bin/ttx{,2}
-  mv "$pkgdir"/usr/share/man/man1/ttx{,2}.1
-  mv "$pkgdir"/usr/bin/fonttools{,2}
-
-  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx2.1
-}
-
-package_python-fonttools() {
-  depends=("python-numpy")
-
-  cd "$srcdir"/fonttools-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx.1
-}

Copied: python-fonttools/repos/community-any/PKGBUILD (from rev 418543, 
python-fonttools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 19:07:00 UTC (rev 418544)
@@ -0,0 +1,67 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Firmicus 
+# Contributor: flying sheep 
+
+pkgbase=python-fonttools
+pkgname=('python2-fonttools' 'python-fonttools')
+pkgver=3.34.2
+pkgrel=1
+pkgdesc="Converts OpenType and TrueType fonts to and from XML"
+url="https://github.com/fonttools/fonttools;
+license=("MIT")
+arch=('any')
+makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
+source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
+sha1sums=('6b5d7263842d5f547c3d3cdd181d24c6565ba28f')
+
+prepare() {
+  cd "$srcdir"
+  cp -a fonttools-${pkgver} fonttools-py2-${pkgver}
+  cd fonttools-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+
+  cd "$srcdir"/fonttools-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/fonttools-${pkgver}
+  python setup.py build
+}
+
+package_python2-fonttools() {
+  depends=("python2-numpy")
+
+  cd "$srcdir"/fonttools-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  # fix conflicts with python-fonttools
+  mv "$pkgdir"/usr/bin/pyftinspect{,2}
+  mv "$pkgdir"/usr/bin/pyftmerge{,2}
+  mv "$pkgdir"/usr/bin/pyftsubset{,2}
+  mv "$pkgdir"/usr/bin/ttx{,2}
+  mv "$pkgdir"/usr/share/man/man1/ttx{,2}.1
+  mv "$pkgdir"/usr/bin/fonttools{,2}
+
+  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx2.1
+}
+
+package_python-fonttools() {
+  depends=("python-numpy")
+
+  cd "$srcdir"/fonttools-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  chmod oga+r "$pkgdir"/usr/share/man/man1/ttx.1
+}


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:06:56
  Author: aginiewicz
Revision: 418543

upgpkg: python-fonttools 3.34.2-1

python-fonttools: new upstream release

Modified:
  python-fonttools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:05:26 UTC (rev 418542)
+++ PKGBUILD2018-12-27 19:06:56 UTC (rev 418543)
@@ -4,7 +4,7 @@
 
 pkgbase=python-fonttools
 pkgname=('python2-fonttools' 'python-fonttools')
-pkgver=3.30.0
+pkgver=3.34.2
 pkgrel=1
 pkgdesc="Converts OpenType and TrueType fonts to and from XML"
 url="https://github.com/fonttools/fonttools;
@@ -12,7 +12,7 @@
 arch=('any')
 makedepends=("python2-setuptools" "python-setuptools" "python-numpy" 
"python2-numpy")
 
source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
-sha1sums=('425affdd378aaecfb3bd7dd41a0997feec8c7b25')
+sha1sums=('6b5d7263842d5f547c3d3cdd181d24c6565ba28f')
 
 prepare() {
   cd "$srcdir"


[arch-commits] Commit in smlnj/repos/multilib-x86_64 (10 files)

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 27, 2018 @ 19:05:26
  Author: arodseth
Revision: 418542

archrelease: copy trunk to multilib-x86_64

Added:
  smlnj/repos/multilib-x86_64/PKGBUILD
(from rev 418541, smlnj/trunk/PKGBUILD)
  smlnj/repos/multilib-x86_64/profile.d-smlnj.sh
(from rev 418541, smlnj/trunk/profile.d-smlnj.sh)
  smlnj/repos/multilib-x86_64/smlnj.install
(from rev 418541, smlnj/trunk/smlnj.install)
  smlnj/repos/multilib-x86_64/smlnj.sh
(from rev 418541, smlnj/trunk/smlnj.sh)
  smlnj/repos/multilib-x86_64/urlgetter.sh
(from rev 418541, smlnj/trunk/urlgetter.sh)
Deleted:
  smlnj/repos/multilib-x86_64/PKGBUILD
  smlnj/repos/multilib-x86_64/profile.d-smlnj.sh
  smlnj/repos/multilib-x86_64/smlnj.install
  smlnj/repos/multilib-x86_64/smlnj.sh
  smlnj/repos/multilib-x86_64/urlgetter.sh

+
 PKGBUILD   |  163 +--
 profile.d-smlnj.sh |4 -
 smlnj.install  |6 -
 smlnj.sh   |6 -
 urlgetter.sh   |   62 +--
 5 files changed, 120 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:05:12 UTC (rev 418541)
+++ PKGBUILD2018-12-27 19:05:26 UTC (rev 418542)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Thomas Weißschuh 
-
-pkgname=smlnj
-pkgver=110.84
-pkgrel=1
-pkgdesc='Standard ML compiler from New Jersey'
-url='https://www.smlnj.org/'
-license=('BSD')
-arch=('x86_64')
-provides=('sml')
-install=smlnj.install
-depends=('lib32-glibc')
-makedepends=('gcc-multilib')
-_url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/;
-source=(
-  "$pkgname-$pkgver-boot.x86-unix.tgz::${_url}boot.x86-unix.tgz"
-  "$pkgname-$pkgver-config.tgz::${_url}config.tgz"
-  "$pkgname-$pkgver-cm.tgz::${_url}cm.tgz"
-  "$pkgname-$pkgver-compiler.tgz::${_url}compiler.tgz"
-  "$pkgname-$pkgver-runtime.tgz::${_url}runtime.tgz"
-  "$pkgname-$pkgver-system.tgz::${_url}system.tgz"
-  "$pkgname-$pkgver-MLRISC.tgz::${_url}MLRISC.tgz"
-  "$pkgname-$pkgver-smlnj-lib.tgz::${_url}smlnj-lib.tgz"
-  "$pkgname-$pkgver-ckit.tgz::${_url}ckit.tgz"
-  "$pkgname-$pkgver-nlffi.tgz::${_url}nlffi.tgz"
-  "$pkgname-$pkgver-cml.tgz::${_url}cml.tgz"
-  "$pkgname-$pkgver-ml-lpt.tgz::${_url}ml-lpt.tgz"
-  "$pkgname-$pkgver-ml-lex.tgz::${_url}ml-lex.tgz"
-  "$pkgname-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
-  "$pkgname-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
-  "$pkgname-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
-  'urlgetter.sh'
-  'profile.d-smlnj.sh'
-  'smlnj.sh'
-)
-sha256sums=('a29e3b0ca623da197e9c18ea64db4c2a08fe5e6add85c0d053c4ecfa653ace82'
-'1810d3ca768222e120c7a3f2f93aafd652705371fc73929423c671dce3cef832'
-'7055c60481a887f27a5135ac1f33233565b99a7c99c4aa73e023e28e629b0663'
-'6d23aff2e75727bf6969b05a070128f187e06f60408aabf6a71e0475326fee87'
-'5fcf4bbdeaddb247f69a333d2295f5f5c0be55b1f86ff4fbffb63f0021d84d6c'
-'f46b1de79a98f4aa9830325d39cb1e4867338d4db6b8a102084db1512218'
-'da3c5236018fa7608863c2fe1f3c57b60013df98b5a249fb3d4edc738cdfd072'
-'3356924655277416d8a491c1d601a0f567ab3d15cb17e243620e85cb28f0e9dd'
-'7e2534e393d2372cad8ff9ddd306881db91bbbcc2b0e0538e76868c86c658c36'
-'8b96a82a3d63b000b70a1b982aab9750ce9caa77f316f6a923969e86b0133f31'
-'556110c746db863211ac8a97e1bf097b0e5d45dfea4b3e8194b6c389ac2b569a'
-'2f60e1467a69fd4fb5501354244337926bc2a65225dde328f6aa3883b14fb3a5'
-'cc7e045aa9667f1eed055db1defca0e830eed34c08f3dfdf37f698964fe04070'
-'cfebaeb5f08810fcc93c49bf171834b7bf14b5f7e76d206e0afa35e18887bdb9'
-'62ea37b13788078e3ea77d3b870da42788153c348009f827f2c0b05cfc07d918'
-'ecc54281b8654c75f8b9d4ebdf1ff67de71ef31297cf1b14115cd75645e46a5a'
-'4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
-'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
-'3012a08e113b0cf6feff06689c1ae2ad48524e200d30ac46676f3c9e53665218')
-
-prepare() {
-  mkdir -p install
-}
-
-build() {
-  unset SMLNJ_HOME MAKEFLAGS
-  export srcdir
-  export pkgver
-  export INSTALLDIR="$srcdir/install"
-  URLGETTER="$srcdir/urlgetter.sh"
-  config/install.sh
-}
-
-package() {
-  install -d "$pkgdir/usr/"{lib/smlnj,share}
-  install -Dm755 "$srcdir/profile.d-smlnj.sh" "$pkgdir/etc/profile.d/smlnj.sh"
-  install -Dm644 compiler/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  cp -R "$srcdir/install/"{bin,lib} "$pkgdir/usr/lib/smlnj"
-  cp -R "$srcdir/doc/man" "$pkgdir/usr/share/"
-  find "$pkgdir/usr/share/man" -name '._*' -delete
-  install -Dm755 smlnj.sh "$pkgdir/usr/bin/smlnj"
-}
-
-# getver: smlnj.org
-# vim: ts=2 sw=2 et:

Copied: smlnj/repos/multilib-x86_64/PKGBUILD (from rev 418541, 
smlnj/trunk/PKGBUILD)

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

2018-12-27 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 27, 2018 @ 19:05:12
  Author: arodseth
Revision: 418541

upgpkg: smlnj 110.85-1

Modified:
  smlnj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:04:48 UTC (rev 418540)
+++ PKGBUILD2018-12-27 19:05:12 UTC (rev 418541)
@@ -2,16 +2,16 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=smlnj
-pkgver=110.84
+pkgver=110.85
 pkgrel=1
 pkgdesc='Standard ML compiler from New Jersey'
 url='https://www.smlnj.org/'
-license=('BSD')
-arch=('x86_64')
-provides=('sml')
+license=(BSD)
+arch=(x86_64)
+provides=(sml)
 install=smlnj.install
-depends=('lib32-glibc')
-makedepends=('gcc-multilib')
+depends=(lib32-glibc)
+makedepends=(gcc-multilib)
 _url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/;
 source=(
   "$pkgname-$pkgver-boot.x86-unix.tgz::${_url}boot.x86-unix.tgz"
@@ -30,26 +30,26 @@
   "$pkgname-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
   "$pkgname-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
   "$pkgname-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
-  'urlgetter.sh'
-  'profile.d-smlnj.sh'
-  'smlnj.sh'
+  urlgetter.sh
+  profile.d-smlnj.sh
+  smlnj.sh
 )
-sha256sums=('a29e3b0ca623da197e9c18ea64db4c2a08fe5e6add85c0d053c4ecfa653ace82'
-'1810d3ca768222e120c7a3f2f93aafd652705371fc73929423c671dce3cef832'
-'7055c60481a887f27a5135ac1f33233565b99a7c99c4aa73e023e28e629b0663'
-'6d23aff2e75727bf6969b05a070128f187e06f60408aabf6a71e0475326fee87'
-'5fcf4bbdeaddb247f69a333d2295f5f5c0be55b1f86ff4fbffb63f0021d84d6c'
-'f46b1de79a98f4aa9830325d39cb1e4867338d4db6b8a102084db1512218'
-'da3c5236018fa7608863c2fe1f3c57b60013df98b5a249fb3d4edc738cdfd072'
-'3356924655277416d8a491c1d601a0f567ab3d15cb17e243620e85cb28f0e9dd'
-'7e2534e393d2372cad8ff9ddd306881db91bbbcc2b0e0538e76868c86c658c36'
-'8b96a82a3d63b000b70a1b982aab9750ce9caa77f316f6a923969e86b0133f31'
-'556110c746db863211ac8a97e1bf097b0e5d45dfea4b3e8194b6c389ac2b569a'
-'2f60e1467a69fd4fb5501354244337926bc2a65225dde328f6aa3883b14fb3a5'
-'cc7e045aa9667f1eed055db1defca0e830eed34c08f3dfdf37f698964fe04070'
-'cfebaeb5f08810fcc93c49bf171834b7bf14b5f7e76d206e0afa35e18887bdb9'
-'62ea37b13788078e3ea77d3b870da42788153c348009f827f2c0b05cfc07d918'
-'ecc54281b8654c75f8b9d4ebdf1ff67de71ef31297cf1b14115cd75645e46a5a'
+sha256sums=('8a9269818dc6f9d9587c8447e13fd07a71fe169ff6ac6a92fee66e498e0f3017'
+'a1bec62058678157f4142228fd6c074d9c3f3c8eca4bf13d0feec40df0c891e2'
+'05043d490e613ed85d2542cf0c8ad1f50922ea8c58aaa76141c0bfaeea94600c'
+'358974715cdce99dd12fff7f732dfde31940750a3f0098291b4f8c91e2c638ff'
+'c435f73728bbba585719a746f46384075a16e84bc5920ea3270345a1536a30d9'
+'a8ba7b15d07c9ddc922da3677546d2535c75f50263c471661d9f7d4a54ac4a9f'
+'28e86de090e3bf150a7aba322a913e10948091e53b851ff89ecb24df79332f0d'
+'cd48d7fd190bfafc2d209e4466368f955725dbca5de8c81fc6a6de786de064f2'
+'d185a6bc577bc0ea5cc7f5248e1b08ba9c2b376c4fd05f76748d60b8057f1d93'
+'fcf8ab0f2438768530a3b4bfaaa40f86af7d23f35dd3bb1a6e64403fbf8e889a'
+'43d1d06a8e62bcf21efb48f0d9c67c469eeeb40ba953f9f0cd43e191c9c7b415'
+'602e6c553d4ea82bdea2d7a6cf70d23b91e54a41896308b5cfc15094ac83e300'
+'984edf37721f94851505a5902128521e46729fc08e09d3e787db73e24ea8d380'
+'09e7ac57f9defd6902bae1d539cbd04bfba69e227a4d7fc31139da8e3e3d13e4'
+'096aefd291ceff19722d3236984522147de5edfa4a91837d06e5f645af565882'
+'e78daf92821e33992ad9ca91ca63ba2269c41b996c0ceb547da1e6f6dba56a3a'
 '4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
 'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
 '3012a08e113b0cf6feff06689c1ae2ad48524e200d30ac46676f3c9e53665218')


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:04:44
  Author: aginiewicz
Revision: 418539

upgpkg: python-xlsxwriter 1.1.2-1

python-xlsxwriter: new upstream release

Modified:
  python-xlsxwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:03:23 UTC (rev 418538)
+++ PKGBUILD2018-12-27 19:04:44 UTC (rev 418539)
@@ -2,7 +2,7 @@
 
 pkgbase=python-xlsxwriter
 pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc="A Python module for creating Excel XLSX files"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
-sha1sums=('b2d8ed7a3621c824ba0ca70680cb48a991a9e34a')
+sha1sums=('f577fe97dfaa606109165c21facdd7ced21e0626')
 
 prepare() {
   cd "$srcdir"


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:04:48
  Author: aginiewicz
Revision: 418540

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:04:44 UTC (rev 418539)
+++ PKGBUILD2018-12-27 19:04:48 UTC (rev 418540)
@@ -1,51 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgbase=python-xlsxwriter
-pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="A Python module for creating Excel XLSX files"
-arch=('any')
-url="https://github.com/jmcnamara/XlsxWriter;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
-sha1sums=('b2d8ed7a3621c824ba0ca70680cb48a991a9e34a')
-
-prepare() {
-  cd "$srcdir"
-  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
-  python2 setup.py build
-
-  msg "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 418539, 
python-xlsxwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 19:04:48 UTC (rev 418540)
@@ -0,0 +1,51 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgbase=python-xlsxwriter
+pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="A Python module for creating Excel XLSX files"
+arch=('any')
+url="https://github.com/jmcnamara/XlsxWriter;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
+sha1sums=('f577fe97dfaa606109165c21facdd7ced21e0626')
+
+prepare() {
+  cd "$srcdir"
+  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python setup.py build
+}
+
+package_python2-xlsxwriter() {
+  depends=('python2')
+
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  mv "$pkgdir"/usr/bin/vba_extract{,2}.py
+}
+
+package_python-xlsxwriter() {
+  depends=('python')
+
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:03:20
  Author: aginiewicz
Revision: 418537

upgpkg: python-xlrd 1.2.0-1

python-xlrd: new upstream release

Modified:
  python-xlrd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 19:02:01 UTC (rev 418536)
+++ PKGBUILD2018-12-27 19:03:20 UTC (rev 418537)
@@ -6,8 +6,8 @@
 
 pkgbase=python-xlrd
 pkgname=('python2-xlrd' 'python-xlrd')
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.2.0
+pkgrel=1
 pkgdesc="Library for developers to extract data from Microsoft Excel (tm) 
spreadsheet files"
 arch=('any')
 url="http://www.python-excel.org/;
@@ -14,7 +14,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 source=("https://github.com/python-excel/xlrd/archive/${pkgver}.tar.gz;)
-md5sums=('aa626702492004aa2ea302cc1001d65e')
+sha1sums=('95bb16f909d8cc58f2fbde056c0e5b11661acb12')
 
 build() {
   cd "$srcdir"


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:03:23
  Author: aginiewicz
Revision: 418538

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:03:20 UTC (rev 418537)
+++ PKGBUILD2018-12-27 19:03:23 UTC (rev 418538)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Aaron DeVore 
-# Contributor: tocer 
-# Contributor: Piotr Beling 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-xlrd
-pkgname=('python2-xlrd' 'python-xlrd')
-pkgver=1.1.0
-pkgrel=2
-pkgdesc="Library for developers to extract data from Microsoft Excel (tm) 
spreadsheet files"
-arch=('any')
-url="http://www.python-excel.org/;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/python-excel/xlrd/archive/${pkgver}.tar.gz;)
-md5sums=('aa626702492004aa2ea302cc1001d65e')
-
-build() {
-  cd "$srcdir"
-  cp -a xlrd-${pkgver} xlrd-py2-${pkgver}
-
-  msg "Building Python2"
-  cd "$srcdir"/xlrd-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/xlrd-${pkgver}
-  python setup.py build
-}
-
-package_python2-xlrd() {
-  depends=('python2')
-
-  cd "$srcdir"/xlrd-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-  mv "$pkgdir/usr/bin/runxlrd"{,2}.py
-
-  install -D -m644 "docs/licenses.rst" 
"$pkgdir/usr/share/licenses/$pkgname/licenses.rst"
-}
-
-package_python-xlrd() {
-  depends=('python')
-
-  cd "$srcdir"/xlrd-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m644 "docs/licenses.rst" 
"$pkgdir/usr/share/licenses/$pkgname/licenses.rst"
-}
-

Copied: python-xlrd/repos/community-any/PKGBUILD (from rev 418537, 
python-xlrd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 19:03:23 UTC (rev 418538)
@@ -0,0 +1,52 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Aaron DeVore 
+# Contributor: tocer 
+# Contributor: Piotr Beling 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-xlrd
+pkgname=('python2-xlrd' 'python-xlrd')
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Library for developers to extract data from Microsoft Excel (tm) 
spreadsheet files"
+arch=('any')
+url="http://www.python-excel.org/;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("https://github.com/python-excel/xlrd/archive/${pkgver}.tar.gz;)
+sha1sums=('95bb16f909d8cc58f2fbde056c0e5b11661acb12')
+
+build() {
+  cd "$srcdir"
+  cp -a xlrd-${pkgver} xlrd-py2-${pkgver}
+
+  msg "Building Python2"
+  cd "$srcdir"/xlrd-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/xlrd-${pkgver}
+  python setup.py build
+}
+
+package_python2-xlrd() {
+  depends=('python2')
+
+  cd "$srcdir"/xlrd-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+  mv "$pkgdir/usr/bin/runxlrd"{,2}.py
+
+  install -D -m644 "docs/licenses.rst" 
"$pkgdir/usr/share/licenses/$pkgname/licenses.rst"
+}
+
+package_python-xlrd() {
+  depends=('python')
+
+  cd "$srcdir"/xlrd-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "docs/licenses.rst" 
"$pkgdir/usr/share/licenses/$pkgname/licenses.rst"
+}
+


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:01:54
  Author: aginiewicz
Revision: 418535

upgpkg: python-scikit-learn 0.20.2-1

python-scikit-learn: new upstream release

Modified:
  python-scikit-learn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:52:34 UTC (rev 418534)
+++ PKGBUILD2018-12-27 19:01:54 UTC (rev 418535)
@@ -2,7 +2,7 @@
 
 pkgbase=python-scikit-learn
 pkgname=('python2-scikit-learn' 'python-scikit-learn')
-pkgver=0.20.0
+pkgver=0.20.2
 pkgrel=1
 pkgdesc="A set of python modules for machine learning and data mining"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 
 
source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
-md5sums=('62ea42e931e5ad17a99d3854d562dadb')
+sha1sums=('20a3713661041675fd9c2d9f2a676461b996cda2')
 
 prepare() {
   cd "$srcdir"


[arch-commits] Commit in python-scikit-learn/repos/community-x86_64 (2 files)

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 19:02:01
  Author: aginiewicz
Revision: 418536

archrelease: copy trunk to community-x86_64

Added:
  python-scikit-learn/repos/community-x86_64/PKGBUILD
(from rev 418535, python-scikit-learn/trunk/PKGBUILD)
Deleted:
  python-scikit-learn/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  134 ++---
 1 file changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 19:01:54 UTC (rev 418535)
+++ PKGBUILD2018-12-27 19:02:01 UTC (rev 418536)
@@ -1,67 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgbase=python-scikit-learn
-pkgname=('python2-scikit-learn' 'python-scikit-learn')
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="A set of python modules for machine learning and data mining"
-arch=('x86_64')
-url="http://scikit-learn.sourceforge.net/;
-license=('BSD')
-makedepends=('python2-scipy' 'python-scipy' 'python2-setuptools' 
'python-setuptools' 'cython' 'cython2')
-options=(!emptydirs)
-
-source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
-md5sums=('62ea42e931e5ad17a99d3854d562dadb')
-
-prepare() {
-  cd "$srcdir"
-
-  cp -a scikit-learn-$pkgver scikit-learn-py2-$pkgver
-  cd scikit-learn-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/scikit-learn-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/scikit-learn-$pkgver
-  python setup.py build
-}
-
-package_python2-scikit-learn() {
-  depends=('python2-scipy')
-  optdepends=('python2-matplotlib: for examples with plotting')
-
-  cd "$srcdir"/scikit-learn-py2-$pkgver
-
-  python2 setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # See FS#49651
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
-}
-
-package_python-scikit-learn() {
-  depends=('python-scipy')
-  optdepends=('python-matplotlib: for examples with plotting')
-
-  cd "$srcdir"/scikit-learn-$pkgver
-
-  python setup.py install --root="$pkgdir"/ --optimize=1
-
-  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # See FS#49651
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
-}

Copied: python-scikit-learn/repos/community-x86_64/PKGBUILD (from rev 418535, 
python-scikit-learn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 19:02:01 UTC (rev 418536)
@@ -0,0 +1,67 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgbase=python-scikit-learn
+pkgname=('python2-scikit-learn' 'python-scikit-learn')
+pkgver=0.20.2
+pkgrel=1
+pkgdesc="A set of python modules for machine learning and data mining"
+arch=('x86_64')
+url="http://scikit-learn.sourceforge.net/;
+license=('BSD')
+makedepends=('python2-scipy' 'python-scipy' 'python2-setuptools' 
'python-setuptools' 'cython' 'cython2')
+options=(!emptydirs)
+
+source=("https://github.com/scikit-learn/scikit-learn/archive/${pkgver}.tar.gz;)
+sha1sums=('20a3713661041675fd9c2d9f2a676461b996cda2')
+
+prepare() {
+  cd "$srcdir"
+
+  cp -a scikit-learn-$pkgver scikit-learn-py2-$pkgver
+  cd scikit-learn-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/scikit-learn-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/scikit-learn-$pkgver
+  python setup.py build
+}
+
+package_python2-scikit-learn() {
+  depends=('python2-scipy')
+  optdepends=('python2-matplotlib: for examples with plotting')
+
+  cd "$srcdir"/scikit-learn-py2-$pkgver
+
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # See FS#49651
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
+}
+
+package_python-scikit-learn() {
+  depends=('python-scipy')
+  optdepends=('python-matplotlib: for examples with plotting')
+
+  cd "$srcdir"/scikit-learn-$pkgver
+
+  python setup.py install --root="$pkgdir"/ --optimize=1
+
+  install -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # See FS#49651
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  cp -r doc/tutorial "$pkgdir"/usr/share/doc/$pkgname/tutorial
+}


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:52:34
  Author: aginiewicz
Revision: 418534

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:52:28 UTC (rev 418533)
+++ PKGBUILD2018-12-27 18:52:34 UTC (rev 418534)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Oliver Sherouse 
-# Contributor: Nick Ward 
-# Contributor: Rich Lindsley 
-
-pkgbase=python-patsy
-pkgname=('python2-patsy' 'python-patsy')
-pkgver=0.5.0
-pkgrel=2
-pkgdesc="A Python package for describing statistical models and for building 
design matrices"
-arch=('any')
-url="https://github.com/pydata/patsy;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'unzip')
-source=("https://github.com/pydata/patsy/archive/v${pkgver}.tar.gz;)
-md5sums=('f17a639e9673df2d02489f03bbe3ab7c')
-
-build() {
-  cd "$srcdir"
-  cp -a patsy-${pkgver} patsy-py2-${pkgver}
-
-  msg "Building Python2"
-  cd "$srcdir"/patsy-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/patsy-${pkgver}
-  python setup.py build
-}
-
-package_python2-patsy() {
-  depends=('python2-numpy')
-  optdepends=('python2-nose: needed for integrated test suite'
-  'python2-scipy: needed for spline-related functions')
-
-  cd "$srcdir"/patsy-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-patsy() {
-  depends=('python-numpy')
-  optdepends=('python-nose: needed for integrated test suite'
-  'python-scipy: needed for spline-related functions')
-
-  cd "$srcdir"/patsy-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-patsy/repos/community-any/PKGBUILD (from rev 418533, 
python-patsy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:52:34 UTC (rev 418534)
@@ -0,0 +1,54 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Oliver Sherouse 
+# Contributor: Nick Ward 
+# Contributor: Rich Lindsley 
+
+pkgbase=python-patsy
+pkgname=('python2-patsy' 'python-patsy')
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="A Python package for describing statistical models and for building 
design matrices"
+arch=('any')
+url="https://github.com/pydata/patsy;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'unzip')
+source=("https://github.com/pydata/patsy/archive/v${pkgver}.tar.gz;)
+sha1sums=('29ea64dd2958f1b50fd36b40ed352b670fadeb7b')
+
+build() {
+  cd "$srcdir"
+  cp -a patsy-${pkgver} patsy-py2-${pkgver}
+
+  msg "Building Python2"
+  cd "$srcdir"/patsy-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/patsy-${pkgver}
+  python setup.py build
+}
+
+package_python2-patsy() {
+  depends=('python2-numpy')
+  optdepends=('python2-nose: needed for integrated test suite'
+  'python2-scipy: needed for spline-related functions')
+
+  cd "$srcdir"/patsy-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-patsy() {
+  depends=('python-numpy')
+  optdepends=('python-nose: needed for integrated test suite'
+  'python-scipy: needed for spline-related functions')
+
+  cd "$srcdir"/patsy-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:52:28
  Author: aginiewicz
Revision: 418533

upgpkg: python-patsy 0.5.1-1

python-patsy: new upstream release

Modified:
  python-patsy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:50:59 UTC (rev 418532)
+++ PKGBUILD2018-12-27 18:52:28 UTC (rev 418533)
@@ -5,8 +5,8 @@
 
 pkgbase=python-patsy
 pkgname=('python2-patsy' 'python-patsy')
-pkgver=0.5.0
-pkgrel=2
+pkgver=0.5.1
+pkgrel=1
 pkgdesc="A Python package for describing statistical models and for building 
design matrices"
 arch=('any')
 url="https://github.com/pydata/patsy;
@@ -13,7 +13,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'unzip')
 source=("https://github.com/pydata/patsy/archive/v${pkgver}.tar.gz;)
-md5sums=('f17a639e9673df2d02489f03bbe3ab7c')
+sha1sums=('29ea64dd2958f1b50fd36b40ed352b670fadeb7b')
 
 build() {
   cd "$srcdir"


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:50:59
  Author: aginiewicz
Revision: 418532

archrelease: copy trunk to community-any

Added:
  python-openpyxl/repos/community-any/LICENCE
(from rev 418531, python-openpyxl/trunk/LICENCE)
  python-openpyxl/repos/community-any/PKGBUILD
(from rev 418531, python-openpyxl/trunk/PKGBUILD)
Deleted:
  python-openpyxl/repos/community-any/LICENCE
  python-openpyxl/repos/community-any/PKGBUILD

--+
 LICENCE  |   70 +-
 PKGBUILD |  124 ++---
 2 files changed, 97 insertions(+), 97 deletions(-)

Deleted: LICENCE
===
--- LICENCE 2018-12-27 18:50:55 UTC (rev 418531)
+++ LICENCE 2018-12-27 18:50:59 UTC (rev 418532)
@@ -1,35 +0,0 @@
-This software is under the MIT Licence
-==
-
-Copyright (c) 2010 openpyxl
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Odict implementation in openpyxl/writer/odict.py uses the following licence:
-
-Copyright (c) 2001-2011 Python Software Foundation
-  2011 Raymond Hettinger
-License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
- See http://www.opensource.org/licenses/Python-2.0 for full terms
-Note: backport changes by Raymond were originally distributed under MIT
-  license, but since the original license for Python is more
-  restrictive than MIT, code cannot be released under its terms and
-  still adheres to the limitations of Python license.
-

Copied: python-openpyxl/repos/community-any/LICENCE (from rev 418531, 
python-openpyxl/trunk/LICENCE)
===
--- LICENCE (rev 0)
+++ LICENCE 2018-12-27 18:50:59 UTC (rev 418532)
@@ -0,0 +1,35 @@
+This software is under the MIT Licence
+==
+
+Copyright (c) 2010 openpyxl
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Odict implementation in openpyxl/writer/odict.py uses the following licence:
+
+Copyright (c) 2001-2011 Python Software Foundation
+  2011 Raymond Hettinger
+License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+ See http://www.opensource.org/licenses/Python-2.0 for full terms
+Note: backport changes by Raymond were originally distributed under MIT
+  license, but since the original license for Python is more
+  restrictive than MIT, code cannot be released under its terms and
+  still adheres to the limitations of Python license.
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:50:55 UTC (rev 418531)
+++ PKGBUILD2018-12-27 18:50:59 UTC (rev 418532)
@@ -1,62 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Nishit Joseph (reachjlight at gmail dot com)
-# Contributor: Martin Corley 
-
-pkgbase=python-openpyxl
-pkgname=('python2-openpyxl' 

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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:50:55
  Author: aginiewicz
Revision: 418531

upgpkg: python-openpyxl 2.5.12-1

python-openpyxl: new upstream release

Modified:
  python-openpyxl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:49:35 UTC (rev 418530)
+++ PKGBUILD2018-12-27 18:50:55 UTC (rev 418531)
@@ -4,8 +4,8 @@
 
 pkgbase=python-openpyxl
 pkgname=('python2-openpyxl' 'python-openpyxl')
-pkgver=2.5.9
-_pkgtag='9035a8ec775d'
+pkgver=2.5.12
+_pkgtag='eee167cb1c26'
 pkgrel=1
 pkgdesc="A Python library to read/write Excel 2007 xlsx/xlsm files"
 arch=('any')
@@ -14,8 +14,8 @@
 makedepends=('python2-setuptools' 'python-setuptools' 'python-jdcal' 
'python2-jdcal' 'python-et-xmlfile' 'python2-et-xmlfile')
 source=("https://bitbucket.org/openpyxl/openpyxl/get/${pkgver}.tar.bz2;
 "LICENCE")
-md5sums=('837705e2c2eab00316d6ffe6ab1f2259'
- 'c8afe530744e932b892358e6eb5bea9b')
+sha1sums=('66cc5a19e2c303f407a9bc5792bbc80265850532'
+  '811743470859c6ad34a89155c36daf53b1dfba8a')
 
 prepare() {
   cd "$srcdir"


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 18:49:31
  Author: bgyorgy
Revision: 418529

upgpkg: pinta 1.6-4

Add AppStream metadata

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

---+
 PKGBUILD  |   14 +++-
 pinta.appdata.xml |   59 
 2 files changed, 68 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:47:33 UTC (rev 418528)
+++ PKGBUILD2018-12-27 18:49:31 UTC (rev 418529)
@@ -3,7 +3,7 @@
 
 pkgname=pinta
 pkgver=1.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Drawing/editing program modeled after Paint.NET. It's goal is to 
provide a simplified alternative to GIMP for casual users"
 arch=('any')
 url="https://pinta-project.com/;
@@ -10,8 +10,10 @@
 license=('MIT')
 depends=('gtk-sharp-2' 'mono-addins')
 makedepends=('intltool')
-source=(https://github.com/PintaProject/Pinta/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f1ea9e95f1051b92c8d8b6f622dfb77bd26254a165a836ec179aae10eb99d881')
+source=(https://github.com/PintaProject/Pinta/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
+pinta.appdata.xml)
+sha256sums=('f1ea9e95f1051b92c8d8b6f622dfb77bd26254a165a836ec179aae10eb99d881'
+'37132612c9bf08b95cd3ce12ec8e3e5e76511d1e7e719d1ef5ad97e41bdd74b4')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -30,6 +32,8 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
-  install -m644 license-*.txt readme.md "$pkgdir"/usr/share/licenses/$pkgname/
+
+  install -Dm644 ../pinta.appdata.xml 
"$pkgdir/usr/share/metainfo/pinta.appdata.xml"
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" license-*.txt 
readme.md
+  rm -r "$pkgdir/usr/share/pixmaps/"
 }

Added: pinta.appdata.xml
===
--- pinta.appdata.xml   (rev 0)
+++ pinta.appdata.xml   2018-12-27 18:49:31 UTC (rev 418529)
@@ -0,0 +1,59 @@
+
+
+  pinta.desktop
+  CC0-1.0
+  MIT
+  Pinta
+  Edit images and paint digitally
+  
+
+  Pinta is a image editing, drawing and painting application with a simple
+  yet powerful interface.
+  Pinta has a wide range of drawing tools, including: freehand, rectangles,
+  circles and lines.
+  It also has over 35 effects to apply to your images, and also has the
+  ability to create unlimited layers to help organize your creativity.
+
+  
+  pinta.desktop
+  
+Graphics
+2DGraphics
+RasterGraphics
+GTK
+  
+  
+draw
+drawing
+paint
+painting
+graphics
+raster
+2d
+  
+  
+HiDpiIcon
+HighContrast
+UserDocs
+  
+  
+
+  Main window
+  
https://pinta-project.com/pintaproject/pinta/theme/images/ss1.jpg
+
+  
+  Jonathan Pobst
+  https://bugs.launchpad.net/pinta
+  https://communiroo.com/pintaproject/pinta/questions
+  https://pinta-project.com/pintaproject/pinta/howto
+  https://pinta-project.com
+  https://translations.launchpad.net/pinta
+  
+  pinta
+  
+pinta
+  
+  
+
+  
+


[arch-commits] Commit in pinta/repos/community-any (3 files)

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 18:49:35
  Author: bgyorgy
Revision: 418530

archrelease: copy trunk to community-any

Added:
  pinta/repos/community-any/PKGBUILD
(from rev 418529, pinta/trunk/PKGBUILD)
  pinta/repos/community-any/pinta.appdata.xml
(from rev 418529, pinta/trunk/pinta.appdata.xml)
Deleted:
  pinta/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   74 +++-
 pinta.appdata.xml |   59 +
 2 files changed, 98 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:49:31 UTC (rev 418529)
+++ PKGBUILD2018-12-27 18:49:35 UTC (rev 418530)
@@ -1,35 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Konrad 
-
-pkgname=pinta
-pkgver=1.6
-pkgrel=3
-pkgdesc="Drawing/editing program modeled after Paint.NET. It's goal is to 
provide a simplified alternative to GIMP for casual users"
-arch=('any')
-url="https://pinta-project.com/;
-license=('MIT')
-depends=('gtk-sharp-2' 'mono-addins')
-makedepends=('intltool')
-source=(https://github.com/PintaProject/Pinta/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f1ea9e95f1051b92c8d8b6f622dfb77bd26254a165a836ec179aae10eb99d881')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # update the project and solution files for mono4 (taken from Fedora)
-  find . -name "*.sln" -print -exec sed -i 's/Format Version 10.00/Format 
Version 11.00/g' {} \;
-  find . \( -name "*.csproj" -o -name "*.proj" \) -print -exec sed -i 
's#ToolsVersion="3.5"#ToolsVersion="4.0"#g; 
s#.*##g; 
s##v4.5#g;
 s#Mono.Posix, Version.*"#Mono.Posix"#g' {} \;
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
-  install -m644 license-*.txt readme.md "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: pinta/repos/community-any/PKGBUILD (from rev 418529, 
pinta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:49:35 UTC (rev 418530)
@@ -0,0 +1,39 @@
+# Maintainer: Balló György 
+# Contributor: Konrad 
+
+pkgname=pinta
+pkgver=1.6
+pkgrel=4
+pkgdesc="Drawing/editing program modeled after Paint.NET. It's goal is to 
provide a simplified alternative to GIMP for casual users"
+arch=('any')
+url="https://pinta-project.com/;
+license=('MIT')
+depends=('gtk-sharp-2' 'mono-addins')
+makedepends=('intltool')
+source=(https://github.com/PintaProject/Pinta/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
+pinta.appdata.xml)
+sha256sums=('f1ea9e95f1051b92c8d8b6f622dfb77bd26254a165a836ec179aae10eb99d881'
+'37132612c9bf08b95cd3ce12ec8e3e5e76511d1e7e719d1ef5ad97e41bdd74b4')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # update the project and solution files for mono4 (taken from Fedora)
+  find . -name "*.sln" -print -exec sed -i 's/Format Version 10.00/Format 
Version 11.00/g' {} \;
+  find . \( -name "*.csproj" -o -name "*.proj" \) -print -exec sed -i 
's#ToolsVersion="3.5"#ToolsVersion="4.0"#g; 
s#.*##g; 
s##v4.5#g;
 s#Mono.Posix, Version.*"#Mono.Posix"#g' {} \;
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../pinta.appdata.xml 
"$pkgdir/usr/share/metainfo/pinta.appdata.xml"
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" license-*.txt 
readme.md
+  rm -r "$pkgdir/usr/share/pixmaps/"
+}

Copied: pinta/repos/community-any/pinta.appdata.xml (from rev 418529, 
pinta/trunk/pinta.appdata.xml)
===
--- pinta.appdata.xml   (rev 0)
+++ pinta.appdata.xml   2018-12-27 18:49:35 UTC (rev 418530)
@@ -0,0 +1,59 @@
+
+
+  pinta.desktop
+  CC0-1.0
+  MIT
+  Pinta
+  Edit images and paint digitally
+  
+
+  Pinta is a image editing, drawing and painting application with a simple
+  yet powerful interface.
+  Pinta has a wide range of drawing tools, including: freehand, rectangles,
+  circles and lines.
+  It also has over 35 effects to apply to your images, and also has the
+  ability to create unlimited layers to help organize your creativity.
+
+  
+  pinta.desktop
+  
+Graphics
+2DGraphics
+RasterGraphics
+GTK
+  
+  
+draw
+drawing
+paint
+painting
+graphics
+raster
+2d
+  
+  
+HiDpiIcon
+HighContrast
+UserDocs
+  
+  
+
+  Main window
+  
https://pinta-project.com/pintaproject/pinta/theme/images/ss1.jpg
+
+  
+  Jonathan Pobst
+  https://bugs.launchpad.net/pinta
+  https://communiroo.com/pintaproject/pinta/questions

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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:47:28
  Author: aginiewicz
Revision: 418527

upgpkg: python-numexpr 2.6.9-1

python-numexpr: new upstream release

Modified:
  python-numexpr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:45:10 UTC (rev 418526)
+++ PKGBUILD2018-12-27 18:47:28 UTC (rev 418527)
@@ -3,7 +3,7 @@
 
 pkgbase=python-numexpr
 pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.6.8
+pkgver=2.6.9
 pkgrel=1
 pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
 url="https://github.com/pydata/numexpr;
@@ -11,7 +11,7 @@
 license=('MIT')
 makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('ce8f5c900b03447a8db8a8c0cab9c2a5')
+sha1sums=('db6cbb412fb1f85f87814002b88d0e479cf3ac51')
 
 prepare() {
   cd "$srcdir"


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:47:33
  Author: aginiewicz
Revision: 418528

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:47:28 UTC (rev 418527)
+++ PKGBUILD2018-12-27 18:47:33 UTC (rev 418528)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.6.8
-pkgrel=1
-pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
-url="https://github.com/pydata/numexpr;
-arch=('x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('ce8f5c900b03447a8db8a8c0cab9c2a5')
-
-prepare() {
-  cd "$srcdir"
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-  cd numexpr-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/numexpr-$pkgver
-  python setup.py build
-}
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd "$srcdir"/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-numexpr() {
-  depends=('python-numpy')
-
-  cd "$srcdir"/numexpr-$pkgver
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-x86_64/PKGBUILD (from rev 418527, 
python-numexpr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:47:33 UTC (rev 418528)
@@ -0,0 +1,56 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Sebastien Binet 
+
+pkgbase=python-numexpr
+pkgname=('python2-numexpr' 'python-numexpr')
+pkgver=2.6.9
+pkgrel=1
+pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
+url="https://github.com/pydata/numexpr;
+arch=('x86_64')
+license=('MIT')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+sha1sums=('db6cbb412fb1f85f87814002b88d0e479cf3ac51')
+
+prepare() {
+  cd "$srcdir"
+  cp -a numexpr-$pkgver numexpr-py2-$pkgver
+  cd numexpr-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/numexpr-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/numexpr-$pkgver
+  python setup.py build
+}
+
+package_python2-numexpr() {
+  depends=('python2-numpy')
+
+  cd "$srcdir"/numexpr-py2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-numexpr() {
+  depends=('python-numpy')
+
+  cd "$srcdir"/numexpr-$pkgver
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in python-google-api-python-client/trunk (PKGBUILD)

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:45:07
  Author: aginiewicz
Revision: 418525

upgpkg: python-google-api-python-client 1.7.7-1

python-google-api-python-client: new upstream release

Modified:
  python-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:42:13 UTC (rev 418524)
+++ PKGBUILD2018-12-27 18:45:07 UTC (rev 418525)
@@ -3,7 +3,7 @@
 
 pkgbase=python-google-api-python-client
 pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.7.4
+pkgver=1.7.7
 pkgrel=1
 pkgdesc="Google API Client Library for Python"
 arch=('any')
@@ -13,7 +13,7 @@
  'python2-google-auth-httplib2' 'python2-uritemplate'
 'python-google-auth-httplib2' 'python-uritemplate')
 
source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-md5sums=('0a693cf52048797273f7a57afde5dd8b')
+sha1sums=('f3bbd68ecf2fecfddb99cef8f07499ca6026d6a5')
 
 prepare() {
   cd "$srcdir"


[arch-commits] Commit in python-google-api-python-client/repos/community-any (2 files)

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:45:10
  Author: aginiewicz
Revision: 418526

archrelease: copy trunk to community-any

Added:
  python-google-api-python-client/repos/community-any/PKGBUILD
(from rev 418525, python-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:45:07 UTC (rev 418525)
+++ PKGBUILD2018-12-27 18:45:10 UTC (rev 418526)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: shadyabhi 
-
-pkgbase=python-google-api-python-client
-pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.7.4
-pkgrel=1
-pkgdesc="Google API Client Library for Python"
-arch=('any')
-url="https://github.com/google/google-api-python-client;
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools'
- 'python2-google-auth-httplib2' 'python2-uritemplate'
-'python-google-auth-httplib2' 'python-uritemplate')
-source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-md5sums=('0a693cf52048797273f7a57afde5dd8b')
-
-prepare() {
-  cd "$srcdir"
-  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
-  cd google-api-python-client-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir/google-api-python-client-$pkgver"
-
-  msg "Building Python2"
-  cd "$srcdir"/google-api-python-client-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/google-api-python-client-${pkgver}
-  python setup.py build
-}
- 
-package_python2-google-api-python-client() {
-  depends=('python2-google-auth-httplib2' 'python2-uritemplate')
-  optdepends=('python2-oauth2client: optional backend')
-  cd "$srcdir/google-api-python-client-py2-$pkgver"
- 
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-
-package_python-google-api-python-client() {
-  depends=('python-google-auth-httplib2' 'python-uritemplate')
-  optdepends=('python-oauth2client: optional backend')
-  cd "$srcdir/google-api-python-client-$pkgver"
- 
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-

Copied: python-google-api-python-client/repos/community-any/PKGBUILD (from rev 
418525, python-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:45:10 UTC (rev 418526)
@@ -0,0 +1,64 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: shadyabhi 
+
+pkgbase=python-google-api-python-client
+pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
+pkgver=1.7.7
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client;
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools'
+ 'python2-google-auth-httplib2' 'python2-uritemplate'
+'python-google-auth-httplib2' 'python-uritemplate')
+source=("https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
+sha1sums=('f3bbd68ecf2fecfddb99cef8f07499ca6026d6a5')
+
+prepare() {
+  cd "$srcdir"
+  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
+  cd google-api-python-client-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir/google-api-python-client-$pkgver"
+
+  msg "Building Python2"
+  cd "$srcdir"/google-api-python-client-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/google-api-python-client-${pkgver}
+  python setup.py build
+}
+ 
+package_python2-google-api-python-client() {
+  depends=('python2-google-auth-httplib2' 'python2-uritemplate')
+  optdepends=('python2-oauth2client: optional backend')
+  cd "$srcdir/google-api-python-client-py2-$pkgver"
+ 
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  # Workaround for FS#47243
+  

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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:42:13
  Author: aginiewicz
Revision: 418524

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:42:05 UTC (rev 418523)
+++ PKGBUILD2018-12-27 18:42:13 UTC (rev 418524)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgbase=python-blosc
-pkgname=('python2-blosc' 'python-blosc')
-pkgver=1.5.1
-pkgrel=2
-pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
-arch=('x86_64')
-url="http://python-blosc.blosc.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'blosc')
-source=("https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('36efec20fac80cb44b1f9c907a9d98c4')
-
-prepare() {
-  cd "$srcdir"
-  cp -a ${pkgbase}-${pkgver} ${pkgbase}-py2-${pkgver}
-  cd ${pkgbase}-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/${pkgbase}-py2-${pkgver}
-  python2 setup.py build_ext --inplace --blosc=/usr
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/${pkgbase}-${pkgver}
-  python setup.py build_ext --inplace --blosc=/usr
-  python setup.py build
-}
-
-package_python2-blosc() {
-  depends=('python2' 'blosc')
-
-  cd "$srcdir"/${pkgbase}-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSES/PYTHON-BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-blosc() {
-  depends=('python' 'blosc')
-
-  cd "$srcdir"/${pkgbase}-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSES/PYTHON-BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-blosc/repos/community-x86_64/PKGBUILD (from rev 418523, 
python-blosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:42:13 UTC (rev 418524)
@@ -0,0 +1,59 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgbase=python-blosc
+pkgname=('python2-blosc' 'python-blosc')
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
+arch=('x86_64')
+url="http://python-blosc.blosc.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'blosc')
+source=("https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
+sha1sums=('4a3ceb7ce7fa412432855b22894f865e18dd34e0')
+
+prepare() {
+  cd "$srcdir"
+  cp -a ${pkgbase}-${pkgver} ${pkgbase}-py2-${pkgver}
+  cd ${pkgbase}-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/${pkgbase}-py2-${pkgver}
+  python2 setup.py build_ext --inplace --blosc=/usr
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/${pkgbase}-${pkgver}
+  python setup.py build_ext --inplace --blosc=/usr
+  python setup.py build
+}
+
+package_python2-blosc() {
+  depends=('python2' 'blosc')
+  optdepends=('python2-numpy: for tests and benchmarks')
+
+  cd "$srcdir"/${pkgbase}-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSES/PYTHON-BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-blosc() {
+  depends=('python' 'blosc')
+  optdepends=('python-numpy: for tests and benchmarks')
+
+  cd "$srcdir"/${pkgbase}-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSES/PYTHON-BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:42:05
  Author: aginiewicz
Revision: 418523

upgpkg: python-blosc 1.7.0-1

python-blosc: new upstream release

Modified:
  python-blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 18:22:21 UTC (rev 418522)
+++ PKGBUILD2018-12-27 18:42:05 UTC (rev 418523)
@@ -2,8 +2,8 @@
 
 pkgbase=python-blosc
 pkgname=('python2-blosc' 'python-blosc')
-pkgver=1.5.1
-pkgrel=2
+pkgver=1.7.0
+pkgrel=1
 pkgdesc="A Python wrapper for the extremely fast Blosc compression library"
 arch=('x86_64')
 url="http://python-blosc.blosc.org/;
@@ -10,7 +10,7 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'blosc')
 source=("https://github.com/Blosc/python-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('36efec20fac80cb44b1f9c907a9d98c4')
+sha1sums=('4a3ceb7ce7fa412432855b22894f865e18dd34e0')
 
 prepare() {
   cd "$srcdir"
@@ -37,6 +37,7 @@
 
 package_python2-blosc() {
   depends=('python2' 'blosc')
+  optdepends=('python2-numpy: for tests and benchmarks')
 
   cd "$srcdir"/${pkgbase}-py2-${pkgver}
 
@@ -47,6 +48,7 @@
 
 package_python-blosc() {
   depends=('python' 'blosc')
+  optdepends=('python-numpy: for tests and benchmarks')
 
   cd "$srcdir"/${pkgbase}-${pkgver}
 


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:22:21
  Author: aginiewicz
Revision: 418522

archrelease: copy trunk to community-x86_64

Added:
  blosc/repos/community-x86_64/PKGBUILD
(from rev 418521, blosc/trunk/PKGBUILD)
Deleted:
  blosc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 18:22:13 UTC (rev 418521)
+++ PKGBUILD2018-12-27 18:22:21 UTC (rev 418522)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=blosc
-pkgver=1.14.4
-pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
-arch=('x86_64')
-url='http://blosc.org/'
-license=('BSD')
-depends=('snappy' 'zstd')
-makedepends=('cmake')
-options=(staticlibs)
-source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('e80dfc71e4cba03b8d01ed0876547ffe')
-
-build() {
-  cd "${srcdir}"
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DPREFER_EXTERNAL_LZ4="ON" \
-   -DPREFER_EXTERNAL_ZLIB="ON" \
-   -DPREFER_EXTERNAL_SNAPPY="ON" \
-   -DPREFER_EXTERNAL_ZSTD="ON" \
--DBUILD_TESTS="OFF" \
-../c-blosc-${pkgver}
-
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: blosc/repos/community-x86_64/PKGBUILD (from rev 418521, 
blosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 18:22:21 UTC (rev 418522)
@@ -0,0 +1,39 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=blosc
+pkgver=1.15.1
+pkgrel=1
+pkgdesc='A blocking, shuffling and loss-less compression library.'
+arch=('x86_64')
+url='http://blosc.org/'
+license=('BSD')
+depends=('snappy' 'zstd')
+makedepends=('cmake')
+options=(staticlibs)
+source=("https://github.com/Blosc/c-blosc/archive/${pkgver}.tar.gz;)
+sha1sums=('3fedbf41f06f93a26728d489e83f2f7ab363a825')
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DPREFER_EXTERNAL_LZ4="ON" \
+   -DPREFER_EXTERNAL_ZLIB="ON" \
+   -DPREFER_EXTERNAL_SNAPPY="ON" \
+   -DPREFER_EXTERNAL_ZSTD="ON" \
+-DBUILD_TESTS="OFF" \
+../c-blosc-${pkgver}
+
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}


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

2018-12-27 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, December 27, 2018 @ 18:22:13
  Author: aginiewicz
Revision: 418521

upgpkg: blosc 1.15.1-1

blosc: new upstream release

Modified:
  blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 17:48:06 UTC (rev 418520)
+++ PKGBUILD2018-12-27 18:22:13 UTC (rev 418521)
@@ -1,7 +1,7 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname=blosc
-pkgver=1.14.4
+pkgver=1.15.1
 pkgrel=1
 pkgdesc='A blocking, shuffling and loss-less compression library.'
 arch=('x86_64')
@@ -10,8 +10,8 @@
 depends=('snappy' 'zstd')
 makedepends=('cmake')
 options=(staticlibs)
-source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('e80dfc71e4cba03b8d01ed0876547ffe')
+source=("https://github.com/Blosc/c-blosc/archive/${pkgver}.tar.gz;)
+sha1sums=('3fedbf41f06f93a26728d489e83f2f7ab363a825')
 
 build() {
   cd "${srcdir}"


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 17:47:58
  Author: bgyorgy
Revision: 418519

upgpkg: gwget 1.0.4-15

Move the icon into the icons directory

Modified:
  gwget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 17:35:01 UTC (rev 418518)
+++ PKGBUILD2018-12-27 17:47:58 UTC (rev 418519)
@@ -6,13 +6,13 @@
 
 pkgname=gwget
 pkgver=1.0.4
-pkgrel=14
+pkgrel=15
 pkgdesc="Download manager for GNOME"
 arch=('x86_64')
 url="https://projects.gnome.org/gwget/;
 license=('GPL')
 depends=('gtk3' 'libnotify' 'wget')
-makedepends=('intltool')
+makedepends=('intltool' 'imagemagick')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
 gwget.appdata.xml
 gwget-1.0.4-notify-0.7.patch
@@ -56,6 +56,10 @@
   # Port to GSettings
   patch -Np1 -i ../gsettings-port.patch
 
+  # Install icon into icons directory
+  sed -i 's|$(datadir)/pixmaps|$(datadir)/icons/hicolor/48x48/apps|' 
pixmaps/Makefile.am
+  convert pixmaps/gwget-large.png +set date:create +set date:modify 
-background none -extent 200x200 pixmaps/gwget-large.png
+
   autoreconf -fi
 }
 
@@ -69,5 +73,8 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -dm755 "$pkgdir"/usr/share/icons/hicolor/{64x64,128x128}/apps/
+  convert pixmaps/gwget-large.png +set date:create +set date:modify -resize 
64x64 -alpha on "$pkgdir/usr/share/icons/hicolor/64x64/apps/gwget.png"
+  convert pixmaps/gwget-large.png +set date:create +set date:modify -resize 
128x128 -alpha on "$pkgdir/usr/share/icons/hicolor/128x128/apps/gwget.png"
   install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
 }


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

2018-12-27 Thread Antonio Rojas via arch-commits
Date: Thursday, December 27, 2018 @ 17:35:56
  Author: arojas
Revision: 342765

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/IM7-GS-policy.patch
(from rev 342764, imagemagick/trunk/IM7-GS-policy.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 342764, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 342764, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/IM7-GS-policy.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 IM7-GS-policy.patch |   20 +--
 PKGBUILD|  270 +-
 arch-fonts.diff |  214 +++
 3 files changed, 252 insertions(+), 252 deletions(-)

Deleted: IM7-GS-policy.patch
===
--- IM7-GS-policy.patch 2018-12-27 17:35:37 UTC (rev 342764)
+++ IM7-GS-policy.patch 2018-12-27 17:35:56 UTC (rev 342765)
@@ -1,10 +0,0 @@
 ImageMagick-7.0.8-13/config/policy.xml.orig2018-10-22 
15:13:51.713995553 +
-+++ ImageMagick-7.0.8-13/config/policy.xml 2018-10-22 15:14:22.650737457 
+
-@@ -68,6 +68,7 @@
-   
-   
-   
-+  
-   
-   
-   

Copied: imagemagick/repos/extra-x86_64/IM7-GS-policy.patch (from rev 342764, 
imagemagick/trunk/IM7-GS-policy.patch)
===
--- IM7-GS-policy.patch (rev 0)
+++ IM7-GS-policy.patch 2018-12-27 17:35:56 UTC (rev 342765)
@@ -0,0 +1,10 @@
+--- ImageMagick-7.0.8-13/config/policy.xml.orig2018-10-22 
15:13:51.713995553 +
 ImageMagick-7.0.8-13/config/policy.xml 2018-10-22 15:14:22.650737457 
+
+@@ -68,6 +68,7 @@
+   
+   
+   
++  
+   
+   
+   

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 17:35:37 UTC (rev 342764)
+++ PKGBUILD2018-12-27 17:35:56 UTC (rev 342765)
@@ -1,135 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.20
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff IM7-GS-policy.patch)
-sha256sums=('cb6192c829f2beb724990bb166180794c1fd811805101065a06ffc9437efbd81'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
-'f20c09860da65a4259ec9627ceeca7d993949b7460fa199c5ffd874633814cf6')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-
-  # Work around ghostscript security issues 
https://bugs.archlinux.org/task/59778
-  patch -p1 -i ../IM7-GS-policy.patch
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  sed -e '/validate-formats/d' -i Makefile # these fail due to the security 
patch
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  

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

2018-12-27 Thread Antonio Rojas via arch-commits
Date: Thursday, December 27, 2018 @ 17:35:37
  Author: arojas
Revision: 342764

Update to 7.0.8.21

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 17:06:38 UTC (rev 342763)
+++ PKGBUILD2018-12-27 17:35:37 UTC (rev 342764)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.20
+pkgver=7.0.8.21
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff IM7-GS-policy.patch)
-sha256sums=('cb6192c829f2beb724990bb166180794c1fd811805101065a06ffc9437efbd81'
+sha256sums=('c3be517875b582a746bdc813f1837d97e4925bfcf5468a7177e3c8adf88091b4'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
 'f20c09860da65a4259ec9627ceeca7d993949b7460fa199c5ffd874633814cf6')


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 17:34:53
  Author: bgyorgy
Revision: 418517

upgpkg: gwget 1.0.4-14

Fix AppStream metadata

Modified:
  gwget/trunk/PKGBUILD
  gwget/trunk/gwget.appdata.xml

---+
 PKGBUILD  |4 ++--
 gwget.appdata.xml |   31 ++-
 2 files changed, 12 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 17:16:29 UTC (rev 418516)
+++ PKGBUILD2018-12-27 17:34:53 UTC (rev 418517)
@@ -6,7 +6,7 @@
 
 pkgname=gwget
 pkgver=1.0.4
-pkgrel=13
+pkgrel=14
 pkgdesc="Download manager for GNOME"
 arch=('x86_64')
 url="https://projects.gnome.org/gwget/;
@@ -23,7 +23,7 @@
 various-fixes.patch
 gsettings-port.patch)
 sha256sums=('a65b2b2b3befb6cf34a697a13111b35498a6d63f9a9b048a22b8654f35ef643f'
-'5e03f1c6b6034ebdf07da3cc8d3e57ab4016134c25d25995ba56267b00935536'
+'2b0e8f59b675b4703165bd89095895c46ff6e49d5a62043fc6c388a25e02cb8c'
 '84efbbea9c2a91c60288edb67264bbdb4ec2c579cf95b3baa8282040a1b65c76'
 '319c4795d0034c4adacf302db697d966ca228fc1bbe9778af9dadcfb0c2531c8'
 '019fae87e984d22cd1bbe7b3fc064c936a76658ef98cbf96f7ba1c10678ac585'

Modified: gwget.appdata.xml
===
--- gwget.appdata.xml   2018-12-27 17:16:29 UTC (rev 418516)
+++ gwget.appdata.xml   2018-12-27 17:34:53 UTC (rev 418517)
@@ -1,33 +1,22 @@
 
-
 
-  gwget
+  org.gnome.gwget
+  gwget.desktop
+  Gwget
+  Download files from the Internet
   CC0-1.0
   GPL-2.0
-  Gwget
-  Download files from the Internet
-
+  David Sedeño
   
-
-  Gwget is an application that allows you to manage the downloading of
-  files from the internet. It supports the pausing and resuming of 
downloads,
-  can download all the accompanying files of a HTML page, and supports drag
-  and drop.
-
+Gwget is an application that allows you to manage the downloading of 
files from the internet. It supports the pausing and resuming of downloads, can 
download all the accompanying files of a HTML page, and supports drag and 
drop.
   
-
-  gwget.desktop
-
   
 
-  https://projects.gnome.org/gwget/main_window_p.jpg
+  https://projects-old.gnome.org/gwget/main_window_p.jpg
 
   
-  http://gnome.org/projects/gwget
-  
-gwget
-  
-
+  https://gitlab.gnome.org/Archive/gwget/issues
+  https://projects-old.gnome.org/gwget/
+  da...@alderia.com
   gwget
-  david AT alderia DOT com
 


[arch-commits] Commit in buoh/repos/community-x86_64 (6 files)

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 17:16:29
  Author: bgyorgy
Revision: 418516

archrelease: copy trunk to community-x86_64

Added:
  buoh/repos/community-x86_64/0001-Various-fixes-related-to-gtk3-port.patch
(from rev 418515, buoh/trunk/0001-Various-fixes-related-to-gtk3-port.patch)
  buoh/repos/community-x86_64/PKGBUILD
(from rev 418515, buoh/trunk/PKGBUILD)
  buoh/repos/community-x86_64/buoh.appdata.xml
(from rev 418515, buoh/trunk/buoh.appdata.xml)
Deleted:
  buoh/repos/community-x86_64/0001-Various-fixes-related-to-gtk3-port.patch
  buoh/repos/community-x86_64/PKGBUILD
  buoh/repos/community-x86_64/buoh.appdata.xml

---+
 0001-Various-fixes-related-to-gtk3-port.patch |  262 
 PKGBUILD  |   74 +++---
 buoh.appdata.xml  |   86 +++
 3 files changed, 207 insertions(+), 215 deletions(-)

Deleted: 0001-Various-fixes-related-to-gtk3-port.patch
===
--- 0001-Various-fixes-related-to-gtk3-port.patch   2018-12-27 17:16:24 UTC 
(rev 418515)
+++ 0001-Various-fixes-related-to-gtk3-port.patch   2018-12-27 17:16:29 UTC 
(rev 418516)
@@ -1,131 +0,0 @@
-From 54ac563e431f3388845821b5618d222ac6e4c4c1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
-Date: Sun, 2 Sep 2018 19:26:59 +0200
-Subject: [PATCH] Various fixes related to gtk3 port
-
-- Don't disable scrollbars, otherwise the window cannot be resized.
-- Fix the alignment size of the intro text to make it visible.
-- Set the default size of main window.
-- Remove unimplemented Help Contents menu item.

- data/buoh-ui.xml|  1 -
- src/buoh-view-comic.c   | 33 -
- src/buoh-view-message.c |  2 +-
- src/buoh-window.c   |  4 +---
- 4 files changed, 2 insertions(+), 38 deletions(-)
-
-diff --git a/data/buoh-ui.xml b/data/buoh-ui.xml
-index 6531447..439b887 100644
 a/data/buoh-ui.xml
-+++ b/data/buoh-ui.xml
-@@ -28,7 +28,6 @@
-   
- 
- 
--  
-   
- 
-   
-diff --git a/src/buoh-view-comic.c b/src/buoh-view-comic.c
-index bd4338d..bad2fdf 100644
 a/src/buoh-view-comic.c
-+++ b/src/buoh-view-comic.c
-@@ -103,7 +103,6 @@ static void buoh_view_comic_prepare_load  
(BuohViewComic*c_view)
- static void buoh_view_comic_load_finished (BuohViewComic
*c_view,
-gpointer  
gdata);
- static void buoh_view_comic_load  (BuohViewComic
*c_view);
--static void buoh_view_comic_update_scrollbar_policy (BuohViewComic  
*c_view);
- static gdouble  buoh_view_comic_get_scale_for_width   (BuohViewComic
*c_view,
-gint  
width);
- static gdouble  buoh_view_comic_get_scale_for_height  (BuohViewComic
*c_view,
-@@ -253,7 +252,6 @@ buoh_view_comic_set_property (GObject  *object,
- break;
- case PROP_ZOOM_MODE:
- c_view->priv->zoom_mode = g_value_get_enum (value);
--buoh_view_comic_update_scrollbar_policy (c_view);
- 
- break;
- case PROP_SCALE:
-@@ -573,8 +571,6 @@ buoh_view_comic_prepare_load (BuohViewComic *c_view)
- gtk_adjustment_set_value (hadjustment, 0.0);
- gtk_adjustment_set_value (vadjustment, 0.0);
- 
--buoh_view_comic_update_scrollbar_policy (c_view);
--
- if (gtk_widget_get_realized (GTK_WIDGET (c_view))) {
- gdk_window_set_cursor (gtk_widget_get_window (GTK_WIDGET 
(c_view)),
-NULL);
-@@ -788,35 +784,6 @@ buoh_view_comic_load (BuohViewComic *c_view)
- }
- }
- 
--static void
--buoh_view_comic_update_scrollbar_policy (BuohViewComic *c_view)
--{
--GtkWidget *swindow;
--
--swindow = gtk_widget_get_parent (GTK_WIDGET (c_view));
--if (!GTK_IS_SCROLLED_WINDOW (swindow)) {
--return;
--}
--
--switch (c_view->priv->zoom_mode) {
--case VIEW_ZOOM_FREE:
--gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
--GTK_POLICY_AUTOMATIC,
--GTK_POLICY_AUTOMATIC);
--break;
--case VIEW_ZOOM_FIT_WIDTH:
--gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
--GTK_POLICY_NEVER,
--GTK_POLICY_AUTOMATIC);
--break;
--case VIEW_ZOOM_BEST_FIT:
--gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
--GTK_POLICY_NEVER,
--GTK_POLICY_NEVER);
--

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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 17:16:24
  Author: bgyorgy
Revision: 418515

upgpkg: buoh 0.8.2-12

Fix AppStream metadata

Modified:
  buoh/trunk/PKGBUILD
  buoh/trunk/buoh.appdata.xml

--+
 PKGBUILD |4 ++--
 buoh.appdata.xml |   24 
 2 files changed, 10 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 16:35:28 UTC (rev 418514)
+++ PKGBUILD2018-12-27 17:16:24 UTC (rev 418515)
@@ -4,7 +4,7 @@
 
 pkgname=buoh
 pkgver=0.8.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Online strips comics reader for GNOME"
 arch=(x86_64)
 url="http://buoh.steve-o.org/;
@@ -16,7 +16,7 @@
 buoh.appdata.xml
 0001-Various-fixes-related-to-gtk3-port.patch)
 sha256sums=('SKIP'
-'a9193bfab6775079bc59f223c2f63c698130ad81bd9c6a5c5bf163d9b5014586'
+'883bdf97f0db99ad41d27eed19e235126aed1e7a128774b01af96c0441fea67c'
 '1597fb8507421e5a85e8bc89243ede8bbf027cf2d87e58ad84dd63ccf6054eb4')
 
 prepare() {

Modified: buoh.appdata.xml
===
--- buoh.appdata.xml2018-12-27 16:35:28 UTC (rev 418514)
+++ buoh.appdata.xml2018-12-27 17:16:24 UTC (rev 418515)
@@ -1,16 +1,14 @@
 
 
-  buoh
+  org.gnome.buoh
+  buoh.desktop
+  Buoh
+  Read your favorite comic strips
   CC0-1.0
   GPL-2.0
-  Buoh
-  Read your favorite comic strips
-
+  Esteban Sanchez
   
-
-  Buoh is a reader for online strips comics. It is free software, designed 
to
-  work well under the GNOME Desktop.
-
+Buoh is a reader for online strips comics. It is free software, 
designed to work well under the GNOME Desktop.
 Buoh has a number of features, including:
 
   Select your favorites comic through a list of more than 130 
comics
@@ -20,9 +18,6 @@
   Integration with GNOME (respecting the lockdowns and HIG 
compliance)
 
   
-
-  buoh.desktop
-
   
 
   http://buoh.steve-o.org/buoh-images/Screenshot-Buoh.png
@@ -37,11 +32,8 @@
   http://buoh.steve-o.org/buoh-images/Screenshot-Buoh-3.png
 
   
+  https://gitlab.gnome.org/GNOME/buoh/issues
   http://buoh.steve-o.org/
-  
-buoh
-  
-
+  este...@steve-o.org
   buoh
-  esteban AT steve-o DOT org
 


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

2018-12-27 Thread Anatol Pomozov via arch-commits
Date: Thursday, December 27, 2018 @ 17:06:38
  Author: anatolik
Revision: 342763

archrelease: copy trunk to staging-x86_64

Added:
  ruby/repos/staging-x86_64/PKGBUILD
(from rev 342762, ruby/trunk/PKGBUILD)
Deleted:
  ruby/repos/staging-x86_64/PKGBUILD

--+
 PKGBUILD |  172 +++--
 1 file changed, 89 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 17:05:52 UTC (rev 342762)
+++ PKGBUILD2018-12-27 17:06:38 UTC (rev 342763)
@@ -1,83 +0,0 @@
-# Contributor: Thomas Dziedzic 
-# Contributor: Allan McRae 
-# Contributor: John Proctor 
-# Contributor: Jeramy Rutley 
-
-pkgname=(ruby ruby-docs)
-pkgver=2.6.0
-pkgrel=1
-arch=(x86_64)
-url='http://www.ruby-lang.org/en/'
-license=(BSD custom)
-makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
-options=(!emptydirs)
-source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
-sha512sums=('c56eaf85ef7b79deb34ee4590b143c07f4fc83eb79775290761aee5a7c63374659613538a41f25706ed6e19e49d5c67a1014c24d17f29948294c7abd0b0fcea8')
-
-prepare() {
-  cd ruby-${pkgver}
-  # remove bundled gems, we are going to ship them as separate packages
-  rm -rf gems/
-}
-
-build() {
-  cd ruby-${pkgver}
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sharedstatedir=/var/lib \
---libexecdir=/usr/lib/ruby \
---enable-shared \
---disable-rpath \
---with-dbm-type=gdbm_compat
-
-  make
-}
-
-check() {
-  cd ruby-${pkgver}
-
-  make test
-}
-
-package_ruby() {
-  pkgdesc='An object-oriented language for quick and easy programming'
-  depends=(gdbm openssl libffi libyaml gmp zlib rubygems)
-  optdepends=(
-  'ruby-docs: Ruby documentation'
-  'tk: for Ruby/TK'
-  )
-
-  cd ruby-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-nodoc
-
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
-  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
-
-  rubyver=${pkgver:0:3}.0
-
-  # remove rubygems as it shipped in a separate package
-  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
-  rm "${pkgdir}"/usr/bin/gem
-
-  # remove bundled rdoc gem
-  # we are doing it here instead of prepare() because rdoc used doring Ruby 
build process
-  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/rdoc/
-  rm "${pkgdir}"/usr/bin/{rdoc,ri}
-  rm -r "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/gems/*
-  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/rdoc-*.gemspec
-}
-
-package_ruby-docs() {
-  pkgdesc='Documentation files for ruby'
-
-  cd ruby-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-doc install-capi
-
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
-  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
-}

Copied: ruby/repos/staging-x86_64/PKGBUILD (from rev 342762, 
ruby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 17:06:38 UTC (rev 342763)
@@ -0,0 +1,89 @@
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=(ruby ruby-docs)
+pkgver=2.6.0
+pkgrel=2
+arch=(x86_64)
+url='http://www.ruby-lang.org/en/'
+license=(BSD custom)
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('c56eaf85ef7b79deb34ee4590b143c07f4fc83eb79775290761aee5a7c63374659613538a41f25706ed6e19e49d5c67a1014c24d17f29948294c7abd0b0fcea8')
+
+prepare() {
+  cd ruby-${pkgver}
+  # remove bundled gems, we are going to ship them as separate packages
+  rm -rf gems/
+}
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=(gdbm openssl libffi libyaml gmp zlib rubygems)
+  optdepends=(
+  'ruby-docs: Ruby documentation'
+  'tk: for Ruby/TK'
+  )
+
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+
+  rubyver=${pkgver:0:3}.0
+
+  # remove rubygems as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
+  rm "${pkgdir}"/usr/bin/gem
+
+  # remove bundler as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{bundler,bundler.rb}
+ 

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

2018-12-27 Thread Anatol Pomozov via arch-commits
Date: Thursday, December 27, 2018 @ 17:05:52
  Author: anatolik
Revision: 342762

Remove bundler from 'ruby'

ruby-bundler is distributed as a separate package

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 13:52:33 UTC (rev 342761)
+++ PKGBUILD2018-12-27 17:05:52 UTC (rev 342762)
@@ -5,7 +5,7 @@
 
 pkgname=(ruby ruby-docs)
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='http://www.ruby-lang.org/en/'
 license=(BSD custom)
@@ -59,10 +59,16 @@
 
   rubyver=${pkgver:0:3}.0
 
-  # remove rubygems as it shipped in a separate package
+  # remove rubygems as it shipped as a separate package
   rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
   rm "${pkgdir}"/usr/bin/gem
 
+  # remove bundler as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{bundler,bundler.rb}
+  rm "${pkgdir}"/usr/bin/{bundle,bundler}
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/bundler-*.gemspec
+  rm "${pkgdir}"/usr/share/man/man1/{bundle,bundle-*}.1
+
   # remove bundled rdoc gem
   # we are doing it here instead of prepare() because rdoc used doring Ruby 
build process
   rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/rdoc/


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 16:35:23
  Author: bgyorgy
Revision: 418513

upgpkg: evolution-rss 0.3.95-6

Fix AppStream metadata

Modified:
  evolution-rss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 16:16:20 UTC (rev 418512)
+++ PKGBUILD2018-12-27 16:35:23 UTC (rev 418513)
@@ -4,7 +4,7 @@
 
 pkgname=evolution-rss
 pkgver=0.3.95
-pkgrel=5
+pkgrel=6
 pkgdesc="Plugin for Evolution Mail that enables reading of RSS/RDF/ATOM feeds"
 arch=('x86_64')
 url="http://gnome.eu.org/index.php/Evolution_RSS_Reader_Plugin;
@@ -23,6 +23,10 @@
   # Compatibility patches from Fedora
   patch -Np1 -i ../evo-3.21.90.patch
   patch -Np1 -i ../evo-3.23.2.patch
+
+  # Don't use legacy path for AppStream metainfo file
+  # https://gitlab.gnome.org/GNOME/evolution-rss/merge_requests/3
+  sed -i 's|$(datadir)/appdata|$(datadir)/metainfo|' Makefile.{in,am}
 }
 
 build() {


[arch-commits] Commit in evolution-rss/repos/community-x86_64 (6 files)

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 16:35:28
  Author: bgyorgy
Revision: 418514

archrelease: copy trunk to community-x86_64

Added:
  evolution-rss/repos/community-x86_64/PKGBUILD
(from rev 418513, evolution-rss/trunk/PKGBUILD)
  evolution-rss/repos/community-x86_64/evo-3.21.90.patch
(from rev 418513, evolution-rss/trunk/evo-3.21.90.patch)
  evolution-rss/repos/community-x86_64/evo-3.23.2.patch
(from rev 418513, evolution-rss/trunk/evo-3.23.2.patch)
Deleted:
  evolution-rss/repos/community-x86_64/PKGBUILD
  evolution-rss/repos/community-x86_64/evo-3.21.90.patch
  evolution-rss/repos/community-x86_64/evo-3.23.2.patch

---+
 PKGBUILD  |   88 ++-
 evo-3.21.90.patch |  238 ++--
 evo-3.23.2.patch  |  220 
 3 files changed, 275 insertions(+), 271 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 16:35:23 UTC (rev 418513)
+++ PKGBUILD2018-12-27 16:35:28 UTC (rev 418514)
@@ -1,42 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Jelle van der Waa 
-# Contributor: Borromini 
-
-pkgname=evolution-rss
-pkgver=0.3.95
-pkgrel=5
-pkgdesc="Plugin for Evolution Mail that enables reading of RSS/RDF/ATOM feeds"
-arch=('x86_64')
-url="http://gnome.eu.org/index.php/Evolution_RSS_Reader_Plugin;
-license=('GPL')
-depends=('evolution')
-makedepends=('intltool')
-source=(http://gnome.eu.org/$pkgname-$pkgver.tar.xz
-evo-3.21.90.patch
-evo-3.23.2.patch)
-sha256sums=('3fb28eec798b3192ae155b92d17b852264d0e5e35185a4f0c8f526a8d587eb1f'
-'36ed895fcdd6c71998af1ab6b315e6f1ca027f56466c8844920761711e5589ef'
-'b7a5977a5d27321420eac22cb346735338444cb6f4b4805f07d7502f241b29dc')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Compatibility patches from Fedora
-  patch -Np1 -i ../evo-3.21.90.patch
-  patch -Np1 -i ../evo-3.23.2.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-rss/repos/community-x86_64/PKGBUILD (from rev 418513, 
evolution-rss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 16:35:28 UTC (rev 418514)
@@ -0,0 +1,46 @@
+# Maintainer: Balló György 
+# Contributor: Jelle van der Waa 
+# Contributor: Borromini 
+
+pkgname=evolution-rss
+pkgver=0.3.95
+pkgrel=6
+pkgdesc="Plugin for Evolution Mail that enables reading of RSS/RDF/ATOM feeds"
+arch=('x86_64')
+url="http://gnome.eu.org/index.php/Evolution_RSS_Reader_Plugin;
+license=('GPL')
+depends=('evolution')
+makedepends=('intltool')
+source=(http://gnome.eu.org/$pkgname-$pkgver.tar.xz
+evo-3.21.90.patch
+evo-3.23.2.patch)
+sha256sums=('3fb28eec798b3192ae155b92d17b852264d0e5e35185a4f0c8f526a8d587eb1f'
+'36ed895fcdd6c71998af1ab6b315e6f1ca027f56466c8844920761711e5589ef'
+'b7a5977a5d27321420eac22cb346735338444cb6f4b4805f07d7502f241b29dc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Compatibility patches from Fedora
+  patch -Np1 -i ../evo-3.21.90.patch
+  patch -Np1 -i ../evo-3.23.2.patch
+
+  # Don't use legacy path for AppStream metainfo file
+  # https://gitlab.gnome.org/GNOME/evolution-rss/merge_requests/3
+  sed -i 's|$(datadir)/appdata|$(datadir)/metainfo|' Makefile.{in,am}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: evo-3.21.90.patch
===
--- evo-3.21.90.patch   2018-12-27 16:35:23 UTC (rev 418513)
+++ evo-3.21.90.patch   2018-12-27 16:35:28 UTC (rev 418514)
@@ -1,119 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 629e663..27640b6 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -259,6 +259,9 @@ AC_MSG_CHECKING([whether to include Webkit support])
- AC_ARG_ENABLE([webkit],
-   AS_HELP_STRING([--disable-webkit],[Disable Webkit (Apple Upstream 
Webkit) support (default: enabled)]),
-   [],[enable_webkit=yes])
-+if test "$evolution_version_int" -ge "32190"; then
-+  enable_webkit="no, due to evolution 3.21.90+"
-+fi
- AC_MSG_RESULT([$enable_webkit])
- 
- if test "$enable_webkit" = "yes"; then
-diff --git a/src/e-mail-formatter-evolution-rss.c 
b/src/e-mail-formatter-evolution-rss.c
-index f71557d..afdf6cd 100644
 

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

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 16:16:12
  Author: archange
Revision: 418511

upgpkg: nodejs-lts-dubnium 10.15.0-1

Modified:
  nodejs-lts-dubnium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 15:51:41 UTC (rev 418510)
+++ PKGBUILD2018-12-27 16:16:12 UTC (rev 418511)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=nodejs-lts-dubnium
-pkgver=10.14.2
+pkgver=10.15.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Dubnium)'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
 # https://nodejs.org/download/release/latest-dubnium/SHASUMS256.txt.asc
-sha256sums=('ae1aec55e3ca8f4debfb8c07489209fd84d3c47b26e6672e1cf7a7820f95acd3')
+sha256sums=('797ab34c74b83b21b7d6ea261b5ca235d34c61a7da5aebb32459a963097ede3e')
 validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

   '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

   'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
@@ -54,6 +54,7 @@
 
 check() {
   cd node-v${pkgver}
+  # Numerous HTTP2/TLS failures
   make test || warning "Tests failed"
 }
 


[arch-commits] Commit in nodejs-lts-dubnium/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 16:16:20
  Author: archange
Revision: 418512

archrelease: copy trunk to community-x86_64

Added:
  nodejs-lts-dubnium/repos/community-x86_64/PKGBUILD
(from rev 418511, nodejs-lts-dubnium/trunk/PKGBUILD)
Deleted:
  nodejs-lts-dubnium/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 16:16:12 UTC (rev 418511)
+++ PKGBUILD2018-12-27 16:16:20 UTC (rev 418512)
@@ -1,66 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=nodejs-lts-dubnium
-pkgver=10.14.2
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Dubnium)'
-arch=('x86_64')
-url="https://nodejs.org/;
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares' 'libnghttp2')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=("nodejs=$pkgver")
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
-# https://nodejs.org/download/release/latest-dubnium/SHASUMS256.txt.asc
-sha256sums=('ae1aec55e3ca8f4debfb8c07489209fd84d3c47b26e6672e1cf7a7820f95acd3')
-validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

-  '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

-  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
-  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

-
-prepare() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares \
---shared-nghttp2
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: nodejs-lts-dubnium/repos/community-x86_64/PKGBUILD (from rev 418511, 
nodejs-lts-dubnium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 16:16:20 UTC (rev 418512)
@@ -0,0 +1,67 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=nodejs-lts-dubnium
+pkgver=10.15.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Dubnium)'
+arch=('x86_64')
+url="https://nodejs.org/;
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares' 'libnghttp2')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
+# https://nodejs.org/download/release/latest-dubnium/SHASUMS256.txt.asc
+sha256sums=('797ab34c74b83b21b7d6ea261b5ca235d34c61a7da5aebb32459a963097ede3e')
+validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

+  '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

+  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
+  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

+
+prepare() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares \
+--shared-nghttp2
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  # Numerous HTTP2/TLS failures
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-v${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 15:51:41
  Author: bgyorgy
Revision: 418510

archrelease: copy trunk to community-x86_64

Added:
  moserial/repos/community-x86_64/PKGBUILD
(from rev 418509, moserial/trunk/PKGBUILD)
Deleted:
  moserial/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 15:51:36 UTC (rev 418509)
+++ PKGBUILD2018-12-27 15:51:41 UTC (rev 418510)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Doug Newgard 
-# Contributor: Matias De la Puente 
-
-pkgname=moserial
-pkgver=3.0.12
-pkgrel=1
-pkgdesc="Clean, friendly GTK+-based serial terminal for the GNOME desktop"
-arch=('x86_64')
-url="https://wiki.gnome.org/moserial;
-license=('GPL3')
-depends=('gsettings-desktop-schemas' 'gtk3')
-makedepends=('intltool' 'itstool')
-optdepends=('lrzsz: for xmodem, ymodem and zmodem file transfer protocols')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-sha256sums=('de2448cd37bb64c43f5533913739cbfc2fe3261f6c6a5ea289f9c200f1e7fcc9')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="$pkgdir" install
-}

Copied: moserial/repos/community-x86_64/PKGBUILD (from rev 418509, 
moserial/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 15:51:41 UTC (rev 418510)
@@ -0,0 +1,36 @@
+# Maintainer: Balló György 
+# Contributor: Doug Newgard 
+# Contributor: Matias De la Puente 
+
+pkgname=moserial
+pkgver=3.0.12
+pkgrel=2
+pkgdesc="Clean, friendly GTK+-based serial terminal for the GNOME desktop"
+arch=('x86_64')
+url="https://wiki.gnome.org/moserial;
+license=('GPL3')
+depends=('gsettings-desktop-schemas' 'gtk3')
+makedepends=('intltool' 'itstool')
+optdepends=('lrzsz: for xmodem, ymodem and zmodem file transfer protocols')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('de2448cd37bb64c43f5533913739cbfc2fe3261f6c6a5ea289f9c200f1e7fcc9')
+
+
+prepare() {
+   cd $pkgname-$pkgver
+
+   # Don't use legacy path for AppStream metainfo file 
+   # https://gitlab.gnome.org/GNOME/moserial/merge_requests/1
+   sed -i 's|$(datarootdir)/appdata|$(datarootdir)/metainfo|' 
data/Makefile.{am,in}
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 15:51:36
  Author: bgyorgy
Revision: 418509

upgpkg: moserial 3.0.12-2

Fix AppStream metadata

Modified:
  moserial/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 15:39:57 UTC (rev 418508)
+++ PKGBUILD2018-12-27 15:51:36 UTC (rev 418509)
@@ -4,7 +4,7 @@
 
 pkgname=moserial
 pkgver=3.0.12
-pkgrel=1
+pkgrel=2
 pkgdesc="Clean, friendly GTK+-based serial terminal for the GNOME desktop"
 arch=('x86_64')
 url="https://wiki.gnome.org/moserial;
@@ -15,6 +15,15 @@
 
source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
 sha256sums=('de2448cd37bb64c43f5533913739cbfc2fe3261f6c6a5ea289f9c200f1e7fcc9')
 
+
+prepare() {
+   cd $pkgname-$pkgver
+
+   # Don't use legacy path for AppStream metainfo file 
+   # https://gitlab.gnome.org/GNOME/moserial/merge_requests/1
+   sed -i 's|$(datarootdir)/appdata|$(datarootdir)/metainfo|' 
data/Makefile.{am,in}
+}
+
 build() {
cd $pkgname-$pkgver
./configure --prefix=/usr


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

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 15:39:45
  Author: archange
Revision: 418507

upgpkg: nodejs-lts-carbon 8.15.0-1

Modified:
  nodejs-lts-carbon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 15:13:36 UTC (rev 418506)
+++ PKGBUILD2018-12-27 15:39:45 UTC (rev 418507)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
 
 pkgname=nodejs-lts-carbon
-pkgver=8.14.1
+pkgver=8.15.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Carbon)'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
 # https://nodejs.org/download/release/latest-carbon/SHASUMS256.txt.asc
-sha256sums=('b1df87803ddffb76fc6739f025f69f6b8288514fcd2f278f0d675ac3d52a6b9b')
+sha256sums=('96852947cc3f769d73dedc6c9c60580826d8714bc0e62ca4589de6a7c633')
 validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

   '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

   'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
@@ -56,8 +56,7 @@
 
 check() {
   cd node-v${pkgver}
-  # test-http-max-http-headers since 8.14.0, 
https://github.com/nodejs/node/pull/24811
-  make test || warning "Tests failed"
+  make test
 }
 
 package() {


[arch-commits] Commit in nodejs-lts-carbon/repos/community-x86_64 (4 files)

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 15:39:57
  Author: archange
Revision: 418508

archrelease: copy trunk to community-x86_64

Added:
  nodejs-lts-carbon/repos/community-x86_64/PKGBUILD
(from rev 418507, nodejs-lts-carbon/trunk/PKGBUILD)
  nodejs-lts-carbon/repos/community-x86_64/node.install
(from rev 418507, nodejs-lts-carbon/trunk/node.install)
Deleted:
  nodejs-lts-carbon/repos/community-x86_64/PKGBUILD
  nodejs-lts-carbon/repos/community-x86_64/node.install

--+
 PKGBUILD |  137 -
 node.install |   22 -
 2 files changed, 79 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 15:39:45 UTC (rev 418507)
+++ PKGBUILD2018-12-27 15:39:57 UTC (rev 418508)
@@ -1,69 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-carbon
-pkgver=8.14.1
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Carbon)'
-arch=('x86_64')
-url="https://nodejs.org/;
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares' 
'libnghttp2')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-install=node.install
-provides=("nodejs=$pkgver")
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
-# https://nodejs.org/download/release/latest-carbon/SHASUMS256.txt.asc
-sha256sums=('b1df87803ddffb76fc6739f025f69f6b8288514fcd2f278f0d675ac3d52a6b9b')
-validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

-  '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

-  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
-  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

-
-prepare() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares \
---shared-nghttp2
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # test-http-max-http-headers since 8.14.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: nodejs-lts-carbon/repos/community-x86_64/PKGBUILD (from rev 418507, 
nodejs-lts-carbon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 15:39:57 UTC (rev 418508)
@@ -0,0 +1,68 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-carbon
+pkgver=8.15.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Carbon)'
+arch=('x86_64')
+url="https://nodejs.org/;
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares' 
'libnghttp2')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+install=node.install
+provides=("nodejs=$pkgver")
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
+# https://nodejs.org/download/release/latest-carbon/SHASUMS256.txt.asc
+sha256sums=('96852947cc3f769d73dedc6c9c60580826d8714bc0e62ca4589de6a7c633')
+validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

+  '77984A986EBC2AA786BC0F66B01FBB92821C587A' # Gibson Fahnestock 

+  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 
 
+  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

+
+prepare() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares \
+

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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 15:13:36
  Author: bgyorgy
Revision: 418506

archrelease: copy trunk to community-any

Added:
  gourmet/repos/community-any/0001-Fix-AppStream-metadata-validation.patch
(from rev 418505, 
gourmet/trunk/0001-Fix-AppStream-metadata-validation.patch)
  gourmet/repos/community-any/PKGBUILD
(from rev 418505, gourmet/trunk/PKGBUILD)
  gourmet/repos/community-any/bs4-port.patch
(from rev 418505, gourmet/trunk/bs4-port.patch)
  gourmet/repos/community-any/gourmet-pillow.patch
(from rev 418505, gourmet/trunk/gourmet-pillow.patch)
Deleted:
  gourmet/repos/community-any/PKGBUILD
  gourmet/repos/community-any/bs4-port.patch
  gourmet/repos/community-any/gourmet-pillow.patch

--+
 0001-Fix-AppStream-metadata-validation.patch |   66 +++
 PKGBUILD |  110 +++---
 bs4-port.patch   |  414 -
 gourmet-pillow.patch |   74 ++--
 4 files changed, 368 insertions(+), 296 deletions(-)

Copied: 
gourmet/repos/community-any/0001-Fix-AppStream-metadata-validation.patch (from 
rev 418505, gourmet/trunk/0001-Fix-AppStream-metadata-validation.patch)
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-27 15:13:36 UTC 
(rev 418506)
@@ -0,0 +1,66 @@
+From 129892080bf7f5ab3e45657ec36d58ae082a8638 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Thu, 27 Dec 2018 15:42:41 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+And don't use legacy path for metainfo file.
+---
+ gourmet.appdata.xml.in | 22 +++---
+ setup.cfg  |  2 +-
+ 2 files changed, 16 insertions(+), 8 deletions(-)
+
+diff --git a/gourmet.appdata.xml.in b/gourmet.appdata.xml.in
+index 4c5191c4..4337208e 100644
+--- a/gourmet.appdata.xml.in
 b/gourmet.appdata.xml.in
+@@ -1,9 +1,11 @@
+ 
+ 
+-
+- gourmet.desktop
++
++ com.github.gourmet
+  CC0-1.0
+  GPL-2.0
++ Gourmet
++ Organize recipes, create shopping lists, calculate nutritional 
information, and more
+  
+   <_p>
+Gourmet Recipe Manager is a recipe-organizer that allows you to collect,
+@@ -21,9 +23,15 @@
+   
+  
+  
+-  http://thinkle.github.io/gourmet/images/screenshots/SearchView.png
+-  
http://thinkle.github.io/gourmet/images/screenshots/CardView.png
++  
++   
https://thinkle.github.io/gourmet/images/screenshots/SearchView.png
++  
++  
++   
https://thinkle.github.io/gourmet/images/screenshots/CardView.png
++  
+  
+- http://thinkle.github.io/gourmet/
+- https://github.com/thinkle/gourmet/issues
+-
++ gourmet.desktop
++ https://thinkle.github.io/gourmet/
++ https://github.com/thinkle/gourmet/issues
++ thomas_hin...@alumni.brown.edu
++
+diff --git a/setup.cfg b/setup.cfg
+index 647f9660..880c7fed 100644
+--- a/setup.cfg
 b/setup.cfg
+@@ -17,7 +17,7 @@ desktop_files=[
+   ("share/gourmet/plugins/import_export", 
glob.glob("gourmet/plugins/import_export/*.gourmet-plugin.in"))
+   ]
+ xml_files=[
+-  ("share/appdata", ("gourmet.appdata.xml.in",)),
++  ("share/metainfo", ("gourmet.appdata.xml.in",)),
+   ]
+ 
+ [build_icons]
+-- 
+2.20.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 15:13:30 UTC (rev 418505)
+++ PKGBUILD2018-12-27 15:13:36 UTC (rev 418506)
@@ -1,52 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Ray Rashif 
-# Contributor: Corrado Primier 
-# Contributor: Eric Belanger 
-# Contributor: Andrew Conkling 
-
-pkgname=gourmet
-pkgver=0.17.4
-pkgrel=7
-pkgdesc="A simple but powerful recipe-managing application"
-arch=('any')
-url="https://thinkle.github.io/gourmet/;
-license=('GPL')
-depends=('pygtk' 'python2-elib-intl' 'python2-pillow' 'python2-sqlalchemy')
-makedepends=('python2-distutils-extra')
-optdepends=('ipython2: Python Shell plugin'
-'python2-pyrtf: RTF support'
-'python2-beautifulsoup4: Webpage import plugin'
-'python2-gtkspell: Spell Checking plugin'
-'python2-poppler: Printing and PDF Export plugin'
-'python2-reportlab: Printing and PDF Export plugin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/thinkle/$pkgname/archive/$pkgver.tar.gz;
-"gourmet-pillow.patch"
-"bs4-port.patch")
-sha256sums=('13edd3b9c3a3507d20b80cff0f88183ac7979b720e7577290815ffacca097fe3'
-'3680663b09fc61e5797990c378597eeb5db6915b4db987ac2d1a55c7f2636047'
-'815b0fb735d6b581fba0cec713a9ad963f842c969db9fef3e3b0d66ef11bd3b0')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # python2 fix
-  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Fix for pillow 3
-  # https://github.com/thinkle/gourmet/commit/4d88788a
-  patch -Np1 -i ../gourmet-pillow.patch
-
-  # 

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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 15:13:30
  Author: bgyorgy
Revision: 418505

upgpkg: gourmet 0.17.4-8

Fix AppStream metadata

Added:
  gourmet/trunk/0001-Fix-AppStream-metadata-validation.patch
Modified:
  gourmet/trunk/PKGBUILD

--+
 0001-Fix-AppStream-metadata-validation.patch |   66 +
 PKGBUILD |   12 +++-
 2 files changed, 75 insertions(+), 3 deletions(-)

Added: 0001-Fix-AppStream-metadata-validation.patch
===
--- 0001-Fix-AppStream-metadata-validation.patch
(rev 0)
+++ 0001-Fix-AppStream-metadata-validation.patch2018-12-27 15:13:30 UTC 
(rev 418505)
@@ -0,0 +1,66 @@
+From 129892080bf7f5ab3e45657ec36d58ae082a8638 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Thu, 27 Dec 2018 15:42:41 +0100
+Subject: [PATCH] Fix AppStream metadata validation
+
+And don't use legacy path for metainfo file.
+---
+ gourmet.appdata.xml.in | 22 +++---
+ setup.cfg  |  2 +-
+ 2 files changed, 16 insertions(+), 8 deletions(-)
+
+diff --git a/gourmet.appdata.xml.in b/gourmet.appdata.xml.in
+index 4c5191c4..4337208e 100644
+--- a/gourmet.appdata.xml.in
 b/gourmet.appdata.xml.in
+@@ -1,9 +1,11 @@
+ 
+ 
+-
+- gourmet.desktop
++
++ com.github.gourmet
+  CC0-1.0
+  GPL-2.0
++ Gourmet
++ Organize recipes, create shopping lists, calculate nutritional 
information, and more
+  
+   <_p>
+Gourmet Recipe Manager is a recipe-organizer that allows you to collect,
+@@ -21,9 +23,15 @@
+   
+  
+  
+-  http://thinkle.github.io/gourmet/images/screenshots/SearchView.png
+-  
http://thinkle.github.io/gourmet/images/screenshots/CardView.png
++  
++   
https://thinkle.github.io/gourmet/images/screenshots/SearchView.png
++  
++  
++   
https://thinkle.github.io/gourmet/images/screenshots/CardView.png
++  
+  
+- http://thinkle.github.io/gourmet/
+- https://github.com/thinkle/gourmet/issues
+-
++ gourmet.desktop
++ https://thinkle.github.io/gourmet/
++ https://github.com/thinkle/gourmet/issues
++ thomas_hin...@alumni.brown.edu
++
+diff --git a/setup.cfg b/setup.cfg
+index 647f9660..880c7fed 100644
+--- a/setup.cfg
 b/setup.cfg
+@@ -17,7 +17,7 @@ desktop_files=[
+   ("share/gourmet/plugins/import_export", 
glob.glob("gourmet/plugins/import_export/*.gourmet-plugin.in"))
+   ]
+ xml_files=[
+-  ("share/appdata", ("gourmet.appdata.xml.in",)),
++  ("share/metainfo", ("gourmet.appdata.xml.in",)),
+   ]
+ 
+ [build_icons]
+-- 
+2.20.1
+

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 15:12:09 UTC (rev 418504)
+++ PKGBUILD2018-12-27 15:13:30 UTC (rev 418505)
@@ -6,7 +6,7 @@
 
 pkgname=gourmet
 pkgver=0.17.4
-pkgrel=7
+pkgrel=8
 pkgdesc="A simple but powerful recipe-managing application"
 arch=('any')
 url="https://thinkle.github.io/gourmet/;
@@ -21,10 +21,12 @@
 'python2-reportlab: Printing and PDF Export plugin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/thinkle/$pkgname/archive/$pkgver.tar.gz;
 "gourmet-pillow.patch"
-"bs4-port.patch")
+"bs4-port.patch"
+"0001-Fix-AppStream-metadata-validation.patch")
 sha256sums=('13edd3b9c3a3507d20b80cff0f88183ac7979b720e7577290815ffacca097fe3'
 '3680663b09fc61e5797990c378597eeb5db6915b4db987ac2d1a55c7f2636047'
-'815b0fb735d6b581fba0cec713a9ad963f842c969db9fef3e3b0d66ef11bd3b0')
+'815b0fb735d6b581fba0cec713a9ad963f842c969db9fef3e3b0d66ef11bd3b0'
+'010ba6616751a87854d0fefdf6f26cfa6b6d20ea908b46250bbfc6bea04bab35')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -39,6 +41,10 @@
   # Port to Beautiful Soup 4
   # https://github.com/thinkle/gourmet/commit/fdd0f10a
   patch -Np1 -i ../bs4-port.patch
+
+  # Fix AppStream metadata validation
+  # https://github.com/thinkle/gourmet/pull/928
+  patch -Np1 -i ../0001-Fix-AppStream-metadata-validation.patch
 }
 
 build() {


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

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 15:11:57
  Author: archange
Revision: 418503

upgpkg: nodejs-lts-boron 6.16.0-1

Modified:
  nodejs-lts-boron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 14:26:56 UTC (rev 418502)
+++ PKGBUILD2018-12-27 15:11:57 UTC (rev 418503)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
 
 pkgname=nodejs-lts-boron
-pkgver=6.15.1
+pkgver=6.16.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
 # https://nodejs.org/download/release/latest-boron/SHASUMS256.txt.asc
-sha256sums=('c3bde58a904b5000a88fbad3de630d432693bc6d9d6fec60a5a19e68498129c2')
+sha256sums=('0d0882a9da1ccc217518d3d1a60dd238da9f52bed0c7daac42b8dc3d83bd7546')
 validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

   'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 

   'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

@@ -52,7 +52,7 @@
 
 check() {
   cd node-v${pkgver}
-  # Some network related errors
+  # eslint missing (Cannot find module '../../tools/eslint')
   make test || warning "Tests failed"
 }
 


[arch-commits] Commit in nodejs-lts-boron/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-27 Thread Bruno Pagani via arch-commits
Date: Thursday, December 27, 2018 @ 15:12:09
  Author: archange
Revision: 418504

archrelease: copy trunk to community-x86_64

Added:
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD
(from rev 418503, nodejs-lts-boron/trunk/PKGBUILD)
Deleted:
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 15:11:57 UTC (rev 418503)
+++ PKGBUILD2018-12-27 15:12:09 UTC (rev 418504)
@@ -1,65 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-boron
-pkgver=6.15.1
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
-arch=('x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=("nodejs=$pkgver")
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
-# https://nodejs.org/download/release/latest-boron/SHASUMS256.txt.asc
-sha256sums=('c3bde58a904b5000a88fbad3de630d432693bc6d9d6fec60a5a19e68498129c2')
-validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

-  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 

-  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

-
-prepare() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # Some network related errors
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: nodejs-lts-boron/repos/community-x86_64/PKGBUILD (from rev 418503, 
nodejs-lts-boron/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 15:12:09 UTC (rev 418504)
@@ -0,0 +1,65 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-boron
+pkgver=6.16.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
+arch=('x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
+# https://nodejs.org/download/release/latest-boron/SHASUMS256.txt.asc
+sha256sums=('0d0882a9da1ccc217518d3d1a60dd238da9f52bed0c7daac42b8dc3d83bd7546')
+validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8' # Myles Borins 

+  'B9AE9905FFD7803F25714661B63B535A4C206CA9' # Evan Lucas 

+  'DD8F2338BAE7501E3DD5AC78C273792F7D83545D') # Rod Vagg 

+
+prepare() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  # eslint missing (Cannot find module '../../tools/eslint')
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-v${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 14:26:51
  Author: bgyorgy
Revision: 418501

upgpkg: rssguard 3.5.6-3

Fix AppStream metadata

Modified:
  rssguard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 13:52:24 UTC (rev 418500)
+++ PKGBUILD2018-12-27 14:26:51 UTC (rev 418501)
@@ -6,7 +6,7 @@
 pkgbase=rssguard
 pkgname=(rssguard{,-nowebengine})
 pkgver=3.5.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Simple (yet powerful) Qt5 feed reader'
 arch=(x86_64)
 url='https://github.com/martinrotter/rssguard'
@@ -18,6 +18,15 @@
 
 prepare() {
   mkdir build{,-nowebengine}
+  cd $pkgname-$pkgver
+
+  # Fix desktop file name
+  # https://github.com/martinrotter/rssguard/pull/201
+  sed -i 
's|type="desktop-id">rssguard.desktop|type="desktop-id">com.github.rssguard.desktop|'
 resources/desktop/com.github.rssguard.appdata.xml
+
+  # Install icons under icons/hicolor/scalable/apps instead of pixmaps
+  # https://github.com/martinrotter/rssguard/pull/202
+  sed -i 's|/share/pixmaps/|/share/icons/hicolor/512x512/apps/|' rssguard.pro
 }
 
 build() {
@@ -39,10 +48,14 @@
 
 package_rssguard-nowebengine() {
   pkgdesc+=' without WebEngine support'
-  depends=(qt5-base)
+  depends=(hicolor-icon-theme qt5-base)
   conflicts=($pkgbase)
   provides=($pkgbase=$pkgver)
 
   cd build-nowebengine
   make INSTALL_ROOT="$pkgdir" install
+
+  # Ignore package by AppStream to avoid duplicated IDs
+  rm -r "$pkgdir/usr/share/metainfo/"
+  echo 'X-AppStream-Ignore=true' >> 
"$pkgdir/usr/share/applications/com.github.rssguard.desktop"
 }


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 14:26:56
  Author: bgyorgy
Revision: 418502

archrelease: copy trunk to community-x86_64

Added:
  rssguard/repos/community-x86_64/PKGBUILD
(from rev 418501, rssguard/trunk/PKGBUILD)
Deleted:
  rssguard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 14:26:51 UTC (rev 418501)
+++ PKGBUILD2018-12-27 14:26:56 UTC (rev 418502)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: WorMzy Tykashi 
-# Contributor: Alois Nespor 
-# Contributor: speps 
-
-pkgbase=rssguard
-pkgname=(rssguard{,-nowebengine})
-pkgver=3.5.6
-pkgrel=2
-pkgdesc='Simple (yet powerful) Qt5 feed reader'
-arch=(x86_64)
-url='https://github.com/martinrotter/rssguard'
-license=(GPL3)
-depends=(qt5-webengine)
-makedepends=(qt5-tools)
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/martinrotter/$pkgbase/archive/$pkgver.tar.gz;)
-sha256sums=('8429b20e44fd394d6d053ed87b7e71ced9795f0d1b448621c475421f0e2daafa')
-
-prepare() {
-  mkdir build{,-nowebengine}
-}
-
-build() {
-  cd build
-  qmake ../$pkgname-$pkgver -r CONFIG+=release PREFIX=/usr
-  make
-
-  cd ../build-nowebengine
-  qmake ../$pkgname-$pkgver -r CONFIG+=release PREFIX=/usr USE_WEBENGINE=false
-  make
-}
-
-package_rssguard() {
-  depends=(qt5-webengine)
-
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-}
-
-package_rssguard-nowebengine() {
-  pkgdesc+=' without WebEngine support'
-  depends=(qt5-base)
-  conflicts=($pkgbase)
-  provides=($pkgbase=$pkgver)
-
-  cd build-nowebengine
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: rssguard/repos/community-x86_64/PKGBUILD (from rev 418501, 
rssguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 14:26:56 UTC (rev 418502)
@@ -0,0 +1,61 @@
+# Maintainer: Balló György 
+# Contributor: WorMzy Tykashi 
+# Contributor: Alois Nespor 
+# Contributor: speps 
+
+pkgbase=rssguard
+pkgname=(rssguard{,-nowebengine})
+pkgver=3.5.6
+pkgrel=3
+pkgdesc='Simple (yet powerful) Qt5 feed reader'
+arch=(x86_64)
+url='https://github.com/martinrotter/rssguard'
+license=(GPL3)
+depends=(qt5-webengine)
+makedepends=(qt5-tools)
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/martinrotter/$pkgbase/archive/$pkgver.tar.gz;)
+sha256sums=('8429b20e44fd394d6d053ed87b7e71ced9795f0d1b448621c475421f0e2daafa')
+
+prepare() {
+  mkdir build{,-nowebengine}
+  cd $pkgname-$pkgver
+
+  # Fix desktop file name
+  # https://github.com/martinrotter/rssguard/pull/201
+  sed -i 
's|type="desktop-id">rssguard.desktop|type="desktop-id">com.github.rssguard.desktop|'
 resources/desktop/com.github.rssguard.appdata.xml
+
+  # Install icons under icons/hicolor/scalable/apps instead of pixmaps
+  # https://github.com/martinrotter/rssguard/pull/202
+  sed -i 's|/share/pixmaps/|/share/icons/hicolor/512x512/apps/|' rssguard.pro
+}
+
+build() {
+  cd build
+  qmake ../$pkgname-$pkgver -r CONFIG+=release PREFIX=/usr
+  make
+
+  cd ../build-nowebengine
+  qmake ../$pkgname-$pkgver -r CONFIG+=release PREFIX=/usr USE_WEBENGINE=false
+  make
+}
+
+package_rssguard() {
+  depends=(qt5-webengine)
+
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+}
+
+package_rssguard-nowebengine() {
+  pkgdesc+=' without WebEngine support'
+  depends=(hicolor-icon-theme qt5-base)
+  conflicts=($pkgbase)
+  provides=($pkgbase=$pkgver)
+
+  cd build-nowebengine
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Ignore package by AppStream to avoid duplicated IDs
+  rm -r "$pkgdir/usr/share/metainfo/"
+  echo 'X-AppStream-Ignore=true' >> 
"$pkgdir/usr/share/applications/com.github.rssguard.desktop"
+}


[arch-commits] Commit in (mutagen)

2018-12-27 Thread Antonio Rojas via arch-commits
Date: Thursday, December 27, 2018 @ 13:52:33
  Author: arojas
Revision: 342761

extra2community: Moving mutagen from extra to community

Deleted:
  mutagen/


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 13:52:10
  Author: bgyorgy
Revision: 418498

upgpkg: converseen 0.9.7.2-3

Install less icons

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 13:52:05 UTC (rev 418497)
+++ PKGBUILD2018-12-27 13:52:10 UTC (rev 418498)
@@ -4,7 +4,7 @@
 
 pkgname=converseen
 pkgver=0.9.7.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Batch image converter and resizer"
 arch=('x86_64')
 url="http://converseen.fasterland.net/;
@@ -17,6 +17,8 @@
 prepare() {
   mkdir build
   cd $pkgname-$pkgver
+  convert res/converseen.png +set date:create +set date:modify -resize 256x256 
-alpha on res/converseen.png
+  sed -i 's|/share/pixmaps|/share/icons/hicolor/256x256/apps|' CMakeLists.txt
 
   # Don't use legacy path for AppStream metainfo file
   # https://github.com/Faster3ck/Converseen/pull/61
@@ -34,11 +36,4 @@
 package() {
   cd build
   make DESTDIR="$pkgdir" install
-
-  cd ../$pkgname-$pkgver
-  for size in 16x16 22x22 24x24 32x32 48x48 64x64 128x128 256x256; do
-install -dm755 "$pkgdir"/usr/share/icons/hicolor/$size/apps/
-convert res/converseen.png +set date:create +set date:modify -resize $size 
-alpha on "$pkgdir"/usr/share/icons/hicolor/$size/apps/converseen.png
-  done
-  rm -r "$pkgdir"/usr/share/pixmaps/
 }


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

2018-12-27 Thread Balló György via arch-commits
Date: Thursday, December 27, 2018 @ 13:52:24
  Author: bgyorgy
Revision: 418500

archrelease: copy trunk to community-x86_64

Added:
  converseen/repos/community-x86_64/PKGBUILD
(from rev 418499, converseen/trunk/PKGBUILD)
Deleted:
  converseen/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 13:52:15 UTC (rev 418499)
+++ PKGBUILD2018-12-27 13:52:24 UTC (rev 418500)
@@ -1,44 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.9.7.2
-pkgrel=2
-pkgdesc="Batch image converter and resizer"
-arch=('x86_64')
-url="http://converseen.fasterland.net/;
-license=('GPL3')
-depends=('ghostscript' 'hicolor-icon-theme' 'libheif' 'libmagick' 'libraw' 
'librsvg' 'libwebp' 'libwmf' 'openexr' 'qt5-base')
-makedepends=('cmake' 'imagemagick' 'qt5-tools')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('27b322450a80b6eb7d7f9d936f33ffe18cb06c6ab684c027dd474af91a03fb76')
-
-prepare() {
-  mkdir build
-  cd $pkgname-$pkgver
-
-  # Don't use legacy path for AppStream metainfo file
-  # https://github.com/Faster3ck/Converseen/pull/61
-  sed -i 's|/usr/share/appdata/|/usr/share/metainfo/|' CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  cd ../$pkgname-$pkgver
-  for size in 16x16 22x22 24x24 32x32 48x48 64x64 128x128 256x256; do
-install -dm755 "$pkgdir"/usr/share/icons/hicolor/$size/apps/
-convert res/converseen.png +set date:create +set date:modify -resize $size 
-alpha on "$pkgdir"/usr/share/icons/hicolor/$size/apps/converseen.png
-  done
-  rm -r "$pkgdir"/usr/share/pixmaps/
-}

Copied: converseen/repos/community-x86_64/PKGBUILD (from rev 418499, 
converseen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 13:52:24 UTC (rev 418500)
@@ -0,0 +1,39 @@
+# Maintainer: Balló György 
+# Contributor: Giovanni Scafora 
+# Contributor: archtux 
+
+pkgname=converseen
+pkgver=0.9.7.2
+pkgrel=3
+pkgdesc="Batch image converter and resizer"
+arch=('x86_64')
+url="http://converseen.fasterland.net/;
+license=('GPL3')
+depends=('ghostscript' 'hicolor-icon-theme' 'libheif' 'libmagick' 'libraw' 
'librsvg' 'libwebp' 'libwmf' 'openexr' 'qt5-base')
+makedepends=('cmake' 'imagemagick' 'qt5-tools')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('27b322450a80b6eb7d7f9d936f33ffe18cb06c6ab684c027dd474af91a03fb76')
+
+prepare() {
+  mkdir build
+  cd $pkgname-$pkgver
+  convert res/converseen.png +set date:create +set date:modify -resize 256x256 
-alpha on res/converseen.png
+  sed -i 's|/share/pixmaps|/share/icons/hicolor/256x256/apps|' CMakeLists.txt
+
+  # Don't use legacy path for AppStream metainfo file
+  # https://github.com/Faster3ck/Converseen/pull/61
+  sed -i 's|/usr/share/appdata/|/usr/share/metainfo/|' CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


  1   2   >