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

2015-05-27 Thread Felix Yan
Date: Wednesday, May 27, 2015 @ 10:22:05
  Author: fyan
Revision: 134217

upgpkg: python-tornado 4.2.0-1

Modified:
  python-tornado/trunk/0001-use_system_ca_certificates.patch
  python-tornado/trunk/PKGBUILD

---+
 0001-use_system_ca_certificates.patch |   35 ++--
 PKGBUILD  |6 ++---
 2 files changed, 10 insertions(+), 31 deletions(-)

Modified: 0001-use_system_ca_certificates.patch
===
--- 0001-use_system_ca_certificates.patch   2015-05-27 08:05:38 UTC (rev 
134216)
+++ 0001-use_system_ca_certificates.patch   2015-05-27 08:22:05 UTC (rev 
134217)
@@ -3,14 +3,14 @@
 --- a/setup.py
 +++ b/setup.py
 @@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ # Certifi is also optional on 2.7.9+, although making our dependencies
+ # conditional on micro version numbers seems like a bad idea
+ # until we have more declarative metadata.
+-install_requires.append('certifi')
++pass
+ kwargs['install_requires'] = install_requires
  
- if setuptools is not None:
- # If setuptools is not available, you're on your own for dependencies.
--install_requires = ['certifi']
-+install_requires = []
- if sys.version_info  (3, 2):
- install_requires.append('backports.ssl_match_hostname')
- kwargs['install_requires'] = install_requires
+ setup(
 diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
 index f0f73fa..ffe3e40 100644
 --- a/tornado/simple_httpclient.py
@@ -34,24 +34,3 @@
  
  
  class SimpleAsyncHTTPClient(AsyncHTTPClient):
-diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py
-index 01b0d95..47a64e7 100644
 a/tornado/test/iostream_test.py
-+++ b/tornado/test/iostream_test.py
-@@ -10,7 +10,6 @@ from tornado.stack_context import NullContext
- from tornado.testing import AsyncHTTPTestCase, AsyncHTTPSTestCase, 
AsyncTestCase, bind_unused_port, ExpectLog, gen_test
- from tornado.test.util import unittest, skipIfNonUnix
- from tornado.web import RequestHandler, Application
--import certifi
- import errno
- import logging
- import os
-@@ -855,7 +854,7 @@ class TestIOStreamStartTLS(AsyncTestCase):
- def test_handshake_fail(self):
- self.server_start_tls(_server_ssl_options())
- client_future = self.client_start_tls(
--dict(cert_reqs=ssl.CERT_REQUIRED, ca_certs=certifi.where()))
-+dict(cert_reqs=ssl.CERT_REQUIRED, 
ca_certs=/etc/ssl/certs/ca-certificates.crt))
- with ExpectLog(gen_log, SSL Error):
- with self.assertRaises(ssl.SSLError):
- yield client_future

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 08:05:38 UTC (rev 134216)
+++ PKGBUILD2015-05-27 08:22:05 UTC (rev 134217)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Dziedzic  gostrc at gmail 
 
 pkgname=('python-tornado' 'python2-tornado')
-pkgver=4.1.0
-pkgrel=2
+pkgver=4.2.0
+pkgrel=1
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('i686' 'x86_64')
 url='http://www.tornadoweb.org/'
