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

2019-08-11 Thread Jan Steffens via arch-commits
Date: Monday, August 12, 2019 @ 04:20:47
  Author: heftig
Revision: 359740

archrelease: copy trunk to testing-x86_64

Added:
  pgbouncer/repos/testing-x86_64/
  pgbouncer/repos/testing-x86_64/PKGBUILD
(from rev 359739, pgbouncer/trunk/PKGBUILD)
  pgbouncer/repos/testing-x86_64/pgbouncer.ini
(from rev 359739, pgbouncer/trunk/pgbouncer.ini)
  pgbouncer/repos/testing-x86_64/pgbouncer.logrotate
(from rev 359739, pgbouncer/trunk/pgbouncer.logrotate)
  pgbouncer/repos/testing-x86_64/pgbouncer.service
(from rev 359739, pgbouncer/trunk/pgbouncer.service)
  pgbouncer/repos/testing-x86_64/pgbouncer.sysusers
(from rev 359739, pgbouncer/trunk/pgbouncer.sysusers)
  pgbouncer/repos/testing-x86_64/pgbouncer.tmpfiles.conf
(from rev 359739, pgbouncer/trunk/pgbouncer.tmpfiles.conf)

-+
 PKGBUILD|   55 ++
 pgbouncer.ini   |   52 +++
 pgbouncer.logrotate |8 ++
 pgbouncer.service   |   11 +
 pgbouncer.sysusers  |3 ++
 pgbouncer.tmpfiles.conf |4 +++
 6 files changed, 133 insertions(+)

Copied: pgbouncer/repos/testing-x86_64/PKGBUILD (from rev 359739, 
pgbouncer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-12 04:20:47 UTC (rev 359740)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dan McGee 
+
+pkgname=pgbouncer
+pkgver=1.10.0
+pkgrel=2
+pkgdesc='Lightweight connection pooler for PostgreSQL'
+url='https://pgbouncer.github.io/'
+arch=('x86_64')
+license=('BSD')
+depends=('libevent>=2.0' 'c-ares' 'systemd' 'pam')
+makedepends=('asciidoc' 'xmlto')
+checkdepends=('postgresql-libs')
+backup=('etc/pgbouncer/pgbouncer.ini'
+'etc/logrotate.d/pgbouncer')
+source=(https://pgbouncer.github.io/downloads/files/${pkgver}/pgbouncer-${pkgver}.tar.gz
+pgbouncer.ini
+pgbouncer.logrotate
+pgbouncer.service
+pgbouncer.tmpfiles.conf
+pgbouncer.sysusers)
+sha512sums=('8ec9f102b57ca5f92fb689588ec090056ac29f21825400ec67bca413fe076ad50e0b491e65c4cfebc488cc245eb3c88c36db2ee0ba1cb737f35404be0983dd1d'
+
'39abc7b11c9d7a2593941b4d2a82db998ac1b1e3da131ae276da73c7afc4eda7b69bbfd0acd39f7bce20ecb911baf0adba341ff58dcab1a57e419708e7c8d26f'
+
'1dc86704fce211b23afe7962c947c7de80a15bef219928acbf486b915d80d44a6590fbc509fe650c97b694a508bcf95d2152663863f0c372323286e644c6d60a'
+
'2b4b7129eda54b34405aa4e15a4d37b2173b529ecae070e766f1dcebd0af8f6898ee1b665a60d5f633036a52662e89967f33caacf2841dad441960230ef7'
+
'3d339e84b3ba426cfbbba406ef65a59aacaf68650afd2b3c6096e8babd2c8d39eaad13f60cd2718d7cdc8dc10eeba569da537b25f67c0a1a2884c885b2bc7136'
+
'05551189022bd160ca0d64831d2559480ae2dcfe8a489aa4c22cc375c3def31d1169e48e17e6502ccd18237d79afef5bc4587f3cf14274c125eb71311d00503b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--with-pam
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -C test run_test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 NEWS.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 ../pgbouncer.ini "${pkgdir}/etc/pgbouncer/pgbouncer.ini"
+  install -Dm 644 ../pgbouncer.logrotate "${pkgdir}/etc/logrotate.d/pgbouncer"
+  install -Dm 644 ../pgbouncer.service 
"${pkgdir}/usr/lib/systemd/system/pgbouncer.service"
+  install -Dm 644 ../pgbouncer.tmpfiles.conf 
"${pkgdir}/usr/lib/tmpfiles.d/pgbouncer.conf"
+  install -Dm 644 ../pgbouncer.sysusers 
"${pkgdir}/usr/lib/sysusers.d/pgbouncer.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: pgbouncer/repos/testing-x86_64/pgbouncer.ini (from rev 359739, 
pgbouncer/trunk/pgbouncer.ini)
===
--- testing-x86_64/pgbouncer.ini(rev 0)
+++ testing-x86_64/pgbouncer.ini2019-08-12 04:20:47 UTC (rev 359740)
@@ -0,0 +1,52 @@
+[pgbouncer]
+logfile = /var/log/pgbouncer/pgbouncer.log
+pidfile = /run/pgbouncer/pgbouncer.pid
+
+;; ip address or * which means all ip-s
+;listen_addr = 127.0.0.1
+;listen_port = 6432
+
+unix_socket_dir = /run/postgresql
+unix_socket_mode = 0777
+
+; any, trust, plain, crypt, md5
+auth_type = trust
+auth_file = /etc/pgbouncer/userlist.txt
+
+; comma-separated list of users, who are allowed to change settings
+admin_users = postgres
+
+; comma-separated list of users who are just allowed to use SHOW command
+stats_users = stats, postgres
+
+; total number of clients that can connect
+max_client_conn = 100
+
+; default pool size.  20 is good number when transaction pooling
+; is in use, in session pooling it needs to be the number of
+; max clients you want to 

[arch-commits] Commit in postgresql/repos (10 files)

2019-08-11 Thread Jan Steffens via arch-commits
Date: Monday, August 12, 2019 @ 04:20:50
  Author: heftig
Revision: 359741

archrelease: copy trunk to testing-x86_64

Added:
  postgresql/repos/testing-x86_64/
  postgresql/repos/testing-x86_64/PKGBUILD
(from rev 359739, postgresql/trunk/PKGBUILD)
  postgresql/repos/testing-x86_64/postgresql-check-db-dir
(from rev 359739, postgresql/trunk/postgresql-check-db-dir)
  postgresql/repos/testing-x86_64/postgresql-perl-rpath.patch
(from rev 359739, postgresql/trunk/postgresql-perl-rpath.patch)
  postgresql/repos/testing-x86_64/postgresql-run-socket.patch
(from rev 359739, postgresql/trunk/postgresql-run-socket.patch)
  postgresql/repos/testing-x86_64/postgresql.logrotate
(from rev 359739, postgresql/trunk/postgresql.logrotate)
  postgresql/repos/testing-x86_64/postgresql.pam
(from rev 359740, postgresql/trunk/postgresql.pam)
  postgresql/repos/testing-x86_64/postgresql.service
(from rev 359740, postgresql/trunk/postgresql.service)
  postgresql/repos/testing-x86_64/postgresql.sysusers
(from rev 359740, postgresql/trunk/postgresql.sysusers)
  postgresql/repos/testing-x86_64/postgresql.tmpfiles
(from rev 359740, postgresql/trunk/postgresql.tmpfiles)

-+
 PKGBUILD|  219 ++
 postgresql-check-db-dir |   49 +
 postgresql-perl-rpath.patch |   13 ++
 postgresql-run-socket.patch |   12 ++
 postgresql.logrotate|4 
 postgresql.pam  |3 
 postgresql.service  |   43 
 postgresql.sysusers |1 
 postgresql.tmpfiles |2 
 9 files changed, 346 insertions(+)

Copied: postgresql/repos/testing-x86_64/PKGBUILD (from rev 359739, 
postgresql/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-12 04:20:50 UTC (rev 359741)
@@ -0,0 +1,219 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgbase=postgresql
+pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
+pkgver=11.5
+_majorver=${pkgver%.*}
+pkgrel=2
+pkgdesc='Sophisticated object-relational DBMS'
+url='https://www.postgresql.org/'
+arch=('x86_64')
+license=('custom:PostgreSQL')
+makedepends=('krb5' 'libxml2' 'python' 'python2' 'perl' 'tcl>=8.6.0' 
'openssl>=1.0.0'
+ 'pam' 'zlib' 'icu' 'systemd' 'libldap' 'llvm' 'clang')
+source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
+postgresql-run-socket.patch
+postgresql-perl-rpath.patch
+postgresql.pam
+postgresql.logrotate
+postgresql.service
+postgresql-check-db-dir
+postgresql.sysusers
+postgresql.tmpfiles)
+sha256sums=('7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180'
+'8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
+'5f73b54ca6206bd2c469c507830261ebd167baca074698d8889d769c33f98a31'
+'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
+'6abb842764bbed74ea4a269d24f1e73d1c0b1d8ecd6e2e6fb5fb10590298605e'
+'25fb140b90345828dc01a4f286345757e700a47178bab03d217a7a5a79105b57'
+'2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
+'7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
+'26e043c8c7cb775d26960b980eeab5372e1892c57e05cb815e4034f815133c20')
+sha512sums=('537148079dc6c33cfb9bf9722171e524707b42ef01369deb968d0d6e8fa9b7f16f6ce67139d9dc45fb7385defbf56aa2c0affe5ee9d76e996f31e47486192141'
+
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
+
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
+
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
+
'9ab4da01337ffbab8faec0e220aaa2a642dbfeccf7232ef2645bdc2177a953f17ee3cc14a4d8f8ebd064e1dae8b3dba6029adbffb8afaabea383963213941ba8'
+
'ee0c010be07e8b5396cfd89c1d077b7c5573753d0210ea4e330e314c2759e25fbee9071e663f871855d65cc8ac75162af9e793dd10892f50f515e7a89cc8d6a0'
+
'73af1cd31638791f81aa2623d51188364107a57b55e4deba6691cd99e96ae5ea0dd94b25a0e95d9e21ac64f36f71919a05cd31233c754bde025215a5a02e055c'
+
'36f7a5d38370fdc4d4267fd5a8a8330f152a1077bf0f065b89d4a7b8112ccd42be2c46c863791b77de02013f28275a42219f4236e7cb837c3f8cfd5fcc7d3373'
+
'5f03c61780a2de7417228aec1c093f403d6bca604d628117004fc629f4dc1ebe64975187749c4dca931662ec1188b28cdd70fb92fcecb4c0db5a2f73ecbb63ed')
+
+prepare() {
+  cd postgresql-${pkgver}
+  patch -p1 < ../postgresql-run-socket.patch
+  patch -p1 < ../postgresql-perl-rpath.patch
+}
+
+build() {
+  cd postgresql-${pkgver}
+  local 

[arch-commits] Commit in pgbouncer/trunk (PKGBUILD pgbouncer.tmpfiles.conf)

2019-08-11 Thread Jan Steffens via arch-commits
Date: Monday, August 12, 2019 @ 04:20:18
  Author: heftig
Revision: 359739

1.10.0-2: On BtrFS, disable cow on the data directory

Modified:
  pgbouncer/trunk/PKGBUILD
  pgbouncer/trunk/pgbouncer.tmpfiles.conf

-+
 PKGBUILD|4 ++--
 pgbouncer.tmpfiles.conf |7 ---
 2 files changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 04:20:17 UTC (rev 359738)
+++ PKGBUILD2019-08-12 04:20:18 UTC (rev 359739)
@@ -3,7 +3,7 @@
 
 pkgname=pgbouncer
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight connection pooler for PostgreSQL'
 url='https://pgbouncer.github.io/'
 arch=('x86_64')
@@ -23,7 +23,7 @@
 
'39abc7b11c9d7a2593941b4d2a82db998ac1b1e3da131ae276da73c7afc4eda7b69bbfd0acd39f7bce20ecb911baf0adba341ff58dcab1a57e419708e7c8d26f'
 
'1dc86704fce211b23afe7962c947c7de80a15bef219928acbf486b915d80d44a6590fbc509fe650c97b694a508bcf95d2152663863f0c372323286e644c6d60a'
 
'2b4b7129eda54b34405aa4e15a4d37b2173b529ecae070e766f1dcebd0af8f6898ee1b665a60d5f633036a52662e89967f33caacf2841dad441960230ef7'
-
'421d10fd3b77fc4bec18122f39d237f5eed5130b059dddee5243b17a5a76894ae9262b6f584f5d872ead5028a431a30ce66c8c8e662607573352e739e578bede'
+
'3d339e84b3ba426cfbbba406ef65a59aacaf68650afd2b3c6096e8babd2c8d39eaad13f60cd2718d7cdc8dc10eeba569da537b25f67c0a1a2884c885b2bc7136'
 
'05551189022bd160ca0d64831d2559480ae2dcfe8a489aa4c22cc375c3def31d1169e48e17e6502ccd18237d79afef5bc4587f3cf14274c125eb71311d00503b')
 
 build() {

Modified: pgbouncer.tmpfiles.conf
===
--- pgbouncer.tmpfiles.conf 2019-08-12 04:20:17 UTC (rev 359738)
+++ pgbouncer.tmpfiles.conf 2019-08-12 04:20:18 UTC (rev 359739)
@@ -1,3 +1,4 @@
-d /run/pgbouncer  0755 pgbouncer pgbouncer -
-d /var/lib/postgres/data 700 postgres postgres
-z /var/log/pgbouncer 0750 pgbouncer pgbouncer
+d /run/pgbouncer 755 pgbouncer pgbouncer
+d /var/lib/postgres/data 700 postgres  postgres
+h /var/lib/postgres/data -   - - +C
+z /var/log/pgbouncer 750 pgbouncer pgbouncer


[arch-commits] Commit in postgresql/trunk (PKGBUILD postgresql.tmpfiles)

2019-08-11 Thread Jan Steffens via arch-commits
Date: Monday, August 12, 2019 @ 04:20:17
  Author: heftig
Revision: 359738

11.5-2: On BtrFS, disable cow on the data directory

Modified:
  postgresql/trunk/PKGBUILD
  postgresql/trunk/postgresql.tmpfiles

-+
 PKGBUILD|6 +++---
 postgresql.tmpfiles |1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 01:36:00 UTC (rev 359737)
+++ PKGBUILD2019-08-12 04:20:17 UTC (rev 359738)
@@ -5,7 +5,7 @@
 pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
 pkgver=11.5
 _majorver=${pkgver%.*}
-pkgrel=1
+pkgrel=2
 pkgdesc='Sophisticated object-relational DBMS'
 url='https://www.postgresql.org/'
 arch=('x86_64')
@@ -29,7 +29,7 @@
 '25fb140b90345828dc01a4f286345757e700a47178bab03d217a7a5a79105b57'
 '2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
 '7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
-'ff7c84f78f73b87ade8e2d91d2958808be5a9af79c8b13430238ae953c7fe853')
+'26e043c8c7cb775d26960b980eeab5372e1892c57e05cb815e4034f815133c20')
 
sha512sums=('537148079dc6c33cfb9bf9722171e524707b42ef01369deb968d0d6e8fa9b7f16f6ce67139d9dc45fb7385defbf56aa2c0affe5ee9d76e996f31e47486192141'
 
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
 
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
@@ -38,7 +38,7 @@
 
'ee0c010be07e8b5396cfd89c1d077b7c5573753d0210ea4e330e314c2759e25fbee9071e663f871855d65cc8ac75162af9e793dd10892f50f515e7a89cc8d6a0'
 
'73af1cd31638791f81aa2623d51188364107a57b55e4deba6691cd99e96ae5ea0dd94b25a0e95d9e21ac64f36f71919a05cd31233c754bde025215a5a02e055c'
 
'36f7a5d38370fdc4d4267fd5a8a8330f152a1077bf0f065b89d4a7b8112ccd42be2c46c863791b77de02013f28275a42219f4236e7cb837c3f8cfd5fcc7d3373'
-
'27094b07fd57a077da9cb31e1970998766e7aff5bd7a2c4545fe3a5a96e84ecc6e5c541f418b2f395c06404fa29a17d9f88db0f4efdd392a02ac029662697619')
+
'5f03c61780a2de7417228aec1c093f403d6bca604d628117004fc629f4dc1ebe64975187749c4dca931662ec1188b28cdd70fb92fcecb4c0db5a2f73ecbb63ed')
 
 prepare() {
   cd postgresql-${pkgver}

Modified: postgresql.tmpfiles
===
--- postgresql.tmpfiles 2019-08-12 01:36:00 UTC (rev 359737)
+++ postgresql.tmpfiles 2019-08-12 04:20:17 UTC (rev 359738)
@@ -1 +1,2 @@
 d /var/lib/postgres/data 700 postgres postgres
+h /var/lib/postgres/data -   --+C


[arch-commits] Commit in python2-configparser/repos/extra-any (4 files)

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:36:00
  Author: felixonmars
Revision: 359737

archrelease: copy trunk to extra-any

Added:
  python2-configparser/repos/extra-any/PKGBUILD
(from rev 359736, python2-configparser/trunk/PKGBUILD)
  python2-configparser/repos/extra-any/license
(from rev 359736, python2-configparser/trunk/license)
Deleted:
  python2-configparser/repos/extra-any/PKGBUILD
  python2-configparser/repos/extra-any/license

--+
 PKGBUILD |   68 ++---
 license  |   38 +-
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 01:35:45 UTC (rev 359736)
+++ PKGBUILD2019-08-12 01:36:00 UTC (rev 359737)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrzej Giniewicz 
-
-pkgname=python2-configparser
-pkgver=3.7.5
-pkgrel=1
-pkgdesc="This library brings the updated configparser from Python 3.5 to 
Python 2.6-3.5."
-arch=('any')
-url="https://bitbucket.org/ambv/configparser;
-license=('MIT')
-depends=('python2-backports')
-makedepends=('python2-setuptools')
-source=("https://pypi.io/packages/source/c/configparser/configparser-${pkgver}.tar.gz;
 license)
-md5sums=('cece4f71fcfb5457d7bc7dfd5eabe8d5'
- 'f8e5b03556ed846d7681bacd4126f484')
-
-prepare() {
-  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-$(find "$srcdir"/configparser-${pkgver} -name '*.py')
-}
-
-build() {
-  cd configparser-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd configparser-$pkgver
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  rm "$pkgdir"/usr/lib/python2.7/site-packages/backports/__init__.py{,c,o}
-
-  install -D "$srcdir"/license "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-configparser/repos/extra-any/PKGBUILD (from rev 359736, 
python2-configparser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 01:36:00 UTC (rev 359737)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrzej Giniewicz 
+
+pkgname=python2-configparser
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="This library brings the updated configparser from Python 3.5 to 
Python 2.6-3.5."
+arch=('any')
+url="https://bitbucket.org/ambv/configparser;
+license=('MIT')
+depends=('python2-backports')
+makedepends=('python2-setuptools')
+source=("https://pypi.io/packages/source/c/configparser/configparser-${pkgver}.tar.gz;
 license)
+md5sums=('bc1558ed941cb1acb80ff650726d5af8'
+ 'f8e5b03556ed846d7681bacd4126f484')
+
+prepare() {
+  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+$(find "$srcdir"/configparser-${pkgver} -name '*.py')
+}
+
+build() {
+  cd configparser-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd configparser-$pkgver
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  rm "$pkgdir"/usr/lib/python2.7/site-packages/backports/__init__.py{,c,o}
+
+  install -D "$srcdir"/license "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: license
===
--- license 2019-08-12 01:35:45 UTC (rev 359736)
+++ license 2019-08-12 01:36:00 UTC (rev 359737)
@@ -1,19 +0,0 @@
-Copyright (c) 2011 Łukasz Langa
-
-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.

Copied: python2-configparser/repos/extra-any/license (from rev 359736, 
python2-configparser/trunk/license)
===
--- license (rev 0)
+++ license 2019-08-12 01:36:00 UTC (rev 359737)
@@ -0,0 +1,19 @@
+Copyright (c) 2011 Łukasz Langa
+
+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 

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

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:35:38
  Author: felixonmars
Revision: 359735

archrelease: copy trunk to extra-x86_64

Added:
  python-lxml/repos/extra-x86_64/PKGBUILD
(from rev 359734, python-lxml/trunk/PKGBUILD)
Deleted:
  python-lxml/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 01:35:27 UTC (rev 359734)
+++ PKGBUILD2019-08-12 01:35:38 UTC (rev 359735)
@@ -1,97 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-lxml
-pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=4.4.0
-pkgrel=1
-arch=('x86_64')
-license=('BSD' 'custom')
-url="https://lxml.de/;
-makedepends=('libxslt' 'python-setuptools' 'python2-setuptools' 'epydoc' 
'python2-pygments'
- 'python2-docutils' 'cython' 'cython2')
-checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 
'python2-html5lib'
-  'python-beautifulsoup4' 'python2-beautifulsoup4')
-source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz;)
-sha512sums=('23e7b5157a6520f3e1dab76b023e828a5afe9d0103e2d3ff8fd1a8791000ed8f859e26fe9809676b89d4ef9fa4b27a6f1662a2b0f54e5ae04776643f5b06c0c3')
-
-prepare() {
-  mv lxml-lxml-$pkgver lxml-$pkgver
-  cp -a lxml-$pkgver{,-py2}
-
-  # Setting LC_CTYPE to workaround encoding issue
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/lxml-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/lxml-$pkgver-py2
-  python2 setup.py build
-  make PYTHON=python2 html
-}
-
-check() {
-  # TODO: Find a sane way to skip inplace build
-
-  cd "$srcdir"/lxml-$pkgver
-  make PYTHON=python test
-
-  cd "$srcdir"/lxml-$pkgver-py2
-  make PYTHON=python2 test
-}
-
-package_python-lxml() {
-  pkgdesc="Python3 binding for the libxml2 and libxslt libraries"
-  depends=('python' 'libxslt')
-  optdepends=('python-beautifulsoup4: support for beautifulsoup parser to 
parse not well formed HTML'
-  'python-cssselect: support for cssselect'
-  'python-html5lib: support for html5lib parser'
-  'python-lxml-docs: offline docs')
-
-  cd lxml-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build --optimize=1
-
-  install -Dm644 LICENSES.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt
-}
-
-package_python2-lxml() {
-  pkgdesc="Python2 binding for the libxml2 and libxslt libraries"
-  depends=('python2' 'libxslt')
-  optdepends=('python2-beautifulsoup4: support for beautifulsoup parser to 
parse not well formed HTML'
-  'python2-cssselect: support for cssselect'
-  'python2-html5lib: support for html5lib parser'
-  'python-lxml-docs: offline docs')
-
-  cd lxml-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
-
-  install -Dm644 LICENSES.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt
-}
-
-package_python-lxml-docs() {
-  pkgdesc="Python binding for the libxml2 and libxslt libraries (docs)"
-  options=('docs')
-
-  cd lxml-$pkgver-py2
-  install -d "$pkgdir"/usr/share/doc/$pkgbase
-  cp -r doc/html "$pkgdir"/usr/share/doc/$pkgbase
-
-  install -Dm644 LICENSES.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/elementtree.txt
-}

Copied: python-lxml/repos/extra-x86_64/PKGBUILD (from rev 359734, 
python-lxml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 01:35:38 UTC (rev 359735)
@@ -0,0 +1,97 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=4.4.1
+pkgrel=1
+arch=('x86_64')
+license=('BSD' 'custom')
+url="https://lxml.de/;
+makedepends=('libxslt' 'python-setuptools' 'python2-setuptools' 'epydoc' 
'python2-pygments'
+ 'python2-docutils' 'cython' 'cython2')
+checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 
'python2-html5lib'
+  'python-beautifulsoup4' 'python2-beautifulsoup4')
+source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz;)

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

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:35:45
  Author: felixonmars
