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

2015-07-09 Thread Sébastien Luttringer
Date: Thursday, July 9, 2015 @ 16:58:40
  Author: seblu
Revision: 241911

db-move: moved coreutils from [testing] to [core] (i686, x86_64)

Added:
  coreutils/repos/core-i686/PKGBUILD
(from rev 241910, coreutils/repos/testing-i686/PKGBUILD)
  coreutils/repos/core-i686/coreutils.install
(from rev 241910, coreutils/repos/testing-i686/coreutils.install)
  coreutils/repos/core-x86_64/PKGBUILD
(from rev 241910, coreutils/repos/testing-x86_64/PKGBUILD)
  coreutils/repos/core-x86_64/coreutils.install
(from rev 241910, coreutils/repos/testing-x86_64/coreutils.install)
Deleted:
  coreutils/repos/core-i686/01-btrfs-alloc.patch
  coreutils/repos/core-i686/PKGBUILD
  coreutils/repos/core-i686/coreutils.install
  coreutils/repos/core-x86_64/01-btrfs-alloc.patch
  coreutils/repos/core-x86_64/PKGBUILD
  coreutils/repos/core-x86_64/coreutils.install
  coreutils/repos/testing-i686/
  coreutils/repos/testing-x86_64/

--+
 /PKGBUILD|  102 +
 /coreutils.install   |   34 
 core-i686/01-btrfs-alloc.patch   |   96 --
 core-i686/PKGBUILD   |   53 ---
 core-i686/coreutils.install  |   17 --
 core-x86_64/01-btrfs-alloc.patch |   96 --
 core-x86_64/PKGBUILD |   53 ---
 core-x86_64/coreutils.install|   17 --
 8 files changed, 136 insertions(+), 332 deletions(-)

Deleted: core-i686/01-btrfs-alloc.patch
===
--- core-i686/01-btrfs-alloc.patch  2015-07-09 14:57:09 UTC (rev 241910)
+++ core-i686/01-btrfs-alloc.patch  2015-07-09 14:58:40 UTC (rev 241911)
@@ -1,96 +0,0 @@
-#http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20570
-
-diff --git a/tests/cp/fiemap-empty.sh b/tests/cp/fiemap-empty.sh
-index a5eaac5..b3b2cd7 100755
 a/tests/cp/fiemap-empty.sh
-+++ b/tests/cp/fiemap-empty.sh
-@@ -22,6 +22,7 @@ print_ver_ cp
- # FIXME: enable any part of this test that is still relevant,
- # or, if none are relevant (now that cp does not handle unwritten
- # extents), just remove the test altogether.
-+# Note also if checking allocations may need to sync first on BTRFS at least
- skip_ 'disabled for now'
- 
- touch fiemap_chk
-diff --git a/tests/dd/sparse.sh b/tests/dd/sparse.sh
-index 4fdabad..626b405 100755
 a/tests/dd/sparse.sh
-+++ b/tests/dd/sparse.sh
-@@ -17,6 +17,7 @@
- 
- . ${srcdir=.}/tests/init.sh; path_prepend_ ./src
- print_ver_ dd
-+is_local_dir_ . || very_expensive_
- require_sparse_support_
- 
- # Ensure basic sparse generation works
-@@ -50,6 +51,9 @@ dd if=/dev/zeroof=file.in bs=1M count=1 seek=1 
conv=notrunc || fail=1
- 
- kb_alloc() { du -k $1|cut -f1; }
- 
-+# sync out data for async allocators like NFS/BTRFS
-+# sync file.in || fail=1
-+
- # If our just-created input file appears to be too small,
- # skip the remaining tests.  On at least Solaris 10 with NFS,
- # file.in is reported to occupy = 1KiB for about 50 seconds
-@@ -58,7 +62,10 @@ if test $(kb_alloc file.in) -gt 3000; then
- 
-   # Ensure NUL blocks smaller than the block size are not made sparse.
-   # Here, with a 2MiB block size, dd's conv=sparse must *not* introduce a 
hole.
--  dd if=file.in of=file.out bs=2M conv=sparse
-+  dd if=file.in of=file.out bs=2M conv=sparse || fail=1
-+
-+  # Intermittently BTRFS returns 0 allocation for file.out unless synced
-+  sync file.out || framework_failure_
-   test 2500 -lt $(kb_alloc file.out) || fail=1
- 
-   # Note we recreate a sparse file first to avoid
-diff --git a/tests/du/2g.sh b/tests/du/2g.sh
-index 5f04488..12c2eed 100755
 a/tests/du/2g.sh
-+++ b/tests/du/2g.sh
-@@ -24,7 +24,6 @@ print_ver_ du
- # Creating a 2GB file counts as 'very expensive'.
- very_expensive_
- 
--
- # Get number of free kilobytes on current partition, so we can
- # skip this test if there is insufficient free space.
- free_kb=$(df -k --output=avail . | tail -n1)
-@@ -42,16 +42,21 @@
- }
- 
- big=big
--rm -f $big
--test -t 1 || printf 'creating a 2GB file...\n'
--for i in $(seq 100); do
--  # Note: 2147483648 == 2^31. Print floor(2^31/100) per iteration.
--  printf %21474836s x  $big || fail=1
--  # On the final iteration, append the remaining 48 bytes.
--  test $i = 100  { printf %48s x  $big || fail=1; }
--  test -t 1  printf 'creating a 2GB file: %d%% complete\r' $i
--done
--echo
-+if ! fallocate -l2G $big; then
-+  rm -f $big
-+  {
-+is_local_dir_ . || skip 'Not writing 2GB data to remote'
-+for i in $(seq 100); do
-+  # Note: 2147483648 == 2^31. Print floor(2^31/100) per iteration.
-+  printf %21474836s x || fail=1
-+done
-+# After the final iteration, append the remaining 48 bytes.
-+printf %48s x || fail=1
-+  }  $big || fail=1
-+fi
-+
-+# The allocation may be done asynchronously (BTRFS for example)
-+sync $big || framework_failure_
- 
- du -k $big  out1 || 

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

2015-07-09 Thread Jan Steffens
Date: Thursday, July 9, 2015 @ 17:06:26
  Author: heftig
Revision: 241912

3.16.3

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 14:58:40 UTC (rev 241911)
+++ PKGBUILD2015-07-09 15:06:26 UTC (rev 241912)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=epiphany
-pkgver=3.16.2
+pkgver=3.16.3
 pkgrel=1
 install=epiphany.install
 pkgdesc=A GNOME web browser based on the WebKit rendering engine.
@@ -14,7 +14,7 @@
 groups=('gnome')
 url=https://wiki.gnome.org/Apps/Web;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('a621b5f443bc168980d12452f1a031e0a50d99ffc825989a38b14d398def73e6')
+sha256sums=('d527f1770779ec22d955aeb13b148a846a26144e433ff0480c981af80e2390b1')
 
 build() {
   cd $pkgname-$pkgver


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

2015-07-09 Thread Evangelos Foutras
Date: Thursday, July 9, 2015 @ 16:01:21
  Author: foutrelis
Revision: 136590

upgpkg: lib32-openssl 1.0.2.d-1

New upstream release.

Modified:
  lib32-openssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 13:37:04 UTC (rev 136589)
+++ PKGBUILD2015-07-09 14:01:21 UTC (rev 136590)
@@ -3,7 +3,7 @@
 
 _pkgbasename=openssl
 pkgname=lib32-$_pkgbasename
-_ver=1.0.2c
+_ver=1.0.2d
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
@@ -21,7 +21,7 @@
 'no-rpath.patch'
 'ca-dir.patch')
 validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
