[arch-commits] Commit in bitcoin/trunk (4 files)

2015-02-16 Thread Timothy Redaelli
Date: Monday, February 16, 2015 @ 18:07:20
  Author: tredaelli
Revision: 127801

upgpkg: bitcoin 0.10.0-1

Deleted:
  bitcoin/trunk/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
  bitcoin/trunk/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
  bitcoin/trunk/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
  bitcoin/trunk/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch

+
 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch |   43 ---
 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch |   50 ---
 60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch |   25 ---
 b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch |   43 ---
 4 files changed, 161 deletions(-)

Deleted: 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
===
--- 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  2015-02-16 17:05:57 UTC 
(rev 127800)
+++ 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  2015-02-16 17:07:20 UTC 
(rev 127801)
@@ -1,43 +0,0 @@
-From 037bfefe6bccbdf656e628a1f4526db8f80c3922 Mon Sep 17 00:00:00 2001
-From: Wladimir J. van der Laan laa...@gmail.com
-Date: Mon, 12 Jan 2015 09:28:24 +0100
-Subject: [PATCH] Improve robustness of DER recoding code
-
-Add some defensive programming on top of #5634.
-
-This copies the respective OpenSSL code in ECDSA_verify in
-OpenSSL pre-1.0.1k (e.g. 
https://github.com/openssl/openssl/blob/OpenSSL_1_0_1j/crypto/ecdsa/ecs_vrf.c#L89)
-more closely.
-
-As reported by @sergiodemianlerner.
-
-Github-Pull: #5640
-Rebased-From: c6b7b29f232c651f898eeffb93f36c8f537c56d2

- src/key.cpp | 13 -
- 1 file changed, 12 insertions(+), 1 deletion(-)
-
-diff --git a/src/key.cpp b/src/key.cpp
-index a845ba1..63332bf 100644
 a/src/key.cpp
-+++ b/src/key.cpp
-@@ -234,7 +234,18 @@ class CECKey {
- unsigned char *norm_der = NULL;
- ECDSA_SIG *norm_sig = ECDSA_SIG_new();
- const unsigned char* sigptr = vchSig[0];
--d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size());
-+assert(norm_sig);
-+if (d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size()) == NULL)
-+{
-+/* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer 
on
-+ * error. But OpenSSL's own use of this function redundantly 
frees the
-+ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence 
of a
-+ * clear contract for the function behaving the same way is more
-+ * conservative.
-+ */
-+ECDSA_SIG_free(norm_sig);
-+return false;
-+}
- int derlen = i2d_ECDSA_SIG(norm_sig, norm_der);
- ECDSA_SIG_free(norm_sig);
- if (derlen = 0)

Deleted: 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
===
--- 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  2015-02-16 17:05:57 UTC 
(rev 127800)
+++ 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  2015-02-16 17:07:20 UTC 
(rev 127801)
@@ -1,50 +0,0 @@
-From 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 Mon Sep 17 00:00:00 2001
-From: Gregory Maxwell g...@xiph.org
-Date: Sat, 6 Dec 2014 07:08:02 -0800
-Subject: [PATCH] Disable SSLv3 (in favor of TLS) for the RPC client and
- server.
-
-TLS is subject to downgrade attacks when SSLv3 is available, and
- SSLv3 has vulnerabilities.
-
-The popular solution is to disable SSLv3. On the web this breaks
- some tiny number of very old clients. While Bitcoin RPC shouldn't
- be exposed to the open Internet, it also shouldn't be exposed to
- really old SSL implementations, so it shouldn't be a major issue
- for us to disable SSLv3.
-
-There is more information on the downgrade attacks and disabling
- SSLv3 at https://disablessl3.com/ .
-
-Rebased-From: 683dc4009b2b01699e672f8150c28e2ebe0aae19

- src/rpcclient.cpp | 2 +-
- src/rpcserver.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
-index 4f3c39c..5e62b71 100644
 a/src/rpcclient.cpp
-+++ b/src/rpcclient.cpp
-@@ -40,7 +40,7 @@ Object CallRPC(const string strMethod, const Array params)
- bool fUseSSL = GetBoolArg(-rpcssl, false);
- asio::io_service io_service;
- ssl::context context(io_service, ssl::context::sslv23);
--context.set_options(ssl::context::no_sslv2);
-+context.set_options(ssl::context::no_sslv2 | ssl::context::no_sslv3);
- asio::ssl::streamasio::ip::tcp::socket sslStream(io_service, context);
- SSLIOStreamDeviceasio::ip::tcp d(sslStream, fUseSSL);
- iostreams::stream SSLIOStreamDeviceasio::ip::tcp  stream(d);
-diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
-index f43acf4..cc9e330 100644
 a/src/rpcserver.cpp