@@ -15,7 +15,7 @@
 0001-use_system_ca_certificates.patch
 0002-get-rid-of-backports-ssl-match-hostname.patch)
 sha512sums=('SKIP'
-
'6e50e9ecf361d54d9f67e1f12185cf58863ad0eae72fbe7cc24e8eaf94874255009a030249bb51adf06e98c7ed0b17d8c6d9ee65190ebc341d6857c0efbc7840'
+
'7d484e811c7de62d2f2d38595abc5edf8f6cbdfc8a983229d4ad6b67cadf00f101acaee88bfa4337b14b5a234ebaacc72036ccafca3596eac5f64298a1e30d54'
 
'798f1c5f659138aa4d775edde7c962ec6410671f528b7ec44ca12ac342ddf9ec51d998c676b9025292a58c2140ba8492fcc76759b63adaf08320f96b11bcbfea')
 
 prepare() {


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

2015-05-27 Thread Felix Yan
Date: Wednesday, May 27, 2015 @ 10:22:27
  Author: fyan
Revision: 134218

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

Added:
  python-tornado/repos/community-testing-i686/
  
python-tornado/repos/community-testing-i686/0001-use_system_ca_certificates.patch
(from rev 134217, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  
python-tornado/repos/community-testing-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
(from rev 134217, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
  python-tornado/repos/community-testing-i686/PKGBUILD
(from rev 134217, python-tornado/trunk/PKGBUILD)
  python-tornado/repos/community-testing-x86_64/
  
python-tornado/repos/community-testing-x86_64/0001-use_system_ca_certificates.patch
(from rev 134217, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  
python-tornado/repos/community-testing-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch
(from rev 134217, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
  python-tornado/repos/community-testing-x86_64/PKGBUILD
(from rev 134217, python-tornado/trunk/PKGBUILD)

-+
 community-testing-i686/0001-use_system_ca_certificates.patch|  
 36 
 community-testing-i686/0002-get-rid-of-backports-ssl-match-hostname.patch   |  
 23 ++
 community-testing-i686/PKGBUILD |  
 82 ++
 community-testing-x86_64/0001-use_system_ca_certificates.patch  |  
 36 
 community-testing-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch |  
 23 ++
 community-testing-x86_64/PKGBUILD   |  
 82 ++
 6 files changed, 282 insertions(+)

Copied: 
python-tornado/repos/community-testing-i686/0001-use_system_ca_certificates.patch
 (from rev 134217, python-tornado/trunk/0001-use_system_ca_certificates.patch)
===
--- community-testing-i686/0001-use_system_ca_certificates.patch
(rev 0)
+++ community-testing-i686/0001-use_system_ca_certificates.patch
2015-05-27 08:22:27 UTC (rev 134218)
@@ -0,0 +1,36 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ # Certifi is also optional on 2.7.9+, although making our dependencies
+ # conditional on micro version numbers seems like a bad idea
+ # until we have more declarative metadata.
+-install_requires.append('certifi')
++pass
+ kwargs['install_requires'] = install_requires
+ 
+ setup(
+diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
+index f0f73fa..ffe3e40 100644
+--- a/tornado/simple_httpclient.py
 b/tornado/simple_httpclient.py
+@@ -33,17 +33,9 @@ except ImportError:
+ # ssl is not available on Google App Engine.
+ ssl = None
+ 
+-try:
+-import certifi
+-except ImportError:
+-certifi = None
+-
+ 
+ def _default_ca_certs():
+-if certifi is None:
+-raise Exception(The 'certifi' package is required to use https 
+-in simple_httpclient)
+-return certifi.where()
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ 
+ class SimpleAsyncHTTPClient(AsyncHTTPClient):

Copied: 
python-tornado/repos/community-testing-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
 (from rev 134217, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
===
--- community-testing-i686/0002-get-rid-of-backports-ssl-match-hostname.patch   
(rev 0)
+++ community-testing-i686/0002-get-rid-of-backports-ssl-match-hostname.patch   
2015-05-27 08:22:27 UTC (rev 134218)
@@ -0,0 +1,23 @@
+From f8f2ffca1928aeca2fa9771093436dba49baa538 Mon Sep 17 00:00:00 2001
+From: Felix Yan felixonm...@gmail.com
+Date: Fri, 12 Dec 2014 23:10:15 +0800
+Subject: [PATCH] Don't depend on backports.ssl-match-hostname with python
+ =2.7.9, 3.0
+
+---
+ setup.py   | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f09169f..f795807 100644
+--- a/setup.py
 b/setup.py
+@@ -121,7 +121,7 @@ def build_extension(self, ext):
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+ install_requires = []
+-if sys.version_info  (3, 2):
++if sys.version_info  (2, 7, 9) or (3, 0) = sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ kwargs['install_requires'] = install_requires
+ 

Copied: python-tornado/repos/community-testing-i686/PKGBUILD (from rev 134217, 
python-tornado/trunk/PKGBUILD)

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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 11:50:41
  Author: spupykin
Revision: 134219

upgpkg: libmediainfo 0.7.74-1

upd

Modified:
  libmediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 08:22:27 UTC (rev 134218)
+++ PKGBUILD2015-05-27 09:50:41 UTC (rev 134219)
@@ -3,7 +3,7 @@
 # Maintainer:  hydro hy...@freenet.de
 
 pkgname=libmediainfo
-pkgver=0.7.73
+pkgver=0.7.74
 pkgrel=1
 pkgdesc=shared library for mediainfo
 arch=('i686' 'x86_64')
@@ -11,9 +11,9 @@
 license=('GPL')
 depends=( 'curl' 'libmms' 'libzen')
 makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
+source=(http://mediaarea.net/download/source/libmediainfo/$pkgver/libmediainfo_$pkgver.tar.bz2
libmediainfo-0.7.50-libmms.patch)
-md5sums=('cc2af8b22e5f0d605c1b71230fa0e575'
+md5sums=('a6079ccd3fb53eaad126c45a78c03b3f'
  '2f4b21cc250f663d52b497dedb963e3b')
 
 build() {


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 11:51:48
  Author: spupykin
Revision: 134221

upgpkg: mediainfo 0.7.74-1

upd

Modified:
  mediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 09:51:16 UTC (rev 134220)
+++ PKGBUILD2015-05-27 09:51:48 UTC (rev 134221)
@@ -3,7 +3,7 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo
-pkgver=0.7.73
+pkgver=0.7.74
 pkgrel=1
 pkgdesc=supplies technical and tag information about a video or audio file
 arch=('i686' 'x86_64')
@@ -11,8 +11,8 @@
 license=('GPL')
 depends=('libmediainfo')
 makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('92b07876248f31800c6039247f9593df')
+source=(http://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.bz2)
+md5sums=('fe3891ecb199f065b3d429ef1e1e2781')
 
 build() {
   cd $srcdir/MediaInfo/Project/GNU/CLI


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 11:51:16
  Author: spupykin
Revision: 134220

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

Added:
  libmediainfo/repos/community-i686/PKGBUILD
(from rev 134219, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
(from rev 134219, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
  libmediainfo/repos/community-x86_64/PKGBUILD
(from rev 134219, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch
(from rev 134219, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
Deleted:
  libmediainfo/repos/community-i686/PKGBUILD
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
  libmediainfo/repos/community-x86_64/PKGBUILD
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch

---+
 /PKGBUILD |   76 +++
 /libmediainfo-0.7.50-libmms.patch |  100 
 community-i686/PKGBUILD   |   38 ---
 community-i686/libmediainfo-0.7.50-libmms.patch   |   50 --
 community-x86_64/PKGBUILD |   38 ---
 community-x86_64/libmediainfo-0.7.50-libmms.patch |   50 --
 6 files changed, 176 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 09:50:41 UTC (rev 134219)
+++ community-i686/PKGBUILD 2015-05-27 09:51:16 UTC (rev 134220)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  hydro hy...@freenet.de
-
-pkgname=libmediainfo
-pkgver=0.7.73
-pkgrel=1
-pkgdesc=shared library for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=( 'curl' 'libmms' 'libzen')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
-   libmediainfo-0.7.50-libmms.patch)
-md5sums=('cc2af8b22e5f0d605c1b71230fa0e575'
- '2f4b21cc250f663d52b497dedb963e3b')
-
-build() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  sh ./autogen
-  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
-  make clean
-  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
-  make
-}
-
-package() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  make DESTDIR=$pkgdir install
-  for i in MediaInfo MediaInfoDLL; do
-install -dm 755 $pkgdir/usr/include/$i
-install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
-  done
-  install -dm 755 $pkgdir/usr/lib/pkgconfig
-  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
-  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
-}

Copied: libmediainfo/repos/community-i686/PKGBUILD (from rev 134219, 
libmediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 09:51:16 UTC (rev 134220)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  hydro hy...@freenet.de
+
+pkgname=libmediainfo
+pkgver=0.7.74
+pkgrel=1
+pkgdesc=shared library for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=( 'curl' 'libmms' 'libzen')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://mediaarea.net/download/source/libmediainfo/$pkgver/libmediainfo_$pkgver.tar.bz2
+   libmediainfo-0.7.50-libmms.patch)
+md5sums=('a6079ccd3fb53eaad126c45a78c03b3f'
+ '2f4b21cc250f663d52b497dedb963e3b')
+
+build() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  sh ./autogen
+  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
+  make clean
+  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
+  make
+}
+
+package() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  make DESTDIR=$pkgdir install
+  for i in MediaInfo MediaInfoDLL; do
+install -dm 755 $pkgdir/usr/include/$i
+install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
+  done
+  install -dm 755 $pkgdir/usr/lib/pkgconfig
+  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
+  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
+}

Deleted: community-i686/libmediainfo-0.7.50-libmms.patch
===
--- community-i686/libmediainfo-0.7.50-libmms.patch 2015-05-27 09:50:41 UTC 
(rev 134219)
+++ community-i686/libmediainfo-0.7.50-libmms.patch 2015-05-27 09:51:16 UTC 
(rev 134220)
@@ -1,50 +0,0 @@
-diff 

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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 11:52:23
  Author: spupykin
Revision: 134222

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 09:51:48 UTC (rev 134221)
+++ community-i686/PKGBUILD 2015-05-27 09:52:23 UTC (rev 134222)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.73
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('92b07876248f31800c6039247f9593df')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-i686/PKGBUILD (from rev 134221, 
mediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 09:52:23 UTC (rev 134222)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.74
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.bz2)
+md5sums=('fe3891ecb199f065b3d429ef1e1e2781')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-27 09:51:48 UTC (rev 134221)
+++ community-x86_64/PKGBUILD   2015-05-27 09:52:23 UTC (rev 134222)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.73
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('92b07876248f31800c6039247f9593df')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-x86_64/PKGBUILD (from rev 134221, 
mediainfo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-27 09:52:23 UTC (rev 134222)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.74
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.bz2)
+md5sums=('fe3891ecb199f065b3d429ef1e1e2781')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 12:28:16
  Author: spupykin
Revision: 134223

upgpkg: mediainfo-gui 0.7.74-1

upd

Modified:
  mediainfo-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 09:52:23 UTC (rev 134222)
+++ PKGBUILD2015-05-27 10:28:16 UTC (rev 134223)
@@ -3,7 +3,7 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo-gui
-pkgver=0.7.73
+pkgver=0.7.74
 pkgrel=1
 pkgdesc=GUI for mediainfo
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
 makedepends=('imagemagick')
 install=mediainfo-gui.install
-source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('92b07876248f31800c6039247f9593df')
+source=(http://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.bz2)
+md5sums=('fe3891ecb199f065b3d429ef1e1e2781')
 
 build() {
   cd MediaInfo/Project/GNU/GUI


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

2015-05-27 Thread Levente Polyak
Date: Wednesday, May 27, 2015 @ 13:11:33
  Author: anthraxx
Revision: 134226

archrelease: copy trunk to community-any

Added:
  sslstrip/repos/community-any/
  sslstrip/repos/community-any/PKGBUILD
(from rev 134225, sslstrip/trunk/PKGBUILD)

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

Copied: sslstrip/repos/community-any/PKGBUILD (from rev 134225, 
sslstrip/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-05-27 11:11:33 UTC (rev 134226)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+# Contributor: Jonas Heinrich o...@project-insanity.org
+# Contributor: MatToufoutu mattoufootu[at]gmail.com
+
+pkgname=sslstrip
+pkgver=0.9
+pkgrel=7
+pkgdesc=Python tool to hijack HTTPS connections during a MITM attack
+url=http://www.thoughtcrime.org/software/sslstrip/;
+arch=('any')
+license=('GPL3')
+depends=('python2-pyopenssl' 'python2-twisted' 'python2-service-identity')
+source=(http://www.thoughtcrime.org/software/sslstrip/${pkgname}-${pkgver}.tar.gz)
+sha512sums=(f6e24db0dcb0c4e137b5828d043db17f5d59e46181f51b1814cf66466b55d6a11a95e7ee8748e59faacfc6176689d030af5fa5c99dedce47e8f9ca6cc7316abc)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/env python$/env python2/g' -i sslstrip.py
+  # package data files ourselves
+  sed -e '/data_files = /d' -i setup.py
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 README ${pkgdir}/usr/share/doc/${pkgname}/README
+  install -Dm 644 lock.ico ${pkgdir}/usr/share/${pkgname}/lock.ico
+}
+
+# vim: ts=2 sw=2 et:


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 12:29:19
  Author: spupykin
Revision: 134224

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

Added:
  mediainfo-gui/repos/community-i686/PKGBUILD
(from rev 134223, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
(from rev 134223, mediainfo-gui/trunk/mediainfo-gui.install)
  mediainfo-gui/repos/community-x86_64/PKGBUILD
(from rev 134223, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install
(from rev 134223, mediainfo-gui/trunk/mediainfo-gui.install)
Deleted:
  mediainfo-gui/repos/community-i686/PKGBUILD
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
  mediainfo-gui/repos/community-x86_64/PKGBUILD
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install

+
 /PKGBUILD  |   72 +++
 /mediainfo-gui.install |   24 ++
 community-i686/PKGBUILD|   36 ---
 community-i686/mediainfo-gui.install   |   12 -
 community-x86_64/PKGBUILD  |   36 ---
 community-x86_64/mediainfo-gui.install |   12 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 10:28:16 UTC (rev 134223)
+++ community-i686/PKGBUILD 2015-05-27 10:29:19 UTC (rev 134224)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo-gui
-pkgver=0.7.73
-pkgrel=1
-pkgdesc=GUI for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
-makedepends=('imagemagick')
-install=mediainfo-gui.install
-source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('92b07876248f31800c6039247f9593df')
-
-build() {
-  cd MediaInfo/Project/GNU/GUI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd MediaInfo/Project/GNU/GUI
-  make DESTDIR=$pkgdir install
-  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
-  install -Dm 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
-  install -m 644 
$srcdir/MediaInfo/Source/Resource/Image/MediaInfo.{svg,ico,xpm} 
$pkgdir/usr/share/icons/
-  install -Dm 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-$pkgdir/usr/share/pixmaps/mediainfo-gui.png
-  install -Dm 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
-$pkgdir/usr/share/applications/mediainfo-gui.desktop
-}

Copied: mediainfo-gui/repos/community-i686/PKGBUILD (from rev 134223, 
mediainfo-gui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 10:29:19 UTC (rev 134224)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo-gui
+pkgver=0.7.74
+pkgrel=1
+pkgdesc=GUI for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
+makedepends=('imagemagick')
+install=mediainfo-gui.install
+source=(http://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.bz2)
+md5sums=('fe3891ecb199f065b3d429ef1e1e2781')
+
+build() {
+  cd MediaInfo/Project/GNU/GUI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd MediaInfo/Project/GNU/GUI
+  make DESTDIR=$pkgdir install
+  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
+  install -Dm 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
+  install -m 644 
$srcdir/MediaInfo/Source/Resource/Image/MediaInfo.{svg,ico,xpm} 
$pkgdir/usr/share/icons/
+  install -Dm 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+$pkgdir/usr/share/pixmaps/mediainfo-gui.png
+  install -Dm 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
+$pkgdir/usr/share/applications/mediainfo-gui.desktop
+}

Deleted: community-i686/mediainfo-gui.install
===
--- community-i686/mediainfo-gui.install2015-05-27 10:28:16 UTC (rev 
134223)
+++ community-i686/mediainfo-gui.install2015-05-27 10:29:19 UTC (rev 
134224)
@@ -1,12 +0,0 @@
-post_install() {
-  which gtk-update-icon-cache /dev/null  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}

[arch-commits] Commit in (4 files)

2015-05-27 Thread Levente Polyak
Date: Wednesday, May 27, 2015 @ 13:10:53
  Author: anthraxx
Revision: 134225

moving sslstrip 0.9-7 to [community]

Added:
  sslstrip/
  sslstrip/repos/
  sslstrip/trunk/
  sslstrip/trunk/PKGBUILD

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

Added: sslstrip/trunk/PKGBUILD
===
--- sslstrip/trunk/PKGBUILD (rev 0)
+++ sslstrip/trunk/PKGBUILD 2015-05-27 11:10:53 UTC (rev 134225)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+# Contributor: Jonas Heinrich o...@project-insanity.org
+# Contributor: MatToufoutu mattoufootu[at]gmail.com
+
+pkgname=sslstrip
+pkgver=0.9
+pkgrel=7
+pkgdesc=Python tool to hijack HTTPS connections during a MITM attack
+url=http://www.thoughtcrime.org/software/sslstrip/;
+arch=('any')
+license=('GPL3')
+depends=('python2-pyopenssl' 'python2-twisted' 'python2-service-identity')
+source=(http://www.thoughtcrime.org/software/sslstrip/${pkgname}-${pkgver}.tar.gz)
+sha512sums=(f6e24db0dcb0c4e137b5828d043db17f5d59e46181f51b1814cf66466b55d6a11a95e7ee8748e59faacfc6176689d030af5fa5c99dedce47e8f9ca6cc7316abc)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/env python$/env python2/g' -i sslstrip.py
+  # package data files ourselves
+  sed -e '/data_files = /d' -i setup.py
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 README ${pkgdir}/usr/share/doc/${pkgname}/README
+  install -Dm 644 lock.ico ${pkgdir}/usr/share/${pkgname}/lock.ico
+}
+
+# vim: ts=2 sw=2 et:


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 14:43:55
  Author: spupykin
Revision: 134227

upgpkg: sqlitebrowser 3.6.0-1

upd

Modified:
  sqlitebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 11:11:33 UTC (rev 134226)
+++ PKGBUILD2015-05-27 12:43:55 UTC (rev 134227)
@@ -4,7 +4,7 @@
 # Contributor: Michael Fellinger m.fellin...@gmail.com
 
 pkgname=sqlitebrowser
-pkgver=3.5.1
+pkgver=3.6.0
 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=('9d0caa52f15dacecaf593ae20e2f9fe4')
+md5sums=('c33986560fe7a137ac7dc20ba3c4b113')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 14:44:29
  Author: spupykin
Revision: 134228

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

Added:
  sqlitebrowser/repos/community-i686/PKGBUILD
(from rev 134227, sqlitebrowser/trunk/PKGBUILD)
  sqlitebrowser/repos/community-i686/sqlitebrowser.install
(from rev 134227, sqlitebrowser/trunk/sqlitebrowser.install)
  sqlitebrowser/repos/community-x86_64/PKGBUILD
(from rev 134227, sqlitebrowser/trunk/PKGBUILD)
  sqlitebrowser/repos/community-x86_64/sqlitebrowser.install
(from rev 134227, 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-05-27 12:43:55 UTC (rev 134227)
+++ community-i686/PKGBUILD 2015-05-27 12:44:29 UTC (rev 134228)
@@ -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.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/
-}

Copied: sqlitebrowser/repos/community-i686/PKGBUILD (from rev 134227, 
sqlitebrowser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 12:44:29 UTC (rev 134228)
@@ -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.6.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=('c33986560fe7a137ac7dc20ba3c4b113')
+
+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-05-27 12:43:55 UTC (rev 
134227)
+++ community-i686/sqlitebrowser.install2015-05-27 12:44:29 UTC (rev 
134228)
@@ -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 python-werkzeug/trunk (PKGBUILD)

2015-05-27 Thread Alexander Rødseth
Date: Wednesday, May 27, 2015 @ 15:06:28
  Author: arodseth
Revision: 134229

Additional dependencies when running check()

Modified:
  python-werkzeug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 12:44:29 UTC (rev 134228)
+++ PKGBUILD2015-05-27 13:06:28 UTC (rev 134229)
@@ -12,7 +12,7 @@
 url='http://werkzeug.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pytest' 
'python2-pytest' 'python-requests' 'python2-requests')
 
source=(http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz;)
 sha256sums=('9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d')
 
@@ -35,10 +35,10 @@
 
 #check() {
 #  cd python-werkzeug-$pkgver
-#  python setup.py test || true
+#  python setup.py test
 #
 #  cd python-werkzeug-$pkgver
-#  p3ython2 setup.py test || true
+#  p3ython2 setup.py test
 #}
 
 package_python-werkzeug() {
@@ -57,4 +57,5 @@
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
+# getver: https://github.com/mitsuhiko/werkzeug
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in syncthing/repos/community-i686 (4 files)

2015-05-27 Thread Jaroslav Lichtblau
Date: Wednesday, May 27, 2015 @ 19:55:46
  Author: jlichtblau
Revision: 134236

archrelease: copy trunk to community-i686

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 134235, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing.1
(from rev 134235, syncthing/trunk/syncthing.1)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing.1

-+
 PKGBUILD|  100 +++---
 syncthing.1 |  188 +-
 2 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 17:42:51 UTC (rev 134235)
+++ PKGBUILD2015-05-27 17:55:46 UTC (rev 134236)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.5
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPLv2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
-$pkgname.1)
-sha1sums=('SKIP'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p src/github.com/syncthing
-  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  go run build.go -no-upgrade build
-}
-
-check() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  #go run build.go -no-upgrade test
-}
-
-package() {
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-
-# license
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 134235, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 17:55:46 UTC (rev 134236)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.6
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPLv2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
+$pkgname.1)
+sha1sums=('SKIP'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p src/github.com/syncthing
+  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  go run build.go -no-upgrade build
+}
+
+check() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  #go run build.go -no-upgrade test
+}
+
+package() {
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
+  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
+  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
+
+# license
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: syncthing.1
===
--- syncthing.1 2015-05-27 17:42:51 UTC (rev 134235)
+++ syncthing.1 2015-05-27 17:55:46 UTC (rev 134236)
@@ -1,94 +0,0 @@
-.\ generated with Ronn/v0.7.3
-.\ http://github.com/rtomayko/ronn/tree/0.7.3
-.
-.TH SYNCTHING  May 2014  syncthing
-.
-.SH Project Goals
-This is the \fBsyncthing\fR project\. The following are the project goals:
-.
-.IP 1. 4
-Define a protocol for synchronization of a 

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

2015-05-27 Thread Evangelos Foutras
Date: Wednesday, May 27, 2015 @ 19:55:08
  Author: foutrelis
Revision: 239819

upgpkg: systemd 220-2

- Backport fix for incorrect SIGCHLD handling in --daemon mode (FS#45086).
- Use git sources to work around incomplete release tarball.
- Enable gnuefi support.

Modified:
  systemd/trunk/PKGBUILD
Deleted:
  systemd/trunk/0001-udevd-worker-fully-clean-up-unnecessary-fds.patch
  systemd/trunk/0002-udevd-worker-modernize-a-bit.patch
  systemd/trunk/0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch

+
 0001-udevd-worker-fully-clean-up-unnecessary-fds.patch |   34 --
 0002-udevd-worker-modernize-a-bit.patch|   58 ---
 0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch |   45 
 PKGBUILD   |   38 +++
 4 files changed, 18 insertions(+), 157 deletions(-)

Deleted: 0001-udevd-worker-fully-clean-up-unnecessary-fds.patch
===
--- 0001-udevd-worker-fully-clean-up-unnecessary-fds.patch  2015-05-27 
17:31:03 UTC (rev 239818)
+++ 0001-udevd-worker-fully-clean-up-unnecessary-fds.patch  2015-05-27 
17:55:08 UTC (rev 239819)
@@ -1,34 +0,0 @@
-From 6d1b1e0bc6bd020218afc5f05286bf372be283d5 Mon Sep 17 00:00:00 2001
-From: Tom Gundersen t...@jklm.no
-Date: Sun, 24 May 2015 15:10:04 +0200
-Subject: [PATCH 1/3] udevd: worker - fully clean up unnecessary fds
-
-These are only ever used in the parent process, so close them early in the 
worker.

- src/udev/udevd.c | 6 +-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/src/udev/udevd.c b/src/udev/udevd.c
-index afd4640..d8cb046 100644
 a/src/udev/udevd.c
-+++ b/src/udev/udevd.c
-@@ -329,11 +329,15 @@ static void worker_spawn(Manager *manager, struct event 
*event) {
- 
- manager_workers_free(manager);
- event_queue_cleanup(manager, EVENT_UNDEF);
-+
- manager-monitor = udev_monitor_unref(manager-monitor);
-+manager-ctrl_conn_blocking = 
udev_ctrl_connection_unref(manager-ctrl_conn_blocking);
- manager-ctrl = udev_ctrl_unref(manager-ctrl);
-+
-+manager-fd_ep = safe_close(manager-fd_ep);
- manager-fd_signal = safe_close(manager-fd_signal);
-+manager-fd_inotify = safe_close(manager-fd_inotify);
- manager-worker_watch[READ_END] = 
safe_close(manager-worker_watch[READ_END]);
--manager-fd_ep = safe_close(manager-fd_ep);
- 
- sigfillset(mask);
- fd_signal = signalfd(-1, mask, SFD_NONBLOCK|SFD_CLOEXEC);
--- 
-2.4.1
-

Deleted: 0002-udevd-worker-modernize-a-bit.patch
===
--- 0002-udevd-worker-modernize-a-bit.patch 2015-05-27 17:31:03 UTC (rev 
239818)
+++ 0002-udevd-worker-modernize-a-bit.patch 2015-05-27 17:55:08 UTC (rev 
239819)
@@ -1,58 +0,0 @@
-From 2dd9f98d2d7a06a8e28729da6339fce50d66e9cc Mon Sep 17 00:00:00 2001
-From: Tom Gundersen t...@jklm.no
-Date: Sun, 24 May 2015 15:14:43 +0200
-Subject: [PATCH 2/3] udevd: worker - modernize a bit
-
-Initialize structs when declaring rather than using memzero().

- src/udev/udevd.c | 18 +++---
- 1 file changed, 7 insertions(+), 11 deletions(-)
-
-diff --git a/src/udev/udevd.c b/src/udev/udevd.c
-index d8cb046..4a44b03 100644
 a/src/udev/udevd.c
-+++ b/src/udev/udevd.c
-@@ -316,10 +316,11 @@ static void worker_spawn(Manager *manager, struct event 
*event) {
- switch (pid) {
- case 0: {
- struct udev_device *dev = NULL;
-+_cleanup_rtnl_unref_ sd_rtnl *rtnl = NULL;
- int fd_monitor;
- _cleanup_close_ int fd_signal = -1, fd_ep = -1;
--_cleanup_rtnl_unref_ sd_rtnl *rtnl = NULL;
--struct epoll_event ep_signal, ep_monitor;
-+struct epoll_event ep_signal = { .events = EPOLLIN };
-+struct epoll_event ep_monitor = { .events = EPOLLIN };
- sigset_t mask;
- int r = 0;
- 
-@@ -345,6 +346,10 @@ static void worker_spawn(Manager *manager, struct event 
*event) {
- r = log_error_errno(errno, error creating signalfd 
%m);
- goto out;
- }
-+ep_signal.data.fd = fd_signal;
-+
-+fd_monitor = udev_monitor_get_fd(worker_monitor);
-+ep_monitor.data.fd = fd_monitor;
- 
- fd_ep = epoll_create1(EPOLL_CLOEXEC);
- if (fd_ep  0) {
-@@ -352,15 +357,6 @@ static void worker_spawn(Manager *manager, struct event 
*event) {
- goto out;
- }
- 
--memzero(ep_signal, sizeof(struct epoll_event));
--ep_signal.events = EPOLLIN;
--

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

2015-05-27 Thread Evangelos Foutras
Date: Wednesday, May 27, 2015 @ 19:55:20
  Author: foutrelis
Revision: 239820

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

Added:
  systemd/repos/testing-i686/PKGBUILD
(from rev 239819, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 239819, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 239819, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 239819, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/systemd.install
(from rev 239819, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 239819, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 239819, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 239819, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 239819, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/systemd.install
(from rev 239819, systemd/trunk/systemd.install)
Deleted:
  
systemd/repos/testing-i686/0001-udevd-worker-fully-clean-up-unnecessary-fds.patch
  systemd/repos/testing-i686/0002-udevd-worker-modernize-a-bit.patch
  
systemd/repos/testing-i686/0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/systemd.install
  
systemd/repos/testing-x86_64/0001-udevd-worker-fully-clean-up-unnecessary-fds.patch
  systemd/repos/testing-x86_64/0002-udevd-worker-modernize-a-bit.patch
  
systemd/repos/testing-x86_64/0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/systemd.install

---+
 /PKGBUILD |  
354 
 /initcpio-hook-udev   |   
44 +
 /initcpio-install-systemd |  
342 
 /initcpio-install-udev|   
58 +
 /systemd.install  |  
410 ++
 testing-i686/0001-udevd-worker-fully-clean-up-unnecessary-fds.patch   |   
34 
 testing-i686/0002-udevd-worker-modernize-a-bit.patch  |   
58 -
 testing-i686/0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch   |   
45 -
 testing-i686/PKGBUILD |  
179 
 testing-i686/initcpio-hook-udev   |   
22 
 testing-i686/initcpio-install-systemd |  
171 
 testing-i686/initcpio-install-udev|   
29 
 testing-i686/systemd.install  |  
205 -
 testing-x86_64/0001-udevd-worker-fully-clean-up-unnecessary-fds.patch |   
34 
 testing-x86_64/0002-udevd-worker-modernize-a-bit.patch|   
58 -
 testing-x86_64/0003-udevd-event-fix-event-queue-in-daemenozied-mode.patch |   
45 -
 testing-x86_64/PKGBUILD   |  
179 
 testing-x86_64/initcpio-hook-udev |   
22 
 testing-x86_64/initcpio-install-systemd   |  
171 
 testing-x86_64/initcpio-install-udev  |   
29 
 testing-x86_64/systemd.install|  
205 -
 21 files changed, 1208 insertions(+), 1486 deletions(-)

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


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 18:13:23
  Author: spupykin
Revision: 134231

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 134230, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 134230, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 134230, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 134230, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 134230, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 134230, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 134230, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 134230, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  186 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  112 ++
 community-i686/PKGBUILD  |   93 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   56 ---
 community-x86_64/PKGBUILD|   93 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   56 ---
 9 files changed, 314 insertions(+), 314 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 16:12:33 UTC (rev 134230)
+++ community-i686/PKGBUILD 2015-05-27 16:13:23 UTC (rev 134231)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: robb_force robb_fo...@holybuffalo.net
-# Maintainer: JJDaNiMoTh jjdanim...@gmail.com
-
-pkgname=sdlmame
-pkgver=0.161
-#_patchlevel=`echo $pkgver | cut -f2 -du`
-#_basever=`echo $pkgver | cut -f1,2 -d.`
-_basever=$pkgver
-pkgrel=1
-pkgdesc=A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support.
-url=http://mamedev.org/;
-license=('custom:MAME License')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt4')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-#DLAGENTS=('http::/usr/bin/wget -U Mozilla/5.0 (X11; U; Linux x86_64; en-US; 
rv:1.9.1.2) Gecko/20090804 Shiretoko/3.5.2 -c -t 3 --waitretry=3 -O %o %u')
-install=sdlmame.install
-
-#for i in `seq 1 ${_patchlevel}`; do
-#  _patches=${_patches} 
sdlmame-${_basever/./}u${i}_diff.zip::http://mamedev.org/updates/${_basever/./}u${i}_diff.zip;
-#done
-
-source=(mame${_basever/./}s.zip::http://mamedev.org/downloader.php?file=releases/mame${_basever/./}s.zip;
-   sdlmame.sh
-   extras.tar.gz
-   ${_patches})
-md5sums=('fc6dc92f5af0e9125c6cd20ce8ebf3f1'
- '0cced0fe9868cc56129600fb4bd5b9ed'
- '420b61240bf5ae11615ba7c6100ee00d')
-
-prepare() {
-  cd $srcdir/
-  unzip mame.zip
-  find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
-#  for i in `seq 1 ${_patchlevel}`; do
-#msg Patch#$i
-#patch -p0 -E ${_basever/./}u$i.diff
-#  done
-}
-
-build() {
-  cd $srcdir/
-  make NOWERROR=1 OPTIMIZE=2 PYTHON_EXECUTABLE=/usr/bin/python2 TOOLS=1
-}
-
-package() {
-  cd $srcdir/
-  # Install the sdlmame script
-  install -Dm755 $srcdir/${pkgname}.sh $pkgdir/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame $pkgdir/usr/share/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 $pkgdir/usr/share/${pkgname}/${pkgname}
-
-  install -m755 chdman $pkgdir/usr/share/${pkgname}/chdman
-  install -m755 jedutil $pkgdir/usr/share/${pkgname}/jedutil
-  install -m755 regrep $pkgdir/usr/share/${pkgname}/regrep
-  install -m755 romcmp $pkgdir/usr/share/${pkgname}/romcmp
-  install -m755 testkeys $pkgdir/usr/share/${pkgname}/testkeys
-  install -m755 src2html $pkgdir/usr/share/${pkgname}/src2html
-  install -m755 srcclean $pkgdir/usr/share/${pkgname}/srcclean
-  install -m755 ldverify $pkgdir/usr/share/${pkgname}/ldverify
-  install -m755 ldresample $pkgdir/usr/share/${pkgname}/ldresample
-
-  # Install the extra bits
-  install -d $pkgdir/usr/share/${pkgname}/{artwork,ctrlr,keymaps,shader}
-  install -d $pkgdir/usr/share/man/man1
-  install -d $pkgdir/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
$pkgdir/usr/share/${pkgname}/shader/
-  install -m644 src/osd/sdl/man/*.1* $pkgdir/usr/share/man/man1/
-  install -m644 src/osd/sdl/man/*.6* 

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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 18:12:33
  Author: spupykin
Revision: 134230

upgpkg: sdlmame 0.162-1

upd

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 13:06:28 UTC (rev 134229)
+++ PKGBUILD2015-05-27 16:12:33 UTC (rev 134230)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh jjdanim...@gmail.com
 
 pkgname=sdlmame
-pkgver=0.161
+pkgver=0.162
 #_patchlevel=`echo $pkgver | cut -f2 -du`
 #_basever=`echo $pkgver | cut -f1,2 -d.`
 _basever=$pkgver
@@ -22,11 +22,11 @@
 #  _patches=${_patches} 
sdlmame-${_basever/./}u${i}_diff.zip::http://mamedev.org/updates/${_basever/./}u${i}_diff.zip;
 #done
 
-source=(mame${_basever/./}s.zip::http://mamedev.org/downloader.php?file=releases/mame${_basever/./}s.zip;
+source=(mame${_basever/./}s.zip::http://mamedev.org/downloader.php?file=mame${_basever/./}/mame${_basever/./}s.zip;
sdlmame.sh
extras.tar.gz
${_patches})
-md5sums=('fc6dc92f5af0e9125c6cd20ce8ebf3f1'
+md5sums=('ca9d6b62473cdd7abdef2487c3f39a8e'
  '0cced0fe9868cc56129600fb4bd5b9ed'
  '420b61240bf5ae11615ba7c6100ee00d')
 
@@ -33,7 +33,7 @@
 prepare() {
   cd $srcdir/
   unzip mame.zip
-  find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
+  find . -type f -not -name \*.png | xargs -i_arg_ perl -pi -e 's/\r\n?/\n/g' 
_arg_
 #  for i in `seq 1 ${_patchlevel}`; do
 #msg Patch#$i
 #patch -p0 -E ${_basever/./}u$i.diff
@@ -77,7 +77,7 @@
   install -m644 src/osd/sdl/keymaps/* $pkgdir/usr/share/${pkgname}/keymaps/
 
   # Include the license
-  install -Dm644 docs/license.txt 
$pkgdir/usr/share/licenses/${pkgname}/license.txt
+  install -Dm644 docs/mamelicense.txt 
$pkgdir/usr/share/licenses/${pkgname}/license.txt
 
   # FS#28203
   sed -i 's|KEYCODE_2_PAD|KEYCODE_2PAD|' $pkgdir/usr/share/sdlmame/ctrlr/*.cfg


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

2015-05-27 Thread Jaroslav Lichtblau
Date: Wednesday, May 27, 2015 @ 19:28:28
  Author: jlichtblau
Revision: 134233

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 134232, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 134232, syncthing/trunk/syncthing.1)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1

-+
 PKGBUILD|  100 +++---
 syncthing.1 |  188 +-
 2 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 17:28:15 UTC (rev 134232)
+++ PKGBUILD2015-05-27 17:28:28 UTC (rev 134233)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.5
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPLv2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
-$pkgname.1)
-sha1sums=('SKIP'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p src/github.com/syncthing
-  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  go run build.go -no-upgrade build
-}
-
-check() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  #go run build.go -no-upgrade test
-}
-
-package() {
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-
-# license
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 134232, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 17:28:28 UTC (rev 134233)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.6
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPLv2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
+$pkgname.1)
+sha1sums=('SKIP'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p src/github.com/syncthing
+  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  go run build.go -no-upgrade build
+}
+
+check() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  #go run build.go -no-upgrade test
+}
+
+package() {
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
+  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
+  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
+
+# license
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: syncthing.1
===
--- syncthing.1 2015-05-27 17:28:15 UTC (rev 134232)
+++ syncthing.1 2015-05-27 17:28:28 UTC (rev 134233)
@@ -1,94 +0,0 @@
-.\ generated with Ronn/v0.7.3
-.\ http://github.com/rtomayko/ronn/tree/0.7.3
-.
-.TH SYNCTHING  May 2014  syncthing
-.
-.SH Project Goals
-This is the \fBsyncthing\fR project\. The following are the project goals:
-.
-.IP 1. 4
-Define a protocol for 

[arch-commits] Commit in crash/trunk (PKGBUILD linux_version_4_support.patch)

2015-05-27 Thread Anatol Pomozov
Date: Wednesday, May 27, 2015 @ 19:42:10
  Author: anatolik
Revision: 134234

upgpkg: crash 7.1.1-1

Modified:
  crash/trunk/PKGBUILD
Deleted:
  crash/trunk/linux_version_4_support.patch

---+
 PKGBUILD  |   12 
 linux_version_4_support.patch |   32 
 2 files changed, 4 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 17:28:28 UTC (rev 134233)
+++ PKGBUILD2015-05-27 17:42:10 UTC (rev 134234)
@@ -5,23 +5,19 @@
 # Contributor: Mathieu Pasquet mathi...@mathieui.net
 
 pkgname=crash
-pkgver=7.1.0
-pkgrel=2
+pkgver=7.1.1
+pkgrel=1
 pkgdesc='Linux kernel crashdump analysis tool'
 url='http://people.redhat.com/~anderson'
 arch=(i686 x86_64)
 license=(GPL)
 depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz
-linux_version_4_support.patch)
-sha256sums=('12e17267985ad1339b5da931143d4997fa4dafb82027d5664d4b7826175a21ec'
-'e535507a1b3c6ca366513beb82b205969a33085ecd48952610f96f3d717bc022')
+source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
+sha256sums=('ff5d7a2ecc7bc675e1cd08d3460dd2c6998ef13fb222d86cd10905ade2f2f116')
 
 prepare() {
   cd crash-$pkgver
 
-  patch -Np1 -i ${srcdir}/linux_version_4_support.patch
-
   make gdb_unzip
   sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
 }

Deleted: linux_version_4_support.patch
===
--- linux_version_4_support.patch   2015-05-27 17:28:28 UTC (rev 134233)
+++ linux_version_4_support.patch   2015-05-27 17:42:10 UTC (rev 134234)
@@ -1,32 +0,0 @@
-commit db07dbf5a7e19806b1629bd4125e6643978c6f9f
-Author: Dave Anderson ander...@redhat.com
-Date:   Thu Feb 19 16:16:33 2015 -0500
-
-Prepare for the future increment of Linux 3.x to 4.x.
-(ander...@redhat.com)
-
-diff --git a/kernel.c b/kernel.c
-index cf858c2..a5e0c64 100644
 a/kernel.c
-+++ b/kernel.c
-@@ -1211,7 +1211,8 @@ verify_namelist()
-   sprintf(buffer3, (unknown));
- while (fgets(buffer, BUFSIZE-1, pipe)) {
-   if (!strstr(buffer, Linux version 2.) 
--  !strstr(buffer, Linux version 3.))
-+  !strstr(buffer, Linux version 3.) 
-+  !strstr(buffer, Linux version 4.))
-   continue;
- 
- if (strstr(buffer, kt-proc_version)) {
-@@ -4909,7 +4910,8 @@ debug_kernel_version(char *namelist)
-   argc = 0;
- while (fgets(buf, BUFSIZE-1, pipe)) {
- if (!strstr(buf, Linux version 2.) 
--  !strstr(buf, Linux version 3.))
-+  !strstr(buf, Linux version 3.) 
-+  !strstr(buf, Linux version 4.))
- continue;
- 
-   argc = parse_line(buf, arglist); 
-


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

2015-05-27 Thread Antonio Rojas
Date: Wednesday, May 27, 2015 @ 19:26:03
  Author: arojas
Revision: 239817

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

Added:
  breeze/repos/extra-i686/PKGBUILD
(from rev 239816, breeze/trunk/PKGBUILD)
  breeze/repos/extra-x86_64/PKGBUILD
(from rev 239816, breeze/trunk/PKGBUILD)
Deleted:
  breeze/repos/extra-i686/PKGBUILD
  breeze/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  164 
 extra-i686/PKGBUILD   |   69 
 extra-x86_64/PKGBUILD |   69 
 3 files changed, 164 insertions(+), 138 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-27 17:23:04 UTC (rev 239816)
+++ extra-i686/PKGBUILD 2015-05-27 17:26:03 UTC (rev 239817)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgbase=breeze
-pkgname=('breeze' 'breeze-kde4')
-pkgver=5.3.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/breeze'
-license=('LGPL')
-makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
- 'automoc4' 'kdecoration' 'kcmutils')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz;)
-md5sums=('343dee76ac0652a18007d10e7dbc7d29')
-
-prepare() {
-  mkdir build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-
-  cd ../build-kde4
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_KDE4=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_breeze() {
-  depends=('frameworkintegration' 'kdecoration')
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
-  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-  'oxygen-icons: fallback icon theme'
- 'gtk-theme-orion: GTK theme matching Breeze'
-   'kcmutils: for breeze-settings')
-  groups=('plasma')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # make QtCurve preset and color scheme available for KDE4 too
-  install -d $pkgdir/usr/share/apps/{QtCurve,color-schemes}
-  ln -s /usr/share/QtCurve/Breeze.qtcurve $pkgdir/usr/share/apps/QtCurve/
-  ln -s /usr/share/color-schemes/Breeze{,Dark}.colors 
$pkgdir/usr/share/apps/color-schemes/
-}
-
-package_breeze-kde4() {
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the KDE4'
-  depends=('kdelibs')
-
-  cd build-kde4
-  make DESTDIR=${pkgdir} install
-
-  # needed for pure Qt4 apps
-  install -d $pkgdir/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/breeze.so 
$pkgdir/usr/lib/qt4/plugins/styles
-}

Copied: breeze/repos/extra-i686/PKGBUILD (from rev 239816, 
breeze/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-27 17:26:03 UTC (rev 239817)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgbase=breeze
+pkgname=('breeze' 'breeze-icons' 'breeze-kde4')
+pkgver=5.3.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/breeze'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
+ 'automoc4' 'kdecoration' 'kcmutils')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz;)
+md5sums=('343dee76ac0652a18007d10e7dbc7d29')
+
+prepare() {
+  mkdir build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+
+  cd ../build-kde4
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_KDE4=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_breeze() {
+  depends=('frameworkintegration' 'kdecoration' 'breeze-icons')
+  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
+  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+   'gtk-theme-orion: GTK theme matching Breeze'
+   'kcmutils: for breeze-settings')
+  groups=('plasma')
+
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # split off icons
+  rm -r $pkgdir/usr/share/icons/{breeze,breeze-dark}
+
+  # make QtCurve preset and color scheme available for KDE4 too
+  install -d $pkgdir/usr/share/apps/{QtCurve,color-schemes}
+  ln -s 

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

2015-05-27 Thread Antonio Rojas
Date: Wednesday, May 27, 2015 @ 19:31:03
  Author: arojas
Revision: 239818

Add to plasma group

Modified:
  breeze/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 17:26:03 UTC (rev 239817)
+++ PKGBUILD2015-05-27 17:31:03 UTC (rev 239818)
@@ -61,6 +61,7 @@
 package_breeze-icons() {
   pkgdesc='Breeze icon themes for KDE Plasma'
   optdepends=('oxygen-icons: fallback icon theme')
+  groups=('plasma')
   
   cd build/icons
   make DESTDIR=$pkgdir install


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

2015-05-27 Thread Anatol Pomozov
Date: Wednesday, May 27, 2015 @ 19:42:51
  Author: anatolik
Revision: 134235

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

Added:
  crash/repos/community-i686/PKGBUILD
(from rev 134234, crash/trunk/PKGBUILD)
  crash/repos/community-x86_64/PKGBUILD
(from rev 134234, crash/trunk/PKGBUILD)
Deleted:
  crash/repos/community-i686/PKGBUILD
  crash/repos/community-i686/linux_version_4_support.patch
  crash/repos/community-x86_64/PKGBUILD
  crash/repos/community-x86_64/linux_version_4_support.patch

+
 /PKGBUILD  |   72 +++
 community-i686/PKGBUILD|   40 
 community-i686/linux_version_4_support.patch   |   32 --
 community-x86_64/PKGBUILD  |   40 
 community-x86_64/linux_version_4_support.patch |   32 --
 5 files changed, 72 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 17:42:10 UTC (rev 134234)
+++ community-i686/PKGBUILD 2015-05-27 17:42:51 UTC (rev 134235)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Bernhard Walle bernhard.wa...@gmx.de
-# Contributor: Michael Eckert michael.eck...@linuxmail.org
-# Contributor: Mathieu Pasquet mathi...@mathieui.net
-
-pkgname=crash
-pkgver=7.1.0
-pkgrel=2
-pkgdesc='Linux kernel crashdump analysis tool'
-url='http://people.redhat.com/~anderson'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz
-linux_version_4_support.patch)
-sha256sums=('12e17267985ad1339b5da931143d4997fa4dafb82027d5664d4b7826175a21ec'
-'e535507a1b3c6ca366513beb82b205969a33085ecd48952610f96f3d717bc022')
-
-prepare() {
-  cd crash-$pkgver
-
-  patch -Np1 -i ${srcdir}/linux_version_4_support.patch
-
-  make gdb_unzip
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
-}
-
-build() {
-  cd crash-$pkgver
-  make
-}
-
-package() {
-  cd crash-$pkgver
-
-  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
-  install crash $pkgdir/usr/bin/
-  install crash.8 $pkgdir/usr/share/man/man8/
-}

Copied: crash/repos/community-i686/PKGBUILD (from rev 134234, 
crash/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 17:42:51 UTC (rev 134235)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Bernhard Walle bernhard.wa...@gmx.de
+# Contributor: Michael Eckert michael.eck...@linuxmail.org
+# Contributor: Mathieu Pasquet mathi...@mathieui.net
+
+pkgname=crash
+pkgver=7.1.1
+pkgrel=1
+pkgdesc='Linux kernel crashdump analysis tool'
+url='http://people.redhat.com/~anderson'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(xz ncurses zlib)
+source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
+sha256sums=('ff5d7a2ecc7bc675e1cd08d3460dd2c6998ef13fb222d86cd10905ade2f2f116')
+
+prepare() {
+  cd crash-$pkgver
+
+  make gdb_unzip
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
+}
+
+build() {
+  cd crash-$pkgver
+  make
+}
+
+package() {
+  cd crash-$pkgver
+
+  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
+  install crash $pkgdir/usr/bin/
+  install crash.8 $pkgdir/usr/share/man/man8/
+}

Deleted: community-i686/linux_version_4_support.patch
===
--- community-i686/linux_version_4_support.patch2015-05-27 17:42:10 UTC 
(rev 134234)
+++ community-i686/linux_version_4_support.patch2015-05-27 17:42:51 UTC 
(rev 134235)
@@ -1,32 +0,0 @@
-commit db07dbf5a7e19806b1629bd4125e6643978c6f9f
-Author: Dave Anderson ander...@redhat.com
-Date:   Thu Feb 19 16:16:33 2015 -0500
-
-Prepare for the future increment of Linux 3.x to 4.x.
-(ander...@redhat.com)
-
-diff --git a/kernel.c b/kernel.c
-index cf858c2..a5e0c64 100644
 a/kernel.c
-+++ b/kernel.c
-@@ -1211,7 +1211,8 @@ verify_namelist()
-   sprintf(buffer3, (unknown));
- while (fgets(buffer, BUFSIZE-1, pipe)) {
-   if (!strstr(buffer, Linux version 2.) 
--  !strstr(buffer, Linux version 3.))
-+  !strstr(buffer, Linux version 3.) 
-+  !strstr(buffer, Linux version 4.))
-   continue;
- 
- if (strstr(buffer, kt-proc_version)) {
-@@ -4909,7 +4910,8 @@ debug_kernel_version(char *namelist)
-   argc = 0;
- while (fgets(buf, BUFSIZE-1, pipe)) {
- if (!strstr(buf, Linux version 2.) 
--  !strstr(buf, Linux version 3.))
-+  !strstr(buf, Linux version 3.) 
-+  !strstr(buf, Linux version 4.))
-   

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

2015-05-27 Thread Antonio Rojas
Date: Wednesday, May 27, 2015 @ 19:23:04
  Author: arojas
Revision: 239816

Split off icons (FS#45097)

Modified:
  breeze/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 05:50:00 UTC (rev 239815)
+++ PKGBUILD2015-05-27 17:23:04 UTC (rev 239816)
@@ -4,9 +4,9 @@
 # Contributor: Antonio Rojas
 
 pkgbase=breeze
-pkgname=('breeze' 'breeze-kde4')
+pkgname=('breeze' 'breeze-icons' 'breeze-kde4')
 pkgver=5.3.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/breeze'
 license=('LGPL')
@@ -39,17 +39,19 @@
 }
 
 package_breeze() {
-  depends=('frameworkintegration' 'kdecoration')
+  depends=('frameworkintegration' 'kdecoration' 'breeze-icons')
   pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
   optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-  'oxygen-icons: fallback icon theme'
- 'gtk-theme-orion: GTK theme matching Breeze'
+   'gtk-theme-orion: GTK theme matching Breeze'
'kcmutils: for breeze-settings')
   groups=('plasma')
 
   cd build
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=$pkgdir install
 
+  # split off icons
+  rm -r $pkgdir/usr/share/icons/{breeze,breeze-dark}
+
   # make QtCurve preset and color scheme available for KDE4 too
   install -d $pkgdir/usr/share/apps/{QtCurve,color-schemes}
   ln -s /usr/share/QtCurve/Breeze.qtcurve $pkgdir/usr/share/apps/QtCurve/
@@ -56,12 +58,23 @@
   ln -s /usr/share/color-schemes/Breeze{,Dark}.colors 
$pkgdir/usr/share/apps/color-schemes/
 }
 
+package_breeze-icons() {
+  pkgdesc='Breeze icon themes for KDE Plasma'
+  optdepends=('oxygen-icons: fallback icon theme')
+  
+  cd build/icons
+  make DESTDIR=$pkgdir install
+
+  cd ../icons-dark
+  make DESTDIR=$pkgdir install
+}
+
 package_breeze-kde4() {
   pkgdesc='Artwork, styles and assets for the Breeze visual style for the KDE4'
   depends=('kdelibs')
 
   cd build-kde4
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=$pkgdir install
 
   # needed for pure Qt4 apps
   install -d $pkgdir/usr/lib/qt4/plugins/styles


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

2015-05-27 Thread Jaroslav Lichtblau
Date: Wednesday, May 27, 2015 @ 19:28:15
  Author: jlichtblau
Revision: 134232

upgpkg: syncthing 0.11.6-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 16:13:23 UTC (rev 134231)
+++ PKGBUILD2015-05-27 17:28:15 UTC (rev 134232)
@@ -6,7 +6,7 @@
 # Contributor: korjjj korjjj+...@gmail.com
 
 pkgname=syncthing
-pkgver=0.11.5
+pkgver=0.11.6
 pkgrel=1
 pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
 url=http://syncthing.net/;


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

2015-05-27 Thread Ike Devolder
Date: Wednesday, May 27, 2015 @ 21:35:32
  Author: idevolder
Revision: 134245

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 19:35:20 UTC (rev 134244)
+++ community-i686/PKGBUILD 2015-05-27 19:35:32 UTC (rev 134245)
@@ -1,34 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgname=par2cmdline
-pkgver=0.6.12
-pkgrel=1
-pkgdesc='A PAR 2.0 compatible file verification and repair tool'
-url='https://github.com/BlackIkeEagle/par2cmdline'
-license=('GPL2')
-arch=('i686' 'x86_64')
-source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
-
-build() {
-   cd $pkgname-$pkgver
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}
-

Copied: par2cmdline/repos/community-i686/PKGBUILD (from rev 134244, 
par2cmdline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 19:35:32 UTC (rev 134245)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgname=par2cmdline
+pkgver=0.6.13
+pkgrel=1
+pkgdesc='A PAR 2.0 compatible file verification and repair tool'
+url='https://github.com/BlackIkeEagle/par2cmdline'
+license=('GPL2')
+arch=('i686' 'x86_64')
+source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('024b9f0ed5c57ebdd63b288818790b0d5c4ecc9c6296dc32ae3f98690abe')
+
+build() {
+   cd $pkgname-$pkgver
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd $pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-27 19:35:20 UTC (rev 134244)
+++ community-x86_64/PKGBUILD   2015-05-27 19:35:32 UTC (rev 134245)
@@ -1,34 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgname=par2cmdline
-pkgver=0.6.12
-pkgrel=1
-pkgdesc='A PAR 2.0 compatible file verification and repair tool'
-url='https://github.com/BlackIkeEagle/par2cmdline'
-license=('GPL2')
-arch=('i686' 'x86_64')
-source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
-
-build() {
-   cd $pkgname-$pkgver
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}
-

Copied: par2cmdline/repos/community-x86_64/PKGBUILD (from rev 134244, 
par2cmdline/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-27 19:35:32 UTC (rev 134245)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgname=par2cmdline
+pkgver=0.6.13
+pkgrel=1
+pkgdesc='A PAR 2.0 compatible file verification and repair tool'
+url='https://github.com/BlackIkeEagle/par2cmdline'
+license=('GPL2')
+arch=('i686' 'x86_64')
+source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('024b9f0ed5c57ebdd63b288818790b0d5c4ecc9c6296dc32ae3f98690abe')
+
+build() {
+   cd $pkgname-$pkgver
+   

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

2015-05-27 Thread Ike Devolder
Date: Wednesday, May 27, 2015 @ 21:35:20
  Author: idevolder
Revision: 134244

par2cmdline :: 0.6.13

Modified:
  par2cmdline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 18:05:14 UTC (rev 134243)
+++ PKGBUILD2015-05-27 19:35:20 UTC (rev 134244)
@@ -4,7 +4,7 @@
 # Maintainer: Sébastien Luttringer se...@aur.archlinux.org
 
 pkgname=par2cmdline
-pkgver=0.6.12
+pkgver=0.6.13
 pkgrel=1
 pkgdesc='A PAR 2.0 compatible file verification and repair tool'
 url='https://github.com/BlackIkeEagle/par2cmdline'
@@ -11,7 +11,7 @@
 license=('GPL2')
 arch=('i686' 'x86_64')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
+sha256sums=('024b9f0ed5c57ebdd63b288818790b0d5c4ecc9c6296dc32ae3f98690abe')
 
 build() {
cd $pkgname-$pkgver


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

2015-05-27 Thread Jan Steffens
Date: Wednesday, May 27, 2015 @ 20:55:43
  Author: heftig
Revision: 239821

3.16.1

Modified:
  evince/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 17:55:20 UTC (rev 239820)
+++ PKGBUILD2015-05-27 18:55:43 UTC (rev 239821)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evince
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc=Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))
 url=https://wiki.gnome.org/Apps/Evince;
@@ -19,7 +19,7 @@
 install=evince.install
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5138e2d05ccfe5e40df0c840b34f334c1f2bc03e5456aa954e64673d504ccd04')
+sha256sums=('06ff75065b2a30cd588c402f6bd2ea88ee3166181805e0cc00bd54f71dbf6130')
 
 build() {
   cd $pkgname-$pkgver


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

2015-05-27 Thread Jan Steffens
Date: Wednesday, May 27, 2015 @ 20:58:38
  Author: heftig
Revision: 239822

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

Added:
  evince/repos/extra-i686/PKGBUILD
(from rev 239821, evince/trunk/PKGBUILD)
  evince/repos/extra-i686/evince.install
(from rev 239821, evince/trunk/evince.install)
  evince/repos/extra-x86_64/PKGBUILD
(from rev 239821, evince/trunk/PKGBUILD)
  evince/repos/extra-x86_64/evince.install
(from rev 239821, evince/trunk/evince.install)
Deleted:
  evince/repos/extra-i686/PKGBUILD
  evince/repos/extra-i686/evince.install
  evince/repos/extra-x86_64/PKGBUILD
  evince/repos/extra-x86_64/evince.install

-+
 /PKGBUILD   |   80 ++
 /evince.install |   26 +
 extra-i686/PKGBUILD |   40 -
 extra-i686/evince.install   |   13 --
 extra-x86_64/PKGBUILD   |   40 -
 extra-x86_64/evince.install |   13 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-27 18:55:43 UTC (rev 239821)
+++ extra-i686/PKGBUILD 2015-05-27 18:58:38 UTC (rev 239822)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=evince
-pkgver=3.16.0
-pkgrel=1
-pkgdesc=Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))
-url=https://wiki.gnome.org/Apps/Evince;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib 
libsecret desktop-file-utils dconf gsettings-desktop-schemas gnome-desktop)
-makedepends=(itstool libnautilus-extension texlive-bin intltool 
gobject-introspection docbook-xsl python)
-optdepends=('texlive-bin: DVI support'
-   'gvfs: bookmark support and session saving'
-'p7zip: cbz and cb7 compressed comic books'
-'tar: cbt compressed comic books'
-'unrar: cbr compressed comic books')
-groups=(gnome)
-install=evince.install
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5138e2d05ccfe5e40df0c840b34f334c1f2bc03e5456aa954e64673d504ccd04')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr   --sysconfdir=/etc \
-  --localstatedir=/var--libexecdir=/usr/lib/evince \
-  --disable-static--enable-nautilus \
-  --enable-pdf--enable-tiff \
-  --enable-djvu   --enable-dvi \
-  --enable-t1lib  --enable-comics \
-  --disable-scrollkeeper  --disable-schemas-compile \
-  --enable-introspection --disable-browser-plugin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: evince/repos/extra-i686/PKGBUILD (from rev 239821, 
evince/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-27 18:58:38 UTC (rev 239822)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evince
+pkgver=3.16.1
+pkgrel=1
+pkgdesc=Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))
+url=https://wiki.gnome.org/Apps/Evince;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib 
libsecret desktop-file-utils dconf gsettings-desktop-schemas gnome-desktop)
+makedepends=(itstool libnautilus-extension texlive-bin intltool 
gobject-introspection docbook-xsl python)
+optdepends=('texlive-bin: DVI support'
+   'gvfs: bookmark support and session saving'
+'p7zip: cbz and cb7 compressed comic books'
+'tar: cbt compressed comic books'
+'unrar: cbr compressed comic books')
+groups=(gnome)
+install=evince.install
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('06ff75065b2a30cd588c402f6bd2ea88ee3166181805e0cc00bd54f71dbf6130')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr   --sysconfdir=/etc \
+  --localstatedir=/var--libexecdir=/usr/lib/evince \
+  --disable-static--enable-nautilus \
+  --enable-pdf--enable-tiff \
+  --enable-djvu   --enable-dvi \
+  --enable-t1lib  --enable-comics \
+  --disable-scrollkeeper  --disable-schemas-compile \
+  --enable-introspection --disable-browser-plugin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/evince.install
===
--- extra-i686/evince.install   2015-05-27 18:55:43 UTC (rev 239821)
+++ extra-i686/evince.install   2015-05-27 

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

2015-05-27 Thread Bartłomiej Piotrowski
Date: Wednesday, May 27, 2015 @ 21:09:23
  Author: bpiotrowski
Revision: 239823

upgpkg: systemd 220-3

add example configuration files for bootctl

Added:
  systemd/trunk/arch.conf
  systemd/trunk/loader.conf
  systemd/trunk/splash-arch.bmp
Modified:
  systemd/trunk/PKGBUILD

-+
 PKGBUILD|   17 ++---
 arch.conf   |7 +++
 loader.conf |2 ++
 splash-arch.bmp |2 ++
 4 files changed, 25 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 18:58:38 UTC (rev 239822)
+++ PKGBUILD2015-05-27 19:09:23 UTC (rev 239823)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=220
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gobject-introspection' 'gperf'
@@ -15,11 +15,17 @@
 source=(git://anongit.freedesktop.org/systemd/systemd#tag=v$pkgver
 'initcpio-hook-udev'
 'initcpio-install-systemd'
-'initcpio-install-udev')
+'initcpio-install-udev'
+'arch.conf'
+'loader.conf'
+'splash-arch.bmp')
 md5sums=('SKIP'
  '90ea67a7bb237502094914622a39e281'
  '8516a7bd65157d0115c113118c10c3f3'
- 'bde43090d4ac0ef048e3eaee8202a407')
+ 'bde43090d4ac0ef048e3eaee8202a407'
+ '82bda9612e3a361a74cf8de2a0134b15'
+ '6ea803e5179d623716e3be0b636de658'
+ '1e2f9a8b0fa32022bf0a8f39123e5f4e')
 
 prepare() {
   cd $pkgname
@@ -145,6 +151,11 @@
   install -dm755 $srcdir/_libsystemd/usr/lib
   cd $srcdir/_libsystemd
   mv $pkgdir/usr/lib/lib{systemd,{g,}udev}*.so* usr/lib
+
+  # add example bootctl configuration
+  install -Dm644 $srcdir/arch.conf 
$pkgdir/usr/share/systemd/bootctl/arch.conf
+  install -Dm644 $srcdir/loader.conf 
$pkgdir/usr/share/systemd/bootctl/loader.conf
+  install -Dm644 $srcdir/splash-arch.bmp 
$pkgdir/usr/share/systemd/bootctl/splash-arch.bmp
 }
 
 package_libsystemd() {

Added: arch.conf
===
--- arch.conf   (rev 0)
+++ arch.conf   2015-05-27 19:09:23 UTC (rev 239823)
@@ -0,0 +1,7 @@
+## This is just an exmaple config file.
+## Please edit the paths and kernel parameters according to your system.
+
+title   Arch Linux
+linux   /vmlinuz-linux
+initrd  /initramfs-linux.img
+options root=PARTUUID= rootfstype= add_efi_memmap

Added: loader.conf
===
--- loader.conf (rev 0)
+++ loader.conf 2015-05-27 19:09:23 UTC (rev 239823)
@@ -0,0 +1,2 @@
+timeout 10
+default arch

Added: splash-arch.bmp
===
(Binary files differ)

Index: systemd/trunk/splash-arch.bmp
===
--- splash-arch.bmp 2015-05-27 18:58:38 UTC (rev 239822)
+++ splash-arch.bmp 2015-05-27 19:09:23 UTC (rev 239823)

Property changes on: systemd/trunk/splash-arch.bmp
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+image/x-ms-bmp
\ No newline at end of property


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

2015-05-27 Thread Bartłomiej Piotrowski
Date: Wednesday, May 27, 2015 @ 21:09:47
  Author: bpiotrowski
Revision: 239824

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

Added:
  systemd/repos/testing-i686/PKGBUILD
(from rev 239823, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 239823, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 239823, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 239823, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 239823, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 239823, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 239823, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd.install
(from rev 239823, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 239823, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 239823, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 239823, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 239823, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 239823, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 239823, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 239823, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd.install
(from rev 239823, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/systemd.install
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/systemd.install

-+
 /PKGBUILD   |  376 +++
 /initcpio-hook-udev |   44 +++
 /initcpio-install-systemd   |  342 +
 /initcpio-install-udev  |   58 
 /systemd.install|  410 ++
 testing-i686/PKGBUILD   |  177 
 testing-i686/arch.conf  |7 
 testing-i686/initcpio-hook-udev |   22 -
 testing-i686/initcpio-install-systemd   |  171 
 testing-i686/initcpio-install-udev  |   29 --
 testing-i686/loader.conf|2 
 testing-i686/systemd.install|  205 ---
 testing-x86_64/PKGBUILD |  177 
 testing-x86_64/arch.conf|7 
 testing-x86_64/initcpio-hook-udev   |   22 -
 testing-x86_64/initcpio-install-systemd |  171 
 testing-x86_64/initcpio-install-udev|   29 --
 testing-x86_64/loader.conf  |2 
 testing-x86_64/systemd.install  |  205 ---
 19 files changed, 1248 insertions(+), 1208 deletions(-)

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


[arch-commits] Commit in systemd/trunk (splash-arch.bmp)

2015-05-27 Thread Evangelos Foutras
Date: Wednesday, May 27, 2015 @ 21:21:20
  Author: foutrelis
Revision: 239825

Remove svn:executable property from splash-arch.bmp

Modified:
  systemd/trunk/splash-arch.bmp (properties)

Index: systemd/trunk/splash-arch.bmp
===
--- systemd/trunk/splash-arch.bmp   2015-05-27 19:09:47 UTC (rev 239824)
+++ systemd/trunk/splash-arch.bmp   2015-05-27 19:21:20 UTC (rev 239825)

Property changes on: systemd/trunk/splash-arch.bmp
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property


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

2015-05-27 Thread Sven-Hendrik Haase
Date: Wednesday, May 27, 2015 @ 22:24:43
  Author: svenstaro
Revision: 134246

upgpkg: openmw 0.36.0-1

upstream release 0.36.0

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 19:35:32 UTC (rev 134245)
+++ PKGBUILD2015-05-27 20:24:43 UTC (rev 134246)
@@ -2,8 +2,8 @@
 # Contributor: Sandy Carter bwrsand...@gmail.com
 
 pkgname=openmw
-pkgver=0.35.1
-pkgrel=3
+pkgver=0.36.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=('c4692973ab0e43e6493aacf6e63cfbf86676baaa')
+sha1sums=('1ca950b612ac00fb67e16fc7576b77ba08315eea')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}


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

2015-05-27 Thread Sven-Hendrik Haase
Date: Wednesday, May 27, 2015 @ 22:24:52
  Author: svenstaro
Revision: 134247

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

Added:
  openmw/repos/community-i686/PKGBUILD
(from rev 134246, openmw/trunk/PKGBUILD)
  openmw/repos/community-x86_64/PKGBUILD
(from rev 134246, 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-05-27 20:24:43 UTC (rev 134246)
+++ community-i686/PKGBUILD 2015-05-27 20:24:52 UTC (rev 134247)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.35.1
-pkgrel=3
-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=('c4692973ab0e43e6493aacf6e63cfbf86676baaa')
-
-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 134246, 
openmw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 20:24:52 UTC (rev 134247)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.36.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=('1ca950b612ac00fb67e16fc7576b77ba08315eea')
+
+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-05-27 20:24:43 UTC (rev 134246)
+++ community-x86_64/PKGBUILD   2015-05-27 20:24:52 UTC (rev 134247)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.35.1
-pkgrel=3
-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=('c4692973ab0e43e6493aacf6e63cfbf86676baaa')
-
-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 134246, 
openmw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-27 20:24:52 UTC (rev 134247)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.36.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=('1ca950b612ac00fb67e16fc7576b77ba08315eea')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}

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

2015-05-27 Thread Jonathan Steel
Date: Wednesday, May 27, 2015 @ 22:47:54
  Author: jsteel
Revision: 134248

upgpkg: clonezilla 3.10.11-5

FS#44927

Modified:
  clonezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 20:24:52 UTC (rev 134247)
+++ PKGBUILD2015-05-27 20:47:54 UTC (rev 134248)
@@ -4,8 +4,8 @@
 
 pkgname=clonezilla
 pkgver=3.10.11
-pkgrel=4
-pkgdesc=The Free and Open Source Software for Disk Imaging and Cloning
+pkgrel=5
+pkgdesc=ncurses partition and disk imaging/cloning program
 arch=('any')
 url=http://clonezilla.org;
 license=('GPL2')
@@ -19,16 +19,20 @@
  'a976c9209f7bbccd352a9d0a5c8b41ae')
 
 prepare() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   patch -Np0 -i $srcdir/usrbin.patch
 
   # remove unavailable gzip option
   sed -i '69s/ --rsyncable//' conf/drbl-ocs.conf
+
+  # FS#44927
+  sed -i 's/sfdisk -R/blockdev --rereadpt/g' scripts/sbin/ocs-functions \
+sbin/ocs-makeboot sbin/ocs-onthefly
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  make DESTDIR=$pkgdir/ install  
+  make DESTDIR=$pkgdir install  
 }


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

2015-05-27 Thread Jonathan Steel
Date: Wednesday, May 27, 2015 @ 22:48:06
  Author: jsteel
Revision: 134249

archrelease: copy trunk to community-any

Added:
  clonezilla/repos/community-any/PKGBUILD
(from rev 134248, clonezilla/trunk/PKGBUILD)
  clonezilla/repos/community-any/usrbin.patch
(from rev 134248, clonezilla/trunk/usrbin.patch)
Deleted:
  clonezilla/repos/community-any/PKGBUILD
  clonezilla/repos/community-any/usrbin.patch

--+
 PKGBUILD |   72 ++---
 usrbin.patch |   26 ++--
 2 files changed, 51 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 20:47:54 UTC (rev 134248)
+++ PKGBUILD2015-05-27 20:48:06 UTC (rev 134249)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: M0Rf30
-
-pkgname=clonezilla
-pkgver=3.10.11
-pkgrel=4
-pkgdesc=The Free and Open Source Software for Disk Imaging and Cloning
-arch=('any')
-url=http://clonezilla.org;
-license=('GPL2')
-depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted'
- 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip'
- 'xz' 'pixz' 'lzop')
-backup=('etc/drbl/drbl-ocs.conf')
-source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.bz2
-usrbin.patch)
-md5sums=('3820052fbb32a5b2c1de9e7595c412f0'
- 'a976c9209f7bbccd352a9d0a5c8b41ae')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -Np0 -i $srcdir/usrbin.patch
-
-  # remove unavailable gzip option
-  sed -i '69s/ --rsyncable//' conf/drbl-ocs.conf
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install  
-}

Copied: clonezilla/repos/community-any/PKGBUILD (from rev 134248, 
clonezilla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 20:48:06 UTC (rev 134249)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jonathan Steel jsteel at archlinux.org
+# Contributor: M0Rf30
+
+pkgname=clonezilla
+pkgver=3.10.11
+pkgrel=5
+pkgdesc=ncurses partition and disk imaging/cloning program
+arch=('any')
+url=http://clonezilla.org;
+license=('GPL2')
+depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted'
+ 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip'
+ 'xz' 'pixz' 'lzop')
+backup=('etc/drbl/drbl-ocs.conf')
+source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.bz2
+usrbin.patch)
+md5sums=('3820052fbb32a5b2c1de9e7595c412f0'
+ 'a976c9209f7bbccd352a9d0a5c8b41ae')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np0 -i $srcdir/usrbin.patch
+
+  # remove unavailable gzip option
+  sed -i '69s/ --rsyncable//' conf/drbl-ocs.conf
+
+  # FS#44927
+  sed -i 's/sfdisk -R/blockdev --rereadpt/g' scripts/sbin/ocs-functions \
+sbin/ocs-makeboot sbin/ocs-onthefly
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install  
+}

Deleted: usrbin.patch
===
--- usrbin.patch2015-05-27 20:47:54 UTC (rev 134248)
+++ usrbin.patch2015-05-27 20:48:06 UTC (rev 134249)
@@ -1,13 +0,0 @@
 Makefile.orig  2013-05-30 17:42:49.851418658 +0100
-+++ Makefile   2013-05-30 17:44:41.157482402 +0100
-@@ -18,8 +18,8 @@
- 
- install:
-   # install exec files
--  install -d ${DESTDIR}/usr/
--  cp -a sbin bin ${DESTDIR}/usr/
-+  install -d ${DESTDIR}/usr/bin
-+  cp -a sbin/* bin/* ${DESTDIR}/usr/bin/
- 
-   # install setup dir
-   install -d $(DESTDIR)/$(SHAREDIR)/

Copied: clonezilla/repos/community-any/usrbin.patch (from rev 134248, 
clonezilla/trunk/usrbin.patch)
===
--- usrbin.patch(rev 0)
+++ usrbin.patch2015-05-27 20:48:06 UTC (rev 134249)
@@ -0,0 +1,13 @@
+--- Makefile.orig  2013-05-30 17:42:49.851418658 +0100
 Makefile   2013-05-30 17:44:41.157482402 +0100
+@@ -18,8 +18,8 @@
+ 
+ install:
+   # install exec files
+-  install -d ${DESTDIR}/usr/
+-  cp -a sbin bin ${DESTDIR}/usr/
++  install -d ${DESTDIR}/usr/bin
++  cp -a sbin/* bin/* ${DESTDIR}/usr/bin/
+ 
+   # install setup dir
+   install -d $(DESTDIR)/$(SHAREDIR)/


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

2015-05-27 Thread Sven-Hendrik Haase
Date: Wednesday, May 27, 2015 @ 23:12:57
  Author: svenstaro
Revision: 134251

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

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

---+
 /PKGBUILD |   84 
 /oolite   |   18 +
 community-i686/PKGBUILD   |   42 --
 community-i686/oolite |9 
 community-x86_64/PKGBUILD |   42 --
 community-x86_64/oolite   |9 
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 21:12:41 UTC (rev 134250)
+++ community-i686/PKGBUILD 2015-05-27 21:12:57 UTC (rev 134251)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Lone_Wolf lonew...@xs4all.nl
-pkgname=oolite
-pkgver=1.80
-pkgrel=3
-pkgdesc=A space-sim based on the classic Elite
-arch=('i686' 'x86_64')
-url=http://oolite-linux.berlios.de;
-license=('GPL2')
-depends=('gnustep-gui' 'sdl_mixer' 'glu' 'espeak' 'nspr' 'python2' 'icu' 
'gnustep-base' 'openal')
-makedepends=('gcc-objc' 'gnustep-make' 'curl' 'zip' 'mesa')
-#options=(makeflags)
-source=(oolite
-
https://github.com/OoliteProject/oolite/releases/download/1.80b/oolite-source-${pkgver}.tar.bz2;)
-md5sums=('ade14e17fe9d52d16b35f2e97046362c'
- 'ded6afaf83f97624122c2dd999319166')
-
-build() {
-  cd oolite-source-${pkgver}
-  unset CPPFLAGS
-  sed -i '/void png_error/d' src/Core/Materials/OOPNGTextureLoader.m
-  sed -i /ADDITIONAL_OBJCFLAGS/s/=/= -fobjc-exceptions/ GNUmakefile
-  make -f Makefile release
-}
-
-package() {
-  cd oolite-source-${pkgver}
-
-  mkdir -p ${pkgdir}/usr/bin
-  mkdir -p ${pkgdir}/usr/share/{oolite,applications,pixmaps,doc/oolite}
-
-  cp -r oolite.app/* ${pkgdir}/usr/share/oolite/
-#install shellscript and icon
-  install -D -m755 ../oolite ${pkgdir}/usr/bin/oolite
-  install -D -m644 installers/FreeDesktop/oolite-icon.png 
${pkgdir}/usr/share/pixmaps/oolite-icon.png
-# copy  .desktop file
-  install -D -m644 installers/FreeDesktop/oolite.desktop 
${pkgdir}/usr/share/applications/oolite.desktop
-# documentation
-  install -D -m644 Doc/AdviceForNewCommanders.pdf Doc/OoliteReadMe.pdf 
Doc/OoliteRS.pdf ${pkgdir}/usr/share/doc/oolite/
- }
-# vim:set ts=2 sw=2 et:

Copied: oolite/repos/community-i686/PKGBUILD (from rev 134250, 
oolite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 21:12:57 UTC (rev 134251)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Lone_Wolf lonew...@xs4all.nl
+pkgname=oolite
+pkgver=1.82
+pkgrel=1
+pkgdesc=A space-sim based on the classic Elite
+arch=('i686' 'x86_64')
+url=http://oolite-linux.berlios.de;
+license=('GPL2')
+depends=('gnustep-gui' 'sdl_mixer' 'glu' 'espeak' 'nspr' 'python2' 'icu' 
'gnustep-base' 'openal')
+makedepends=('gcc-objc' 'gnustep-make' 'curl' 'zip' 'mesa')
+#options=(makeflags)
+source=(oolite
+
https://github.com/OoliteProject/oolite/releases/download/1.82/oolite-source-${pkgver}.tar.bz2;)
+md5sums=('ade14e17fe9d52d16b35f2e97046362c'
+ '8cac3638a887efc7715b8a8982bc4f55')
+
+build() {
+  cd oolite-source-${pkgver}
+  unset CPPFLAGS
+  sed -i '/void png_error/d' src/Core/Materials/OOPNGTextureLoader.m
+  sed -i /ADDITIONAL_OBJCFLAGS/s/=/= -fobjc-exceptions/ GNUmakefile
+  make -f Makefile release
+}
+
+package() {
+  cd oolite-source-${pkgver}
+
+  mkdir -p ${pkgdir}/usr/bin
+  mkdir -p ${pkgdir}/usr/share/{oolite,applications,pixmaps,doc/oolite}
+
+  cp -r oolite.app/* ${pkgdir}/usr/share/oolite/
+#install shellscript and icon
+  install -D -m755 ../oolite ${pkgdir}/usr/bin/oolite
+  install -D -m644 installers/FreeDesktop/oolite-icon.png 
${pkgdir}/usr/share/pixmaps/oolite-icon.png
+# copy  .desktop file
+  install -D -m644 installers/FreeDesktop/oolite.desktop 
${pkgdir}/usr/share/applications/oolite.desktop
+# documentation
+  install -D -m644 Doc/AdviceForNewCommanders.pdf Doc/OoliteReadMe.pdf 
Doc/OoliteRS.pdf ${pkgdir}/usr/share/doc/oolite/
+ }
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/oolite
===
--- community-i686/oolite   2015-05-27 21:12:41 UTC (rev 134250)
+++ community-i686/oolite   

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

2015-05-27 Thread Sven-Hendrik Haase
Date: Wednesday, May 27, 2015 @ 23:12:41
  Author: svenstaro
Revision: 134250

upgpkg: oolite 1.82-1

upstream release 1.82

Modified:
  oolite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 20:48:06 UTC (rev 134249)
+++ PKGBUILD2015-05-27 21:12:41 UTC (rev 134250)
@@ -2,8 +2,8 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 # Contributor: Lone_Wolf lonew...@xs4all.nl
 pkgname=oolite
-pkgver=1.80
-pkgrel=3
+pkgver=1.82
+pkgrel=1
 pkgdesc=A space-sim based on the classic Elite
 arch=('i686' 'x86_64')
 url=http://oolite-linux.berlios.de;
@@ -12,9 +12,9 @@
 makedepends=('gcc-objc' 'gnustep-make' 'curl' 'zip' 'mesa')
 #options=(makeflags)
 source=(oolite
-
https://github.com/OoliteProject/oolite/releases/download/1.80b/oolite-source-${pkgver}.tar.bz2;)
+
https://github.com/OoliteProject/oolite/releases/download/1.82/oolite-source-${pkgver}.tar.bz2;)
 md5sums=('ade14e17fe9d52d16b35f2e97046362c'
- 'ded6afaf83f97624122c2dd999319166')
+ '8cac3638a887efc7715b8a8982bc4f55')
 
 build() {
   cd oolite-source-${pkgver}


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

2015-05-27 Thread Eric Bélanger
Date: Thursday, May 28, 2015 @ 05:46:04
  Author: eric
Revision: 134256

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 134255, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-28 03:44:18 UTC (rev 134255)
+++ PKGBUILD2015-05-28 03:46:04 UTC (rev 134256)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2015.05.15
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-   'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('65834be91d5936daf23452a4ec43c26ab993c26f'
-  'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
- ${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 youtube-dl.zsh 
${pkgdir}/usr/share/zsh/site-functions/_youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 134255, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-28 03:46:04 UTC (rev 134256)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2015.05.20
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+   'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('cac826012e7a193842cddb2f3a1b5aa37b2d8a32'
+  'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+ ${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 youtube-dl.zsh 
${pkgdir}/usr/share/zsh/site-functions/_youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


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

2015-05-27 Thread Eric Bélanger
Date: Thursday, May 28, 2015 @ 05:44:18
  Author: eric
Revision: 134255

upgpkg: youtube-dl 2015.05.20-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 22:58:25 UTC (rev 134254)
+++ PKGBUILD2015-05-28 03:44:18 UTC (rev 134255)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2015.05.15
+pkgver=2015.05.20
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -14,7 +14,7 @@
'atomicparsley: for embedding thumbnails into m4a files')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('65834be91d5936daf23452a4ec43c26ab993c26f'
+sha1sums=('cac826012e7a193842cddb2f3a1b5aa37b2d8a32'
   'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
 


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

2015-05-27 Thread Dan McGee
Date: Thursday, May 28, 2015 @ 03:20:32
  Author: dan
Revision: 239830

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 239829, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 239829, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 239829, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 239829, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 239829, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 239829, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 239829, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 239829, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  224 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   42 ++
 extra-i686/PKGBUILD  |  112 --
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   21 ---
 extra-x86_64/PKGBUILD|  112 --
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   21 ---
 12 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-28 01:20:19 UTC (rev 239829)
+++ extra-i686/PKGBUILD 2015-05-28 01:20:32 UTC (rev 239830)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-
-pkgname=git
-pkgver=2.4.1
-pkgrel=1
-pkgdesc=the fast distributed version control system
-arch=(i686 x86_64)
-url=http://git-scm.com/;
-license=('GPL2')
-depends=('curl' 'expat=2.0' 'perl-error' 'perl=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring' 'xmlto' 'asciidoc')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps2: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=(https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz;
-git-daemon@.service
-git-daemon.socket)
-md5sums=('aed4a96723f600dfc879a2eb58e6e673'
- '042524f942785772d7bd52a1f02fe5ae'
- 'f67869315c2cc112e076f0c73f248002')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-}
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-all doc
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-  make -C contrib/subtree prefix=/usr gitexecdir=/usr/lib/git-core all doc
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  local jobs
-  jobs=$(expr $MAKEFLAGS : '.*\(-j[0-9]*\).*') || true
-  mkdir -p /dev/shm/git-test
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS=$jobs -Q \
-GIT_TEST_OPTS=--root=/dev/shm/git-test \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-INSTALLDIRS=vendor DESTDIR=$pkgdir install install-doc
-
-  # bash completion
-  mkdir -p $pkgdir/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
$pkgdir/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p $pkgdir/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
$pkgdir/usr/share/git/git-prompt.sh
-  # emacs
-  make -C contrib/emacs prefix=/usr DESTDIR=$pkgdir install
-  # gnome credentials helper
-  install -m755 

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

2015-05-27 Thread Dan McGee
Date: Thursday, May 28, 2015 @ 03:20:19
  Author: dan
Revision: 239829

upgpkg: git 2.4.2-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 23:02:39 UTC (rev 239828)
+++ PKGBUILD2015-05-28 01:20:19 UTC (rev 239829)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=2.4.1
+pkgver=2.4.2
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -26,7 +26,7 @@
 source=(https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz;
 git-daemon@.service
 git-daemon.socket)
-md5sums=('aed4a96723f600dfc879a2eb58e6e673'
+md5sums=('0b8dc818ed4766342978d744522aec49'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')
 


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

2015-05-27 Thread Evangelos Foutras
Date: Thursday, May 28, 2015 @ 00:57:39
  Author: foutrelis
Revision: 134252

upgpkg: lib32-util-linux 2.26.2-1

New upstream release.

Modified:
  lib32-util-linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 21:12:57 UTC (rev 134251)
+++ PKGBUILD2015-05-27 22:57:39 UTC (rev 134252)
@@ -4,7 +4,7 @@
 
 _pkgbasename=util-linux
 pkgname=lib32-$_pkgbasename
-pkgver=2.26.1
+pkgver=2.26.2
 _pkgver=(${pkgver//./ })
 _pkgver=${_pkgver[0]}.${_pkgver[1]}
 pkgrel=1
@@ -17,7 +17,7 @@
 license=('GPL2')
 options=('!libtool' '!emptydirs')
 
source=(ftp://ftp.kernel.org/pub/linux/utils/util-linux/v${_pkgver}/util-linux-$pkgver.tar.xz;)
-md5sums=('2308850946766677f3fabe0685e85de8')
+md5sums=('9bdf368c395f1b70325d0eb22c7f48fb')
 
 build() {
   cd $_pkgbasename-$pkgver


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

2015-05-27 Thread Evangelos Foutras
Date: Thursday, May 28, 2015 @ 00:57:50
  Author: foutrelis
Revision: 134253

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-util-linux/repos/multilib-x86_64/PKGBUILD
(from rev 134252, lib32-util-linux/trunk/PKGBUILD)
Deleted:
  lib32-util-linux/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 22:57:39 UTC (rev 134252)
+++ PKGBUILD2015-05-27 22:57:50 UTC (rev 134253)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-_pkgbasename=util-linux
-pkgname=lib32-$_pkgbasename
-pkgver=2.26.1
-_pkgver=(${pkgver//./ })
-_pkgver=${_pkgver[0]}.${_pkgver[1]}
-pkgrel=1
-pkgdesc=Miscellaneous system utilities for Linux (32-bit)
-url='http://www.kernel.org/pub/linux/utils/util-linux/'
-arch=('x86_64')
-depends=('lib32-glibc' $_pkgbasename)
-provides=('libuuid.so' 'libblkid.so' 'libfdisk.so' 'libmount.so' 
'libsmartcols.so')
-makedepends=('gcc-multilib')
-license=('GPL2')
-options=('!libtool' '!emptydirs')
-source=(ftp://ftp.kernel.org/pub/linux/utils/util-linux/v${_pkgver}/util-linux-$pkgver.tar.xz;)
-md5sums=('2308850946766677f3fabe0685e85de8')
-
-build() {
-  cd $_pkgbasename-$pkgver
-
-  ./configure \
-  CC=${CC:-cc} -m32 \
-  PKG_CONFIG_PATH=/usr/lib32/pkgconfig \
-  --libdir=/usr/lib32
-
-  make lib{uuid,blkid,fdisk,mount,smartcols}.la
-}
-
-package() {
-  make -C $_pkgbasename-$pkgver \
-DESTDIR=$pkgdir \
-install-usrlib_execLTLIBRARIES \
-install-pkgconfigDATA
-}

Copied: lib32-util-linux/repos/multilib-x86_64/PKGBUILD (from rev 134252, 
lib32-util-linux/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 22:57:50 UTC (rev 134253)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+_pkgbasename=util-linux
+pkgname=lib32-$_pkgbasename
+pkgver=2.26.2
+_pkgver=(${pkgver//./ })
+_pkgver=${_pkgver[0]}.${_pkgver[1]}
+pkgrel=1
+pkgdesc=Miscellaneous system utilities for Linux (32-bit)
+url='http://www.kernel.org/pub/linux/utils/util-linux/'
+arch=('x86_64')
+depends=('lib32-glibc' $_pkgbasename)
+provides=('libuuid.so' 'libblkid.so' 'libfdisk.so' 'libmount.so' 
'libsmartcols.so')
+makedepends=('gcc-multilib')
+license=('GPL2')
+options=('!libtool' '!emptydirs')
+source=(ftp://ftp.kernel.org/pub/linux/utils/util-linux/v${_pkgver}/util-linux-$pkgver.tar.xz;)
+md5sums=('9bdf368c395f1b70325d0eb22c7f48fb')
+
+build() {
+  cd $_pkgbasename-$pkgver
+
+  ./configure \
+  CC=${CC:-cc} -m32 \
+  PKG_CONFIG_PATH=/usr/lib32/pkgconfig \
+  --libdir=/usr/lib32
+
+  make lib{uuid,blkid,fdisk,mount,smartcols}.la
+}
+
+package() {
+  make -C $_pkgbasename-$pkgver \
+DESTDIR=$pkgdir \
+install-usrlib_execLTLIBRARIES \
+install-pkgconfigDATA
+}


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:57:13
  Author: spupykin
Revision: 134210

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

Added:
  freeradius/repos/community-i686/PKGBUILD
(from rev 134209, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-i686/freeradius.install
(from rev 134209, freeradius/trunk/freeradius.install)
  freeradius/repos/community-i686/freeradius.service
(from rev 134209, freeradius/trunk/freeradius.service)
  freeradius/repos/community-i686/freeradius.tmpfiles
(from rev 134209, freeradius/trunk/freeradius.tmpfiles)
  freeradius/repos/community-x86_64/PKGBUILD
(from rev 134209, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-x86_64/freeradius.install
(from rev 134209, freeradius/trunk/freeradius.install)
  freeradius/repos/community-x86_64/freeradius.service
(from rev 134209, freeradius/trunk/freeradius.service)
  freeradius/repos/community-x86_64/freeradius.tmpfiles
(from rev 134209, freeradius/trunk/freeradius.tmpfiles)
Deleted:
  freeradius/repos/community-i686/PKGBUILD
  freeradius/repos/community-i686/freeradius.install
  freeradius/repos/community-i686/freeradius.service
  freeradius/repos/community-i686/freeradius.tmpfiles
  freeradius/repos/community-x86_64/PKGBUILD
  freeradius/repos/community-x86_64/freeradius.install
  freeradius/repos/community-x86_64/freeradius.service
  freeradius/repos/community-x86_64/freeradius.tmpfiles

--+
 /PKGBUILD|   96 +
 /freeradius.install  |   36 
 /freeradius.service  |   30 ++
 /freeradius.tmpfiles |2 
 community-i686/PKGBUILD  |   48 
 community-i686/freeradius.install|   18 --
 community-i686/freeradius.service|   15 -
 community-i686/freeradius.tmpfiles   |1 
 community-x86_64/PKGBUILD|   48 
 community-x86_64/freeradius.install  |   18 --
 community-x86_64/freeradius.service  |   15 -
 community-x86_64/freeradius.tmpfiles |1 
 12 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 07:56:55 UTC (rev 134209)
+++ community-i686/PKGBUILD 2015-05-27 07:57:13 UTC (rev 134210)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jason R Begley (jay...@digitalgoat.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=freeradius
-pkgver=3.0.7
-pkgrel=1
-pkgdesc=The premier open source RADIUS server
-arch=('i686' 'x86_64')
-url=http://www.freeradius.org/;
-license=('GPL')
-depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc' 
'libpcap')
-makedepends=('unixodbc' 'python2' 'curl')
-optdepends=('unixodbc: for ODBC'
-   'python2: for Python'
-   'curl: for REST')
-options=('!makeflags')
-install=$pkgname.install
-source=(ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2;
-   freeradius.tmpfiles
-   freeradius.service)
-md5sums=('50db3dec6341c3b644cc651263a0971e'
- 'f959e89812bedfc9f8308076f78cd74e'
- 'e3f18e3a25df3b692e59f60605354708')
-
-build() {
-  cd $srcdir/freeradius-server-$pkgver
-  ./configure --with-system-libtool --with-system-libltdl \
- --prefix=/usr --enable-heimdal-krb5 \
- --localstatedir=/var \
- --sysconfdir=/etc \
- --sbindir=/usr/bin \
- --libdir=/usr/lib/freeradius \
- --with-udpfromto
-  make
-}
-
-package() {
-  cd $srcdir/freeradius-server-$pkgver
-  make install R=$pkgdir
-  chmod o+r $pkgdir/etc/raddb/*
-  mv $pkgdir/etc/raddb $pkgdir/etc/raddb.default
-  rm -rf $pkgdir/var/run
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
-}

Copied: freeradius/repos/community-i686/PKGBUILD (from rev 134209, 
freeradius/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 07:57:13 UTC (rev 134210)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Jason R Begley (jay...@digitalgoat.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=freeradius
+pkgver=3.0.8
+pkgrel=1
+pkgdesc=The premier open source RADIUS server
+arch=('i686' 'x86_64')
+url=http://www.freeradius.org/;
+license=('GPL')
+depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc' 
'libpcap')
+makedepends=('unixodbc' 'python2' 'curl')
+optdepends=('unixodbc: for ODBC'
+   'python2: for Python'
+   'curl: for REST')
+options=('!makeflags')

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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:56:55
  Author: spupykin
Revision: 134209

upgpkg: freeradius 3.0.8-1

upd

Modified:
  freeradius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 07:56:51 UTC (rev 134208)
+++ PKGBUILD2015-05-27 07:56:55 UTC (rev 134209)
@@ -4,7 +4,7 @@
 # Contributor: Daniel Micay danielmi...@gmail.com
 
 pkgname=freeradius
-pkgver=3.0.7
+pkgver=3.0.8
 pkgrel=1
 pkgdesc=The premier open source RADIUS server
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 source=(ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2;
freeradius.tmpfiles
freeradius.service)
-md5sums=('50db3dec6341c3b644cc651263a0971e'
+md5sums=('59427bd3cc2ebd5ad62ee9dcc7d943c5'
  'f959e89812bedfc9f8308076f78cd74e'
  'e3f18e3a25df3b692e59f60605354708')
 


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:56:38
  Author: spupykin
Revision: 134207

upgpkg: firefox-noscript 2.6.9.25-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 01:26:02 UTC (rev 134206)
+++ PKGBUILD2015-05-27 07:56:38 UTC (rev 134207)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.9.22
+pkgver=2.6.9.25
 pkgrel=1
 pkgdesc=Extension for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('dda7eaa8211bf2941a36c58a67e69043')
+md5sums=('46637818ac1dd73a7f54e0f0bebce2c8')
 
 package() {
   depends=(firefox)


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:56:51
  Author: spupykin
Revision: 134208

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 07:56:38 UTC (rev 134207)
+++ PKGBUILD2015-05-27 07:56:51 UTC (rev 134208)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.9.22
-pkgrel=1
-pkgdesc=Extension for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('dda7eaa8211bf2941a36c58a67e69043')
-
-package() {
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 134207, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 07:56:51 UTC (rev 134208)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.9.25
+pkgrel=1
+pkgdesc=Extension for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('46637818ac1dd73a7f54e0f0bebce2c8')
+
+package() {
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:57:17
  Author: spupykin
Revision: 134211

upgpkg: liburcu 0.8.7-1

upd

Modified:
  liburcu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 07:57:13 UTC (rev 134210)
+++ PKGBUILD2015-05-27 07:57:17 UTC (rev 134211)
@@ -4,7 +4,7 @@
 # Contributor: Yggdrasil tetzank at web dot de
 
 pkgname=liburcu
-pkgver=0.8.6
+pkgver=0.8.7
 pkgrel=1
 pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
 arch=('i686' 'x86_64')
@@ -14,6 +14,7 @@
 depends=('glibc')
 options=('!libtool')
 sha1sums=('f10e9bf812557cd0c2a35a277e04010ec278d25d')
+sha1sums=('5306999b8a3296f3dea91246d92e0a993d732898')
 
 build() {
 cd ${srcdir}/userspace-rcu-${pkgver}


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:57:46
  Author: spupykin
Revision: 134214

archrelease: copy trunk to community-x86_64

Added:
  opensips/repos/community-x86_64/PKGBUILD
(from rev 134213, opensips/trunk/PKGBUILD)
  opensips/repos/community-x86_64/opensips.install
(from rev 134213, opensips/trunk/opensips.install)
  opensips/repos/community-x86_64/opensips.service
(from rev 134213, opensips/trunk/opensips.service)
  opensips/repos/community-x86_64/remove-inline.patch
(from rev 134213, opensips/trunk/remove-inline.patch)
Deleted:
  opensips/repos/community-x86_64/PKGBUILD
  opensips/repos/community-x86_64/opensips.install
  opensips/repos/community-x86_64/opensips.service
  opensips/repos/community-x86_64/remove-inline.patch

-+
 PKGBUILD|  168 +-
 opensips.install|6 
 opensips.service|   22 +--
 remove-inline.patch |  314 +-
 4 files changed, 255 insertions(+), 255 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-27 07:57:34 UTC (rev 134213)
+++ PKGBUILD2015-05-27 07:57:46 UTC (rev 134214)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=opensips
-pkgver=2.1.0
-pkgrel=2
-pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
-url=http://www.opensips.org;
-depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
-makedepends=('postgresql-libs=8.4.1' 'unixodbc' 'libldap=2.4.18' 
'libmariadbclient'
-'lynx' 'libxslt' 'libmicrohttpd')
-optdepends=('postgresql-libs'
-   'unixodbc'
-   'libldap'
-   'libmariadbclient'
-   'libsasl'
-   'python2'
-   'pcre')
-backup=(etc/opensips/opensips.cfg
-   etc/opensips/dictionary.radius
-   etc/opensips/opensipsctlrc)
-arch=('i686' 'x86_64')
-license=('GPL')
-install=opensips.install
-options=('!emptydirs' 'zipman' '!makeflags' 'docs')
-source=(http://opensips.org/pub/opensips/$pkgver/src/opensips-${pkgver}.tar.gz
-   remove-inline.patch
-   opensips.service)
-md5sums=('68375c1b6cb546ad2c036b5a1c5b31b9'
- '3771f5720c54c7fe3326611f9b57013d'
- '35cdcb3692f6925236fd5fe7e9484c58')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  sed -i 's|sbin|bin|g' Makefile
-  sed -i 's|bin-dir = sbin/|bin-dir = bin/|' Makefile.defs
-
-  patch -p1 $srcdir/remove-inline.patch
-}
-
-_modules=ldap db_mysql db_postgres db_unixodbc presence presence_xml h350 
proto_tls tlsops db_http httpd
-
-build() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  make \
-   include_modules=${_modules} \
-   LIBDIR=lib PREFIX=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/
-
-  make \
-   include_modules=${_modules} \
-   BASEDIR=$pkgdir PREFIX=/usr LIBDIR=lib install
-
-  # Conforms to the arch packaging standards 
(http://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
-  mkdir -p $pkgdir/etc/
-  mv $pkgdir/usr/etc/opensips/ $pkgdir/etc/
-  sed -i 
's#mpath=.*lib/opensips/modules/#mpath=/usr/lib/opensips/modules/#' 
$pkgdir/etc/opensips/opensips.cfg
-
-  # fix bad paths
-  cd $pkgdir/usr/share
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  cd $pkgdir/usr/lib/opensips/opensipsctl
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  cd $pkgdir/usr/bin
-  sed -i s#$pkgdir## opensipsctl opensipsdbctl osipsconsole
-
-  cd $pkgdir/etc
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: opensips/repos/community-x86_64/PKGBUILD (from rev 134213, 
opensips/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-27 07:57:46 UTC (rev 134214)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=opensips
+pkgver=2.1.0
+pkgrel=3
+pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
+url=http://www.opensips.org;
+depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
+makedepends=('postgresql-libs=8.4.1' 'unixodbc' 'libldap=2.4.18' 
'libmariadbclient'
+'lynx' 'libxslt' 'libmicrohttpd')
+optdepends=('postgresql-libs'
+   'unixodbc'
+   'libldap'
+   'libmariadbclient'
+   'libsasl'
+   'python2'
+   'pcre')
+backup=(etc/opensips/opensips.cfg
+   etc/opensips/dictionary.radius
+   etc/opensips/opensipsctlrc)
+arch=('i686' 'x86_64')
+license=('GPL')
+install=opensips.install
+options=('!emptydirs' 'zipman' '!makeflags' 'docs')

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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:57:34
  Author: spupykin
Revision: 134213

upgpkg: opensips 2.1.0-3

upd

Modified:
  opensips/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 07:57:30 UTC (rev 134212)
+++ PKGBUILD2015-05-27 07:57:34 UTC (rev 134213)
@@ -3,7 +3,7 @@
 
 pkgname=opensips
 pkgver=2.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
 url=http://www.opensips.org;
 depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
@@ -45,7 +45,7 @@
   patch -p1 $srcdir/remove-inline.patch
 }
 
-_modules=ldap db_mysql db_postgres db_unixodbc presence presence_xml h350 
proto_tls tlsops db_http httpd
+_modules=ldap db_mysql db_postgres db_unixodbc presence presence_xml h350 
proto_tls tlsops db_http httpd tm rr
 
 build() {
   cd $srcdir/$pkgname-$pkgver/


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

2015-05-27 Thread Sergej Pupykin
Date: Wednesday, May 27, 2015 @ 09:57:30
  Author: spupykin
Revision: 134212

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-27 07:57:17 UTC (rev 134211)
+++ community-i686/PKGBUILD 2015-05-27 07:57:30 UTC (rev 134212)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
-# Maintainer: Christian Babeux christian.bab...@0x80.ca
-# Contributor: Yggdrasil tetzank at web dot de
-
-pkgname=liburcu
-pkgver=0.8.6
-pkgrel=1
-pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
-arch=('i686' 'x86_64')
-url=http://lttng.org/urcu;
-license=('LGPL2.1')
-source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2)
-depends=('glibc')
-options=('!libtool')
-sha1sums=('f10e9bf812557cd0c2a35a277e04010ec278d25d')
-
-build() {
-cd ${srcdir}/userspace-rcu-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/userspace-rcu-${pkgver}
-make install DESTDIR=${pkgdir}
-}

Copied: liburcu/repos/community-i686/PKGBUILD (from rev 134211, 
liburcu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 07:57:30 UTC (rev 134212)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Christian Babeux christian.bab...@0x80.ca
+# Contributor: Yggdrasil tetzank at web dot de
+
+pkgname=liburcu
+pkgver=0.8.7
+pkgrel=1
+pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
+arch=('i686' 'x86_64')
+url=http://lttng.org/urcu;
+license=('LGPL2.1')
+source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2)
+depends=('glibc')
+options=('!libtool')
+sha1sums=('f10e9bf812557cd0c2a35a277e04010ec278d25d')
+sha1sums=('5306999b8a3296f3dea91246d92e0a993d732898')
+
+build() {
+cd ${srcdir}/userspace-rcu-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/userspace-rcu-${pkgver}
+make install DESTDIR=${pkgdir}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-27 07:57:17 UTC (rev 134211)
+++ community-x86_64/PKGBUILD   2015-05-27 07:57:30 UTC (rev 134212)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
-# Maintainer: Christian Babeux christian.bab...@0x80.ca
-# Contributor: Yggdrasil tetzank at web dot de
-
-pkgname=liburcu
-pkgver=0.8.6
-pkgrel=1
-pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
-arch=('i686' 'x86_64')
-url=http://lttng.org/urcu;
-license=('LGPL2.1')
-source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2)
-depends=('glibc')
-options=('!libtool')
-sha1sums=('f10e9bf812557cd0c2a35a277e04010ec278d25d')
-
-build() {
-cd ${srcdir}/userspace-rcu-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/userspace-rcu-${pkgver}
-make install DESTDIR=${pkgdir}
-}

Copied: liburcu/repos/community-x86_64/PKGBUILD (from rev 134211, 
liburcu/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-27 07:57:30 UTC (rev 134212)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Christian Babeux christian.bab...@0x80.ca
+# Contributor: Yggdrasil tetzank at web dot de
+
+pkgname=liburcu
+pkgver=0.8.7
+pkgrel=1
+pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
+arch=('i686' 'x86_64')
+url=http://lttng.org/urcu;
+license=('LGPL2.1')
+source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2)
+depends=('glibc')
+options=('!libtool')
+sha1sums=('f10e9bf812557cd0c2a35a277e04010ec278d25d')
+sha1sums=('5306999b8a3296f3dea91246d92e0a993d732898')
+
+build() {
+cd ${srcdir}/userspace-rcu-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/userspace-rcu-${pkgver}
+make install DESTDIR=${pkgdir}
+}


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

2015-05-27 Thread Felix Yan
Date: Wednesday, May 27, 2015 @ 10:05:18
  Author: fyan
Revision: 134215

upgpkg: goaccess 0.9.1-1

Modified:
  goaccess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-27 07:57:46 UTC (rev 134214)
+++ PKGBUILD2015-05-27 08:05:18 UTC (rev 134215)
@@ -4,7 +4,7 @@
 # Contributor: Nicolas Storme nico...@atelier-web.com
 
 pkgname=goaccess
-pkgver=0.9
+pkgver=0.9.1
 pkgrel=1
 pkgdesc=An open source real-time web log analyzer and interactive viewer
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('ncurses' 'geoip' 'glib2')
 backup=('etc/goaccess.conf')
 source=(http://tar.goaccess.io/$pkgname-$pkgver.tar.gz;)
-sha512sums=('c25703fa31dd673bdb3463e3c5055ba3452f1fdb452c63114663d9dfb28b95ddb4cd89b03fd4a9fdbabd0efebc2e3ab35238fd15bc46727f794d04ba77fc072c')
+sha512sums=('279b1baa90aab8f3ca68a5af930fb7e3a1504c9a4f02ac857a5cb5c1a9a9f453bf41e2bf034daf84e3305e66f282006b3dc563262ac72b0883fd35da10ffba0a')
 
 build() {
   cd $pkgname-$pkgver


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

2015-05-27 Thread Felix Yan
Date: Wednesday, May 27, 2015 @ 10:05:38
  Author: fyan
Revision: 134216

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

Added:
  goaccess/repos/community-i686/PKGBUILD
(from rev 134215, goaccess/trunk/PKGBUILD)
  goaccess/repos/community-x86_64/PKGBUILD
(from rev 134215, goaccess/trunk/PKGBUILD)
Deleted:
  goaccess/repos/community-i686/PKGBUILD
  goaccess/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-05-27 08:05:18 UTC (rev 134215)
+++ community-i686/PKGBUILD 2015-05-27 08:05:38 UTC (rev 134216)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Josh VanderLinden a...@cloudlery.com
-# Contributor: Nicolas Storme nico...@atelier-web.com
-
-pkgname=goaccess
-pkgver=0.9
-pkgrel=1
-pkgdesc=An open source real-time web log analyzer and interactive viewer
-arch=('i686' 'x86_64')
-url='http://goaccess.io'
-license=('GPL')
-depends=('ncurses' 'geoip' 'glib2')
-backup=('etc/goaccess.conf')
-source=(http://tar.goaccess.io/$pkgname-$pkgver.tar.gz;)
-sha512sums=('c25703fa31dd673bdb3463e3c5055ba3452f1fdb452c63114663d9dfb28b95ddb4cd89b03fd4a9fdbabd0efebc2e3ab35238fd15bc46727f794d04ba77fc072c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --enable-geoip --enable-utf8
-  make prefix=/usr sysconfdir=/etc
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install
-}
-

Copied: goaccess/repos/community-i686/PKGBUILD (from rev 134215, 
goaccess/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-27 08:05:38 UTC (rev 134216)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.9.1
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url='http://goaccess.io'
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+backup=('etc/goaccess.conf')
+source=(http://tar.goaccess.io/$pkgname-$pkgver.tar.gz;)
+sha512sums=('279b1baa90aab8f3ca68a5af930fb7e3a1504c9a4f02ac857a5cb5c1a9a9f453bf41e2bf034daf84e3305e66f282006b3dc563262ac72b0883fd35da10ffba0a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --enable-geoip --enable-utf8
+  make prefix=/usr sysconfdir=/etc
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-27 08:05:18 UTC (rev 134215)
+++ community-x86_64/PKGBUILD   2015-05-27 08:05:38 UTC (rev 134216)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Josh VanderLinden a...@cloudlery.com
-# Contributor: Nicolas Storme nico...@atelier-web.com
-
-pkgname=goaccess
-pkgver=0.9
-pkgrel=1
-pkgdesc=An open source real-time web log analyzer and interactive viewer
-arch=('i686' 'x86_64')
-url='http://goaccess.io'
-license=('GPL')
-depends=('ncurses' 'geoip' 'glib2')
-backup=('etc/goaccess.conf')
-source=(http://tar.goaccess.io/$pkgname-$pkgver.tar.gz;)
-sha512sums=('c25703fa31dd673bdb3463e3c5055ba3452f1fdb452c63114663d9dfb28b95ddb4cd89b03fd4a9fdbabd0efebc2e3ab35238fd15bc46727f794d04ba77fc072c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --enable-geoip --enable-utf8
-  make prefix=/usr sysconfdir=/etc
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install
-}
-

Copied: goaccess/repos/community-x86_64/PKGBUILD (from rev 134215, 
goaccess/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-27 08:05:38 UTC (rev 134216)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.9.1
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url='http://goaccess.io'
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+backup=('etc/goaccess.conf')
+source=(http://tar.goaccess.io/$pkgname-$pkgver.tar.gz;)
+sha512sums=('279b1baa90aab8f3ca68a5af930fb7e3a1504c9a4f02ac857a5cb5c1a9a9f453bf41e2bf034daf84e3305e66f282006b3dc563262ac72b0883fd35da10ffba0a')
+
+build() {
+  cd