-md5sums=('8c8d81a9ae7005276e486702edbcd4b6'
+md5sums=('38dd619b2e77cbac69b99f52a053d25a'
  'SKIP'
  'dc78d3d06baffc16217519242ce92478'
  '3bf51be3a1bbd262be46dc619f92aa90')


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

2015-07-09 Thread Evangelos Foutras
Date: Thursday, July 9, 2015 @ 16:01:19
  Author: foutrelis
Revision: 241909

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

Added:
  openssl/repos/testing-i686/
  openssl/repos/testing-i686/PKGBUILD
(from rev 241908, openssl/trunk/PKGBUILD)
  openssl/repos/testing-i686/ca-dir.patch
(from rev 241908, openssl/trunk/ca-dir.patch)
  openssl/repos/testing-i686/no-rpath.patch
(from rev 241908, openssl/trunk/no-rpath.patch)
  openssl/repos/testing-x86_64/
  openssl/repos/testing-x86_64/PKGBUILD
(from rev 241908, openssl/trunk/PKGBUILD)
  openssl/repos/testing-x86_64/ca-dir.patch
(from rev 241908, openssl/trunk/ca-dir.patch)
  openssl/repos/testing-x86_64/no-rpath.patch
(from rev 241908, openssl/trunk/no-rpath.patch)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/ca-dir.patch |   33 ++
 testing-i686/no-rpath.patch   |   11 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/ca-dir.patch   |   33 ++
 testing-x86_64/no-rpath.patch |   11 ++
 6 files changed, 230 insertions(+)

Copied: openssl/repos/testing-i686/PKGBUILD (from rev 241908, 
openssl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-09 14:01:19 UTC (rev 241909)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=openssl
+_ver=1.0.2d
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security'
+arch=('i686' 'x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('zlib' 'perl')
+optdepends=('ca-certificates')
+options=('!makeflags')
+backup=('etc/ssl/openssl.cnf')
+source=(https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz;
+https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz.asc;
+'no-rpath.patch'
+'ca-dir.patch')
+md5sums=('38dd619b2e77cbac69b99f52a053d25a'
+ 'SKIP'
+ 'dc78d3d06baffc16217519242ce92478'
+ '3bf51be3a1bbd262be46dc619f92aa90')
+validpgpkeys=('8657ABB260F056B1E5190839D9C4D26D0E604491')
+
+prepare() {
+   cd $srcdir/$pkgname-$_ver
+
+   # remove rpath: http://bugs.archlinux.org/task/14367
+   patch -p0 -i $srcdir/no-rpath.patch
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+build() {
+   cd $srcdir/$pkgname-$_ver
+
+   if [ ${CARCH} == 'x86_64' ]; then
+   openssltarget='linux-x86_64'
+   optflags='enable-ec_nistp_64_gcc_128'
+   elif [ ${CARCH} == 'i686' ]; then
+   openssltarget='linux-elf'
+   optflags=''
+   fi
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
+   shared zlib ${optflags} \
+   ${openssltarget} \
+   -Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
+
+   make depend
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$_ver
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i $srcdir/ca-dir.patch
+   make test
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+package() {
+   cd $srcdir/$pkgname-$_ver
+   make INSTALL_PREFIX=$pkgdir MANDIR=/usr/share/man MANSUFFIX=ssl install
+   install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openssl/repos/testing-i686/ca-dir.patch (from rev 241908, 
openssl/trunk/ca-dir.patch)
===
--- testing-i686/ca-dir.patch   (rev 0)
+++ testing-i686/ca-dir.patch   2015-07-09 14:01:19 UTC (rev 241909)
@@ -0,0 +1,33 @@
+--- apps/CA.pl.in  2006-04-28 02:30:49.0 +0200
 apps/CA.pl.in  2010-04-01 00:35:02.600553509 +0200
+@@ -53,7 +53,7 @@
+ $X509=$openssl x509;
+ $PKCS12=$openssl pkcs12;
+ 
+-$CATOP=./demoCA;
++$CATOP=/etc/ssl;
+ $CAKEY=cakey.pem;
+ $CAREQ=careq.pem;
+ $CACERT=cacert.pem;
+--- apps/CA.sh 2009-10-15 19:27:47.0 +0200
 apps/CA.sh 2010-04-01 00:35:02.600553509 +0200
+@@ -68,7 +68,7 @@
+ X509=$OPENSSL x509
+ PKCS12=openssl pkcs12
+ 
+-if [ -z $CATOP ] ; then CATOP=./demoCA ; fi
++if [ -z $CATOP ] ; then CATOP=/etc/ssl ; fi
+ CAKEY=./cakey.pem
+ CAREQ=./careq.pem
+ CACERT=./cacert.pem
+--- apps/openssl.cnf   2009-04-04 20:09:43.0 +0200
 apps/openssl.cnf   2010-04-01 00:35:02.607220681 +0200
+@@ -39,7 +39,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl   

[arch-commits] Commit in lib32-openssl/repos/multilib-x86_64 (6 files)

2015-07-09 Thread Evangelos Foutras
Date: Thursday, July 9, 2015 @ 16:01:28
  Author: foutrelis
Revision: 136591

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-openssl/repos/multilib-x86_64/PKGBUILD
(from rev 136590, lib32-openssl/trunk/PKGBUILD)
  lib32-openssl/repos/multilib-x86_64/ca-dir.patch
(from rev 136590, lib32-openssl/trunk/ca-dir.patch)
  lib32-openssl/repos/multilib-x86_64/no-rpath.patch
(from rev 136590, lib32-openssl/trunk/no-rpath.patch)
Deleted:
  lib32-openssl/repos/multilib-x86_64/PKGBUILD
  lib32-openssl/repos/multilib-x86_64/ca-dir.patch
  lib32-openssl/repos/multilib-x86_64/no-rpath.patch

+
 PKGBUILD   |  142 +++
 ca-dir.patch   |   66 -
 no-rpath.patch |   22 
 3 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 14:01:21 UTC (rev 136590)
+++ PKGBUILD2015-07-09 14:01:28 UTC (rev 136591)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-_pkgbasename=openssl
-pkgname=lib32-$_pkgbasename
-_ver=1.0.2c
-# use a pacman compatible version scheme
-pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
-#pkgver=$_ver
-pkgrel=1
-pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
-arch=('x86_64')
-url='https://www.openssl.org'
-license=('custom:BSD')
-depends=('lib32-zlib' ${_pkgbasename})
-optdepends=('ca-certificates')
-makedepends=('gcc-multilib')
-options=('!makeflags')
-source=(https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
-https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
-'no-rpath.patch'
-'ca-dir.patch')
-validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
-md5sums=('8c8d81a9ae7005276e486702edbcd4b6'
- 'SKIP'
- 'dc78d3d06baffc16217519242ce92478'
- '3bf51be3a1bbd262be46dc619f92aa90')
-
-prepare() {
-   cd $srcdir/$_pkgbasename-$_ver
-
-   # remove rpath: http://bugs.archlinux.org/task/14367
-   patch -p0 -i $srcdir/no-rpath.patch
-   # set ca dir to /etc/ssl by default
-   patch -p0 -i $srcdir/ca-dir.patch
-}
-
-build() {
-   export CC=gcc -m32
-   export CXX=g++ -m32
-   export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-   cd $srcdir/$_pkgbasename-$_ver
-
-   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
-   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \
-   shared zlib \
-   linux-elf \
-   -Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
-
-   make MAKEDEPPROG=${CC} depend
-   make
-}
-
-check() {
-   cd $srcdir/$_pkgbasename-$_ver
-   # the test fails due to missing write permissions in /etc/ssl
-   # revert this patch for make test
-   patch -p0 -R -i $srcdir/ca-dir.patch
-   make test
-   patch -p0 -i $srcdir/ca-dir.patch
-}
-
-package() {
-   cd $srcdir/$_pkgbasename-$_ver
-   make INSTALL_PREFIX=$pkgdir install_sw
-
-   rm -rf ${pkgdir}/{usr/{include,bin},etc}
-   mkdir -p $pkgdir/usr/share/licenses
-   ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-openssl/repos/multilib-x86_64/PKGBUILD (from rev 136590, 
lib32-openssl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 14:01:28 UTC (rev 136591)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+_pkgbasename=openssl
+pkgname=lib32-$_pkgbasename
+_ver=1.0.2d
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('lib32-zlib' ${_pkgbasename})
+optdepends=('ca-certificates')
+makedepends=('gcc-multilib')
+options=('!makeflags')
+source=(https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
+https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
+'no-rpath.patch'
+'ca-dir.patch')
+validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
+md5sums=('38dd619b2e77cbac69b99f52a053d25a'
+ 'SKIP'
+ 'dc78d3d06baffc16217519242ce92478'
+ '3bf51be3a1bbd262be46dc619f92aa90')
+
+prepare() {
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # remove rpath: http://bugs.archlinux.org/task/14367
+   patch -p0 -i $srcdir/no-rpath.patch
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+build() {
+   export CC=gcc -m32
+   export CXX=g++ -m32
+   export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   

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

2015-07-09 Thread Evangelos Foutras
Date: Thursday, July 9, 2015 @ 16:01:05
  Author: foutrelis
Revision: 241908

upgpkg: openssl 1.0.2.d-1

New upstream release.

Modified:
  openssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 13:40:15 UTC (rev 241907)
+++ PKGBUILD2015-07-09 14:01:05 UTC (rev 241908)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=openssl
-_ver=1.0.2c
+_ver=1.0.2d
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
@@ -19,7 +19,7 @@
 https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz.asc;
 'no-rpath.patch'
 'ca-dir.patch')
-md5sums=('8c8d81a9ae7005276e486702edbcd4b6'
+md5sums=('38dd619b2e77cbac69b99f52a053d25a'
  'SKIP'
  'dc78d3d06baffc16217519242ce92478'
  '3bf51be3a1bbd262be46dc619f92aa90')


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

2015-07-09 Thread Jan Steffens
Date: Thursday, July 9, 2015 @ 17:07:33
  Author: heftig
Revision: 241913

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

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

---+
 /PKGBUILD |   66 
 /epiphany.install |   26 +++
 extra-i686/PKGBUILD   |   33 
 extra-i686/epiphany.install   |   13 ---
 extra-x86_64/PKGBUILD |   33 
 extra-x86_64/epiphany.install |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-09 15:06:26 UTC (rev 241912)
+++ extra-i686/PKGBUILD 2015-07-09 15:07:33 UTC (rev 241913)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=epiphany
-pkgver=3.16.2
-pkgrel=1
-install=epiphany.install
-pkgdesc=A GNOME web browser based on the WebKit rendering engine.
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
-makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
-options=('!emptydirs')
-groups=('gnome')
-url=https://wiki.gnome.org/Apps/Web;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('a621b5f443bc168980d12452f1a031e0a50d99ffc825989a38b14d398def73e6')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: epiphany/repos/extra-i686/PKGBUILD (from rev 241912, 
epiphany/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-07-09 15:07:33 UTC (rev 241913)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=epiphany
+pkgver=3.16.3
+pkgrel=1
+install=epiphany.install
+pkgdesc=A GNOME web browser based on the WebKit rendering engine.
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!emptydirs')
+groups=('gnome')
+url=https://wiki.gnome.org/Apps/Web;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d527f1770779ec22d955aeb13b148a846a26144e433ff0480c981af80e2390b1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/epiphany.install
===
--- extra-i686/epiphany.install 2015-07-09 15:06:26 UTC (rev 241912)
+++ extra-i686/epiphany.install 2015-07-09 15:07:33 UTC (rev 241913)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: epiphany/repos/extra-i686/epiphany.install (from rev 241912, 
epiphany/trunk/epiphany.install)
===
--- extra-i686/epiphany.install (rev 0)
+++ extra-i686/epiphany.install 2015-07-09 15:07:33 UTC (rev 241913)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD

[arch-commits] Commit in python-sphinx-alabaster-theme/trunk (PKGBUILD)

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:11:16
  Author: arojas
Revision: 136598

Update to 0.7.6

Modified:
  python-sphinx-alabaster-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 16:49:55 UTC (rev 136597)
+++ PKGBUILD2015-07-09 17:11:16 UTC (rev 136598)
@@ -4,7 +4,7 @@
 
 pkgbase=python-sphinx-alabaster-theme
 pkgname=(python-sphinx-alabaster-theme python2-sphinx-alabaster-theme)
-pkgver=0.7.4
+pkgver=0.7.6
 pkgrel=1
 arch=(any)
 pkgdesc=Modified Kr Sphinx doc theme
@@ -12,7 +12,7 @@
 license=(BSD)
 makedepends=(python-setuptools python2-setuptools)
 source=(https://github.com/bitprophet/alabaster/archive/${pkgver}.tar.gz;)
-md5sums=('ed0f1f6cba60e930cba5ed45276b5323')
+md5sums=('940d47184c4d67d9e1943ba2e5b15a65')
 
 build() {
   cp -r ${srcdir}/alabaster-${pkgver} ${srcdir}/alabaster-${pkgver}-py2


[arch-commits] Commit in python-sphinx-alabaster-theme/repos/community-any (2 files)

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:11:51
  Author: arojas
Revision: 136599

archrelease: copy trunk to community-any

Added:
  python-sphinx-alabaster-theme/repos/community-any/PKGBUILD
(from rev 136598, python-sphinx-alabaster-theme/trunk/PKGBUILD)
Deleted:
  python-sphinx-alabaster-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 17:11:16 UTC (rev 136598)
+++ PKGBUILD2015-07-09 17:11:51 UTC (rev 136599)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: xantares
-
-pkgbase=python-sphinx-alabaster-theme
-pkgname=(python-sphinx-alabaster-theme python2-sphinx-alabaster-theme)
-pkgver=0.7.4
-pkgrel=1
-arch=(any)
-pkgdesc=Modified Kr Sphinx doc theme
-url='https://github.com/bitprophet/alabaster'
-license=(BSD)
-makedepends=(python-setuptools python2-setuptools)
-source=(https://github.com/bitprophet/alabaster/archive/${pkgver}.tar.gz;)
-md5sums=('ed0f1f6cba60e930cba5ed45276b5323')
-
-build() {
-  cp -r ${srcdir}/alabaster-${pkgver} ${srcdir}/alabaster-${pkgver}-py2
-  
-  cd $srcdir/alabaster-${pkgver}
-  python setup.py build
-
-  cd $srcdir/alabaster-${pkgver}-py2
-  python2 setup.py build
-}
-
-package_python-sphinx-alabaster-theme() {
-  cd $srcdir/alabaster-${pkgver}
-  python setup.py install --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sphinx-alabaster-theme() {
-  cd $srcdir/alabaster-${pkgver}-py2 
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-sphinx-alabaster-theme/repos/community-any/PKGBUILD (from rev 
136598, python-sphinx-alabaster-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 17:11:51 UTC (rev 136599)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer:
+# Contributor: xantares
+
+pkgbase=python-sphinx-alabaster-theme
+pkgname=(python-sphinx-alabaster-theme python2-sphinx-alabaster-theme)
+pkgver=0.7.6
+pkgrel=1
+arch=(any)
+pkgdesc=Modified Kr Sphinx doc theme
+url='https://github.com/bitprophet/alabaster'
+license=(BSD)
+makedepends=(python-setuptools python2-setuptools)
+source=(https://github.com/bitprophet/alabaster/archive/${pkgver}.tar.gz;)
+md5sums=('940d47184c4d67d9e1943ba2e5b15a65')
+
+build() {
+  cp -r ${srcdir}/alabaster-${pkgver} ${srcdir}/alabaster-${pkgver}-py2
+  
+  cd $srcdir/alabaster-${pkgver}
+  python setup.py build
+
+  cd $srcdir/alabaster-${pkgver}-py2
+  python2 setup.py build
+}
+
+package_python-sphinx-alabaster-theme() {
+  cd $srcdir/alabaster-${pkgver}
+  python setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sphinx-alabaster-theme() {
+  cd $srcdir/alabaster-${pkgver}-py2 
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:16:17
  Author: arojas
Revision: 136601

archrelease: copy trunk to community-any

Added:
  
python-sphinx/repos/community-any/4c2f693cbf7ec40448e7237383880d701ede6c88.patch
(from rev 136600, 
python-sphinx/trunk/4c2f693cbf7ec40448e7237383880d701ede6c88.patch)
  python-sphinx/repos/community-any/PKGBUILD
(from rev 136600, python-sphinx/trunk/PKGBUILD)
Deleted:
  
python-sphinx/repos/community-any/4c2f693cbf7ec40448e7237383880d701ede6c88.patch
  python-sphinx/repos/community-any/PKGBUILD

+
 4c2f693cbf7ec40448e7237383880d701ede6c88.patch |   44 ++---
 PKGBUILD   |  201 +++
 2 files changed, 123 insertions(+), 122 deletions(-)

Deleted: 4c2f693cbf7ec40448e7237383880d701ede6c88.patch
===
--- 4c2f693cbf7ec40448e7237383880d701ede6c88.patch  2015-07-09 17:15:41 UTC 
(rev 136600)
+++ 4c2f693cbf7ec40448e7237383880d701ede6c88.patch  2015-07-09 17:16:17 UTC 
(rev 136601)
@@ -1,22 +0,0 @@
-From b4331978e04b666909cc04bd39fb738b885ee3b4 Mon Sep 17 00:00:00 2001
-From: Eric Larson larson.eri...@gmail.com
-Date: Tue, 19 May 2015 10:08:26 -0700
-Subject: [PATCH] FIX: Only check if members is True
-

- sphinx/ext/autosummary/__init__.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/sphinx/ext/autosummary/__init__.py 
b/sphinx/ext/autosummary/__init__.py
-index 4fd44ac..a53b125 100644
 a/sphinx/ext/autosummary/__init__.py
-+++ b/sphinx/ext/autosummary/__init__.py
-@@ -276,7 +276,7 @@ def get_items(self, names):
- self.warn('failed to import object %s' % real_name)
- items.append((display_name, '', '', real_name))
- continue
--if not documenter.check_module():
-+if documenter.options.members and not documenter.check_module():
- continue
- 
- # try to also get a source code analyzer for attribute docs

Copied: 
python-sphinx/repos/community-any/4c2f693cbf7ec40448e7237383880d701ede6c88.patch
 (from rev 136600, 
python-sphinx/trunk/4c2f693cbf7ec40448e7237383880d701ede6c88.patch)
===
--- 4c2f693cbf7ec40448e7237383880d701ede6c88.patch  
(rev 0)
+++ 4c2f693cbf7ec40448e7237383880d701ede6c88.patch  2015-07-09 17:16:17 UTC 
(rev 136601)
@@ -0,0 +1,22 @@
+From b4331978e04b666909cc04bd39fb738b885ee3b4 Mon Sep 17 00:00:00 2001
+From: Eric Larson larson.eri...@gmail.com
+Date: Tue, 19 May 2015 10:08:26 -0700
+Subject: [PATCH] FIX: Only check if members is True
+
+---
+ sphinx/ext/autosummary/__init__.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/sphinx/ext/autosummary/__init__.py 
b/sphinx/ext/autosummary/__init__.py
+index 4fd44ac..a53b125 100644
+--- a/sphinx/ext/autosummary/__init__.py
 b/sphinx/ext/autosummary/__init__.py
+@@ -276,7 +276,7 @@ def get_items(self, names):
+ self.warn('failed to import object %s' % real_name)
+ items.append((display_name, '', '', real_name))
+ continue
+-if not documenter.check_module():
++if documenter.options.members and not documenter.check_module():
+ continue
+ 
+ # try to also get a source code analyzer for attribute docs

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 17:15:41 UTC (rev 136600)
+++ PKGBUILD2015-07-09 17:16:17 UTC (rev 136601)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Fabio Volpe volpefa...@gmail.com
-
-pkgbase=python-sphinx
-pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.3.1
-pkgrel=8
-arch=('any')
-url='http://sphinx.pocoo.org/'
-license=('BSD')
-makedepends=(
-  'python-setuptools'
-  'python-docutils'
-  'python-jinja'
-  'python-pygments'
-  'python-six'
-  'python2-setuptools'
-  'python2-docutils'
-  'python2-jinja'
-  'python2-pygments'
-  'python2-six'
-)
-checkdepends=(
-  'python-nose' 'python2-nose'
-  'texlive-latexextra'
-  'python-snowballstemmer' 'python2-snowballstemmer'
-  'python-babel' 'python2-babel'
-  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
-  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
-  'python2-mock'
-)
-source=(http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;
-  '4c2f693cbf7ec40448e7237383880d701ede6c88.patch')
-md5sums=('8786a194acf9673464c5455b11fd4332'
- '103a559a4e4a17d4dd9c3e2342486197')
-
-prepare() {
-  # souce duplication is required because makefile modify source code
-  # setyp.py --build tricks don't works well
-  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
-  # change python2 interpreter
-  find Sphinx-${pkgver}2 -type f -exec \
-sed -i '1s,^#! 

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

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:27:57
  Author: arojas
Revision: 241914

Enable opengl, fftw and qt4 support, drop unexistent dependencies

Modified:
  eigen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 15:07:33 UTC (rev 241913)
+++ PKGBUILD2015-07-09 17:27:57 UTC (rev 241914)
@@ -5,16 +5,13 @@
 
 pkgname=eigen
 pkgver=3.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra.
 arch=('any')
 url='http://eigen.tuxfamily.org'
 license=('GPL3' 'LGPL2.1' 'BSD' 'custom:MPL2' 'custom:MINPACK')
-makedepends=('cmake' 'pkg-config')
-optdepends=('qt4: for example programs'
-'superlu: optional backend'
-'scotch: optional backend'
-'metis: optional backend')
+makedepends=('cmake' 'pkg-config' 'freeglut' 'gcc-fortran' 'qt4' 'fftw')
+optdepends=('qt4: for example programs')
 replaces=('eigen3')
 provides=('eigen3')
 
source=(${pkgname}-${pkgver}.tar.bz2::http://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;)


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

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:28:31
  Author: arojas
Revision: 241915

archrelease: copy trunk to extra-any

Added:
  eigen/repos/extra-any/PKGBUILD
(from rev 241914, eigen/trunk/PKGBUILD)
Deleted:
  eigen/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 17:27:57 UTC (rev 241914)
+++ PKGBUILD2015-07-09 17:28:31 UTC (rev 241915)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Chirantan Ekbote chirantan.ekbote at gmail.com
-# Contributor: Kringel
-
-pkgname=eigen
-pkgver=3.2.5
-pkgrel=1
-pkgdesc=Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra.
-arch=('any')
-url='http://eigen.tuxfamily.org'
-license=('GPL3' 'LGPL2.1' 'BSD' 'custom:MPL2' 'custom:MINPACK')
-makedepends=('cmake' 'pkg-config')
-optdepends=('qt4: for example programs'
-'superlu: optional backend'
-'scotch: optional backend'
-'metis: optional backend')
-replaces=('eigen3')
-provides=('eigen3')
-source=(${pkgname}-${pkgver}.tar.bz2::http://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;)
-sha1sums=('aa4667f0b134f5688c5dff5f03335d9a19aa9b3d')
-
-build() {
-   mkdir -p build
-   cd build
-   cmake ../eigen-eigen-* \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-
-   # install custom licenses
-   install -Dm644 ../eigen-eigen-*/COPYING.MPL2 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-install -Dm644 ../eigen-eigen-*/COPYING.BSD 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-install -Dm644 ../eigen-eigen-*/COPYING.MINPACK 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: eigen/repos/extra-any/PKGBUILD (from rev 241914, eigen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 17:28:31 UTC (rev 241915)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Chirantan Ekbote chirantan.ekbote at gmail.com
+# Contributor: Kringel
+
+pkgname=eigen
+pkgver=3.2.5
+pkgrel=2
+pkgdesc=Lightweight C++ template library for vector and matrix math, a.k.a. 
linear algebra.
+arch=('any')
+url='http://eigen.tuxfamily.org'
+license=('GPL3' 'LGPL2.1' 'BSD' 'custom:MPL2' 'custom:MINPACK')
+makedepends=('cmake' 'pkg-config' 'freeglut' 'gcc-fortran' 'qt4' 'fftw')
+optdepends=('qt4: for example programs')
+replaces=('eigen3')
+provides=('eigen3')
+source=(${pkgname}-${pkgver}.tar.bz2::http://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2;)
+sha1sums=('aa4667f0b134f5688c5dff5f03335d9a19aa9b3d')
+
+build() {
+   mkdir -p build
+   cd build
+   cmake ../eigen-eigen-* \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+
+   # install custom licenses
+   install -Dm644 ../eigen-eigen-*/COPYING.MPL2 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -Dm644 ../eigen-eigen-*/COPYING.BSD 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -Dm644 ../eigen-eigen-*/COPYING.MINPACK 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 18:19:22
  Author: bgyorgy
Revision: 136593

upgpkg: xarchiver 0.5.4-2

Port to GTK+ 3, keep GTK+ 2 supported

Added:
  xarchiver/trunk/fix-icon-names.patch
  xarchiver/trunk/gtk3-port.patch
  xarchiver/trunk/no-xfce.patch
Modified:
  xarchiver/trunk/PKGBUILD

--+
 PKGBUILD |   56 +-
 fix-icon-names.patch |   87 +++
 gtk3-port.patch  | 1313 +
 no-xfce.patch|   93 +++
 4 files changed, 1539 insertions(+), 10 deletions(-)

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


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

2015-07-09 Thread Antonio Rojas
Date: Thursday, July 9, 2015 @ 19:15:41
  Author: arojas
Revision: 136600

Also apply the patch to python2 version

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 17:11:51 UTC (rev 136599)
+++ PKGBUILD2015-07-09 17:15:41 UTC (rev 136600)
@@ -6,7 +6,7 @@
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
 pkgver=1.3.1
-pkgrel=8
+pkgrel=9
 arch=('any')
 url='http://sphinx.pocoo.org/'
 license=('BSD')
@@ -37,6 +37,11 @@
  '103a559a4e4a17d4dd9c3e2342486197')
 
 prepare() {
+  # https://github.com/sphinx-doc/sphinx/pull/1892
+  pushd Sphinx-$pkgver
+   patch -p1 -i $srcdir/4c2f693cbf7ec40448e7237383880d701ede6c88.patch
+  popd
+
   # souce duplication is required because makefile modify source code
   # setyp.py --build tricks don't works well
   cp -a Sphinx-$pkgver Sphinx-${pkgver}2
@@ -46,10 +51,6 @@
   # change sphinx-binaries name in source code
   find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
 sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
-
-  # https://github.com/sphinx-doc/sphinx/pull/1892
-  cd Sphinx-$pkgver
-  patch -p1 -i $srcdir/4c2f693cbf7ec40448e7237383880d701ede6c88.patch
 }
 
 build() {


[arch-commits] Commit in libreoffice-fresh/repos (24 files)

2015-07-09 Thread Andreas Radke
Date: Thursday, July 9, 2015 @ 20:22:42
  Author: andyrtr
Revision: 241917

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

Added:
  libreoffice-fresh/repos/extra-i686/PKGBUILD
(from rev 241916, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-i686/PKGBUILD.50
(from rev 241916, libreoffice-fresh/trunk/PKGBUILD.50)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.csh
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.install
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.sh
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 241916, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
(from rev 241916, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD.50
(from rev 241916, libreoffice-fresh/trunk/PKGBUILD.50)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.install
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
(from rev 241916, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 241916, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
Deleted:
  libreoffice-fresh/repos/extra-i686/PKGBUILD
  libreoffice-fresh/repos/extra-i686/PKGBUILD.50
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.csh
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.install
  libreoffice-fresh/repos/extra-i686/libreoffice-fresh.sh
  
libreoffice-fresh/repos/extra-i686/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD
  libreoffice-fresh/repos/extra-x86_64/PKGBUILD.50
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.csh
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.install
  libreoffice-fresh/repos/extra-x86_64/libreoffice-fresh.sh
  
libreoffice-fresh/repos/extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff

---+
 /PKGBUILD |  750 
++
 /PKGBUILD.50  |  746 
+
 /libreoffice-fresh.csh|   12 
 /libreoffice-fresh.install|   26 
 /libreoffice-fresh.sh |   12 
 /make-pyuno-work-with-system-wide-module-install.diff |   88 +
 extra-i686/PKGBUILD   |  375 -
 extra-i686/PKGBUILD.50|  373 
 extra-i686/libreoffice-fresh.csh  |6 
 extra-i686/libreoffice-fresh.install  |   13 
 extra-i686/libreoffice-fresh.sh   |6 
 extra-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 
 extra-x86_64/PKGBUILD |  375 -
 extra-x86_64/PKGBUILD.50  |  373 
 extra-x86_64/libreoffice-fresh.csh|6 
 extra-x86_64/libreoffice-fresh.install|   13 
 extra-x86_64/libreoffice-fresh.sh |6 
 extra-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 
 18 files changed, 1634 insertions(+), 1634 deletions(-)

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


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

2015-07-09 Thread Andreas Radke
Date: Thursday, July 9, 2015 @ 20:50:45
  Author: andyrtr
Revision: 241920

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

Added:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 241919, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 241919, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 241919, bluez/trunk/bluetooth.modprobe)
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 241919, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-x86_64/PKGBUILD
(from rev 241919, bluez/trunk/PKGBUILD)
  bluez/repos/extra-x86_64/bluetooth.modprobe
(from rev 241919, bluez/trunk/bluetooth.modprobe)
Deleted:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-x86_64/PKGBUILD
  bluez/repos/extra-x86_64/bluetooth.modprobe

---+
 /0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|  118 +++
 /PKGBUILD 
|  300 ++
 /bluetooth.modprobe   
|6 
 extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
|   59 -
 extra-i686/PKGBUILD   
|  150 -
 extra-i686/bluetooth.modprobe 
|3 
 extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|   59 -
 extra-x86_64/PKGBUILD 
|  150 -
 extra-x86_64/bluetooth.modprobe   
|3 
 9 files changed, 424 insertions(+), 424 deletions(-)

Deleted: 
extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2015-07-09 18:50:26 UTC (rev 241919)
+++ extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2015-07-09 18:50:45 UTC (rev 241920)
@@ -1,59 +0,0 @@
-From 3027cb7141fb65cf3eeda69c688db8c4045e2d3f Mon Sep 17 00:00:00 2001
-From: Giovanni Campagna gcampagna-cnudlrotfmnnlxjtenl...@public.gmane.org
-Date: Sat, 12 Oct 2013 17:45:25 +0200
-Subject: [PATCH] Allow using obexd without systemd in the user session
-
-Not all sessions run systemd --user (actually, the majority
-doesn't), so the dbus daemon must be able to spawn obexd
-directly, and to do so it needs the full path of the daemon.

- Makefile.obexd  | 4 ++--
- obexd/src/org.bluez.obex.service| 4 
- obexd/src/org.bluez.obex.service.in | 4 
- 3 files changed, 6 insertions(+), 6 deletions(-)
- delete mode 100644 obexd/src/org.bluez.obex.service
- create mode 100644 obexd/src/org.bluez.obex.service.in
-
-diff --git a/Makefile.obexd b/Makefile.obexd
-index 3760867..142e7c3 100644
 a/Makefile.obexd
-+++ b/Makefile.obexd
-@@ -2,12 +2,12 @@
- if SYSTEMD
- systemduserunitdir = @SYSTEMD_USERUNITDIR@
- systemduserunit_DATA = obexd/src/obex.service
-+endif
- 
- dbussessionbusdir = @DBUS_SESSIONBUSDIR@
- dbussessionbus_DATA = obexd/src/org.bluez.obex.service
--endif
- 
--EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
-+EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
- 
- obex_plugindir = $(libdir)/obex/plugins
- 
-diff --git a/obexd/src/org.bluez.obex.service 
b/obexd/src/org.bluez.obex.service
-deleted file mode 100644
-index a538088..000
 a/obexd/src/org.bluez.obex.service
-+++ /dev/null
-@@ -1,4 +0,0 @@
--[D-BUS Service]
--Name=org.bluez.obex
--Exec=/bin/false
--SystemdService=dbus-org.bluez.obex.service
-diff --git a/obexd/src/org.bluez.obex.service.in 
b/obexd/src/org.bluez.obex.service.in
-new file mode 100644
-index 000..9c815f2
 /dev/null
-+++ b/obexd/src/org.bluez.obex.service.in
-@@ -0,0 +1,4 @@
-+[D-BUS Service]
-+Name=org.bluez.obex
-+Exec=@libexecdir@/obexd
-+SystemdService=dbus-org.bluez.obex.service
--- 
-1.8.3.1
-
-

Copied: 
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 (from rev 241919, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
(rev 0)
+++ 

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

2015-07-09 Thread Andreas Radke
Date: Thursday, July 9, 2015 @ 20:50:26
  Author: andyrtr
Revision: 241919

upgpkg: bluez 5.32-1

upstream update 5.32

Modified:
  bluez/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 18:27:28 UTC (rev 241918)
+++ PKGBUILD2015-07-09 18:50:26 UTC (rev 241919)
@@ -5,7 +5,7 @@
 
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
-pkgver=5.31
+pkgver=5.32
 pkgrel=1
 url=http://www.bluez.org/;
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 bluetooth.modprobe)
 # see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
-sha256sums=('c4b661cc5866d9a9a9d608d700392afa278c3b6fe8426238bf6979be7c63818f'
+sha256sums=('fe4f35e701cbec04478818adf014ed9bbd1f7d11e2603370f1b70a78106f57f7'
 'SKIP'
 '896a1403d9b7258c4fb0d41f3a6f70fd51eaa1115ab3f4259f3dbbe02b55766b'
 '46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')


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

2015-07-09 Thread Andreas Radke
Date: Thursday, July 9, 2015 @ 20:27:28
  Author: andyrtr
Revision: 241918

add missing dep on libcups - FS#45583

Modified:
  libreoffice-still/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 18:22:42 UTC (rev 241917)
+++ PKGBUILD2015-07-09 18:27:28 UTC (rev 241918)
@@ -328,7 +328,7 @@
'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite'
'lcms2' 'poppler=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'gconf' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libxinerama')
+   'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libxinerama' 'libcups')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


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

2015-07-09 Thread Andreas Radke
Date: Thursday, July 9, 2015 @ 20:22:17
  Author: andyrtr
Revision: 241916

upgpkg: libreoffice-fresh 4.4.4-2

add missing dep on libcups - FS#45583

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 17:28:31 UTC (rev 241915)
+++ PKGBUILD2015-07-09 18:22:17 UTC (rev 241916)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
 _LOver=4.4.4.3
 pkgver=4.4.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;
@@ -307,7 +307,7 @@
'lcms2' 'poppler=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libpagemaker'
-   'gst-plugins-base-libs' 'libxinerama' 'libabw' 'libmwaw' 
'libe-book')
+   'gst-plugins-base-libs' 'libxinerama' 'libabw' 'libmwaw' 
'libe-book' 'libcups')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:20:33
  Author: tpowa
Revision: 241888

upgpkg: hdparm 9.48-1

bump to latest version

Modified:
  hdparm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 10:57:22 UTC (rev 241887)
+++ PKGBUILD2015-07-09 12:20:33 UTC (rev 241888)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal p...@archlinux.org
 
 pkgname=hdparm
-pkgver=9.45
+pkgver=9.48
 pkgrel=1
 pkgdesc=A shell utility for manipulating Linux IDE drive/driver parameters
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 url=http://sourceforge.net/projects/hdparm/;
 optdepends=('bash: for wiper.sh script')
 options=('emptydirs')
-md5sums=('1c75d0751a44928b6c4bc81fb16d7fe8'
+md5sums=('213efdbe7471fad3408198918e164354'
  '74e368f384166a7710b447573cda120a')
 
 prepare() {


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:20:45
  Author: tpowa
Revision: 241889

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

Added:
  hdparm/repos/testing-i686/
  hdparm/repos/testing-i686/PKGBUILD
(from rev 241888, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch
(from rev 241888, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
  hdparm/repos/testing-x86_64/
  hdparm/repos/testing-x86_64/PKGBUILD
(from rev 241888, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch
(from rev 241888, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)

--+
 testing-i686/PKGBUILD|   44 +
 testing-i686/wiper.sh.2_6.max-ranges.patch   |   84 +
 testing-x86_64/PKGBUILD  |   44 +
 testing-x86_64/wiper.sh.2_6.max-ranges.patch |   84 +
 4 files changed, 256 insertions(+)

Copied: hdparm/repos/testing-i686/PKGBUILD (from rev 241888, 
hdparm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-09 12:20:45 UTC (rev 241889)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Paul Mattal p...@archlinux.org
+
+pkgname=hdparm
+pkgver=9.48
+pkgrel=1
+pkgdesc=A shell utility for manipulating Linux IDE drive/driver parameters
+arch=(i686 x86_64)
+depends=('glibc')
+optdepends=('sh: required by idectl and ultrabayd')
+source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
+wiper.sh.2_6.max-ranges.patch)
+license=('BSD')
+url=http://sourceforge.net/projects/hdparm/;
+optdepends=('bash: for wiper.sh script')
+options=('emptydirs')
+md5sums=('213efdbe7471fad3408198918e164354'
+ '74e368f384166a7710b447573cda120a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # Fix Range input/output error when wiping Intel G2 and OCZ drives
+  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # install
+  mkdir -p ${pkgdir}/usr/bin
+  make DESTDIR=${pkgdir} sbindir=/usr/bin install
+  install -m755 contrib/idectl ${pkgdir}/usr/bin
+  install -m755 contrib/ultrabayd ${pkgdir}/usr/bin
+
+  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
+  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/bin/wiper.sh
+
+  #install license file
+  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
+}

Copied: hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch (from rev 
241888, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
===
--- testing-i686/wiper.sh.2_6.max-ranges.patch  (rev 0)
+++ testing-i686/wiper.sh.2_6.max-ranges.patch  2015-07-09 12:20:45 UTC (rev 
241889)
@@ -0,0 +1,84 @@
+--- hdparm-9.28/wiper/wiper.sh.orig2010-03-09 06:17:37.0 -0800
+--- hdparm-9.28/wiper/wiper.sh 2010-05-15 03:08:02.182856971 -0700
+@@ -29,7 +29,7 @@
+ function usage_error(){
+   echo 2
+   echo Linux tune-up (TRIM) utility for SATA SSDs
+-  echo Usage:  $0 [--verbose] [--commit] mount_point|block_device 2
++  echo Usage:  $0 [--max-ranges num] [--verbose] [--commit] 
mount_point|block_device 2
+   echoEg:  $0 /dev/sda1 2
+   echo 2
+   exit 1
+@@ -44,6 +44,7 @@
+ 
+ export verbose=0
+ commit=
++max_ranges=-1
+ destroy_me=
+ argc=$#
+ arg=
+@@ -51,6 +52,10 @@
+   commit=yes
+   elif [ $1 = --verbose ]; then
+   verbose=$((verbose + 1))
++  elif [ $1 = --max-ranges -a $argc -gt 1 ]; then
++  max_ranges=$2
++  argc=$((argc - 1))
++  shift
+   elif [ $1 =  ]; then
+   usage_error
+   else
+@@ -499,6 +550,18 @@
+   fi
+ fi
+ 
++## Different SSD's have a different maximum number of ranges they'll accept
++## in a single TRIM command.
++if [ $max_ranges -le 0 ] ; then
++  model=`$HDPARM -I $rawdev | $GAWK '/Model Number/ { print $NF }'`
++  case $model in
++  SSDSA[12]*)  max_ranges=512 ;;  # Intel X18-M/X25-M
++  OCZ-VERTEX2) max_ranges=64 ;;   # OCZ Vertex2
++  *)   max_ranges=65535
++  esac
++fi
++[ $verbose -gt 0 ]  echo max-ranges = $max_ranges
++
+ ## All ready.  Now let the user know exactly what we intend to do:
+ ##
+ mountstatus=$fstype non-mounted
+@@ -608,7 +671,7 @@
+   nsectors += count;
+   while (count  0) {
+   this_count  = (count  65535) ? 65535 : count
+-  printf %u:%u , lba, this_count
++  printf %u:%u \n, lba, this_count
+   if (verbose  1)
+   

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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:31:59
  Author: tpowa
Revision: 241893

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

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

--+
 testing-i686/PKGBUILD|   36 
 testing-i686/gpgme.install   |   20 
 testing-x86_64/PKGBUILD  |   36 
 testing-x86_64/gpgme.install |   20 
 4 files changed, 112 insertions(+)

Copied: gpgme/repos/testing-i686/PKGBUILD (from rev 241892, 
gpgme/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-09 12:31:59 UTC (rev 241893)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Sarah Hay sa...@archlinux.org
+
+pkgname=gpgme
+pkgver=1.5.5
+pkgrel=1
+pkgdesc=A C wrapper library for GnuPG
+arch=('i686' 'x86_64')
+url=http://www.gnupg.org/related_software/gpgme/;
+license=('LGPL')
+depends=('libgpg-error' 'pth' 'gnupg=2')
+install=${pkgname}.install
+options=('!emptydirs')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('a56df7028a0814ef57d77262898ca040'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-fd-passing --disable-static \
+  --disable-gpgsm-test
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gpgme/repos/testing-i686/gpgme.install (from rev 241892, 
gpgme/trunk/gpgme.install)
===
--- testing-i686/gpgme.install  (rev 0)
+++ testing-i686/gpgme.install  2015-07-09 12:31:59 UTC (rev 241893)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(gpgme.info gpgme.info-1 gpgme.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: gpgme/repos/testing-x86_64/PKGBUILD (from rev 241892, 
gpgme/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-07-09 12:31:59 UTC (rev 241893)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Sarah Hay sa...@archlinux.org
+
+pkgname=gpgme
+pkgver=1.5.5
+pkgrel=1
+pkgdesc=A C wrapper library for GnuPG
+arch=('i686' 'x86_64')
+url=http://www.gnupg.org/related_software/gpgme/;
+license=('LGPL')
+depends=('libgpg-error' 'pth' 'gnupg=2')
+install=${pkgname}.install
+options=('!emptydirs')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('a56df7028a0814ef57d77262898ca040'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-fd-passing --disable-static \
+  --disable-gpgsm-test
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gpgme/repos/testing-x86_64/gpgme.install (from rev 241892, 
gpgme/trunk/gpgme.install)
===
--- testing-x86_64/gpgme.install(rev 0)
+++ testing-x86_64/gpgme.install2015-07-09 12:31:59 UTC (rev 241893)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(gpgme.info gpgme.info-1 gpgme.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:31:53
  Author: tpowa
Revision: 241892

upgpkg: gpgme 1.5.5-1

bump to latest version

Modified:
  gpgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:30:57 UTC (rev 241891)
+++ PKGBUILD2015-07-09 12:31:53 UTC (rev 241892)
@@ -4,7 +4,7 @@
 # Contributor: Sarah Hay sa...@archlinux.org
 
 pkgname=gpgme
-pkgver=1.5.4
+pkgver=1.5.5
 pkgrel=1
 pkgdesc=A C wrapper library for GnuPG
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 options=('!emptydirs')
 
source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-md5sums=('feafa03ea064e1d1dc11bc2b88404623'
+md5sums=('a56df7028a0814ef57d77262898ca040'
  'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 


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

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 14:37:16
  Author: bgyorgy
Revision: 136577

archrelease: copy trunk to community-any

Added:
  lxqt-common/repos/community-any/PKGBUILD
(from rev 136576, lxqt-common/trunk/PKGBUILD)
  lxqt-common/repos/community-any/lxqt-common.install
(from rev 136576, lxqt-common/trunk/lxqt-common.install)
Deleted:
  lxqt-common/repos/community-any/PKGBUILD
  lxqt-common/repos/community-any/lxqt-common.install

-+
 PKGBUILD|  104 +-
 lxqt-common.install |   28 ++---
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 12:37:11 UTC (rev 136576)
+++ PKGBUILD2015-07-09 12:37:16 UTC (rev 136577)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=lxqt-common
-pkgver=0.9.1
-pkgrel=2
-pkgdesc=Common data to run a LXQt session.
-arch=(any)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(bash hicolor-icon-theme xdg-utils)
-makedepends=(cmake liblxqt qt5-tools)
-install=$pkgname.install
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
-
-
-prepare() {
-   cd $srcdir/$pkgname-$pkgver
-
-   # Make themes' directories' names lowercase again
-   # https://github.com/lxde/lxqt-common/commit/15fd2d8
-   for i in Ambiance Dark Frost Kde-plasma Light
-   do mv themes/$i `echo themes/$i | tr [:upper:] [:lower:]`
-   done
-
-   # Adjust default wallpaper to default theme
-   # https://github.com/lxde/lxqt-common/commit/3296e2c
-   sed -i 's|light/simple_blue_widescreen.png|frost/numix.png|' \
-   config/pcmanfm-qt/lxqt/settings.conf.in
-
-   # Enable the leave confirmation dialog by default
-   # https://github.com/lxde/lxqt-common/commit/2062770
-   sed -i '/window_manager/a leave_confirmation=true' config/session.conf
-
-   # Set LibreOffice's plugin env var to kde4 
-   # https://github.com/lxde/lxqt-common/commit/a211dd5
-   sed -i 's/SAL_USE_VCLPLUGIN=kde$/SAL_USE_VCLPLUGIN=kde4/' startlxqt.in
-}
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: lxqt-common/repos/community-any/PKGBUILD (from rev 136576, 
lxqt-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 12:37:16 UTC (rev 136577)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-common
+pkgver=0.9.1
+pkgrel=3
+pkgdesc=Common data to run a LXQt session.
+arch=(any)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(bash qt5-svg hicolor-icon-theme xdg-utils)
+makedepends=(cmake liblxqt qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
+
+
+prepare() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # Make themes' directories' names lowercase again
+   # https://github.com/lxde/lxqt-common/commit/15fd2d8
+   for i in Ambiance Dark Frost Kde-plasma Light
+   do mv themes/$i `echo themes/$i | tr [:upper:] [:lower:]`
+   done
+
+   # Adjust default wallpaper to default theme
+   # https://github.com/lxde/lxqt-common/commit/3296e2c
+   sed -i 's|light/simple_blue_widescreen.png|frost/numix.png|' \
+   config/pcmanfm-qt/lxqt/settings.conf.in
+
+   # Enable the leave confirmation dialog by default
+   # https://github.com/lxde/lxqt-common/commit/2062770
+   sed -i '/window_manager/a leave_confirmation=true' config/session.conf
+
+   # Set LibreOffice's plugin env var to kde4 
+   # https://github.com/lxde/lxqt-common/commit/a211dd5
+   sed -i 's/SAL_USE_VCLPLUGIN=kde$/SAL_USE_VCLPLUGIN=kde4/' startlxqt.in
+}
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: lxqt-common.install
===
--- lxqt-common.install 2015-07-09 12:37:11 UTC (rev 136576)
+++ lxqt-common.install 2015-07-09 12:37:16 UTC (rev 136577)
@@ -1,14 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
-   if [ $(vercmp 0.9.1-2 $2) -eq 1 ]; then
-   printf '== Theme paths have been changed. User configurations 
may need to be updated.\n'
-   fi
-   xdg-icon-resource forceupdate
-}
-
-post_remove() {
-   post_install $1
-}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:36:07
  Author: tpowa
Revision: 241896

upgpkg: wireless-regdb 2015.06.05-1

bump to latest version

Modified:
  wireless-regdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:33:55 UTC (rev 241895)
+++ PKGBUILD2015-07-09 12:36:07 UTC (rev 241896)
@@ -2,8 +2,8 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 
 pkgname=wireless-regdb
-pkgver=2015.01.30
-pkgrel=2
+pkgver=2015.06.05
+pkgrel=1
 pkgdesc=Central Regulatory Domain Database
 arch=('any')
 url=http://wireless.kernel.org/en/developers/Regulatory;
@@ -13,7 +13,7 @@
 makedepends=('crda')
 
source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign}
 crda.conf.d)
-sha256sums=('438d7f3d62686bc997098d17fe1aff95c6f6ec061aaab90ab7c2c17e8451ce85'
+sha256sums=('69306cfd5ae97ae5f905e0e1e167b6ac8d28e49b58880621ad0024b59f4f8564'
 'SKIP'
 '192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
 validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee 
seth.fors...@canonical.com


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:36:13
  Author: tpowa
Revision: 241897

archrelease: copy trunk to testing-any

Added:
  wireless-regdb/repos/testing-any/
  wireless-regdb/repos/testing-any/PKGBUILD
(from rev 241896, wireless-regdb/trunk/PKGBUILD)
  wireless-regdb/repos/testing-any/crda.conf.d
(from rev 241896, wireless-regdb/trunk/crda.conf.d)
  wireless-regdb/repos/testing-any/wireless-regdb.install
(from rev 241896, wireless-regdb/trunk/wireless-regdb.install)

+
 PKGBUILD   |   46 ++
 crda.conf.d|4 
 wireless-regdb.install |   13 +
 3 files changed, 63 insertions(+)

Copied: wireless-regdb/repos/testing-any/PKGBUILD (from rev 241896, 
wireless-regdb/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-07-09 12:36:13 UTC (rev 241897)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=wireless-regdb
+pkgver=2015.06.05
+pkgrel=1
+pkgdesc=Central Regulatory Domain Database
+arch=('any')
+url=http://wireless.kernel.org/en/developers/Regulatory;
+backup=(etc/conf.d/wireless-regdom)
+license=('custom')
+depends=('sh')
+makedepends=('crda')
+source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign}
+crda.conf.d)
+sha256sums=('69306cfd5ae97ae5f905e0e1e167b6ac8d28e49b58880621ad0024b59f4f8564'
+'SKIP'
+'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
+validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee 
seth.fors...@canonical.com
+package() {
+  # Install and verify regulatory.bin file
+  msg Installing and verifying the regulatory.bin file ...
+  install -D -m644 ${srcdir}/${pkgname}-${pkgver}/regulatory.bin 
${pkgdir}/usr/lib/crda/regulatory.bin
+  # This creates a depend/makedepend loop:
+  # crda depends on wireless-regdb (but strictly doesn't makedepend on it)
+  # wireless-regdb makedepends on crda
+  if /usr/bin/regdbdump ${pkgdir}/usr/lib/crda/regulatory.bin  /dev/null; 
then
+msg Regulatory database verification was succesful.
+  else
+error Regulatory database verification failed.
+return 1
+  fi
+  install -D -m644 ${srcdir}/${pkgname}-${pkgver}/sforshee.key.pub.pem 
${pkgdir}/usr/lib/crda/pubkeys/sforshee.key.pub.pem
+  install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE 
${pkgdir}/usr/share/licenses/wireless-regdb/LICENSE
+  install -D -m644 ${srcdir}/${pkgname}-${pkgver}/regulatory.bin.5 
${pkgdir}/usr/share/man/man5/regulatory.bin.5
+
+  msg Installing /etc/conf.d/wireless-regdom ...
+  install -D -m644 ${srcdir}/crda.conf.d 
${pkgdir}/etc/conf.d/wireless-regdom
+  for dom in $(grep ^country ${srcdir}/${pkgname}-${pkgver}/db.txt | cut -d' 
' -f2 | sed 's|:||g'); do
+echo #WIRELESS_REGDOM=\${dom}\  
${pkgdir}/etc/conf.d/wireless-regdom.tmp
+  done
+  sort -u ${pkgdir}/etc/conf.d/wireless-regdom.tmp  
${pkgdir}/etc/conf.d/wireless-regdom
+  rm ${pkgdir}/etc/conf.d/wireless-regdom.tmp
+
+  install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: wireless-regdb/repos/testing-any/crda.conf.d (from rev 241896, 
wireless-regdb/trunk/crda.conf.d)
===
--- testing-any/crda.conf.d (rev 0)
+++ testing-any/crda.conf.d 2015-07-09 12:36:13 UTC (rev 241897)
@@ -0,0 +1,4 @@
+#
+# Wireless regulatory domain configuration
+#
+

Copied: wireless-regdb/repos/testing-any/wireless-regdb.install (from rev 
241896, wireless-regdb/trunk/wireless-regdb.install)
===
--- testing-any/wireless-regdb.install  (rev 0)
+++ testing-any/wireless-regdb.install  2015-07-09 12:36:13 UTC (rev 241897)
@@ -0,0 +1,13 @@
+post_install() {
+  post_upgrade
+}
+
+post_upgrade() {
+  # If crda is installed, we verify the integrity of the database
+  # If not, we skip this step silently
+  if [ -x /usr/bin/regdbdump ]; then
+if ! /usr/bin/regdbdump /usr/lib/crda/regulatory.bin  /dev/null; then
+  echo Failed to verify the integrity of the wireless regulatory 
database, CRDA will not work.
+fi
+  fi
+}


[arch-commits] Commit in spice-protocol/repos/extra-any (PKGBUILD PKGBUILD)

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:40:08
  Author: tpowa
Revision: 241901

archrelease: copy trunk to extra-any

Added:
  spice-protocol/repos/extra-any/PKGBUILD
(from rev 241900, spice-protocol/trunk/PKGBUILD)
Deleted:
  spice-protocol/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 12:40:03 UTC (rev 241900)
+++ PKGBUILD2015-07-09 12:40:08 UTC (rev 241901)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Patryk Kowalczyk  patryk at kowalczyk dot ws
-
-pkgname=spice-protocol
-pkgver=0.12.7
-pkgrel=1
-pkgdesc=Headers for SPICE protocol
-arch=(any)
-url=http://spice-space.org;
-license=('BSD' 'LGPL2.1')
-source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-md5sums=('799707321e88df4ecd17c4ccb0cc4ffe')

Copied: spice-protocol/repos/extra-any/PKGBUILD (from rev 241900, 
spice-protocol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 12:40:08 UTC (rev 241901)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Patryk Kowalczyk  patryk at kowalczyk dot ws
+
+pkgname=spice-protocol
+pkgver=0.12.8
+pkgrel=1
+pkgdesc=Headers for SPICE protocol
+arch=(any)
+url=http://spice-space.org;
+license=('BSD' 'LGPL2.1')
+source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+md5sums=('18c07caa8555de5f914f379d853d54b3')


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

2015-07-09 Thread Kyle Keen
Date: Thursday, July 9, 2015 @ 13:41:20
  Author: kkeen
Revision: 136575

bugfix: FS#39538, FS#39622

Modified:
  zeromq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 03:44:13 UTC (rev 136574)
+++ PKGBUILD2015-07-09 11:41:20 UTC (rev 136575)
@@ -32,6 +32,11 @@
 
 check() {
   cd $srcdir/$pkgname-$pkgver
+
+  # this will fail if zmq.hpp is out of date
+  LANG=C gcc -c ../zmq.hpp -L ./.libs/ -I ./include/ -o ./test.o
+  rm -f test.o
+
   if [[ $CARCH == 'i686' ]]; then
 return 0
   fi


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:30:57
  Author: tpowa
Revision: 241891

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

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

--+
 testing-i686/PKGBUILD|   32 
 testing-i686/libassuan.install   |   20 
 testing-x86_64/PKGBUILD  |   32 
 testing-x86_64/libassuan.install |   20 
 4 files changed, 104 insertions(+)

Copied: libassuan/repos/testing-i686/PKGBUILD (from rev 241890, 
libassuan/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-09 12:30:57 UTC (rev 241891)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=libassuan
+pkgver=2.2.1
+pkgrel=1
+pkgdesc=A IPC library used by some GnuPG related software
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnupg.org/related_software/libassuan;
+depends=('libgpg-error')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+install=libassuan.install
+md5sums=('6290e750ee87be3bfd9579fc44c6a186'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libassuan/repos/testing-i686/libassuan.install (from rev 241890, 
libassuan/trunk/libassuan.install)
===
--- testing-i686/libassuan.install  (rev 0)
+++ testing-i686/libassuan.install  2015-07-09 12:30:57 UTC (rev 241891)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(assuan.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: libassuan/repos/testing-x86_64/PKGBUILD (from rev 241890, 
libassuan/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-07-09 12:30:57 UTC (rev 241891)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=libassuan
+pkgver=2.2.1
+pkgrel=1
+pkgdesc=A IPC library used by some GnuPG related software
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnupg.org/related_software/libassuan;
+depends=('libgpg-error')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+install=libassuan.install
+md5sums=('6290e750ee87be3bfd9579fc44c6a186'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libassuan/repos/testing-x86_64/libassuan.install (from rev 241890, 
libassuan/trunk/libassuan.install)
===
--- testing-x86_64/libassuan.install(rev 0)
+++ testing-x86_64/libassuan.install2015-07-09 12:30:57 UTC (rev 241891)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(assuan.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:30:49
  Author: tpowa
Revision: 241890

upgpkg: libassuan 2.2.1-1

bump to latest version

Modified:
  libassuan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:20:45 UTC (rev 241889)
+++ PKGBUILD2015-07-09 12:30:49 UTC (rev 241890)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=libassuan
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc=A IPC library used by some GnuPG related software
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('libgpg-error')
 source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
 install=libassuan.install
-md5sums=('a104faed3e97b9c302c5d67cc22b1d60'
+md5sums=('6290e750ee87be3bfd9579fc44c6a186'
  'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:39:03
  Author: tpowa
Revision: 241898

upgpkg: tdb 1.3.6-1

bump to latest version

Modified:
  tdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:36:13 UTC (rev 241897)
+++ PKGBUILD2015-07-09 12:39:03 UTC (rev 241898)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=tdb
-pkgver=1.3.4
+pkgver=1.3.6
 pkgrel=1
 pkgdesc=A Trivial Database similar to GDBM but allows simultaneous commits
 arch=(i686 x86_64)
@@ -34,5 +34,5 @@
export PYTHON=/usr/bin/python2
make DESTDIR=$pkgdir/ install
 }
-md5sums=('60a9ad41e45d53e97c7cd4262932a53a'
+md5sums=('d4df2bcebbcd18463408b5a1ccb5b71b'
  'SKIP')


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:39:09
  Author: tpowa
Revision: 241899

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

Added:
  tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(from rev 241898, 
tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
  tdb/repos/extra-i686/PKGBUILD
(from rev 241898, tdb/trunk/PKGBUILD)
  tdb/repos/extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(from rev 241898, 
tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
  tdb/repos/extra-x86_64/PKGBUILD
(from rev 241898, tdb/trunk/PKGBUILD)
Deleted:
  tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
  tdb/repos/extra-i686/PKGBUILD
  tdb/repos/extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
  tdb/repos/extra-x86_64/PKGBUILD

+
 /0001-tdb-include-include-stdbool.h-in-tdb.h.patch |   54 +++
 /PKGBUILD  |   76 
++
 extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch   |   27 ---
 extra-i686/PKGBUILD|   38 -
 extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch |   27 ---
 extra-x86_64/PKGBUILD  |   38 -
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
===
--- extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2015-07-09 12:39:03 UTC (rev 241898)
+++ extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2015-07-09 12:39:09 UTC (rev 241899)
@@ -1,27 +0,0 @@
-From 4e14a437963ba54987cd58b4e0705d9a6d8aea6f Mon Sep 17 00:00:00 2001
-From: Adam Williamson awill...@redhat.com
-Date: Fri, 23 May 2014 10:08:14 -0700
-Subject: [PATCH] tdb/include: include stdbool.h in tdb.h
-
-Commit db5bda56bf08 (tdb: add TDB_MUTEX_LOCKING support) adds a bool, but does
-not include stdbool.h. This causes any build including tdb.h to fail, at least
-for me with GCC 4.9.0.

- lib/tdb/include/tdb.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/tdb.h b/include/tdb.h
-index 5ea5e60..03e429c 100644
 a/include/tdb.h
-+++ b/include/tdb.h
-@@ -31,6 +31,7 @@ extern C {
- #endif
- 
- #include signal.h
-+#include stdbool.h
- 
- /**
-  * @defgroup tdb The tdb API
--- 
-1.9.3
-

Copied: tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch 
(from rev 241898, tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
===
--- extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(rev 0)
+++ extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2015-07-09 12:39:09 UTC (rev 241899)
@@ -0,0 +1,27 @@
+From 4e14a437963ba54987cd58b4e0705d9a6d8aea6f Mon Sep 17 00:00:00 2001
+From: Adam Williamson awill...@redhat.com
+Date: Fri, 23 May 2014 10:08:14 -0700
+Subject: [PATCH] tdb/include: include stdbool.h in tdb.h
+
+Commit db5bda56bf08 (tdb: add TDB_MUTEX_LOCKING support) adds a bool, but does
+not include stdbool.h. This causes any build including tdb.h to fail, at least
+for me with GCC 4.9.0.
+---
+ lib/tdb/include/tdb.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/tdb.h b/include/tdb.h
+index 5ea5e60..03e429c 100644
+--- a/include/tdb.h
 b/include/tdb.h
+@@ -31,6 +31,7 @@ extern C {
+ #endif
+ 
+ #include signal.h
++#include stdbool.h
+ 
+ /**
+  * @defgroup tdb The tdb API
+-- 
+1.9.3
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-09 12:39:03 UTC (rev 241898)
+++ extra-i686/PKGBUILD 2015-07-09 12:39:09 UTC (rev 241899)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Contributor: eric e...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=tdb
-pkgver=1.3.4
-pkgrel=1
-pkgdesc=A Trivial Database similar to GDBM but allows simultaneous commits
-arch=(i686 x86_64)
-license=('GPL3')
-url=http://tdb.samba.org/;
-makedepends=('python2' 'libxslt' 'docbook-xsl')
-optdepends=('python2: for python bindings')
-source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key samba-b...@samba.org 
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed -i -e 's#python#python2#g' buildtools/bin/waf
-   #sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure
-   # Use system docbook.xsl
-   
#_manstyle=/usr/share/xml/docbook/xsl-stylesheets-1.76.1/manpages/docbook.xsl
-   #sed -i s#http.*xsl#$_manstyle# tdb.mk
-   export PYTHON=/usr/bin/python2
-   ./configure 

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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:40:03
  Author: tpowa
Revision: 241900

upgpkg: spice-protocol 0.12.8-1

bump to latest version

Modified:
  spice-protocol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:39:09 UTC (rev 241899)
+++ PKGBUILD2015-07-09 12:40:03 UTC (rev 241900)
@@ -3,7 +3,7 @@
 # Maintainer: Patryk Kowalczyk  patryk at kowalczyk dot ws
 
 pkgname=spice-protocol
-pkgver=0.12.7
+pkgver=0.12.8
 pkgrel=1
 pkgdesc=Headers for SPICE protocol
 arch=(any)
@@ -22,4 +22,4 @@
   make DESTDIR=$pkgdir/ install
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
-md5sums=('799707321e88df4ecd17c4ccb0cc4ffe')
+md5sums=('18c07caa8555de5f914f379d853d54b3')


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:33:55
  Author: tpowa
Revision: 241895

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

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

-+
 testing-i686/PKGBUILD   |   40 ++
 testing-i686/pinentry.install   |   20 +++
 testing-x86_64/PKGBUILD |   40 ++
 testing-x86_64/pinentry.install |   20 +++
 4 files changed, 120 insertions(+)

Copied: pinentry/repos/testing-i686/PKGBUILD (from rev 241894, 
pinentry/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-09 12:33:55 UTC (rev 241895)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=pinentry
+pkgver=0.9.5
+pkgrel=1
+pkgdesc=a collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://gnupg.org/related_software/pinentry/;
+depends=('ncurses' 'libcap=2.16')
+makedepends=('gtk2' 'qt4')
+optdepends=('gtk2: for gtk2 backend'
+'qt4: for qt4 backend')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+install=pinentry.install
+md5sums=('55439c4436b59573a29e144916ee5b61'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  #for file in qt4/*.moc; do
+  # moc-qt4 ${file/.moc/.h}  ${file}
+  # done
+
+  # https://bugs.gnupg.org/gnupg/issue1961
+  CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr \
+   --enable-pinentry-curses \
+   --enable-pinentry-gtk2 \
+--enable-pinentry-qt4 \
+   --enable-fallback-curses
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: pinentry/repos/testing-i686/pinentry.install (from rev 241894, 
pinentry/trunk/pinentry.install)
===
--- testing-i686/pinentry.install   (rev 0)
+++ testing-i686/pinentry.install   2015-07-09 12:33:55 UTC (rev 241895)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(pinentry.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: pinentry/repos/testing-x86_64/PKGBUILD (from rev 241894, 
pinentry/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-07-09 12:33:55 UTC (rev 241895)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=pinentry
+pkgver=0.9.5
+pkgrel=1
+pkgdesc=a collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://gnupg.org/related_software/pinentry/;
+depends=('ncurses' 'libcap=2.16')
+makedepends=('gtk2' 'qt4')
+optdepends=('gtk2: for gtk2 backend'
+'qt4: for qt4 backend')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+install=pinentry.install
+md5sums=('55439c4436b59573a29e144916ee5b61'
+ 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  #for file in qt4/*.moc; do
+  # moc-qt4 ${file/.moc/.h}  ${file}
+  # done
+
+  # https://bugs.gnupg.org/gnupg/issue1961
+  CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr \
+   --enable-pinentry-curses \
+   --enable-pinentry-gtk2 \
+--enable-pinentry-qt4 \
+   --enable-fallback-curses
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: pinentry/repos/testing-x86_64/pinentry.install (from rev 241894, 
pinentry/trunk/pinentry.install)
===
--- testing-x86_64/pinentry.install (rev 0)
+++ testing-x86_64/pinentry.install 2015-07-09 12:33:55 UTC (rev 241895)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(pinentry.info)
+

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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:33:49
  Author: tpowa
Revision: 241894

upgpkg: pinentry 0.9.5-1

bump to latest version

Modified:
  pinentry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:31:59 UTC (rev 241893)
+++ PKGBUILD2015-07-09 12:33:49 UTC (rev 241894)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=pinentry
-pkgver=0.9.1
+pkgver=0.9.5
 pkgrel=1
 pkgdesc=a collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 'qt4: for qt4 backend')
 source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
 install=pinentry.install
-md5sums=('d224d031130aedb44b05164cb04ed88b'
+md5sums=('55439c4436b59573a29e144916ee5b61'
  'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 


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

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 14:37:11
  Author: bgyorgy
Revision: 136576

upgpkg: lxqt-common 0.9.1-3

Add dependency on qt5-svg. Required for the SVG icons.

Modified:
  lxqt-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 11:41:20 UTC (rev 136575)
+++ PKGBUILD2015-07-09 12:37:11 UTC (rev 136576)
@@ -3,12 +3,12 @@
 
 pkgname=lxqt-common
 pkgver=0.9.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Common data to run a LXQt session.
 arch=(any)
 url=http://lxqt.org;
 license=(GPL2)
-depends=(bash hicolor-icon-theme xdg-utils)
+depends=(bash qt5-svg hicolor-icon-theme xdg-utils)
 makedepends=(cmake liblxqt qt5-tools)
 install=$pkgname.install
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 14:58:47
  Author: lfleischer
Revision: 136579

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

Added:
  notmuch/repos/community-i686/PKGBUILD
(from rev 136578, notmuch/trunk/PKGBUILD)
  notmuch/repos/community-i686/notmuch-vim.install
(from rev 136578, notmuch/trunk/notmuch-vim.install)
  notmuch/repos/community-i686/notmuch.install
(from rev 136578, notmuch/trunk/notmuch.install)
  notmuch/repos/community-x86_64/PKGBUILD
(from rev 136578, notmuch/trunk/PKGBUILD)
  notmuch/repos/community-x86_64/notmuch-vim.install
(from rev 136578, notmuch/trunk/notmuch-vim.install)
  notmuch/repos/community-x86_64/notmuch.install
(from rev 136578, notmuch/trunk/notmuch.install)
Deleted:
  notmuch/repos/community-i686/PKGBUILD
  notmuch/repos/community-i686/notmuch-vim.install
  notmuch/repos/community-i686/notmuch.install
  notmuch/repos/community-x86_64/PKGBUILD
  notmuch/repos/community-x86_64/notmuch-vim.install
  notmuch/repos/community-x86_64/notmuch.install

--+
 /PKGBUILD|  206 +
 /notmuch-vim.install |   42 ++
 /notmuch.install |   16 ++
 community-i686/PKGBUILD  |  103 
 community-i686/notmuch-vim.install   |   21 ---
 community-i686/notmuch.install   |8 -
 community-x86_64/PKGBUILD|  103 
 community-x86_64/notmuch-vim.install |   21 ---
 community-x86_64/notmuch.install |8 -
 9 files changed, 264 insertions(+), 264 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-09 12:58:32 UTC (rev 136578)
+++ community-i686/PKGBUILD 2015-07-09 12:58:47 UTC (rev 136579)
@@ -1,103 +0,0 @@
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Maintainer: Lukas Fleischer lfleischer at archlinux dot org
-# Contributor: fauno fauno at kiwwwi.com.ar
-# Contributor: Olivier Ramonat olivier at ramonat dot fr
-# Contributor: Richard Murri ad...@richardmurri.com
-
-pkgbase=notmuch
-pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.20.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://notmuchmail.org/;
-license=('GPL3')
-makedepends=('python2' 'python' 'python-sphinx' 'emacs' 'gnupg' 'ruby' 
'pkgconfig' 'xapian-core' 'gmime' 'talloc')
-options=(!distcc !makeflags)
-source=(http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('314983670db8d004adcf6828966b2c73')
-
-prepare(){
-#cp -dpr --no-preserve=ownership $srcdir/$pkgname-$pkgver 
$srcdir/$pkgname-runtime-$pkgver
-cp -dpr --no-preserve=ownership 
$srcdir/${pkgname}-$pkgver/bindings/python{,2}
-
-find $srcdir/${pkgname}-${pkgver}/bindings/python -name '*.py' -exec sed 
-i -e '1s,python$,python3,' {} +
-find $srcdir/${pkgname}-${pkgver}/bindings/python2 -name '*.py' -exec 
sed -i -e '1s,python$,python2,' {} +
-}
-
-build() {
-cd $srcdir/${pkgname}-$pkgver
-
-./configure --prefix=/usr --sysconfdir=/etc \
-   --includedir=/usr/include \
-   --without-zsh-completion
-
-make 
-make -C contrib/${pkgbase}-mutt ${pkgname}-mutt.1
-
-cd bindings/ruby
-ruby extconf.rb --vendor
-
-cd $srcdir/${pkgname}-${pkgver}/bindings/python
-python setup.py build
-
-cd $srcdir/${pkgname}-${pkgver}/bindings/python2
-python2 setup.py build
-}
-
-package_notmuch-runtime(){
-pkgdesc=Runtime for notmuch and notmuch-mutt
-depends=('xapian-core' 'gmime' 'talloc')
-cd $srcdir/${pkgbase}-$pkgver
-make DESTDIR=$pkgdir/ LIBDIR_IN_LDCONFIG=0 WITH_EMACS=0 install
-   install -Dm755 notmuch $pkgdir/usr/bin/notmuch
-rm -rf $pkgdir/usr/share
-}
-
-
-package_notmuch-vim(){
-pkgdesc=Vim plugins for notmuch
-depends=('notmuch-runtime')
-install=notmuch-vim.install
-make -C $srcdir/$pkgbase-$pkgver/vim DESTDIR=$pkgdir 
prefix=/usr/share/vim/vimfiles install
-}
-
-
-package_notmuch(){
-pkgdesc=Notmuch is not much of an email program
-depends=('notmuch-runtime')
-optdepends=('emacs: for using the emacs interface'
-'vim: for using the vim interface'
-'python2: for using the python2 bindings'
-'ruby: for using the ruby bindings'
-'gnupg: for email encryption')
-install=notmuch.install
-
-cd $srcdir/${pkgname}-$pkgver
-
-# Install emacs parts
-make DESTDIR=$pkgdir/ install-emacs
-
-# Install manpages
-make DESTDIR=$pkgdir prefix=/usr install-man
-
-# Install ruby bindings
-sed -i 's:INSTALL = .*[^D]$: -D:' bindings/ruby/Makefile
-make -C bindings/ruby exec_prefix=$pkgdir/usr prefix=/usr install
-
-# Install python bindings
-cd $srcdir/${pkgname}-${pkgver}/bindings/python2
-   python2 setup.py install --prefix=/usr --root=$pkgdir
-
-cd 

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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 14:58:32
  Author: lfleischer
Revision: 136578

upgpkg: notmuch 0.20.2-1

* Upstream update.
* PKGBUILD cleanup.

Modified:
  notmuch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:37:16 UTC (rev 136577)
+++ PKGBUILD2015-07-09 12:58:32 UTC (rev 136578)
@@ -6,7 +6,7 @@
 
 pkgbase=notmuch
 pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.20.1
+pkgver=0.20.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://notmuchmail.org/;
@@ -14,33 +14,29 @@
 makedepends=('python2' 'python' 'python-sphinx' 'emacs' 'gnupg' 'ruby' 
'pkgconfig' 'xapian-core' 'gmime' 'talloc')
 options=(!distcc !makeflags)
 source=(http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('314983670db8d004adcf6828966b2c73')
+md5sums=('4042de105925bb693f5f9c750bed28d1')
 
 prepare(){
-#cp -dpr --no-preserve=ownership $srcdir/$pkgname-$pkgver 
$srcdir/$pkgname-runtime-$pkgver
 cp -dpr --no-preserve=ownership 
$srcdir/${pkgname}-$pkgver/bindings/python{,2}
-
 find $srcdir/${pkgname}-${pkgver}/bindings/python -name '*.py' -exec sed 
-i -e '1s,python$,python3,' {} +
 find $srcdir/${pkgname}-${pkgver}/bindings/python2 -name '*.py' -exec 
sed -i -e '1s,python$,python2,' {} +
 }
 
 build() {
-cd $srcdir/${pkgname}-$pkgver
+cd $srcdir/$pkgbase-$pkgver
 
-./configure --prefix=/usr --sysconfdir=/etc \
-   --includedir=/usr/include \
-   --without-zsh-completion
+./configure --prefix=/usr --sysconfdir=/etc --includedir=/usr/include 
--without-zsh-completion
+make 
 
-make 
 make -C contrib/${pkgbase}-mutt ${pkgname}-mutt.1
 
-cd bindings/ruby
+cd $srcdir/$pkgbase-$pkgver/bindings/ruby
 ruby extconf.rb --vendor
 
-cd $srcdir/${pkgname}-${pkgver}/bindings/python
+cd $srcdir/$pkgbase-$pkgver/bindings/python
 python setup.py build
 
-cd $srcdir/${pkgname}-${pkgver}/bindings/python2
+cd $srcdir/$pkgbase-$pkgver/bindings/python2
 python2 setup.py build
 }
 
@@ -47,10 +43,13 @@
 package_notmuch-runtime(){
 pkgdesc=Runtime for notmuch and notmuch-mutt
 depends=('xapian-core' 'gmime' 'talloc')
-cd $srcdir/${pkgbase}-$pkgver
+
+cd $srcdir/$pkgbase-$pkgver
+
 make DESTDIR=$pkgdir/ LIBDIR_IN_LDCONFIG=0 WITH_EMACS=0 install
-   install -Dm755 notmuch $pkgdir/usr/bin/notmuch
-rm -rf $pkgdir/usr/share
+
+install -Dm755 notmuch $pkgdir/usr/bin/notmuch
+rm -rf $pkgdir/usr/share
 }
 
 
@@ -58,6 +57,7 @@
 pkgdesc=Vim plugins for notmuch
 depends=('notmuch-runtime')
 install=notmuch-vim.install
+
 make -C $srcdir/$pkgbase-$pkgver/vim DESTDIR=$pkgdir 
prefix=/usr/share/vim/vimfiles install
 }
 
@@ -72,7 +72,7 @@
 'gnupg: for email encryption')
 install=notmuch.install
 
-cd $srcdir/${pkgname}-$pkgver
+cd $srcdir/$pkgbase-$pkgver
 
 # Install emacs parts
 make DESTDIR=$pkgdir/ install-emacs
@@ -85,17 +85,17 @@
 make -C bindings/ruby exec_prefix=$pkgdir/usr prefix=/usr install
 
 # Install python bindings
-cd $srcdir/${pkgname}-${pkgver}/bindings/python2
-   python2 setup.py install --prefix=/usr --root=$pkgdir
+cd $srcdir/$pkgbase-$pkgver/bindings/python
+python setup.py install --prefix=/usr --root=$pkgdir
 
-cd $srcdir/${pkgname}-${pkgver}/bindings/python
-   python setup.py install --prefix=/usr --root=$pkgdir
-
+cd $srcdir/$pkgbase-$pkgver/bindings/python2
+python2 setup.py install --prefix=/usr --root=$pkgdir
 }
 
 package_notmuch-mutt(){
 pkgdesc=The mail indexer
 depends=('notmuch-runtime' 'perl-mailtools' 'perl-mail-box' 
'perl-term-readline-gnu' 'perl-string-shellquote' 'perl-file-which')
+
 cd $srcdir/$pkgbase-$pkgver
 
 install -Dm755 contrib/$pkgname/$pkgname $pkgdir/usr/bin/$pkgname


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:02:02
  Author: lfleischer
Revision: 136581

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

Added:
  stunnel/repos/community-i686/Makefile.patch
(from rev 136580, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-i686/PKGBUILD
(from rev 136580, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-i686/stunnel.install
(from rev 136580, stunnel/trunk/stunnel.install)
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
(from rev 136580, stunnel/trunk/stunnel.tmpfiles.conf)
  stunnel/repos/community-x86_64/Makefile.patch
(from rev 136580, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-x86_64/PKGBUILD
(from rev 136580, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-x86_64/stunnel.install
(from rev 136580, stunnel/trunk/stunnel.install)
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf
(from rev 136580, stunnel/trunk/stunnel.tmpfiles.conf)
Deleted:
  stunnel/repos/community-i686/Makefile.patch
  stunnel/repos/community-i686/PKGBUILD
  stunnel/repos/community-i686/stunnel.install
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
  stunnel/repos/community-x86_64/Makefile.patch
  stunnel/repos/community-x86_64/PKGBUILD
  stunnel/repos/community-x86_64/stunnel.install
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf

+
 /Makefile.patch|   24 +++
 /PKGBUILD  |  104 +++
 /stunnel.install   |   40 +++
 /stunnel.tmpfiles.conf |2 
 community-i686/Makefile.patch  |   12 ---
 community-i686/PKGBUILD|   52 ---
 community-i686/stunnel.install |   20 -
 community-i686/stunnel.tmpfiles.conf   |1 
 community-x86_64/Makefile.patch|   12 ---
 community-x86_64/PKGBUILD  |   52 ---
 community-x86_64/stunnel.install   |   20 -
 community-x86_64/stunnel.tmpfiles.conf |1 
 12 files changed, 170 insertions(+), 170 deletions(-)

Deleted: community-i686/Makefile.patch
===
--- community-i686/Makefile.patch   2015-07-09 13:01:50 UTC (rev 136580)
+++ community-i686/Makefile.patch   2015-07-09 13:02:02 UTC (rev 136581)
@@ -1,12 +0,0 @@
 tools/Makefile.in  2010-03-31 04:45:09.0 -0500
-+++ tools/Makefile.in  2010-04-11 17:17:41.0 -0500
-@@ -334,8 +334,7 @@
- 
- info-am:
- 
--install-data-am: install-confDATA install-data-local \
--  install-examplesDATA
-+install-data-am: install-confDATA install-examplesDATA
- 
- install-dvi: install-dvi-am
- 

Copied: stunnel/repos/community-i686/Makefile.patch (from rev 136580, 
stunnel/trunk/Makefile.patch)
===
--- community-i686/Makefile.patch   (rev 0)
+++ community-i686/Makefile.patch   2015-07-09 13:02:02 UTC (rev 136581)
@@ -0,0 +1,12 @@
+--- tools/Makefile.in  2010-03-31 04:45:09.0 -0500
 tools/Makefile.in  2010-04-11 17:17:41.0 -0500
+@@ -334,8 +334,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-confDATA install-data-local \
+-  install-examplesDATA
++install-data-am: install-confDATA install-examplesDATA
+ 
+ install-dvi: install-dvi-am
+ 

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-09 13:01:50 UTC (rev 136580)
+++ community-i686/PKGBUILD 2015-07-09 13:02:02 UTC (rev 136581)
@@ -1,52 +0,0 @@
-# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=stunnel
-pkgver=5.17
-pkgrel=1
-pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
-arch=('i686' 'x86_64')
-url=http://www.stunnel.org;
-license=('GPL')
-depends=('openssl')
-install=$pkgname.install
-source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
-'Makefile.patch'
-'stunnel.tmpfiles.conf')
-md5sums=('e70f001ee190105c5a10a74f4bd54901'
- 'SKIP'
- '579f198ecb90a42fcbfd8a4e48006264'
- '2e065a39998e57727ee79887bbd1751e')
-validpgpkeys=('AC915EA30645D9D3D4DAE4FEB1048932DD33') # Michał Trojnara
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # don't create a certificate...
-  patch -p0 $srcdir/Makefile.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-ipv6 \
---disable-libwrap
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 tools/stunnel.cnf 
$pkgdir/etc/stunnel/stunnel-openssl.cnf-sample
-  install -Dm644 tools/stunnel.service 
$pkgdir/usr/lib/systemd/system/stunnel.service
-  install 

[arch-commits] Commit in samba/repos (56 files)

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:52:58
  Author: tpowa
Revision: 241905

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

Added:
  samba/repos/extra-i686/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
(from rev 241902, 
samba/trunk/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch)
  samba/repos/extra-i686/PKGBUILD
(from rev 241902, samba/trunk/PKGBUILD)
  samba/repos/extra-i686/nmbd.service
(from rev 241902, samba/trunk/nmbd.service)
  samba/repos/extra-i686/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 241902, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/extra-i686/samba.conf
(from rev 241902, samba/trunk/samba.conf)
  samba/repos/extra-i686/samba.conf.d
(from rev 241902, samba/trunk/samba.conf.d)
  samba/repos/extra-i686/samba.install
(from rev 241902, samba/trunk/samba.install)
  samba/repos/extra-i686/samba.logrotate
(from rev 241902, samba/trunk/samba.logrotate)
  samba/repos/extra-i686/samba.pam
(from rev 241902, samba/trunk/samba.pam)
  samba/repos/extra-i686/samba.service
(from rev 241902, samba/trunk/samba.service)
  samba/repos/extra-i686/smbd.service
(from rev 241903, samba/trunk/smbd.service)
  samba/repos/extra-i686/smbd.socket
(from rev 241903, samba/trunk/smbd.socket)
  samba/repos/extra-i686/smbd@.service
(from rev 241903, samba/trunk/smbd@.service)
  samba/repos/extra-i686/winbindd.service
(from rev 241903, samba/trunk/winbindd.service)
  samba/repos/extra-x86_64/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
(from rev 241903, 
samba/trunk/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch)
  samba/repos/extra-x86_64/PKGBUILD
(from rev 241903, samba/trunk/PKGBUILD)
  samba/repos/extra-x86_64/nmbd.service
(from rev 241903, samba/trunk/nmbd.service)
  samba/repos/extra-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 241903, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/extra-x86_64/samba.conf
(from rev 241903, samba/trunk/samba.conf)
  samba/repos/extra-x86_64/samba.conf.d
(from rev 241904, samba/trunk/samba.conf.d)
  samba/repos/extra-x86_64/samba.install
(from rev 241904, samba/trunk/samba.install)
  samba/repos/extra-x86_64/samba.logrotate
(from rev 241904, samba/trunk/samba.logrotate)
  samba/repos/extra-x86_64/samba.pam
(from rev 241904, samba/trunk/samba.pam)
  samba/repos/extra-x86_64/samba.service
(from rev 241904, samba/trunk/samba.service)
  samba/repos/extra-x86_64/smbd.service
(from rev 241904, samba/trunk/smbd.service)
  samba/repos/extra-x86_64/smbd.socket
(from rev 241904, samba/trunk/smbd.socket)
  samba/repos/extra-x86_64/smbd@.service
(from rev 241904, samba/trunk/smbd@.service)
  samba/repos/extra-x86_64/winbindd.service
(from rev 241904, samba/trunk/winbindd.service)
Deleted:
  samba/repos/extra-i686/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
  samba/repos/extra-i686/PKGBUILD
  samba/repos/extra-i686/nmbd.service
  samba/repos/extra-i686/samba-4.0.3-fix_pidl_with_gcc48.patch
  samba/repos/extra-i686/samba.conf
  samba/repos/extra-i686/samba.conf.d
  samba/repos/extra-i686/samba.install
  samba/repos/extra-i686/samba.logrotate
  samba/repos/extra-i686/samba.pam
  samba/repos/extra-i686/samba.service
  samba/repos/extra-i686/smbd.service
  samba/repos/extra-i686/smbd.socket
  samba/repos/extra-i686/smbd@.service
  samba/repos/extra-i686/winbindd.service
  samba/repos/extra-x86_64/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
  samba/repos/extra-x86_64/PKGBUILD
  samba/repos/extra-x86_64/nmbd.service
  samba/repos/extra-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch
  samba/repos/extra-x86_64/samba.conf
  samba/repos/extra-x86_64/samba.conf.d
  samba/repos/extra-x86_64/samba.install
  samba/repos/extra-x86_64/samba.logrotate
  samba/repos/extra-x86_64/samba.pam
  samba/repos/extra-x86_64/samba.service
  samba/repos/extra-x86_64/smbd.service
  samba/repos/extra-x86_64/smbd.socket
  samba/repos/extra-x86_64/smbd@.service
  samba/repos/extra-x86_64/winbindd.service

---+
 /0001-s4-lib-tls-use-gnutls_priority_set_direct.patch |  138 ++
 /PKGBUILD |  534 
++
 /nmbd.service |   24 
 /samba-4.0.3-fix_pidl_with_gcc48.patch|  120 ++
 /samba.conf   |4 
 /samba.conf.d |   36 
 /samba.install|   28 
 /samba.logrotate  |   18 
 /samba.pam|6 
 /samba.service|   28 
 /smbd.service |   24 
 /smbd.socket 

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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:52:50
  Author: tpowa
Revision: 241904

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-09 12:52:41 UTC (rev 241903)
+++ extra-i686/PKGBUILD 2015-07-09 12:52:50 UTC (rev 241904)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=libraw1394
-pkgver=2.1.0
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-pkgdesc=Provides an API to the Linux IEEE1394 (FireWire) driver
-depends=('glibc')
-makedepends=('pkgconfig')
-url=https://ieee1394.wiki.kernel.org/index.php/Main_Page;
-source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('0b3126d8158d156de9da2ff4d861c47857acc4318a7ac260258015a22071964f')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr 
-   make
-}
-
-package () {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: libraw1394/repos/extra-i686/PKGBUILD (from rev 241903, 
libraw1394/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-07-09 12:52:50 UTC (rev 241904)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=libraw1394
+pkgver=2.1.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+pkgdesc=Provides an API to the Linux IEEE1394 (FireWire) driver
+depends=('glibc')
+makedepends=('pkgconfig')
+url=https://ieee1394.wiki.kernel.org/index.php/Main_Page;
+source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr 
+   make
+}
+
+package () {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-07-09 12:52:41 UTC (rev 241903)
+++ extra-x86_64/PKGBUILD   2015-07-09 12:52:50 UTC (rev 241904)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=libraw1394
-pkgver=2.1.0
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-pkgdesc=Provides an API to the Linux IEEE1394 (FireWire) driver
-depends=('glibc')
-makedepends=('pkgconfig')
-url=https://ieee1394.wiki.kernel.org/index.php/Main_Page;
-source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('0b3126d8158d156de9da2ff4d861c47857acc4318a7ac260258015a22071964f')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr 
-   make
-}
-
-package () {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: libraw1394/repos/extra-x86_64/PKGBUILD (from rev 241903, 
libraw1394/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-07-09 12:52:50 UTC (rev 241904)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=libraw1394
+pkgver=2.1.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+pkgdesc=Provides an API to the Linux IEEE1394 (FireWire) driver
+depends=('glibc')
+makedepends=('pkgconfig')
+url=https://ieee1394.wiki.kernel.org/index.php/Main_Page;
+source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr 
+   make
+}
+
+package () {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:52:41
  Author: tpowa
Revision: 241903

upgpkg: libraw1394 2.1.1-1

bump to latest version

Modified:
  libraw1394/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:52:30 UTC (rev 241902)
+++ PKGBUILD2015-07-09 12:52:41 UTC (rev 241903)
@@ -3,8 +3,8 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=libraw1394
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.1.1
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL2.1')
 pkgdesc=Provides an API to the Linux IEEE1394 (FireWire) driver
@@ -12,7 +12,7 @@
 makedepends=('pkgconfig')
 url=https://ieee1394.wiki.kernel.org/index.php/Main_Page;
 
source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('0b3126d8158d156de9da2ff4d861c47857acc4318a7ac260258015a22071964f')
+sha256sums=('1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 14:52:30
  Author: tpowa
Revision: 241902

upgpkg: samba 4.2.2-1

bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:40:08 UTC (rev 241901)
+++ PKGBUILD2015-07-09 12:52:30 UTC (rev 241902)
@@ -10,11 +10,11 @@
 
 pkgbase=samba
 pkgname=('libwbclient' 'smbclient' 'samba')
-pkgver=4.2.1
+pkgver=4.2.2
 # We use the 'A' to fake out pacman's version comparators.  Samba chooses
 # to append 'a','b',etc to their subsequent releases, which pacman
 # misconstrues as alpha, beta, etc.  Bad samba!
-_realver=4.2.1
+_realver=4.2.2
 pkgrel=1
 arch=(i686 x86_64)
 url=http://www.samba.org;
@@ -252,7 +252,7 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
-md5sums=('614b4c7b9bbc70cff4cb56956f565741'
+md5sums=('77f138cc0736549b03872279364766e0'
  'SKIP'
  '5697da77590ec092cc8a883bae06093c'
  '96f82c38f3f540b53f3e5144900acf17'


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:01:50
  Author: lfleischer
Revision: 136580

upgpkg: stunnel 5.19-1

Upstream updat.

Modified:
  stunnel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:58:47 UTC (rev 136579)
+++ PKGBUILD2015-07-09 13:01:50 UTC (rev 136580)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=stunnel
-pkgver=5.17
+pkgver=5.19
 pkgrel=1
 pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
 'Makefile.patch'
 'stunnel.tmpfiles.conf')
-md5sums=('e70f001ee190105c5a10a74f4bd54901'
+md5sums=('5642c0feb14f480b8a0739b6eb8b39e5'
  'SKIP'
  '579f198ecb90a42fcbfd8a4e48006264'
  '2e065a39998e57727ee79887bbd1751e')


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:15:48
  Author: lfleischer
Revision: 136583

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

Added:
  opensmtpd/repos/community-i686/PKGBUILD
(from rev 136582, opensmtpd/trunk/PKGBUILD)
  opensmtpd/repos/community-i686/opensmtpd.install
(from rev 136582, opensmtpd/trunk/opensmtpd.install)
  opensmtpd/repos/community-i686/smtpd.service
(from rev 136582, opensmtpd/trunk/smtpd.service)
  opensmtpd/repos/community-i686/smtpd.socket
(from rev 136582, opensmtpd/trunk/smtpd.socket)
  opensmtpd/repos/community-x86_64/PKGBUILD
(from rev 136582, opensmtpd/trunk/PKGBUILD)
  opensmtpd/repos/community-x86_64/opensmtpd.install
(from rev 136582, opensmtpd/trunk/opensmtpd.install)
  opensmtpd/repos/community-x86_64/smtpd.service
(from rev 136582, opensmtpd/trunk/smtpd.service)
  opensmtpd/repos/community-x86_64/smtpd.socket
(from rev 136582, opensmtpd/trunk/smtpd.socket)
Deleted:
  opensmtpd/repos/community-i686/PKGBUILD
  opensmtpd/repos/community-i686/opensmtpd.install
  opensmtpd/repos/community-i686/smtpd.service
  opensmtpd/repos/community-i686/smtpd.socket
  opensmtpd/repos/community-x86_64/PKGBUILD
  opensmtpd/repos/community-x86_64/opensmtpd.install
  opensmtpd/repos/community-x86_64/smtpd.service
  opensmtpd/repos/community-x86_64/smtpd.socket

+
 /PKGBUILD  |  116 +++
 /opensmtpd.install |   50 +++
 /smtpd.service |   20 ++
 /smtpd.socket  |   16 
 community-i686/PKGBUILD|   58 -
 community-i686/opensmtpd.install   |   25 ---
 community-i686/smtpd.service   |   10 ---
 community-i686/smtpd.socket|8 --
 community-x86_64/PKGBUILD  |   58 -
 community-x86_64/opensmtpd.install |   25 ---
 community-x86_64/smtpd.service |   10 ---
 community-x86_64/smtpd.socket  |8 --
 12 files changed, 202 insertions(+), 202 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-09 13:15:35 UTC (rev 136582)
+++ community-i686/PKGBUILD 2015-07-09 13:15:48 UTC (rev 136583)
@@ -1,58 +0,0 @@
-# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
-# Contributor: Sébastien Luttringer
-
-pkgname=opensmtpd
-pkgver=5.4.6p1
-pkgrel=1
-pkgdesc='Free implementation of the server-side SMTP protocol'
-arch=('i686' 'x86_64')
-url='http://www.opensmtpd.org/'
-license=('custom')
-depends=('libasr' 'libevent' 'openssl')
-provides=('smtp-server' 'smtp-forwarder')
-conflicts=('smtp-server' 'smtp-forwarder')
-backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
-options=('emptydirs')
-install=opensmtpd.install
-source=(http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz;
-'smtpd.service'
-'smtpd.socket')
-md5sums=('b146018e4c79f0674bee8e09134bb4aa'
- 'a278f272d97a9fe5a8aac784a7c98d67'
- 'c2c01e9ca78df3f65efe40a7c0e17ee0')
-
-prepare() {
-  sed -ri 's,/etc/mail,/etc/smtpd,g' $pkgname-$pkgver/smtpd/smtpd.conf
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/smtpd \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/smtpd \
---with-maildir=/var/spool/mail \
---with-privsep-path=/var/empty \
---with-sock-dir=/run \
---with-ca-file=/etc/ssl/certs/ca-certificates.crt \
---with-privsep-user=smtpd \
---with-queue-user=smtpq \
---with-pam
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  # install license and systemd unit files
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 $srcdir/smtpd.service 
$pkgdir/usr/lib/systemd/system/smtpd.service
-  install -Dm644 $srcdir/smtpd.socket 
$pkgdir/usr/lib/systemd/system/smtpd.socket
-
-  # install an empty aliases file (used by the default config)
-  install -Dm644 /dev/null $pkgdir/etc/smtpd/aliases
-}

Copied: opensmtpd/repos/community-i686/PKGBUILD (from rev 136582, 
opensmtpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-09 13:15:48 UTC (rev 136583)
@@ -0,0 +1,58 @@
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgname=opensmtpd
+pkgver=5.7.1p1
+pkgrel=1
+pkgdesc='Free implementation of the server-side SMTP protocol'
+arch=('i686' 'x86_64')
+url='http://www.opensmtpd.org/'
+license=('custom')
+depends=('libasr' 'libevent' 'openssl')
+provides=('smtp-server' 'smtp-forwarder')
+conflicts=('smtp-server' 'smtp-forwarder')
+backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
+options=('emptydirs')
+install=opensmtpd.install
+source=(http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz;
+

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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:15:35
  Author: lfleischer
Revision: 136582

upgpkg: opensmtpd 5.7.1p1-1

Upstream update.

Modified:
  opensmtpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 13:02:02 UTC (rev 136581)
+++ PKGBUILD2015-07-09 13:15:35 UTC (rev 136582)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=opensmtpd
-pkgver=5.4.6p1
+pkgver=5.7.1p1
 pkgrel=1
 pkgdesc='Free implementation of the server-side SMTP protocol'
 arch=('i686' 'x86_64')
@@ -17,9 +17,9 @@
 source=(http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz;
 'smtpd.service'
 'smtpd.socket')
-md5sums=('b146018e4c79f0674bee8e09134bb4aa'
- 'a278f272d97a9fe5a8aac784a7c98d67'
- 'c2c01e9ca78df3f65efe40a7c0e17ee0')
+sha256sums=('67e9dd9682ca8c181e84e66c76245a4a8f6205834f915a2c021cdfeb22049e3a'
+'3760f7268e776b696548e57f5f9e4d18ed19e8854dc0631c176a69d558a8b362'
+'32d46de5562d01de445d04c93bcc9f94bf103539b676e449c32e3603a3866cf8')
 
 prepare() {
   sed -ri 's,/etc/mail,/etc/smtpd,g' $pkgname-$pkgver/smtpd/smtpd.conf


[arch-commits] Commit in tcsh/repos (20 files)

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:20:19
  Author: lfleischer
Revision: 136585

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

Added:
  tcsh/repos/community-i686/PKGBUILD
(from rev 136584, tcsh/trunk/PKGBUILD)
  tcsh/repos/community-i686/csh.cshrc
(from rev 136584, tcsh/trunk/csh.cshrc)
  tcsh/repos/community-i686/csh.login
(from rev 136584, tcsh/trunk/csh.login)
  tcsh/repos/community-i686/tcsh-6.17.00-ls-colors-var.patch
(from rev 136584, tcsh/trunk/tcsh-6.17.00-ls-colors-var.patch)
  tcsh/repos/community-i686/tcsh.install
(from rev 136584, tcsh/trunk/tcsh.install)
  tcsh/repos/community-x86_64/PKGBUILD
(from rev 136584, tcsh/trunk/PKGBUILD)
  tcsh/repos/community-x86_64/csh.cshrc
(from rev 136584, tcsh/trunk/csh.cshrc)
  tcsh/repos/community-x86_64/csh.login
(from rev 136584, tcsh/trunk/csh.login)
  tcsh/repos/community-x86_64/tcsh-6.17.00-ls-colors-var.patch
(from rev 136584, tcsh/trunk/tcsh-6.17.00-ls-colors-var.patch)
  tcsh/repos/community-x86_64/tcsh.install
(from rev 136584, tcsh/trunk/tcsh.install)
Deleted:
  tcsh/repos/community-i686/PKGBUILD
  tcsh/repos/community-i686/csh.cshrc
  tcsh/repos/community-i686/csh.login
  tcsh/repos/community-i686/tcsh-6.17.00-ls-colors-var.patch
  tcsh/repos/community-i686/tcsh.install
  tcsh/repos/community-x86_64/PKGBUILD
  tcsh/repos/community-x86_64/csh.cshrc
  tcsh/repos/community-x86_64/csh.login
  tcsh/repos/community-x86_64/tcsh-6.17.00-ls-colors-var.patch
  tcsh/repos/community-x86_64/tcsh.install

---+
 /PKGBUILD |   80 
 /csh.cshrc|  192 
 /csh.login|  142 ++
 /tcsh-6.17.00-ls-colors-var.patch |   26 ++
 /tcsh.install |   46 
 community-i686/PKGBUILD   |   43 
 community-i686/csh.cshrc  |   96 --
 community-i686/csh.login  |   71 ---
 community-i686/tcsh-6.17.00-ls-colors-var.patch   |   13 -
 community-i686/tcsh.install   |   23 --
 community-x86_64/PKGBUILD |   43 
 community-x86_64/csh.cshrc|   96 --
 community-x86_64/csh.login|   71 ---
 community-x86_64/tcsh-6.17.00-ls-colors-var.patch |   13 -
 community-x86_64/tcsh.install |   23 --
 15 files changed, 486 insertions(+), 492 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-09 13:20:08 UTC (rev 136584)
+++ community-i686/PKGBUILD 2015-07-09 13:20:19 UTC (rev 136585)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: Judd Vinet jvi...@zeroflux.org
-
-pkgname=tcsh
-pkgver=6.18.01
-pkgrel=2
-pkgdesc='Enhanced version of the Berkeley C shell.'
-arch=('i686' 'x86_64')
-url='http://www.tcsh.org/Welcome'
-license=('BSD')
-depends=('ncurses')
-backup=('etc/csh.cshrc'
-'etc/csh.login')
-install='tcsh.install'
-source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'csh.cshrc'
-'csh.login')
-md5sums=('6eed09dbd4223ab5b6955378450d228a'
- '7ca0fe6d1a1b9a0093f632499d4fb112'
- '4869b9da87c79854e2cc97241f125853')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc --bindir=/usr/bin
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} mandir=/usr/share/man install install.man
-
-  install -Dm0644 ${srcdir}/csh.cshrc ${pkgdir}/etc/csh.cshrc
-  install -Dm0644 ${srcdir}/csh.login ${pkgdir}/etc/csh.login
-  install -Dm0644 Copyright ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  ln -s tcsh ${pkgdir}/usr/bin/csh
-  ln -s tcsh.1 ${pkgdir}/usr/share/man/man1/csh.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tcsh/repos/community-i686/PKGBUILD (from rev 136584, 
tcsh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-09 13:20:19 UTC (rev 136585)
@@ -0,0 +1,40 @@
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=tcsh
+pkgver=6.19.00
+pkgrel=1
+pkgdesc='Enhanced version of the Berkeley C shell.'
+arch=('i686' 'x86_64')
+url='http://www.tcsh.org/Welcome'
+license=('BSD')
+depends=('ncurses')
+backup=('etc/csh.cshrc'
+'etc/csh.login')
+install='tcsh.install'
+source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'csh.cshrc'
+'csh.login')

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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:20:08
  Author: lfleischer
Revision: 136584

upgpkg: tcsh 6.19.00-1

Upstream update.

Modified:
  tcsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 13:15:48 UTC (rev 136583)
+++ PKGBUILD2015-07-09 13:20:08 UTC (rev 136584)
@@ -1,11 +1,10 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
 # Contributor: Eric Belanger e...@archlinux.org
 # Contributor: Judd Vinet jvi...@zeroflux.org
 
 pkgname=tcsh
-pkgver=6.18.01
-pkgrel=2
+pkgver=6.19.00
+pkgrel=1
 pkgdesc='Enhanced version of the Berkeley C shell.'
 arch=('i686' 'x86_64')
 url='http://www.tcsh.org/Welcome'
@@ -17,7 +16,7 @@
 source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'csh.cshrc'
 'csh.login')
-md5sums=('6eed09dbd4223ab5b6955378450d228a'
+md5sums=('f5f854833578647795bc906dd4bcb5d5'
  '7ca0fe6d1a1b9a0093f632499d4fb112'
  '4869b9da87c79854e2cc97241f125853')
 
@@ -39,5 +38,3 @@
   ln -s tcsh ${pkgdir}/usr/bin/csh
   ln -s tcsh.1 ${pkgdir}/usr/share/man/man1/csh.1
 }
-
-# vim:set ts=2 sw=2 et:


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:24:11
  Author: lfleischer
Revision: 136586

upgpkg: winetricks 20150706-1

Upstream update.

Modified:
  winetricks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 13:20:19 UTC (rev 136585)
+++ PKGBUILD2015-07-09 13:24:11 UTC (rev 136586)
@@ -1,11 +1,10 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
 # Contributor: Laurent Carlier lordhea...@gmail.com
 # Contributor: DsTr d...@gmail.com
 # Contributor: Allan McRae al...@archlinux.org
 
 pkgname=winetricks
-pkgver=20150416
+pkgver=20150706
 pkgrel=1
 pkgdesc='Script to install various redistributable runtime libraries in Wine.'
 url='http://wiki.winehq.org/winetricks'
@@ -13,13 +12,12 @@
 arch=('any')
 optdepends=('zenity: GUI for GNOME desktop'
 'kdebase-kdialog: GUI for KDE desktop')
-source=(https://github.com/Winetricks/winetricks/archive/${pkgver}.tar.gz)
-md5sums=('a75ce63405bc737ed190a44a4e74811d')
+source=(https://github.com/Winetricks/winetricks/archive/${pkgver}.tar.gz;)
+md5sums=('82fc1cd9957633ad0569ca994605d70e')
 
 package() {
   depends=('wine' 'cabextract' 'unzip' 'xorg-xmessage')
 
-  cd winetricks-${pkgver}
-
+  cd winetricks-${pkgver}
   make DESTDIR=${pkgdir} install 
 }


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

2015-07-09 Thread Lukas Fleischer
Date: Thursday, July 9, 2015 @ 15:24:16
  Author: lfleischer
Revision: 136587

archrelease: copy trunk to community-any

Added:
  winetricks/repos/community-any/PKGBUILD
(from rev 136586, winetricks/trunk/PKGBUILD)
Deleted:
  winetricks/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 13:24:11 UTC (rev 136586)
+++ PKGBUILD2015-07-09 13:24:16 UTC (rev 136587)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Laurent Carlier lordhea...@gmail.com
-# Contributor: DsTr d...@gmail.com
-# Contributor: Allan McRae al...@archlinux.org
-
-pkgname=winetricks
-pkgver=20150416
-pkgrel=1
-pkgdesc='Script to install various redistributable runtime libraries in Wine.'
-url='http://wiki.winehq.org/winetricks'
-license=('LGPL')
-arch=('any')
-optdepends=('zenity: GUI for GNOME desktop'
-'kdebase-kdialog: GUI for KDE desktop')
-source=(https://github.com/Winetricks/winetricks/archive/${pkgver}.tar.gz)
-md5sums=('a75ce63405bc737ed190a44a4e74811d')
-
-package() {
-  depends=('wine' 'cabextract' 'unzip' 'xorg-xmessage')
-
-  cd winetricks-${pkgver}
-
-  make DESTDIR=${pkgdir} install 
-}

Copied: winetricks/repos/community-any/PKGBUILD (from rev 136586, 
winetricks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 13:24:16 UTC (rev 136587)
@@ -0,0 +1,23 @@
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+# Contributor: DsTr d...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+
+pkgname=winetricks
+pkgver=20150706
+pkgrel=1
+pkgdesc='Script to install various redistributable runtime libraries in Wine.'
+url='http://wiki.winehq.org/winetricks'
+license=('LGPL')
+arch=('any')
+optdepends=('zenity: GUI for GNOME desktop'
+'kdebase-kdialog: GUI for KDE desktop')
+source=(https://github.com/Winetricks/winetricks/archive/${pkgver}.tar.gz;)
+md5sums=('82fc1cd9957633ad0569ca994605d70e')
+
+package() {
+  depends=('wine' 'cabextract' 'unzip' 'xorg-xmessage')
+
+  cd winetricks-${pkgver}
+  make DESTDIR=${pkgdir} install 
+}


[arch-commits] Commit in (4 files)

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 15:35:44
  Author: bgyorgy
Revision: 136588

Move l3afpad from AUR with 10 votes

Added:
  l3afpad/
  l3afpad/trunk/
  l3afpad/trunk/PKGBUILD
  l3afpad/trunk/l3afpad.install

-+
 PKGBUILD|   33 +
 l3afpad.install |   12 
 2 files changed, 45 insertions(+)

Added: l3afpad/trunk/PKGBUILD
===
--- l3afpad/trunk/PKGBUILD  (rev 0)
+++ l3afpad/trunk/PKGBUILD  2015-07-09 13:35:44 UTC (rev 136588)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Steven Honeyman stevenhoneyman at gmail com
+# Contributor: nbvcxz (b4283)
+
+pkgname=l3afpad
+pkgver=0.8.18.1.11
+pkgrel=1
+pkgdesc=Simple plain text editor for GTK+ 3
+arch=('i686' 'x86_64')
+url=https://github.com/stevenhoneyman/l3afpad;
+license=('GPL2')
+depends=('gtk3' 'desktop-file-utils')
+makedepends=('intltool')
+install=l3afpad.install
+source=(https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz)
+md5sums=('2c209503116b53e732c37f8d8d4c40fd')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: l3afpad/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: l3afpad/trunk/l3afpad.install
===
--- l3afpad/trunk/l3afpad.install   (rev 0)
+++ l3afpad/trunk/l3afpad.install   2015-07-09 13:35:44 UTC (rev 136588)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


[arch-commits] Commit in l3afpad (7 files)

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 15:37:04
  Author: bgyorgy
Revision: 136589

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

Added:
  l3afpad/repos/
  l3afpad/repos/community-i686/
  l3afpad/repos/community-i686/PKGBUILD
(from rev 136588, l3afpad/trunk/PKGBUILD)
  l3afpad/repos/community-i686/l3afpad.install
(from rev 136588, l3afpad/trunk/l3afpad.install)
  l3afpad/repos/community-x86_64/
  l3afpad/repos/community-x86_64/PKGBUILD
(from rev 136588, l3afpad/trunk/PKGBUILD)
  l3afpad/repos/community-x86_64/l3afpad.install
(from rev 136588, l3afpad/trunk/l3afpad.install)

--+
 community-i686/PKGBUILD  |   33 +
 community-i686/l3afpad.install   |   12 
 community-x86_64/PKGBUILD|   33 +
 community-x86_64/l3afpad.install |   12 
 4 files changed, 90 insertions(+)

Copied: l3afpad/repos/community-i686/PKGBUILD (from rev 136588, 
l3afpad/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-07-09 13:37:04 UTC (rev 136589)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Steven Honeyman stevenhoneyman at gmail com
+# Contributor: nbvcxz (b4283)
+
+pkgname=l3afpad
+pkgver=0.8.18.1.11
+pkgrel=1
+pkgdesc=Simple plain text editor for GTK+ 3
+arch=('i686' 'x86_64')
+url=https://github.com/stevenhoneyman/l3afpad;
+license=('GPL2')
+depends=('gtk3' 'desktop-file-utils')
+makedepends=('intltool')
+install=l3afpad.install
+source=(https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz)
+md5sums=('2c209503116b53e732c37f8d8d4c40fd')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: l3afpad/repos/community-i686/l3afpad.install (from rev 136588, 
l3afpad/trunk/l3afpad.install)
===
--- repos/community-i686/l3afpad.install(rev 0)
+++ repos/community-i686/l3afpad.install2015-07-09 13:37:04 UTC (rev 
136589)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: l3afpad/repos/community-x86_64/PKGBUILD (from rev 136588, 
l3afpad/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2015-07-09 13:37:04 UTC (rev 136589)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Steven Honeyman stevenhoneyman at gmail com
+# Contributor: nbvcxz (b4283)
+
+pkgname=l3afpad
+pkgver=0.8.18.1.11
+pkgrel=1
+pkgdesc=Simple plain text editor for GTK+ 3
+arch=('i686' 'x86_64')
+url=https://github.com/stevenhoneyman/l3afpad;
+license=('GPL2')
+depends=('gtk3' 'desktop-file-utils')
+makedepends=('intltool')
+install=l3afpad.install
+source=(https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz)
+md5sums=('2c209503116b53e732c37f8d8d4c40fd')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: l3afpad/repos/community-x86_64/l3afpad.install (from rev 136588, 
l3afpad/trunk/l3afpad.install)
===
--- repos/community-x86_64/l3afpad.install  (rev 0)
+++ repos/community-x86_64/l3afpad.install  2015-07-09 13:37:04 UTC (rev 
136589)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 15:40:05
  Author: tpowa
Revision: 241906

upgpkg: lensfun 0.3.1-1

bump to latest version

Modified:
  lensfun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 12:52:58 UTC (rev 241905)
+++ PKGBUILD2015-07-09 13:40:05 UTC (rev 241906)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=lensfun
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc=Database of photographic lenses and a library that allows advanced 
access to the database
 arch=(i686 x86_64)
@@ -9,9 +9,9 @@
 url=http://lensfun.sourceforge.net;
 license=('LGPL3')
 depends=('glibc' 'glib2')
-makedepends=('libpng' 'doxygen' 'cmake')
-source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('60e2bf3a6a2f495076db1d88778a00d358cf0b69')
+makedepends=('python' 'libpng' 'doxygen' 'cmake')
+source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('905168c39c7ccb980ee3d985778723a8c65cddb8')
 
 build() {
 cd ${srcdir}/${pkgname}-${pkgver}


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

2015-07-09 Thread Tobias Powalowski
Date: Thursday, July 9, 2015 @ 15:40:15
  Author: tpowa
Revision: 241907

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-09 13:40:05 UTC (rev 241906)
+++ extra-i686/PKGBUILD 2015-07-09 13:40:15 UTC (rev 241907)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=lensfun
-pkgver=0.3.0
-pkgrel=1
-pkgdesc=Database of photographic lenses and a library that allows advanced 
access to the database
-arch=(i686 x86_64)
-url=http://lensfun.sourceforge.net;
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('libpng' 'doxygen' 'cmake')
-source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('60e2bf3a6a2f495076db1d88778a00d358cf0b69')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-cmake -DLENSFUN_INSTALL_PREFIX=/usr .
-make all
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=$pkgdir install
-}

Copied: lensfun/repos/extra-i686/PKGBUILD (from rev 241906, 
lensfun/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-07-09 13:40:15 UTC (rev 241907)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=lensfun
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=Database of photographic lenses and a library that allows advanced 
access to the database
+arch=(i686 x86_64)
+url=http://lensfun.sourceforge.net;
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen' 'cmake')
+source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('905168c39c7ccb980ee3d985778723a8c65cddb8')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+cmake -DLENSFUN_INSTALL_PREFIX=/usr .
+make all
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-07-09 13:40:05 UTC (rev 241906)
+++ extra-x86_64/PKGBUILD   2015-07-09 13:40:15 UTC (rev 241907)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=lensfun
-pkgver=0.3.0
-pkgrel=1
-pkgdesc=Database of photographic lenses and a library that allows advanced 
access to the database
-arch=(i686 x86_64)
-url=http://lensfun.sourceforge.net;
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('libpng' 'doxygen' 'cmake')
-source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('60e2bf3a6a2f495076db1d88778a00d358cf0b69')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-cmake -DLENSFUN_INSTALL_PREFIX=/usr .
-make all
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=$pkgdir install
-}

Copied: lensfun/repos/extra-x86_64/PKGBUILD (from rev 241906, 
lensfun/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-07-09 13:40:15 UTC (rev 241907)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=lensfun
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=Database of photographic lenses and a library that allows advanced 
access to the database
+arch=(i686 x86_64)
+url=http://lensfun.sourceforge.net;
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen' 'cmake')
+source=(http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('905168c39c7ccb980ee3d985778723a8c65cddb8')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+cmake -DLENSFUN_INSTALL_PREFIX=/usr .
+make all
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in grml-zsh-config/trunk (PKGBUILD)

2015-07-09 Thread Pierre Schmitz
Date: Thursday, July 9, 2015 @ 23:02:02
  Author: pierre
Revision: 241921

upgpkg: grml-zsh-config 0.12.2-1

Modified:
  grml-zsh-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 18:50:45 UTC (rev 241920)
+++ PKGBUILD2015-07-09 21:02:02 UTC (rev 241921)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=grml-zsh-config
-pkgver=0.12.1
+pkgver=0.12.2
 pkgrel=1
 pkgdesc=grml's zsh setup
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
 makedepends=('txt2tags')
 
source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('fb202e9e5d7b2c9f48f7bcc785c625104b6f20e0a5ac2f54bfa5b98d9a593ac8')
+sha256sums=('0ffe06eac385fca3ec70c0cb2f19c2886bc6d87e77b8959def48bb8b87bf3492')
 
 build() {
cd ${srcdir}/grml-etc-core-${pkgver}/doc


[arch-commits] Commit in grml-zsh-config/repos/extra-any (PKGBUILD PKGBUILD)

2015-07-09 Thread Pierre Schmitz
Date: Thursday, July 9, 2015 @ 23:02:17
  Author: pierre
Revision: 241922

archrelease: copy trunk to extra-any

Added:
  grml-zsh-config/repos/extra-any/PKGBUILD
(from rev 241921, grml-zsh-config/trunk/PKGBUILD)
Deleted:
  grml-zsh-config/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 21:02:02 UTC (rev 241921)
+++ PKGBUILD2015-07-09 21:02:17 UTC (rev 241922)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=grml-zsh-config
-pkgver=0.12.1
-pkgrel=1
-pkgdesc=grml's zsh setup
-arch=('any')
-url='http://grml.org/zsh/'
-license=('GPL2')
-provides=('grmlzshrc')
-depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
-makedepends=('txt2tags')
-source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('fb202e9e5d7b2c9f48f7bcc785c625104b6f20e0a5ac2f54bfa5b98d9a593ac8')
-
-build() {
-   cd ${srcdir}/grml-etc-core-${pkgver}/doc
-   make
-}
-
-package() {
-   cd ${srcdir}/grml-etc-core-${pkgver}
-   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
-   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
-   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
-
-   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
-   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
-}

Copied: grml-zsh-config/repos/extra-any/PKGBUILD (from rev 241921, 
grml-zsh-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 21:02:17 UTC (rev 241922)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=grml-zsh-config
+pkgver=0.12.2
+pkgrel=1
+pkgdesc=grml's zsh setup
+arch=('any')
+url='http://grml.org/zsh/'
+license=('GPL2')
+provides=('grmlzshrc')
+depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
+makedepends=('txt2tags')
+source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
+sha256sums=('0ffe06eac385fca3ec70c0cb2f19c2886bc6d87e77b8959def48bb8b87bf3492')
+
+build() {
+   cd ${srcdir}/grml-etc-core-${pkgver}/doc
+   make
+}
+
+package() {
+   cd ${srcdir}/grml-etc-core-${pkgver}
+   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
+   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
+   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
+
+   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
+   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
+}


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

2015-07-09 Thread Balló György
Date: Thursday, July 9, 2015 @ 18:20:17
  Author: bgyorgy
Revision: 136594

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

Added:
  xarchiver/repos/community-i686/PKGBUILD
(from rev 136593, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/community-i686/add-mime-types.patch
(from rev 136593, xarchiver/trunk/add-mime-types.patch)
  xarchiver/repos/community-i686/fix-icon-names.patch
(from rev 136593, xarchiver/trunk/fix-icon-names.patch)
  xarchiver/repos/community-i686/fix-password-protected.patch
(from rev 136593, xarchiver/trunk/fix-password-protected.patch)
  xarchiver/repos/community-i686/fix-rpm-support.patch
(from rev 136593, xarchiver/trunk/fix-rpm-support.patch)
  xarchiver/repos/community-i686/gtk3-port.patch
(from rev 136593, xarchiver/trunk/gtk3-port.patch)
  xarchiver/repos/community-i686/no-xfce.patch
(from rev 136593, xarchiver/trunk/no-xfce.patch)
  xarchiver/repos/community-i686/xarchiver.install
(from rev 136593, xarchiver/trunk/xarchiver.install)
  xarchiver/repos/community-x86_64/PKGBUILD
(from rev 136593, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/community-x86_64/add-mime-types.patch
(from rev 136593, xarchiver/trunk/add-mime-types.patch)
  xarchiver/repos/community-x86_64/fix-icon-names.patch
(from rev 136593, xarchiver/trunk/fix-icon-names.patch)
  xarchiver/repos/community-x86_64/fix-password-protected.patch
(from rev 136593, xarchiver/trunk/fix-password-protected.patch)
  xarchiver/repos/community-x86_64/fix-rpm-support.patch
(from rev 136593, xarchiver/trunk/fix-rpm-support.patch)
  xarchiver/repos/community-x86_64/gtk3-port.patch
(from rev 136593, xarchiver/trunk/gtk3-port.patch)
  xarchiver/repos/community-x86_64/no-xfce.patch
(from rev 136593, xarchiver/trunk/no-xfce.patch)
  xarchiver/repos/community-x86_64/xarchiver.install
(from rev 136593, xarchiver/trunk/xarchiver.install)
Deleted:
  xarchiver/repos/community-i686/PKGBUILD
  xarchiver/repos/community-i686/add-mime-types.patch
  xarchiver/repos/community-i686/fix-password-protected.patch
  xarchiver/repos/community-i686/fix-rpm-support.patch
  xarchiver/repos/community-i686/xarchiver.install
  xarchiver/repos/community-x86_64/PKGBUILD
  xarchiver/repos/community-x86_64/add-mime-types.patch
  xarchiver/repos/community-x86_64/fix-password-protected.patch
  xarchiver/repos/community-x86_64/fix-rpm-support.patch
  xarchiver/repos/community-x86_64/xarchiver.install

---+
 /PKGBUILD |  180 +++
 /add-mime-types.patch |   34 
 /fix-password-protected.patch |   84 +
 /fix-rpm-support.patch|  172 +++
 /xarchiver.install|   24 
 community-i686/PKGBUILD   |   54 
 community-i686/add-mime-types.patch   |   17 
 community-i686/fix-icon-names.patch   |   87 +
 community-i686/fix-password-protected.patch   |   42 
 community-i686/fix-rpm-support.patch  |   86 -
 community-i686/gtk3-port.patch| 1313 
 community-i686/no-xfce.patch  |   93 +
 community-i686/xarchiver.install  |   12 
 community-x86_64/PKGBUILD |   54 
 community-x86_64/add-mime-types.patch |   17 
 community-x86_64/fix-icon-names.patch |   87 +
 community-x86_64/fix-password-protected.patch |   42 
 community-x86_64/fix-rpm-support.patch|   86 -
 community-x86_64/gtk3-port.patch  | 1313 
 community-x86_64/no-xfce.patch|   93 +
 community-x86_64/xarchiver.install|   12 
 21 files changed, 3480 insertions(+), 422 deletions(-)

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


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

2015-07-09 Thread Jakob Gruber
Date: Thursday, July 9, 2015 @ 18:49:41
  Author: schuay
Revision: 136595

mac-3.99u4b5-7

Modified:
  mac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 16:20:17 UTC (rev 136594)
+++ PKGBUILD2015-07-09 16:49:41 UTC (rev 136595)
@@ -4,7 +4,7 @@
 pkgname=mac
 pkgver='3.99u4b5'
 _pkgver='3.99-u4-b5-s7'
-pkgrel=6
+pkgrel=7
 pkgdesc='APE codec and decompressor'
 arch=('i686' 'x86_64')
 url='http://etree.org/shnutils/shntool/'
@@ -18,8 +18,8 @@
 build() {
   cd ${srcdir}/${pkgname}-${_pkgver}
 
-  ./configure --prefix=/usr --enable-assembly=yes 
-  make
+  CXXFLAGS=-DSHNTOOL ./configure --prefix=/usr --enable-assembly=yes 
+  CXXFLAGS=-DSHNTOOL make
 }
 package() {
   cd ${srcdir}/${pkgname}-${_pkgver}


[arch-commits] Commit in mac/repos/community-i686 (PKGBUILD PKGBUILD)

2015-07-09 Thread Jakob Gruber
Date: Thursday, July 9, 2015 @ 18:49:50
  Author: schuay
Revision: 136596

archrelease: copy trunk to community-i686

Added:
  mac/repos/community-i686/PKGBUILD
(from rev 136595, mac/trunk/PKGBUILD)
Deleted:
  mac/repos/community-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 16:49:41 UTC (rev 136595)
+++ PKGBUILD2015-07-09 16:49:50 UTC (rev 136596)
@@ -1,30 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-# Contributor: stonecrest stonecrest[at]gmail[dot]com
-
-pkgname=mac
-pkgver='3.99u4b5'
-_pkgver='3.99-u4-b5-s7'
-pkgrel=6
-pkgdesc='APE codec and decompressor'
-arch=('i686' 'x86_64')
-url='http://etree.org/shnutils/shntool/'
-license=('custom')
-depends=('gcc-libs')
-makedepends=('yasm')
-_baseurl='http://etree.org/shnutils/shntool/support/formats/ape/unix'
-source=(${_baseurl}/${_pkgver}/${pkgname}-${_pkgver}.tar.gz)
-md5sums=('74df3c96476636387ddd12255b03bebe')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-
-  ./configure --prefix=/usr --enable-assembly=yes 
-  make
-}
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -Dm644 src/License.htm \
-  ${pkgdir}/usr/share/licenses/${pkgname}/license.htm
-}

Copied: mac/repos/community-i686/PKGBUILD (from rev 136595, mac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 16:49:50 UTC (rev 136596)
@@ -0,0 +1,30 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: stonecrest stonecrest[at]gmail[dot]com
+
+pkgname=mac
+pkgver='3.99u4b5'
+_pkgver='3.99-u4-b5-s7'
+pkgrel=7
+pkgdesc='APE codec and decompressor'
+arch=('i686' 'x86_64')
+url='http://etree.org/shnutils/shntool/'
+license=('custom')
+depends=('gcc-libs')
+makedepends=('yasm')
+_baseurl='http://etree.org/shnutils/shntool/support/formats/ape/unix'
+source=(${_baseurl}/${_pkgver}/${pkgname}-${_pkgver}.tar.gz)
+md5sums=('74df3c96476636387ddd12255b03bebe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  CXXFLAGS=-DSHNTOOL ./configure --prefix=/usr --enable-assembly=yes 
+  CXXFLAGS=-DSHNTOOL make
+}
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -Dm644 src/License.htm \
+  ${pkgdir}/usr/share/licenses/${pkgname}/license.htm
+}


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

2015-07-09 Thread Jakob Gruber
Date: Thursday, July 9, 2015 @ 18:49:55
  Author: schuay
Revision: 136597

archrelease: copy trunk to community-x86_64

Added:
  mac/repos/community-x86_64/PKGBUILD
(from rev 136596, mac/trunk/PKGBUILD)
Deleted:
  mac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 16:49:50 UTC (rev 136596)
+++ PKGBUILD2015-07-09 16:49:55 UTC (rev 136597)
@@ -1,30 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-# Contributor: stonecrest stonecrest[at]gmail[dot]com
-
-pkgname=mac
-pkgver='3.99u4b5'
-_pkgver='3.99-u4-b5-s7'
-pkgrel=6
-pkgdesc='APE codec and decompressor'
-arch=('i686' 'x86_64')
-url='http://etree.org/shnutils/shntool/'
-license=('custom')
-depends=('gcc-libs')
-makedepends=('yasm')
-_baseurl='http://etree.org/shnutils/shntool/support/formats/ape/unix'
-source=(${_baseurl}/${_pkgver}/${pkgname}-${_pkgver}.tar.gz)
-md5sums=('74df3c96476636387ddd12255b03bebe')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-
-  ./configure --prefix=/usr --enable-assembly=yes 
-  make
-}
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -Dm644 src/License.htm \
-  ${pkgdir}/usr/share/licenses/${pkgname}/license.htm
-}

Copied: mac/repos/community-x86_64/PKGBUILD (from rev 136596, 
mac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 16:49:55 UTC (rev 136597)
@@ -0,0 +1,30 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: stonecrest stonecrest[at]gmail[dot]com
+
+pkgname=mac
+pkgver='3.99u4b5'
+_pkgver='3.99-u4-b5-s7'
+pkgrel=7
+pkgdesc='APE codec and decompressor'
+arch=('i686' 'x86_64')
+url='http://etree.org/shnutils/shntool/'
+license=('custom')
+depends=('gcc-libs')
+makedepends=('yasm')
+_baseurl='http://etree.org/shnutils/shntool/support/formats/ape/unix'
+source=(${_baseurl}/${_pkgver}/${pkgname}-${_pkgver}.tar.gz)
+md5sums=('74df3c96476636387ddd12255b03bebe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  CXXFLAGS=-DSHNTOOL ./configure --prefix=/usr --enable-assembly=yes 
+  CXXFLAGS=-DSHNTOOL make
+}
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -Dm644 src/License.htm \
+  ${pkgdir}/usr/share/licenses/${pkgname}/license.htm
+}


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

2015-07-09 Thread Antonio Rojas
Date: Friday, July 10, 2015 @ 00:48:24
  Author: arojas
Revision: 241925

Update to 2.9.6

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 21:03:22 UTC (rev 241924)
+++ PKGBUILD2015-07-09 22:48:24 UTC (rev 241925)
@@ -20,8 +20,8 @@
  'calligra-sheets'
  'calligra-stage'
  'calligra-words')
-pkgver=2.9.5
-pkgrel=3
+pkgver=2.9.6
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
@@ -32,7 +32,7 @@
  'libetonyek' 'libpqxx' 'libspnav' 'postgresql') # 'libqgit2'
 groups=('calligra')
 
source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.xz;
 'libwps-0.4.patch')
-md5sums=('9469c373206ec0d98d80efe8d722930d'
+md5sums=('a576450e8c0ea63b7dff50681a236d61'
  '6ea15f8b3938838d89ea0aa08921afd1')
 
 prepare() {


[arch-commits] Commit in calligra/repos (64 files)

2015-07-09 Thread Antonio Rojas
Date: Friday, July 10, 2015 @ 00:53:47
  Author: arojas
Revision: 241926

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

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 241925, calligra/trunk/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 241925, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-extras.install
(from rev 241925, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 241925, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 241925, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-i686/calligra-gemini.install
(from rev 241925, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 241925, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 241925, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 241925, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 241925, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-i686/calligra-plugins.install
(from rev 241925, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 241925, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 241925, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 241925, calligra/trunk/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 241925, calligra/trunk/calligra.install)
  calligra/repos/extra-i686/libwps-0.4.patch
(from rev 241925, calligra/trunk/libwps-0.4.patch)
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 241925, calligra/trunk/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 241925, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-extras.install
(from rev 241925, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 241925, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 241925, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-gemini.install
(from rev 241925, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 241925, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 241925, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 241925, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 241925, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-plugins.install
(from rev 241925, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 241925, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 241925, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 241925, calligra/trunk/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 241925, calligra/trunk/calligra.install)
  calligra/repos/extra-x86_64/libwps-0.4.patch
(from rev 241925, calligra/trunk/libwps-0.4.patch)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-extras.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-gemini.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-plugins.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install
  calligra/repos/extra-i686/libwps-0.4.patch
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-extras.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-gemini.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  

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

2015-07-09 Thread Antonio Rojas
Date: Friday, July 10, 2015 @ 01:03:21
  Author: arojas
Revision: 241927

Update to 2.9.6

Modified:
  calligra-l10n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 22:53:47 UTC (rev 241926)
+++ PKGBUILD2015-07-09 23:03:21 UTC (rev 241927)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgbase=calligra-l10n
-pkgver=2.9.5
+pkgver=2.9.6
 pkgrel=1
 pkgdesc=Localization for Calligra
 arch=('any')
@@ -57,34 +57,34 @@
   }
 done
 
-md5sums=('f5cbe470cbeed07e720cf9a5449e9ee4'
- 'ad959875d7682ca1ed9b0e52e4bb2187'
- 'cee50520bfacc552a1dec77aa7071be2'
- '4fc7b21e03f1b8ead719b760f74cf958'
- '5ba624e0e3d520cf70fff218d7418f97'
- '2c9bcbdb02437f238d1ae05fe54a769c'
- '45eaf444c0c6274ba8daa35977d3c272'
- '3579282b74438f6e05ac0dce7fb645c9'
- '11936cbbaf17beb526ddebbfe855af46'
- '608ca8908074d36c12bf96f0e115f734'
- 'dae64fb4268f8d32d32204e87ee0d632'
- 'ddbfe294b28ad9ec36cd8a6532cd5dd1'
- 'e96da4cb7453befebfe0820241ca8573'
- 'd4a207fa1c93f8cc572ee4599b27c672'
- '6276bfafa16a6f6601b2d509acb61711'
- 'add12062068f73231ba11fe70aa3e9c7'
- 'd158152c17d0c2bf32c3fc67e593e85e'
- 'b5e8f3181ee6c1f2d18a444db377debd'
- '38a937862107084556ea787f6db9f8be'
- 'da8f58f7b738c6aaf0a98819c52062b4'
- 'b5e67f03fdb78c91e9f6b5b0944626bf'
- '7b69efada2e36e31d20d8961de233438'
- '063b549bedbd8585692b360e92883899'
- 'd8af0656cfe4c2a9b86413540bc3a400'
- '8cdfb60763f95c936c62dd644f6ab129'
- '2a9cb06857094d8c4a9902dd9a9901b9'
- 'c88353d6b19bd32826fe3d909729387d'
- '5ffbbe7d5cfd215d859692620266e095')
+md5sums=('15d8651b6175d198f7a9f3e1c90ae8fd'
+ '0befb2ddfc294427e8e35ffee290a956'
+ 'fc15c2255d182eb869fc28a1603efa04'
+ '58a1b0b2d524b270457096803f2bded5'
+ '2a0583e77368e5feee5c6bed3c2de89f'
+ '715a52f56c41b776acf870bcf0df3591'
+ 'faf4f6e78684e57865106822148b8c3b'
+ '28eec40b0065f056de5d44bc06c229c1'
+ '7d8f994234911e475d81f667cca9dd4a'
+ 'f39485124287adc007dab3642b57eb9a'
+ '0eeab69fef10dae98c921c5ad127812c'
+ '6491144954bcdb75c3438ebf47797220'
+ '9e0c1531241f0774c70c9dcd0836abb8'
+ 'cd48ca919ffb1ee0152325eec19f4706'
+ '215fc821eac11759802c68c2b385f9b6'
+ 'b8f729b6ebba19cb6a796513a21d6ba0'
+ '6b40753e50a400200182250f056bee56'
+ 'ef9c45f9dfb25307b5f2cbbd46975ab6'
+ '41d4a7b398cd4fe1dd63cf898c997501'
+ 'fbc4dbdce3a80d6ae5582c42272fcad6'
+ 'a874dd9c4edb591a4f84fe00c120bab0'
+ '446a54dfbb7b45712fc2b8981e127926'
+ '14d76da4021541686dd5d793f70d9029'
+ '1a915d0f6df72c8a1fde8e34d658b6e4'
+ '51dbdd45beda57deae4b30f2b0d49fe4'
+ '8c81a876eb06a89c93094b5d392f52c0'
+ 'a4aa2f21f565eea3e31f84e9c2d9b8f9'
+ '324cb2be2ba0b9e1e1aa69e3315da683')
 
 build() {
   for _lang in ${_languages[@]}; do


[arch-commits] Commit in calligra-l10n/repos/extra-any (PKGBUILD PKGBUILD)

2015-07-09 Thread Antonio Rojas
Date: Friday, July 10, 2015 @ 01:04:12
  Author: arojas
Revision: 241928

archrelease: copy trunk to extra-any

Added:
  calligra-l10n/repos/extra-any/PKGBUILD
(from rev 241927, calligra-l10n/trunk/PKGBUILD)
Deleted:
  calligra-l10n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  214 ++---
 1 file changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-09 23:03:21 UTC (rev 241927)
+++ PKGBUILD2015-07-09 23:04:12 UTC (rev 241928)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgbase=calligra-l10n
-pkgver=2.9.5
-pkgrel=1
-pkgdesc=Localization for Calligra
-arch=('any')
-url='http://www.calligra-suite.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4' 'kdelibs')
-options=('docs')
-
-_languages=(
-  'bs Bosnian'
-  'ca Catalan'
-  'ca@valencia Catalan (Valencian)'
-  'cs Czech'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en_GB  British English'
-  'es Spanish'
-  'et Estonian'
-  'fi Finnish'
-  'fr French'
-  'gl Galician'
-  'hu Hungarian'
-  'it Italian'
-  'ja Japanese'
-  'kk Kazakh'
-  'nb Norwegian Bokmal'
-  'nl Dutch'
-  'pl Polish'
-  'pt Portuguese'
-  'pt_BR  Brazilian Portuguese'
-  'ru Russian'
-  'sk Slovak'
-  'sv Swedish'
-  'uk Ukrainian'
-  'zh_CN  Chinese Simplified'
-  'zh_TW  Chinese Traditional'
-)
-
-pkgname=()
-source=()
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=calligra-l10n-${_locale,,}
-  
-  pkgname+=($_pkgname)
-  
source+=(http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-$_locale-${pkgver}.tar.xz;)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-md5sums=('f5cbe470cbeed07e720cf9a5449e9ee4'
- 'ad959875d7682ca1ed9b0e52e4bb2187'
- 'cee50520bfacc552a1dec77aa7071be2'
- '4fc7b21e03f1b8ead719b760f74cf958'
- '5ba624e0e3d520cf70fff218d7418f97'
- '2c9bcbdb02437f238d1ae05fe54a769c'
- '45eaf444c0c6274ba8daa35977d3c272'
- '3579282b74438f6e05ac0dce7fb645c9'
- '11936cbbaf17beb526ddebbfe855af46'
- '608ca8908074d36c12bf96f0e115f734'
- 'dae64fb4268f8d32d32204e87ee0d632'
- 'ddbfe294b28ad9ec36cd8a6532cd5dd1'
- 'e96da4cb7453befebfe0820241ca8573'
- 'd4a207fa1c93f8cc572ee4599b27c672'
- '6276bfafa16a6f6601b2d509acb61711'
- 'add12062068f73231ba11fe70aa3e9c7'
- 'd158152c17d0c2bf32c3fc67e593e85e'
- 'b5e8f3181ee6c1f2d18a444db377debd'
- '38a937862107084556ea787f6db9f8be'
- 'da8f58f7b738c6aaf0a98819c52062b4'
- 'b5e67f03fdb78c91e9f6b5b0944626bf'
- '7b69efada2e36e31d20d8961de233438'
- '063b549bedbd8585692b360e92883899'
- 'd8af0656cfe4c2a9b86413540bc3a400'
- '8cdfb60763f95c936c62dd644f6ab129'
- '2a9cb06857094d8c4a9902dd9a9901b9'
- 'c88353d6b19bd32826fe3d909729387d'
- '5ffbbe7d5cfd215d859692620266e095')
-
-build() {
-  for _lang in ${_languages[@]}; do
-_locale=${_lang%% *}
-
-mkdir -p build/$_locale
-cd build/$_locale
-cmake $srcdir/$pkgbase-$_locale-$pkgver \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr
-make
-cd ../..
-  done
-}
-
-_package() {
-  pkgdesc=$2 localization for Calligra
-  cd build/$1
-  make DESTDIR=$pkgdir install
-}

Copied: calligra-l10n/repos/extra-any/PKGBUILD (from rev 241927, 
calligra-l10n/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-09 23:04:12 UTC (rev 241928)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgbase=calligra-l10n
+pkgver=2.9.6
+pkgrel=1
+pkgdesc=Localization for Calligra
+arch=('any')
+url='http://www.calligra-suite.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'kdelibs')
+options=('docs')
+
+_languages=(
+  'bs Bosnian'
+  'ca Catalan'
+  'ca@valencia Catalan (Valencian)'
+  'cs Czech'
+  'da Danish'
+  'de German'
+  'el Greek'
+  'en_GB  British English'
+  'es Spanish'
+  'et Estonian'
+  'fi Finnish'
+  'fr French'
+  'gl Galician'
+  'hu Hungarian'
+  'it Italian'
+  'ja Japanese'
+  'kk Kazakh'
+  'nb Norwegian Bokmal'
+  'nl Dutch'
+  'pl Polish'
+  'pt Portuguese'
+  'pt_BR  Brazilian Portuguese'
+  'ru Russian'
+  'sk Slovak'
+  'sv Swedish'
+  'uk Ukrainian'
+  'zh_CN  Chinese Simplified'
+  'zh_TW  Chinese Traditional'
+)
+
+pkgname=()
+source=()
+
+for _lang in ${_languages[@]}; do
+  _locale=${_lang%% *}
+  _pkgname=calligra-l10n-${_locale,,}
+  
+  

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

2015-07-09 Thread Kyle Keen
Date: Friday, July 10, 2015 @ 00:01:12
  Author: kkeen
Revision: 136602

upgpkg: python-pillow 2.9.0-1

Modified:
  python-pillow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-09 17:16:17 UTC (rev 136601)
+++ PKGBUILD2015-07-09 22:01:12 UTC (rev 136602)
@@ -4,10 +4,10 @@
 
 pkgbase=python-pillow
 pkgname=(python-pillow python2-pillow)
-pkgver=2.8.2
+pkgver=2.9.0
+pkgrel=1
 # consider splitting out sane if this gets weird enough
 _sanever=2.8.1
-pkgrel=1
 _appname=Pillow
 _py2basever=2.7
 _py3basever=3.4m
@@ -18,7 +18,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
 
source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;
 
Sane-$_sanever.tar.gz::https://github.com/python-pillow/Sane/archive/v$_sanever.tar.gz;)
-md5sums=('8a89e3fcb04e80ad029ba18f47e118e5'
+md5sums=('46f1729ece27981d54ec543ad5b37d14'
  'ec396584961bad337e93dec11a0122e3')
 
 prepare() {


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

2015-07-09 Thread Kyle Keen
Date: Friday, July 10, 2015 @ 00:05:39
  Author: kkeen
Revision: 136603

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

Added:
  python-pillow/repos/community-i686/PKGBUILD
(from rev 136602, python-pillow/trunk/PKGBUILD)
  python-pillow/repos/community-x86_64/PKGBUILD
(from rev 136602, python-pillow/trunk/PKGBUILD)
Deleted:
  python-pillow/repos/community-i686/PKGBUILD
  python-pillow/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-09 22:01:12 UTC (rev 136602)
+++ community-i686/PKGBUILD 2015-07-09 22:05:39 UTC (rev 136603)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: minder
-
-pkgbase=python-pillow
-pkgname=(python-pillow python2-pillow)
-pkgver=2.8.2
-# consider splitting out sane if this gets weird enough
-_sanever=2.8.1
-pkgrel=1
-_appname=Pillow
-_py2basever=2.7
-_py3basever=3.4m
-pkgdesc=Python Imaging Library (PIL) fork. Python3 version.
-arch=('i686' 'x86_64')
-url=http://python-pillow.github.io/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
-source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;
-
Sane-$_sanever.tar.gz::https://github.com/python-pillow/Sane/archive/v$_sanever.tar.gz;)
-md5sums=('8a89e3fcb04e80ad029ba18f47e118e5'
- 'ec396584961bad337e93dec11a0122e3')
-
-prepare() {
-  cd $srcdir
-  # allow sane to build
-  sed -i s|os.path.join|'../libImaging', | $srcdir/Sane-$_sanever/setup.py
-  cp -r $srcdir/Sane-$_sanever $srcdir/$_appname-$pkgver/Sane
-  # py2 and py3
-  cp -r $srcdir/$_appname-$pkgver $srcdir/${_appname}2-$pkgver
-}  
-
-package_python-pillow() {
-  depends=('python' 'lcms' 'libwebp')
-  optdepends=('tk: for the ImageTK module'
-  'sane: for the Sane module'
-  'python-pyqt4: for the ImageQt module')
-  cd $srcdir/$_appname-$pkgver
-  python3 setup.py install --root=$pkgdir/ --optimize=0
-  pushd Sane
-python3 setup.py install --root=$pkgdir/ --optimize=0
-  popd
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  install -dm755 $pkgdir/usr/include/python$_py3basever/
-  install -m644 -t $pkgdir/usr/include/python$_py3basever/ libImaging/*.h
-
-  # clean up bins
-  cd $pkgdir/usr/bin
-  for f in *.py; do
-mv $f ${f%.py}
-  done
-}
-
-package_python2-pillow() {
-  pkgdesc=Python Imaging Library (PIL) fork. Python2 version.
-  depends=('python2' 'lcms' 'libwebp')
-  optdepends=('tk: for the ImageTK module'
-  'sane: for the Sane module'
-  'python2-pyqt4: for the ImageQt module')
-  provides=('python-imaging' 'python2-imaging')
-  conflicts=('python-imaging' 'python2-imaging')
-  cd $srcdir/${_appname}2-$pkgver
-  sed -i 's|python$|python2|' PIL/OleFileIO.py
-  python2 setup.py install --root=$pkgdir/ --optimize=0
-  pushd Sane
-python2 setup.py install --root=$pkgdir/ --optimize=0
-  popd
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  install -dm755 $pkgdir/usr/include/python$_py2basever/
-  install -m644 -t $pkgdir/usr/include/python$_py2basever/ libImaging/*.h
-
-  # clean up bins
-  cd $pkgdir/usr/bin
-  for f in *.py; do
-mv $f ${f%.py}2
-  done
-}
-

Copied: python-pillow/repos/community-i686/PKGBUILD (from rev 136602, 
python-pillow/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-09 22:05:39 UTC (rev 136603)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: minder
+
+pkgbase=python-pillow
+pkgname=(python-pillow python2-pillow)
+pkgver=2.9.0
+pkgrel=1
+# consider splitting out sane if this gets weird enough
+_sanever=2.8.1
+_appname=Pillow
+_py2basever=2.7
+_py3basever=3.4m
+pkgdesc=Python Imaging Library (PIL) fork. Python3 version.
+arch=('i686' 'x86_64')
+url=http://python-pillow.github.io/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
+source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;
+
Sane-$_sanever.tar.gz::https://github.com/python-pillow/Sane/archive/v$_sanever.tar.gz;)
+md5sums=('46f1729ece27981d54ec543ad5b37d14'
+ 'ec396584961bad337e93dec11a0122e3')
+
+prepare() {
+  cd $srcdir
+  # allow sane to build
+  sed -i s|os.path.join|'../libImaging', | $srcdir/Sane-$_sanever/setup.py
+  cp -r $srcdir/Sane-$_sanever $srcdir/$_appname-$pkgver/Sane
+  # py2 and py3
+  cp -r $srcdir/$_appname-$pkgver