-+++ b/src/rpcserver.cpp
-@@ -539,7 +539,7 @@ void StartRPCThreads()
- 
- if (fUseSSL)
- {
--rpc_ssl_context-set_options(ssl::context::no_sslv2);
-+

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

2015-02-16 Thread Felix Yan
Date: Monday, February 16, 2015 @ 18:40:41
  Author: fyan
Revision: 231613

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-16 17:40:28 UTC (rev 231612)
+++ PKGBUILD2015-02-16 17:40:41 UTC (rev 231613)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=12.1
-pkgrel=1
-epoch=1
-pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
-arch=('any')
-license=('PSF')
-url=http://pypi.python.org/pypi/setuptools;
-makedepends=('python' 'python2')
-checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
-source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('3525e870f3ccae59c720a4e87258b69eeabaa6a1c8deaa55457a89d10a09fb27687a36d4d93da702319060f096df77135b8e74d218459446b8bcd537e1ff5ea0')
-
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd ${srcdir}/setuptools-${pkgver}
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  # Check python3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py ptr
-
-  # Check python2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-  rm ${pkgdir}/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 231612, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-16 17:40:41 UTC (rev 231613)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=12.2
+pkgrel=1
+epoch=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
+sha512sums=('1f7b8097dcf8e9afa677c08a3445836ab7ee44f387ac3b18efb0424beb90626b8c48fb8ead104ea3f61ea76b87c609aafecbcec88e672659eb5556bf1848b77e')
+
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd ${srcdir}/setuptools-${pkgver}
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  # Check python3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  LC_CTYPE=en_US.utf8 python3 setup.py ptr
+
+  # Check python2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+}
+ 
+package_python-setuptools() {
+  depends=('python')
+  provides=('python-distribute')
+  replaces=('python-distribute')
+
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+  depends=('python2')
+  

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

2015-02-16 Thread Felix Yan
Date: Monday, February 16, 2015 @ 18:40:28
  Author: fyan
Revision: 231612

upgpkg: python-setuptools 1:12.2-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 15:07:21 UTC (rev 231611)
+++ PKGBUILD2015-02-16 17:40:28 UTC (rev 231612)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=12.1
+pkgver=12.2
 pkgrel=1
 epoch=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('3525e870f3ccae59c720a4e87258b69eeabaa6a1c8deaa55457a89d10a09fb27687a36d4d93da702319060f096df77135b8e74d218459446b8bcd537e1ff5ea0')
+sha512sums=('1f7b8097dcf8e9afa677c08a3445836ab7ee44f387ac3b18efb0424beb90626b8c48fb8ead104ea3f61ea76b87c609aafecbcec88e672659eb5556bf1848b77e')
 
 prepare() {
   cp -a setuptools-${pkgver}{,-python2}


[arch-commits] Commit in bitcoin/repos (16 files)

2015-02-16 Thread Timothy Redaelli
Date: Monday, February 16, 2015 @ 18:07:30
  Author: tredaelli
Revision: 127802

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bitcoin/repos/community-i686/PKGBUILD
(from rev 127801, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-i686/bitcoin-qt.install
(from rev 127801, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 127801, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin-qt.install
(from rev 127801, bitcoin/trunk/bitcoin-qt.install)
Deleted:
  bitcoin/repos/community-i686/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
  bitcoin/repos/community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
  bitcoin/repos/community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
  bitcoin/repos/community-i686/PKGBUILD
  bitcoin/repos/community-i686/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
  bitcoin/repos/community-i686/bitcoin-qt.install
  bitcoin/repos/community-x86_64/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
  bitcoin/repos/community-x86_64/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
  bitcoin/repos/community-x86_64/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
  bitcoin/repos/community-x86_64/bitcoin-qt.install

-+
 /PKGBUILD   |  158 
++
 /bitcoin-qt.install |   22 +
 community-i686/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch   |   43 --
 community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch   |   50 ---
 community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch   |   25 -
 community-i686/PKGBUILD |  100 --
 community-i686/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch   |   43 --
 community-i686/bitcoin-qt.install   |   11 
 community-x86_64/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch |   43 --
 community-x86_64/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch |   50 ---
 community-x86_64/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch |   25 -
 community-x86_64/PKGBUILD   |  100 --
 community-x86_64/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch |   43 --
 community-x86_64/bitcoin-qt.install |   11 
 14 files changed, 180 insertions(+), 544 deletions(-)

Deleted: community-i686/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
===
--- community-i686/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch   
2015-02-16 17:07:20 UTC (rev 127801)
+++ community-i686/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch   
2015-02-16 17:07:30 UTC (rev 127802)
@@ -1,43 +0,0 @@
-From 037bfefe6bccbdf656e628a1f4526db8f80c3922 Mon Sep 17 00:00:00 2001
-From: Wladimir J. van der Laan laa...@gmail.com
-Date: Mon, 12 Jan 2015 09:28:24 +0100
-Subject: [PATCH] Improve robustness of DER recoding code
-
-Add some defensive programming on top of #5634.
-
-This copies the respective OpenSSL code in ECDSA_verify in
-OpenSSL pre-1.0.1k (e.g. 
https://github.com/openssl/openssl/blob/OpenSSL_1_0_1j/crypto/ecdsa/ecs_vrf.c#L89)
-more closely.
-
-As reported by @sergiodemianlerner.
-
-Github-Pull: #5640
-Rebased-From: c6b7b29f232c651f898eeffb93f36c8f537c56d2

- src/key.cpp | 13 -
- 1 file changed, 12 insertions(+), 1 deletion(-)
-
-diff --git a/src/key.cpp b/src/key.cpp
-index a845ba1..63332bf 100644
 a/src/key.cpp
-+++ b/src/key.cpp
-@@ -234,7 +234,18 @@ class CECKey {
- unsigned char *norm_der = NULL;
- ECDSA_SIG *norm_sig = ECDSA_SIG_new();
- const unsigned char* sigptr = vchSig[0];
--d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size());
-+assert(norm_sig);
-+if (d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size()) == NULL)
-+{
-+/* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer 
on
-+ * error. But OpenSSL's own use of this function redundantly 
frees the
-+ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence 
of a
-+ * clear contract for the function behaving the same way is more
-+ * conservative.
-+ */
-+ECDSA_SIG_free(norm_sig);
-+return false;
-+}
- int derlen = i2d_ECDSA_SIG(norm_sig, norm_der);
- ECDSA_SIG_free(norm_sig);
- if (derlen = 0)

Deleted: community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
===
--- community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch   
2015-02-16 17:07:20 UTC (rev 127801)
+++ community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch   
2015-02-16 17:07:30 UTC (rev 127802)
@@ 

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

2015-02-16 Thread Timothy Redaelli
Date: Monday, February 16, 2015 @ 18:05:57
  Author: tredaelli
Revision: 127800

upgpkg: bitcoin 0.10.0-1

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 13:25:54 UTC (rev 127799)
+++ PKGBUILD2015-02-16 17:05:57 UTC (rev 127800)
@@ -4,32 +4,24 @@
 
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.3
-pkgrel=4
+pkgver=0.10.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.bitcoin.org/;
 makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
 license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
-   
https://github.com/bitcoin/bitcoin/commit/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
-   
https://github.com/bitcoin/bitcoin/commit/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
-   
https://github.com/bitcoin/bitcoin/commit/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
-   
https://github.com/bitcoin/bitcoin/commit/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
+source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver.tar.gz

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop

https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd'
-'18f5d43dd29682c8f9bd98dfb94c07b2453c99b9454996651562410b535e289b'
-'ac3a6d0e9116566f44ef99b6fc5ae7ec792a05e73d33b9db25e4f62b296b5d59'
-'67c50de4c469e40d8fb0a7663acd5af8dbbe93f362a5192e981bfa2ec9ab82df'
-'9ff94c3ddb09b0b27eda2e157627ff61808afd7a8fedc0c9d1b0db1a53ee1138'
+sha256sums=('a516cf6d9f58a117607148405334b35d3178df1ba1c59229609d2bcd08d30624'
 'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
 'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'
-'881dcc53ebe2d2a4f8647eb206fd355c69e4186f225e2dcfce19d276381e613a'
-'b7b232079027c41061dcfd21bca2054e349e4bed4f233733406bb3d90bd533ec')
+'b049cc2650d5988a581d1b72b205254edbaa4f8c0587c2fe8ac4aa0a25543a6a'
+'0a31a5f3ad860ecc1cc8041a863aabdbc4084c7ea5fdc487806b5aa829a244fe'
+'9acf7f46052f6e508af4f38be4574f34bf0f57d2cf462f072606d3f177b4c957')
 
 # Upstream should be more coherent!
 case $pkgver in
@@ -41,21 +33,8 @@
   ;;
 esac
 
-prepare() {
-  local x
-  cd $srcdir/$pkgbase-$pkgver-linux/src
-  tar xf $pkgbase-$_pkgver.tar.gz
-  cd $pkgbase-$_pkgver
-
-  # Disable SSLv3 for Puddle + FS#43396
-  for x in 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 
b8e81b7ccd4490155e3345fc73346ff8c3a77524 \
-   60c51f1c381bbd93c70cfdf41c6688609a7956fc 
037bfefe6bccbdf656e628a1f4526db8f80c3922; do
-patch -Np1 -i $srcdir/$x.patch
-  done
-}
-
 build() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $srcdir/$pkgbase-$pkgver
   ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
   make
 }
@@ -65,7 +44,7 @@
   depends=(boost-libs qt4 miniupnpc qrencode protobuf)
   install=bitcoin-qt.install
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
   install -Dm644 $srcdir/bitcoin-qt.desktop \
 $pkgdir/usr/share/applications/bitcoin.desktop
@@ -79,7 +58,7 @@
   pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
   depends=(boost-libs miniupnpc openssl)
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
   install -Dm644 $srcdir/bitcoin.conf \
 $pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
@@ -94,7 +73,7 @@
   pkgdesc=Bitcoin is a peer-to-peer network based digital currency - RPC 
client
   depends=(boost-libs openssl)
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/bitcoin-cli $pkgdir/usr/bin/bitcoin-cli
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }


[arch-commits] Commit in system-config-printer/repos (4 files)

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 21:11:47
  Author: andyrtr
Revision: 231621

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  system-config-printer/repos/extra-i686/PKGBUILD
(from rev 231620, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/extra-x86_64/PKGBUILD
(from rev 231620, system-config-printer/trunk/PKGBUILD)
Deleted:
  system-config-printer/repos/extra-i686/PKGBUILD
  system-config-printer/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 extra-i686/PKGBUILD   |   44 
 extra-x86_64/PKGBUILD |   44 
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-16 20:11:31 UTC (rev 231620)
+++ extra-i686/PKGBUILD 2015-02-16 20:11:47 UTC (rev 231621)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=system-config-printer
-pkgver=1.5.5
-pkgrel=1
-pkgdesc=A CUPS printer configuration tool and status applet
-url=http://cyberelk.net/tim/software/system-config-printer/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('python-pycups' 'python-dbus' 'python-pycurl' 'python-gobject2' 
'libnotify'
- 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
-makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
-optdepends=('libgnome-keyring: password management'
-'python-pysmbc: SMB browser support'
-'python-packagekit: to install drivers with PackageKit'
-'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
-source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('1aaee6a90449ee0c6b90da2eb5df03a9'
- 'SKIP')
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3') #Tim Waugh 
twa...@redhat.com t...@cyberelk.net
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---with-udevdir=/usr/lib/udev --with-udev-rules 
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Compile *.pyc
-  find ${pkgdir} -name '*.py' -exec python -mpy_compile {} +
-  # Compile *.pyo
-  find ${pkgdir} -name '*.py' -exec python -O -mpy_compile {} +
-  
-  # new cups 2.0.0 service naming
-  sed -i s|cups.socket|org.cups.cupsd.socket|g 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
-}

Copied: system-config-printer/repos/extra-i686/PKGBUILD (from rev 231620, 
system-config-printer/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-16 20:11:47 UTC (rev 231621)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=system-config-printer
+pkgver=1.5.5
+pkgrel=2
+pkgdesc=A CUPS printer configuration tool and status applet
+url=http://cyberelk.net/tim/software/system-config-printer/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1aaee6a90449ee0c6b90da2eb5df03a9'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3') #Tim Waugh 
twa...@redhat.com t...@cyberelk.net
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Compile *.pyc
+  find ${pkgdir} -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find ${pkgdir} -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i s|cups.socket|org.cups.cupsd.socket|g 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-16 20:11:31 UTC (rev 231620)
+++ extra-x86_64/PKGBUILD   2015-02-16 20:11:47 UTC (rev 231621)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-

[arch-commits] Commit in xfce4-whiskermenu-plugin/repos (8 files)

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 19:29:17
  Author: arodseth
Revision: 127806

archrelease: copy trunk to community-x86_64, community-i686

Added:
  xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD
(from rev 127805, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
  xfce4-whiskermenu-plugin/repos/community-i686/xfce4-whiskermenu-plugin.install
(from rev 127805, 
xfce4-whiskermenu-plugin/trunk/xfce4-whiskermenu-plugin.install)
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
(from rev 127805, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
  
xfce4-whiskermenu-plugin/repos/community-x86_64/xfce4-whiskermenu-plugin.install
(from rev 127805, 
xfce4-whiskermenu-plugin/trunk/xfce4-whiskermenu-plugin.install)
Deleted:
  xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD
  xfce4-whiskermenu-plugin/repos/community-i686/xfce4-whiskermenu-plugin.install
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
  
xfce4-whiskermenu-plugin/repos/community-x86_64/xfce4-whiskermenu-plugin.install

---+
 /PKGBUILD |   64 
 /xfce4-whiskermenu-plugin.install |   26 
 community-i686/PKGBUILD   |   29 -
 community-i686/xfce4-whiskermenu-plugin.install   |   13 
 community-x86_64/PKGBUILD |   29 -
 community-x86_64/xfce4-whiskermenu-plugin.install |   13 
 6 files changed, 90 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 18:28:59 UTC (rev 127805)
+++ community-i686/PKGBUILD 2015-02-16 18:29:17 UTC (rev 127806)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Graeme Gott gra...@gottcode.org
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=1.4.2
-pkgrel=1
-pkgdesc='Alternate Xfce menu'
-arch=('x86_64' 'i686')
-url=http://gottcode.org/$pkgname/;
-license=('GPL2')
-depends=('xfce4-panel')
-makedepends=('cmake')
-install=$pkgname.install
-source=(http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2;)
-sha256sums=('7266d7a16df4bffe6f00d3d4711b8b8fd972491bac70f13a9d7edd9f0472d311')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver install DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD (from rev 
127805, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 18:29:17 UTC (rev 127806)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Graeme Gott gra...@gottcode.org
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='Alternate menu for Xfce4'
+arch=('x86_64' 'i686')
+url=http://gottcode.org/xfce4-whiskermenu-plugin/;
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('xfce4-panel')
+makedepends=('cmake')
+install=$pkgname.install
+source=(http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2;)
+sha256sums=('56c409a16e8a6db4f6eb4ae4e8c3ad472964e840c01453f200d0c1034d949b4b')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver install DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/xfce4-whiskermenu-plugin.install
===
--- community-i686/xfce4-whiskermenu-plugin.install 2015-02-16 18:28:59 UTC 
(rev 127805)
+++ community-i686/xfce4-whiskermenu-plugin.install 2015-02-16 18:29:17 UTC 
(rev 127806)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 
xfce4-whiskermenu-plugin/repos/community-i686/xfce4-whiskermenu-plugin.install 
(from rev 127805, 
xfce4-whiskermenu-plugin/trunk/xfce4-whiskermenu-plugin.install)
===
--- community-i686/xfce4-whiskermenu-plugin.install 
(rev 0)
+++ community-i686/xfce4-whiskermenu-plugin.install 2015-02-16 18:29:17 UTC 
(rev 127806)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

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

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 19:19:39
  Author: andyrtr
Revision: 231614

upgpkg: hplip 3.15.2-3

use python-gobject; FS#43781

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 17:40:41 UTC (rev 231613)
+++ PKGBUILD2015-02-16 18:19:39 UTC (rev 231614)
@@ -6,22 +6,21 @@
 
 pkgname=hplip
 pkgver=3.15.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
 license=('GPL')
 depends=('python' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject2' 'sane' 'rpcbind' 'cups' 'libusb')
+makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'python-dbus: for dbus support'
 'sane: for scanner support'
 'python-pillow: for commandline scanning support'
-#'python2-notify: for Desktop notification support'
 'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
 'python-pyqt4: for running GUI and hp-toolbox'
-'python-gobject2: for running hp-toolbox'
+'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 install=hplip.install
@@ -35,18 +34,6 @@
 prepare() {
  cd $pkgname-$pkgver
  
-# export PYTHON=python2
- 
-# find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
-# sed -i 's|python ./print.py|python2 ./print.py|' scan.py
-# sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
-# sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
-# sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
-# sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-# sed -i 's|/usr/bin/python|/usr/bin/python2|' 
data/rules/hplip-printer@.service
- 
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch
  


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

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 20:55:20
  Author: andyrtr
Revision: 231619

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  ghostscript/repos/extra-i686/PKGBUILD
(from rev 231618, ghostscript/trunk/PKGBUILD)
  ghostscript/repos/extra-i686/ghostscript-sys-zlib.patch
(from rev 231618, ghostscript/trunk/ghostscript-sys-zlib.patch)
  ghostscript/repos/extra-x86_64/PKGBUILD
(from rev 231618, ghostscript/trunk/PKGBUILD)
  ghostscript/repos/extra-x86_64/ghostscript-sys-zlib.patch
(from rev 231618, ghostscript/trunk/ghostscript-sys-zlib.patch)
Deleted:
  ghostscript/repos/extra-i686/PKGBUILD
  ghostscript/repos/extra-i686/ghostscript-sys-zlib.patch
  ghostscript/repos/extra-x86_64/PKGBUILD
  ghostscript/repos/extra-x86_64/ghostscript-sys-zlib.patch

-+
 /PKGBUILD   |  174 ++
 /ghostscript-sys-zlib.patch |   50 
 extra-i686/PKGBUILD |   87 ---
 extra-i686/ghostscript-sys-zlib.patch   |   25 
 extra-x86_64/PKGBUILD   |   87 ---
 extra-x86_64/ghostscript-sys-zlib.patch |   25 
 6 files changed, 224 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-16 19:55:06 UTC (rev 231618)
+++ extra-i686/PKGBUILD 2015-02-16 19:55:20 UTC (rev 231619)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-### !!! rebuild groff from core that picks up hardcoding the GS versioned font 
path !!! ###
-
-pkgname=ghostscript
-pkgver=9.15
-pkgrel=1
-pkgdesc=An interpreter for the PostScript language
-arch=('i686' 'x86_64')
-license=('AGPL' 'custom')
-depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng=1.5.7' 
'libjpeg'
- 'libtiff=4.0.0' 'lcms2' 'dbus' 'libpaper')
-makedepends=('gtk3' 'gnutls')
-optdepends=('texlive-core:  needed for dvipdf'
-'gtk3:  needed for gsx')
-url=http://www.ghostscript.com/;
-source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2
-ghostscript-sys-zlib.patch)
-#options=('!makeflags')
-# http://downloads.ghostscript.com/public/SHA1SUMS
-sha1sums=('19f01538d33b9623bc6653d96ea4ec891f14a9d3'
-  'e054caf753df4d67221b29a2eac66130653f7556')
-
-prepare() {
-  cd ghostscript-${pkgver}
-  # fix build with system zlib
-  patch -Np1 -i ${srcdir}/ghostscript-sys-zlib.patch
-}
-
-build() {
-  cd ghostscript-${pkgver}
-  
-  # force it to use system-libs
-  # keep heavily patched included openjpeg, leads to segfault with system 
openjpeg
-  # https://bugs.archlinux.org/task/38226
-  rm -rf jpeg libpng zlib jasper expat tiff lcms lcms2 freetype cups/libs # 
jbig2dec is in community
-
-  autoconf --force
-
-  ./configure --prefix=/usr \
-   --enable-dynamic \
-   --with-ijs \
-   --with-jbig2dec \
-   --with-omni \
-   --with-x \
-   --with-drivers=ALL\
-   --with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \
-   --enable-fontconfig \
-   --enable-freetype \
-   --enable-openjpeg \
-   --without-luratech \
-   --without-omni \
-   --with-system-libtiff \
-   --with-libpaper \
-   --disable-compile-inits #--help # needed for linking with system-zlib
-  make
-
-  # Build IJS
-  cd ijs
-  sed -i s:AM_PROG_CC_STDC:AC_PROG_CC:g configure.ac
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-shared --disable-static
-  make
-}
-
-package() {
-  cd ghostscript-${pkgver}
-  make DESTDIR=${pkgdir} \
-   cups_serverroot=${pkgdir}/etc/cups \
-   cups_serverbin=${pkgdir}/usr/lib/cups install install-so
-
-  # install missing doc files # http://bugs.archlinux.org/task/18023
-  install -m 644 
${srcdir}/ghostscript-${pkgver}/doc/{Ps2ps2.htm,gs-vms.hlp,gsdoc.el,pscet_status.txt}
 ${pkgdir}/usr/share/ghostscript/$pkgver/doc/
-  
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # remove unwanted localized man-pages
-  rm -rf $pkgdir/usr/share/man/[^man1]*
-
-  # install IJS
-  cd ijs
-  make DESTDIR=${pkgdir} install
-  
-  # remove filters that are now maintained in cups-filters as upstream home
-  rm -rf $pkgdir/usr/lib/cups/filter/{gstopxl,gstoraster}
-}

Copied: ghostscript/repos/extra-i686/PKGBUILD (from rev 231618, 
ghostscript/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-16 19:55:20 UTC (rev 231619)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+### !!! rebuild groff from core that picks up hardcoding the GS versioned font 
path !!! ###
+
+pkgname=ghostscript
+pkgver=9.15
+pkgrel=2
+pkgdesc=An interpreter for the PostScript language
+arch=('i686' 'x86_64')
+license=('AGPL' 'custom')
+depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng=1.5.7' 

[arch-commits] Commit in powerdns/repos (12 files)

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 19:28:59
  Author: arodseth
Revision: 127805

archrelease: copy trunk to community-x86_64, community-i686

Added:
  powerdns/repos/community-i686/PKGBUILD
(from rev 127804, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-i686/pdns.install
(from rev 127804, powerdns/trunk/pdns.install)
  powerdns/repos/community-i686/pdns.service
(from rev 127804, powerdns/trunk/pdns.service)
  powerdns/repos/community-x86_64/PKGBUILD
(from rev 127804, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-x86_64/pdns.install
(from rev 127804, powerdns/trunk/pdns.install)
  powerdns/repos/community-x86_64/pdns.service
(from rev 127804, powerdns/trunk/pdns.service)
Deleted:
  powerdns/repos/community-i686/PKGBUILD
  powerdns/repos/community-i686/pdns.install
  powerdns/repos/community-i686/pdns.service
  powerdns/repos/community-x86_64/PKGBUILD
  powerdns/repos/community-x86_64/pdns.install
  powerdns/repos/community-x86_64/pdns.service

---+
 /PKGBUILD |  156 
 /pdns.install |   22 +
 /pdns.service |   24 ++
 community-i686/PKGBUILD   |   77 ---
 community-i686/pdns.install   |   11 --
 community-i686/pdns.service   |   12 ---
 community-x86_64/PKGBUILD |   77 ---
 community-x86_64/pdns.install |   11 --
 community-x86_64/pdns.service |   12 ---
 9 files changed, 202 insertions(+), 200 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 18:28:35 UTC (rev 127804)
+++ community-i686/PKGBUILD 2015-02-16 18:28:59 UTC (rev 127805)
@@ -1,77 +0,0 @@
-# $Id: PKGBUILD 101429 2013-11-25 14:11:30Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Kevin Mihelich ke...@archlinuxarm.org
-
-pkgname=powerdns
-pkgver=3.4.2
-pkgrel=1
-pkgdesc='Authoritative DNS server'
-arch=('x86_64' 'i686')
-url='http://www.powerdns.com/'
-license=('GPL')
-depends=('boost-libs' 'gcc-libs' 'postgresql-libs' 'libmariadbclient' 'sqlite' 
'libldap' 'lua')
-makedepends=('boost' 'setconf')
-options=('!makeflags')
-install='pdns.install'
-backup=('etc/powerdns/pdns.conf')
-source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
-'pdns.service')
-sha256sums=('a6ab05459a0118cb921092deee06362722c45fa69ed0166ebc3696d526014b5b'
-'b2358a5951ac944feee15ac03d42ffe9c2a72fa6f57746f77ef8997d54a82040')
-
-prepare() {
-  touch pdns-$pkgver/AUTHORS pdns-$pkgver/NEWS
-
-  # Make changes to pdns.conf, while basing it on pdns.conf-dist
-  cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
-
-  # Setting the default configuration options.
-  for keyvalue in \
-allow-recursion=127.0.0.1 \
-cache-ttl=6 \
-chroot=/var/empty \
-config-dir=/etc \
-daemon=yes \
-distributor-threads=3 \
-guardian=yes \
-local-port=53 \
-loglevel=3 \
-module-dir=/usr/lib/powerdns \
-negquery-cache-ttl=60 \
-setgid=nobody \
-setuid=nobody \
-socket-dir=/var/run \
-webserver=no
-  do
-setconf -a pdns.conf $keyvalue
-  done
-}
-
-build() {
-  cd pdns-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/powerdns \
---libexecdir=/usr/lib \
---libdir=/usr/lib \
---mandir=/usr/share/man \
---with-modules='' \
---with-dynmodules=ldap pipe gmysql gpgsql gsqlite3 geo bind \
---docdir=/usr/share/doc/powerdns \
---sbindir=/usr/bin \
---bindir=/usr/bin
-  make
-}
-
-package() {
-  make -C pdns-$pkgver DESTDIR=$pkgdir install
-  install -m644 pdns.conf $pkgdir/etc/powerdns/
-  install -Dm644 pdns.service \
-$pkgdir/usr/lib/systemd/system/pdns.service
-  rm -f $pkgdir/etc/powerdns/pdns.conf-dist
-  mv $pkgdir/usr/lib/pdns $pkgdir/usr/lib/powerdns
-}
-
-# vim:set ts=2 sw=2 et:

Copied: powerdns/repos/community-i686/PKGBUILD (from rev 127804, 
powerdns/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 18:28:59 UTC (rev 127805)
@@ -0,0 +1,78 @@
+# $Id: PKGBUILD 101429 2013-11-25 14:11:30Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Kevin Mihelich ke...@archlinuxarm.org
+
+pkgname=powerdns
+pkgver=3.4.2
+pkgrel=2
+pkgdesc='Authoritative DNS server'
+arch=('x86_64' 'i686')
+url='http://www.powerdns.com/'
+license=('GPL')
+depends=('boost-libs' 'gcc-libs' 'postgresql-libs' 'libmariadbclient' 'sqlite' 
'libldap' 'lua')
+makedepends=('boost' 'setconf')
+options=('!makeflags')
+install='pdns.install'
+backup=('etc/powerdns/pdns.conf')
+source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
+'pdns.service')

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

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 19:28:35
  Author: arodseth
Revision: 127804

upgpkg: xfce4-whiskermenu-plugin 1.4.3-1

Modified:
  xfce4-whiskermenu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 18:28:33 UTC (rev 127803)
+++ PKGBUILD2015-02-16 18:28:35 UTC (rev 127804)
@@ -3,22 +3,25 @@
 # Contributor: Graeme Gott gra...@gottcode.org
 
 pkgname=xfce4-whiskermenu-plugin
-pkgver=1.4.2
+pkgver=1.4.3
 pkgrel=1
-pkgdesc='Alternate Xfce menu'
+pkgdesc='Alternate menu for Xfce4'
 arch=('x86_64' 'i686')
-url=http://gottcode.org/$pkgname/;
+url=http://gottcode.org/xfce4-whiskermenu-plugin/;
+groups=('xfce4-goodies')
 license=('GPL2')
 depends=('xfce4-panel')
 makedepends=('cmake')
 install=$pkgname.install
 source=(http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2;)
-sha256sums=('7266d7a16df4bffe6f00d3d4711b8b8fd972491bac70f13a9d7edd9f0472d311')
+sha256sums=('56c409a16e8a6db4f6eb4ae4e8c3ad472964e840c01453f200d0c1034d949b4b')
 
 build() {
   cd $pkgname-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_INSTALL_LIBDIR=lib
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 


[arch-commits] Commit in powerdns/trunk (PKGBUILD pdns.install)

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 19:28:33
  Author: arodseth
Revision: 127803

upgpkg: powerdns 3.4.2-2

Modified:
  powerdns/trunk/PKGBUILD
  powerdns/trunk/pdns.install

--+
 PKGBUILD |3 ++-
 pdns.install |2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 17:07:30 UTC (rev 127802)
+++ PKGBUILD2015-02-16 18:28:33 UTC (rev 127803)
@@ -5,7 +5,7 @@
 
 pkgname=powerdns
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Authoritative DNS server'
 arch=('x86_64' 'i686')
 url='http://www.powerdns.com/'
@@ -27,6 +27,7 @@
   cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
 
   # Setting the default configuration options.
+  # Future versions of setconf may be able to comment out options.
   for keyvalue in \
 allow-recursion=127.0.0.1 \
 cache-ttl=6 \

Modified: pdns.install
===
--- pdns.install2015-02-16 17:07:30 UTC (rev 127802)
+++ pdns.install2015-02-16 18:28:33 UTC (rev 127803)
@@ -1,7 +1,7 @@
 post_upgrade() {
   echo
   echo 'See http://doc.powerdns.com/md/authoritative/upgrading/ for'
-  echo 'information about changes when upgrading.
+  echo 'information about changes when upgrading.'
   echo
   echo 'If upgrading from an older version, you may also need to:'
   echo 'setconf /etc/powerdns/pdns.conf module-dir=/usr/lib/powerdns'


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

2015-02-16 Thread Jaroslav Lichtblau
Date: Monday, February 16, 2015 @ 19:39:11
  Author: jlichtblau
Revision: 127807

upgpkg: tellico 2.3.10-1

Modified:
  tellico/trunk/PKGBUILD
  tellico/trunk/tellico.changelog

---+
 PKGBUILD  |8 
 tellico.changelog |   11 +++
 2 files changed, 11 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 18:29:17 UTC (rev 127806)
+++ PKGBUILD2015-02-16 18:39:11 UTC (rev 127807)
@@ -1,12 +1,12 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Ray Rashif sc...@archlinux.org
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
 
 pkgname=tellico
-pkgver=2.3.9
-pkgrel=2
+pkgver=2.3.10
+pkgrel=1
 pkgdesc=A collection manager for KDE
 arch=('i686' 'x86_64')
 url=http://tellico-project.org/;
@@ -16,7 +16,7 @@
 install=$pkgname.install
 changelog=$pkgname.changelog
 source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('5184c130ea7561be6e72580105f30d5f160fd2fd5c9ffc7f7e16faf227a20114')
+sha256sums=('e916101f86b6f843b85be42e8545aa7441cd496cbb9b81590e2e0bd03a58faaa')
 
 build() {
   cd ${srcdir}

Modified: tellico.changelog
===
--- tellico.changelog   2015-02-16 18:29:17 UTC (rev 127806)
+++ tellico.changelog   2015-02-16 18:39:11 UTC (rev 127807)
@@ -1,14 +1,17 @@
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * tellico 2.3.10-1
+
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
* tellico 2.3.9-1
 
 2014-03-09 Andrea Scarpino and...@archlinux.org
* tellico 2.3.8-5 be sure Nepomuk support is disabled
 
-2014-03-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-03-09 Jaroslav Lichtblau svetlemo...@archlinux.org
* tellico 2.3.8-4 nepomuk support dropped in KDE SC 4.13 packages
 
-2013-07-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-07-14 Jaroslav Lichtblau svetlemo...@archlinux.org
* tellico 2.3.8-1
 
-2013-01-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-01-30 Jaroslav Lichtblau svetlemo...@archlinux.org
* tellico 2.3.7-1


[arch-commits] Commit in xf86-input-libinput/repos (10 files)

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 19:53:52
  Author: andyrtr
Revision: 231617

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xf86-input-libinput/repos/testing-i686/90-libinput.conf
(from rev 231616, xf86-input-libinput/trunk/90-libinput.conf)
  xf86-input-libinput/repos/testing-i686/PKGBUILD
(from rev 231616, xf86-input-libinput/trunk/PKGBUILD)
  xf86-input-libinput/repos/testing-i686/git_fixes.diff
(from rev 231616, xf86-input-libinput/trunk/git_fixes.diff)
  xf86-input-libinput/repos/testing-x86_64/90-libinput.conf
(from rev 231616, xf86-input-libinput/trunk/90-libinput.conf)
  xf86-input-libinput/repos/testing-x86_64/PKGBUILD
(from rev 231616, xf86-input-libinput/trunk/PKGBUILD)
  xf86-input-libinput/repos/testing-x86_64/git_fixes.diff
(from rev 231616, xf86-input-libinput/trunk/git_fixes.diff)
Deleted:
  xf86-input-libinput/repos/testing-i686/90-libinput.conf
  xf86-input-libinput/repos/testing-i686/PKGBUILD
  xf86-input-libinput/repos/testing-x86_64/90-libinput.conf
  xf86-input-libinput/repos/testing-x86_64/PKGBUILD

-+
 /90-libinput.conf   |   60 +
 /PKGBUILD   |   92 
 testing-i686/90-libinput.conf   |   30 --
 testing-i686/PKGBUILD   |   39 -
 testing-i686/git_fixes.diff |  108 ++
 testing-x86_64/90-libinput.conf |   30 --
 testing-x86_64/PKGBUILD |   39 -
 testing-x86_64/git_fixes.diff   |  108 ++
 8 files changed, 368 insertions(+), 138 deletions(-)

Deleted: testing-i686/90-libinput.conf
===
--- testing-i686/90-libinput.conf   2015-02-16 18:53:36 UTC (rev 231616)
+++ testing-i686/90-libinput.conf   2015-02-16 18:53:52 UTC (rev 231617)
@@ -1,30 +0,0 @@
-# Match on all types of devices but tablet devices and joysticks
-
-Section InputClass
-Identifier libinput pointer catchall
-MatchIsPointer on
-MatchDevicePath /dev/input/event*
-Driver libinput
-EndSection
-
-Section InputClass
-Identifier libinput keyboard catchall
-MatchIsKeyboard on
-MatchDevicePath /dev/input/event*
-Driver libinput
-EndSection
-
-Section InputClass
-Identifier libinput touchpad catchall
-MatchIsTouchpad on
-MatchDevicePath /dev/input/event*
-Driver libinput
-EndSection
-
-Section InputClass
-Identifier libinput touchscreen catchall
-MatchIsTouchscreen on
-MatchDevicePath /dev/input/event*
-Driver libinput
-EndSection
-

Copied: xf86-input-libinput/repos/testing-i686/90-libinput.conf (from rev 
231616, xf86-input-libinput/trunk/90-libinput.conf)
===
--- testing-i686/90-libinput.conf   (rev 0)
+++ testing-i686/90-libinput.conf   2015-02-16 18:53:52 UTC (rev 231617)
@@ -0,0 +1,30 @@
+# Match on all types of devices but tablet devices and joysticks
+
+Section InputClass
+Identifier libinput pointer catchall
+MatchIsPointer on
+MatchDevicePath /dev/input/event*
+Driver libinput
+EndSection
+
+Section InputClass
+Identifier libinput keyboard catchall
+MatchIsKeyboard on
+MatchDevicePath /dev/input/event*
+Driver libinput
+EndSection
+
+Section InputClass
+Identifier libinput touchpad catchall
+MatchIsTouchpad on
+MatchDevicePath /dev/input/event*
+Driver libinput
+EndSection
+
+Section InputClass
+Identifier libinput touchscreen catchall
+MatchIsTouchscreen on
+MatchDevicePath /dev/input/event*
+Driver libinput
+EndSection
+

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-02-16 18:53:36 UTC (rev 231616)
+++ testing-i686/PKGBUILD   2015-02-16 18:53:52 UTC (rev 231617)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier lordhea...@gmail.com
-
-pkgname=xf86-input-libinput
-pkgver=0.6.0
-pkgrel=1
-pkgdesc=Generic input driver for the X.Org server based on libinput
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('libinput')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'libxi' 'libx11' 
'resourceproto' 'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
-groups=('xorg-drivers' 'xorg')
-source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
-90-libinput.conf)
-sha256sums=('2f29be1ed7f9b9c597b6f5c6ef24c37a244a0ba87ccd1c2586ffa4d08452ad79'
-'SKIP'
-'d4a728caadb7924852dcdc0da4de950c6fb9ebd8999d4e3af3d0baaa51cd0e75')

[arch-commits] Commit in xf86-input-libinput/trunk (PKGBUILD git_fixes.diff)

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 19:53:36
  Author: andyrtr
Revision: 231616

upgpkg: xf86-input-libinput 0.6.0-2

add post release git commits; fixes FS#43836

Added:
  xf86-input-libinput/trunk/git_fixes.diff
Modified:
  xf86-input-libinput/trunk/PKGBUILD

+
 PKGBUILD   |   13 +-
 git_fixes.diff |  108 +++
 2 files changed, 118 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 18:20:11 UTC (rev 231615)
+++ PKGBUILD2015-02-16 18:53:36 UTC (rev 231616)
@@ -3,7 +3,7 @@
 
 pkgname=xf86-input-libinput
 pkgver=0.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Generic input driver for the X.Org server based on libinput
 arch=('i686' 'x86_64')
 license=('custom')
@@ -13,12 +13,19 @@
 conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
 groups=('xorg-drivers' 'xorg')
 
source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
-90-libinput.conf)
+90-libinput.conf
+git_fixes.diff)
 sha256sums=('2f29be1ed7f9b9c597b6f5c6ef24c37a244a0ba87ccd1c2586ffa4d08452ad79'
 'SKIP'
-'d4a728caadb7924852dcdc0da4de950c6fb9ebd8999d4e3af3d0baaa51cd0e75')
+'d4a728caadb7924852dcdc0da4de950c6fb9ebd8999d4e3af3d0baaa51cd0e75'
+'a3777356128cc81535486508ebf7348f2486a543a291f7ed466f204c689b6ef2')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/git_fixes.diff # 2015-02-04 commit 
875f1696b780862886c75cd88b29fbc933ea7a1b
+}
+
 build() {
   cd ${pkgname}-${pkgver}
 

Added: git_fixes.diff
===
--- git_fixes.diff  (rev 0)
+++ git_fixes.diff  2015-02-16 18:53:36 UTC (rev 231616)
@@ -0,0 +1,108 @@
+From dcdf1e24c8427ecac3bff315b85e8273b849a1da Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Wed, 28 Jan 2015 10:48:50 +1000
+Subject: Formatting fix
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+
+diff --git a/src/libinput.c b/src/libinput.c
+index 2563efe..85824ce 100644
+--- a/src/libinput.c
 b/src/libinput.c
+@@ -1115,9 +1115,10 @@ xf86libinput_parse_options(InputInfoPtr pInfo,
+ 
+ }
+ 
+-static int xf86libinput_pre_init(InputDriverPtr drv,
+-   InputInfoPtr pInfo,
+-   int flags)
++static int
++xf86libinput_pre_init(InputDriverPtr drv,
++InputInfoPtr pInfo,
++int flags)
+ {
+   struct xf86libinput *driver_data = NULL;
+ struct libinput *libinput = NULL;
+-- 
+cgit v0.10.2
+
+From 45e9b6c64b9bf0a84e3ee0e1fbb8f9f4efc3a8a0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Friedrich=20Sch=C3=B6ller?= c...@schoeller.se
+Date: Sat, 24 Jan 2015 02:20:22 +0100
+Subject: Reapply configuration at DEVICE_ON
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The driver ignored my xorg configuration. Maybe I am doing something wrong,
+but I tried to track down the error and came up with this solution.
+
+The device is closed after DEVICE_INIT so we need to apply configuration
+options at DEVICE_ON.
+
+Signed-off-by: Friedrich Schöller c...@schoeller.se
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+
+diff --git a/src/libinput.c b/src/libinput.c
+index 85824ce..a24cbff 100644
+--- a/src/libinput.c
 b/src/libinput.c
+@@ -326,6 +326,8 @@ xf86libinput_on(DeviceIntPtr dev)
+   driver_context.device_enabled_count++;
+   dev-public.on = TRUE;
+ 
++  LibinputApplyConfig(dev);
++
+   return Success;
+ }
+ 
+-- 
+cgit v0.10.2
+
+From 875f1696b780862886c75cd88b29fbc933ea7a1b Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Wed, 4 Feb 2015 14:08:46 +1000
+Subject: Only apply left-handed/scroll button configuration when it's
+ available
+
+https://bugs.freedesktop.org/show_bug.cgi?id=88961
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+
+diff --git a/src/libinput.c b/src/libinput.c
+index a24cbff..9613fbd 100644
+--- a/src/libinput.c
 b/src/libinput.c
+@@ -259,7 +259,8 @@ LibinputApplyConfig(DeviceIntPtr dev)
+   driver_data-options.matrix[6], 
driver_data-options.matrix[7],
+   driver_data-options.matrix[8]);
+ 
+-  if (libinput_device_config_left_handed_set(device,
++  if (libinput_device_config_left_handed_is_available(device) 
++  libinput_device_config_left_handed_set(device,
+  
driver_data-options.left_handed) != LIBINPUT_CONFIG_STATUS_SUCCESS)
+   xf86IDrvMsg(pInfo, X_ERROR,
+   Failed to set LeftHanded to %d\n,
+@@ -283,11 +284,13 @@ 

[arch-commits] Commit in system-config-printer/trunk (PKGBUILD)

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 21:11:31
  Author: andyrtr
Revision: 231620

upgpkg: system-config-printer 1.5.5-2

remove unneeded python-gobject2 dep; FS#42707

Modified:
  system-config-printer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 19:55:20 UTC (rev 231619)
+++ PKGBUILD2015-02-16 20:11:31 UTC (rev 231620)
@@ -4,12 +4,12 @@
 
 pkgname=system-config-printer
 pkgver=1.5.5
-pkgrel=1
+pkgrel=2
 pkgdesc=A CUPS printer configuration tool and status applet
 url=http://cyberelk.net/tim/software/system-config-printer/;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('python-pycups' 'python-dbus' 'python-pycurl' 'python-gobject2' 
'libnotify'
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
  'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
 makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
 optdepends=('libgnome-keyring: password management'


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

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 19:20:11
  Author: andyrtr
Revision: 231615

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 231614, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/disable_upgrade.patch
(from rev 231614, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-i686/hplip.install
(from rev 231614, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 231614, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/disable_upgrade.patch
(from rev 231614, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-x86_64/hplip.install
(from rev 231614, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/disable_upgrade.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/disable_upgrade.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  168 +++
 /disable_upgrade.patch |   28 +
 /hplip.install |   36 +++
 extra-i686/PKGBUILD|   97 
 extra-i686/disable_upgrade.patch   |   14 --
 extra-i686/hplip.install   |   18 ---
 extra-x86_64/PKGBUILD  |   97 
 extra-x86_64/disable_upgrade.patch |   14 --
 extra-x86_64/hplip.install |   18 ---
 9 files changed, 232 insertions(+), 258 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-16 18:19:39 UTC (rev 231614)
+++ extra-i686/PKGBUILD 2015-02-16 18:20:11 UTC (rev 231615)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor : Rémy Oudompheng r...@archlinux.org
-# Contributor: Morgan LEFIEUX com...@archlinuxfr.org
-
-pkgname=hplip
-pkgver=3.15.2
-pkgrel=2
-pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
-arch=('i686' 'x86_64')
-url=http://hplipopensource.com;
-license=('GPL')
-depends=('python' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject2' 'sane' 'rpcbind' 'cups' 'libusb')
-optdepends=('cups: for printing support'
-'python-dbus: for dbus support'
-'sane: for scanner support'
-'python-pillow: for commandline scanning support'
-#'python2-notify: for Desktop notification support'
-'python-reportlab: for pdf output in hp-scan'
-'rpcbind: for network support'
-'python-pyqt4: for running GUI and hp-toolbox'
-'python-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
-sha1sums=('efebad73f29ab9f77d5a866c1c5d3857cc5f1df5'
-  'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
-validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
-
-prepare() {
- cd $pkgname-$pkgver
- 
-# export PYTHON=python2
- 
-# find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
-# sed -i 's|python ./print.py|python2 ./print.py|' scan.py
-# sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
-# sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
-# sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
-# sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-# sed -i 's|/usr/bin/python|/usr/bin/python2|' 
data/rules/hplip-printer@.service
- 
- # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip  ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- 

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

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 20:55:06
  Author: andyrtr
Revision: 231618

upgpkg: ghostscript 9.15-2

fix RELRO; FS#43234

Modified:
  ghostscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 18:53:52 UTC (rev 231617)
+++ PKGBUILD2015-02-16 19:55:06 UTC (rev 231618)
@@ -5,13 +5,13 @@
 
 pkgname=ghostscript
 pkgver=9.15
-pkgrel=1
+pkgrel=2
 pkgdesc=An interpreter for the PostScript language
 arch=('i686' 'x86_64')
 license=('AGPL' 'custom')
 depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng=1.5.7' 
'libjpeg'
  'libtiff=4.0.0' 'lcms2' 'dbus' 'libpaper')
-makedepends=('gtk3' 'gnutls')
+makedepends=('gtk3' 'gnutls' 'hardening-wrapper')
 optdepends=('texlive-core:  needed for dvipdf'
 'gtk3:  needed for gsx')
 url=http://www.ghostscript.com/;


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

2015-02-16 Thread Jaroslav Lichtblau
Date: Monday, February 16, 2015 @ 19:39:20
  Author: jlichtblau
Revision: 127808

archrelease: copy trunk to community-x86_64

Added:
  tellico/repos/community-x86_64/PKGBUILD
(from rev 127807, tellico/trunk/PKGBUILD)
  tellico/repos/community-x86_64/tellico.changelog
(from rev 127807, tellico/trunk/tellico.changelog)
  tellico/repos/community-x86_64/tellico.install
(from rev 127807, tellico/trunk/tellico.install)
Deleted:
  tellico/repos/community-x86_64/PKGBUILD
  tellico/repos/community-x86_64/tellico.changelog
  tellico/repos/community-x86_64/tellico.install

---+
 PKGBUILD  |   76 ++--
 tellico.changelog |   31 +++--
 tellico.install   |   26 -
 3 files changed, 68 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-16 18:39:11 UTC (rev 127807)
+++ PKGBUILD2015-02-16 18:39:20 UTC (rev 127808)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Ray Rashif sc...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-
-pkgname=tellico
-pkgver=2.3.9
-pkgrel=2
-pkgdesc=A collection manager for KDE
-arch=('i686' 'x86_64')
-url=http://tellico-project.org/;
-license=('GPL')
-depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
-makedepends=('automoc4' 'cmake')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('5184c130ea7561be6e72580105f30d5f160fd2fd5c9ffc7f7e16faf227a20114')
-
-build() {
-  cd ${srcdir}
-
-  mkdir build
-  cd build
-
-  cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-
-  make DESTDIR=${pkgdir} install
-
-# fix python 2.7 path
-  find ${pkgdir} -iname *.py | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: tellico/repos/community-x86_64/PKGBUILD (from rev 127807, 
tellico/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-16 18:39:20 UTC (rev 127808)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+
+pkgname=tellico
+pkgver=2.3.10
+pkgrel=1
+pkgdesc=A collection manager for KDE
+arch=('i686' 'x86_64')
+url=http://tellico-project.org/;
+license=('GPL')
+depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
+makedepends=('automoc4' 'cmake')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('e916101f86b6f843b85be42e8545aa7441cd496cbb9b81590e2e0bd03a58faaa')
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+# fix python 2.7 path
+  find ${pkgdir} -iname *.py | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: tellico.changelog
===
--- tellico.changelog   2015-02-16 18:39:11 UTC (rev 127807)
+++ tellico.changelog   2015-02-16 18:39:20 UTC (rev 127808)
@@ -1,14 +0,0 @@
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.9-1
-
-2014-03-09 Andrea Scarpino and...@archlinux.org
-   * tellico 2.3.8-5 be sure Nepomuk support is disabled
-
-2014-03-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.8-4 nepomuk support dropped in KDE SC 4.13 packages
-
-2013-07-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.8-1
-
-2013-01-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.7-1

Copied: tellico/repos/community-x86_64/tellico.changelog (from rev 127807, 
tellico/trunk/tellico.changelog)
===
--- tellico.changelog   (rev 0)
+++ tellico.changelog   2015-02-16 18:39:20 UTC (rev 127808)
@@ -0,0 +1,17 @@
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * tellico 2.3.10-1
+
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * tellico 2.3.9-1
+
+2014-03-09 Andrea Scarpino and...@archlinux.org
+   * tellico 2.3.8-5 be sure Nepomuk support is disabled
+
+2014-03-09 Jaroslav 

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

2015-02-16 Thread Jaroslav Lichtblau
Date: Monday, February 16, 2015 @ 19:56:33
  Author: jlichtblau
Revision: 127809

upgpkg: tellico 2.3.10-1
changelog date fix

Modified:
  tellico/trunk/tellico.changelog

---+
 tellico.changelog |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: tellico.changelog
===
--- tellico.changelog   2015-02-16 18:39:20 UTC (rev 127808)
+++ tellico.changelog   2015-02-16 18:56:33 UTC (rev 127809)
@@ -1,4 +1,4 @@
-2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+2015-02-16 Jaroslav Lichtblau svetlemo...@archlinux.org
* tellico 2.3.10-1
 
 2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org


[arch-commits] Commit in tellico/repos/community-i686 (6 files)

2015-02-16 Thread Jaroslav Lichtblau
Date: Monday, February 16, 2015 @ 19:56:45
  Author: jlichtblau
Revision: 127810

archrelease: copy trunk to community-i686

Added:
  tellico/repos/community-i686/PKGBUILD
(from rev 127809, tellico/trunk/PKGBUILD)
  tellico/repos/community-i686/tellico.changelog
(from rev 127809, tellico/trunk/tellico.changelog)
  tellico/repos/community-i686/tellico.install
(from rev 127809, tellico/trunk/tellico.install)
Deleted:
  tellico/repos/community-i686/PKGBUILD
  tellico/repos/community-i686/tellico.changelog
  tellico/repos/community-i686/tellico.install

---+
 PKGBUILD  |   76 ++--
 tellico.changelog |   31 +++--
 tellico.install   |   26 -
 3 files changed, 68 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-16 18:56:33 UTC (rev 127809)
+++ PKGBUILD2015-02-16 18:56:45 UTC (rev 127810)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Ray Rashif sc...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-
-pkgname=tellico
-pkgver=2.3.9
-pkgrel=2
-pkgdesc=A collection manager for KDE
-arch=('i686' 'x86_64')
-url=http://tellico-project.org/;
-license=('GPL')
-depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
-makedepends=('automoc4' 'cmake')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('5184c130ea7561be6e72580105f30d5f160fd2fd5c9ffc7f7e16faf227a20114')
-
-build() {
-  cd ${srcdir}
-
-  mkdir build
-  cd build
-
-  cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-
-  make DESTDIR=${pkgdir} install
-
-# fix python 2.7 path
-  find ${pkgdir} -iname *.py | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: tellico/repos/community-i686/PKGBUILD (from rev 127809, 
tellico/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-16 18:56:45 UTC (rev 127810)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+
+pkgname=tellico
+pkgver=2.3.10
+pkgrel=1
+pkgdesc=A collection manager for KDE
+arch=('i686' 'x86_64')
+url=http://tellico-project.org/;
+license=('GPL')
+depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
+makedepends=('automoc4' 'cmake')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('e916101f86b6f843b85be42e8545aa7441cd496cbb9b81590e2e0bd03a58faaa')
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+# fix python 2.7 path
+  find ${pkgdir} -iname *.py | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: tellico.changelog
===
--- tellico.changelog   2015-02-16 18:56:33 UTC (rev 127809)
+++ tellico.changelog   2015-02-16 18:56:45 UTC (rev 127810)
@@ -1,14 +0,0 @@
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.9-1
-
-2014-03-09 Andrea Scarpino and...@archlinux.org
-   * tellico 2.3.8-5 be sure Nepomuk support is disabled
-
-2014-03-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.8-4 nepomuk support dropped in KDE SC 4.13 packages
-
-2013-07-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.8-1
-
-2013-01-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tellico 2.3.7-1

Copied: tellico/repos/community-i686/tellico.changelog (from rev 127809, 
tellico/trunk/tellico.changelog)
===
--- tellico.changelog   (rev 0)
+++ tellico.changelog   2015-02-16 18:56:45 UTC (rev 127810)
@@ -0,0 +1,17 @@
+2015-02-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * tellico 2.3.10-1
+
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * tellico 2.3.9-1
+
+2014-03-09 Andrea Scarpino and...@archlinux.org
+   * tellico 2.3.8-5 be sure Nepomuk support is disabled
+
+2014-03-09 Jaroslav Lichtblau 

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

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 21:25:40
  Author: andyrtr
Revision: 231622

remove gst-plugins-base-libs from hard deps; FS#43705

Modified:
  libreoffice-still/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 20:11:47 UTC (rev 231621)
+++ PKGBUILD2015-02-16 20:25:40 UTC (rev 231622)
@@ -324,8 +324,7 @@
'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite'
'lcms2' 'poppler=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'gconf' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu'
-   'gst-plugins-base-libs' 'libxinerama')
+   'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libxinerama')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


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

2015-02-16 Thread Anatol Pomozov
Date: Monday, February 16, 2015 @ 21:53:16
  Author: anatolik
Revision: 231623

upgpkg: v4l-utils 1.6.2-1

Modified:
  v4l-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 20:25:40 UTC (rev 231622)
+++ PKGBUILD2015-02-16 20:53:16 UTC (rev 231623)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Thomas Bächler tho...@archlinux.org
 pkgname=v4l-utils
-pkgver=1.6.0
+pkgver=1.6.2
 pkgrel=1
 pkgdesc=Userspace tools and conversion library for Video 4 Linux
 arch=('i686' 'x86_64')
@@ -14,10 +14,10 @@
 makedepends=('qt4')
 optdepends=('qt4')
 depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
-source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2
-
http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2.asc)
-sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605'
+source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
+sha256sums=('d3d6eb1f0204fb11f3d318bfca35d5f73cc077f88fac7665a47856a16496be7d'
 'SKIP')
+validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 
gja...@googlemail.com
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-02-16 Thread Anatol Pomozov
Date: Monday, February 16, 2015 @ 21:53:57
  Author: anatolik
Revision: 231624

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  v4l-utils/repos/testing-i686/
  v4l-utils/repos/testing-i686/PKGBUILD
(from rev 231623, v4l-utils/trunk/PKGBUILD)
  v4l-utils/repos/testing-x86_64/
  v4l-utils/repos/testing-x86_64/PKGBUILD
(from rev 231623, v4l-utils/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   33 +
 testing-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: v4l-utils/repos/testing-i686/PKGBUILD (from rev 231623, 
v4l-utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-16 20:53:57 UTC (rev 231624)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+pkgname=v4l-utils
+pkgver=1.6.2
+pkgrel=1
+pkgdesc=Userspace tools and conversion library for Video 4 Linux
+arch=('i686' 'x86_64')
+url=http://linuxtv.org/;
+provides=(libv4l=$pkgver)
+replaces=('libv4l')
+conflicts=('libv4l')
+backup=(etc/rc_maps.cfg)
+license=('LGPL')
+makedepends=('qt4')
+optdepends=('qt4')
+depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
+source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
+sha256sums=('d3d6eb1f0204fb11f3d318bfca35d5f73cc077f88fac7665a47856a16496be7d'
+'SKIP')
+validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 
gja...@googlemail.com
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  MAKEFLAGS=-j1 make install DESTDIR=${pkgdir}/
+  rm ${pkgdir}/usr/bin/ivtv-ctl
+}

Copied: v4l-utils/repos/testing-x86_64/PKGBUILD (from rev 231623, 
v4l-utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-16 20:53:57 UTC (rev 231624)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+pkgname=v4l-utils
+pkgver=1.6.2
+pkgrel=1
+pkgdesc=Userspace tools and conversion library for Video 4 Linux
+arch=('i686' 'x86_64')
+url=http://linuxtv.org/;
+provides=(libv4l=$pkgver)
+replaces=('libv4l')
+conflicts=('libv4l')
+backup=(etc/rc_maps.cfg)
+license=('LGPL')
+makedepends=('qt4')
+optdepends=('qt4')
+depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo')
+source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2{,.asc})
+sha256sums=('d3d6eb1f0204fb11f3d318bfca35d5f73cc077f88fac7665a47856a16496be7d'
+'SKIP')
+validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny 
gja...@googlemail.com
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  MAKEFLAGS=-j1 make install DESTDIR=${pkgdir}/
+  rm ${pkgdir}/usr/bin/ivtv-ctl
+}


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

2015-02-16 Thread Bartłomiej Piotrowski
Date: Tuesday, February 17, 2015 @ 08:45:02
  Author: bpiotrowski
Revision: 127829

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mpv/repos/community-i686/PKGBUILD
(from rev 127828, mpv/trunk/PKGBUILD)
  mpv/repos/community-i686/mpv.install
(from rev 127828, mpv/trunk/mpv.install)
  mpv/repos/community-x86_64/PKGBUILD
(from rev 127828, mpv/trunk/PKGBUILD)
  mpv/repos/community-x86_64/mpv.install
(from rev 127828, mpv/trunk/mpv.install)
Deleted:
  mpv/repos/community-i686/PKGBUILD
  mpv/repos/community-i686/mpv.install
  mpv/repos/community-x86_64/PKGBUILD
  mpv/repos/community-x86_64/mpv.install

--+
 /PKGBUILD|  104 +
 /mpv.install |   24 +
 community-i686/PKGBUILD  |   53 
 community-i686/mpv.install   |   12 
 community-x86_64/PKGBUILD|   53 
 community-x86_64/mpv.install |   12 
 6 files changed, 128 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-17 07:44:59 UTC (rev 127828)
+++ community-i686/PKGBUILD 2015-02-17 07:45:02 UTC (rev 127829)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Eivind Uggedal eiv...@uggedal.com
-
-pkgname=mpv
-pkgver=0.7.3
-pkgrel=1
-pkgdesc='Video player based on MPlayer/mplayer2'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mpv.io'
-depends=(
-  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libgl' 'enca' 'libguess'
-  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc' 'wayland'
-  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
-  'libguess' 'portaudio' 'libxrandr'
-)
-makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
-optdepends=('youtube-dl: for video-sharing websites playback')
-options=('!emptydirs' '!buildflags')
-install=mpv.install
-source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('894e712235574fb78077e388f10c1cdd')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ./bootstrap.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./waf configure --prefix=/usr \
---confdir=/etc/mpv \
---enable-joystick \
---enable-zsh-comp \
---enable-libmpv-shared \
---enable-cdda \
---enable-portaudio
-
-  ./waf build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  ./waf install --destdir=$pkgdir
-
-  install -d $pkgdir/usr/share/doc/mpv/examples
-  install -m644 etc/{input,example}.conf \
-$pkgdir/usr/share/doc/mpv/examples
-  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
-$pkgdir/usr/share/doc/mpv
-}

Copied: mpv/repos/community-i686/PKGBUILD (from rev 127828, mpv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-17 07:45:02 UTC (rev 127829)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Eivind Uggedal eiv...@uggedal.com
+
+pkgname=mpv
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Video player based on MPlayer/mplayer2'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libgl' 'enca' 'libguess'
+  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc' 'wayland'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
+  'libguess' 'portaudio' 'libxrandr'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
+optdepends=('youtube-dl: for video-sharing websites playback')
+options=('!emptydirs' '!buildflags')
+install=mpv.install
+source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('7b8e910ffe6a36d1607330a5b8c2d82b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./bootstrap.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./waf configure --prefix=/usr \
+--confdir=/etc/mpv \
+--enable-joystick \
+--enable-zsh-comp \
+--enable-libmpv-shared \
+--enable-cdda
+
+  ./waf build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  ./waf install --destdir=$pkgdir
+
+  install -d $pkgdir/usr/share/doc/mpv/examples
+  install -m644 etc/{input,example}.conf \
+$pkgdir/usr/share/doc/mpv/examples
+  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
+$pkgdir/usr/share/doc/mpv
+}

Deleted: community-i686/mpv.install
===
--- community-i686/mpv.install  2015-02-17 07:44:59 UTC (rev 127828)
+++ community-i686/mpv.install  2015-02-17 07:45:02 UTC (rev 127829)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 

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

2015-02-16 Thread Bartłomiej Piotrowski
Date: Tuesday, February 17, 2015 @ 08:44:59
  Author: bpiotrowski
Revision: 127828

upgpkg: mpv 0.8.0-1

new upstream release

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 02:50:12 UTC (rev 127827)
+++ PKGBUILD2015-02-17 07:44:59 UTC (rev 127828)
@@ -3,7 +3,7 @@
 # Contributor: Eivind Uggedal eiv...@uggedal.com
 
 pkgname=mpv
-pkgver=0.7.3
+pkgver=0.8.0
 pkgrel=1
 pkgdesc='Video player based on MPlayer/mplayer2'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 options=('!emptydirs' '!buildflags')
 install=mpv.install
 source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('894e712235574fb78077e388f10c1cdd')
+md5sums=('7b8e910ffe6a36d1607330a5b8c2d82b')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -35,8 +35,7 @@
 --enable-joystick \
 --enable-zsh-comp \
 --enable-libmpv-shared \
---enable-cdda \
---enable-portaudio
+--enable-cdda
 
   ./waf build
 }


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

2015-02-16 Thread Bartłomiej Piotrowski
Date: Tuesday, February 17, 2015 @ 08:48:14
  Author: bpiotrowski
Revision: 231638

upgpkg: libunistring 0.9.5-1

new upstream release

Modified:
  libunistring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 04:29:41 UTC (rev 231637)
+++ PKGBUILD2015-02-17 07:48:14 UTC (rev 231638)
@@ -5,7 +5,7 @@
 # Contributor: Patrick McCarty pnorcks at gmail dot com
 
 pkgname=libunistring
-pkgver=0.9.4
+pkgver=0.9.5
 pkgrel=1
 pkgdesc=Library for manipulating Unicode strings and C strings
 url=http://www.gnu.org/software/libunistring/;
@@ -14,7 +14,7 @@
 depends=('glibc')
 install=libunistring.install
 source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('c24a6a3838d9ad4a41a62549312c4226')
+md5sums=('1a705bcdcb83799d544137617b377cfd')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2015-02-16 Thread Bartłomiej Piotrowski
Date: Tuesday, February 17, 2015 @ 08:48:17
  Author: bpiotrowski
Revision: 231639

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libunistring/repos/testing-i686/
  libunistring/repos/testing-i686/PKGBUILD
(from rev 231638, libunistring/trunk/PKGBUILD)
  libunistring/repos/testing-i686/libunistring.install
(from rev 231638, libunistring/trunk/libunistring.install)
  libunistring/repos/testing-x86_64/
  libunistring/repos/testing-x86_64/PKGBUILD
(from rev 231638, libunistring/trunk/PKGBUILD)
  libunistring/repos/testing-x86_64/libunistring.install
(from rev 231638, libunistring/trunk/libunistring.install)

-+
 testing-i686/PKGBUILD   |   28 
 testing-i686/libunistring.install   |   22 ++
 testing-x86_64/PKGBUILD |   28 
 testing-x86_64/libunistring.install |   22 ++
 4 files changed, 100 insertions(+)

Copied: libunistring/repos/testing-i686/PKGBUILD (from rev 231638, 
libunistring/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-17 07:48:17 UTC (rev 231639)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Emmanuel 'guinness' Boudreault
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+
+pkgname=libunistring
+pkgver=0.9.5
+pkgrel=1
+pkgdesc=Library for manipulating Unicode strings and C strings
+url=http://www.gnu.org/software/libunistring/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc')
+install=libunistring.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('1a705bcdcb83799d544137617b377cfd')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libunistring/repos/testing-i686/libunistring.install (from rev 231638, 
libunistring/trunk/libunistring.install)
===
--- testing-i686/libunistring.install   (rev 0)
+++ testing-i686/libunistring.install   2015-02-17 07:48:17 UTC (rev 231639)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(libunistring.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libunistring/repos/testing-x86_64/PKGBUILD (from rev 231638, 
libunistring/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-17 07:48:17 UTC (rev 231639)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Emmanuel 'guinness' Boudreault
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+
+pkgname=libunistring
+pkgver=0.9.5
+pkgrel=1
+pkgdesc=Library for manipulating Unicode strings and C strings
+url=http://www.gnu.org/software/libunistring/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc')
+install=libunistring.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('1a705bcdcb83799d544137617b377cfd')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libunistring/repos/testing-x86_64/libunistring.install (from rev 
231638, libunistring/trunk/libunistring.install)
===
--- testing-x86_64/libunistring.install (rev 0)
+++ testing-x86_64/libunistring.install 2015-02-17 07:48:17 UTC (rev 231639)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(libunistring.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in mailman/repos (84 files)

2015-02-16 Thread Sébastien Luttringer
Date: Tuesday, February 17, 2015 @ 01:54:58
  Author: seblu
Revision: 127813

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mailman/repos/community-i686/01-mailman-2.1-build.patch
(from rev 127812, mailman/trunk/01-mailman-2.1-build.patch)
  mailman/repos/community-i686/PKGBUILD
(from rev 127812, mailman/trunk/PKGBUILD)
  mailman/repos/community-i686/mailman-checkdbs.service
(from rev 127812, mailman/trunk/mailman-checkdbs.service)
  mailman/repos/community-i686/mailman-checkdbs.timer
(from rev 127812, mailman/trunk/mailman-checkdbs.timer)
  mailman/repos/community-i686/mailman-cullbadshunt.service
(from rev 127812, mailman/trunk/mailman-cullbadshunt.service)
  mailman/repos/community-i686/mailman-cullbadshunt.timer
(from rev 127812, mailman/trunk/mailman-cullbadshunt.timer)
  mailman/repos/community-i686/mailman-disabled.service
(from rev 127812, mailman/trunk/mailman-disabled.service)
  mailman/repos/community-i686/mailman-disabled.timer
(from rev 127812, mailman/trunk/mailman-disabled.timer)
  mailman/repos/community-i686/mailman-gatenews.service
(from rev 127812, mailman/trunk/mailman-gatenews.service)
  mailman/repos/community-i686/mailman-gatenews.timer
(from rev 127812, mailman/trunk/mailman-gatenews.timer)
  mailman/repos/community-i686/mailman-mailpasswds.service
(from rev 127812, mailman/trunk/mailman-mailpasswds.service)
  mailman/repos/community-i686/mailman-mailpasswds.timer
(from rev 127812, mailman/trunk/mailman-mailpasswds.timer)
  mailman/repos/community-i686/mailman-nightlygzip.service
(from rev 127812, mailman/trunk/mailman-nightlygzip.service)
  mailman/repos/community-i686/mailman-nightlygzip.timer
(from rev 127812, mailman/trunk/mailman-nightlygzip.timer)
  mailman/repos/community-i686/mailman-senddigests.service
(from rev 127812, mailman/trunk/mailman-senddigests.service)
  mailman/repos/community-i686/mailman-senddigests.timer
(from rev 127812, mailman/trunk/mailman-senddigests.timer)
  mailman/repos/community-i686/mailman.install
(from rev 127812, mailman/trunk/mailman.install)
  mailman/repos/community-i686/mailman.profile.csh
(from rev 127812, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-i686/mailman.profile.sh
(from rev 127812, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-i686/mailman.service
(from rev 127812, mailman/trunk/mailman.service)
  mailman/repos/community-i686/mailman.sysusers
(from rev 127812, mailman/trunk/mailman.sysusers)
  mailman/repos/community-x86_64/01-mailman-2.1-build.patch
(from rev 127812, mailman/trunk/01-mailman-2.1-build.patch)
  mailman/repos/community-x86_64/PKGBUILD
(from rev 127812, mailman/trunk/PKGBUILD)
  mailman/repos/community-x86_64/mailman-checkdbs.service
(from rev 127812, mailman/trunk/mailman-checkdbs.service)
  mailman/repos/community-x86_64/mailman-checkdbs.timer
(from rev 127812, mailman/trunk/mailman-checkdbs.timer)
  mailman/repos/community-x86_64/mailman-cullbadshunt.service
(from rev 127812, mailman/trunk/mailman-cullbadshunt.service)
  mailman/repos/community-x86_64/mailman-cullbadshunt.timer
(from rev 127812, mailman/trunk/mailman-cullbadshunt.timer)
  mailman/repos/community-x86_64/mailman-disabled.service
(from rev 127812, mailman/trunk/mailman-disabled.service)
  mailman/repos/community-x86_64/mailman-disabled.timer
(from rev 127812, mailman/trunk/mailman-disabled.timer)
  mailman/repos/community-x86_64/mailman-gatenews.service
(from rev 127812, mailman/trunk/mailman-gatenews.service)
  mailman/repos/community-x86_64/mailman-gatenews.timer
(from rev 127812, mailman/trunk/mailman-gatenews.timer)
  mailman/repos/community-x86_64/mailman-mailpasswds.service
(from rev 127812, mailman/trunk/mailman-mailpasswds.service)
  mailman/repos/community-x86_64/mailman-mailpasswds.timer
(from rev 127812, mailman/trunk/mailman-mailpasswds.timer)
  mailman/repos/community-x86_64/mailman-nightlygzip.service
(from rev 127812, mailman/trunk/mailman-nightlygzip.service)
  mailman/repos/community-x86_64/mailman-nightlygzip.timer
(from rev 127812, mailman/trunk/mailman-nightlygzip.timer)
  mailman/repos/community-x86_64/mailman-senddigests.service
(from rev 127812, mailman/trunk/mailman-senddigests.service)
  mailman/repos/community-x86_64/mailman-senddigests.timer
(from rev 127812, mailman/trunk/mailman-senddigests.timer)
  mailman/repos/community-x86_64/mailman.install
(from rev 127812, mailman/trunk/mailman.install)
  mailman/repos/community-x86_64/mailman.profile.csh
(from rev 127812, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-x86_64/mailman.profile.sh
(from rev 127812, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-x86_64/mailman.service
(from rev 127812, mailman/trunk/mailman.service)
  mailman/repos/community-x86_64/mailman.sysusers
(from rev 127812, mailman/trunk/mailman.sysusers)

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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 02:51:41
  Author: eric
Revision: 127817

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 127816, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 127816, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 127816, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-17 01:51:41 UTC (rev 127817)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 127816, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-02-17 01:51:41 UTC (rev 127817)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+


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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 02:49:32
  Author: eric
Revision: 127816

upgpkg: libopenshot 0.0.3-2

Rebuild against imagemagick 6.9.0.5

Modified:
  libopenshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 01:09:08 UTC (rev 127815)
+++ PKGBUILD2015-02-17 01:49:32 UTC (rev 127816)
@@ -1,4 +1,4 @@
-# $Id:
+# $Id$
 # Maintainer : Martin Wimpress c...@flexion.org
 # Contributor: Foster McLane fkmcl...@gmail.com
 # Contributor: Jonathan Thomas jonat...@openshot.org
@@ -5,7 +5,7 @@
 
 pkgname=libopenshot
 pkgver=0.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
 arch=('i686' 'x86_64')
 url=http://openshot.org/;


[arch-commits] Commit in nftables/trunk (4 files)

2015-02-16 Thread Sébastien Luttringer
Date: Tuesday, February 17, 2015 @ 01:32:29
  Author: seblu
Revision: 231628

upgpkg: nftables 1:0.4-3

- fix FS#43401

Added:
  nftables/trunk/nftables-reload
(from rev 231627, nftables/trunk/nftables-flush)
Modified:
  nftables/trunk/PKGBUILD
  nftables/trunk/nftables.service
Deleted:
  nftables/trunk/nftables-flush

--+
 PKGBUILD |   10 +-
 nftables-flush   |   32 
 nftables-reload  |3 +++
 nftables.service |3 ++-
 4 files changed, 10 insertions(+), 38 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 23:57:38 UTC (rev 231627)
+++ PKGBUILD2015-02-17 00:32:29 UTC (rev 231628)
@@ -4,7 +4,7 @@
 pkgname=nftables
 epoch=1
 pkgver=0.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Netfilter tables userspace tools'
 arch=('i686' 'x86_64')
 url='http://netfilter.org/projects/nftables/'
@@ -16,12 +16,12 @@
 
source=(http://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2{,.sig}
 'nftables.conf'
 'nftables.service'
-'nftables-flush')
+'nftables-reload')
 sha1sums=('c557c710510c59e4280d271e5b7232af7ba3fbb7'
   'SKIP'
   'a7146fad414f9e827e2e83b630308890c876b80d'
-  'a5c1cd98534c3758db1e773ad2a134649a6ac8ac'
-  '30ec956a52407ce1b4f1748f91184b3ff0bb9b7a')
+  '65833b9c5b777cfb3a0776060c569a727ce6f460'
+  'd9f40e751b44dd9dc9fdb3b7eba3cc0a9b7e1b01')
 
 build() {
   cd $pkgname-$pkgver
@@ -41,7 +41,7 @@
   install -Dm644 nftables.conf $pkgdir/etc/nftables.conf
   # systemd
   install -Dm644 nftables.service 
$pkgdir/usr/lib/systemd/system/nftables.service
-  install -Dm755 nftables-flush 
$pkgdir/usr/lib/systemd/scripts/nftables-flush
+  install -Dm755 nftables-reload 
$pkgdir/usr/lib/systemd/scripts/nftables-reload
 }
 
 # vim:set ts=2 sw=2 et:

Deleted: nftables-flush
===
--- nftables-flush  2015-02-16 23:57:38 UTC (rev 231627)
+++ nftables-flush  2015-02-17 00:32:29 UTC (rev 231628)
@@ -1,32 +0,0 @@
-#!/bin/bash
-
-# Copyright © Sébastien Luttringer
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
-
-PROTOS=(ip ip6 inet arp bridge)
-
-for proto in ${PROTOS[@]}; do
-  nft list tables $proto|cut -f 2 -d ' '| while read table; do
-nft flush table $proto $table
-# Flush removes rules but not chains (contradictory to the man page). Do 
it manually.
-nft list table $proto $table|awk '/^[ \t]+chain/{ print $2 }'|while 
read chain; do
-  nft delete chain $proto $table $chain
-done
-nft delete table $proto $table
-  done
-done
-
-# vim:set ts=2 sw=2 et:

Copied: nftables/trunk/nftables-reload (from rev 231627, 
nftables/trunk/nftables-flush)
===
--- nftables-reload (rev 0)
+++ nftables-reload 2015-02-17 00:32:29 UTC (rev 231628)
@@ -0,0 +1,3 @@
+#!/usr/bin/nft -f
+flush ruleset
+include /etc/nftables.conf

Modified: nftables.service
===
--- nftables.service2015-02-16 23:57:38 UTC (rev 231627)
+++ nftables.service2015-02-17 00:32:29 UTC (rev 231628)
@@ -7,7 +7,8 @@
 [Service]
 Type=oneshot
 ExecStart=/usr/bin/nft -f /etc/nftables.conf
-ExecStop=/usr/lib/systemd/scripts/nftables-flush
+ExecReload=/usr/bin/nft -f /usr/lib/systemd/scripts/nftables-reload
+ExecStop=/usr/bin/nft flush ruleset
 RemainAfterExit=yes
 
 [Install]


[arch-commits] Commit in nftables/repos (16 files)

2015-02-16 Thread Sébastien Luttringer
Date: Tuesday, February 17, 2015 @ 01:32:58
  Author: seblu
Revision: 231629

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  nftables/repos/extra-i686/PKGBUILD
(from rev 231628, nftables/trunk/PKGBUILD)
  nftables/repos/extra-i686/nftables-reload
(from rev 231628, nftables/trunk/nftables-reload)
  nftables/repos/extra-i686/nftables.conf
(from rev 231628, nftables/trunk/nftables.conf)
  nftables/repos/extra-i686/nftables.service
(from rev 231628, nftables/trunk/nftables.service)
  nftables/repos/extra-x86_64/PKGBUILD
(from rev 231628, nftables/trunk/PKGBUILD)
  nftables/repos/extra-x86_64/nftables-reload
(from rev 231628, nftables/trunk/nftables-reload)
  nftables/repos/extra-x86_64/nftables.conf
(from rev 231628, nftables/trunk/nftables.conf)
  nftables/repos/extra-x86_64/nftables.service
(from rev 231628, nftables/trunk/nftables.service)
Deleted:
  nftables/repos/extra-i686/PKGBUILD
  nftables/repos/extra-i686/nftables-flush
  nftables/repos/extra-i686/nftables.conf
  nftables/repos/extra-i686/nftables.service
  nftables/repos/extra-x86_64/PKGBUILD
  nftables/repos/extra-x86_64/nftables-flush
  nftables/repos/extra-x86_64/nftables.conf
  nftables/repos/extra-x86_64/nftables.service

---+
 /PKGBUILD |   94 
 /nftables.conf|   76 
 /nftables.service |   30 
 extra-i686/PKGBUILD   |   47 
 extra-i686/nftables-flush |   32 -
 extra-i686/nftables-reload|3 +
 extra-i686/nftables.conf  |   38 
 extra-i686/nftables.service   |   14 -
 extra-x86_64/PKGBUILD |   47 
 extra-x86_64/nftables-flush   |   32 -
 extra-x86_64/nftables-reload  |3 +
 extra-x86_64/nftables.conf|   38 
 extra-x86_64/nftables.service |   14 -
 13 files changed, 206 insertions(+), 262 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-17 00:32:29 UTC (rev 231628)
+++ extra-i686/PKGBUILD 2015-02-17 00:32:58 UTC (rev 231629)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-
-pkgname=nftables
-epoch=1
-pkgver=0.4
-pkgrel=2
-pkgdesc='Netfilter tables userspace tools'
-arch=('i686' 'x86_64')
-url='http://netfilter.org/projects/nftables/'
-license=('GPL2')
-depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses')
-makedepends=('docbook2x')
-backup=('etc/nftables.conf')
-validpgpkeys=('57FF5E9C9AA67A860B557AF7A4111F89BB5F58CC') # Netfilter Core Team
-source=(http://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2{,.sig}
-'nftables.conf'
-'nftables.service'
-'nftables-flush')
-sha1sums=('c557c710510c59e4280d271e5b7232af7ba3fbb7'
-  'SKIP'
-  'a7146fad414f9e827e2e83b630308890c876b80d'
-  'a5c1cd98534c3758db1e773ad2a134649a6ac8ac'
-  '30ec956a52407ce1b4f1748f91184b3ff0bb9b7a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/usr/share \
-CONFIG_MAN=y DB2MAN=docbook2man
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  popd
-  # basic safe firewall config
-  install -Dm644 nftables.conf $pkgdir/etc/nftables.conf
-  # systemd
-  install -Dm644 nftables.service 
$pkgdir/usr/lib/systemd/system/nftables.service
-  install -Dm755 nftables-flush 
$pkgdir/usr/lib/systemd/scripts/nftables-flush
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nftables/repos/extra-i686/PKGBUILD (from rev 231628, 
nftables/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-17 00:32:58 UTC (rev 231629)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+
+pkgname=nftables
+epoch=1
+pkgver=0.4
+pkgrel=3
+pkgdesc='Netfilter tables userspace tools'
+arch=('i686' 'x86_64')
+url='http://netfilter.org/projects/nftables/'
+license=('GPL2')
+depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses')
+makedepends=('docbook2x')
+backup=('etc/nftables.conf')
+validpgpkeys=('57FF5E9C9AA67A860B557AF7A4111F89BB5F58CC') # Netfilter Core Team
+source=(http://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2{,.sig}
+'nftables.conf'
+'nftables.service'
+'nftables-reload')
+sha1sums=('c557c710510c59e4280d271e5b7232af7ba3fbb7'
+  'SKIP'
+  'a7146fad414f9e827e2e83b630308890c876b80d'
+  '65833b9c5b777cfb3a0776060c569a727ce6f460'
+  'd9f40e751b44dd9dc9fdb3b7eba3cc0a9b7e1b01')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/usr/share \
+CONFIG_MAN=y DB2MAN=docbook2man

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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 01:33:08
  Author: eric
Revision: 231630

upgpkg: pstoedit 3.70-2

Rebuild against imagemagick 6.9.0.5

Modified:
  pstoedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 00:32:58 UTC (rev 231629)
+++ PKGBUILD2015-02-17 00:33:08 UTC (rev 231630)
@@ -5,7 +5,7 @@
 
 pkgname=pstoedit
 pkgver=3.70
-pkgrel=1
+pkgrel=2
 pkgdesc=Translates PostScript and PDF graphics into other vector formats
 arch=('i686' 'x86_64')
 url=http://www.pstoedit.net/;


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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 01:35:01
  Author: eric
Revision: 231631

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  pstoedit/repos/staging-i686/
  pstoedit/repos/staging-i686/PKGBUILD
(from rev 231630, pstoedit/trunk/PKGBUILD)
  pstoedit/repos/staging-x86_64/
  pstoedit/repos/staging-x86_64/PKGBUILD
(from rev 231630, pstoedit/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: pstoedit/repos/staging-i686/PKGBUILD (from rev 231630, 
pstoedit/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-17 00:35:01 UTC (rev 231631)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Tobias Powalowski t.p...@gmx.de
+
+pkgname=pstoedit
+pkgver=3.70
+pkgrel=2
+pkgdesc=Translates PostScript and PDF graphics into other vector formats
+arch=('i686' 'x86_64')
+url=http://www.pstoedit.net/;
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
+sha1sums=('657f8f7070fde1432cd65a34b6b1c4b5b42f8b50')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's/-pedantic//' configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: pstoedit/repos/staging-x86_64/PKGBUILD (from rev 231630, 
pstoedit/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-17 00:35:01 UTC (rev 231631)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Tobias Powalowski t.p...@gmx.de
+
+pkgname=pstoedit
+pkgver=3.70
+pkgrel=2
+pkgdesc=Translates PostScript and PDF graphics into other vector formats
+arch=('i686' 'x86_64')
+url=http://www.pstoedit.net/;
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
+sha1sums=('657f8f7070fde1432cd65a34b6b1c4b5b42f8b50')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's/-pedantic//' configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}


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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 02:09:08
  Author: eric
Revision: 127815

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  converseen/repos/community-staging-i686/
  converseen/repos/community-staging-i686/PKGBUILD
(from rev 127814, converseen/trunk/PKGBUILD)
  converseen/repos/community-staging-i686/converseen.install
(from rev 127814, converseen/trunk/converseen.install)
  converseen/repos/community-staging-x86_64/
  converseen/repos/community-staging-x86_64/PKGBUILD
(from rev 127814, converseen/trunk/PKGBUILD)
  converseen/repos/community-staging-x86_64/converseen.install
(from rev 127814, converseen/trunk/converseen.install)

-+
 community-staging-i686/PKGBUILD |   32 ++
 community-staging-i686/converseen.install   |   11 
 community-staging-x86_64/PKGBUILD   |   32 ++
 community-staging-x86_64/converseen.install |   11 
 4 files changed, 86 insertions(+)

Copied: converseen/repos/community-staging-i686/PKGBUILD (from rev 127814, 
converseen/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-17 01:09:08 UTC (rev 127815)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: archtux antonio.arias9 at gmail.com
+
+pkgname=converseen
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=The batch image converter and resizer
+arch=('i686' 'x86_64')
+url=http://converseen.fasterland.net/;
+license=('GPL3')
+depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp' 'openjpeg2' 
'librsvg' 'ghostscript')
+makedepends=('cmake')
+install=converseen.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('64c82e30ad929d2ffe2a630fd8974709')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: converseen/repos/community-staging-i686/converseen.install (from rev 
127814, converseen/trunk/converseen.install)
===
--- community-staging-i686/converseen.install   (rev 0)
+++ community-staging-i686/converseen.install   2015-02-17 01:09:08 UTC (rev 
127815)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}

Copied: converseen/repos/community-staging-x86_64/PKGBUILD (from rev 127814, 
converseen/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-02-17 01:09:08 UTC (rev 127815)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: archtux antonio.arias9 at gmail.com
+
+pkgname=converseen
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=The batch image converter and resizer
+arch=('i686' 'x86_64')
+url=http://converseen.fasterland.net/;
+license=('GPL3')
+depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp' 'openjpeg2' 
'librsvg' 'ghostscript')
+makedepends=('cmake')
+install=converseen.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('64c82e30ad929d2ffe2a630fd8974709')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: converseen/repos/community-staging-x86_64/converseen.install (from rev 
127814, converseen/trunk/converseen.install)
===
--- community-staging-x86_64/converseen.install (rev 0)
+++ community-staging-x86_64/converseen.install 2015-02-17 01:09:08 UTC (rev 
127815)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}


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

2015-02-16 Thread Sébastien Luttringer
Date: Tuesday, February 17, 2015 @ 01:53:13
  Author: seblu
Revision: 127812

upgpkg: mailman 2.1.18.1-3

- fix FS#43442
- fix FS#43441

Modified:
  mailman/trunk/PKGBUILD
  mailman/trunk/mailman-disabled.service
  mailman/trunk/mailman-gatenews.timer

--+
 PKGBUILD |8 
 mailman-disabled.service |2 +-
 mailman-gatenews.timer   |2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 20:13:19 UTC (rev 127811)
+++ PKGBUILD2015-02-17 00:53:13 UTC (rev 127812)
@@ -5,7 +5,7 @@
 pkgname=mailman
 _pkgver=2.1.18-1
 pkgver=${_pkgver//-/.}
-pkgrel=2
+pkgrel=3
 pkgdesc='The GNU Mailing List Manager'
 arch=(i686 x86_64)
 license=('GPL')
@@ -12,7 +12,7 @@
 url='http://www.list.org/'
 # we need to have the mailman user to build mailman
 makedepends=('mailman')
-depends=('glibc' 'python2' 'smtp-server' 'python2-dnspython')
+depends=('glibc' 'python2' 'smtp-server' 'python2-dnspython' 'systemd')
 # 'Defaults.py' should not be changed by users; 'mm_cfg.py' should instead.
 backup=('usr/lib/mailman/Mailman/mm_cfg.py')
 install=$pkgname.install
@@ -45,10 +45,10 @@
  'd38ca2687bc1c7ca29e4d1af441b5f17'
  'd71b28a3d494b440fb1578364fd80236'
  '58718e2d6b68d8df1d9ff2bd5770ff58'
- 'ecb9b0627fa3aa85ad44bb56c5f5643f'
+ 'a705ef30ef02c281b34b41e88de767ae'
  '0ee3a7e6d2d3aff76a235d1afad2ac95'
  'df24d28d015cef1fc5b1ea10b43eb92a'
- '87dfda1767cdbc1e230963c0433988fd'
+ '61670d3c175556ff4c8a5d8f3078dc1e'
  'ed8858c034aef43a36b5c99f0faabf36'
  '43cb4ab9cc2c4d840a398ec4ae0a53b2'
  '998d3d57353a0cc6d4c742a9607c2108'

Modified: mailman-disabled.service
===
--- mailman-disabled.service2015-02-16 20:13:19 UTC (rev 127811)
+++ mailman-disabled.service2015-02-17 00:53:13 UTC (rev 127812)
@@ -4,7 +4,7 @@
 
 [Service]
 Type=oneshot
-ExecStart=/usr/bin/python2 -S /usr/lib/mailman/cron/mailpasswds
+ExecStart=/usr/bin/python2 -S /usr/lib/mailman/cron/disabled
 Nice=19
 IOSchedulingClass=best-effort
 IOSchedulingPriority=7

Modified: mailman-gatenews.timer
===
--- mailman-gatenews.timer  2015-02-16 20:13:19 UTC (rev 127811)
+++ mailman-gatenews.timer  2015-02-17 00:53:13 UTC (rev 127812)
@@ -2,7 +2,7 @@
 Description=Periodic mailman gate_news
 
 [Timer]
-OnCalendar=*/5:00:00
+OnCalendar=*:0/5
 AccuracySec=5m
 Persistent=true
 


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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 02:07:19
  Author: eric
Revision: 127814

upgpkg: converseen 0.9.0-2

Rebuild against imagemagick 6.9.0.5

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 00:54:58 UTC (rev 127813)
+++ PKGBUILD2015-02-17 01:07:19 UTC (rev 127814)
@@ -4,7 +4,7 @@
 
 pkgname=converseen
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=The batch image converter and resizer
 arch=('i686' 'x86_64')
 url=http://converseen.fasterland.net/;


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

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 13:43:09
  Author: arodseth
Revision: 127797

upgpkg: sxhkd 0.5.4-1

Modified:
  sxhkd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 12:19:09 UTC (rev 127796)
+++ PKGBUILD2015-02-16 12:43:09 UTC (rev 127797)
@@ -9,7 +9,7 @@
 url='https://github.com/baskerville/sxhkd'
 license=('custom:BSD')
 depends=('libxcb' 'xcb-util-keysyms')
-makedepends=('xcb-util')
+makedepends=('xcb-util' 'git')
 source=(git://github.com/baskerville/sxhkd.git#tag=$pkgver)
 md5sums=('SKIP')
 


[arch-commits] Commit in jenkins/repos/community-any (12 files)

2015-02-16 Thread Felix Yan
Date: Tuesday, February 17, 2015 @ 03:15:28
  Author: fyan
Revision: 127823

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 127822, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 127822, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 127822, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 127822, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 127822, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 127822, jenkins/trunk/jenkins.tmpfiles.d)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.tmpfiles.d

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-02-17 02:14:55 UTC (rev 127822)
+++ LICENSE 2015-02-17 02:15:28 UTC (rev 127823)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-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: jenkins/repos/community-any/LICENSE (from rev 127822, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-02-17 02:15:28 UTC (rev 127823)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+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.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-17 02:14:55 UTC (rev 127822)
+++ PKGBUILD2015-02-17 02:15:28 UTC (rev 127823)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Marcel Huber marcelhuberfoo at gmail dott com
-# Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
-
-pkgname=jenkins
-pkgver=1.598
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')

[arch-commits] Commit in systemd/repos (12 files)

2015-02-16 Thread Dave Reisner
Date: Tuesday, February 17, 2015 @ 05:29:41
  Author: dreisner
Revision: 231637

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 231636, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 231636, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 231636, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 231636, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/systemd.install
(from rev 231636, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 231636, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 231636, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 231636, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 231636, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/systemd.install
(from rev 231636, systemd/trunk/systemd.install)

-+
 testing-i686/PKGBUILD   |  160 +
 testing-i686/initcpio-hook-udev |   22 +++
 testing-i686/initcpio-install-systemd   |  169 +++
 testing-i686/initcpio-install-udev  |   29 
 testing-i686/systemd.install|  187 ++
 testing-x86_64/PKGBUILD |  160 +
 testing-x86_64/initcpio-hook-udev   |   22 +++
 testing-x86_64/initcpio-install-systemd |  169 +++
 testing-x86_64/initcpio-install-udev|   29 
 testing-x86_64/systemd.install  |  187 ++
 10 files changed, 1134 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 231636, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-17 04:29:41 UTC (rev 231637)
@@ -0,0 +1,160 @@
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Tom Gundersen t...@jklm.no
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+pkgver=219
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://www.freedesktop.org/wiki/Software/systemd;
+makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gobject-introspection' 'gperf'
+ 'gtk-doc' 'intltool' 'kmod' 'libcap' 'libidn' 'libgcrypt' 
'libmicrohttpd'
+ 'libxslt' 'util-linux' 'linux-api-headers' 'lz4' 'pam' 'python'
+ 'python-lxml' 'quota-tools' 'shadow' 'xz')
+options=('strip' 'debug')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz;
+'initcpio-hook-udev'
+'initcpio-install-systemd'
+'initcpio-install-udev')
+md5sums=('e0d6c9a4b4f69f66932d2230298c9a34'
+ '90ea67a7bb237502094914622a39e281'
+ 'c9db3010602913559295de3481019681'
+ 'bde43090d4ac0ef048e3eaee8202a407')
+
+build() {
+  cd $pkgname-$pkgver
+
+  local timeservers=({0..3}.arch.pool.ntp.org)
+
+  ./configure \
+  --libexecdir=/usr/lib \
+  --localstatedir=/var \
+  --sysconfdir=/etc \
+  --enable-introspection \
+  --enable-gtk-doc \
+  --enable-lz4 \
+  --enable-compat-libs \
+  --disable-audit \
+  --disable-ima \
+  --disable-kdbus \
+  --with-sysvinit-path= \
+  --with-sysvrcnd-path= \
+  --with-ntp-servers=${timeservers[*]}
+
+  make
+}
+
+package_systemd() {
+  pkgdesc=system and service manager
+  license=('GPL2' 'LGPL2.1' 'MIT')
+  depends=('acl' 'bash' 'dbus' 'glib2' 'kbd' 'kmod' 'hwids' 'libcap' 
'libgcrypt'
+   'libsystemd' 'libidn' 'lz4' 'pam' 'libseccomp' 'util-linux' 'xz')
+  provides=('nss-myhostname' systemd-tools=$pkgver udev=$pkgver)
+  replaces=('nss-myhostname' 'systemd-tools' 'udev')
+  conflicts=('nss-myhostname' 'systemd-tools' 'udev')
+  optdepends=('python: systemd library bindings'
+  'cryptsetup: required for encrypted block devices'
+  'libmicrohttpd: remote journald capabilities'
+  'quota-tools: kernel-level quota management'
+  'systemd-sysvcompat: symlink package to provide sysvinit 
binaries'
+  'polkit: allow administration as unprivileged user')
+  backup=(etc/dbus-1/system.d/org.freedesktop.systemd1.conf
+  etc/dbus-1/system.d/org.freedesktop.hostname1.conf
+  etc/dbus-1/system.d/org.freedesktop.login1.conf
+  etc/dbus-1/system.d/org.freedesktop.locale1.conf
+  etc/dbus-1/system.d/org.freedesktop.machine1.conf
+  etc/dbus-1/system.d/org.freedesktop.timedate1.conf
+  

[arch-commits] Commit in systemd/trunk (19 files)

2015-02-16 Thread Dave Reisner
Date: Tuesday, February 17, 2015 @ 05:28:59
  Author: dreisner
Revision: 231636

upgpkg: systemd 219-1

Modified:
  systemd/trunk/PKGBUILD
Deleted:
  systemd/trunk/0001-journal-fix-dangling-else-ambiguity.patch
  systemd/trunk/0002-nspawn-properly-validate-machine-names.patch
  systemd/trunk/0003-systemctl-fix-argument-handling-when-invoked-as-shut.patch
  systemd/trunk/0004-systemctl-properly-iterate-through-service-array-whe.patch
  systemd/trunk/0005-nss-myhostname-always-will-in-canonical-hostname-fie.patch
  systemd/trunk/0010-log-fix-log_full_errno-with-custom-facilities.patch
  systemd/trunk/0014-timesyncd-consider-too-long-packets-as-invalid.patch
  systemd/trunk/0016-logind-fix-sd_eviocrevoke-ioctl-call.patch
  systemd/trunk/0019-sd-bus-fix-handling-of-double-parameters-in-sd_bus_m.patch
  systemd/trunk/0021-units-fix-all-TTY-paths-for-container-gettys.patch
  systemd/trunk/0024-sd-dhcp-chop-of-trailing-dot-of-DHCP-supplied-host-a.patch
  systemd/trunk/0025-logind-handle-closing-sessions-over-daemon-restarts.patch
  systemd/trunk/0026-core-make-setting-the-shutdown-watchdog-configuratio.patch
  systemd/trunk/0027-sd-rtnl-don-t-fail-event-handler-when-callback-fails.patch
  systemd/trunk/0029-config_parse_set_status-put-signals-in-the-correct-s.patch
  systemd/trunk/0030-network-address-test-network-avoid-undefined-behavio.patch
  systemd/trunk/0033-core-disarm-shutdown-watchdog-if-we-fail-to-set-time.patch
  systemd/trunk/0034-exit-on-idle-only-exit-if-actually-idle.patch

-+
 0001-journal-fix-dangling-else-ambiguity.patch  |   44 ---
 0002-nspawn-properly-validate-machine-names.patch   |   35 ---
 0003-systemctl-fix-argument-handling-when-invoked-as-shut.patch |   34 ---
 0004-systemctl-properly-iterate-through-service-array-whe.patch |   31 --
 0005-nss-myhostname-always-will-in-canonical-hostname-fie.patch |  113 
--
 0010-log-fix-log_full_errno-with-custom-facilities.patch|   29 --
 0014-timesyncd-consider-too-long-packets-as-invalid.patch   |   31 --
 0016-logind-fix-sd_eviocrevoke-ioctl-call.patch |   30 --
 0019-sd-bus-fix-handling-of-double-parameters-in-sd_bus_m.patch |   91 
 0021-units-fix-all-TTY-paths-for-container-gettys.patch |   30 --
 0024-sd-dhcp-chop-of-trailing-dot-of-DHCP-supplied-host-a.patch |   55 
 0025-logind-handle-closing-sessions-over-daemon-restarts.patch  |  103 
-
 0026-core-make-setting-the-shutdown-watchdog-configuratio.patch |   27 --
 0027-sd-rtnl-don-t-fail-event-handler-when-callback-fails.patch |   67 -
 0029-config_parse_set_status-put-signals-in-the-correct-s.patch |   53 
 0030-network-address-test-network-avoid-undefined-behavio.patch |   44 ---
 0033-core-disarm-shutdown-watchdog-if-we-fail-to-set-time.patch |   31 --
 0034-exit-on-idle-only-exit-if-actually-idle.patch  |   29 --
 PKGBUILD|   65 -
 19 files changed, 8 insertions(+), 934 deletions(-)

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


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

2015-02-16 Thread Felix Yan
Date: Tuesday, February 17, 2015 @ 03:14:55
  Author: fyan
Revision: 127822

upgpkg: jenkins 1.599-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 01:59:43 UTC (rev 127821)
+++ PKGBUILD2015-02-17 02:14:55 UTC (rev 127822)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.598
+pkgver=1.599
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('b059869971dc14db0398fa1727df8ed1446fa21b0ed25697c1eef8fe9044ca720b61cfa3b4a38ba8e3101bb0c34f82ec8cb18516f80c9c2359a7e04fe040cfe2'
+sha512sums=('46011f0c43e7d979347980ca460675bccf493e6cb2d333c0ec74c9d4032a09886199936bd27a0ce665efd5a16e1ae3b51349e6185a7f53e5b8ee03774909c9c0'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


[arch-commits] Commit in archlinux-appstream-data/repos/community-any (4 files)

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 03:50:12
  Author: eric
Revision: 127827

archrelease: copy trunk to community-any

Added:
  archlinux-appstream-data/repos/community-any/PKGBUILD
(from rev 127826, archlinux-appstream-data/trunk/PKGBUILD)
  archlinux-appstream-data/repos/community-any/archlinux-appstream-data.install
(from rev 127826, 
archlinux-appstream-data/trunk/archlinux-appstream-data.install)
Deleted:
  archlinux-appstream-data/repos/community-any/PKGBUILD
  archlinux-appstream-data/repos/community-any/archlinux-appstream-data.install

--+
 PKGBUILD |   48 ++---
 archlinux-appstream-data.install |   16 ++--
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-17 02:29:34 UTC (rev 127826)
+++ PKGBUILD2015-02-17 02:50:12 UTC (rev 127827)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=archlinux-appstream-data
-pkgver=20150128
-pkgrel=2
-pkgdesc=Arch Linux application database for AppStream-based software centers
-arch=('any')
-url=http://www.archlinux.org;
-license=('GPL')
-depends=('appstream')
-makedepends=()
-source=(http://ftp.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream.xml.gz;
 
-http://ftp.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream-icons.tar.gz;)
-install=$pkgname.install
-md5sums=('627b6619733d8ad2fcf12a0973478c66'
- '016baf1eb142266bc906784ec09db877')
-
-package() {
-  mkdir -p $pkgdir/usr/share/app-info/{icons/archlinux,xmls}
-
-  cp appstream.xml $pkgdir/usr/share/app-info/xmls/
-  cp -r *.png $pkgdir/usr/share/app-info/icons/archlinux/
-}

Copied: archlinux-appstream-data/repos/community-any/PKGBUILD (from rev 127826, 
archlinux-appstream-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-17 02:50:12 UTC (rev 127827)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=archlinux-appstream-data
+pkgver=20150128
+pkgrel=2
+pkgdesc=Arch Linux application database for AppStream-based software centers
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL')
+depends=('appstream')
+makedepends=()
+source=(http://sources.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream.xml.gz;
 
+http://sources.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream-icons.tar.gz;)
+install=$pkgname.install
+md5sums=('627b6619733d8ad2fcf12a0973478c66'
+ '016baf1eb142266bc906784ec09db877')
+
+package() {
+  mkdir -p $pkgdir/usr/share/app-info/{icons/archlinux,xmls}
+
+  cp appstream.xml $pkgdir/usr/share/app-info/xmls/
+  cp -r *.png $pkgdir/usr/share/app-info/icons/archlinux/
+}

Deleted: archlinux-appstream-data.install
===
--- archlinux-appstream-data.install2015-02-17 02:29:34 UTC (rev 127826)
+++ archlinux-appstream-data.install2015-02-17 02:50:12 UTC (rev 127827)
@@ -1,8 +0,0 @@
-post_install() {
-  appstream-index refresh --force
-}
-
-post_upgrade() {
-  appstream-index refresh --force
-}
-

Copied: 
archlinux-appstream-data/repos/community-any/archlinux-appstream-data.install 
(from rev 127826, 
archlinux-appstream-data/trunk/archlinux-appstream-data.install)
===
--- archlinux-appstream-data.install(rev 0)
+++ archlinux-appstream-data.install2015-02-17 02:50:12 UTC (rev 127827)
@@ -0,0 +1,8 @@
+post_install() {
+  appstream-index refresh --force
+}
+
+post_upgrade() {
+  appstream-index refresh --force
+}
+


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

2015-02-16 Thread Felix Yan
Date: Tuesday, February 17, 2015 @ 03:18:35
  Author: fyan
Revision: 127825

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  python-xcffib/repos/community-testing-i686/
  python-xcffib/repos/community-testing-i686/PKGBUILD
(from rev 127824, python-xcffib/trunk/PKGBUILD)
  python-xcffib/repos/community-testing-x86_64/
  python-xcffib/repos/community-testing-x86_64/PKGBUILD
(from rev 127824, python-xcffib/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   34 ++
 community-testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: python-xcffib/repos/community-testing-i686/PKGBUILD (from rev 127824, 
python-xcffib/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-02-17 02:18:35 UTC (rev 127825)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Roger Duran rogerdu...@gmail.com
+
+pkgbase=python-xcffib
+pkgname=(python-xcffib python2-xcffib)
+pkgver=0.2.0
+pkgrel=1
+pkgdesc=Python3 drop in replacement for xpyb, an XCB python binding
+arch=('i686' 'x86_64')
+url=https://pypi.python.org/pypi/xcffib;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi'
+ 'python-six' 'python2-six' 'libxcb')
+source=(https://pypi.python.org/packages/source/x/xcffib/xcffib-$pkgver.tar.gz;)
+md5sums=('8242f543ff678621687dad01538259b8')
+
+prepare() {
+  cp -a xcffib-$pkgver{,-py2}
+}
+
+package_python-xcffib() {
+  depends=('python-six' 'python-cffi' 'libxcb')
+
+  cd $srcdir/xcffib-$pkgver
+  python setup.py install --root=$pkgdir/ --optimize=1
+}
+
+package_python2-xcffib() {
+  depends=('python2-six' 'python2-cffi' 'libxcb')
+
+  cd $srcdir/xcffib-$pkgver-py2
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+}

Copied: python-xcffib/repos/community-testing-x86_64/PKGBUILD (from rev 127824, 
python-xcffib/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-02-17 02:18:35 UTC (rev 127825)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Roger Duran rogerdu...@gmail.com
+
+pkgbase=python-xcffib
+pkgname=(python-xcffib python2-xcffib)
+pkgver=0.2.0
+pkgrel=1
+pkgdesc=Python3 drop in replacement for xpyb, an XCB python binding
+arch=('i686' 'x86_64')
+url=https://pypi.python.org/pypi/xcffib;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi'
+ 'python-six' 'python2-six' 'libxcb')
+source=(https://pypi.python.org/packages/source/x/xcffib/xcffib-$pkgver.tar.gz;)
+md5sums=('8242f543ff678621687dad01538259b8')
+
+prepare() {
+  cp -a xcffib-$pkgver{,-py2}
+}
+
+package_python-xcffib() {
+  depends=('python-six' 'python-cffi' 'libxcb')
+
+  cd $srcdir/xcffib-$pkgver
+  python setup.py install --root=$pkgdir/ --optimize=1
+}
+
+package_python2-xcffib() {
+  depends=('python2-six' 'python2-cffi' 'libxcb')
+
+  cd $srcdir/xcffib-$pkgver-py2
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+}


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

2015-02-16 Thread Felix Yan
Date: Tuesday, February 17, 2015 @ 03:18:12
  Author: fyan
Revision: 127824

upgpkg: python-xcffib 0.2.0-1

Modified:
  python-xcffib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 02:15:28 UTC (rev 127823)
+++ PKGBUILD2015-02-17 02:18:12 UTC (rev 127824)
@@ -4,7 +4,7 @@
 
 pkgbase=python-xcffib
 pkgname=(python-xcffib python2-xcffib)
-pkgver=0.1.11
+pkgver=0.2.0
 pkgrel=1
 pkgdesc=Python3 drop in replacement for xpyb, an XCB python binding
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi'
  'python-six' 'python2-six' 'libxcb')
 
source=(https://pypi.python.org/packages/source/x/xcffib/xcffib-$pkgver.tar.gz;)
-md5sums=('a142ab769262fa60f1abbc68921ec4c7')
+md5sums=('8242f543ff678621687dad01538259b8')
 
 prepare() {
   cp -a xcffib-$pkgver{,-py2}


[arch-commits] Commit in archlinux-appstream-data/trunk (PKGBUILD)

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 03:29:34
  Author: eric
Revision: 127826

Fix sources url

Modified:
  archlinux-appstream-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 02:18:35 UTC (rev 127825)
+++ PKGBUILD2015-02-17 02:29:34 UTC (rev 127826)
@@ -10,8 +10,8 @@
 license=('GPL')
 depends=('appstream')
 makedepends=()
-source=(http://ftp.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream.xml.gz;
 
-http://ftp.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream-icons.tar.gz;)
+source=(http://sources.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream.xml.gz;
 
+http://sources.archlinux.org/other/community/archlinux-appstream-data/$pkgver/appstream-icons.tar.gz;)
 install=$pkgname.install
 md5sums=('627b6619733d8ad2fcf12a0973478c66'
  '016baf1eb142266bc906784ec09db877')


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

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 14:25:54
  Author: arodseth
Revision: 127799

archrelease: copy trunk to community-x86_64, community-i686

Added:
  liteide/repos/community-i686/PKGBUILD
(from rev 127798, liteide/trunk/PKGBUILD)
  liteide/repos/community-i686/liteide.png
(from rev 127798, liteide/trunk/liteide.png)
  liteide/repos/community-x86_64/PKGBUILD
(from rev 127798, liteide/trunk/PKGBUILD)
  liteide/repos/community-x86_64/liteide.png
(from rev 127798, liteide/trunk/liteide.png)
Deleted:
  liteide/repos/community-i686/PKGBUILD
  liteide/repos/community-i686/liteide.png
  liteide/repos/community-x86_64/PKGBUILD
  liteide/repos/community-x86_64/liteide.png

---+
 /PKGBUILD |  186 
 community-i686/PKGBUILD   |   93 --
 community-x86_64/PKGBUILD |   93 --
 3 files changed, 186 insertions(+), 186 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 13:08:47 UTC (rev 127798)
+++ community-i686/PKGBUILD 2015-02-16 13:25:54 UTC (rev 127799)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: spambanane happy.ho...@gmx.de
-# Contributor: Matteo matteo@gmail.com
-# Contributor: Matthew Zimmerman mzimmer...@gmail.com
-
-pkgname=liteide
-pkgver=27
-pkgrel=2
-pkgdesc='IDE for editing and building projects written in the Go programming 
language'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'qt5-webkit')
-replaces=('golangide')
-conflicts=('golangide')
-makedepends=('gendesk' 'git' 'go' 'mercurial' 'setconf')
-options=('!strip' '!emptydirs')
-#source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#commit=c2e2ac2301
-source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#tag=x$pkgver
-'liteide.png')
-md5sums=('SKIP'
- '7f459be003d754a3a2c34be91b8c0b1f')
-
-prepare() {
-  gendesk -f -n --name 'LiteIDE' --pkgname $pkgname --pkgdesc $pkgdesc
-  chmod +x liteide-x$pkgver/build/*_*.sh
-
-  cd liteide-x$pkgver/liteidex/os_deploy/linux/liteenv
-  for bits in 32 64; do
-# Fix for FS#4662 until fixed by upstream.
-sed -i 's/^GOROOT/#GOROOT/g' linux$bits.env
-  done
-}
-
-build() {
-  cd liteide-x$pkgver/build
-
-  export QTDIR=/usr
-
-  mkdir -p go
-  export GOPATH=`pwd`/go
-
-  ./update_pkg.sh
-  ./build_linux.sh
-}
-
-package() {
-  cd liteide-x$pkgver/build/liteide
-
-  msg2 'Creating directories...'
-  mkdir -p \
-$pkgdir/usr/lib/liteide \
-$pkgdir/usr/share/liteide \
-$pkgdir/usr/share/doc/$pkgname
-
-  msg2 'Packaging executables...'
-  for binary in gotools gocode liteide; do # goimports
-install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
-  done
-  ln -s /usr/bin/liteide $pkgdir/usr/bin/golangide
-
-  cd $srcdir/liteide-x$pkgver/liteidex
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* os_deploy/* $pkgdir/usr/share/liteide
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* $pkgdir/usr/lib/liteide
-  chmod -x $pkgdir/usr/lib/liteide/plugins/*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 LGPL_EXCEPTION.TXT \
-$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 $pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  msg2 'Cleaning up...'
-  rm -rf $pkgdir/usr/share/$pkgname/doc
-
-  # Fix for FS#38781
-  mv $pkgdir/usr/share/liteide/linux/liteenv 
$pkgdir/usr/share/liteide/liteenv
-}
-
-# vim:set ts=2 sw=2 et:

Copied: liteide/repos/community-i686/PKGBUILD (from rev 127798, 
liteide/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 13:25:54 UTC (rev 127799)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: spambanane happy.ho...@gmx.de
+# Contributor: Matteo matteo@gmail.com
+# Contributor: Matthew Zimmerman mzimmer...@gmail.com
+
+pkgname=liteide
+pkgver=27.1
+pkgrel=1
+pkgdesc='IDE for editing and building projects written in the Go programming 
language'
+license=('LGPL')
+arch=('x86_64' 'i686')
+url='https://github.com/visualfc/liteide'
+depends=('go' 'qt5-webkit')
+replaces=('golangide')
+conflicts=('golangide')
+makedepends=('gendesk' 'git' 'go' 'mercurial' 'setconf')
+options=('!strip' '!emptydirs')
+#source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#commit=c2e2ac2301
+source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#tag=x$pkgver
+'liteide.png')
+md5sums=('SKIP'
+

[arch-commits] Commit in (6 files)

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 13:19:09
  Author: arodseth
Revision: 127796

Adding sxhkd, in connection with bspwm

Added:
  sxhkd/
  sxhkd/repos/
  sxhkd/repos/community-i686/
  sxhkd/repos/community-x86_64/
  sxhkd/trunk/
  sxhkd/trunk/PKGBUILD

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

Added: sxhkd/trunk/PKGBUILD
===
--- sxhkd/trunk/PKGBUILD(rev 0)
+++ sxhkd/trunk/PKGBUILD2015-02-16 12:19:09 UTC (rev 127796)
@@ -0,0 +1,26 @@
+# Maintainer: Alexander F Rødseth xypr...@archlinux.org
+# Contributor: Bastien Dejean nihilh...@gmail.com
+
+pkgname=sxhkd
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Simple X hotkey daemon'
+arch=('x86_64' 'i686')
+url='https://github.com/baskerville/sxhkd'
+license=('custom:BSD')
+depends=('libxcb' 'xcb-util-keysyms')
+makedepends=('xcb-util')
+source=(git://github.com/baskerville/sxhkd.git#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  make -C $pkgname PREFIX=/usr
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 14:08:47
  Author: arodseth
Revision: 127798

archrelease: copy trunk to community-x86_64, community-i686

Added:
  sxhkd/repos/community-i686/PKGBUILD
(from rev 127797, sxhkd/trunk/PKGBUILD)
  sxhkd/repos/community-x86_64/PKGBUILD
(from rev 127797, sxhkd/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   26 ++
 community-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: sxhkd/repos/community-i686/PKGBUILD (from rev 127797, 
sxhkd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 13:08:47 UTC (rev 127798)
@@ -0,0 +1,26 @@
+# Maintainer: Alexander F Rødseth xypr...@archlinux.org
+# Contributor: Bastien Dejean nihilh...@gmail.com
+
+pkgname=sxhkd
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Simple X hotkey daemon'
+arch=('x86_64' 'i686')
+url='https://github.com/baskerville/sxhkd'
+license=('custom:BSD')
+depends=('libxcb' 'xcb-util-keysyms')
+makedepends=('xcb-util' 'git')
+source=(git://github.com/baskerville/sxhkd.git#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  make -C $pkgname PREFIX=/usr
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sxhkd/repos/community-x86_64/PKGBUILD (from rev 127797, 
sxhkd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-16 13:08:47 UTC (rev 127798)
@@ -0,0 +1,26 @@
+# Maintainer: Alexander F Rødseth xypr...@archlinux.org
+# Contributor: Bastien Dejean nihilh...@gmail.com
+
+pkgname=sxhkd
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Simple X hotkey daemon'
+arch=('x86_64' 'i686')
+url='https://github.com/baskerville/sxhkd'
+license=('custom:BSD')
+depends=('libxcb' 'xcb-util-keysyms')
+makedepends=('xcb-util' 'git')
+source=(git://github.com/baskerville/sxhkd.git#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  make -C $pkgname PREFIX=/usr
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xf86-video-intel/repos (8 files)

2015-02-16 Thread Laurent Carlier
Date: Monday, February 16, 2015 @ 23:00:14
  Author: lcarlier
Revision: 231626

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 231625, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/git-fixes.patch
(from rev 231625, xf86-video-intel/trunk/git-fixes.patch)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 231625, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 231625, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/git-fixes.patch
(from rev 231625, xf86-video-intel/trunk/git-fixes.patch)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 231625, xf86-video-intel/trunk/xf86-video-intel.install)

-+
 testing-i686/PKGBUILD   |   55 
 testing-i686/git-fixes.patch|   82 ++
 testing-i686/xf86-video-intel.install   |   20 +++
 testing-x86_64/PKGBUILD |   55 
 testing-x86_64/git-fixes.patch  |   82 ++
 testing-x86_64/xf86-video-intel.install |   20 +++
 6 files changed, 314 insertions(+)

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 231625, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-16 22:00:14 UTC (rev 231626)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-intel
+pkgver=2.99.917
+pkgrel=3
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+install=$pkgname.install
+pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+git-fixes.patch)
+sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9'
+'201f60bc75d61dd95ae7bc166ef2cb153fe693471b42952e6d61cc0780a51e2e')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix FS#43840
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-intel/repos/testing-i686/git-fixes.patch (from rev 231625, 
xf86-video-intel/trunk/git-fixes.patch)
===
--- testing-i686/git-fixes.patch(rev 0)
+++ testing-i686/git-fixes.patch2015-02-16 22:00:14 UTC (rev 231626)
@@ -0,0 +1,82 @@
+From 127aae5a72a69df325fed0b63d345e81583d5ca1 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Mon, 16 Feb 2015 21:37:35 +
+Subject: tools/intel-virtual-output: Check for DRI3 more carefully
+
+Using xcb, we cannot simply call xcb_dri3_query_version() without it
+terminating the connection if DRI3 is not enabled on the target display.
+Oops.
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89172
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+diff --git a/tools/virtual.c b/tools/virtual.c
+index 8e2b4a2..3bcd057 100644
+--- a/tools/virtual.c
 b/tools/virtual.c
+@@ -218,6 +218,13 @@ static inline XRRScreenResources 
*_XRRGetScreenResourcesCurrent(Display *dpy, Wi
+ static int _x_error_occurred;
+ 
+ static int
++_io_error_handler(Display *display)
++{
++  fprintf(stderr, XIO error on display %s\n, DisplayString(display));
++  abort();
++}
++
++static int
+ _check_error_handler(Display *display,
+XErrorEvent *event)
+ {
+@@ -320,6 +327,7 @@ 

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD git-fixes.patch)

2015-02-16 Thread Laurent Carlier
Date: Monday, February 16, 2015 @ 23:00:07
  Author: lcarlier
Revision: 231625

upgpkg: xf86-video-intel 2.99.917-3

fix FS#43840

Added:
  xf86-video-intel/trunk/git-fixes.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD

-+
 PKGBUILD|   14 +++--
 git-fixes.patch |   82 ++
 2 files changed, 93 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 20:53:57 UTC (rev 231624)
+++ PKGBUILD2015-02-16 22:00:07 UTC (rev 231625)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.99.917
-pkgrel=2
+pkgrel=3
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -23,9 +23,17 @@
 conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+git-fixes.patch)
+sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9'
+'201f60bc75d61dd95ae7bc166ef2cb153fe693471b42952e6d61cc0780a51e2e')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix FS#43840
+  patch -Np1 -i ../git-fixes.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr --libexecdir=/usr/lib

Added: git-fixes.patch
===
--- git-fixes.patch (rev 0)
+++ git-fixes.patch 2015-02-16 22:00:07 UTC (rev 231625)
@@ -0,0 +1,82 @@
+From 127aae5a72a69df325fed0b63d345e81583d5ca1 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Mon, 16 Feb 2015 21:37:35 +
+Subject: tools/intel-virtual-output: Check for DRI3 more carefully
+
+Using xcb, we cannot simply call xcb_dri3_query_version() without it
+terminating the connection if DRI3 is not enabled on the target display.
+Oops.
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89172
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+diff --git a/tools/virtual.c b/tools/virtual.c
+index 8e2b4a2..3bcd057 100644
+--- a/tools/virtual.c
 b/tools/virtual.c
+@@ -218,6 +218,13 @@ static inline XRRScreenResources 
*_XRRGetScreenResourcesCurrent(Display *dpy, Wi
+ static int _x_error_occurred;
+ 
+ static int
++_io_error_handler(Display *display)
++{
++  fprintf(stderr, XIO error on display %s\n, DisplayString(display));
++  abort();
++}
++
++static int
+ _check_error_handler(Display *display,
+XErrorEvent *event)
+ {
+@@ -320,6 +327,7 @@ can_use_shm(Display *dpy,
+ #include X11/Xlib-xcb.h
+ #include X11/xshmfence.h
+ #include xcb/xcb.h
++#include xcb/xcbext.h
+ #include xcb/dri3.h
+ #include xcb/sync.h
+ static Pixmap dri3_create_pixmap(Display *dpy,
+@@ -357,6 +365,7 @@ static int dri3_query_version(Display *dpy, int *major, 
int *minor)
+ {
+   xcb_connection_t *c = XGetXCBConnection(dpy);
+   xcb_dri3_query_version_reply_t *reply;
++  xcb_generic_error_t *error;
+ 
+   *major = *minor = -1;
+ 
+@@ -364,7 +373,8 @@ static int dri3_query_version(Display *dpy, int *major, 
int *minor)
+xcb_dri3_query_version(c,
+   
XCB_DRI3_MAJOR_VERSION,
+   
XCB_DRI3_MINOR_VERSION),
+-   NULL);
++   error);
++  free(error);
+   if (reply == NULL)
+   return -1;
+ 
+@@ -377,8 +387,14 @@ static int dri3_query_version(Display *dpy, int *major, 
int *minor)
+ 
+ static int dri3_exists(Display *dpy)
+ {
++  xcb_extension_t dri3 = { DRI3, 0 };
++  const xcb_query_extension_reply_t *ext;
+   int major, minor;
+ 
++  ext = xcb_get_extension_data(XGetXCBConnection(dpy), dri3);
++  if (ext == NULL || !ext-present)
++  return 0;
++
+   if (dri3_query_version(dpy, major, minor)  0)
+   return 0;
+ 
+@@ -3228,6 +3244,7 @@ int main(int argc, char **argv)
+   return -ret;
+ 
+   XSetErrorHandler(_check_error_handler);
++  XSetIOErrorHandler(_io_error_handler);
+ 
+   ret = add_fd(ctx, display_open(ctx, src_name));
+   if (ret) {
+-- 
+cgit v0.10.2
+


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

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 16:07:13
  Author: bluewind
Revision: 231610

upgpkg: perl 5.20.2-1

upstream update

Modified:
  perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:52:23 UTC (rev 231609)
+++ PKGBUILD2015-02-16 15:07:13 UTC (rev 231610)
@@ -6,8 +6,8 @@
 # Contributor: francois francois.archlinux.org
 
 pkgname=perl
-pkgver=5.20.1
-pkgrel=2
+pkgver=5.20.2
+pkgrel=1
 pkgdesc=A highly capable, feature-rich programming language
 arch=(i686 x86_64)
 license=('GPL' 'PerlArtistic')
@@ -34,7 +34,7 @@
   'perl-cpan-meta-yaml=0.012'
   'perl-cpan-meta=2.140640'
   'perl-cpan=2.05'
-  'perl-data-dumper=2.151'
+  'perl-data-dumper=2.151_01'
   'perl-db_file=1.831'
   'perl-devel-ppport=3.21'
   'perl-devel-selfstubber=1.05'
@@ -83,7 +83,7 @@
   'perl-memoize=1.03'
   'perl-mime-base64=3.14'
   'perl-module-build=0.4205'
-  'perl-module-corelist=5.020001'
+  'perl-module-corelist=5.20150214'
   'perl-module-load-conditional=0.62'
   'perl-module-load=0.32'
   'perl-module-loaded=0.08'
@@ -93,7 +93,7 @@
   'perl-params-check=0.38'
   'perl-parent=0.228'
   'perl-parse-cpan-meta=1.4414'
-  'perl-pathtools=3.48'
+  'perl-pathtools=3.48_01'
   'perl-perl-ostype=1.007'
   'perl-perlfaq=5.0150044'
   'perl-perlio-via-quotedprint=0.07'
@@ -109,7 +109,7 @@
   'perl-search-dict=1.07'
   'perl-selfloader=1.21'
   'perl-socket=2.013'
-  'perl-storable=2.49'
+  'perl-storable=2.49_01'
   'perl-sys-syslog=0.33'
   'perl-term-ansicolor=4.02'
   'perl-term-cap=1.15'
@@ -142,9 +142,10 @@
 perlbin.csh
 perl-binary-module-dependency-1.template)
 options=('makeflags' '!purge' 'emptydirs')
-md5sums=('ede5166f949d9a07163bc5b086be9759'
+md5sums=('21062666f1c627aeb6dbff3c6952738b'
  '5ed2542fdb9a60682f215bd33701e61a'
- '1f0cbbee783e8a6d32f01be5118e0d5e')
+ '1f0cbbee783e8a6d32f01be5118e0d5e'
+ '2a366dfc783c460764cde0caf88a23af')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -184,10 +185,10 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=$pkgdir install
 
-  for template in $srcdir/*.template; do
+  for template in $srcdir/*.template; do
 install -Dm644 $template 
$pkgdir/usr/share/makepkg-template/${template##*/}
   done
-  ls -s perl-binary-module-dependency-1.template 
$pkgdir/usr/share/makepkg-template/perl-binary-module-dependency.template
+  ln -s perl-binary-module-dependency-1.template 
$pkgdir/usr/share/makepkg-template/perl-binary-module-dependency.template
 
   ### Perl Settings ###
   # Change man page extensions for site and vendor module builds.


[arch-commits] Commit in perl/repos (16 files)

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 16:07:21
  Author: bluewind
Revision: 231611

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  perl/repos/testing-i686/
  perl/repos/testing-i686/PKGBUILD
(from rev 231610, perl/trunk/PKGBUILD)
  perl/repos/testing-i686/generate-rebuild-list.sh
(from rev 231610, perl/trunk/generate-rebuild-list.sh)
  perl/repos/testing-i686/patchprov
(from rev 231610, perl/trunk/patchprov)
  perl/repos/testing-i686/perl-binary-module-dependency-1.template
(from rev 231610, perl/trunk/perl-binary-module-dependency-1.template)
  perl/repos/testing-i686/perlbin.csh
(from rev 231610, perl/trunk/perlbin.csh)
  perl/repos/testing-i686/perlbin.sh
(from rev 231610, perl/trunk/perlbin.sh)
  perl/repos/testing-i686/upgpkg
(from rev 231610, perl/trunk/upgpkg)
  perl/repos/testing-x86_64/
  perl/repos/testing-x86_64/PKGBUILD
(from rev 231610, perl/trunk/PKGBUILD)
  perl/repos/testing-x86_64/generate-rebuild-list.sh
(from rev 231610, perl/trunk/generate-rebuild-list.sh)
  perl/repos/testing-x86_64/patchprov
(from rev 231610, perl/trunk/patchprov)
  perl/repos/testing-x86_64/perl-binary-module-dependency-1.template
(from rev 231610, perl/trunk/perl-binary-module-dependency-1.template)
  perl/repos/testing-x86_64/perlbin.csh
(from rev 231610, perl/trunk/perlbin.csh)
  perl/repos/testing-x86_64/perlbin.sh
(from rev 231610, perl/trunk/perlbin.sh)
  perl/repos/testing-x86_64/upgpkg
(from rev 231610, perl/trunk/upgpkg)

-+
 testing-i686/PKGBUILD   |  233 
 testing-i686/generate-rebuild-list.sh   |4 
 testing-i686/patchprov  |  259 ++
 testing-i686/perl-binary-module-dependency-1.template   |5 
 testing-i686/perlbin.csh|   15 
 testing-i686/perlbin.sh |   18 
 testing-i686/upgpkg |4 
 testing-x86_64/PKGBUILD |  233 
 testing-x86_64/generate-rebuild-list.sh |4 
 testing-x86_64/patchprov|  259 ++
 testing-x86_64/perl-binary-module-dependency-1.template |5 
 testing-x86_64/perlbin.csh  |   15 
 testing-x86_64/perlbin.sh   |   18 
 testing-x86_64/upgpkg   |4 
 14 files changed, 1076 insertions(+)

Copied: perl/repos/testing-i686/PKGBUILD (from rev 231610, perl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-16 15:07:21 UTC (rev 231611)
@@ -0,0 +1,233 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: kevin kevin.archlinux.org
+# Contributor: judd jvinet.zeroflux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=perl
+pkgver=5.20.2
+pkgrel=1
+pkgdesc=A highly capable, feature-rich programming language
+arch=(i686 x86_64)
+license=('GPL' 'PerlArtistic')
+url=http://www.perl.org;
+groups=('base')
+depends=('gdbm' 'db' 'glibc')
+# NOTE: This array is automatically generated by `./patchprov`.
+#   If you want to add entries, do so in the next array.
+provides=('perl-archive-tar=1.96'
+  'perl-attribute-handlers=0.96'
+  'perl-autodie=2.23'
+  'perl-autoloader=5.74'
+  'perl-autouse=1.08'
+  'perl-b-debug=1.19'
+  'perl-base=2.22'
+  'perl-bignum=0.37'
+  'perl-carp=1.3301'
+  'perl-cgi=3.65'
+  'perl-compress-raw-bzip2=2.064'
+  'perl-compress-raw-zlib=2.065'
+  'perl-config-perl-v=0.22'
+  'perl-constant=1.31'
+  'perl-cpan-meta-requirements=2.125'
+  'perl-cpan-meta-yaml=0.012'
+  'perl-cpan-meta=2.140640'
+  'perl-cpan=2.05'
+  'perl-data-dumper=2.151_01'
+  'perl-db_file=1.831'
+  'perl-devel-ppport=3.21'
+  'perl-devel-selfstubber=1.05'
+  'perl-digest-md5=2.53'
+  'perl-digest-sha=5.88'
+  'perl-digest=1.17'
+  'perl-dumpvalue=1.17'
+  'perl-encode=2.60'
+  'perl-encoding-warnings=0.11'
+  'perl-env=1.04'
+  'perl-experimental=0.007'
+  'perl-exporter=5.71'
+  'perl-extutils-cbuilder=0.280217'
+  'perl-extutils-command=1.18'
+  'perl-extutils-constant=0.23'
+  'perl-extutils-install=1.67'
+  'perl-extutils-makemaker=6.98'
+  'perl-extutils-manifest=1.63'
+  'perl-extutils-parsexs=3.24'
+  'perl-file-fetch=0.48'
+  'perl-file-path=2.09'
+  'perl-file-temp=0.2304'
+  'perl-filter-simple=0.91'
+  

[arch-commits] Commit in sysstat/trunk (PKGBUILD lib64-fix.patch)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:32:56
  Author: spupykin
Revision: 127791

upgpkg: sysstat 11.1.3-1

upd

Modified:
  sysstat/trunk/PKGBUILD
  sysstat/trunk/lib64-fix.patch

-+
 PKGBUILD|8 
 lib64-fix.patch |   26 +-
 2 files changed, 21 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:22:37 UTC (rev 127790)
+++ PKGBUILD2015-02-16 10:32:56 UTC (rev 127791)
@@ -3,8 +3,8 @@
 # Contributor: Martin Devera de...@cdi.cz
 
 pkgname=sysstat
-pkgver=11.0.0
-pkgrel=2
+pkgver=11.1.3
+pkgrel=1
 pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
 arch=('i686' 'x86_64')
 url=http://pagesperso-orange.fr/sebastien.godard/;
@@ -18,8 +18,8 @@
'etc/conf.d/sysstat.ioconf')
 source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
lib64-fix.patch)
-md5sums=('fbd773ae95d0d055011496dc1cef99e5'
- '7ffa6bf990609d85367070f71b40a34b')
+md5sums=('de4d6f2d484d56d17d09a25fcec77dbc'
+ '5c7acc9a31b7724b8815daffae219de1')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver

Modified: lib64-fix.patch
===
--- lib64-fix.patch 2015-02-16 10:22:37 UTC (rev 127790)
+++ lib64-fix.patch 2015-02-16 10:32:56 UTC (rev 127791)
@@ -1,16 +1,24 @@
-diff -wbBur sysstat-10.1.6.q/configure.in sysstat-10.1.6/configure.in
 sysstat-10.1.6.q/configure.in  2013-04-21 18:20:32.0 +0400
-+++ sysstat-10.1.6/configure.in2013-06-17 14:45:41.733915298 +0400
-@@ -207,13 +207,6 @@
+diff -wbBur sysstat-11.1.3.org/configure.in sysstat-11.1.3/configure.in
+--- sysstat-11.1.3.org/configure.in2015-02-13 17:05:44.0 +0300
 sysstat-11.1.3/configure.in2015-02-16 13:25:26.201405593 +0300
+@@ -209,21 +209,6 @@
  fi
  
  SADC_DIR=$AuxPrefix/lib
 -if test -d $AuxPrefix/lib64; then
--   # Look for lm (long mode) flag to know if CPU is 64 bit
--   grep  lm  /proc/cpuinfo /dev/null 21
--   if test $? = 0; then
--  SADC_DIR=$AuxPrefix/lib64
--   fi
+-# Verify that this OS is really 64 bit
+-BITS=$(getconf LONG_BIT 2/dev/null)
+-if test $? = 0; then
+-if test $BITS = 64; then
+-SADC_DIR=$AuxPrefix/lib64
+-fi
+-else
+-# Fallback: look for lm (long mode) flag to know if CPU is 64 bit
+-grep  lm  /proc/cpuinfo /dev/null 21
+-if test $? = 0; then
+-SADC_DIR=$AuxPrefix/lib64
+-fi
+-fi
 -fi
  
  AC_MSG_CHECKING(sadc directory)


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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:33:08
  Author: spupykin
Revision: 127792

archrelease: copy trunk to community-i686, community-x86_64

Added:
  sysstat/repos/community-i686/PKGBUILD
(from rev 127791, sysstat/trunk/PKGBUILD)
  sysstat/repos/community-i686/lib64-fix.patch
(from rev 127791, sysstat/trunk/lib64-fix.patch)
  sysstat/repos/community-x86_64/PKGBUILD
(from rev 127791, sysstat/trunk/PKGBUILD)
  sysstat/repos/community-x86_64/lib64-fix.patch
(from rev 127791, sysstat/trunk/lib64-fix.patch)
Deleted:
  sysstat/repos/community-i686/PKGBUILD
  sysstat/repos/community-i686/lib64-fix.patch
  sysstat/repos/community-x86_64/PKGBUILD
  sysstat/repos/community-x86_64/lib64-fix.patch

--+
 /PKGBUILD|   96 +
 /lib64-fix.patch |   50 +++
 community-i686/PKGBUILD  |   48 --
 community-i686/lib64-fix.patch   |   17 --
 community-x86_64/PKGBUILD|   48 --
 community-x86_64/lib64-fix.patch |   17 --
 6 files changed, 146 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 10:32:56 UTC (rev 127791)
+++ community-i686/PKGBUILD 2015-02-16 10:33:08 UTC (rev 127792)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Martin Devera de...@cdi.cz
-
-pkgname=sysstat
-pkgver=11.0.0
-pkgrel=2
-pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
-arch=('i686' 'x86_64')
-url=http://pagesperso-orange.fr/sebastien.godard/;
-license=('GPL')
-depends=('lm_sensors')
-makedepends=('systemd')
-optdepends=('tk: to use isag'
-   'gnuplot: to use isag')
-options=(zipman)
-backup=('etc/conf.d/sysstat'
-   'etc/conf.d/sysstat.ioconf')
-source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
-   lib64-fix.patch)
-md5sums=('fbd773ae95d0d055011496dc1cef99e5'
- '7ffa6bf990609d85367070f71b40a34b')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 $srcdir/lib64-fix.patch
-  autoreconf
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  conf_dir=/etc/conf.d ./configure --prefix=/usr \
-   --enable-yesterday \
-   --mandir=/usr/share/man \
-   --enable-install-isag \
-   --enable-install-cron \
-   --enable-copy-only \
-   --disable-man-group
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir -p $pkgdir/usr/lib/systemd/system
-  make DESTDIR=$pkgdir install
-  chown -R root:root $pkgdir
-  rm -rf $pkgdir/etc/rc*
-}

Copied: sysstat/repos/community-i686/PKGBUILD (from rev 127791, 
sysstat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 10:33:08 UTC (rev 127792)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Martin Devera de...@cdi.cz
+
+pkgname=sysstat
+pkgver=11.1.3
+pkgrel=1
+pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
+arch=('i686' 'x86_64')
+url=http://pagesperso-orange.fr/sebastien.godard/;
+license=('GPL')
+depends=('lm_sensors')
+makedepends=('systemd')
+optdepends=('tk: to use isag'
+   'gnuplot: to use isag')
+options=(zipman)
+backup=('etc/conf.d/sysstat'
+   'etc/conf.d/sysstat.ioconf')
+source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
+   lib64-fix.patch)
+md5sums=('de4d6f2d484d56d17d09a25fcec77dbc'
+ '5c7acc9a31b7724b8815daffae219de1')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 $srcdir/lib64-fix.patch
+  autoreconf
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  conf_dir=/etc/conf.d ./configure --prefix=/usr \
+   --enable-yesterday \
+   --mandir=/usr/share/man \
+   --enable-install-isag \
+   --enable-install-cron \
+   --enable-copy-only \
+   --disable-man-group
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  mkdir -p $pkgdir/usr/lib/systemd/system
+  make DESTDIR=$pkgdir install
+  chown -R root:root $pkgdir
+  rm -rf $pkgdir/etc/rc*
+}

Deleted: community-i686/lib64-fix.patch
===
--- community-i686/lib64-fix.patch  2015-02-16 10:32:56 UTC (rev 127791)
+++ community-i686/lib64-fix.patch  2015-02-16 10:33:08 UTC (rev 127792)
@@ -1,17 +0,0 @@
-diff -wbBur sysstat-10.1.6.q/configure.in sysstat-10.1.6/configure.in
 sysstat-10.1.6.q/configure.in  2013-04-21 18:20:32.0 +0400
-+++ sysstat-10.1.6/configure.in2013-06-17 14:45:41.733915298 +0400
-@@ -207,13 +207,6 @@
- fi
- 
- SADC_DIR=$AuxPrefix/lib
--if test -d $AuxPrefix/lib64; then
--   # Look for lm (long mode) flag to know if CPU is 64 bit
--  

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

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 11:52:23
  Author: bluewind
Revision: 231609

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  spamassassin/repos/testing-i686/
  spamassassin/repos/testing-i686/PKGBUILD
(from rev 231608, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/testing-i686/net-dns.patch
(from rev 231608, spamassassin/trunk/net-dns.patch)
  spamassassin/repos/testing-i686/spamassassin.install
(from rev 231608, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/testing-i686/spamassassin.service
(from rev 231608, spamassassin/trunk/spamassassin.service)
  spamassassin/repos/testing-x86_64/
  spamassassin/repos/testing-x86_64/PKGBUILD
(from rev 231608, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/testing-x86_64/net-dns.patch
(from rev 231608, spamassassin/trunk/net-dns.patch)
  spamassassin/repos/testing-x86_64/spamassassin.install
(from rev 231608, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/testing-x86_64/spamassassin.service
(from rev 231608, spamassassin/trunk/spamassassin.service)

-+
 testing-i686/PKGBUILD   |   66 ++
 testing-i686/net-dns.patch  |   41 +
 testing-i686/spamassassin.install   |   32 
 testing-i686/spamassassin.service   |   12 ++
 testing-x86_64/PKGBUILD |   66 ++
 testing-x86_64/net-dns.patch|   41 +
 testing-x86_64/spamassassin.install |   32 
 testing-x86_64/spamassassin.service |   12 ++
 8 files changed, 302 insertions(+)

Copied: spamassassin/repos/testing-i686/PKGBUILD (from rev 231608, 
spamassassin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-16 10:52:23 UTC (rev 231609)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Dale Blount d...@archlinux.org
+# Contributor: Manolis Tzanidakis
+pkgname=spamassassin
+pkgver=3.4.0
+pkgrel=4
+pkgdesc=A mail filter to identify spam.
+arch=('i686' 'x86_64')
+license=('APACHE')
+url=http://spamassassin.apache.org;
+depends=('openssl' 'zlib' 're2c' 'perl-net-dns' 'perl-io-socket-ssl'
+ 'perl-libwww' 'perl-mail-spf' 'perl-http-message' 'perl-net-http'
+ 'perl-io-socket-inet6' 'perl-mail-dkim' 'perl-crypt-ssleay')
+makedepends=('razor' 'perl-dbi')
+optdepends=('razor: to identify collaborately-flagged spam')
+backup=('etc/mail/spamassassin/local.cf'
+'etc/mail/spamassassin/init.pre'
+'etc/mail/spamassassin/v310.pre'
+'etc/mail/spamassassin/v312.pre'
+'etc/mail/spamassassin/v320.pre'
+'etc/mail/spamassassin/v330.pre')
+install=${pkgname}.install
+source=(http://www.us.apache.org/dist/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz{,.asc}
+'spamassassin.service' net-dns.patch)
+validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
+md5sums=('5d0b50cee3bfa905cca35c33296c8c2a'
+ 'SKIP'
+ '8adce028f25387ac3bc4dba697d209ed'
+ '0bcf0419608ec4ac200e794563620f31')
+
+prepare() {
+  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
+
+  sed -i t/sa_compile.t \
+ -e 's#/foo/bin/spamassassin#/foo/bin/site_perl/spamassassin#' \
+ -e 's#/foo/bin/sa-compile#/foo/bin/site_perl/sa-compile#'
+
+  patch -p1 -i $srcdir/net-dns.patch
+}
+
+build() {
+  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
+
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor \
+  CONTACT_ADDRESS=root@localhost ENABLE_SSL=yes PERL_TAINT=no
+  make 
+}
+
+check() {
+  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
+
+  # parallel tests cause lots of failures; disable for now
+  #export HARNESS_OPTIONS=j$(echo $MAKEFLAGS | sed 
's/.*-j\([0-9][0-9]*\).*/\1/')
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -D -m644 ${srcdir}/spamassassin.service 
${pkgdir}/usr/lib/systemd/system/spamassassin.service
+  install -d -o 182 -g 182 -m 755 $pkgdir/var/lib/spamassassin
+}

Copied: spamassassin/repos/testing-i686/net-dns.patch (from rev 231608, 
spamassassin/trunk/net-dns.patch)
===
--- testing-i686/net-dns.patch  (rev 0)
+++ testing-i686/net-dns.patch  2015-02-16 10:52:23 UTC (rev 231609)
@@ -0,0 +1,41 @@
+Fix FS#40707 by
+
+- disabling the failing version check. We don't ship versions that old anyway.
+- fix nameservers fetching from Net::DNS
+
+---
+diff -Nur a/lib/Mail/SpamAssassin/Dns.pm b/lib/Mail/SpamAssassin/Dns.pm
+--- a/lib/Mail/SpamAssassin/Dns.pm 2014-06-05 19:34:56.299391918 +0200
 b/lib/Mail/SpamAssassin/Dns.pm 2014-06-05 19:35:56.816256160 +0200
+@@ -518,7 +518,7 @@
+   }
+ 

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

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 11:52:18
  Author: bluewind
Revision: 231608

upgpkg: spamassassin 3.4.0-4

Fix FS#43428; unnecessary options in service file

Modified:
  spamassassin/trunk/PKGBUILD
  spamassassin/trunk/spamassassin.install
  spamassassin/trunk/spamassassin.service

--+
 PKGBUILD |4 ++--
 spamassassin.install |6 --
 spamassassin.service |8 +++-
 3 files changed, 5 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-15 22:01:50 UTC (rev 231607)
+++ PKGBUILD2015-02-16 10:52:18 UTC (rev 231608)
@@ -4,7 +4,7 @@
 # Contributor: Manolis Tzanidakis
 pkgname=spamassassin
 pkgver=3.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A mail filter to identify spam.
 arch=('i686' 'x86_64')
 license=('APACHE')
@@ -26,7 +26,7 @@
 validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
 md5sums=('5d0b50cee3bfa905cca35c33296c8c2a'
  'SKIP'
- 'd0ce5f8a02fd74dbc83632f4aaec6185'
+ '8adce028f25387ac3bc4dba697d209ed'
  '0bcf0419608ec4ac200e794563620f31')
 
 prepare() {

Modified: spamassassin.install
===
--- spamassassin.install2015-02-15 22:01:50 UTC (rev 231607)
+++ spamassassin.install2015-02-16 10:52:18 UTC (rev 231608)
@@ -30,9 +30,3 @@
true
 }
 
-pre_remove() {
-   getent passwd spamd /dev/null  userdel  spamd  /dev/null
-   getent group spamd  /dev/null  groupdel spamd  /dev/null
-   true
-}
-

Modified: spamassassin.service
===
--- spamassassin.service2015-02-15 22:01:50 UTC (rev 231607)
+++ spamassassin.service2015-02-16 10:52:18 UTC (rev 231608)
@@ -3,11 +3,9 @@
 After=syslog.target network.target
 
 [Service]
-Type=forking
-PIDFile=/var/run/spamd.pid
-ExecStart=/usr/bin/vendor_perl/spamd -d --pidfile /var/run/spamd.pid -c -c -x 
--virtual-config-dir=/var/lib/spamassassin -u spamd -g spamd
-StandardOutput=syslog
-StandardError=syslog
+ExecStart=/usr/bin/vendor_perl/spamd -x -u spamd -g spamd
+StandardOutput=null
+StandardError=null
 Restart=always
 
 [Install]


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

2015-02-16 Thread Lukas Jirkovsky
Date: Monday, February 16, 2015 @ 10:42:03
  Author: stativ
Revision: 127778

archrelease: copy trunk to community-i686, community-x86_64

Added:
  luxrender/repos/community-i686/PKGBUILD
(from rev 12, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-i686/force_python3.diff
(from rev 12, luxrender/trunk/force_python3.diff)
  luxrender/repos/community-x86_64/PKGBUILD
(from rev 12, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-x86_64/force_python3.diff
(from rev 12, luxrender/trunk/force_python3.diff)
Deleted:
  luxrender/repos/community-i686/PKGBUILD
  luxrender/repos/community-i686/force_python3.diff
  luxrender/repos/community-x86_64/PKGBUILD
  luxrender/repos/community-x86_64/force_python3.diff

-+
 /PKGBUILD   |  112 ++
 /force_python3.diff |   24 +++
 community-i686/PKGBUILD |   61 --
 community-i686/force_python3.diff   |   12 ---
 community-x86_64/PKGBUILD   |   61 --
 community-x86_64/force_python3.diff |   12 ---
 6 files changed, 136 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 09:41:50 UTC (rev 12)
+++ community-i686/PKGBUILD 2015-02-16 09:42:03 UTC (rev 127778)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-# Contributor: flixie 69...@gmx.net
-# Contributor: Imanol Celaya ornitorrin...@archlinux-es.org
-pkgname=luxrender
-pkgver=1.3.1
-_pkgver=d0b0e20c47cc
-pkgrel=11
-pkgdesc=Rendering system for physically correct, unbiased image synthesis
-arch=('i686' 'x86_64')
-url=http://www.luxrender.net/;
-license=('GPL')
-depends=('boost-libs' 'freeimage' 'openexr' 'libpng' 'libcl' 'libgl' 'fftw')
-optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
-'python: pylux Python interface'
-'opencl-nvidia: OpenCL support for nVidia GPUs' \
-'amdapp-sdk: OpenCL support for AMD GPUs' \
-'intel-opencl-runtime: OpenCL support for Intel CPUs')
-# luxrender is constantly broken due to various GCC bugs, the latest one being 
FS#40596
-makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers' 'clang')
-source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
-force_python3.diff)
-md5sums=('cbe749f56a1e1976745f5458100efa8a'
- '42692e65eabc5828693e2682e94b7c64')
-
-prepare() {
-  cd $srcdir/luxrender-lux-$_pkgver
-
-  patch -Np1  $srcdir/force_python3.diff || true
-  # workaround QTBUG-22829
-  find . -type f -exec sed -i 's|^#include .*boost/.*|#ifndef 
Q_MOC_RUN\n\n#endif|' '{}' ';'
-}
-
-build() {
-  cd $srcdir/luxrender-lux-$_pkgver
-
-  export CC=clang
-  export CXX=clang++
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DLUXRAYS_DISABLE_OPENCL=OFF \
--DPYTHON_CUSTOM=ON \
--DPYTHON_LIBRARIES=/usr/lib/libpython3.4m.so \
--DPYTHON_INCLUDE_PATH=/usr/include/python3.4m/ \
--DCMAKE_EXE_LINKER_FLAGS=-lpthread \
-.
-  make
-}
-
-package() {
-  cd $srcdir/luxrender-lux-$_pkgver
-  make DESTDIR=$pkgdir install
-
-  # fix library path on x86_64
-  [ $CARCH = x86_64 ]  mv $pkgdir/usr/lib64 $pkgdir/usr/lib
-
-  #install pylux
-  install -D -m644 pylux.so $pkgdir/usr/lib/python3.4/pylux.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luxrender/repos/community-i686/PKGBUILD (from rev 12, 
luxrender/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 09:42:03 UTC (rev 127778)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: flixie 69...@gmx.net
+# Contributor: Imanol Celaya ornitorrin...@archlinux-es.org
+pkgname=luxrender
+pkgver=1.4
+_pkgver=dfd211d6faa0
+pkgrel=1
+pkgdesc=Rendering system for physically correct, unbiased image synthesis
+arch=('i686' 'x86_64')
+url=http://www.luxrender.net/;
+license=('GPL')
+depends=('boost-libs' 'freeimage' 'openexr' 'openimageio' 'libpng' 'libcl' 
'libgl' 'fftw')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
+'python: pylux Python interface'
+'opencl-nvidia: OpenCL support for nVidia GPUs' \
+'amdapp-sdk: OpenCL support for AMD GPUs' \
+'intel-opencl-runtime: OpenCL support for Intel CPUs')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers')
+source=(https://bitbucket.org/luxrender/lux/get/${_pkgver}.tar.bz2 \
+force_python3.diff)
+md5sums=('7591ac4e86d0232245af38f6cf932c02'
+ '42692e65eabc5828693e2682e94b7c64')
+
+prepare() {
+  cd $srcdir/luxrender-lux-$_pkgver
+
+  patch -Np1  $srcdir/force_python3.diff || true
+}
+
+build() {
+  cd $srcdir/luxrender-lux-$_pkgver
+
+
+  cmake 

[arch-commits] Commit in luxblend25/repos/community-any (5 files)

2015-02-16 Thread Lukas Jirkovsky
Date: Monday, February 16, 2015 @ 10:43:37
  Author: stativ
Revision: 127780

archrelease: copy trunk to community-any

Added:
  luxblend25/repos/community-any/PKGBUILD
(from rev 127779, luxblend25/trunk/PKGBUILD)
  luxblend25/repos/community-any/luxrender.cfg
(from rev 127779, luxblend25/trunk/luxrender.cfg)
  luxblend25/repos/community-any/system_config.diff
(from rev 127779, luxblend25/trunk/system_config.diff)
Deleted:
  luxblend25/repos/community-any/PKGBUILD
  luxblend25/repos/community-any/luxrender_path.diff

-+
 PKGBUILD|   74 +++---
 luxrender.cfg   |3 ++
 luxrender_path.diff |   19 
 system_config.diff  |   12 
 4 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-16 09:43:31 UTC (rev 127779)
+++ PKGBUILD2015-02-16 09:43:37 UTC (rev 127780)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=luxblend25
-pkgver=1.3.1
-_pkgver=ad6536b0dda8
-_blender=2.72
-pkgrel=4
-pkgdesc=A LuxRender exporter for Blender.
-arch=('any')
-url=http://www.luxrender.net/;
-license=('GPL')
-depends=('blender' 'luxrender')
-source=(https://bitbucket.org/luxrender/luxblend25/get/$_pkgver.tar.bz2 \
-luxrender_path.diff)
-md5sums=('389991810953df26f1d849db1c65a129'
- 'cea2a59336c28b84258e795f66301918')
-
-prepare() {
-  cd $srcdir/luxrender-luxblend25-$_pkgver
-
-  # set the default path to luxrender instalation, so the users doesn't have
-  # to do that everytime they enable luxrender
-  patch -Np1  $srcdir/luxrender_path.diff || true
-}
-
-package() {
-  install -d -m755 $pkgdir/usr/share/blender/$_blender/scripts/addons
-  cp -a $srcdir/luxrender-luxblend25-$_pkgver/src/luxrender \
-$pkgdir/usr/share/blender/$_blender/scripts/addons
-  # change the search path in exporter so it finds pylux in its new location
-  sed -i 's|from.*import pylux|import pylux|' 
$pkgdir/usr/share/blender/$_blender/scripts/addons/luxrender/outputs/pure_api.py
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luxblend25/repos/community-any/PKGBUILD (from rev 127779, 
luxblend25/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-16 09:43:37 UTC (rev 127780)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=luxblend25
+pkgver=1.4
+_pkgver=a249c861c2f3
+_blender=2.73
+pkgrel=1
+pkgdesc=A LuxRender exporter for Blender.
+arch=('any')
+url=http://www.luxrender.net/;
+license=('GPL')
+depends=('blender' 'luxrender')
+source=(https://bitbucket.org/luxrender/luxblend25/get/$_pkgver.tar.bz2 \
+system_config.diff luxrender.cfg)
+md5sums=('a9ca48c9d091df8dd55ba1b90d377ac2'
+ 'f42e7bc5476b144cca60bf3e6363158a'
+ 'ec6b7028e48f73650d9315d47cd14f1d')
+
+prepare() {
+  cd $srcdir/luxrender-luxblend25-$_pkgver
+
+  # enables loading of the configuration from a system-wide config file
+  patch -Np1  $srcdir/system_config.diff || true
+}
+
+package() {
+  install -d -m755 $pkgdir/usr/share/blender/$_blender/scripts/addons
+  cp -a $srcdir/luxrender-luxblend25-$_pkgver/src/luxrender \
+$pkgdir/usr/share/blender/$_blender/scripts/addons
+
+  # install luxrender config file so the luxblend find luxrender automatically
+  install -D -m644 luxrender.cfg \
+$pkgdir/usr/share/blender/$_blender/scripts/luxrender.cfg
+
+  # change the search path for pylux* so the pylux* can be found in its new 
location
+  find $pkgdir/usr/share/blender/$_blender/scripts/addons/luxrender -name 
*.py \
+-exec sed -i 's|from.*import pylux|import pylux|' '{}' ';'
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luxblend25/repos/community-any/luxrender.cfg (from rev 127779, 
luxblend25/trunk/luxrender.cfg)
===
--- luxrender.cfg   (rev 0)
+++ luxrender.cfg   2015-02-16 09:43:37 UTC (rev 127780)
@@ -0,0 +1,3 @@
+[defaults]
+install_path = /usr/bin
+

Deleted: luxrender_path.diff
===
--- luxrender_path.diff 2015-02-16 09:43:31 UTC (rev 127779)
+++ luxrender_path.diff 2015-02-16 09:43:37 UTC (rev 127780)
@@ -1,19 +0,0 @@
-diff -rup luxrender-luxblend25-ad6536b0dda8/src/luxrender/__init__.py 
luxrender-luxblend25-ad6536b0dda8.new/src/luxrender/__init__.py
 luxrender-luxblend25-ad6536b0dda8/src/luxrender/__init__.py
2013-11-04 22:30:25.0 +0100
-+++ luxrender-luxblend25-ad6536b0dda8.new/src/luxrender/__init__.py
2013-11-15 11:06:42.435244653 +0100
-@@ -50,14 +50,7 @@ else:
-   from nodeitems_utils import NodeCategory, NodeItem, NodeItemCustom
-   
-   def find_luxrender_path():
--  from os import getenv
--  from extensions_framework import util 

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

2015-02-16 Thread Lukas Jirkovsky
Date: Monday, February 16, 2015 @ 10:41:50
  Author: stativ
Revision: 12

upgpkg: luxrender 1.4-1

update to 1.4

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 09:37:08 UTC (rev 127776)
+++ PKGBUILD2015-02-16 09:41:50 UTC (rev 12)
@@ -3,24 +3,23 @@
 # Contributor: flixie 69...@gmx.net
 # Contributor: Imanol Celaya ornitorrin...@archlinux-es.org
 pkgname=luxrender
-pkgver=1.3.1
-_pkgver=d0b0e20c47cc
-pkgrel=11
+pkgver=1.4
+_pkgver=dfd211d6faa0
+pkgrel=1
 pkgdesc=Rendering system for physically correct, unbiased image synthesis
 arch=('i686' 'x86_64')
 url=http://www.luxrender.net/;
 license=('GPL')
-depends=('boost-libs' 'freeimage' 'openexr' 'libpng' 'libcl' 'libgl' 'fftw')
+depends=('boost-libs' 'freeimage' 'openexr' 'openimageio' 'libpng' 'libcl' 
'libgl' 'fftw')
 optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
 'python: pylux Python interface'
 'opencl-nvidia: OpenCL support for nVidia GPUs' \
 'amdapp-sdk: OpenCL support for AMD GPUs' \
 'intel-opencl-runtime: OpenCL support for Intel CPUs')
-# luxrender is constantly broken due to various GCC bugs, the latest one being 
FS#40596
-makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers' 'clang')
-source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
+makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers')
+source=(https://bitbucket.org/luxrender/lux/get/${_pkgver}.tar.bz2 \
 force_python3.diff)
-md5sums=('cbe749f56a1e1976745f5458100efa8a'
+md5sums=('7591ac4e86d0232245af38f6cf932c02'
  '42692e65eabc5828693e2682e94b7c64')
 
 prepare() {
@@ -27,15 +26,11 @@
   cd $srcdir/luxrender-lux-$_pkgver
 
   patch -Np1  $srcdir/force_python3.diff || true
-  # workaround QTBUG-22829
-  find . -type f -exec sed -i 's|^#include .*boost/.*|#ifndef 
Q_MOC_RUN\n\n#endif|' '{}' ';'
 }
 
 build() {
   cd $srcdir/luxrender-lux-$_pkgver
 
-  export CC=clang
-  export CXX=clang++
 
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DLUXRAYS_DISABLE_OPENCL=OFF \


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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:20:30
  Author: spupykin
Revision: 127781

upgpkg: cgit 0.11.0-1

upd

Modified:
  cgit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 09:43:37 UTC (rev 127780)
+++ PKGBUILD2015-02-16 10:20:30 UTC (rev 127781)
@@ -6,8 +6,8 @@
 # Contributor: Andreas Baumann abaumann at yahoo dot com
 
 pkgname=cgit
-pkgver=0.10.2
-pkgrel=2
+pkgver=0.11.0
+pkgrel=1
 pkgdesc=A web interface for git written in plain C
 arch=('i686' 'x86_64')
 url=http://git.zx2c4.com/cgit/;
@@ -19,7 +19,7 @@
 install=cgit.install
 source=(http://git.zx2c4.com/cgit/snapshot/cgit-$pkgver.tar.xz;
apache.example.conf)
-md5sums=('6682d597f6e3e76645a254c7be537bd3'
+md5sums=('2029f60cead3598d5b5412756d487a01'
  '8266cbc541d14297b8513e670c3dfe23')
 
 prepare() {


[arch-commits] Commit in cgit/repos (12 files)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:20:52
  Author: spupykin
Revision: 127782

archrelease: copy trunk to community-i686, community-x86_64

Added:
  cgit/repos/community-i686/PKGBUILD
(from rev 127781, cgit/trunk/PKGBUILD)
  cgit/repos/community-i686/apache.example.conf
(from rev 127781, cgit/trunk/apache.example.conf)
  cgit/repos/community-i686/cgit.install
(from rev 127781, cgit/trunk/cgit.install)
  cgit/repos/community-x86_64/PKGBUILD
(from rev 127781, cgit/trunk/PKGBUILD)
  cgit/repos/community-x86_64/apache.example.conf
(from rev 127781, cgit/trunk/apache.example.conf)
  cgit/repos/community-x86_64/cgit.install
(from rev 127781, cgit/trunk/cgit.install)
Deleted:
  cgit/repos/community-i686/PKGBUILD
  cgit/repos/community-i686/apache.example.conf
  cgit/repos/community-i686/cgit.install
  cgit/repos/community-x86_64/PKGBUILD
  cgit/repos/community-x86_64/apache.example.conf
  cgit/repos/community-x86_64/cgit.install

--+
 /PKGBUILD|   92 +
 /apache.example.conf |   46 
 /cgit.install|   10 +++
 community-i686/PKGBUILD  |   46 
 community-i686/apache.example.conf   |   23 
 community-i686/cgit.install  |5 -
 community-x86_64/PKGBUILD|   46 
 community-x86_64/apache.example.conf |   23 
 community-x86_64/cgit.install|5 -
 9 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 10:20:30 UTC (rev 127781)
+++ community-i686/PKGBUILD 2015-02-16 10:20:52 UTC (rev 127782)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Patrick Palka patr...@parcs.ath.cx
-# Contributor: Loui Chang louipc.ist at gmail com
-# Contributor: Andreas Baumann abaumann at yahoo dot com
-
-pkgname=cgit
-pkgver=0.10.2
-pkgrel=2
-pkgdesc=A web interface for git written in plain C
-arch=('i686' 'x86_64')
-url=http://git.zx2c4.com/cgit/;
-license=('GPL2')
-depends=('openssl' 'luajit')
-makedepends=('zlib' 'curl' 'asciidoc')
-optdepends=('python2-pygments: syntax highlighting support'
-   'mime-types: serve file with correct content-type header')
-install=cgit.install
-source=(http://git.zx2c4.com/cgit/snapshot/cgit-$pkgver.tar.xz;
-   apache.example.conf)
-md5sums=('6682d597f6e3e76645a254c7be537bd3'
- '8266cbc541d14297b8513e670c3dfe23')
-
-prepare() {
-  cd $pkgname-$pkgver
-  make get-git
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make
-  make doc-man
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make CGIT_SCRIPT_PATH=/usr/share/webapps/cgit DESTDIR=$pkgdir prefix=/usr 
install install-man
-
-  install -vd $pkgdir/var/cache/$pkgname
-  install -vDm0644 $srcdir/apache.example.conf 
$pkgdir/etc/webapps/cgit/apache.example.conf
-  mkdir -p $pkgdir/usr/lib/cgit
-  mv $pkgdir/usr/share/webapps/cgit/cgit.cgi $pkgdir/usr/lib/cgit
-  ln -sf ../../../lib/cgit/cgit.cgi $pkgdir/usr/share/webapps/cgit/cgit.cgi
-}

Copied: cgit/repos/community-i686/PKGBUILD (from rev 127781, 
cgit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 10:20:52 UTC (rev 127782)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Patrick Palka patr...@parcs.ath.cx
+# Contributor: Loui Chang louipc.ist at gmail com
+# Contributor: Andreas Baumann abaumann at yahoo dot com
+
+pkgname=cgit
+pkgver=0.11.0
+pkgrel=1
+pkgdesc=A web interface for git written in plain C
+arch=('i686' 'x86_64')
+url=http://git.zx2c4.com/cgit/;
+license=('GPL2')
+depends=('openssl' 'luajit')
+makedepends=('zlib' 'curl' 'asciidoc')
+optdepends=('python2-pygments: syntax highlighting support'
+   'mime-types: serve file with correct content-type header')
+install=cgit.install
+source=(http://git.zx2c4.com/cgit/snapshot/cgit-$pkgver.tar.xz;
+   apache.example.conf)
+md5sums=('2029f60cead3598d5b5412756d487a01'
+ '8266cbc541d14297b8513e670c3dfe23')
+
+prepare() {
+  cd $pkgname-$pkgver
+  make get-git
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+  make doc-man
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make CGIT_SCRIPT_PATH=/usr/share/webapps/cgit DESTDIR=$pkgdir prefix=/usr 
install install-man
+
+  install -vd $pkgdir/var/cache/$pkgname
+  install -vDm0644 $srcdir/apache.example.conf 
$pkgdir/etc/webapps/cgit/apache.example.conf
+  mkdir -p $pkgdir/usr/lib/cgit
+  mv $pkgdir/usr/share/webapps/cgit/cgit.cgi $pkgdir/usr/lib/cgit
+  ln -sf ../../../lib/cgit/cgit.cgi 

[arch-commits] Commit in hostapd/repos (16 files)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:21:35
  Author: spupykin
Revision: 127784

archrelease: copy trunk to community-i686, community-x86_64

Added:
  hostapd/repos/community-i686/PKGBUILD
(from rev 127783, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-i686/config
(from rev 127783, hostapd/trunk/config)
  hostapd/repos/community-i686/hostapd.install
(from rev 127783, hostapd/trunk/hostapd.install)
  hostapd/repos/community-i686/hostapd.service
(from rev 127783, hostapd/trunk/hostapd.service)
  hostapd/repos/community-x86_64/PKGBUILD
(from rev 127783, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-x86_64/config
(from rev 127783, hostapd/trunk/config)
  hostapd/repos/community-x86_64/hostapd.install
(from rev 127783, hostapd/trunk/hostapd.install)
  hostapd/repos/community-x86_64/hostapd.service
(from rev 127783, hostapd/trunk/hostapd.service)
Deleted:
  hostapd/repos/community-i686/PKGBUILD
  hostapd/repos/community-i686/config
  hostapd/repos/community-i686/hostapd.install
  hostapd/repos/community-i686/hostapd.service
  hostapd/repos/community-x86_64/PKGBUILD
  hostapd/repos/community-x86_64/config
  hostapd/repos/community-x86_64/hostapd.install
  hostapd/repos/community-x86_64/hostapd.service

--+
 /PKGBUILD|  108 
 /config  |  192 +
 /hostapd.install |6 +
 /hostapd.service |   20 +++
 community-i686/PKGBUILD  |   54 --
 community-i686/config|   96 --
 community-i686/hostapd.install   |3 
 community-i686/hostapd.service   |9 -
 community-x86_64/PKGBUILD|   54 --
 community-x86_64/config  |   96 --
 community-x86_64/hostapd.install |3 
 community-x86_64/hostapd.service |9 -
 12 files changed, 326 insertions(+), 324 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 10:20:57 UTC (rev 127783)
+++ community-i686/PKGBUILD 2015-02-16 10:21:35 UTC (rev 127784)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=hostapd
-pkgver=2.3
-pkgrel=2
-pkgdesc=IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
-arch=('i686' 'x86_64')
-url=http://w1.fi/hostapd/;
-license=('custom')
-depends=('openssl' 'libnl')
-install=hostapd.install
-options=(emptydirs)
-source=(http://w1.fi/releases/$pkgname-$pkgver.tar.gz
-   config
-   hostapd.service)
-md5sums=('40b89c61036add0c2dd1fc10767d3b5f'
- '72e8ecf8fadf8b06d87876ea8c3dfd07'
- 'f2b6ee22f331ff4bd82c8ab4f611797d')
-
-build() {
-  cd $pkgname-$pkgver/hostapd
-  cp ../../config .config
-  sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
-  export CFLAGS=$CFLAGS $(pkg-config --cflags libnl-3.0)
-  make
-}
-
-package() {
-  # Systemd unit
-  install -Dm644 hostapd.service 
$pkgdir/usr/lib/systemd/system/hostapd.service
-
-  cd $pkgname-$pkgver
-
-  # License
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-
-  cd hostapd
-
-  # Binaries
-  install -d $pkgdir/usr/bin
-  install -t $pkgdir/usr/bin hostapd hostapd_cli
-
-  # Configuration
-  install -d $pkgdir/etc/hostapd
-  install -d $pkgdir/usr/share/doc/hostapd
-  install -m644 -t $pkgdir/usr/share/doc/hostapd \
-hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
-wired.conf hlr_auc_gw.milenage_db
-
-  # Man pages
-  install -Dm644 hostapd.8 $pkgdir/usr/share/man/man8/hostapd.8
-  install -Dm644 hostapd_cli.1 $pkgdir/usr/share/man/man1/hostapd_cli.1
-}

Copied: hostapd/repos/community-i686/PKGBUILD (from rev 127783, 
hostapd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 10:21:35 UTC (rev 127784)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=hostapd
+pkgver=2.3
+pkgrel=3
+pkgdesc=IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
+arch=('i686' 'x86_64')
+url=http://w1.fi/hostapd/;
+license=('custom')
+depends=('openssl' 'libnl')
+install=hostapd.install
+options=(emptydirs)
+source=(http://w1.fi/releases/$pkgname-$pkgver.tar.gz
+   config
+   hostapd.service)
+md5sums=('40b89c61036add0c2dd1fc10767d3b5f'
+ '72e8ecf8fadf8b06d87876ea8c3dfd07'
+ '380042b9cf4950e34ed34b3093ab9e7f')
+
+build() {
+  cd $pkgname-$pkgver/hostapd
+  cp ../../config .config
+  sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
+  export CFLAGS=$CFLAGS $(pkg-config --cflags libnl-3.0)
+  make
+}
+
+package() {
+  # Systemd unit
+  install -Dm644 hostapd.service 
$pkgdir/usr/lib/systemd/system/hostapd.service
+
+  cd $pkgname-$pkgver
+
+  # License
+  install -Dm644 COPYING 

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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:21:38
  Author: spupykin
Revision: 127785

upgpkg: python-psycopg2 2.6-1

upd

Modified:
  python-psycopg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:21:35 UTC (rev 127784)
+++ PKGBUILD2015-02-16 10:21:38 UTC (rev 127785)
@@ -5,7 +5,7 @@
 
 pkgbase=python-psycopg2
 pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.5.4
+pkgver=2.6
 pkgrel=1
 pkgdesc=A PostgreSQL database adapter for the Python programming language.
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 url=http://initd.org/psycopg/;
 license=('LGPL3')
 makedepends=('python2' 'python' 'postgresql-libs=8.4.1')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-$pkgver.tar.gz)
-md5sums=('25216543a707eb33fd83aa8efb6e3f26')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-6/psycopg2-$pkgver.tar.gz)
+md5sums=('fbbb039a8765d561a1c04969bbae7c74')
 
 build() {
   cd $srcdir/psycopg2-$pkgver


[arch-commits] Commit in tigervnc/trunk (4 files)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:22:12
  Author: spupykin
Revision: 127789

upgpkg: tigervnc 1.4.2-1

upd

Added:
  tigervnc/trunk/xorg117.patch
Modified:
  tigervnc/trunk/PKGBUILD
Deleted:
  tigervnc/trunk/xorg116.patch
  tigervnc/trunk/xserver116.patch

--+
 PKGBUILD |   14 +-
 xorg116.patch|  285 -
 xorg117.patch|   44 
 xserver116.patch |  137 -
 4 files changed, 51 insertions(+), 429 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:22:09 UTC (rev 127788)
+++ PKGBUILD2015-02-16 10:22:12 UTC (rev 127789)
@@ -2,9 +2,9 @@
 # Maintainer: Uroš Vampl mobile.leecher at gmail dot com
 
 pkgname=tigervnc
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
-_xorgver=1.16.2.901
+_xorgver=1.17.1
 pkgdesc=Suite of VNC servers and clients. Based on the VNC 4 branch of 
TightVNC.
 arch=('i686' 'x86_64')
 url=http://www.tigervnc.org;
@@ -25,14 +25,14 @@
vncviewer.desktop
gethomedir.patch
getmaster.patch
-   compile_fix.patch)
-md5sums=('b7ca7852d0477d74e932724c5197b0d6'
- '82cbcf6755787962e943d8e23495358d'
+   xorg117.patch)
+md5sums=('93b935487d0ec33341f079bc402df6b1'
+ '5986510d59e394a50126a8e2833e79d3'
  '87678d73cc7c3fcd12797da43a0d061e'
  'b200d83c60e80c6f9693ea19a2d9f5b0'
  '22f1523a0eca56ad79cfabd0db6e2cf6'
  'e056a2502dfe0cb3b02e08cab689482f'
- '557f978305b46b880dacd07461ad8db9')
+ 'c2d3ba5ef3fc1bc2c11aff178c024eef')
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -39,7 +39,7 @@
 
   patch -Np1 -i ${srcdir}/gethomedir.patch
   patch -Np1 -i ${srcdir}/getmaster.patch
-#  patch -Np1 -i ${srcdir}/compile_fix.patch
+  patch -Np1 -i ${srcdir}/xorg117.patch
   sed -i 's/iconic/nowin/' unix/vncserver
 
   cd unix/xserver

Deleted: xorg116.patch
===
--- xorg116.patch   2015-02-16 10:22:09 UTC (rev 127788)
+++ xorg116.patch   2015-02-16 10:22:12 UTC (rev 127789)
@@ -1,285 +0,0 @@
-diff -ur tigervnc-1.3.1.orig/unix/xserver/hw/vnc/Input.cc 
tigervnc-1.3.1/unix/xserver/hw/vnc/Input.cc
 tigervnc-1.3.1.orig/unix/xserver/hw/vnc/Input.cc   2013-05-30 
16:53:40.0 +0200
-+++ tigervnc-1.3.1/unix/xserver/hw/vnc/Input.cc2014-07-19 
00:36:53.722520543 +0200
-@@ -262,7 +262,7 @@
-   return Success;
- }
- 
--static void keyboardBell(int percent, DeviceIntPtr device, pointer ctrl,
-+static void keyboardBell(int percent, DeviceIntPtr device, void * ctrl,
-int class_)
- {
-   if (percent  0)
-diff -ur tigervnc-1.3.1.orig/unix/xserver/hw/vnc/vncExtInit.cc 
tigervnc-1.3.1/unix/xserver/hw/vnc/vncExtInit.cc
 tigervnc-1.3.1.orig/unix/xserver/hw/vnc/vncExtInit.cc  2013-07-01 
14:48:31.0 +0200
-+++ tigervnc-1.3.1/unix/xserver/hw/vnc/vncExtInit.cc   2014-07-19 
00:36:53.724520543 +0200
-@@ -65,18 +65,18 @@
- 
-   extern void vncExtensionInit();
-   static void vncResetProc(ExtensionEntry* extEntry);
--  static void vncBlockHandler(pointer data, OSTimePtr t, pointer readmask);
--  static void vncWakeupHandler(pointer data, int nfds, pointer readmask);
-+  static void vncBlockHandler(void * data, OSTimePtr t, void * readmask);
-+  static void vncWakeupHandler(void * data, int nfds, void * readmask);
-   void vncWriteBlockHandler(fd_set *fds);
-   void vncWriteWakeupHandler(int nfds, fd_set *fds);
--  static void vncClientStateChange(CallbackListPtr*, pointer, pointer);
-+  static void vncClientStateChange(CallbackListPtr*, void *, void *);
-   static void SendSelectionChangeEvent(Atom selection);
-   static int ProcVncExtDispatch(ClientPtr client);
-   static int SProcVncExtDispatch(ClientPtr client);
--  static void vncSelectionCallback(CallbackListPtr *callbacks, pointer data,
-- pointer args);
-+  static void vncSelectionCallback(CallbackListPtr *callbacks, void * data,
-+ void * args);
- 
--  extern char *display;
-+  extern const char *display;
-   extern char *listenaddr;
- }
- 
-@@ -285,7 +285,7 @@
- {
- }
- 
--static void vncSelectionCallback(CallbackListPtr *callbacks, pointer data, 
pointer args)
-+static void vncSelectionCallback(CallbackListPtr *callbacks, void * data, 
void * args)
- {
-   SelectionInfoRec *info = (SelectionInfoRec *) args;
-   Selection *selection = info-selection;
-@@ -302,7 +302,7 @@
- // selections have changed, and if so, notify any interested X clients.
- //
- 
--static void vncBlockHandler(pointer data, OSTimePtr timeout, pointer readmask)
-+static void vncBlockHandler(void * data, OSTimePtr timeout, void * readmask)
- {
-   fd_set* fds = (fd_set*)readmask;
- 
-@@ -313,7 +313,7 @@
-   desktop[scr]-blockHandler(fds, timeout);
- }
- 
--static void vncWakeupHandler(pointer data, int nfds, pointer readmask)
-+static 

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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:22:09
  Author: spupykin
Revision: 127788

archrelease: copy trunk to community-i686, community-x86_64

Added:
  sqlitebrowser/repos/community-i686/PKGBUILD
(from rev 127787, sqlitebrowser/trunk/PKGBUILD)
  sqlitebrowser/repos/community-i686/sqlitebrowser.install
(from rev 127787, sqlitebrowser/trunk/sqlitebrowser.install)
  sqlitebrowser/repos/community-x86_64/PKGBUILD
(from rev 127787, sqlitebrowser/trunk/PKGBUILD)
  sqlitebrowser/repos/community-x86_64/sqlitebrowser.install
(from rev 127787, sqlitebrowser/trunk/sqlitebrowser.install)
Deleted:
  sqlitebrowser/repos/community-i686/PKGBUILD
  sqlitebrowser/repos/community-i686/sqlitebrowser.install
  sqlitebrowser/repos/community-x86_64/PKGBUILD
  sqlitebrowser/repos/community-x86_64/sqlitebrowser.install

+
 /PKGBUILD  |   74 +++
 /sqlitebrowser.install |   26 ++
 community-i686/PKGBUILD|   37 ---
 community-i686/sqlitebrowser.install   |   13 -
 community-x86_64/PKGBUILD  |   37 ---
 community-x86_64/sqlitebrowser.install |   13 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 10:21:56 UTC (rev 127787)
+++ community-i686/PKGBUILD 2015-02-16 10:22:09 UTC (rev 127788)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Douglas Soares de Andrade dsandr...@gmail.com
-# Contributor: Michael Fellinger m.fellin...@gmail.com
-
-pkgname=sqlitebrowser
-pkgver=3.5.0
-pkgrel=1
-pkgdesc=SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt
-arch=('i686' 'x86_64')
-url=http://sqlitebrowser.org/;
-license=('GPL')
-depends=('qt5-base' 'sqlite' 'libxkbcommon-x11')
-makedepends=('cmake' 'qt5-tools')
-install=sqlitebrowser.install
-#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
-source=($pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
-md5sums=('4add5c73d62eebe7595b358e507d2349')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's|Icon=.*|Icon=sqlitebrowser|' distri/sqlitebrowser.desktop
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  cmake -DUSE_QT5=TRUE -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make install DESTDIR=$pkgdir
-  install -Dm0644 distri/sqlitebrowser.desktop 
$pkgdir/usr/share/applications/sqlitebrowser.desktop
-  install -dm0755 $pkgdir/usr/share/icons/
-  install -m0644 images/sqlitebrowser.svg $pkgdir/usr/share/icons/
-}

Copied: sqlitebrowser/repos/community-i686/PKGBUILD (from rev 127787, 
sqlitebrowser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 10:22:09 UTC (rev 127788)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Douglas Soares de Andrade dsandr...@gmail.com
+# Contributor: Michael Fellinger m.fellin...@gmail.com
+
+pkgname=sqlitebrowser
+pkgver=3.5.1
+pkgrel=1
+pkgdesc=SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt
+arch=('i686' 'x86_64')
+url=http://sqlitebrowser.org/;
+license=('GPL')
+depends=('qt5-base' 'sqlite' 'libxkbcommon-x11')
+makedepends=('cmake' 'qt5-tools')
+install=sqlitebrowser.install
+#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
+source=($pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
+md5sums=('9d0caa52f15dacecaf593ae20e2f9fe4')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's|Icon=.*|Icon=sqlitebrowser|' distri/sqlitebrowser.desktop
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  cmake -DUSE_QT5=TRUE -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make install DESTDIR=$pkgdir
+  install -Dm0644 distri/sqlitebrowser.desktop 
$pkgdir/usr/share/applications/sqlitebrowser.desktop
+  install -dm0755 $pkgdir/usr/share/icons/
+  install -m0644 images/sqlitebrowser.svg $pkgdir/usr/share/icons/
+}

Deleted: community-i686/sqlitebrowser.install
===
--- community-i686/sqlitebrowser.install2015-02-16 10:21:56 UTC (rev 
127787)
+++ community-i686/sqlitebrowser.install2015-02-16 10:22:09 UTC (rev 
127788)
@@ -1,13 +0,0 @@
-post_install() {
-   [[ -x usr/bin/update-desktop-database ]]  update-desktop-database -q 
|| true
-   [[ -x usr/bin/gtk-update-icon-cache ]]  gtk-update-icon-cache -q -t 
-f usr/share/icons/hicolor || true
-}
-
-post_upgrade() {
-   post_install
-}
-
-

[arch-commits] Commit in tigervnc/repos (30 files)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:22:37
  Author: spupykin
Revision: 127790

archrelease: copy trunk to community-i686, community-x86_64

Added:
  tigervnc/repos/community-i686/PKGBUILD
(from rev 127789, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-i686/compile_fix.patch
(from rev 127789, tigervnc/trunk/compile_fix.patch)
  tigervnc/repos/community-i686/gethomedir.patch
(from rev 127789, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-i686/getmaster.patch
(from rev 127789, tigervnc/trunk/getmaster.patch)
  tigervnc/repos/community-i686/vncserver.service
(from rev 127789, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-i686/vncviewer.desktop
(from rev 127789, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-i686/xorg117.patch
(from rev 127789, tigervnc/trunk/xorg117.patch)
  tigervnc/repos/community-x86_64/PKGBUILD
(from rev 127789, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-x86_64/compile_fix.patch
(from rev 127789, tigervnc/trunk/compile_fix.patch)
  tigervnc/repos/community-x86_64/gethomedir.patch
(from rev 127789, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-x86_64/getmaster.patch
(from rev 127789, tigervnc/trunk/getmaster.patch)
  tigervnc/repos/community-x86_64/vncserver.service
(from rev 127789, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-x86_64/vncviewer.desktop
(from rev 127789, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-x86_64/xorg117.patch
(from rev 127789, tigervnc/trunk/xorg117.patch)
Deleted:
  tigervnc/repos/community-i686/PKGBUILD
  tigervnc/repos/community-i686/compile_fix.patch
  tigervnc/repos/community-i686/gethomedir.patch
  tigervnc/repos/community-i686/getmaster.patch
  tigervnc/repos/community-i686/vncserver.service
  tigervnc/repos/community-i686/vncviewer.desktop
  tigervnc/repos/community-i686/xorg116.patch
  tigervnc/repos/community-i686/xserver116.patch
  tigervnc/repos/community-x86_64/PKGBUILD
  tigervnc/repos/community-x86_64/compile_fix.patch
  tigervnc/repos/community-x86_64/gethomedir.patch
  tigervnc/repos/community-x86_64/getmaster.patch
  tigervnc/repos/community-x86_64/vncserver.service
  tigervnc/repos/community-x86_64/vncviewer.desktop
  tigervnc/repos/community-x86_64/xorg116.patch
  tigervnc/repos/community-x86_64/xserver116.patch

+
 /PKGBUILD  |  150 ++
 /compile_fix.patch |   26 +++
 /gethomedir.patch  |   40 
 /getmaster.patch   |  192 +++
 /vncserver.service |   58 +++
 /vncviewer.desktop |   18 ++
 community-i686/PKGBUILD|   75 -
 community-i686/compile_fix.patch   |   13 -
 community-i686/gethomedir.patch|   20 --
 community-i686/getmaster.patch |   96 ---
 community-i686/vncserver.service   |   29 ---
 community-i686/vncviewer.desktop   |9 -
 community-i686/xorg116.patch   |  285 ---
 community-i686/xorg117.patch   |   44 +
 community-i686/xserver116.patch|  137 
 community-x86_64/PKGBUILD  |   75 -
 community-x86_64/compile_fix.patch |   13 -
 community-x86_64/gethomedir.patch  |   20 --
 community-x86_64/getmaster.patch   |   96 ---
 community-x86_64/vncserver.service |   29 ---
 community-x86_64/vncviewer.desktop |9 -
 community-x86_64/xorg116.patch |  285 ---
 community-x86_64/xorg117.patch |   44 +
 community-x86_64/xserver116.patch  |  137 
 24 files changed, 572 insertions(+), 1328 deletions(-)

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


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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:21:53
  Author: spupykin
Revision: 127786

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python-psycopg2/repos/community-i686/ChangeLog
(from rev 127785, python-psycopg2/trunk/ChangeLog)
  python-psycopg2/repos/community-i686/PKGBUILD
(from rev 127785, python-psycopg2/trunk/PKGBUILD)
  python-psycopg2/repos/community-x86_64/ChangeLog
(from rev 127785, python-psycopg2/trunk/ChangeLog)
  python-psycopg2/repos/community-x86_64/PKGBUILD
(from rev 127785, python-psycopg2/trunk/PKGBUILD)
Deleted:
  python-psycopg2/repos/community-i686/ChangeLog
  python-psycopg2/repos/community-i686/PKGBUILD
  python-psycopg2/repos/community-x86_64/ChangeLog
  python-psycopg2/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |   50 ++
 /PKGBUILD  |   70 +++
 community-i686/ChangeLog   |   25 ---
 community-i686/PKGBUILD|   35 -
 community-x86_64/ChangeLog |   25 ---
 community-x86_64/PKGBUILD  |   35 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2015-02-16 10:21:38 UTC (rev 127785)
+++ community-i686/ChangeLog2015-02-16 10:21:53 UTC (rev 127786)
@@ -1,25 +0,0 @@
-
-2009-08-05  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated to: 2.0.11
-
-2009-03-24  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for i686: 2.0.9
-
-2009-01-11  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Rebuilt for python 2.6
-
-2008-04-25  Mateusz Herych heni...@gmail.com
-
-   * Built for x86_64 - 2.0.7
-
-2008-04-23  Douglas Soares de Andrade  d...@aur.archlinux.org
-
-   * Built for i686 - 2.0.7
-
-2007-06-27  tardo  ta...@nagi-fanboi.net
-   
-   * Built for x86_64
-

Copied: python-psycopg2/repos/community-i686/ChangeLog (from rev 127785, 
python-psycopg2/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2015-02-16 10:21:53 UTC (rev 127786)
@@ -0,0 +1,25 @@
+
+2009-08-05  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated to: 2.0.11
+
+2009-03-24  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated for i686: 2.0.9
+
+2009-01-11  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Rebuilt for python 2.6
+
+2008-04-25  Mateusz Herych heni...@gmail.com
+
+   * Built for x86_64 - 2.0.7
+
+2008-04-23  Douglas Soares de Andrade  d...@aur.archlinux.org
+
+   * Built for i686 - 2.0.7
+
+2007-06-27  tardo  ta...@nagi-fanboi.net
+   
+   * Built for x86_64
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 10:21:38 UTC (rev 127785)
+++ community-i686/PKGBUILD 2015-02-16 10:21:53 UTC (rev 127786)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Maintainer: Douglas Soares de Andrade d...@aur.archlinux.org
-
-pkgbase=python-psycopg2
-pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.5.4
-pkgrel=1
-pkgdesc=A PostgreSQL database adapter for the Python programming language.
-arch=('i686' 'x86_64')
-url=http://initd.org/psycopg/;
-license=('LGPL3')
-makedepends=('python2' 'python' 'postgresql-libs=8.4.1')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-$pkgver.tar.gz)
-md5sums=('25216543a707eb33fd83aa8efb6e3f26')
-
-build() {
-  cd $srcdir/psycopg2-$pkgver
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-}
-
-package_python-psycopg2() {
-  depends=('python' 'postgresql-libs=8.4.1')
-
-  cd $srcdir/psycopg2-$pkgver
-  python setup.py install --root=$pkgdir
-}
-
-package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs=8.4.1')
-
-  cd $srcdir/psycopg2-$pkgver
-  python2 setup.py install --root=$pkgdir
-}

Copied: python-psycopg2/repos/community-i686/PKGBUILD (from rev 127785, 
python-psycopg2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 10:21:53 UTC (rev 127786)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Maintainer: Douglas Soares de Andrade d...@aur.archlinux.org
+
+pkgbase=python-psycopg2
+pkgname=('python-psycopg2' 'python2-psycopg2')
+pkgver=2.6
+pkgrel=1
+pkgdesc=A PostgreSQL database adapter for the Python programming language.
+arch=('i686' 'x86_64')
+url=http://initd.org/psycopg/;
+license=('LGPL3')

[arch-commits] Commit in hostapd/trunk (PKGBUILD hostapd.service)

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:20:57
  Author: spupykin
Revision: 127783

upgpkg: hostapd 2.3-3

upd

Modified:
  hostapd/trunk/PKGBUILD
  hostapd/trunk/hostapd.service

-+
 PKGBUILD|4 ++--
 hostapd.service |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:20:52 UTC (rev 127782)
+++ PKGBUILD2015-02-16 10:20:57 UTC (rev 127783)
@@ -3,7 +3,7 @@
 
 pkgname=hostapd
 pkgver=2.3
-pkgrel=2
+pkgrel=3
 pkgdesc=IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
 arch=('i686' 'x86_64')
 url=http://w1.fi/hostapd/;
@@ -16,7 +16,7 @@
hostapd.service)
 md5sums=('40b89c61036add0c2dd1fc10767d3b5f'
  '72e8ecf8fadf8b06d87876ea8c3dfd07'
- 'f2b6ee22f331ff4bd82c8ab4f611797d')
+ '380042b9cf4950e34ed34b3093ab9e7f')
 
 build() {
   cd $pkgname-$pkgver/hostapd

Modified: hostapd.service
===
--- hostapd.service 2015-02-16 10:20:52 UTC (rev 127782)
+++ hostapd.service 2015-02-16 10:20:57 UTC (rev 127783)
@@ -4,6 +4,7 @@
 
 [Service]
 ExecStart=/usr/bin/hostapd /etc/hostapd/hostapd.conf
+ExecReload=/bin/kill -HUP $MAINPID
 
 [Install]
 WantedBy=multi-user.target


[arch-commits] Commit in lib32-libcups/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 10:37:08
  Author: bluewind
Revision: 127776

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libcups/repos/multilib-x86_64/PKGBUILD
(from rev 127775, lib32-libcups/trunk/PKGBUILD)
Deleted:
  lib32-libcups/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-16 09:37:05 UTC (rev 127775)
+++ PKGBUILD2015-02-16 09:37:08 UTC (rev 127776)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-_pkgbasename=libcups
-pkgname=lib32-$_pkgbasename
-pkgver=2.0.1
-pkgrel=2
-pkgdesc=The CUPS Printing System - client libraries (32-bit)
-arch=('x86_64')
-license=('GPL')
-url=http://www.cups.org/;
-depends=(lib32-krb5 lib32-libtiff lib32-libpng lib32-gnutls $_pkgbasename)
-makedepends=(gcc-multilib)
-source=(#ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2
-http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2{,.sig})
-md5sums=('7f7c33071035fb20d0879929a42da711'
- 'SKIP')
-validpgpkeys=(3737FD0D0E63B30172440D2DDBA3A7AB08D76223)
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/cups-${pkgver}
-
-  aclocal -I config-scripts
-  autoconf -I config-scripts
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-ldap --enable-raw-printing --disable-gssapi --disable-dbus \
- --enable-ssl=yes--enable-threads --enable-libusb=no \
---disable-avahi --disable-dnssd \
- --with-optim=$CFLAGS --libdir=/usr/lib32
-  make libs
-}
-
-package() {
-  cd ${srcdir}/cups-${pkgver}
-  make BUILDROOT=${pkgdir} install-libs
-  rm -rf $pkgdir/usr/lib
-}
-

Copied: lib32-libcups/repos/multilib-x86_64/PKGBUILD (from rev 127775, 
lib32-libcups/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-16 09:37:08 UTC (rev 127776)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+_pkgbasename=libcups
+pkgname=lib32-$_pkgbasename
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=The CUPS Printing System - client libraries (32-bit)
+arch=('x86_64')
+license=('GPL')
+url=http://www.cups.org/;
+depends=(lib32-krb5 lib32-libtiff lib32-libpng lib32-gnutls $_pkgbasename)
+makedepends=(gcc-multilib)
+source=(#ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2
+http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2{,.sig})
+md5sums=('6e0ea72dbafcf5baaa1cf4178e71096d'
+ 'SKIP')
+validpgpkeys=(3737FD0D0E63B30172440D2DDBA3A7AB08D76223)
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/cups-${pkgver}
+
+  aclocal -I config-scripts
+  autoconf -I config-scripts
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-ldap --enable-raw-printing --disable-gssapi --disable-dbus \
+ --enable-ssl=yes--enable-threads --enable-libusb=no \
+--disable-avahi --disable-dnssd \
+ --with-optim=$CFLAGS --libdir=/usr/lib32
+  make libs
+}
+
+package() {
+  cd ${srcdir}/cups-${pkgver}
+  make BUILDROOT=${pkgdir} install-libs
+  rm -rf $pkgdir/usr/lib
+}
+


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

2015-02-16 Thread Florian Pritz
Date: Monday, February 16, 2015 @ 10:37:05
  Author: bluewind
Revision: 127775

upgpkg: lib32-libcups 2.0.2-1

upstream update

Modified:
  lib32-libcups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 08:00:38 UTC (rev 127774)
+++ PKGBUILD2015-02-16 09:37:05 UTC (rev 127775)
@@ -3,8 +3,8 @@
 
 _pkgbasename=libcups
 pkgname=lib32-$_pkgbasename
-pkgver=2.0.1
-pkgrel=2
+pkgver=2.0.2
+pkgrel=1
 pkgdesc=The CUPS Printing System - client libraries (32-bit)
 arch=('x86_64')
 license=('GPL')
@@ -13,7 +13,7 @@
 makedepends=(gcc-multilib)
 source=(#ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2
 http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2{,.sig})
-md5sums=('7f7c33071035fb20d0879929a42da711'
+md5sums=('6e0ea72dbafcf5baaa1cf4178e71096d'
  'SKIP')
 validpgpkeys=(3737FD0D0E63B30172440D2DDBA3A7AB08D76223)
 


[arch-commits] Commit in luxblend25/trunk (PKGBUILD system_config.diff)

2015-02-16 Thread Lukas Jirkovsky
Date: Monday, February 16, 2015 @ 10:43:31
  Author: stativ
Revision: 127779

upgpkg: luxblend25 1.4-1

update to 1.4

Added:
  luxblend25/trunk/system_config.diff
Modified:
  luxblend25/trunk/PKGBUILD

+
 PKGBUILD   |   12 ++--
 system_config.diff |   12 
 2 files changed, 22 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 09:42:03 UTC (rev 127778)
+++ PKGBUILD2015-02-16 09:43:31 UTC (rev 127779)
@@ -11,10 +11,18 @@
 license=('GPL')
 depends=('blender' 'luxrender')
 source=(https://bitbucket.org/luxrender/luxblend25/get/$_pkgver.tar.bz2 \
-luxrender.cfg)
+system_config.diff luxrender.cfg)
 md5sums=('a9ca48c9d091df8dd55ba1b90d377ac2'
+ 'f42e7bc5476b144cca60bf3e6363158a'
  'ec6b7028e48f73650d9315d47cd14f1d')
 
+prepare() {
+  cd $srcdir/luxrender-luxblend25-$_pkgver
+
+  # enables loading of the configuration from a system-wide config file
+  patch -Np1  $srcdir/system_config.diff || true
+}
+
 package() {
   install -d -m755 $pkgdir/usr/share/blender/$_blender/scripts/addons
   cp -a $srcdir/luxrender-luxblend25-$_pkgver/src/luxrender \
@@ -22,7 +30,7 @@
 
   # install luxrender config file so the luxblend find luxrender automatically
   install -D -m644 luxrender.cfg \
-$pkgdir/usr/share/blender/$_blender/config/luxrender.cfg
+$pkgdir/usr/share/blender/$_blender/scripts/luxrender.cfg
 
   # change the search path for pylux* so the pylux* can be found in its new 
location
   find $pkgdir/usr/share/blender/$_blender/scripts/addons/luxrender -name 
*.py \

Added: system_config.diff
===
--- system_config.diff  (rev 0)
+++ system_config.diff  2015-02-16 09:43:31 UTC (rev 127779)
@@ -0,0 +1,12 @@
+diff -rup 
luxrender-luxblend25-a249c861c2f3/src/luxrender/extensions_framework/util.py 
luxrender-luxblend25-a249c861c2f3.new/src/luxrender/extensions_framework/util.py
+--- 
luxrender-luxblend25-a249c861c2f3/src/luxrender/extensions_framework/util.py
   2015-01-27 20:48:23.0 +0100
 
luxrender-luxblend25-a249c861c2f3.new/src/luxrender/extensions_framework/util.py
   2015-02-16 10:35:51.456810705 +0100
+@@ -99,7 +99,7 @@ def find_config_value(module, section, k
+ fc = []
+ 
+ for p in config_paths:
+-if os.path.exists(p) and os.path.isdir(p) and os.access(p, os.W_OK):
++if os.path.exists(p) and os.path.isdir(p):
+ fc.append('/'.join([p, '%s.cfg' % module]))
+ 
+ if len(fc)  1:


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

2015-02-16 Thread Sergej Pupykin
Date: Monday, February 16, 2015 @ 11:21:56
  Author: spupykin
Revision: 127787

upgpkg: sqlitebrowser 3.5.1-1

upd

Modified:
  sqlitebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:21:53 UTC (rev 127786)
+++ PKGBUILD2015-02-16 10:21:56 UTC (rev 127787)
@@ -4,7 +4,7 @@
 # Contributor: Michael Fellinger m.fellin...@gmail.com
 
 pkgname=sqlitebrowser
-pkgver=3.5.0
+pkgver=3.5.1
 pkgrel=1
 pkgdesc=SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 install=sqlitebrowser.install
 
#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
-md5sums=('4add5c73d62eebe7595b358e507d2349')
+md5sums=('9d0caa52f15dacecaf593ae20e2f9fe4')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver


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

2015-02-16 Thread Alexander Rødseth
Date: Monday, February 16, 2015 @ 12:52:15
  Author: arodseth
Revision: 127795

upgpkg: liteide 27.1-1

Modified:
  liteide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 11:51:49 UTC (rev 127794)
+++ PKGBUILD2015-02-16 11:52:15 UTC (rev 127795)
@@ -5,8 +5,8 @@
 # Contributor: Matthew Zimmerman mzimmer...@gmail.com
 
 pkgname=liteide
-pkgver=27
-pkgrel=2
+pkgver=27.1
+pkgrel=1
 pkgdesc='IDE for editing and building projects written in the Go programming 
language'
 license=('LGPL')
 arch=('x86_64' 'i686')


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

2015-02-16 Thread Sven-Hendrik Haase
Date: Monday, February 16, 2015 @ 12:51:49
  Author: svenstaro
Revision: 127794

archrelease: copy trunk to community-i686, community-x86_64

Added:
  openmw/repos/community-i686/PKGBUILD
(from rev 127793, openmw/trunk/PKGBUILD)
  openmw/repos/community-x86_64/PKGBUILD
(from rev 127793, openmw/trunk/PKGBUILD)
Deleted:
  openmw/repos/community-i686/PKGBUILD
  openmw/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 11:51:32 UTC (rev 127793)
+++ community-i686/PKGBUILD 2015-02-16 11:51:49 UTC (rev 127794)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.34.0
-pkgrel=2
-pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
-arch=('i686' 'x86_64')
-url=http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('269998405293964462b4af8f48294ee19832c540')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-i686/PKGBUILD (from rev 127793, 
openmw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-16 11:51:49 UTC (rev 127794)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.35.0
+pkgrel=1
+pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
+arch=('i686' 'x86_64')
+url=http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('f358f30c2828d3899ac78f142f3bc081feb6769e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-16 11:51:32 UTC (rev 127793)
+++ community-x86_64/PKGBUILD   2015-02-16 11:51:49 UTC (rev 127794)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.34.0
-pkgrel=2
-pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
-arch=('i686' 'x86_64')
-url=http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('269998405293964462b4af8f48294ee19832c540')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-x86_64/PKGBUILD (from rev 127793, 
openmw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-16 11:51:49 UTC (rev 127794)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.35.0
+pkgrel=1
+pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
+arch=('i686' 'x86_64')
+url=http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('f358f30c2828d3899ac78f142f3bc081feb6769e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make

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

2015-02-16 Thread Sven-Hendrik Haase
Date: Monday, February 16, 2015 @ 12:51:32
  Author: svenstaro
Revision: 127793

upgpkg: openmw 0.35.0-1

upstream release 0.35

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 10:33:08 UTC (rev 127792)
+++ PKGBUILD2015-02-16 11:51:32 UTC (rev 127793)
@@ -2,8 +2,8 @@
 # Contributor: Sandy Carter bwrsand...@gmail.com
 
 pkgname=openmw
-pkgver=0.34.0
-pkgrel=2
+pkgver=0.35.0
+pkgrel=1
 pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
 arch=('i686' 'x86_64')
 url=http://www.openmw.org;
@@ -11,7 +11,7 @@
 depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
 makedepends=('cmake' 'boost')
 source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('269998405293964462b4af8f48294ee19832c540')
+sha1sums=('f358f30c2828d3899ac78f142f3bc081feb6769e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}