Revision: 359736

upgpkg: python2-configparser 3.8.1-1

Modified:
  python2-configparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 01:35:38 UTC (rev 359735)
+++ PKGBUILD2019-08-12 01:35:45 UTC (rev 359736)
@@ -2,7 +2,7 @@
 # Contributor: Andrzej Giniewicz 
 
 pkgname=python2-configparser
-pkgver=3.7.5
+pkgver=3.8.1
 pkgrel=1
 pkgdesc="This library brings the updated configparser from Python 3.5 to 
Python 2.6-3.5."
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python2-backports')
 makedepends=('python2-setuptools')
 
source=("https://pypi.io/packages/source/c/configparser/configparser-${pkgver}.tar.gz;
 license)
-md5sums=('cece4f71fcfb5457d7bc7dfd5eabe8d5'
+md5sums=('bc1558ed941cb1acb80ff650726d5af8'
  'f8e5b03556ed846d7681bacd4126f484')
 
 prepare() {


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

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:35:28
  Author: felixonmars
Revision: 498981

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 01:35:16 UTC (rev 498980)
+++ PKGBUILD2019-08-12 01:35:28 UTC (rev 498981)
@@ -1,77 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: George Brooke 
-# Contributor: Sebastian Wiesner 
-
-pkgbase=python-tox
-pkgname=(python-tox python2-tox)
-pkgver=3.12.1
-pkgrel=1
-pkgdesc='Python virtualenv management and testing tool'
-arch=('any')
-url='https://tox.readthedocs.io'
-license=('GPL2')
-makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-py' 
'python2-py' 'python-virtualenv'
- 'python2-virtualenv' 'python-pluggy' 'python2-pluggy' 
'python-toml' 'python2-toml'
- 'python-filelock' 'python2-filelock' 'python-freezegun' 
'python2-freezegun')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-mock'
-  'python2-pytest-mock' 'python2-pathlib2' 'python-flaky' 
'python2-flaky')
-source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz;)
-sha512sums=('af7f72145213a68929c4ffaf6ec6071b74a8cd5a7ee6e663e575f92f4f0536654525cd757f61265913fbe5e089aa94b8a7400636ec946070c7ca4900d497b016')
-
-prepare() {
-  find tox-$pkgver -name "*.pyc" -delete
-
-  cp -a tox-$pkgver{,-py2}
-
-  sed -i 's|pathlib2|pathlib|' tox-$pkgver/tests/integration/*.py
-}
-
-build() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/tox-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/tox-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points
-
-  (
-cd "$srcdir"/tox-$pkgver
-virtualenv "$srcdir/pyvenv" --system-site-packages
-. "$srcdir/pyvenv/bin/activate"
-python setup.py install
-python setup.py pytest
-  )
-
-  (
-cd "$srcdir"/tox-$pkgver-py2
-virtualenv2 "$srcdir/pyvenv-py2" --system-site-packages
-. "$srcdir/pyvenv-py2/bin/activate"
-python setup.py install
-python setup.py pytest
-  )
-}
-
-package_python-tox() {
-  depends=('python-py' 'python-virtualenv' 'python-setuptools' 'python-pluggy' 
'python-toml'
-   'python-filelock')
-
-  cd "$srcdir"/tox-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  ln -s tox "$pkgdir"/usr/bin/tox3
-}
-
-package_python2-tox() {
-  depends=('python2-py' 'python2-virtualenv' 'python2-setuptools' 
'python2-pluggy' 'python2-toml'
-   'python2-filelock')
-
-  cd "$srcdir"/tox-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/tox{,2}
-  mv "$pkgdir"/usr/bin/{tox-quickstart,tox2-quickstart}
-}

Copied: python-tox/repos/community-any/PKGBUILD (from rev 498980, 
python-tox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 01:35:28 UTC (rev 498981)
@@ -0,0 +1,78 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: George Brooke 
+# Contributor: Sebastian Wiesner 
+
+pkgbase=python-tox
+pkgname=(python-tox python2-tox)
+pkgver=3.13.2
+pkgrel=1
+pkgdesc='Python virtualenv management and testing tool'
+arch=('any')
+url='https://tox.readthedocs.io'
+license=('GPL2')
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-py' 
'python2-py' 'python-virtualenv'
+ 'python2-virtualenv' 'python-pluggy' 'python2-pluggy' 
'python-toml' 'python2-toml'
+ 'python-filelock' 'python2-filelock' 'python-freezegun' 
'python2-freezegun')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-mock'
+  'python2-pytest-mock' 'python2-pathlib2' 'python-flaky' 
'python2-flaky'
+  'python-pathlib2' 'python2-pathlib2')
+source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz;)
+sha512sums=('06c92c803bef7c2dd3796ecc869d78dc4d3044e62688bcf529b7c6b8330532aab30dcc44425fc226886a35d8227225db5e3f2435a469e90af7ad440231abbc35')
+
+prepare() {
+  find tox-$pkgver -name "*.pyc" -delete
+
+  cp -a tox-$pkgver{,-py2}
+
+  sed -i 's|pathlib2|pathlib|' tox-$pkgver/tests/integration/*.py
+}
+
+build() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/tox-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/tox-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points
+
+  (
+cd "$srcdir"/tox-$pkgver
+virtualenv "$srcdir/pyvenv" --system-site-packages
+. "$srcdir/pyvenv/bin/activate"
+python setup.py install
+python setup.py pytest
+  )
+
+  (
+cd "$srcdir"/tox-$pkgver-py2
+virtualenv2 

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

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:35:27
  Author: felixonmars
Revision: 359734

upgpkg: python-lxml 4.4.1-1

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 01:14:56 UTC (rev 359733)
+++ PKGBUILD2019-08-12 01:35:27 UTC (rev 359734)
@@ -3,7 +3,7 @@
 
 pkgbase=python-lxml
 pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=4.4.0
+pkgver=4.4.1
 pkgrel=1
 arch=('x86_64')
 license=('BSD' 'custom')
@@ -13,7 +13,7 @@
 checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 
'python2-html5lib'
   'python-beautifulsoup4' 'python2-beautifulsoup4')
 source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz;)
-sha512sums=('23e7b5157a6520f3e1dab76b023e828a5afe9d0103e2d3ff8fd1a8791000ed8f859e26fe9809676b89d4ef9fa4b27a6f1662a2b0f54e5ae04776643f5b06c0c3')
+sha512sums=('08857f5e15d6b4badb8bea96fc7aaf3a02a504f9b87171e01c6ace25250d254691c64661dca8e723824cabac4753c59ffa667ac0b6042506b05e4357389e658c')
 
 prepare() {
   mv lxml-lxml-$pkgver lxml-$pkgver


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

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 01:35:16
  Author: felixonmars
Revision: 498980

upgpkg: python-tox 3.13.2-1

Modified:
  python-tox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 01:08:47 UTC (rev 498979)
+++ PKGBUILD2019-08-12 01:35:16 UTC (rev 498980)
@@ -5,7 +5,7 @@
 
 pkgbase=python-tox
 pkgname=(python-tox python2-tox)
-pkgver=3.12.1
+pkgver=3.13.2
 pkgrel=1
 pkgdesc='Python virtualenv management and testing tool'
 arch=('any')
@@ -15,9 +15,10 @@
  'python2-virtualenv' 'python-pluggy' 'python2-pluggy' 
'python-toml' 'python2-toml'
  'python-filelock' 'python2-filelock' 'python-freezegun' 
'python2-freezegun')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-mock'
-  'python2-pytest-mock' 'python2-pathlib2' 'python-flaky' 
'python2-flaky')
+  'python2-pytest-mock' 'python2-pathlib2' 'python-flaky' 
'python2-flaky'
+  'python-pathlib2' 'python2-pathlib2')
 source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz;)
-sha512sums=('af7f72145213a68929c4ffaf6ec6071b74a8cd5a7ee6e663e575f92f4f0536654525cd757f61265913fbe5e089aa94b8a7400636ec946070c7ca4900d497b016')
+sha512sums=('06c92c803bef7c2dd3796ecc869d78dc4d3044e62688bcf529b7c6b8330532aab30dcc44425fc226886a35d8227225db5e3f2435a469e90af7ad440231abbc35')
 
 prepare() {
   find tox-$pkgver -name "*.pyc" -delete


[arch-commits] Commit in (gtk-xfce-engine)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 01:14:56
  Author: foutrelis
Revision: 359733

Remove deprecated package: gtk-xfce-engine

Deleted:
  gtk-xfce-engine/


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:54:23
  Author: foutrelis
Revision: 359711

archrelease: copy trunk to testing-x86_64

Added:
  xfdesktop/repos/testing-x86_64/PKGBUILD
(from rev 359710, xfdesktop/trunk/PKGBUILD)
Deleted:
  xfdesktop/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 00:53:07 UTC (rev 359710)
+++ PKGBUILD2019-08-12 00:54:23 UTC (rev 359711)
@@ -1,38 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfdesktop
-pkgver=4.14.0
-pkgrel=2
-pkgdesc="A desktop manager for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/testing-x86_64/PKGBUILD (from rev 359710, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 00:54:23 UTC (rev 359711)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfdesktop
+pkgver=4.14.1
+pkgrel=2
+pkgdesc="A desktop manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f705a016246ec54ab0c688d1a0577f6c2b45a446690aa8d9e5a7ac23efebf882')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:53:07
  Author: foutrelis
Revision: 359710

xfconf 4.14 rebuild

Modified:
  xfdesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 00:52:48 UTC (rev 359709)
+++ PKGBUILD2019-08-12 00:53:07 UTC (rev 359710)
@@ -3,7 +3,7 @@
 
 pkgname=xfdesktop
 pkgver=4.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A desktop manager for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:52:48
  Author: foutrelis
Revision: 359709

archrelease: copy trunk to extra-x86_64

Added:
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 359708, xfdesktop/trunk/PKGBUILD)
Deleted:
  xfdesktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 00:52:44 UTC (rev 359708)
+++ PKGBUILD2019-08-12 00:52:48 UTC (rev 359709)
@@ -1,38 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfdesktop
-pkgver=4.14.0
-pkgrel=1
-pkgdesc="A desktop manager for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-x86_64/PKGBUILD (from rev 359708, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 00:52:48 UTC (rev 359709)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfdesktop
+pkgver=4.14.1
+pkgrel=1
+pkgdesc="A desktop manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f705a016246ec54ab0c688d1a0577f6c2b45a446690aa8d9e5a7ac23efebf882')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:52:44
  Author: foutrelis
Revision: 359708

upgpkg: xfdesktop 4.14.1-1

New upstream release.

Modified:
  xfdesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 00:36:58 UTC (rev 359707)
+++ PKGBUILD2019-08-12 00:52:44 UTC (rev 359708)
@@ -2,8 +2,8 @@
 # Contributor: tobias 
 
 pkgname=xfdesktop
-pkgver=4.14.0
-pkgrel=2
+pkgver=4.14.1
+pkgrel=1
 pkgdesc="A desktop manager for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;
@@ -12,7 +12,7 @@
 depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
+sha256sums=('f705a016246ec54ab0c688d1a0577f6c2b45a446690aa8d9e5a7ac23efebf882')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in npm-check-updates/repos/community-any (PKGBUILD PKGBUILD)

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 00:50:26
  Author: felixonmars
Revision: 498978

archrelease: copy trunk to community-any

Added:
  npm-check-updates/repos/community-any/PKGBUILD
(from rev 498977, npm-check-updates/trunk/PKGBUILD)
Deleted:
  npm-check-updates/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 00:49:57 UTC (rev 498977)
+++ PKGBUILD2019-08-12 00:50:26 UTC (rev 498978)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm-check-updates
-pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
-pkgver=3.1.20
-pkgrel=1
-arch=('any')
-url='https://github.com/tjunnone/npm-check-updates'
-license=('Apache')
-depends=('semver')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('99cf41028398493c0ffc8be803ea1f7645928a9c11be1802d2aa29d4fbe5319a238338bb37f77291dc4e216af0d0e9593e710abd790a144b8f93decbaef5c4d4')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-  done
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}

Copied: npm-check-updates/repos/community-any/PKGBUILD (from rev 498977, 
npm-check-updates/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 00:50:26 UTC (rev 498978)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm-check-updates
+pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
+pkgver=3.1.21
+pkgrel=1
+arch=('any')
+url='https://github.com/tjunnone/npm-check-updates'
+license=('Apache')
+depends=('semver')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('b7b2b281d1d9d5c1768d2ea470e3e2520eace774aae6370ea879dd74e7bddaa5bb5dde2687d0144f9d8e61843461f0223fb548759e77efdfc6fdab46e89d160c')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}


[arch-commits] Commit in npm-check-updates/trunk (PKGBUILD)

2019-08-11 Thread Felix Yan via arch-commits
Date: Monday, August 12, 2019 @ 00:49:57
  Author: felixonmars
Revision: 498977

upgpkg: npm-check-updates 3.1.21-1

Modified:
  npm-check-updates/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 00:15:10 UTC (rev 498976)
+++ PKGBUILD2019-08-12 00:49:57 UTC (rev 498977)
@@ -2,7 +2,7 @@
 
 pkgname=npm-check-updates
 pkgdesc='Find newer versions of dependencies than what your package.json or 
bower.json allows'
-pkgver=3.1.20
+pkgver=3.1.21
 pkgrel=1
 arch=('any')
 url='https://github.com/tjunnone/npm-check-updates'
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('99cf41028398493c0ffc8be803ea1f7645928a9c11be1802d2aa29d4fbe5319a238338bb37f77291dc4e216af0d0e9593e710abd790a144b8f93decbaef5c4d4')
+sha512sums=('b7b2b281d1d9d5c1768d2ea470e3e2520eace774aae6370ea879dd74e7bddaa5bb5dde2687d0144f9d8e61843461f0223fb548759e77efdfc6fdab46e89d160c')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in xfce4-session/repos/testing-x86_64 (5 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:36:58
  Author: foutrelis
Revision: 359707

archrelease: copy trunk to testing-x86_64

Added:
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 359706, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/testing-x86_64/source-system-xinitrc-scripts.patch
(from rev 359706, xfce4-session/trunk/source-system-xinitrc-scripts.patch)
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 359706, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)
Deleted:
  xfce4-session/repos/testing-x86_64/PKGBUILD
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop

--+
 PKGBUILD |  111 +++--
 source-system-xinitrc-scripts.patch  |   17 ++
 xfce-polkit-gnome-authentication-agent-1.desktop |  174 ++---
 3 files changed, 162 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-12 00:36:52 UTC (rev 359706)
+++ PKGBUILD2019-08-12 00:36:58 UTC (rev 359707)
@@ -1,53 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfce4-session
-pkgver=4.14.0
-pkgrel=1
-pkgdesc="A session manager for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck3' 'xfconf' 'libsm' 'polkit' 'xorg-iceauth'
- 'xorg-xinit' 'xorg-xrdb' 'which' 'polkit-gnome' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
-'xfce4-screensaver: for locking screen with xflock4'
-'xscreensaver: for locking screen with xflock4'
-'gnome-screensaver: for locking screen with xflock4'
-'xlockmore: for locking screen with xflock4'
-'slock: for locking screen with xflock4')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-xfce-polkit-gnome-authentication-agent-1.desktop)
-sha256sums=('14fb6db74eb69eb400673856ba307a0e57f577cf77c3561a5910151e3d52043f'
-'74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # Provide a default PolicyKit Authentication Agent (FS#42569)
-  install -d "$pkgdir/etc/xdg/autostart"
-  cp "$srcdir/xfce-polkit-gnome-authentication-agent-1.desktop" \
-"$pkgdir/etc/xdg/autostart/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-session/repos/testing-x86_64/PKGBUILD (from rev 359706, 
xfce4-session/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-12 00:36:58 UTC (rev 359707)
@@ -0,0 +1,58 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.14.0
+pkgrel=2
+pkgdesc="A session manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'xfconf' 'libsm' 'polkit' 'xorg-iceauth'
+ 'xorg-xinit' 'xorg-xrdb' 'which' 'polkit-gnome' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
+'xfce4-screensaver: for locking screen with xflock4'
+'xscreensaver: for locking screen with xflock4'
+'gnome-screensaver: for locking screen with xflock4'
+'xlockmore: for locking screen with xflock4'
+'slock: for locking screen with xflock4')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+source-system-xinitrc-scripts.patch
+xfce-polkit-gnome-authentication-agent-1.desktop)
+sha256sums=('14fb6db74eb69eb400673856ba307a0e57f577cf77c3561a5910151e3d52043f'
+'6f14d529e4c4f30cd547110bd444cee8dc70c90511a397de18acb6c1fd63ea3e'
+'74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # https://bugzilla.xfce.org/show_bug.cgi?id=15440
+  patch -Np1 -i ../source-system-xinitrc-scripts.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # Provide a default PolicyKit Authentication 

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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Monday, August 12, 2019 @ 00:36:52
  Author: foutrelis
Revision: 359706

upgpkg: xfce4-session 4.14.0-2

Reinstate patch to source scripts in /etc/X11/xinit/xinitrc.d.

Added:
  xfce4-session/trunk/source-system-xinitrc-scripts.patch
Modified:
  xfce4-session/trunk/PKGBUILD

-+
 PKGBUILD|7 ++-
 source-system-xinitrc-scripts.patch |   17 +
 2 files changed, 23 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-12 00:15:19 UTC (rev 359705)
+++ PKGBUILD2019-08-12 00:36:52 UTC (rev 359706)
@@ -3,7 +3,7 @@
 
 pkgname=xfce4-session
 pkgver=4.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A session manager for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;
@@ -19,12 +19,17 @@
 'xlockmore: for locking screen with xflock4'
 'slock: for locking screen with xflock4')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+source-system-xinitrc-scripts.patch
 xfce-polkit-gnome-authentication-agent-1.desktop)
 sha256sums=('14fb6db74eb69eb400673856ba307a0e57f577cf77c3561a5910151e3d52043f'
+'6f14d529e4c4f30cd547110bd444cee8dc70c90511a397de18acb6c1fd63ea3e'
 '74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
+
+  # https://bugzilla.xfce.org/show_bug.cgi?id=15440
+  patch -Np1 -i ../source-system-xinitrc-scripts.patch
 }
 
 build() {

Added: source-system-xinitrc-scripts.patch
===
--- source-system-xinitrc-scripts.patch (rev 0)
+++ source-system-xinitrc-scripts.patch 2019-08-12 00:36:52 UTC (rev 359706)
@@ -0,0 +1,17 @@
+diff -upr xfce4-session-4.14.0.orig/scripts/xinitrc.in.in 
xfce4-session-4.14.0/scripts/xinitrc.in.in
+--- xfce4-session-4.14.0.orig/scripts/xinitrc.in.in2019-08-11 
23:11:06.0 +0300
 xfce4-session-4.14.0/scripts/xinitrc.in.in 2019-08-12 03:28:44.464707715 
+0300
+@@ -83,6 +83,13 @@ if command -v systemctl >/dev/null 2>&1
+   dbus-update-activation-environment --systemd 
XAUTHLOCALHOSTNAME=$XAUTHLOCALHOSTNAME
+ fi
+ 
++# source system xinitrc scripts
++if [ -d /etc/X11/xinit/xinitrc.d ]; then
++  for f in /etc/X11/xinit/xinitrc.d/?*.sh; do
++[ -x "$f" ] && . "$f"
++  done
++  unset f
++fi
+ 
+ # check if we start xfce4-session with ck-launch-session. this is only
+ # required for starting from a console, not a login manager


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:57:06
  Author: foutrelis
Revision: 359682

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-screensaver/repos/staging-x86_64/
  xfce4-screensaver/repos/staging-x86_64/PKGBUILD
(from rev 359681, xfce4-screensaver/trunk/PKGBUILD)

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

Copied: xfce4-screensaver/repos/staging-x86_64/PKGBUILD (from rev 359681, 
xfce4-screensaver/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:57:06 UTC (rev 359682)
@@ -0,0 +1,33 @@
+# Maintainer: Christian Hesse 
+
+pkgname=xfce4-screensaver
+pkgver=0.1.8
+pkgrel=2
+pkgdesc='Xfce Screensaver'
+arch=('x86_64')
+url='https://docs.xfce.org/apps/screensaver/start'
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'dbus-glib' 'python')
+makedepends=('intltool')
+source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('4056045ea5fd3eccfe328b86ae245ee4949b9e3044e42ca29c492c0f4ac860d7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in xfce4-pulseaudio-plugin/repos (2 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:57:02
  Author: foutrelis
Revision: 359681

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-pulseaudio-plugin/repos/staging-x86_64/
  xfce4-pulseaudio-plugin/repos/staging-x86_64/PKGBUILD
(from rev 359680, xfce4-pulseaudio-plugin/trunk/PKGBUILD)

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

Copied: xfce4-pulseaudio-plugin/repos/staging-x86_64/PKGBUILD (from rev 359680, 
xfce4-pulseaudio-plugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:57:02 UTC (rev 359681)
@@ -0,0 +1,50 @@
+# Maintainer: Jan de Groot 
+# Contributor: NicoHood 
+# Contributor: 
+# Contributor: twa022 
+
+pkgname=xfce4-pulseaudio-plugin
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="Pulseaudio plugin for Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
+makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
+optdepends=('pavucontrol: default pulseaudio mixer')
+_commit=b7a76fa7d7176c4cad4dd432a9629f3fa78ed708  # 
tags/xfce4-pulseaudio-plugin-0.4.2^0
+source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^xfce4-pulseaudio-plugin-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--enable-keybinder \
+--enable-libnotify \
+--enable-maintainer-mode
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in xfce4-clipman-plugin/repos (2 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:47
  Author: foutrelis
Revision: 359677

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-clipman-plugin/repos/staging-x86_64/
  xfce4-clipman-plugin/repos/staging-x86_64/PKGBUILD
(from rev 359676, xfce4-clipman-plugin/trunk/PKGBUILD)

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

Copied: xfce4-clipman-plugin/repos/staging-x86_64/PKGBUILD (from rev 359676, 
xfce4-clipman-plugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:47 UTC (rev 359677)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-clipman-plugin
+pkgver=1.4.3
+pkgrel=2
+pkgdesc="A clipboard plugin for the Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxtst' 'qrencode')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('29cdb85efb54bd5c9c04cc695b7c4914d6dff972b9fd969cbfb5504e9c632ad2')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:17
  Author: foutrelis
Revision: 359670

xfconf 4.14 rebuild

Modified:
  xfce4-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:16 UTC (rev 359669)
+++ PKGBUILD2019-08-11 23:56:17 UTC (rev 359670)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-terminal
 pkgver=0.8.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:54
  Author: foutrelis
Revision: 359679

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-notifyd/repos/staging-x86_64/
  xfce4-notifyd/repos/staging-x86_64/PKGBUILD
(from rev 359678, xfce4-notifyd/trunk/PKGBUILD)

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

Copied: xfce4-notifyd/repos/staging-x86_64/PKGBUILD (from rev 359678, 
xfce4-notifyd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:54 UTC (rev 359679)
@@ -0,0 +1,33 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-notifyd
+pkgver=0.4.4
+pkgrel=2
+pkgdesc="Notification daemon for the Xfce desktop"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/applications/xfce4-notifyd;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('libxfce4ui' 'libnotify' 'hicolor-icon-theme')
+makedepends=('intltool' 'python' 'xfce4-panel')
+provides=('notification-daemon')
+source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('090571acf94c423003426cb779fb23e8545c68bab6485563b589c7def8a21b55')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-notes-plugin/repos (2 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:50
  Author: foutrelis
Revision: 359678

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-notes-plugin/repos/staging-x86_64/
  xfce4-notes-plugin/repos/staging-x86_64/PKGBUILD
(from rev 359677, xfce4-notes-plugin/trunk/PKGBUILD)

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

Copied: xfce4-notes-plugin/repos/staging-x86_64/PKGBUILD (from rev 359677, 
xfce4-notes-plugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:50 UTC (rev 359678)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andreas Radke 
+# Contributor: Ben Mazer 
+
+pkgname=xfce4-notes-plugin
+pkgver=1.8.1
+pkgrel=4
+pkgdesc="A notes plugin for the Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libunique' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('07a4c3e71431c24f97d2e270452dd0fa51ff0bdb6219a13a20d0bfa8d9de54b2')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-power-manager/repos (2 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:59
  Author: foutrelis
Revision: 359680

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-power-manager/repos/staging-x86_64/
  xfce4-power-manager/repos/staging-x86_64/PKGBUILD
(from rev 359679, xfce4-power-manager/trunk/PKGBUILD)

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

Copied: xfce4-power-manager/repos/staging-x86_64/PKGBUILD (from rev 359679, 
xfce4-power-manager/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:59 UTC (rev 359680)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-power-manager
+pkgver=1.6.5
+pkgrel=2
+pkgdesc="Power manager for Xfce desktop"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'upower' 'libnotify' 'hicolor-icon-theme')
+optdepends=('xfce4-panel: for the Xfce panel plugin')
+makedepends=('intltool' 'xfce4-panel')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('10adb67899b181ca5fc577fc9bb7a698fb94e42073585f7e2be642c7db127a74')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-network-manager \
+--enable-polkit \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-xkb-plugin/repos (3 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:57:15
  Author: foutrelis
Revision: 359684

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-xkb-plugin/repos/staging-x86_64/
  xfce4-xkb-plugin/repos/staging-x86_64/PKGBUILD
(from rev 359683, xfce4-xkb-plugin/trunk/PKGBUILD)
  xfce4-xkb-plugin/repos/staging-x86_64/xfce4-xkb-plugin.install
(from rev 359683, xfce4-xkb-plugin/trunk/xfce4-xkb-plugin.install)

--+
 PKGBUILD |   38 ++
 xfce4-xkb-plugin.install |   20 
 2 files changed, 58 insertions(+)

Copied: xfce4-xkb-plugin/repos/staging-x86_64/PKGBUILD (from rev 359683, 
xfce4-xkb-plugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:57:15 UTC (rev 359684)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: AndyRTR 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-xkb-plugin
+pkgver=0.8.1
+pkgrel=2
+pkgdesc="Plugin to switch keyboard layouts for the Xfce4 panel"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin;
+license=('custom')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxklavier' 'librsvg' 'libwnck3')
+makedepends=('intltool')
+install=$pkgname.install
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c19ecf126201deb6148741c521124771ad396adc874471512ab5ffe1946567a1')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-xkb-plugin/repos/staging-x86_64/xfce4-xkb-plugin.install (from 
rev 359683, xfce4-xkb-plugin/trunk/xfce4-xkb-plugin.install)
===
--- staging-x86_64/xfce4-xkb-plugin.install (rev 0)
+++ staging-x86_64/xfce4-xkb-plugin.install 2019-08-11 23:57:15 UTC (rev 
359684)
@@ -0,0 +1,20 @@
+post_upgrade() {
+  if (($(vercmp $2 0.7.1-2) < 0)); then
+echo ':: Keyboard layouts are now configured through 
xfce4-keyboard-settings'
+echo '   and managed by xfsettingsd. This plugin now only acts as a layout'
+echo '   indicator and manages per window/application layout preferences.'
+echo
+echo '   You will need to reconfigure the keyboard layouts on your next 
login.'
+  fi
+
+  if (($(vercmp $2 0.8.0-1) < 0)); then
+echo ':: Starting with version 0.8.0, xfce4-xkb-plugin stores its settings'
+echo '   in Xfconf instead of a configuration file. Settings from previous'
+echo '   versions are not migrated over, and the panel plugin itself might'
+echo '   disappear upon restarting the panel.'
+echo
+echo '   You need to re-add the xkb plugin to your panel and reconfigure 
it.'
+  fi
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:35
  Author: foutrelis
Revision: 359674

archrelease: copy trunk to staging-x86_64

Added:
  ristretto/repos/staging-x86_64/
  ristretto/repos/staging-x86_64/PKGBUILD
(from rev 359673, ristretto/trunk/PKGBUILD)

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

Copied: ristretto/repos/staging-x86_64/PKGBUILD (from rev 359673, 
ristretto/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:35 UTC (rev 359674)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Bartłomiej Piotrowski
+# Contributor: AndyRTR 
+# Contributor: Ronald van Haren 
+
+pkgname=ristretto
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='Fast and lightweight picture-viewer for Xfce4'
+arch=('x86_64')
+url='https://docs.xfce.org/apps/ristretto/start'
+license=('GPL')
+depends=('libxfce4ui' 'libexif' 'file')
+makedepends=('intltool')
+optdepends=('librsvg: SVG support'
+'tumbler: thumbnailing support')
+groups=('xfce4-goodies')
+source=("https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('16225dd74245eb6e0f82b9c72c6112f161bb8d8b11f3fc77277b7bc3432d4769')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-debug
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: git.xfce.org/apps/ristretto/plain/NEWS
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:57:10
  Author: foutrelis
Revision: 359683

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-terminal/repos/staging-x86_64/
  xfce4-terminal/repos/staging-x86_64/PKGBUILD
(from rev 359682, xfce4-terminal/trunk/PKGBUILD)

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

Copied: xfce4-terminal/repos/staging-x86_64/PKGBUILD (from rev 359682, 
xfce4-terminal/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:57:10 UTC (rev 359683)
@@ -0,0 +1,42 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.8.8
+pkgrel=2
+pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+source=(https://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('8fba6a60d3a0fee07417ad7c36bf78cc45be1b27f0759e125051aa73f08487fd')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:43
  Author: foutrelis
Revision: 359676

archrelease: copy trunk to staging-x86_64

Added:
  thunar-volman/repos/staging-x86_64/
  thunar-volman/repos/staging-x86_64/PKGBUILD
(from rev 359675, thunar-volman/trunk/PKGBUILD)

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

Copied: thunar-volman/repos/staging-x86_64/PKGBUILD (from rev 359675, 
thunar-volman/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:43 UTC (rev 359676)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Kieslich 
+
+pkgname=thunar-volman
+pkgver=0.9.5
+pkgrel=2
+pkgdesc="Automatic management of removeable devices in Thunar"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman;
+license=('GPL2')
+groups=('xfce4')
+depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7ea7c6693334f2248cf399586af8974dfb7db9aad685ee31ac100e62e19a1837')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:57:19
  Author: foutrelis
Revision: 359685

archrelease: copy trunk to staging-x86_64

Added:
  xfdesktop/repos/staging-x86_64/
  xfdesktop/repos/staging-x86_64/PKGBUILD
(from rev 359684, xfdesktop/trunk/PKGBUILD)

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

Copied: xfdesktop/repos/staging-x86_64/PKGBUILD (from rev 359684, 
xfdesktop/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:57:19 UTC (rev 359685)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfdesktop
+pkgver=4.14.0
+pkgrel=2
+pkgdesc="A desktop manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:39
  Author: foutrelis
Revision: 359675

archrelease: copy trunk to staging-x86_64

Added:
  thunar/repos/staging-x86_64/
  thunar/repos/staging-x86_64/PKGBUILD
(from rev 359674, thunar/trunk/PKGBUILD)

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

Copied: thunar/repos/staging-x86_64/PKGBUILD (from rev 359674, 
thunar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:39 UTC (rev 359675)
@@ -0,0 +1,48 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andrew Simmons 
+
+pkgname=thunar
+pkgver=1.8.9
+pkgrel=2
+pkgdesc="Modern file manager for Xfce"
+arch=('x86_64')
+url="https://docs.xfce.org/xfce/thunar/start;
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
+optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
+'xfce4-panel: for trash applet'
+'tumbler: for thumbnail previews'
+'thunar-volman: manages removable devices'
+'thunar-archive-plugin: create and deflate archives'
+'thunar-media-tags-plugin: view/edit id3/ogg tags')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
+sha256sums=('7a758e7ac03501c520c304f8845353315c954d429b17d591b8eea8b14f1350b9')
+
+prepare() {
+  cd "$srcdir/Thunar-$pkgver"
+}
+
+build() {
+  cd "$srcdir/Thunar-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/Thunar-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:09
  Author: foutrelis
Revision: 359663

xfconf 4.14 rebuild

Modified:
  thunar-volman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:08 UTC (rev 359662)
+++ PKGBUILD2019-08-11 23:56:09 UTC (rev 359663)
@@ -3,7 +3,7 @@
 
 pkgname=thunar-volman
 pkgver=0.9.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Automatic management of removeable devices in Thunar"
 arch=('x86_64')
 url="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:07
  Author: foutrelis
Revision: 359661

xfconf 4.14 rebuild

Modified:
  ristretto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:06 UTC (rev 359660)
+++ PKGBUILD2019-08-11 23:56:07 UTC (rev 359661)
@@ -5,7 +5,7 @@
 
 pkgname=ristretto
 pkgver=0.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and lightweight picture-viewer for Xfce4'
 arch=('x86_64')
 url='https://docs.xfce.org/apps/ristretto/start'


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:20
  Author: foutrelis
Revision: 359672

xfconf 4.14 rebuild

Modified:
  xfdesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:19 UTC (rev 359671)
+++ PKGBUILD2019-08-11 23:56:20 UTC (rev 359672)
@@ -3,7 +3,7 @@
 
 pkgname=xfdesktop
 pkgver=4.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A desktop manager for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:31
  Author: foutrelis
Revision: 359673

archrelease: copy trunk to staging-x86_64

Added:
  mousepad/repos/staging-x86_64/
  mousepad/repos/staging-x86_64/PKGBUILD
(from rev 359672, mousepad/trunk/PKGBUILD)

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

Copied: mousepad/repos/staging-x86_64/PKGBUILD (from rev 359672, 
mousepad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:56:31 UTC (rev 359673)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias [tobias at archlinux.org]
+
+pkgname=mousepad
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="Simple text editor for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfconf' 'gtksourceview3' 'desktop-file-utils')
+makedepends=('intltool' 'perl')
+source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('84c02adfca7f8b33b9466a306ded72fb9f38f93c9edb78660343854c4a3aded7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--enable-gtk3
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-clipman-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:10
  Author: foutrelis
Revision: 359664

xfconf 4.14 rebuild

Modified:
  xfce4-clipman-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:09 UTC (rev 359663)
+++ PKGBUILD2019-08-11 23:56:10 UTC (rev 359664)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-clipman-plugin
 pkgver=1.4.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A clipboard plugin for the Xfce4 panel"
 arch=('x86_64')
 license=('GPL2')


[arch-commits] Commit in xfce4-pulseaudio-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:15
  Author: foutrelis
Revision: 359668

xfconf 4.14 rebuild

Modified:
  xfce4-pulseaudio-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:14 UTC (rev 359667)
+++ PKGBUILD2019-08-11 23:56:15 UTC (rev 359668)
@@ -5,7 +5,7 @@
 
 pkgname=xfce4-pulseaudio-plugin
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Pulseaudio plugin for Xfce4 panel"
 arch=('x86_64')
 license=('GPL2')


[arch-commits] Commit in xfce4-xkb-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:19
  Author: foutrelis
Revision: 359671

xfconf 4.14 rebuild

Modified:
  xfce4-xkb-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:17 UTC (rev 359670)
+++ PKGBUILD2019-08-11 23:56:19 UTC (rev 359671)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-xkb-plugin
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Plugin to switch keyboard layouts for the Xfce4 panel"
 arch=('x86_64')
 url="https://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin;


[arch-commits] Commit in xfce4-notes-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:11
  Author: foutrelis
Revision: 359665

xfconf 4.14 rebuild

Modified:
  xfce4-notes-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:10 UTC (rev 359664)
+++ PKGBUILD2019-08-11 23:56:11 UTC (rev 359665)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-notes-plugin
 pkgver=1.8.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A notes plugin for the Xfce4 panel"
 arch=('x86_64')
 license=('GPL2')


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:06
  Author: foutrelis
Revision: 359660

xfconf 4.14 rebuild

Modified:
  mousepad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:54:37 UTC (rev 359659)
+++ PKGBUILD2019-08-11 23:56:06 UTC (rev 359660)
@@ -3,7 +3,7 @@
 
 pkgname=mousepad
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple text editor for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:08
  Author: foutrelis
Revision: 359662

xfconf 4.14 rebuild

Modified:
  thunar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:07 UTC (rev 359661)
+++ PKGBUILD2019-08-11 23:56:08 UTC (rev 359662)
@@ -3,7 +3,7 @@
 
 pkgname=thunar
 pkgver=1.8.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Modern file manager for Xfce"
 arch=('x86_64')
 url="https://docs.xfce.org/xfce/thunar/start;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:16
  Author: foutrelis
Revision: 359669

xfconf 4.14 rebuild

Modified:
  xfce4-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:15 UTC (rev 359668)
+++ PKGBUILD2019-08-11 23:56:16 UTC (rev 359669)
@@ -2,13 +2,13 @@
 
 pkgname=xfce4-screensaver
 pkgver=0.1.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Xfce Screensaver'
 arch=('x86_64')
 url='https://docs.xfce.org/apps/screensaver/start'
 license=('GPL2')
 groups=('xfce4-goodies')
-depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'python')
+depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'dbus-glib' 'python')
 makedepends=('intltool')
 
source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
 sha256sums=('4056045ea5fd3eccfe328b86ae245ee4949b9e3044e42ca29c492c0f4ac860d7')


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:14
  Author: foutrelis
Revision: 359667

xfconf 4.14 rebuild

Modified:
  xfce4-power-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:12 UTC (rev 359666)
+++ PKGBUILD2019-08-11 23:56:14 UTC (rev 359667)
@@ -3,7 +3,7 @@
 
 pkgname=xfce4-power-manager
 pkgver=1.6.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Power manager for Xfce desktop"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:56:12
  Author: foutrelis
Revision: 359666

xfconf 4.14 rebuild

Modified:
  xfce4-notifyd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:56:11 UTC (rev 359665)
+++ PKGBUILD2019-08-11 23:56:12 UTC (rev 359666)
@@ -3,7 +3,7 @@
 
 pkgname=xfce4-notifyd
 pkgver=0.4.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Notification daemon for the Xfce desktop"
 arch=('x86_64')
 url="https://goodies.xfce.org/projects/applications/xfce4-notifyd;


[arch-commits] Commit in xfce4-session/trunk (5 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:54:33
  Author: foutrelis
Revision: 359658

upgpkg: xfce4-session 4.14.0-1

New upstream release.

Modified:
  xfce4-session/trunk/PKGBUILD
Deleted:
  xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
  xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch
  xfce4-session/trunk/0003-source-system-xinitrc-scripts.patch
  xfce4-session/trunk/0004-screenlockers.patch

---+
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch |   27 ---
 0002-Make-verbose-logging-conditional-Bug-11698.patch |   31 
 0003-source-system-xinitrc-scripts.patch  |   18 
 0004-screenlockers.patch  |   58 
 PKGBUILD  |   33 +
 5 files changed, 6 insertions(+), 161 deletions(-)

Deleted: 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
===
--- 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   2019-08-11 
23:27:11 UTC (rev 359657)
+++ 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   2019-08-11 
23:54:33 UTC (rev 359658)
@@ -1,27 +0,0 @@
-From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras 
-Date: Tue, 24 Mar 2015 10:09:33 +0200
-Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
-

- scripts/startxfce4.in | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
-index d0a74a9..bf3201b 100644
 a/scripts/startxfce4.in
-+++ b/scripts/startxfce4.in
-@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
- then
-   echo "$0: Starting X server"
-   prog=xinit
-+
-+  if test ! "x$XDG_VTNR" = "x"; then
-+SERVERRC="vt$XDG_VTNR $SERVERRC"
-+  fi
- else
-   echo "$0: X server already running on display $DISPLAY"
-   prog=/bin/sh
--- 
-2.3.4
-

Deleted: 0002-Make-verbose-logging-conditional-Bug-11698.patch
===
--- 0002-Make-verbose-logging-conditional-Bug-11698.patch   2019-08-11 
23:27:11 UTC (rev 359657)
+++ 0002-Make-verbose-logging-conditional-Bug-11698.patch   2019-08-11 
23:54:33 UTC (rev 359658)
@@ -1,31 +0,0 @@
-From 26f9ae8df629f02af0773df2ed82db6b85c5b556 Mon Sep 17 00:00:00 2001
-From: Eric Koegel 
-Date: Sat, 28 Mar 2015 16:57:24 +0300
-Subject: [PATCH] Make verbose logging conditional (Bug #11698)
-
-Bug report and patch submitted by Zhihao Yuan
-
-Signed-off-by: Eric Koegel 

- xfce4-session/xfsm-global.h | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/xfce4-session/xfsm-global.h b/xfce4-session/xfsm-global.h
-index d2e0c29..d458712 100644
 a/xfce4-session/xfsm-global.h
-+++ b/xfce4-session/xfsm-global.h
-@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
- #if defined(G_HAVE_ISO_VARARGS)
- 
- #define xfsm_verbose(...)\
--xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
-+G_STMT_START{ \
-+  if (G_UNLIKELY (verbose)) \
-+xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
-+}G_STMT_END
- 
- #else
- 
--- 
-2.13.2
-

Deleted: 0003-source-system-xinitrc-scripts.patch
===
--- 0003-source-system-xinitrc-scripts.patch2019-08-11 23:27:11 UTC (rev 
359657)
+++ 0003-source-system-xinitrc-scripts.patch2019-08-11 23:54:33 UTC (rev 
359658)
@@ -1,18 +0,0 @@
-diff -upr xfce4-session-4.12.1.orig/scripts/xinitrc.in.in 
xfce4-session-4.12.1/scripts/xinitrc.in.in
 xfce4-session-4.12.1.orig/scripts/xinitrc.in.in2015-03-16 
09:29:52.0 +0200
-+++ xfce4-session-4.12.1/scripts/xinitrc.in.in 2017-03-03 04:11:03.591724694 
+0200
-@@ -87,6 +87,14 @@ cat /dev/null $XRESOURCES | xrdb -nocpp
- # load local modmap
- test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap
- 
-+# source system xinitrc scripts
-+if [ -d /etc/X11/xinit/xinitrc.d ]; then
-+for f in /etc/X11/xinit/xinitrc.d/?*.sh; do
-+[ -x "$f" ] && . "$f"
-+done
-+unset f
-+fi
-+
- # run xfce4-session if installed
- if which xfce4-session >/dev/null 2>&1; then
- 

Deleted: 0004-screenlockers.patch
===
--- 0004-screenlockers.patch2019-08-11 23:27:11 UTC (rev 359657)
+++ 0004-screenlockers.patch2019-08-11 23:54:33 UTC (rev 359658)
@@ -1,58 +0,0 @@
-From e940818853582290af21bf38d73ee26143d500ad Mon Sep 17 00:00:00 2001
-From: Simon Steinbeiss 
-Date: Wed, 25 Mar 2015 17:03:02 +0100
-Subject: Make screenlockers configurable through xfconf
-
-Signed-off-by: Eric Koegel 

- scripts/xflock4 | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/scripts/xflock4 b/scripts/xflock4
-index ec4d05d..7d857d3 100644
 a/scripts/xflock4
-+++ b/scripts/xflock4
-@@ -24,8 +24,12 @@
- PATH=/bin:/usr/bin
- export PATH
- 
-+# First test for the 

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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:54:37
  Author: foutrelis
Revision: 359659

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-session/repos/staging-x86_64/
  xfce4-session/repos/staging-x86_64/PKGBUILD
(from rev 359658, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/staging-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 359658, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)

--+
 PKGBUILD |   53 
 xfce-polkit-gnome-authentication-agent-1.desktop |   87 +
 2 files changed, 140 insertions(+)

Copied: xfce4-session/repos/staging-x86_64/PKGBUILD (from rev 359658, 
xfce4-session/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:54:37 UTC (rev 359659)
@@ -0,0 +1,53 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-session
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="A session manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'xfconf' 'libsm' 'polkit' 'xorg-iceauth'
+ 'xorg-xinit' 'xorg-xrdb' 'which' 'polkit-gnome' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring support when GNOME compatibility is 
enabled'
+'xfce4-screensaver: for locking screen with xflock4'
+'xscreensaver: for locking screen with xflock4'
+'gnome-screensaver: for locking screen with xflock4'
+'xlockmore: for locking screen with xflock4'
+'slock: for locking screen with xflock4')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+xfce-polkit-gnome-authentication-agent-1.desktop)
+sha256sums=('14fb6db74eb69eb400673856ba307a0e57f577cf77c3561a5910151e3d52043f'
+'74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # Provide a default PolicyKit Authentication Agent (FS#42569)
+  install -d "$pkgdir/etc/xdg/autostart"
+  cp "$srcdir/xfce-polkit-gnome-authentication-agent-1.desktop" \
+"$pkgdir/etc/xdg/autostart/"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
xfce4-session/repos/staging-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
 (from rev 359658, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)
===
--- staging-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop 
(rev 0)
+++ staging-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop 
2019-08-11 23:54:37 UTC (rev 359659)
@@ -0,0 +1,87 @@
+[Desktop Entry]
+Name=PolicyKit Authentication Agent
+Name[ar]=مدير الاستيثاق PolicyKit
+Name[be]=PolicyKit - аґент аўтэнтыфікацыі
+Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
+Name[ca]=Agent d'autenticació del PolicyKit
+Name[cs]=Ověřovací agent PolicyKit
+Name[da]=Godkendelsesprogrammet PolicyKit
+Name[de]=Legitimationsdienst von PolicyKit
+Name[el]=Πράκτορας πιστοποίησης PolicyKit
+Name[en_GB]=PolicyKit Authentication Agent
+Name[es]=Agente de autenticación de PolicyKit
+Name[eu]=PolicyKit autentifikatzeko agentea
+Name[fi]=PolicytKit-tunnistautumisohjelma
+Name[fr]=Agent d'authentification de PolicyKit
+Name[gl]=Axente de autenticación PolicyKit
+Name[gu]=PolicyKit સત્તાધિકરણ એજન્ટ
+Name[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि
+Name[hu]=PolicyKit hitelesítési ügynök
+Name[it]=Agente di autenticazione per PolicyKit
+Name[ja]=PolicyKit 認証エージェント
+Name[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ
+Name[lt]=PolicyKit tapatybės nustatymo agentas
+Name[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ്
+Name[mr]=PolicyKit ऑथेंटीकेशन एजेंट
+Name[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ
+Name[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ
+Name[pl]=Agent uwierzytelniania PolicyKit
+Name[pt]=Agente de Autenticação PolicyKit
+Name[pt_BR]=Agente de autenticação PolicyKit
+Name[ro]=Agent de autentificare PolicyKit
+Name[sk]=Agent PolicyKit na overovanie totožnosti
+Name[sl]=PolicyKit program overjanja
+Name[sv]=Autentiseringsagent för PolicyKit
+Name[ta]=PolicyKit அங்கீகார முகவர்
+Name[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి
+Name[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit
+Name[uk]=Агент автентифікації PolicyKit
+Name[zh_CN]=PolicyKit 认证代理
+Name[zh_HK]=PolicyKit 驗證代理程式
+Name[zh_TW]=PolicyKit 驗證代理程式
+Comment=PolicyKit Authentication Agent
+Comment[ar]=مدير الاستيثاق PolicyKit
+Comment[be]=PolicyKit - аґент аўтэнтыфікацыі

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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:33:19
  Author: foutrelis
Revision: 498974

xfconf 4.14 rebuild

Modified:
  parole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:56:10 UTC (rev 498973)
+++ PKGBUILD2019-08-11 23:33:19 UTC (rev 498974)
@@ -4,13 +4,14 @@
 
 pkgname=parole
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Modern media player based on the GStreamer framework"
 arch=('x86_64')
 url="https://docs.xfce.org/apps/parole/start;
 license=('GPL')
 groups=('xfce4-goodies')
-depends=('gst-plugins-base' 'gst-plugins-good' 'libnotify' 'libxfce4ui')
+depends=('gst-plugins-base' 'gst-plugins-good' 'libnotify' 'libxfce4ui'
+ 'dbus-glib')
 makedepends=('intltool' 'python')
 optdepends=('gst-libav: Extra media codecs'
'gst-plugins-bad: Extra media codecs'


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:33:26
  Author: foutrelis
Revision: 498975

archrelease: copy trunk to community-staging-x86_64

Added:
  parole/repos/community-staging-x86_64/
  parole/repos/community-staging-x86_64/PKGBUILD
(from rev 498974, parole/trunk/PKGBUILD)

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

Copied: parole/repos/community-staging-x86_64/PKGBUILD (from rev 498974, 
parole/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-11 23:33:26 UTC (rev 498975)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: TDY 
+
+pkgname=parole
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Modern media player based on the GStreamer framework"
+arch=('x86_64')
+url="https://docs.xfce.org/apps/parole/start;
+license=('GPL')
+groups=('xfce4-goodies')
+depends=('gst-plugins-base' 'gst-plugins-good' 'libnotify' 'libxfce4ui'
+ 'dbus-glib')
+makedepends=('intltool' 'python')
+optdepends=('gst-libav: Extra media codecs'
+   'gst-plugins-bad: Extra media codecs'
+   'gst-plugins-ugly: Extra media codecs')
+source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('bff0fc846d0d7b8f435ac5514976f1cd1d82b62dbf1b7d470e253a5b439407da')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|$(datadir)/appdata|$(datadir)/metainfo|' 
data/appdata/Makefile.{am,in}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:27:11
  Author: foutrelis
Revision: 359657

archrelease: copy trunk to staging-x86_64

Added:
  xfwm4/repos/staging-x86_64/
  xfwm4/repos/staging-x86_64/PKGBUILD
(from rev 359656, xfwm4/trunk/PKGBUILD)

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

Copied: xfwm4/repos/staging-x86_64/PKGBUILD (from rev 359656, 
xfwm4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:27:11 UTC (rev 359657)
@@ -0,0 +1,40 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfwm4
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="Xfce's window manager"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
+ 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b4182bf8dc63d092f120a51fcae0eb54b9bd4aa4f8486f47e5a65a108322b615')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-startup-notification \
+--enable-randr \
+--enable-compositor \
+--enable-xsync \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:27:08
  Author: foutrelis
Revision: 359656

upgpkg: xfwm4 4.14.0-1

New upstream release.

Modified:
  xfwm4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:19:58 UTC (rev 359655)
+++ PKGBUILD2019-08-11 23:27:08 UTC (rev 359656)
@@ -2,17 +2,18 @@
 # Contributor: tobias 
 
 pkgname=xfwm4
-pkgver=4.12.5
+pkgver=4.14.0
 pkgrel=1
-pkgdesc="Xfce window manager"
+pkgdesc="Xfce's window manager"
 arch=('x86_64')
 url="https://www.xfce.org/;
 license=('GPL2')
 groups=('xfce4')
-depends=('libxfce4ui' 'libwnck' 'libdrm' 'hicolor-icon-theme')
+depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
+ 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('7775c0221c2d023275e7ed6d85e57d965e5cc1407bb6a05c53cc38d8caca')
+sha256sums=('b4182bf8dc63d092f120a51fcae0eb54b9bd4aa4f8486f47e5a65a108322b615')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:19:58
  Author: foutrelis
Revision: 359655

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-appfinder/repos/staging-x86_64/
  xfce4-appfinder/repos/staging-x86_64/PKGBUILD
(from rev 359654, xfce4-appfinder/trunk/PKGBUILD)

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

Copied: xfce4-appfinder/repos/staging-x86_64/PKGBUILD (from rev 359654, 
xfce4-appfinder/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:19:58 UTC (rev 359655)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: AndyRTR 
+# Contributor: tobias 
+
+pkgname=xfce4-appfinder
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="An application finder for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'garcon' 'xfconf' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7ec175d4954fceb2e76cbfbca76ac4a4f53fe799d097a14117e7de68e88a4d98')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:19:55
  Author: foutrelis
Revision: 359654

upgpkg: xfce4-appfinder 4.14.0-1

New upstream release.

Modified:
  xfce4-appfinder/trunk/PKGBUILD
Deleted:
  xfce4-appfinder/trunk/0001-Use-non-legacy-icon-names.patch

--+
 0001-Use-non-legacy-icon-names.patch |   47 -
 PKGBUILD |   19 +++--
 2 files changed, 5 insertions(+), 61 deletions(-)

Deleted: 0001-Use-non-legacy-icon-names.patch
===
--- 0001-Use-non-legacy-icon-names.patch2019-08-11 23:15:39 UTC (rev 
359653)
+++ 0001-Use-non-legacy-icon-names.patch2019-08-11 23:19:55 UTC (rev 
359654)
@@ -1,47 +0,0 @@
-From 65e9020cb0d507a58e71eb31751d3eca0eb0cd59 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras 
-Date: Thu, 8 Oct 2015 16:50:26 +0300
-Subject: [PATCH] Use non-legacy icon names
-
-gtk-find and gtk-execute are legacy icon names found in the GNOME icon
-theme, but they are not part of the Adwaita icon theme.
-
-In the GNOME icon theme, they map to edit-find and system-run via
-symlinks created by icon-naming-utils. Adwaita doesn't ship these
-symlinks. [1]
-
-[1] https://bugzilla.gnome.org/show_bug.cgi?id=729998

- data/xfce4-appfinder.desktop.in | 2 +-
- data/xfce4-run.desktop.in   | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/data/xfce4-appfinder.desktop.in b/data/xfce4-appfinder.desktop.in
-index c4bd6ca..dc34d21 100644
 a/data/xfce4-appfinder.desktop.in
-+++ b/data/xfce4-appfinder.desktop.in
-@@ -1,7 +1,7 @@
- [Desktop Entry]
- Version=1.0
- Exec=xfce4-appfinder
--Icon=gtk-find
-+Icon=edit-find
- StartupNotify=true
- Terminal=false
- Type=Application
-diff --git a/data/xfce4-run.desktop.in b/data/xfce4-run.desktop.in
-index 9611cd5..a888753 100644
 a/data/xfce4-run.desktop.in
-+++ b/data/xfce4-run.desktop.in
-@@ -2,7 +2,7 @@
- Version=1.0
- Type=Application
- Exec=xfce4-appfinder --collapsed
--Icon=gtk-execute
-+Icon=system-run
- StartupNotify=true
- Terminal=false
- Categories=Utility;X-XFCE;X-Xfce-Toplevel;
--- 
-2.6.1
-

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:15:39 UTC (rev 359653)
+++ PKGBUILD2019-08-11 23:19:55 UTC (rev 359654)
@@ -3,27 +3,18 @@
 # Contributor: tobias 
 
 pkgname=xfce4-appfinder
-pkgver=4.12.0
-pkgrel=5
+pkgver=4.14.0
+pkgrel=1
 pkgdesc="An application finder for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/;
 license=('GPL2')
 groups=('xfce4')
-depends=('libxfce4ui' 'garcon' 'hicolor-icon-theme')
+depends=('libxfce4ui' 'garcon' 'xfconf' 'hicolor-icon-theme')
 makedepends=('intltool')
-replaces=('xfce-utils')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-0001-Use-non-legacy-icon-names.patch)
-sha256sums=('2ad4a58019a76a6b64a816050db25f96854917c2f2e89d6a9df6c18e6c84c567'
-'b829103bf33d6f1ec71e1448e469b1b1df3313f887a27b7479a7cbc67e06643f')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7ec175d4954fceb2e76cbfbca76ac4a4f53fe799d097a14117e7de68e88a4d98')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  patch -Np1 -i ../0001-Use-non-legacy-icon-names.patch
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:15:36
  Author: foutrelis
Revision: 359652

upgpkg: xfce4-panel 4.14.0-1

New upstream release.

Modified:
  xfce4-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:08:21 UTC (rev 359651)
+++ PKGBUILD2019-08-11 23:15:36 UTC (rev 359652)
@@ -2,7 +2,7 @@
 # Contributor: tobias 
 
 pkgname=xfce4-panel
-pkgver=4.12.2
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="Panel for the Xfce desktop environment"
 arch=('x86_64')
@@ -9,11 +9,11 @@
 url="https://www.xfce.org/;
 license=('GPL2')
 groups=('xfce4')
-depends=('exo' 'garcon' 'libxfce4ui' 'libwnck' 'hicolor-icon-theme'
+depends=('exo' 'garcon' 'libxfce4ui' 'xfconf' 'libwnck3' 'hicolor-icon-theme'
  'desktop-file-utils')
-makedepends=('intltool')
+makedepends=('intltool' 'gobject-introspection' 'vala')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('42058abb81b8f87691d3999627447de71c3285bcf055f308aab5cefab2de0ce9')
+sha256sums=('d5f8f3bd7e142139987e5e62cda26135a424baabb5e47aa0c23b4169d0a66ef4')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -25,7 +25,6 @@
 --localstatedir=/var \
 --disable-static \
 --enable-gio-unix \
---enable-gtk3 \
 --disable-debug
   make
 }


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:15:39
  Author: foutrelis
Revision: 359653

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-panel/repos/staging-x86_64/
  xfce4-panel/repos/staging-x86_64/PKGBUILD
(from rev 359652, xfce4-panel/trunk/PKGBUILD)

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

Copied: xfce4-panel/repos/staging-x86_64/PKGBUILD (from rev 359652, 
xfce4-panel/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:15:39 UTC (rev 359653)
@@ -0,0 +1,37 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfce4-panel
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="Panel for the Xfce desktop environment"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('exo' 'garcon' 'libxfce4ui' 'xfconf' 'libwnck3' 'hicolor-icon-theme'
+ 'desktop-file-utils')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('d5f8f3bd7e142139987e5e62cda26135a424baabb5e47aa0c23b4169d0a66ef4')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-gio-unix \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:08:17
  Author: foutrelis
Revision: 359650

upgpkg: xfce4-settings 4.14.0-1

New upstream release.

Modified:
  xfce4-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 23:06:17 UTC (rev 359649)
+++ PKGBUILD2019-08-11 23:08:17 UTC (rev 359650)
@@ -3,20 +3,20 @@
 # Contributor: Corrado Primier 
 
 pkgname=xfce4-settings
-pkgver=4.12.4
-pkgrel=2
-pkgdesc="Settings manager for xfce"
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="Settings manager of the Xfce desktop"
 arch=('x86_64')
 url="https://www.xfce.org/;
 license=('GPL2')
 groups=('xfce4')
-depends=('exo' 'garcon' 'libxfce4ui' 'libnotify' 'libxklavier'
- 'adwaita-icon-theme' 'gnome-themes-standard')
+depends=('exo' 'garcon' 'libxfce4ui' 'xfconf' 'libnotify' 'colord'
+ 'libxklavier' 'adwaita-icon-theme' 'gnome-themes-standard')
 makedepends=('intltool' 'xf86-input-libinput')
 optdepends=('libcanberra: for sound control')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
 default-xsettings-xml.patch)
-sha256sums=('e2a04cad48bf9e951409d0c841829fa3b4ce632cd799082ef82d0506618b6f9b'
+sha256sums=('e03040d623abda0222ad04f226582277a1936507ddfa927ec8e87927debc113c'
 '8e9a6c70ab0ceb5d91b637dc290768f8a47edb5d7b6e2eebc4459dbc4ee040d7')
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:08:21
  Author: foutrelis
Revision: 359651

archrelease: copy trunk to staging-x86_64

Added:
  xfce4-settings/repos/staging-x86_64/
  xfce4-settings/repos/staging-x86_64/PKGBUILD
(from rev 359650, xfce4-settings/trunk/PKGBUILD)
  xfce4-settings/repos/staging-x86_64/default-xsettings-xml.patch
(from rev 359650, xfce4-settings/trunk/default-xsettings-xml.patch)

-+
 PKGBUILD|   52 ++
 default-xsettings-xml.patch |   26 +
 2 files changed, 78 insertions(+)

Copied: xfce4-settings/repos/staging-x86_64/PKGBUILD (from rev 359650, 
xfce4-settings/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:08:21 UTC (rev 359651)
@@ -0,0 +1,52 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Corrado Primier 
+
+pkgname=xfce4-settings
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="Settings manager of the Xfce desktop"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('exo' 'garcon' 'libxfce4ui' 'xfconf' 'libnotify' 'colord'
+ 'libxklavier' 'adwaita-icon-theme' 'gnome-themes-standard')
+makedepends=('intltool' 'xf86-input-libinput')
+optdepends=('libcanberra: for sound control')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+default-xsettings-xml.patch)
+sha256sums=('e03040d623abda0222ad04f226582277a1936507ddfa927ec8e87927debc113c'
+'8e9a6c70ab0ceb5d91b637dc290768f8a47edb5d7b6e2eebc4459dbc4ee040d7')
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Enable GNOME icon theme, Adwaita theme and font hinting by default
+  patch -Np1 -i "$srcdir/default-xsettings-xml.patch"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-static \
+--enable-xrandr \
+--enable-xcursor \
+--enable-libnotify \
+--enable-libxklavier \
+--enable-pluggable-dialogs \
+--enable-sound-settings \
+--disable-upower-glib \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-settings/repos/staging-x86_64/default-xsettings-xml.patch (from 
rev 359650, xfce4-settings/trunk/default-xsettings-xml.patch)
===
--- staging-x86_64/default-xsettings-xml.patch  (rev 0)
+++ staging-x86_64/default-xsettings-xml.patch  2019-08-11 23:08:21 UTC (rev 
359651)
@@ -0,0 +1,26 @@
+diff -upr xfce4-settings-4.12.0.orig/xfsettingsd/xsettings.xml 
xfce4-settings-4.12.0/xfsettingsd/xsettings.xml
+--- xfce4-settings-4.12.0.orig/xfsettingsd/xsettings.xml   2015-02-24 
03:33:11.0 +0200
 xfce4-settings-4.12.0/xfsettingsd/xsettings.xml2015-03-01 
09:52:24.376869688 +0200
+@@ -6,8 +6,8 @@
+ 
+ 
+   
+-
+-
++
++
+ 
+ 
+ 
+@@ -19,9 +19,9 @@
+   
+   
+ 
+-
++
+ 
+-
++
+ 
+ 
+   


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:06:12
  Author: foutrelis
Revision: 359648

xfconf 4.14 rebuild

Modified:
  libxfce4ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:54:43 UTC (rev 359647)
+++ PKGBUILD2019-08-11 23:06:12 UTC (rev 359648)
@@ -3,7 +3,7 @@
 
 pkgname=libxfce4ui
 pkgver=4.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Commonly used Xfce widgets among Xfce applications"
 arch=('x86_64')
 url="https://www.xfce.org/;


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 23:06:17
  Author: foutrelis
Revision: 359649

archrelease: copy trunk to staging-x86_64

Added:
  libxfce4ui/repos/staging-x86_64/
  libxfce4ui/repos/staging-x86_64/PKGBUILD
(from rev 359648, libxfce4ui/trunk/PKGBUILD)

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

Copied: libxfce4ui/repos/staging-x86_64/PKGBUILD (from rev 359648, 
libxfce4ui/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 23:06:17 UTC (rev 359649)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Xavier Devlamynck 
+
+pkgname=libxfce4ui
+pkgver=4.14.1
+pkgrel=2
+pkgdesc="Commonly used Xfce widgets among Xfce applications"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+depends=('libxfce4util' 'gtk2' 'gtk3' 'xfconf' 'libsm' 'startup-notification'
+ 'hicolor-icon-theme')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c449075eaeae4d1138d22eeed3d2ad7032b87fb8878eada9b770325bed87f2da')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--with-vendor-info='Arch Linux'
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 11, 2019 @ 22:56:10
  Author: anatolik
Revision: 498973

archrelease: copy trunk to community-testing-any

Added:
  tt-rss/repos/community-testing-any/
  tt-rss/repos/community-testing-any/PKGBUILD
(from rev 498972, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/community-testing-any/service
(from rev 498972, tt-rss/trunk/service)

--+
 PKGBUILD |   52 
 service  |   12 
 2 files changed, 64 insertions(+)

Copied: tt-rss/repos/community-testing-any/PKGBUILD (from rev 498972, 
tt-rss/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-08-11 22:56:10 UTC (rev 498973)
@@ -0,0 +1,52 @@
+# Maintainer:  Anatol Pomozov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Clément Démoulins 
+# Contributor: David Rosenstrauch 
+# Contributor: Erik Mank 
+
+pkgname=tt-rss
+pkgver=19.2.r209.gb68db2d02
+pkgrel=1
+epoch=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=(any)
+url='https://tt-rss.org'
+license=(GPL)
+backup=(etc/webapps/tt-rss/config.php)
+depends=(php)
+optdepends=('mysql'
+'postgresql'
+'php-gd: for coloured feed badges')
+makedepends=('git')
+_commit=b68db2d02c96cde9b1855b7d95070a3ac49d1f7e
+# periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10=3262
+source=(git+https://git.tt-rss.org/fox/tt-rss.git#commit=$_commit
+service)
+sha1sums=('SKIP'
+  'e3277cd1d717e7803cdc41a0275dcc7c188ef8db')
+
+pkgver() {
+  cd tt-rss
+  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+package() {
+  cd tt-rss
+  _instdir="$pkgdir"/usr/share/webapps/$pkgname
+
+  install -d "$_instdir"
+  cp -ra * "$_instdir/"
+
+  install -Dm640 -g http config.php-dist 
"$pkgdir"/etc/webapps/tt-rss/config.php
+  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
+
+  install -d "$pkgdir"/var/lib/tt-rss
+  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
+  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
+  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
+  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
+  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
+
+  install -Dm644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/tt-rss.service
+}

Copied: tt-rss/repos/community-testing-any/service (from rev 498972, 
tt-rss/trunk/service)
===
--- community-testing-any/service   (rev 0)
+++ community-testing-any/service   2019-08-11 22:56:10 UTC (rev 498973)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Tiny Tiny RSS feeds update daemon
+After=network.target mysqld.service postgresql.service
+
+[Service]
+ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
+User=http
+StandardOutput=null
+StandardError=syslog
+
+[Install]
+WantedBy=multi-user.target


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

2019-08-11 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 11, 2019 @ 22:55:48
  Author: anatolik
Revision: 498972

upgpkg: tt-rss 1:19.2.r209.gb68db2d02-1

Modified:
  tt-rss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 20:44:27 UTC (rev 498971)
+++ PKGBUILD2019-08-11 22:55:48 UTC (rev 498972)
@@ -5,7 +5,7 @@
 # Contributor: Erik Mank 
 
 pkgname=tt-rss
-pkgver=19.2.r139.g4a21642f0
+pkgver=19.2.r209.gb68db2d02
 pkgrel=1
 epoch=1
 pkgdesc='Web-based news feed (RSS/Atom) aggregator'
@@ -18,9 +18,9 @@
 'postgresql'
 'php-gd: for coloured feed badges')
 makedepends=('git')
-_commit=4a21642f0780586819b92f61075afba578f4575e
+_commit=b68db2d02c96cde9b1855b7d95070a3ac49d1f7e
 # periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10=3262
-source=(git+https://tt-rss.org/gitlab/fox/tt-rss.git#commit=$_commit
+source=(git+https://git.tt-rss.org/fox/tt-rss.git#commit=$_commit
 service)
 sha1sums=('SKIP'
   'e3277cd1d717e7803cdc41a0275dcc7c188ef8db')


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:54:39
  Author: foutrelis
Revision: 359646

upgpkg: xfce4-power-manager 1.6.5-1

New upstream release.

Modified:
  xfce4-power-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:49:28 UTC (rev 359645)
+++ PKGBUILD2019-08-11 22:54:39 UTC (rev 359646)
@@ -2,7 +2,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=xfce4-power-manager
-pkgver=1.6.4
+pkgver=1.6.5
 pkgrel=1
 pkgdesc="Power manager for Xfce desktop"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 optdepends=('xfce4-panel: for the Xfce panel plugin')
 makedepends=('intltool' 'xfce4-panel')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('078df808e68f745769b4c34a4719cfe289d4bf89ca2cd4ed4680f2551a00039e')
+sha256sums=('10adb67899b181ca5fc577fc9bb7a698fb94e42073585f7e2be642c7db127a74')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in xfce4-power-manager/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:54:43
  Author: foutrelis
Revision: 359647

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-power-manager/repos/extra-x86_64/PKGBUILD
(from rev 359646, xfce4-power-manager/trunk/PKGBUILD)
Deleted:
  xfce4-power-manager/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 22:54:39 UTC (rev 359646)
+++ PKGBUILD2019-08-11 22:54:43 UTC (rev 359647)
@@ -1,38 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Tobias Kieslich 
-
-pkgname=xfce4-power-manager
-pkgver=1.6.4
-pkgrel=1
-pkgdesc="Power manager for Xfce desktop"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'upower' 'libnotify' 'hicolor-icon-theme')
-optdepends=('xfce4-panel: for the Xfce panel plugin')
-makedepends=('intltool' 'xfce4-panel')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('078df808e68f745769b4c34a4719cfe289d4bf89ca2cd4ed4680f2551a00039e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-network-manager \
---enable-polkit \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-power-manager/repos/extra-x86_64/PKGBUILD (from rev 359646, 
xfce4-power-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 22:54:43 UTC (rev 359647)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-power-manager
+pkgver=1.6.5
+pkgrel=1
+pkgdesc="Power manager for Xfce desktop"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'upower' 'libnotify' 'hicolor-icon-theme')
+optdepends=('xfce4-panel: for the Xfce panel plugin')
+makedepends=('intltool' 'xfce4-panel')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('10adb67899b181ca5fc577fc9bb7a698fb94e42073585f7e2be642c7db127a74')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-network-manager \
+--enable-polkit \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:49:25
  Author: foutrelis
Revision: 359644

upgpkg: xfconf 4.14.1-1

New upstream release.

Modified:
  xfconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:46:00 UTC (rev 359643)
+++ PKGBUILD2019-08-11 22:49:25 UTC (rev 359644)
@@ -2,19 +2,17 @@
 # Contributor: tobias 
 
 pkgname=xfconf
-pkgver=4.12.1
-pkgrel=7
-pkgdesc="A simple client-server configuration storage and query system"
+pkgver=4.14.1
+pkgrel=1
+pkgdesc="Flexible, easy-to-use configuration management system"
 arch=('x86_64')
 url="https://www.xfce.org/;
 license=('GPL2')
 groups=('xfce4')
-depends=('libxfce4util' 'dbus-glib')
-makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig' 'glib-perl'
- 'intltool' 'chrpath')
-options=('!emptydirs')
+depends=('libxfce4util')
+makedepends=('intltool' 'gobject-introspection' 'vala')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('35f48564e5694faa54fdc180cd3268e16fc2352946a89a3c2fc12cbe400ada36')
+sha256sums=('b893e0a329aee00902fec2f0509f56916c9dcc7844e1b1f9e3c7399458290d59')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -25,7 +23,6 @@
 --libexecdir=/usr/lib/xfce4 \
 --localstatedir=/var \
 --disable-static \
---with-perl-options=INSTALLDIRS="vendor" \
 --disable-debug
   make
 }
@@ -32,11 +29,7 @@
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
-
   make DESTDIR="$pkgdir" install
-
-  # Fix insecure rpath, http://bugs.archlinux.org/task/19980
-  find "$pkgdir" -name Xfconf.so -exec chrpath -d {} +
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:49:28
  Author: foutrelis
Revision: 359645

archrelease: copy trunk to staging-x86_64

Added:
  xfconf/repos/staging-x86_64/
  xfconf/repos/staging-x86_64/PKGBUILD
(from rev 359644, xfconf/trunk/PKGBUILD)

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

Copied: xfconf/repos/staging-x86_64/PKGBUILD (from rev 359644, 
xfconf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-11 22:49:28 UTC (rev 359645)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfconf
+pkgver=4.14.1
+pkgrel=1
+pkgdesc="Flexible, easy-to-use configuration management system"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4util')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b893e0a329aee00902fec2f0509f56916c9dcc7844e1b1f9e3c7399458290d59')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:46:00
  Author: foutrelis
Revision: 359643

archrelease: copy trunk to extra-x86_64

Added:
  thunar/repos/extra-x86_64/PKGBUILD
(from rev 359642, thunar/trunk/PKGBUILD)
Deleted:
  thunar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 22:45:56 UTC (rev 359642)
+++ PKGBUILD2019-08-11 22:46:00 UTC (rev 359643)
@@ -1,48 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Andrew Simmons 
-
-pkgname=thunar
-pkgver=1.8.8
-pkgrel=1
-pkgdesc="Modern file manager for Xfce"
-arch=('x86_64')
-url="https://docs.xfce.org/xfce/thunar/start;
-license=('GPL2' 'LGPL2.1')
-groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
- 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'xfce4-panel')
-optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
-'xfce4-panel: for trash applet'
-'tumbler: for thumbnail previews'
-'thunar-volman: manages removable devices'
-'thunar-archive-plugin: create and deflate archives'
-'thunar-media-tags-plugin: view/edit id3/ogg tags')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
-sha256sums=('a03761de4a43c36b9daa6029e6e3263a23c8ce429d78a9f9156ab48efdb2800c')
-
-prepare() {
-  cd "$srcdir/Thunar-$pkgver"
-}
-
-build() {
-  cd "$srcdir/Thunar-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-gio-unix \
---enable-gudev \
---enable-notifications \
---enable-exif \
---enable-pcre \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/Thunar-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thunar/repos/extra-x86_64/PKGBUILD (from rev 359642, 
thunar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 22:46:00 UTC (rev 359643)
@@ -0,0 +1,48 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andrew Simmons 
+
+pkgname=thunar
+pkgver=1.8.9
+pkgrel=1
+pkgdesc="Modern file manager for Xfce"
+arch=('x86_64')
+url="https://docs.xfce.org/xfce/thunar/start;
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
+optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
+'xfce4-panel: for trash applet'
+'tumbler: for thumbnail previews'
+'thunar-volman: manages removable devices'
+'thunar-archive-plugin: create and deflate archives'
+'thunar-media-tags-plugin: view/edit id3/ogg tags')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
+sha256sums=('7a758e7ac03501c520c304f8845353315c954d429b17d591b8eea8b14f1350b9')
+
+prepare() {
+  cd "$srcdir/Thunar-$pkgver"
+}
+
+build() {
+  cd "$srcdir/Thunar-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/Thunar-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:45:56
  Author: foutrelis
Revision: 359642

upgpkg: thunar 1.8.9-1

New upstream release.

Modified:
  thunar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:40:45 UTC (rev 359641)
+++ PKGBUILD2019-08-11 22:45:56 UTC (rev 359642)
@@ -2,7 +2,7 @@
 # Contributor: Andrew Simmons 
 
 pkgname=thunar
-pkgver=1.8.8
+pkgver=1.8.9
 pkgrel=1
 pkgdesc="Modern file manager for Xfce"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 groups=('xfce4')
 depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
  'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'xfce4-panel')
+makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
 optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
 'xfce4-panel: for trash applet'
 'tumbler: for thumbnail previews'
@@ -19,7 +19,7 @@
 'thunar-archive-plugin: create and deflate archives'
 'thunar-media-tags-plugin: view/edit id3/ogg tags')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
-sha256sums=('a03761de4a43c36b9daa6029e6e3263a23c8ce429d78a9f9156ab48efdb2800c')
+sha256sums=('7a758e7ac03501c520c304f8845353315c954d429b17d591b8eea8b14f1350b9')
 
 prepare() {
   cd "$srcdir/Thunar-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:40:45
  Author: foutrelis
Revision: 359641

archrelease: copy trunk to extra-x86_64

Added:
  thunar-volman/repos/extra-x86_64/PKGBUILD
(from rev 359640, thunar-volman/trunk/PKGBUILD)
Deleted:
  thunar-volman/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 22:40:41 UTC (rev 359640)
+++ PKGBUILD2019-08-11 22:40:45 UTC (rev 359641)
@@ -1,35 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Tobias Kieslich 
-
-pkgname=thunar-volman
-pkgver=0.9.4
-pkgrel=1
-pkgdesc="Automatic management of removeable devices in Thunar"
-arch=('x86_64')
-url="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman;
-license=('GPL2')
-groups=('xfce4')
-depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c050f80a976fbb5f862c9c99857c761402ddd7980dc6f00d30002903f72abcb6')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thunar-volman/repos/extra-x86_64/PKGBUILD (from rev 359640, 
thunar-volman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 22:40:45 UTC (rev 359641)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Kieslich 
+
+pkgname=thunar-volman
+pkgver=0.9.5
+pkgrel=1
+pkgdesc="Automatic management of removeable devices in Thunar"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman;
+license=('GPL2')
+groups=('xfce4')
+depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7ea7c6693334f2248cf399586af8974dfb7db9aad685ee31ac100e62e19a1837')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:40:41
  Author: foutrelis
Revision: 359640

upgpkg: thunar-volman 0.9.5-1

New upstream release.

Modified:
  thunar-volman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 22:18:19 UTC (rev 359639)
+++ PKGBUILD2019-08-11 22:40:41 UTC (rev 359640)
@@ -2,7 +2,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=thunar-volman
-pkgver=0.9.4
+pkgver=0.9.5
 pkgrel=1
 pkgdesc="Automatic management of removeable devices in Thunar"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c050f80a976fbb5f862c9c99857c761402ddd7980dc6f00d30002903f72abcb6')
+sha256sums=('7ea7c6693334f2248cf399586af8974dfb7db9aad685ee31ac100e62e19a1837')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:18:19
  Author: foutrelis
Revision: 359639

archrelease: copy trunk to extra-x86_64

Added:
  tumbler/repos/extra-x86_64/PKGBUILD
(from rev 359638, tumbler/trunk/PKGBUILD)
Deleted:
  tumbler/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 22:18:15 UTC (rev 359638)
+++ PKGBUILD2019-08-11 22:18:19 UTC (rev 359639)
@@ -1,46 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Andreas Radke 
-# Contributor: Jan Jezek 
-
-pkgname=tumbler
-pkgver=0.2.6
-pkgrel=1
-pkgdesc="D-Bus service for applications to request thumbnails"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('gdk-pixbuf2')
-makedepends=('intltool' 'python' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
- 'libopenraw' 'freetype2')
-optdepends=('ffmpegthumbnailer: for video thumbnails'
-'poppler-glib: for PDF thumbnails'
-'libgsf: for ODF thumbnails'
-'libopenraw: for RAW thumbnails'
-'freetype2: for font thumbnails')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('74d21781fb0c1e8c11ac803cc5afb469893a0b220721fdc25660c54891a10fa0')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---disable-static \
---disable-debug \
---disable-gstreamer-thumbnailer
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tumbler/repos/extra-x86_64/PKGBUILD (from rev 359638, 
tumbler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 22:18:19 UTC (rev 359639)
@@ -0,0 +1,46 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andreas Radke 
+# Contributor: Jan Jezek 
+
+pkgname=tumbler
+pkgver=0.2.7
+pkgrel=1
+pkgdesc="D-Bus service for applications to request thumbnails"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('gdk-pixbuf2')
+makedepends=('intltool' 'python' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
+ 'libopenraw' 'freetype2')
+optdepends=('ffmpegthumbnailer: for video thumbnails'
+'poppler-glib: for PDF thumbnails'
+'libgsf: for ODF thumbnails'
+'libopenraw: for RAW thumbnails'
+'freetype2: for font thumbnails')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f704c35f16716cbee3c94883cee2a8d865e9cf2535d0e84f57e1c8cce00314e4')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--disable-static \
+--disable-debug \
+--disable-gstreamer-thumbnailer
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 22:18:15
  Author: foutrelis
Revision: 359638

upgpkg: tumbler 0.2.7-1

New upstream release.

Modified:
  tumbler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 21:28:03 UTC (rev 359637)
+++ PKGBUILD2019-08-11 22:18:15 UTC (rev 359638)
@@ -3,7 +3,7 @@
 # Contributor: Jan Jezek 
 
 pkgname=tumbler
-pkgver=0.2.6
+pkgver=0.2.7
 pkgrel=1
 pkgdesc="D-Bus service for applications to request thumbnails"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 'libopenraw: for RAW thumbnails'
 'freetype2: for font thumbnails')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('74d21781fb0c1e8c11ac803cc5afb469893a0b220721fdc25660c54891a10fa0')
+sha256sums=('f704c35f16716cbee3c94883cee2a8d865e9cf2535d0e84f57e1c8cce00314e4')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in xfce4-genmon-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 21:28:00
  Author: foutrelis
Revision: 359636

upgpkg: xfce4-genmon-plugin 4.0.2-1

New upstream release.

Modified:
  xfce4-genmon-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 21:05:56 UTC (rev 359635)
+++ PKGBUILD2019-08-11 21:28:00 UTC (rev 359636)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=xfce4-genmon-plugin
-pkgver=4.0.1
+pkgver=4.0.2
 pkgrel=1
 pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('xfce4-panel')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4c6ce37fbe71094548b44862587c2813da991aeaaecff8e572724dbbec83ab86')
+sha256sums=('256c22526f61aabf43b91b903b976c13e56198657667df443cdb06b31fbf23aa')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in xfce4-genmon-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 21:28:03
  Author: foutrelis
Revision: 359637

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-genmon-plugin/repos/extra-x86_64/PKGBUILD
(from rev 359636, xfce4-genmon-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-genmon-plugin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 21:28:00 UTC (rev 359636)
+++ PKGBUILD2019-08-11 21:28:03 UTC (rev 359637)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: AndyRTR 
-# Contributor: Tobias Kieslich 
-
-pkgname=xfce4-genmon-plugin
-pkgver=4.0.1
-pkgrel=1
-pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin;
-groups=('xfce4-goodies')
-depends=('xfce4-panel')
-makedepends=('intltool')
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4c6ce37fbe71094548b44862587c2813da991aeaaecff8e572724dbbec83ab86')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-genmon-plugin/repos/extra-x86_64/PKGBUILD (from rev 359636, 
xfce4-genmon-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 21:28:03 UTC (rev 359637)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: AndyRTR 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-genmon-plugin
+pkgver=4.0.2
+pkgrel=1
+pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel"
+arch=('x86_64')
+license=('LGPL2.1')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('256c22526f61aabf43b91b903b976c13e56198657667df443cdb06b31fbf23aa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 21:05:56
  Author: foutrelis
Revision: 359635

archrelease: copy trunk to extra-x86_64

Added:
  libxfce4ui/repos/extra-x86_64/PKGBUILD
(from rev 359634, libxfce4ui/trunk/PKGBUILD)
Deleted:
  libxfce4ui/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 21:05:53 UTC (rev 359634)
+++ PKGBUILD2019-08-11 21:05:56 UTC (rev 359635)
@@ -1,36 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Xavier Devlamynck 
-
-pkgname=libxfce4ui
-pkgver=4.13.7
-pkgrel=1
-pkgdesc="Commonly used Xfce widgets among Xfce applications"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-depends=('libxfce4util' 'gtk2' 'gtk3' 'xfconf' 'libsm' 'startup-notification'
- 'hicolor-icon-theme')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b932359b47a5f8bdeae4441728abd19980c1a77f9912bc6cf8a50028b0687b08')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---with-vendor-info='Arch Linux'
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libxfce4ui/repos/extra-x86_64/PKGBUILD (from rev 359634, 
libxfce4ui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 21:05:56 UTC (rev 359635)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Xavier Devlamynck 
+
+pkgname=libxfce4ui
+pkgver=4.14.1
+pkgrel=1
+pkgdesc="Commonly used Xfce widgets among Xfce applications"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+depends=('libxfce4util' 'gtk2' 'gtk3' 'xfconf' 'libsm' 'startup-notification'
+ 'hicolor-icon-theme')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c449075eaeae4d1138d22eeed3d2ad7032b87fb8878eada9b770325bed87f2da')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--with-vendor-info='Arch Linux'
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 21:05:53
  Author: foutrelis
Revision: 359634

upgpkg: libxfce4ui 4.14.1-1

New upstream release.

Modified:
  libxfce4ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 20:46:04 UTC (rev 359633)
+++ PKGBUILD2019-08-11 21:05:53 UTC (rev 359634)
@@ -2,7 +2,7 @@
 # Contributor: Xavier Devlamynck 
 
 pkgname=libxfce4ui
-pkgver=4.13.7
+pkgver=4.14.1
 pkgrel=1
 pkgdesc="Commonly used Xfce widgets among Xfce applications"
 arch=('x86_64')
@@ -12,7 +12,7 @@
  'hicolor-icon-theme')
 makedepends=('intltool' 'gobject-introspection' 'vala')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b932359b47a5f8bdeae4441728abd19980c1a77f9912bc6cf8a50028b0687b08')
+sha256sums=('c449075eaeae4d1138d22eeed3d2ad7032b87fb8878eada9b770325bed87f2da')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 20:45:59
  Author: foutrelis
Revision: 359632

upgpkg: xfdesktop 4.14.0-1

New upstream release.

Modified:
  xfdesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 20:13:31 UTC (rev 359631)
+++ PKGBUILD2019-08-11 20:45:59 UTC (rev 359632)
@@ -2,7 +2,7 @@
 # Contributor: tobias 
 
 pkgname=xfdesktop
-pkgver=4.13.6
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="A desktop manager for Xfce"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f1f65cf31957e4cedd7b11d802f287d7429140c57fc3db7009578cca8398b990')
+sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 20:46:04
  Author: foutrelis
Revision: 359633

archrelease: copy trunk to extra-x86_64

Added:
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 359632, xfdesktop/trunk/PKGBUILD)
Deleted:
  xfdesktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 20:45:59 UTC (rev 359632)
+++ PKGBUILD2019-08-11 20:46:04 UTC (rev 359633)
@@ -1,38 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfdesktop
-pkgver=4.13.6
-pkgrel=1
-pkgdesc="A desktop manager for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f1f65cf31957e4cedd7b11d802f287d7429140c57fc3db7009578cca8398b990')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-x86_64/PKGBUILD (from rev 359632, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 20:46:04 UTC (rev 359633)
@@ -0,0 +1,38 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfdesktop
+pkgver=4.14.0
+pkgrel=1
+pkgdesc="A desktop manager for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('537c8665a4c7e5ff89cd93480d5f1352449ee0ab596fd2f493d3be48caccc37c')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Thore Bödecker via arch-commits
Date: Sunday, August 11, 2019 @ 20:44:19
  Author: foxxx0
Revision: 498970

upgpkg: amavisd-new 2.12.0-1

update to 2.12.0

Modified:
  amavisd-new/trunk/PKGBUILD
Deleted:
  amavisd-new/trunk/fix-dkim-for-originating-mails.patch

--+
 PKGBUILD |   28 +++-
 fix-dkim-for-originating-mails.patch |   10 --
 2 files changed, 11 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 20:08:13 UTC (rev 498969)
+++ PKGBUILD2019-08-11 20:44:19 UTC (rev 498970)
@@ -2,11 +2,12 @@
 # Contributor: Yardena Cohen 
 
 pkgname=amavisd-new
-pkgver=2.11.0
-pkgrel=7
+_pkgname=amavis
+pkgver=2.12.0
+pkgrel=1
 pkgdesc="High-performance interface between mailer (MTA) and content checkers"
 arch=('any')
-url="https://www.ijs.si/software/amavisd/;
+url="https://gitlab.com/amavis/amavis;
 license=('GPL')
 depends=(
 'perl>=5.8.2'
@@ -35,16 +36,14 @@
 'rpmextract: Decoder for: .rpm'
 )
 backup=('etc/amavisd/amavisd.conf' 'etc/amavisd/amavisd-custom.conf')
-source=("https://www.ijs.si/software/amavisd/amavisd-new-${pkgver}.tar.xz;
+source=("${url}/-/archive/v${pkgver}/amavis-v${pkgver}.tar.bz2"
 "amavisd.service"
 "amavisd.sysusers"
-"amavisd.tmpfiles"
-"fix-dkim-for-originating-mails.patch")
-sha512sums=('a33292c976abf54db9475392069658c926e7a6f11a4970bbe353b34b3343388bc83b40eda4729f8efa735a3a6e23fd1ed83487f6f7ccf1e9f0903220e6d26957'
+"amavisd.tmpfiles")
+sha512sums=('f8d2dfb6e7d694c76c0ebca7592a3c85ff9b4911cbe43b3eb6d5002541bf036adfbf47c18df4b10c72bcceee0d8701b8c474e6432c5c136ca25170e42098d844'
 
'5028913479808c02a74682987ed5289d094c1ae2e37874b8c45a6abcc825f2e9d9a46acf9ee010897a5a41e5f9256507cc4d7b9e535c46b03cc06b560908'
 
'8933d8457989c949845c0dabd2bed58680adbf87c920f05a59fd136acdd6da84b4d5b48c4c71dfbc0b047be005a70f665138d6397c1b09e0c746903c1d19fc11'
-
'1320d2416151e3340dc9a40b2b516835a5a4966c7db58268a005ee3f5701790851cdf3a2897c6fb9d4e95847d8c0c170e64f8a668ae999fd143de02f6fae8b52'
-
'0ea12ca769eb58eacbcbb234d1ff56ba06c06149230d7f6614cf52847ba2971fc5179f1a3cc88da114d9f6c1421108b4adfbe1b2d7e0f6be1be4ac70cec21988')
+
'1320d2416151e3340dc9a40b2b516835a5a4966c7db58268a005ee3f5701790851cdf3a2897c6fb9d4e95847d8c0c170e64f8a668ae999fd143de02f6fae8b52')
 
 prepare() {
 sed -i \
@@ -57,20 +56,15 @@
 -e "sX# \\\$pid_file  = \"\\\$MYHOME/var/amavisd.pid\"X\\\$pid_file = 
\"/run/amavis/pid\"Xg" \
 -e "sX# \\\$lock_file = \"\\\$MYHOME/var/amavisd.lock\"X\\\$lock_file 
= \"/run/amavis/lock\"Xg" \
 -e "sX\\\$unix_socketname = 
\"\\\$MYHOME/amavisd.sock\"X\\\$unix_socketname = \"/run/amavis/sock\"Xg" \
-"${srcdir}/${pkgname}-${pkgver}/amavisd.conf"
+"${srcdir}/${_pkgname}-v${pkgver}/amavisd.conf"
 
 sed -i \
 -e "sX\\\$socketname = '/var/amavis/amavisd.sock'X\\\$socketname = 
'/var/spool/amavis/amavisd.sock'Xg" \
-"${srcdir}/${pkgname}-${pkgver}/amavisd-release"
-
-# fix ORIGINATING detection for DKIM signing
-# see: https://bugzilla.redhat.com/show_bug.cgi?id=1364730#c1
-# and: 
https://lists.amavis.org/pipermail/amavis-users/2016-July/004428.html
-patch -p0 "${srcdir}/${pkgname}-${pkgver}/amavisd" < 
fix-dkim-for-originating-mails.patch
+"${srcdir}/${_pkgname}-v${pkgver}/amavisd-release"
 }
 
 package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
+cd "${srcdir}/${_pkgname}-v${pkgver}"
 install -D -m755 JpegTester.pm   
"${pkgdir}/usr/share/perl5/vendor_perl/JpegTester.pm"
 install -D -m644 LDAP.ldif   
"${pkgdir}/etc/openldap/schema/amavisd-new.ldif"
 install -D -m644 LDAP.schema 
"${pkgdir}/etc/openldap/schema/amavisd-new.schema"

Deleted: fix-dkim-for-originating-mails.patch
===
--- fix-dkim-for-originating-mails.patch2019-08-11 20:08:13 UTC (rev 
498969)
+++ fix-dkim-for-originating-mails.patch2019-08-11 20:44:19 UTC (rev 
498970)
@@ -1,10 +0,0 @@
 amavisd.orig   Tue Apr 26 21:24:33 2016
-+++ amavisdFri Jul  1 01:03:15 2016
-@@ -34338,6 +34329,7 @@ sub collect_some_dkim_info($) {
- $sig_ind++;
-   }
-   Amavis::load_policy_bank($_,$msginfo) for @bank_names;
-+  $msginfo->originating(c('originating'));
-   $msginfo->dkim_signatures_valid(\@signatures_valid)  if @signatures_valid;
- # if (ll(5) && $sig_ind > 0) {
- #   # show which header fields are covered by which signature


[arch-commits] Commit in amavisd-new/repos/community-any (9 files)

2019-08-11 Thread Thore Bödecker via arch-commits
Date: Sunday, August 11, 2019 @ 20:44:27
  Author: foxxx0
Revision: 498971

archrelease: copy trunk to community-any

Added:
  amavisd-new/repos/community-any/PKGBUILD
(from rev 498970, amavisd-new/trunk/PKGBUILD)
  amavisd-new/repos/community-any/amavisd.service
(from rev 498970, amavisd-new/trunk/amavisd.service)
  amavisd-new/repos/community-any/amavisd.sysusers
(from rev 498970, amavisd-new/trunk/amavisd.sysusers)
  amavisd-new/repos/community-any/amavisd.tmpfiles
(from rev 498970, amavisd-new/trunk/amavisd.tmpfiles)
Deleted:
  amavisd-new/repos/community-any/PKGBUILD
  amavisd-new/repos/community-any/amavisd.service
  amavisd-new/repos/community-any/amavisd.sysusers
  amavisd-new/repos/community-any/amavisd.tmpfiles
  amavisd-new/repos/community-any/fix-dkim-for-originating-mails.patch

--+
 PKGBUILD |  174 +++--
 amavisd.service  |   34 +++---
 amavisd.sysusers |2 
 amavisd.tmpfiles |4 
 fix-dkim-for-originating-mails.patch |   10 -
 5 files changed, 104 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 20:44:19 UTC (rev 498970)
+++ PKGBUILD2019-08-11 20:44:27 UTC (rev 498971)
@@ -1,90 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Yardena Cohen 
-
-pkgname=amavisd-new
-pkgver=2.11.0
-pkgrel=7
-pkgdesc="High-performance interface between mailer (MTA) and content checkers"
-arch=('any')
-url="https://www.ijs.si/software/amavisd/;
-license=('GPL')
-depends=(
-'perl>=5.8.2'
-'perl-archive-zip>=1.14'
-'perl-convert-tnef'
-'perl-convert-uulib>=1.4-5'
-'perl-mime-tools'
-'perl-mailtools>=1.58'
-'perl-net-libidn'
-'perl-net-server>=0.88'
-'perl-io-socket-inet6'
-'perl-io-stringy'
-'perl-unix-syslog>=1.1-4'
-'perl-mail-dkim>=0.31'
-'perl-berkeleydb>=0.42'
-'bzip2'
-'gzip'
-)
-optdepends=(
-'arj:Decoder for: .arj .exe'
-'lrzip:  Decoder for: .lrz'
-'lz4:Decoder for: .lz4'
-'lzo:Decoder for: .lzo'
-'p7zip:  Decoder for: .7z'
-'unrar:  Decoder for: .rar'
-'rpmextract: Decoder for: .rpm'
-)
-backup=('etc/amavisd/amavisd.conf' 'etc/amavisd/amavisd-custom.conf')
-source=("https://www.ijs.si/software/amavisd/amavisd-new-${pkgver}.tar.xz;
-"amavisd.service"
-"amavisd.sysusers"
-"amavisd.tmpfiles"
-"fix-dkim-for-originating-mails.patch")
-sha512sums=('a33292c976abf54db9475392069658c926e7a6f11a4970bbe353b34b3343388bc83b40eda4729f8efa735a3a6e23fd1ed83487f6f7ccf1e9f0903220e6d26957'
-
'5028913479808c02a74682987ed5289d094c1ae2e37874b8c45a6abcc825f2e9d9a46acf9ee010897a5a41e5f9256507cc4d7b9e535c46b03cc06b560908'
-
'8933d8457989c949845c0dabd2bed58680adbf87c920f05a59fd136acdd6da84b4d5b48c4c71dfbc0b047be005a70f665138d6397c1b09e0c746903c1d19fc11'
-
'1320d2416151e3340dc9a40b2b516835a5a4966c7db58268a005ee3f5701790851cdf3a2897c6fb9d4e95847d8c0c170e64f8a668ae999fd143de02f6fae8b52'
-
'0ea12ca769eb58eacbcbb234d1ff56ba06c06149230d7f6614cf52847ba2971fc5179f1a3cc88da114d9f6c1421108b4adfbe1b2d7e0f6be1be4ac70cec21988')
-
-prepare() {
-sed -i \
--e "s/# @bypass_virus_checks_maps = (1)/@bypass_virus_checks_maps = 
(1)/g" \
--e "s/# @bypass_spam_checks_maps  = (1)/@bypass_spam_checks_maps = 
(1)/g" \
--e "s/\\\$daemon_user  = 'vscan'/\\\$daemon_user  = 'amavis'/g" \
--e "s/\\\$daemon_group = 'vscan'/\\\$daemon_group = 'amavis'/g" \
--e "sX# \\\$MYHOME = '/var/amavis'X\\\$MYHOME = '/var/spool/amavis'Xg" 
\
--e "sX\\\$QUARANTINEDIR = '/var/virusmails'X\\\$QUARANTINEDIR = 
\"\\\$MYHOME/virus\"Xg" \
--e "sX# \\\$pid_file  = \"\\\$MYHOME/var/amavisd.pid\"X\\\$pid_file = 
\"/run/amavis/pid\"Xg" \
--e "sX# \\\$lock_file = \"\\\$MYHOME/var/amavisd.lock\"X\\\$lock_file 
= \"/run/amavis/lock\"Xg" \
--e "sX\\\$unix_socketname = 
\"\\\$MYHOME/amavisd.sock\"X\\\$unix_socketname = \"/run/amavis/sock\"Xg" \
-"${srcdir}/${pkgname}-${pkgver}/amavisd.conf"
-
-sed -i \
--e "sX\\\$socketname = '/var/amavis/amavisd.sock'X\\\$socketname = 
'/var/spool/amavis/amavisd.sock'Xg" \
-"${srcdir}/${pkgname}-${pkgver}/amavisd-release"
-
-# fix ORIGINATING detection for DKIM signing
-# see: https://bugzilla.redhat.com/show_bug.cgi?id=1364730#c1
-# and: 
https://lists.amavis.org/pipermail/amavis-users/2016-July/004428.html
-patch -p0 "${srcdir}/${pkgname}-${pkgver}/amavisd" < 
fix-dkim-for-originating-mails.patch
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-install -D -m755 JpegTester.pm   
"${pkgdir}/usr/share/perl5/vendor_perl/JpegTester.pm"
-install -D -m644 LDAP.ldif   

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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 20:13:31
  Author: foutrelis
Revision: 359631

archrelease: copy trunk to extra-x86_64

Added:
  exo/repos/extra-x86_64/PKGBUILD
(from rev 359630, exo/trunk/PKGBUILD)
Deleted:
  exo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 20:13:27 UTC (rev 359630)
+++ PKGBUILD2019-08-11 20:13:31 UTC (rev 359631)
@@ -1,37 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=exo
-pkgver=0.12.7
-pkgrel=1
-pkgdesc="Application library for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('libxfce4ui' 'perl-uri' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('78d10943b52eb50ce76224ae27c025fb174d39895b31723db90a869d6eeaf1da')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: exo/repos/extra-x86_64/PKGBUILD (from rev 359630, exo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 20:13:31 UTC (rev 359631)
@@ -0,0 +1,37 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=exo
+pkgver=0.12.8
+pkgrel=1
+pkgdesc="Application library for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('libxfce4ui' 'perl-uri' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('3400a2e64aa41ede25bedaca4909bde7ea4f8698d9598d1b80f02a40ac89fcde')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 20:13:27
  Author: foutrelis
Revision: 359630

upgpkg: exo 0.12.8-1

New upstream release.

Modified:
  exo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 19:31:29 UTC (rev 359629)
+++ PKGBUILD2019-08-11 20:13:27 UTC (rev 359630)
@@ -3,7 +3,7 @@
 # Contributor: Aurelien Foret 
 
 pkgname=exo
-pkgver=0.12.7
+pkgver=0.12.8
 pkgrel=1
 pkgdesc="Application library for Xfce"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('libxfce4ui' 'perl-uri' 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('78d10943b52eb50ce76224ae27c025fb174d39895b31723db90a869d6eeaf1da')
+sha256sums=('3400a2e64aa41ede25bedaca4909bde7ea4f8698d9598d1b80f02a40ac89fcde')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Alad Wenter via arch-commits
Date: Sunday, August 11, 2019 @ 20:08:13
  Author: alad
Revision: 498969

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  158 ++--
 sigil.install |   20 +++
 2 files changed, 86 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 20:07:52 UTC (rev 498968)
+++ PKGBUILD2019-08-11 20:08:13 UTC (rev 498969)
@@ -1,82 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Alad Wenter 
-# Contributor: Giovanni Scafora 
-# Contributor: Larry Hajali 
-
-pkgname=sigil
-pkgver=0.9.16
-pkgrel=2
-pkgdesc="WYSIWYG ebook editor"
-arch=('x86_64')
-url="https://sigil-ebook.com/;
-license=('GPL3')
-depends=('hicolor-icon-theme' 'hunspell' 'mathjax' 'minizip' 
'python-css-parser'
- 'python-lxml' 'qt5-webengine')
-makedepends=('qt5-tools' 'cmake')
-optdepends=('hunspell-en_US: for English dictionary support'
-'hyphen-en: for English hyphenation support in plugins'
-'pageedit: external editor to replace BookView'
-'python-html5lib: recommended for plugins'
-'python-chardet: recommended for plugins'
-'python-cssselect: recommended for plugins'
-'python-pillow: recommended for plugins'
-'python-regex: recommended for plugins'
-'python-pyqt5: recommended for plugins'
-'tk: recommended for plugins')
-install=${pkgname}.install
-source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
-
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;
-
"https://github.com/Sigil-Ebook/Sigil/commit/aa4f6549554fb99ad062ce501afe23c51530cbf5.patch;)
-sha256sums=('c28ec5230b9eb708fae795b69777e32eceee94ac26e3ea2838c74ef1e041f638'
-'SKIP'
-'e2df8fb07cfd957ecff31de0a93f90c4a1aaad73f2e6c4df89112bde6e787e5c')
-b2sums=('1e784768cfe98e08ac01f5a9c11ec8254f9a0211f69ee1eb479643cc83677f6fea43745bcb158ea178ac64eec87c2e0062e783af2fe7477e2e5e8faf4db24c46'
-'SKIP'
-
'00e5bda498618d052a8bdda414bab5dc9d58fa54c22c28f7d97d1bc681b1fcbaeb0199e20d1ce4933b7220a1c6ee5ebafeb6f956ea17d4cdc5f5a61833b66faf')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-prepare() {
-cd "${srcdir}"/Sigil-${pkgver}
-
-# devendor css_parser as it's a direct copy of the external package;
-# upstream maintains both and plans to switch soon
-rm -r src/Resource_Files/plugin_launchers/python/css_parser/
-
-# fix lxml 4.4 incompatibility
-patch -p1 -i ../aa4f6549554fb99ad062ce501afe23c51530cbf5.patch
-}
-
-build() {
-mkdir -p "${srcdir}"/Sigil-${pkgver}/build
-cd "${srcdir}"/Sigil-${pkgver}/build
-
-cmake -G "Unix Makefiles" \
--DUSE_SYSTEM_LIBS=1 \
--DSYSTEM_LIBS_REQUIRED=1 \
--DINSTALL_BUNDLED_DICTS=0 \
--DMATHJAX_DIR=/usr/share/mathjax \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON ..
-
-make
-}
-
-package() {
-cd "${srcdir}"/Sigil-${pkgver}/build
-make install DESTDIR="${pkgdir}"
-
-for _pic in 16 32 48 128 256; do
-install -D -m 0644 ../src/Resource_Files/icon/app_icon_${_pic}.png \
-
"${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
-done
-install -Dm644 ../src/Resource_Files/icon/app_icon_128.png \
-"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-# Compile python bytecode
-python -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-python -O -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-}

Copied: sigil/repos/community-x86_64/PKGBUILD (from rev 498968, 
sigil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 20:08:13 UTC (rev 498969)
@@ -0,0 +1,76 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Alad Wenter 
+# Contributor: Giovanni Scafora 
+# Contributor: Larry Hajali 
+
+pkgname=sigil
+pkgver=0.9.17
+pkgrel=1
+pkgdesc="WYSIWYG ebook editor"
+arch=('x86_64')
+url="https://sigil-ebook.com/;
+license=('GPL3')
+depends=('hicolor-icon-theme' 'hunspell' 'mathjax' 'minizip' 
'python-css-parser'
+ 'python-lxml' 'qt5-webengine')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('hunspell-en_US: for English dictionary support'
+'hyphen-en: 

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

2019-08-11 Thread Alad Wenter via arch-commits
Date: Sunday, August 11, 2019 @ 20:07:52
  Author: alad
Revision: 498968

upgpkg: sigil 0.9.17-1

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 18:15:22 UTC (rev 498967)
+++ PKGBUILD2019-08-11 20:07:52 UTC (rev 498968)
@@ -4,8 +4,8 @@
 # Contributor: Larry Hajali 
 
 pkgname=sigil
-pkgver=0.9.16
-pkgrel=2
+pkgver=0.9.17
+pkgrel=1
 pkgdesc="WYSIWYG ebook editor"
 arch=('x86_64')
 url="https://sigil-ebook.com/;
@@ -25,14 +25,11 @@
 'tk: recommended for plugins')
 install=${pkgname}.install
 
source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
-
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;
-
"https://github.com/Sigil-Ebook/Sigil/commit/aa4f6549554fb99ad062ce501afe23c51530cbf5.patch;)
-sha256sums=('c28ec5230b9eb708fae795b69777e32eceee94ac26e3ea2838c74ef1e041f638'
-'SKIP'
-'e2df8fb07cfd957ecff31de0a93f90c4a1aaad73f2e6c4df89112bde6e787e5c')
-b2sums=('1e784768cfe98e08ac01f5a9c11ec8254f9a0211f69ee1eb479643cc83677f6fea43745bcb158ea178ac64eec87c2e0062e783af2fe7477e2e5e8faf4db24c46'
-'SKIP'
-
'00e5bda498618d052a8bdda414bab5dc9d58fa54c22c28f7d97d1bc681b1fcbaeb0199e20d1ce4933b7220a1c6ee5ebafeb6f956ea17d4cdc5f5a61833b66faf')
+
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;)
+sha256sums=('25ef68f979c3daca9b2a869a5ca3919b0a0f965ae2ba176f34ff93a641c3e2b2'
+'SKIP')
+b2sums=('fdba78eb1167e97c4190d7ae6d8d6de8055e0cac0e1105a3bdc1ddacbfa2f8403a293018ec464c72b8024f1ef0c1e9b230ca90586fdbb1d2fb3826e0fd327137'
+'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 
 prepare() {
@@ -41,9 +38,6 @@
 # devendor css_parser as it's a direct copy of the external package;
 # upstream maintains both and plans to switch soon
 rm -r src/Resource_Files/plugin_launchers/python/css_parser/
-
-# fix lxml 4.4 incompatibility
-patch -p1 -i ../aa4f6549554fb99ad062ce501afe23c51530cbf5.patch
 }
 
 build() {


[arch-commits] Commit in xfce4-pulseaudio-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 19:31:26
  Author: foutrelis
Revision: 359628

upgpkg: xfce4-pulseaudio-plugin 0.4.2-1

New upstream release.

Modified:
  xfce4-pulseaudio-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 19:11:05 UTC (rev 359627)
+++ PKGBUILD2019-08-11 19:31:26 UTC (rev 359628)
@@ -4,7 +4,7 @@
 # Contributor: twa022 
 
 pkgname=xfce4-pulseaudio-plugin
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
 pkgdesc="Pulseaudio plugin for Xfce4 panel"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
 makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
 optdepends=('pavucontrol: default pulseaudio mixer')
-_commit=66231b3503a74faea7bdbb925f08d7967016df6a  # 
tags/xfce4-pulseaudio-plugin-0.4.1^0
+_commit=b7a76fa7d7176c4cad4dd432a9629f3fa78ed708  # 
tags/xfce4-pulseaudio-plugin-0.4.2^0
 
source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in xfce4-pulseaudio-plugin/repos/extra-x86_64 (2 files)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 19:31:29
  Author: foutrelis
Revision: 359629

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD
(from rev 359628, xfce4-pulseaudio-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 19:31:26 UTC (rev 359628)
+++ PKGBUILD2019-08-11 19:31:29 UTC (rev 359629)
@@ -1,50 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: NicoHood 
-# Contributor: 
-# Contributor: twa022 
-
-pkgname=xfce4-pulseaudio-plugin
-pkgver=0.4.1
-pkgrel=1
-pkgdesc="Pulseaudio plugin for Xfce4 panel"
-arch=('x86_64')
-license=('GPL2')
-url="https://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
-makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
-optdepends=('pavucontrol: default pulseaudio mixer')
-_commit=66231b3503a74faea7bdbb925f08d7967016df6a  # 
tags/xfce4-pulseaudio-plugin-0.4.1^0
-source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^xfce4-pulseaudio-plugin-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---enable-keybinder \
---enable-libnotify \
---enable-maintainer-mode
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="${pkgdir}" install
-}

Copied: xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD (from rev 359628, 
xfce4-pulseaudio-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 19:31:29 UTC (rev 359629)
@@ -0,0 +1,50 @@
+# Maintainer: Jan de Groot 
+# Contributor: NicoHood 
+# Contributor: 
+# Contributor: twa022 
+
+pkgname=xfce4-pulseaudio-plugin
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="Pulseaudio plugin for Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
+makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
+optdepends=('pavucontrol: default pulseaudio mixer')
+_commit=b7a76fa7d7176c4cad4dd432a9629f3fa78ed708  # 
tags/xfce4-pulseaudio-plugin-0.4.2^0
+source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^xfce4-pulseaudio-plugin-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--enable-keybinder \
+--enable-libnotify \
+--enable-maintainer-mode
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in xfce4-datetime-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 19:11:05
  Author: foutrelis
Revision: 359627

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-datetime-plugin/repos/extra-x86_64/PKGBUILD
(from rev 359626, xfce4-datetime-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-datetime-plugin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 19:11:01 UTC (rev 359626)
+++ PKGBUILD2019-08-11 19:11:05 UTC (rev 359627)
@@ -1,35 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Andreas Radke 
-# Contributor: Aurelien Foret 
-
-pkgname=xfce4-datetime-plugin
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="A date and time display plugin for the Xfce panel"
-arch=('x86_64')
-license=('GPL2')
-url="https://goodies.xfce.org/projects/panel-plugins/xfce4-datetime-plugin;
-groups=('xfce4-goodies')
-depends=('xfce4-panel')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('e0c7321346ded2539c4688c593f650696ed0ddca0a5f9d4e404d0e7fc42ae256')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-datetime-plugin/repos/extra-x86_64/PKGBUILD (from rev 359626, 
xfce4-datetime-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 19:11:05 UTC (rev 359627)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andreas Radke 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-datetime-plugin
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A date and time display plugin for the Xfce panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-datetime-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('cd358bc2ff0707b8ef1504396a19b0a27f802c2ec7bceb5cebe2c7baf6adebd4')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-datetime-plugin/trunk (PKGBUILD)

2019-08-11 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 11, 2019 @ 19:11:01
  Author: foutrelis
Revision: 359626

upgpkg: xfce4-datetime-plugin 0.8.0-1

New upstream release.

Modified:
  xfce4-datetime-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 18:50:58 UTC (rev 359625)
+++ PKGBUILD2019-08-11 19:11:01 UTC (rev 359626)
@@ -3,7 +3,7 @@
 # Contributor: Aurelien Foret 
 
 pkgname=xfce4-datetime-plugin
-pkgver=0.7.1
+pkgver=0.8.0
 pkgrel=1
 pkgdesc="A date and time display plugin for the Xfce panel"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('xfce4-panel')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('e0c7321346ded2539c4688c593f650696ed0ddca0a5f9d4e404d0e7fc42ae256')
+sha256sums=('cd358bc2ff0707b8ef1504396a19b0a27f802c2ec7bceb5cebe2c7baf6adebd4')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Christian Hesse via arch-commits
Date: Sunday, August 11, 2019 @ 18:50:50
  Author: eworm
Revision: 359624

upgpkg: xfce4-screensaver 0.1.8-1

new upstream release

Modified:
  xfce4-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 17:39:22 UTC (rev 359623)
+++ PKGBUILD2019-08-11 18:50:50 UTC (rev 359624)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=xfce4-screensaver
-pkgver=0.1.7
+pkgver=0.1.8
 pkgrel=1
 pkgdesc='Xfce Screensaver'
 arch=('x86_64')
@@ -8,10 +8,10 @@
 url='https://docs.xfce.org/apps/screensaver/start'
 license=('GPL2')
 groups=('xfce4-goodies')
-depends=('libxss' 'libxklavier' 'garcon' 'python')
+depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'python')
 makedepends=('intltool')
 
source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
-sha256sums=('bab8ec0b866168cc5f48e0ab128c7b295770d67177b305f6c8d13ca57da3bc17')
+sha256sums=('4056045ea5fd3eccfe328b86ae245ee4949b9e3044e42ca29c492c0f4ac860d7')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2019-08-11 Thread Christian Hesse via arch-commits
Date: Sunday, August 11, 2019 @ 18:50:58
  Author: eworm
Revision: 359625

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-screensaver/repos/extra-x86_64/PKGBUILD
(from rev 359624, xfce4-screensaver/trunk/PKGBUILD)
Deleted:
  xfce4-screensaver/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 18:50:50 UTC (rev 359624)
+++ PKGBUILD2019-08-11 18:50:58 UTC (rev 359625)
@@ -1,33 +0,0 @@
-# Maintainer: Christian Hesse 
-
-pkgname=xfce4-screensaver
-pkgver=0.1.7
-pkgrel=1
-pkgdesc='Xfce Screensaver'
-arch=('x86_64')
-url='https://goodies.xfce.org/projects/applications/start'
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('libxss' 'libxklavier' 'garcon' 'python')
-makedepends=('intltool')
-source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
-sha256sums=('bab8ec0b866168cc5f48e0ab128c7b295770d67177b305f6c8d13ca57da3bc17')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: xfce4-screensaver/repos/extra-x86_64/PKGBUILD (from rev 359624, 
xfce4-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 18:50:58 UTC (rev 359625)
@@ -0,0 +1,33 @@
+# Maintainer: Christian Hesse 
+
+pkgname=xfce4-screensaver
+pkgver=0.1.8
+pkgrel=1
+pkgdesc='Xfce Screensaver'
+arch=('x86_64')
+url='https://docs.xfce.org/apps/screensaver/start'
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'python')
+makedepends=('intltool')
+source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('4056045ea5fd3eccfe328b86ae245ee4949b9e3044e42ca29c492c0f4ac860d7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-11 Thread Florian Pritz via arch-commits
Date: Sunday, August 11, 2019 @ 18:15:22
  Author: bluewind
Revision: 498967

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 18:15:19 UTC (rev 498966)
+++ PKGBUILD2019-08-11 18:15:22 UTC (rev 498967)
@@ -1,26 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=python-mysqlclient
-_libname=${pkgname/python-/}
-pkgver=1.4.3
-pkgrel=1
-pkgdesc="Fork of MySQL-python with support for Python 3"
-arch=('x86_64')
-url="https://github.com/PyMySQL/mysqlclient-python;
-license=('GPL')
-depends=('python' 'mariadb-libs')
-makedepends=('mariadb' 'python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz;)
-
-build() {
-cd "$srcdir"/$_libname-$pkgver
-python setup.py build
-}
-
-package() {
-cd "$srcdir"/$_libname-$pkgver
-python setup.py install -O1 --skip-build --root="$pkgdir"
-}
-
-sha256sums=('0d3eeb97534c9f42e9b65bd35c1a35fadc2f6d7ea5d9fdbda5339a569156344b')

Copied: python-mysqlclient/repos/community-x86_64/PKGBUILD (from rev 498966, 
python-mysqlclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 18:15:22 UTC (rev 498967)
@@ -0,0 +1,26 @@
+# Maintainer: Florian Pritz 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=python-mysqlclient
+_libname=${pkgname/python-/}
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="Fork of MySQL-python with support for Python 3"
+arch=('x86_64')
+url="https://github.com/PyMySQL/mysqlclient-python;
+license=('GPL')
+depends=('python' 'mariadb-libs')
+makedepends=('mariadb' 'python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz;)
+
+build() {
+cd "$srcdir"/$_libname-$pkgver
+python setup.py build
+}
+
+package() {
+cd "$srcdir"/$_libname-$pkgver
+python setup.py install -O1 --skip-build --root="$pkgdir"
+}
+
+sha256sums=('9c737cc55a5dc8dd3583a942d5a9b21be58d16f00f5fefca4e575e7d9682e98c')


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

2019-08-11 Thread Florian Pritz via arch-commits
Date: Sunday, August 11, 2019 @ 18:15:19
  Author: bluewind
Revision: 498966

upgpkg: python-mysqlclient 1.4.4-1

upstream update

Modified:
  python-mysqlclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 17:46:54 UTC (rev 498965)
+++ PKGBUILD2019-08-11 18:15:19 UTC (rev 498966)
@@ -3,7 +3,7 @@
 
 pkgname=python-mysqlclient
 _libname=${pkgname/python-/}
-pkgver=1.4.3
+pkgver=1.4.4
 pkgrel=1
 pkgdesc="Fork of MySQL-python with support for Python 3"
 arch=('x86_64')
@@ -23,4 +23,4 @@
 python setup.py install -O1 --skip-build --root="$pkgdir"
 }
 
-sha256sums=('0d3eeb97534c9f42e9b65bd35c1a35fadc2f6d7ea5d9fdbda5339a569156344b')
+sha256sums=('9c737cc55a5dc8dd3583a942d5a9b21be58d16f00f5fefca4e575e7d9682e98c')


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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:46:54
  Author: demize
Revision: 498965

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 17:46:51 UTC (rev 498964)
+++ PKGBUILD2019-08-11 17:46:54 UTC (rev 498965)
@@ -1,76 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgbase=python-pysaml2
-pkgname=(python-pysaml2 python2-pysaml2)
-pkgver=4.6.5
-pkgrel=1
-
-pkgdesc='Python implementation of SAML Version 2'
-url='https://pypi.python.org/pypi/pysaml2'
-arch=('any')
-license=('Apache')
-
-makedepends=('python-setuptools'
- 'python2-setuptools')
-
-source=("https://pypi.org/packages/source/p/pysaml2/pysaml2-$pkgver.tar.gz;)
-
-md5sums=('fdbb0196d778808c531677c9c978af31')
-
-prepare() {
-   cp -a pysaml2-$pkgver{,-python2}
-}
-
-build() {
-   cd "$srcdir"/pysaml2-$pkgver
-   python setup.py build
-
-   cd "$srcdir"/pysaml2-$pkgver-python2
-   python2 setup.py build
-}
-
-check() {
-   cd "$srcdir"/pysaml2-$pkgver
-   python setup.py test
-
-   cd "$srcdir"/pysaml2-$pkgver-python2
-   python setup.py test
-}
-
-package_python-pysaml2() {
-   depends=('python'
-'python-future'
-'python-requests'
-'python-zope-interface'
-'python-pycryptodomex'
-'python-pytz'
-'python-pyopenssl'
-'python-dateutil'
-'python-six'
-'python-defusedxml')
-
-   cd pysaml2-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-pysaml2() {
-   depends=('python2'
-'python2-future'
-'python2-requests'
-'python2-zope-interface'
-'python2-pycryptodomex'
-'python2-pytz'
-'python2-pyopenssl'
-'python2-dateutil'
-'python2-six'
-'python2-defusedxml')
-
-   cd pysaml2-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-   # rename all executables
-   find "$pkgdir"/usr/bin -type f -exec mv {} {}2 \;
-}
-
-# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :

Copied: python-pysaml2/repos/community-any/PKGBUILD (from rev 498964, 
python-pysaml2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 17:46:54 UTC (rev 498965)
@@ -0,0 +1,44 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pysaml2
+pkgver=4.8.0
+pkgrel=1
+
+pkgdesc='Python implementation of SAML Version 2'
+url='https://pypi.python.org/pypi/pysaml2'
+arch=('any')
+license=('Apache')
+
+depends=('python'
+ 'python-future'
+ 'python-requests'
+ 'python-zope-interface'
+ 'python-pycryptodomex'
+ 'python-pytz'
+ 'python-pyopenssl'
+ 'python-dateutil'
+ 'python-six'
+ 'python-defusedxml')
+makedepends=('python-setuptools')
+
+source=("https://pypi.org/packages/source/p/pysaml2/pysaml2-$pkgver.tar.gz;)
+
+md5sums=('1c8506f7e2669cdf2fac894320a9e880')
+
+build() {
+   cd "$srcdir"/pysaml2-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd "$srcdir"/pysaml2-$pkgver
+   python setup.py test
+}
+
+package() {
+   cd pysaml2-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:46:51
  Author: demize
Revision: 498964

upgpkg: python-pysaml2 4.8.0-1

Modified:
  python-pysaml2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 17:40:17 UTC (rev 498963)
+++ PKGBUILD2019-08-11 17:46:51 UTC (rev 498964)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 # Contributor: Ivan Shapovalov 
 
-pkgbase=python-pysaml2
-pkgver=4.6.5
+pkgname=python-pysaml2
+pkgver=4.8.0
 pkgrel=1
 
 pkgdesc='Python implementation of SAML Version 2'
@@ -24,7 +24,7 @@
 
 source=("https://pypi.org/packages/source/p/pysaml2/pysaml2-$pkgver.tar.gz;)
 
-md5sums=('fdbb0196d778808c531677c9c978af31')
+md5sums=('1c8506f7e2669cdf2fac894320a9e880')
 
 build() {
cd "$srcdir"/pysaml2-$pkgver


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

2019-08-11 Thread Jonathan Steel via arch-commits
Date: Sunday, August 11, 2019 @ 17:40:17
  Author: jsteel
Revision: 498963

Todo List: Use HTTPS instead of HTTP in URLs

Modified:
  shhmsg/trunk/PKGBUILD
  shhopt/trunk/PKGBUILD

---+
 shhmsg/trunk/PKGBUILD |2 +-
 shhopt/trunk/PKGBUILD |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: shhmsg/trunk/PKGBUILD
===
--- shhmsg/trunk/PKGBUILD   2019-08-11 17:29:54 UTC (rev 498962)
+++ shhmsg/trunk/PKGBUILD   2019-08-11 17:40:17 UTC (rev 498963)
@@ -6,7 +6,7 @@
 pkgrel=3
 pkgdesc="Library for displaying messages"
 arch=('x86_64')
-url="http://shh.thathost.com/pub-unix;
+url="https://shh.thathost.com/pub-unix;
 license=('PerlArtistic')
 options=('staticlibs')
 source=($url/files/$pkgname-$pkgver.tar.gz)

Modified: shhopt/trunk/PKGBUILD
===
--- shhopt/trunk/PKGBUILD   2019-08-11 17:29:54 UTC (rev 498962)
+++ shhopt/trunk/PKGBUILD   2019-08-11 17:40:17 UTC (rev 498963)
@@ -6,7 +6,7 @@
 pkgrel=4
 pkgdesc="Library for parsing command line options"
 arch=('x86_64')
-url="http://shh.thathost.com/pub-unix;
+url="https://shh.thathost.com/pub-unix;
 license=('PerlArtistic')
 options=('staticlibs')
 source=($url/files/$pkgname-$pkgver.tar.gz)


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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:39:22
  Author: demize
Revision: 359623

archrelease: copy trunk to testing-x86_64

Added:
  prometheus/repos/testing-x86_64/
  prometheus/repos/testing-x86_64/PKGBUILD
(from rev 359622, prometheus/trunk/PKGBUILD)
  prometheus/repos/testing-x86_64/prometheus.service
(from rev 359622, prometheus/trunk/prometheus.service)
  prometheus/repos/testing-x86_64/prometheus.sysusers
(from rev 359622, prometheus/trunk/prometheus.sysusers)

-+
 PKGBUILD|   71 ++
 prometheus.service  |   17 +++
 prometheus.sysusers |1 
 3 files changed, 89 insertions(+)

Copied: prometheus/repos/testing-x86_64/PKGBUILD (from rev 359622, 
prometheus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-11 17:39:22 UTC (rev 359623)
@@ -0,0 +1,71 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus
+pkgver=2.11.1
+pkgrel=1
+
+pkgdesc='An open-source systems monitoring and alerting toolkit'
+url='https://prometheus.io'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go-pie' 'git' 'bzr')
+
+backup=('etc/prometheus/prometheus.yml')
+
+source=("https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz;
+prometheus.service
+prometheus.sysusers)
+
+sha256sums=('180ce60faae413308db6bb21d83104ed345797a7a3998966869e564717b73347'
+'e3f742c3e6eca7d4e0e6d190d88cf71692ca8810a77ef66831e450cb8e0a84a7'
+'2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f')
+
+build() {
+  cd prometheus-$pkgver
+
+  LDFLAGS="-extldflags $LDFLAGS \
+-X github.com/prometheus/common/version.Version=$pkgver \
+-X github.com/prometheus/common/version.Revision=$pkgver \
+-X github.com/prometheus/common/version.Branch=tarball \
+-X github.com/prometheus/common/version.BuildUser=someone@builder \
+-X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
+
+  go build \
+-gcflags "all=-trimpath=$PWD" \
+-asmflags "all=-trimpath=$PWD" \
+-ldflags "$LDFLAGS" \
+./cmd/prometheus
+  go build \
+-gcflags "all=-trimpath=$PWD" \
+-asmflags "all=-trimpath=$PWD" \
+-ldflags "$LDFLAGS" \
+./cmd/promtool
+}
+
+check() {
+  cd prometheus-$pkgver
+
+  go test ./...
+}
+
+package() {
+  install -Dm644 prometheus.service 
"$pkgdir"/usr/lib/systemd/system/prometheus.service
+  install -Dm644 prometheus.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus.conf
+
+  cd prometheus-$pkgver
+
+  install -Dm755 -t "$pkgdir"/usr/bin prometheus promtool
+  install -Dm640 -g210 -t "$pkgdir"/etc/prometheus 
documentation/examples/prometheus.yml
+  install -dm755 -o210 -g210 "$pkgdir"/var/lib/prometheus
+
+  # Web
+  install -dm755 "$pkgdir"/usr/share/prometheus/
+  cp -R web/ui "$pkgdir"/usr/share/prometheus/web
+
+  # Examples
+  install -Dm644 -t "$pkgdir"/usr/share/doc/prometheus/examples 
documentation/examples/prometheus*.yml
+  cp -R consoles console_libraries "$pkgdir"/usr/share/doc/prometheus/examples
+
+}

Copied: prometheus/repos/testing-x86_64/prometheus.service (from rev 359622, 
prometheus/trunk/prometheus.service)
===
--- testing-x86_64/prometheus.service   (rev 0)
+++ testing-x86_64/prometheus.service   2019-08-11 17:39:22 UTC (rev 359623)
@@ -0,0 +1,17 @@
+[Unit]
+Description=Prometheus service
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+User=prometheus
+Group=prometheus
+Restart=on-failure
+ExecStart=/usr/bin/prometheus --config.file=/etc/prometheus/prometheus.yml 
--storage.tsdb.path=/var/lib/prometheus/data
+ExecReload=/bin/kill -HUP $MAINPID
+NoNewPrivileges=true
+ProtectHome=true
+ProtectSystem=full
+
+[Install]
+WantedBy=multi-user.target

Copied: prometheus/repos/testing-x86_64/prometheus.sysusers (from rev 359622, 
prometheus/trunk/prometheus.sysusers)
===
--- testing-x86_64/prometheus.sysusers  (rev 0)
+++ testing-x86_64/prometheus.sysusers  2019-08-11 17:39:22 UTC (rev 359623)
@@ -0,0 +1 @@
+u prometheus 210 "Prometheus dedicated user"


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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:31:06
  Author: demize
Revision: 359622

upgpkg: prometheus 2.11.1-1

Modified:
  prometheus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 17:28:52 UTC (rev 359621)
+++ PKGBUILD2019-08-11 17:31:06 UTC (rev 359622)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=prometheus
-pkgver=2.10.0
+pkgver=2.11.1
 pkgrel=1
 
 pkgdesc='An open-source systems monitoring and alerting toolkit'
@@ -18,7 +18,7 @@
 prometheus.service
 prometheus.sysusers)
 
-sha256sums=('0362f4aa2fb44cc2c572df140da742bdf99fe9f338157a83f6634694fd693000'
+sha256sums=('180ce60faae413308db6bb21d83104ed345797a7a3998966869e564717b73347'
 'e3f742c3e6eca7d4e0e6d190d88cf71692ca8810a77ef66831e450cb8e0a84a7'
 '2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f')
 


[arch-commits] Commit in parallel/repos/community-any (6 files)

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:29:54
  Author: demize
Revision: 498962

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/0001-Remove-citation-things.patch
(from rev 498961, parallel/trunk/0001-Remove-citation-things.patch)
  parallel/repos/community-any/0002-Remove-GNU-branding.patch
(from rev 498961, parallel/trunk/0002-Remove-GNU-branding.patch)
  parallel/repos/community-any/PKGBUILD
(from rev 498961, parallel/trunk/PKGBUILD)
Deleted:
  parallel/repos/community-any/0001-Remove-citation-things.patch
  parallel/repos/community-any/0002-Remove-GNU-branding.patch
  parallel/repos/community-any/PKGBUILD

---+
 0001-Remove-citation-things.patch |  586 ++--
 0002-Remove-GNU-branding.patch|  330 ++--
 PKGBUILD  |   80 ++--
 3 files changed, 498 insertions(+), 498 deletions(-)

Deleted: 0001-Remove-citation-things.patch
===
--- 0001-Remove-citation-things.patch   2019-08-11 17:29:50 UTC (rev 498961)
+++ 0001-Remove-citation-things.patch   2019-08-11 17:29:54 UTC (rev 498962)
@@ -1,293 +0,0 @@
-From 67ad2dff4bdc73012a8724f0fc439eeefbaaf768 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Fri, 22 Mar 2019 19:03:41 +0100
-Subject: [PATCH 1/2] Remove citation things
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Johannes Löthberg 

- src/parallel | 232 +--
- 1 file changed, 1 insertion(+), 231 deletions(-)
-
-diff --git a/src/parallel b/src/parallel
-index f41a17d..b7af99c 100755
 a/src/parallel
-+++ b/src/parallel
-@@ -1206,8 +1206,6 @@ sub options_hash() {
-"gnu" => \$opt::gnu,
-"link|xapply" => \$opt::link,
-"linkinputsource|xapplyinputsource=i" => \@opt::linkinputsource,
--   # Before changing this line, please read
-- # 
https://www.gnu.org/software/parallel/parallel_design.html#Citation-notice
-"bibtex|citation" => \$opt::citation,
-"wc|willcite|will-cite|nn|nonotice|no-notice" => \$opt::willcite,
-# Termination and retries
-@@ -1312,12 +1310,6 @@ sub parse_options(@) {
- my @argv_before = @ARGV;
- @ARGV = read_options();
- 
--# Before changing this line, please read
--# 
https://www.gnu.org/software/parallel/parallel_design.html#Citation-notice
--if(defined $opt::citation) {
--  citation(\@argv_before,\@ARGV);
--  wait_and_exit(0);
--}
- # no-* overrides *
- if($opt::nokeeporder) { $opt::keeporder = undef; }
- 
-@@ -1544,73 +1536,6 @@ sub parse_options(@) {
- if(defined $opt::eta) { $opt::progress = $opt::eta; }
- if(defined $opt::bar) { $opt::progress = $opt::bar; }
- 
--# Funding a free software project is hard. GNU Parallel is no
--# exception. On top of that it seems the less visible a project
--# is, the harder it is to get funding. And the nature of GNU
--# Parallel is that it will never be seen by "the guy with the
--# checkbook", but only by the people doing the actual work.
--#
--# This problem has been covered by others - though no solution has
--# been found:
--# https://www.slideshare.net/NadiaEghbal/consider-the-maintainer
--# https://www.numfocus.org/blog/why-is-numpy-only-now-getting-funded/
--#
--# If you want GNU Parallel to be maintained in the future, and not
--# just wither away like so many other free software tools, you
--# need to help finance the development.
--#
--# The citation notice is a simple way of doing so, as citations
--# makes it possible to me to get a job where I can maintain GNU
--# Parallel as part of the job.
--#
--# This means you can help financing development
--#
--#   WITHOUT PAYING A SINGLE CENT!
--#
--# Before implementing the citation notice it was discussed with
--# the users:
--# https://lists.gnu.org/archive/html/parallel/2013-11/msg6.html
--#
--# Having to spend 10 seconds on running 'parallel --citation' once
--# is no doubt not an ideal solution, but no one has so far come up
--# with an ideal solution - neither for funding GNU Parallel nor
--# other free software.
--#
--# If you believe you have the perfect solution, you should try it
--# out, and if it works, you should post it on the email
--# list. Ideas that will cost work and which have not been tested
--# are, however, unlikely to be prioritized.
--#
--# Please note that GPL version 3 gives you the right to fork GNU
--# Parallel under a new name, but it does not give you the right to
--# distribute modified copies with the citation notice disabled in
--# a way where the software can be confused with GNU Parallel. To
--# do that you need to be the owner of the 

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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:29:50
  Author: demize
Revision: 498961

upgpkg: parallel 20190722-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 17:28:33 UTC (rev 498960)
+++ PKGBUILD2019-08-11 17:29:50 UTC (rev 498961)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons 
 
 pkgname=parallel
-pkgver=20190422
+pkgver=20190722
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -14,7 +14,7 @@
 source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig}
 0001-Remove-citation-things.patch
 0002-Remove-GNU-branding.patch)
-sha1sums=('921e0469fe655ca3f583d836b7d614c8cbebfad8'
+sha1sums=('d07817630a0f64e2267fb8aa7ade71ea9cf20f25'
   'SKIP'
   '550f849763d158146931609a1ba9c480cb00fe7e'
   'c412f8e040283a00c58e44b89fecfe7daa54ea2a')


[arch-commits] Commit in python-prometheus_client/repos/extra-any (PKGBUILD PKGBUILD)

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:28:52
  Author: demize
Revision: 359621

archrelease: copy trunk to extra-any

Added:
  python-prometheus_client/repos/extra-any/PKGBUILD
(from rev 359620, python-prometheus_client/trunk/PKGBUILD)
Deleted:
  python-prometheus_client/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-11 17:28:49 UTC (rev 359620)
+++ PKGBUILD2019-08-11 17:28:52 UTC (rev 359621)
@@ -1,52 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=(python-prometheus_client python2-prometheus_client)
-pkgver=0.6.0
-pkgrel=1
-
-pkgdesc="Prometheus instrumentation library for Python applications"
-url="https://github.com/prometheus/client_python;
-arch=('any')
-license=('APACHE')
-
-makedepends=('python' 'python-setuptools'
- 'python2' 'python2-setuptools')
-checkdepends=('python-twisted' 'python-pytest'
-  'python2-twisted' 'python2-pytest' 'python2-futures')
-
-source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
-sha512sums=('a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd')
-
-prepare() {
-  cp -r client_python-$pkgver client_python-$pkgver-py2
-}
-
-build() {
-  cd client_python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/client_python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd client_python-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/client_python-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-prometheus_client() {
-  depends=('python')
-
-  cd client_python-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-package_python2-prometheus_client() {
-  depends=('python2')
-
-  cd client_python-$pkgver
-  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
-}

Copied: python-prometheus_client/repos/extra-any/PKGBUILD (from rev 359620, 
python-prometheus_client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-11 17:28:52 UTC (rev 359621)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-prometheus_client
+pkgver=0.7.1
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python;
+arch=('any')
+license=('APACHE')
+
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-twisted' 'python-pytest')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+
+sha512sums=('84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4')
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd client_python-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}


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

2019-08-11 Thread Johannes Löthberg via arch-commits
Date: Sunday, August 11, 2019 @ 17:28:33
  Author: demize
Revision: 498960

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pycryptodomex/repos/community-testing-x86_64/
  python-pycryptodomex/repos/community-testing-x86_64/PKGBUILD
(from rev 498959, python-pycryptodomex/trunk/PKGBUILD)

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

Copied: python-pycryptodomex/repos/community-testing-x86_64/PKGBUILD (from rev 
498959, python-pycryptodomex/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-08-11 17:28:33 UTC (rev 498960)
@@ -0,0 +1,31 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pycryptodomex
+pkgver=3.8.2
+pkgrel=1
+
+pkgdesc='A self-contained Python package of low-level cryptographic primitives'
+url='http://www.pycryptodome.org/'
+arch=('x86_64')
+license=('BSD')
+
+depends=('python')
+makedepends=('python-setuptools')
+
+source=("https://pypi.org/packages/source/p/pycryptodomex/pycryptodomex-$pkgver.tar.gz;)
+
+md5sums=('d755d7bae113d66dba3eb77b022c336e')
+
+build() {
+   cd "$srcdir"/pycryptodomex-$pkgver
+   python setup.py build
+}
+
+package() {
+
+   cd pycryptodomex-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+   install -Dm644 LICENSE.rst 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
+}


  1   2   3   4   >