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

2014-07-23 Thread Daniel Micay
Date: Wednesday, July 23, 2014 @ 08:29:41
  Author: thestinger
Revision: 116141

archrelease: copy trunk to community-any

Added:
  hardening-wrapper/repos/community-any/PKGBUILD
(from rev 116140, hardening-wrapper/trunk/PKGBUILD)
  hardening-wrapper/repos/community-any/cc-wrapper.sh
(from rev 116140, hardening-wrapper/trunk/cc-wrapper.sh)
  hardening-wrapper/repos/community-any/path.sh
(from rev 116140, hardening-wrapper/trunk/path.sh)
Deleted:
  hardening-wrapper/repos/community-any/PKGBUILD
  hardening-wrapper/repos/community-any/cc-wrapper.sh
  hardening-wrapper/repos/community-any/path.sh

---+
 PKGBUILD  |   54 +++---
 cc-wrapper.sh |  208 
 path.sh   |2 
 3 files changed, 132 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 06:29:17 UTC (rev 116140)
+++ PKGBUILD2014-07-23 06:29:41 UTC (rev 116141)
@@ -1,27 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=hardening-wrapper
-pkgver=2
-pkgrel=3
-pkgdesc='Wrapper script for building hardened executables by default'
-arch=(any)
-url='https://archlinux.org/'
-license=('GPL')
-depends=(bash)
-source=(cc-wrapper.sh path.sh)
-sha1sums=('c2f1140d8fce9aa21c60bbec7f8cd59e95704551'
-  '1e5f6d9931f01b26bb4b6fbb839e21d34d534cdc')
-
-package() {
-  install -Dm644 path.sh $pkgdir/etc/profile.d/hardening-wrapper.sh
-
-  mkdir -p $pkgdir/usr/lib/hardening-wrapper/bin
-  install -m755 cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c89
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c99
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/cc
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c++
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/clang
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/clang++
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/gcc
-  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/g++
-}

Copied: hardening-wrapper/repos/community-any/PKGBUILD (from rev 116140, 
hardening-wrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 06:29:41 UTC (rev 116141)
@@ -0,0 +1,27 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=hardening-wrapper
+pkgver=2
+pkgrel=4
+pkgdesc='Wrapper script for building hardened executables by default'
+arch=(any)
+url='https://archlinux.org/'
+license=('GPL')
+depends=(bash)
+source=(cc-wrapper.sh path.sh)
+sha1sums=('41ed86439513a9be2cd4a186e419d70f4d362b0c'
+  '1e5f6d9931f01b26bb4b6fbb839e21d34d534cdc')
+
+package() {
+  install -Dm644 path.sh $pkgdir/etc/profile.d/hardening-wrapper.sh
+
+  mkdir -p $pkgdir/usr/lib/hardening-wrapper/bin
+  install -m755 cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c89
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c99
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/cc
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/c++
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/clang
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/clang++
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/gcc
+  ln -s ../cc-wrapper.sh $pkgdir/usr/lib/hardening-wrapper/bin/g++
+}

Deleted: cc-wrapper.sh
===
--- cc-wrapper.sh   2014-07-23 06:29:17 UTC (rev 116140)
+++ cc-wrapper.sh   2014-07-23 06:29:41 UTC (rev 116141)
@@ -1,104 +0,0 @@
-#!/bin/bash
-
-set -o nounset
-
-force_bindnow=${HARDENING_BINDNOW:-1}
-force_fPIE=${HARDENING_PIE:-1}
-force_fortify=${HARDENING_FORTIFY:-2}
-force_pie=${HARDENING_PIE:-1}
-force_relro=${HARDENING_RELRO:-1}
-force_stack_check=${HARDENING_STACK_CHECK:-0}
-force_stack_protector=${HARDENING_STACK_PROTECTOR:-2}
-
-error() {
-echo $1
-exit 1
-}
-
-linking=1
-optimizing=0
-
-for opt; do
-  case $opt in
-
-fno-PIC|-fno-pic|-fno-PIE|-fno-pie|-nopie|-static|--static|-shared|--shared|-D__KERNEL__|-nostdlib|-nostartfiles)
-  force_fPIE=0
-  force_pie=0
-  ;;
--fPIC|-fpic|-fPIE|-fpie)
-  force_fPIE=0
-  ;;
--c)
-  linking=0
-  ;;
--nostdlib|-ffreestanding)
-  force_stack_protector=0
-  ;;
--D_FORTIFY_SOURCE*)
-  force_fortify=0
-  ;;
--O0)
-  optimizing=0
-  ;;
--O*)
-  optimizing=1
-  ;;
-  esac
-done
-
-arguments=()
-
-case $force_bindnow in
-  0) ;;
-  1) (( linking ))  arguments+=(-Wl,-z,now) ;;
-  *) error 'invalid value for HARDENING_BINDNOW' ;;
-esac
-
-case $force_fPIE in
-  0) ;;
-  1) arguments+=(-fPIE) ;;
-  *) error 'invalid value for 

[arch-commits] Commit in hardening-wrapper/trunk (PKGBUILD cc-wrapper.sh)

2014-07-23 Thread Daniel Micay
Date: Wednesday, July 23, 2014 @ 08:29:17
  Author: thestinger
Revision: 116140

upgpkg: hardening-wrapper 2-4

Modified:
  hardening-wrapper/trunk/PKGBUILD
  hardening-wrapper/trunk/cc-wrapper.sh

---+
 PKGBUILD  |4 ++--
 cc-wrapper.sh |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 05:47:43 UTC (rev 116139)
+++ PKGBUILD2014-07-23 06:29:17 UTC (rev 116140)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Micay danielmi...@gmail.com
 pkgname=hardening-wrapper
 pkgver=2
-pkgrel=3
+pkgrel=4
 pkgdesc='Wrapper script for building hardened executables by default'
 arch=(any)
 url='https://archlinux.org/'
@@ -8,7 +8,7 @@
 license=('GPL')
 depends=(bash)
 source=(cc-wrapper.sh path.sh)
-sha1sums=('c2f1140d8fce9aa21c60bbec7f8cd59e95704551'
+sha1sums=('41ed86439513a9be2cd4a186e419d70f4d362b0c'
   '1e5f6d9931f01b26bb4b6fbb839e21d34d534cdc')
 
 package() {

Modified: cc-wrapper.sh
===
--- cc-wrapper.sh   2014-07-23 05:47:43 UTC (rev 116139)
+++ cc-wrapper.sh   2014-07-23 06:29:17 UTC (rev 116140)
@@ -11,8 +11,8 @@
 force_stack_protector=${HARDENING_STACK_PROTECTOR:-2}
 
 error() {
-echo $1
-exit 1
+  echo $1 2
+  exit 1
 }
 
 linking=1



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:08:43
  Author: fyan
Revision: 116142

addpkg: perl-proc-processtable 0.50-3

Added:
  perl-proc-processtable/
  perl-proc-processtable/repos/
  perl-proc-processtable/trunk/
  perl-proc-processtable/trunk/PKGBUILD

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

Added: perl-proc-processtable/trunk/PKGBUILD
===
--- perl-proc-processtable/trunk/PKGBUILD   (rev 0)
+++ perl-proc-processtable/trunk/PKGBUILD   2014-07-23 09:08:43 UTC (rev 
116142)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=perl-proc-processtable
+pkgver=0.50
+pkgrel=3
+pkgdesc=Provides a consistent interface to process table information.
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Proc-ProcessTable/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-proc-killall' 'perl-proc-killfam' 
'perl-proc-processtable-process')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/J/JW/JWB/Proc-ProcessTable-$pkgver.tar.gz;)
+md5sums=('3b21edabad48989c44d784f2059f3837')
+
+build() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}


Property changes on: perl-proc-processtable/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-proc-processtable/repos (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:10:16
  Author: fyan
Revision: 116143

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

Added:
  perl-proc-processtable/repos/community-i686/
  perl-proc-processtable/repos/community-i686/PKGBUILD
(from rev 116142, perl-proc-processtable/trunk/PKGBUILD)
  perl-proc-processtable/repos/community-x86_64/
  perl-proc-processtable/repos/community-x86_64/PKGBUILD
(from rev 116142, perl-proc-processtable/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   35 +++
 community-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: perl-proc-processtable/repos/community-i686/PKGBUILD (from rev 116142, 
perl-proc-processtable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 09:10:16 UTC (rev 116143)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=perl-proc-processtable
+pkgver=0.50
+pkgrel=3
+pkgdesc=Provides a consistent interface to process table information.
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Proc-ProcessTable/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-proc-killall' 'perl-proc-killfam' 
'perl-proc-processtable-process')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/J/JW/JWB/Proc-ProcessTable-$pkgver.tar.gz;)
+md5sums=('3b21edabad48989c44d784f2059f3837')
+
+build() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}

Copied: perl-proc-processtable/repos/community-x86_64/PKGBUILD (from rev 
116142, perl-proc-processtable/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 09:10:16 UTC (rev 116143)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=perl-proc-processtable
+pkgver=0.50
+pkgrel=3
+pkgdesc=Provides a consistent interface to process table information.
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Proc-ProcessTable/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-proc-killall' 'perl-proc-killfam' 
'perl-proc-processtable-process')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/J/JW/JWB/Proc-ProcessTable-$pkgver.tar.gz;)
+md5sums=('3b21edabad48989c44d784f2059f3837')
+
+build() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Proc-ProcessTable-$pkgver
+
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:15:09
  Author: fyan
Revision: 116144

addpkg: libxml-perl 0.08-5

Added:
  libxml-perl/
  libxml-perl/repos/
  libxml-perl/trunk/
  libxml-perl/trunk/PKGBUILD

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

Added: libxml-perl/trunk/PKGBUILD
===
--- libxml-perl/trunk/PKGBUILD  (rev 0)
+++ libxml-perl/trunk/PKGBUILD  2014-07-23 09:15:09 UTC (rev 116144)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Limao Luo luolimao+...@gmail.com
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: François Charette firmi...@gmx.net
+
+pkgname=libxml-perl
+pkgver=0.08
+pkgrel=5
+pkgdesc=Perl library for working with XML
+arch=('any')
+url=http://search.cpan.org/~KMACLEOD/$pkgname;
+license=('GPL' 'PerlArtistic')
+depends=('perl-xml-parser')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/K/KM/KMACLEOD/$pkgname-$pkgver.tar.gz;)
+sha512sums=('66c1874a04b746334d4324ab37ee057c6da7fa7191dffae2900e0832dab3b2ededc5cbdc5e838c0d57c22161c9cf196ab40b62f61338d4c994bda9fa7b1a7702')
+
+build() {
+  cd $pkgname-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor PERL_MM_USE_DEFAULT=1
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test
+}
+
+package() {
+  make -C $pkgname-$pkgver/ DESTDIR=$pkgdir install
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


Property changes on: libxml-perl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:15:32
  Author: fyan
Revision: 116145

archrelease: copy trunk to community-any

Added:
  libxml-perl/repos/community-any/
  libxml-perl/repos/community-any/PKGBUILD
(from rev 116144, libxml-perl/trunk/PKGBUILD)

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

Copied: libxml-perl/repos/community-any/PKGBUILD (from rev 116144, 
libxml-perl/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 09:15:32 UTC (rev 116145)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Limao Luo luolimao+...@gmail.com
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: François Charette firmi...@gmx.net
+
+pkgname=libxml-perl
+pkgver=0.08
+pkgrel=5
+pkgdesc=Perl library for working with XML
+arch=('any')
+url=http://search.cpan.org/~KMACLEOD/$pkgname;
+license=('GPL' 'PerlArtistic')
+depends=('perl-xml-parser')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/K/KM/KMACLEOD/$pkgname-$pkgver.tar.gz;)
+sha512sums=('66c1874a04b746334d4324ab37ee057c6da7fa7191dffae2900e0832dab3b2ededc5cbdc5e838c0d57c22161c9cf196ab40b62f61338d4c994bda9fa7b1a7702')
+
+build() {
+  cd $pkgname-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor PERL_MM_USE_DEFAULT=1
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test
+}
+
+package() {
+  make -C $pkgname-$pkgver/ DESTDIR=$pkgdir install
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in (5 files)

2014-07-23 Thread Kyle Keen
Date: Wednesday, July 23, 2014 @ 11:26:07
  Author: kkeen
Revision: 116146

pkginit: polarssl 1.3.8-2

Added:
  polarssl/
  polarssl/repos/
  polarssl/trunk/
  polarssl/trunk/PKGBUILD
Modified:
  libuhd/trunk/PKGBUILD

-+
 libuhd/trunk/PKGBUILD   |3 +++
 polarssl/trunk/PKGBUILD |   33 +
 2 files changed, 36 insertions(+)

Modified: libuhd/trunk/PKGBUILD
===
--- libuhd/trunk/PKGBUILD   2014-07-23 09:15:32 UTC (rev 116145)
+++ libuhd/trunk/PKGBUILD   2014-07-23 09:26:07 UTC (rev 116146)
@@ -17,6 +17,9 @@
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
 md5sums=('0f53757cc5452ceb53baab88471a6043')
 
+# consider making a firmware package
+# http://files.ettus.com/binaries/master_images/archive/
+
 build() {
   cd $srcdir/uhd-release_$_verstring/host
   # fix for py2

Added: polarssl/trunk/PKGBUILD
===
--- polarssl/trunk/PKGBUILD (rev 0)
+++ polarssl/trunk/PKGBUILD 2014-07-23 09:26:07 UTC (rev 116146)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Mihai Militaru mihai militaru at xmpp dot ro
+# Contributor: carstene1ns arch carsten-teibes.de
+
+pkgname=polarssl
+pkgver=1.3.8
+pkgrel=2
+pkgdesc=Portable cryptographic and SSL/TLS library
+arch=('i686' 'x86_64')
+url=https://www.polarssl.org/;
+license=('GPL2')
+source=(https://polarssl.org/code/releases/polarssl-$pkgver-gpl.tgz;)
+sha1sums=('82ed8ebcf3dd53621da5395b796fc0917083691d')
+depends=('glibc')
+options=('staticlibs')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i 's|//\(#define POLARSSL_THREADING_C\)|\1|' include/polarssl/config.h
+  sed -i 's|//\(#define POLARSSL_THREADING_PTHREAD\)|\1|' 
include/polarssl/config.h
+  LDFLAGS+= -I../include  make SHARED=1 no_test
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make SHARED=1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/usr install
+}


Property changes on: polarssl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2014-07-23 Thread Kyle Keen
Date: Wednesday, July 23, 2014 @ 11:30:52
  Author: kkeen
Revision: 116147

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

Added:
  polarssl/repos/community-i686/
  polarssl/repos/community-i686/PKGBUILD
(from rev 116146, polarssl/trunk/PKGBUILD)
  polarssl/repos/community-x86_64/
  polarssl/repos/community-x86_64/PKGBUILD
(from rev 116146, polarssl/trunk/PKGBUILD)

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

Copied: polarssl/repos/community-i686/PKGBUILD (from rev 116146, 
polarssl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 09:30:52 UTC (rev 116147)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Mihai Militaru mihai militaru at xmpp dot ro
+# Contributor: carstene1ns arch carsten-teibes.de
+
+pkgname=polarssl
+pkgver=1.3.8
+pkgrel=2
+pkgdesc=Portable cryptographic and SSL/TLS library
+arch=('i686' 'x86_64')
+url=https://www.polarssl.org/;
+license=('GPL2')
+source=(https://polarssl.org/code/releases/polarssl-$pkgver-gpl.tgz;)
+sha1sums=('82ed8ebcf3dd53621da5395b796fc0917083691d')
+depends=('glibc')
+options=('staticlibs')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i 's|//\(#define POLARSSL_THREADING_C\)|\1|' include/polarssl/config.h
+  sed -i 's|//\(#define POLARSSL_THREADING_PTHREAD\)|\1|' 
include/polarssl/config.h
+  LDFLAGS+= -I../include  make SHARED=1 no_test
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make SHARED=1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/usr install
+}

Copied: polarssl/repos/community-x86_64/PKGBUILD (from rev 116146, 
polarssl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 09:30:52 UTC (rev 116147)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Mihai Militaru mihai militaru at xmpp dot ro
+# Contributor: carstene1ns arch carsten-teibes.de
+
+pkgname=polarssl
+pkgver=1.3.8
+pkgrel=2
+pkgdesc=Portable cryptographic and SSL/TLS library
+arch=('i686' 'x86_64')
+url=https://www.polarssl.org/;
+license=('GPL2')
+source=(https://polarssl.org/code/releases/polarssl-$pkgver-gpl.tgz;)
+sha1sums=('82ed8ebcf3dd53621da5395b796fc0917083691d')
+depends=('glibc')
+options=('staticlibs')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i 's|//\(#define POLARSSL_THREADING_C\)|\1|' include/polarssl/config.h
+  sed -i 's|//\(#define POLARSSL_THREADING_PTHREAD\)|\1|' 
include/polarssl/config.h
+  LDFLAGS+= -I../include  make SHARED=1 no_test
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make SHARED=1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/usr install
+}



[arch-commits] Commit in (5 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:36:01
  Author: fyan
Revision: 116148

addpkg: perl-gtk2-unique 0.05-10

Added:
  perl-gtk2-unique/
  perl-gtk2-unique/repos/
  perl-gtk2-unique/trunk/
  perl-gtk2-unique/trunk/PKGBUILD
  perl-gtk2-unique/trunk/perl-gtk2-unique.patch

+
 PKGBUILD   |   38 ++
 perl-gtk2-unique.patch |   12 
 2 files changed, 50 insertions(+)

Added: perl-gtk2-unique/trunk/PKGBUILD
===
--- perl-gtk2-unique/trunk/PKGBUILD (rev 0)
+++ perl-gtk2-unique/trunk/PKGBUILD 2014-07-23 09:36:01 UTC (rev 116148)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Brian Bidulock bidul...@openss7.org
+
+pkgname=perl-gtk2-unique
+_realname=Gtk2-Unique
+pkgver=0.05
+pkgrel=10
+pkgdesc=Perl bindings for the C library libunique
+arch=('i686' 'x86_64')
+url=https://metacpan.org/release/${_realname};
+license=('LGPL' 'PerlArtistic')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+depends=('gtk2-perl' 'libunique')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PO/POTYL/${_realname}-${pkgver}.tar.gz;
+$pkgname.patch)
+md5sums=('0beb552933b765a017588563a71af123'
+ 'f8e15e1b93e2629e1745f8e4de8524ff')
+
+build() {
+  cd $srcdir/$_realname-$pkgver
+  patch -Np1 -i $srcdir/$pkgname.patch
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/$_realname-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/$_realname-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


Property changes on: perl-gtk2-unique/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: perl-gtk2-unique/trunk/perl-gtk2-unique.patch
===
--- perl-gtk2-unique/trunk/perl-gtk2-unique.patch   
(rev 0)
+++ perl-gtk2-unique/trunk/perl-gtk2-unique.patch   2014-07-23 09:36:01 UTC 
(rev 116148)
@@ -0,0 +1,12 @@
+diff -up Gtk2-Unique-0.05/xs/UniqueMessageData.xs.orig 
Gtk2-Unique-0.05/xs/UniqueMessageData.xs
+--- Gtk2-Unique-0.05/xs/UniqueMessageData.xs.orig  2010-05-05 
09:47:45.0 -0600
 Gtk2-Unique-0.05/xs/UniqueMessageData.xs   2013-06-18 11:54:05.0 
-0600
+@@ -38,7 +38,7 @@ SV*
+ unique_message_data_get (UniqueMessageData *message_data)
+   PREINIT:
+   const guchar *string = NULL;
+-  gint length = 0;
++  gsize length = 0;
+   
+   CODE:
+   string = unique_message_data_get(message_data, length);



[arch-commits] Commit in perl-gtk2-unique/repos (6 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 11:36:32
  Author: fyan
Revision: 116149

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

Added:
  perl-gtk2-unique/repos/community-i686/
  perl-gtk2-unique/repos/community-i686/PKGBUILD
(from rev 116148, perl-gtk2-unique/trunk/PKGBUILD)
  perl-gtk2-unique/repos/community-i686/perl-gtk2-unique.patch
(from rev 116148, perl-gtk2-unique/trunk/perl-gtk2-unique.patch)
  perl-gtk2-unique/repos/community-x86_64/
  perl-gtk2-unique/repos/community-x86_64/PKGBUILD
(from rev 116148, perl-gtk2-unique/trunk/PKGBUILD)
  perl-gtk2-unique/repos/community-x86_64/perl-gtk2-unique.patch
(from rev 116148, perl-gtk2-unique/trunk/perl-gtk2-unique.patch)

-+
 community-i686/PKGBUILD |   38 ++
 community-i686/perl-gtk2-unique.patch   |   12 +
 community-x86_64/PKGBUILD   |   38 ++
 community-x86_64/perl-gtk2-unique.patch |   12 +
 4 files changed, 100 insertions(+)

Copied: perl-gtk2-unique/repos/community-i686/PKGBUILD (from rev 116148, 
perl-gtk2-unique/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 09:36:32 UTC (rev 116149)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Brian Bidulock bidul...@openss7.org
+
+pkgname=perl-gtk2-unique
+_realname=Gtk2-Unique
+pkgver=0.05
+pkgrel=10
+pkgdesc=Perl bindings for the C library libunique
+arch=('i686' 'x86_64')
+url=https://metacpan.org/release/${_realname};
+license=('LGPL' 'PerlArtistic')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+depends=('gtk2-perl' 'libunique')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PO/POTYL/${_realname}-${pkgver}.tar.gz;
+$pkgname.patch)
+md5sums=('0beb552933b765a017588563a71af123'
+ 'f8e15e1b93e2629e1745f8e4de8524ff')
+
+build() {
+  cd $srcdir/$_realname-$pkgver
+  patch -Np1 -i $srcdir/$pkgname.patch
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/$_realname-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/$_realname-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Copied: perl-gtk2-unique/repos/community-i686/perl-gtk2-unique.patch (from rev 
116148, perl-gtk2-unique/trunk/perl-gtk2-unique.patch)
===
--- community-i686/perl-gtk2-unique.patch   (rev 0)
+++ community-i686/perl-gtk2-unique.patch   2014-07-23 09:36:32 UTC (rev 
116149)
@@ -0,0 +1,12 @@
+diff -up Gtk2-Unique-0.05/xs/UniqueMessageData.xs.orig 
Gtk2-Unique-0.05/xs/UniqueMessageData.xs
+--- Gtk2-Unique-0.05/xs/UniqueMessageData.xs.orig  2010-05-05 
09:47:45.0 -0600
 Gtk2-Unique-0.05/xs/UniqueMessageData.xs   2013-06-18 11:54:05.0 
-0600
+@@ -38,7 +38,7 @@ SV*
+ unique_message_data_get (UniqueMessageData *message_data)
+   PREINIT:
+   const guchar *string = NULL;
+-  gint length = 0;
++  gsize length = 0;
+   
+   CODE:
+   string = unique_message_data_get(message_data, length);

Copied: perl-gtk2-unique/repos/community-x86_64/PKGBUILD (from rev 116148, 
perl-gtk2-unique/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 09:36:32 UTC (rev 116149)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Brian Bidulock bidul...@openss7.org
+
+pkgname=perl-gtk2-unique
+_realname=Gtk2-Unique
+pkgver=0.05
+pkgrel=10
+pkgdesc=Perl bindings for the C library libunique
+arch=('i686' 'x86_64')
+url=https://metacpan.org/release/${_realname};
+license=('LGPL' 'PerlArtistic')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+depends=('gtk2-perl' 'libunique')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PO/POTYL/${_realname}-${pkgver}.tar.gz;
+$pkgname.patch)
+md5sums=('0beb552933b765a017588563a71af123'
+ 'f8e15e1b93e2629e1745f8e4de8524ff')
+
+build() {
+  cd $srcdir/$_realname-$pkgver
+  patch -Np1 -i $srcdir/$pkgname.patch
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/$_realname-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/$_realname-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Copied: perl-gtk2-unique/repos/community-x86_64/perl-gtk2-unique.patch (from 
rev 116148, perl-gtk2-unique/trunk/perl-gtk2-unique.patch)

[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:19:50
  Author: fyan
Revision: 116150

addpkg: perl-extutils-config 0.007-2

Added:
  perl-extutils-config/
  perl-extutils-config/repos/
  perl-extutils-config/trunk/
  perl-extutils-config/trunk/PKGBUILD

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

Added: perl-extutils-config/trunk/PKGBUILD
===
--- perl-extutils-config/trunk/PKGBUILD (rev 0)
+++ perl-extutils-config/trunk/PKGBUILD 2014-07-23 10:19:50 UTC (rev 116150)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-config
+_pkgname=ExtUtils-Config
+pkgver=0.007
+pkgrel=2
+pkgdesc=ExtUtils::Config - A wrapper for perl's configuration
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-Config/;
+options=(!emptydirs)
+depends=('perl-data-dumper')
+makedepends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('168facb55560ad562bf1e4ca59dd0cee119e0059a8ac7d62283b7074078f73aabd5cc8c217754492a1e0bae61456b9ed9480f9710fbddd3865e5eddaf746052f')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: perl-extutils-config/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-extutils-config/repos (2 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:20:15
  Author: fyan
Revision: 116151

archrelease: copy trunk to community-any

Added:
  perl-extutils-config/repos/community-any/
  perl-extutils-config/repos/community-any/PKGBUILD
(from rev 116150, perl-extutils-config/trunk/PKGBUILD)

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

Copied: perl-extutils-config/repos/community-any/PKGBUILD (from rev 116150, 
perl-extutils-config/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 10:20:15 UTC (rev 116151)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-config
+_pkgname=ExtUtils-Config
+pkgver=0.007
+pkgrel=2
+pkgdesc=ExtUtils::Config - A wrapper for perl's configuration
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-Config/;
+options=(!emptydirs)
+depends=('perl-data-dumper')
+makedepends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('168facb55560ad562bf1e4ca59dd0cee119e0059a8ac7d62283b7074078f73aabd5cc8c217754492a1e0bae61456b9ed9480f9710fbddd3865e5eddaf746052f')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in perl-extutils-helpers/repos (2 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:25:31
  Author: fyan
Revision: 116153

archrelease: copy trunk to community-any

Added:
  perl-extutils-helpers/repos/community-any/
  perl-extutils-helpers/repos/community-any/PKGBUILD
(from rev 116152, perl-extutils-helpers/trunk/PKGBUILD)

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

Copied: perl-extutils-helpers/repos/community-any/PKGBUILD (from rev 116152, 
perl-extutils-helpers/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 10:25:31 UTC (rev 116153)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-helpers
+_pkgname=ExtUtils-Helpers
+pkgver=0.022
+pkgrel=2
+pkgdesc='ExtUtils::Helpers - Various portability utilities for module builders'
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-Helpers/;
+options=('!emptydirs')
+depends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ffdec8c1cf96daadfea34860bbd72d205620dec891d617721bb8ac242ccd2ba0cd5a5f50440633e03ae5fd575add6ac539c95ed68909a64a44b97ac2bba2bb39')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:25:12
  Author: fyan
Revision: 116152

addpkg: perl-extutils-helpers 0.022-2

Added:
  perl-extutils-helpers/
  perl-extutils-helpers/repos/
  perl-extutils-helpers/trunk/
  perl-extutils-helpers/trunk/PKGBUILD

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

Added: perl-extutils-helpers/trunk/PKGBUILD
===
--- perl-extutils-helpers/trunk/PKGBUILD(rev 0)
+++ perl-extutils-helpers/trunk/PKGBUILD2014-07-23 10:25:12 UTC (rev 
116152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-helpers
+_pkgname=ExtUtils-Helpers
+pkgver=0.022
+pkgrel=2
+pkgdesc='ExtUtils::Helpers - Various portability utilities for module builders'
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-Helpers/;
+options=('!emptydirs')
+depends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ffdec8c1cf96daadfea34860bbd72d205620dec891d617721bb8ac242ccd2ba0cd5a5f50440633e03ae5fd575add6ac539c95ed68909a64a44b97ac2bba2bb39')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: perl-extutils-helpers/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-extutils-installpaths/repos (2 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:29:41
  Author: fyan
Revision: 116155

archrelease: copy trunk to community-any

Added:
  perl-extutils-installpaths/repos/community-any/
  perl-extutils-installpaths/repos/community-any/PKGBUILD
(from rev 116154, perl-extutils-installpaths/trunk/PKGBUILD)

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

Copied: perl-extutils-installpaths/repos/community-any/PKGBUILD (from rev 
116154, perl-extutils-installpaths/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 10:29:41 UTC (rev 116155)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-installpaths
+_pkgname=ExtUtils-InstallPaths
+pkgver=0.010
+pkgrel=2
+pkgdesc=ExtUtils::InstallPaths - Build.PL install path logic made easy
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-InstallPaths/;
+options=('!emptydirs')
+depends=('perl' 'perl-extutils-config')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3639e8e05b2d59d1a5c4548d74e51158ce6e6b2260d2958f5500b7bb2f64470b72b8b9690e3ec917ff6db8baf0a81038178336bccbc272116e16b520cac73f0f')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:29:19
  Author: fyan
Revision: 116154

addpkg: perl-extutils-installpaths 0.010-2

Added:
  perl-extutils-installpaths/
  perl-extutils-installpaths/repos/
  perl-extutils-installpaths/trunk/
  perl-extutils-installpaths/trunk/PKGBUILD

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

Added: perl-extutils-installpaths/trunk/PKGBUILD
===
--- perl-extutils-installpaths/trunk/PKGBUILD   (rev 0)
+++ perl-extutils-installpaths/trunk/PKGBUILD   2014-07-23 10:29:19 UTC (rev 
116154)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-extutils-installpaths
+_pkgname=ExtUtils-InstallPaths
+pkgver=0.010
+pkgrel=2
+pkgdesc=ExtUtils::InstallPaths - Build.PL install path logic made easy
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/ExtUtils-InstallPaths/;
+options=('!emptydirs')
+depends=('perl' 'perl-extutils-config')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3639e8e05b2d59d1a5c4548d74e51158ce6e6b2260d2958f5500b7bb2f64470b72b8b9690e3ec917ff6db8baf0a81038178336bccbc272116e16b520cac73f0f')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in perl-module-build-tiny/repos (2 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:33:58
  Author: fyan
Revision: 116157

archrelease: copy trunk to community-any

Added:
  perl-module-build-tiny/repos/community-any/
  perl-module-build-tiny/repos/community-any/PKGBUILD
(from rev 116156, perl-module-build-tiny/trunk/PKGBUILD)

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

Copied: perl-module-build-tiny/repos/community-any/PKGBUILD (from rev 116156, 
perl-module-build-tiny/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 10:33:58 UTC (rev 116157)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-module-build-tiny
+_pkgname=Module-Build-Tiny
+pkgver=0.036
+pkgrel=2
+pkgdesc=A tiny replacement for Module::Build
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl' 'perl-extutils-config' 'perl-extutils-helpers' 
'perl-extutils-installpaths')
+makedepends=('perl-test-harness')
+url=http://search.cpan.org/dist/Module-Build-Tiny;
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('7f0d01354eaa08611b6b207ef362fbebd941838c1191c652c014f3ac2fe0eee32c64f8eb6711ca557f4f021f6fab8f64e155adf7bf183952021e6af3da1533dc')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Build.PL
+./Build
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+./Build test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_AUTOINSTALL=--skipdeps   \
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir'
+./Build install
+  )
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:33:34
  Author: fyan
Revision: 116156

addpkg: perl-module-build-tiny 0.036-2

Added:
  perl-module-build-tiny/
  perl-module-build-tiny/repos/
  perl-module-build-tiny/trunk/
  perl-module-build-tiny/trunk/PKGBUILD

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

Added: perl-module-build-tiny/trunk/PKGBUILD
===
--- perl-module-build-tiny/trunk/PKGBUILD   (rev 0)
+++ perl-module-build-tiny/trunk/PKGBUILD   2014-07-23 10:33:34 UTC (rev 
116156)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: xRemaLx anton.komo...@gmail.com
+
+pkgname=perl-module-build-tiny
+_pkgname=Module-Build-Tiny
+pkgver=0.036
+pkgrel=2
+pkgdesc=A tiny replacement for Module::Build
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl' 'perl-extutils-config' 'perl-extutils-helpers' 
'perl-extutils-installpaths')
+makedepends=('perl-test-harness')
+url=http://search.cpan.org/dist/Module-Build-Tiny;
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('7f0d01354eaa08611b6b207ef362fbebd941838c1191c652c014f3ac2fe0eee32c64f8eb6711ca557f4f021f6fab8f64e155adf7bf183952021e6af3da1533dc')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/${_pkgname}-${pkgver}
+/usr/bin/perl Build.PL
+./Build
+  )
+}
+
+check() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+./Build test
+  )
+}
+
+package() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  ( export PERL_AUTOINSTALL=--skipdeps   \
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir'
+./Build install
+  )
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:


Property changes on: perl-module-build-tiny/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:38:05
  Author: fyan
Revision: 116158

addpkg: perl-yaml-tiny 1.62-2

Added:
  perl-yaml-tiny/
  perl-yaml-tiny/repos/
  perl-yaml-tiny/trunk/
  perl-yaml-tiny/trunk/PKGBUILD

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

Added: perl-yaml-tiny/trunk/PKGBUILD
===
--- perl-yaml-tiny/trunk/PKGBUILD   (rev 0)
+++ perl-yaml-tiny/trunk/PKGBUILD   2014-07-23 10:38:05 UTC (rev 116158)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: AUR Perl aurp...@juster.info
+# Generator  : CPANPLUS::Dist::Arch 1.15
+
+pkgname=perl-yaml-tiny
+pkgver=1.62
+pkgrel=2
+pkgdesc=Read/Write YAML files with as little code as possible
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=('perl-module-build-tiny' 'perl-test-harness')
+url='http://search.cpan.org/dist/YAML-Tiny'
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/YAML-Tiny-$pkgver.tar.gz;)
+md5sums=('1308d3244d1b27088b4c101bf9705e9d')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/YAML-Tiny-${pkgver}
+/usr/bin/perl Build.PL
+./Build
+  )
+}
+
+package() {
+  cd ${srcdir}/YAML-Tiny-${pkgver}
+  ./Build install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:


Property changes on: perl-yaml-tiny/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-yaml-tiny/repos (community-any community-any/PKGBUILD)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 12:38:27
  Author: fyan
Revision: 116159

archrelease: copy trunk to community-any

Added:
  perl-yaml-tiny/repos/community-any/
  perl-yaml-tiny/repos/community-any/PKGBUILD
(from rev 116158, perl-yaml-tiny/trunk/PKGBUILD)

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

Copied: perl-yaml-tiny/repos/community-any/PKGBUILD (from rev 116158, 
perl-yaml-tiny/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 10:38:27 UTC (rev 116159)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: AUR Perl aurp...@juster.info
+# Generator  : CPANPLUS::Dist::Arch 1.15
+
+pkgname=perl-yaml-tiny
+pkgver=1.62
+pkgrel=2
+pkgdesc=Read/Write YAML files with as little code as possible
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=('perl-module-build-tiny' 'perl-test-harness')
+url='http://search.cpan.org/dist/YAML-Tiny'
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/YAML-Tiny-$pkgver.tar.gz;)
+md5sums=('1308d3244d1b27088b4c101bf9705e9d')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd ${srcdir}/YAML-Tiny-${pkgver}
+/usr/bin/perl Build.PL
+./Build
+  )
+}
+
+package() {
+  cd ${srcdir}/YAML-Tiny-${pkgver}
+  ./Build install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 14:15:46
  Author: spupykin
Revision: 116160

upgpkg: dbmail 3.1.16-2

upd

Modified:
  dbmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 10:38:27 UTC (rev 116159)
+++ PKGBUILD2014-07-23 12:15:46 UTC (rev 116160)
@@ -4,7 +4,7 @@
 
 pkgname=dbmail
 pkgver=3.1.16
-pkgrel=1
+pkgrel=2
 pkgdesc=Fast and scalable sql based mail services
 arch=('i686' 'x86_64')
 depends=('gmime' 'libzdb' 'mhash' 'libevent')
@@ -21,14 +21,14 @@
etc/xinetd.d/dbmail-lmtpd
etc/xinetd.d/dbmail-timsieved)
 #source=(dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_1
-#source=(http://www.dbmail.org/download/3.1/dbmail-${pkgver}.tar.gz;
-source=(dbmail-$pkgver.tar.gz::http://git.dbmail.eu/paul/dbmail/snapshot/dbmail-$pkgver.tar.gz;
+#source=(dbmail-$pkgver.tar.gz::http://git.dbmail.eu/paul/dbmail/snapshot/dbmail-$pkgver.tar.gz;
+source=(http://www.dbmail.org/download/3.1/dbmail-${pkgver}.tar.gz;
dbmail-imapd.xinetd
dbmail-lmtpd.xinetd
dbmail-pop3d.xinetd
dbmail-timsieved.xinetd
dbmail-7-systemd.diff)
-md5sums=('92f82a6fc55b2200d6a66e4fcec9db95'
+md5sums=('e5dc416766e8bf335eb394ad9748b800'
  '890de13361afbdf4fed12d6d7eb53e66'
  '961593658cd596297d03d25eb9c9e98f'
  '4cb764894abd3914802e90602bf90a0c'



[arch-commits] Commit in roundcubemail/trunk (PKGBUILD apache.conf)

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 14:16:20
  Author: spupykin
Revision: 116162

upgpkg: roundcubemail 1.0.2-2

upd

Modified:
  roundcubemail/trunk/PKGBUILD
  roundcubemail/trunk/apache.conf

-+
 PKGBUILD|9 +++--
 apache.conf |1 -
 2 files changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 12:16:17 UTC (rev 116161)
+++ PKGBUILD2014-07-23 12:16:20 UTC (rev 116162)
@@ -3,7 +3,7 @@
 
 pkgname=roundcubemail
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A PHP web-based mail client
 arch=('any')
 url=http://www.roundcube.net;
@@ -17,7 +17,7 @@
 
source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
apache.conf)
 md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
- 'f11b17e2a80b383cde4af963fb307541')
+ 'afa5113b40709550573f32d032b388b8')
 
 prepare() {
   cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
@@ -45,5 +45,10 @@
   install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
   install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
 
+  install -dm0755 $pkgdir/etc/php/conf.d/
+  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+EOF
+
   rm -rf temp logs
 }

Modified: apache.conf
===
--- apache.conf 2014-07-23 12:16:17 UTC (rev 116161)
+++ apache.conf 2014-07-23 12:16:20 UTC (rev 116162)
@@ -3,5 +3,4 @@
 AllowOverride All
 Options FollowSymlinks
 Require all granted
-php_admin_value open_basedir 
/tmp/:/var/cache/roundcubemail:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
 /Directory



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

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 14:16:17
  Author: spupykin
Revision: 116161

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

Added:
  dbmail/repos/community-i686/PKGBUILD
(from rev 116160, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-i686/dbmail-7-systemd.diff
(from rev 116160, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-i686/dbmail-imapd.xinetd
(from rev 116160, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
(from rev 116160, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
(from rev 116160, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
(from rev 116160, dbmail/trunk/dbmail-timsieved.xinetd)
  dbmail/repos/community-x86_64/PKGBUILD
(from rev 116160, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
(from rev 116160, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
(from rev 116160, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
(from rev 116160, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
(from rev 116160, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd
(from rev 116160, dbmail/trunk/dbmail-timsieved.xinetd)
Deleted:
  dbmail/repos/community-i686/PKGBUILD
  dbmail/repos/community-i686/dbmail-7-systemd.diff
  dbmail/repos/community-i686/dbmail-imapd.xinetd
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
  dbmail/repos/community-x86_64/PKGBUILD
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd

--+
 /PKGBUILD|  136 +++
 /dbmail-7-systemd.diff   |  352 +
 /dbmail-imapd.xinetd |   26 ++
 /dbmail-lmtpd.xinetd |   26 ++
 /dbmail-pop3d.xinetd |   26 ++
 /dbmail-timsieved.xinetd |   30 ++
 community-i686/PKGBUILD  |   68 -
 community-i686/dbmail-7-systemd.diff |  176 --
 community-i686/dbmail-imapd.xinetd   |   13 -
 community-i686/dbmail-lmtpd.xinetd   |   13 -
 community-i686/dbmail-pop3d.xinetd   |   13 -
 community-i686/dbmail-timsieved.xinetd   |   15 -
 community-x86_64/PKGBUILD|   68 -
 community-x86_64/dbmail-7-systemd.diff   |  176 --
 community-x86_64/dbmail-imapd.xinetd |   13 -
 community-x86_64/dbmail-lmtpd.xinetd |   13 -
 community-x86_64/dbmail-pop3d.xinetd |   13 -
 community-x86_64/dbmail-timsieved.xinetd |   15 -
 18 files changed, 596 insertions(+), 596 deletions(-)

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


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

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 14:16:30
  Author: spupykin
Revision: 116163

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 116162, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 116162, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 116162, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  103 +---
 apache.conf   |   13 ++
 roundcubemail.install |   14 +++---
 3 files changed, 67 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 12:16:20 UTC (rev 116162)
+++ PKGBUILD2014-07-23 12:16:30 UTC (rev 116163)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 116162, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 12:16:30 UTC (rev 116163)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.2
+pkgrel=2
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
+ 'afa5113b40709550573f32d032b388b8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  install -dm0755 $pkgdir/etc/php/conf.d/
+  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf
===
--- apache.conf 2014-07-23 12:16:20 UTC (rev 116162)
+++ apache.conf 2014-07-23 12:16:30 UTC (rev 116163)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-

[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 14:59:40
  Author: fyan
Revision: 116164

addpkg: perl-data-random 0.11-2

Added:
  perl-data-random/
  perl-data-random/repos/
  perl-data-random/trunk/
  perl-data-random/trunk/PKGBUILD

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

Added: perl-data-random/trunk/PKGBUILD
===
--- perl-data-random/trunk/PKGBUILD (rev 0)
+++ perl-data-random/trunk/PKGBUILD 2014-07-23 12:59:40 UTC (rev 116164)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Michael Kogan michael dot kogan at gmx dot net
+
+pkgname=perl-data-random
+pkgver=0.11
+pkgrel=2
+pkgdesc=Data::Random - Perl module to generate random data
+arch=('any')
+url=http://search.cpan.org/~barefoot/Data-Random/lib/Data/Random.pm;
+license=('GPL' 'PerlArtistic')
+depends=('perl-date-calc' 'perl-gd' 'perl-yaml-tiny')
+checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
+options=('!emptydirs')
+source=(http://ftp.gwdg.de/pub/languages/perl/CPAN/authors/id/B/BA/BAREFOOT/Data-Random-${pkgver}.tar.gz;)
+md5sums=('9604ddc45eff8fc95803f34a7553c93b')
+
+build() {
+  cd $srcdir/Data-Random-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Data-Random-${pkgver}
+  make test
+}
+
+package() {
+  cd $srcdir/Data-Random-${pkgver}
+  make DESTDIR=$pkgdir install
+}


Property changes on: perl-data-random/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-data-random/repos (community-any community-any/PKGBUILD)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 15:00:03
  Author: fyan
Revision: 116165

archrelease: copy trunk to community-any

Added:
  perl-data-random/repos/community-any/
  perl-data-random/repos/community-any/PKGBUILD
(from rev 116164, perl-data-random/trunk/PKGBUILD)

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

Copied: perl-data-random/repos/community-any/PKGBUILD (from rev 116164, 
perl-data-random/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-07-23 13:00:03 UTC (rev 116165)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Michael Kogan michael dot kogan at gmx dot net
+
+pkgname=perl-data-random
+pkgver=0.11
+pkgrel=2
+pkgdesc=Data::Random - Perl module to generate random data
+arch=('any')
+url=http://search.cpan.org/~barefoot/Data-Random/lib/Data/Random.pm;
+license=('GPL' 'PerlArtistic')
+depends=('perl-date-calc' 'perl-gd' 'perl-yaml-tiny')
+checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
+options=('!emptydirs')
+source=(http://ftp.gwdg.de/pub/languages/perl/CPAN/authors/id/B/BA/BAREFOOT/Data-Random-${pkgver}.tar.gz;)
+md5sums=('9604ddc45eff8fc95803f34a7553c93b')
+
+build() {
+  cd $srcdir/Data-Random-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Data-Random-${pkgver}
+  make test
+}
+
+package() {
+  cd $srcdir/Data-Random-${pkgver}
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in mingw-w64-gcc/repos (12 files)

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 15:52:11
  Author: spupykin
Revision: 116167

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

Added:
  mingw-w64-gcc/repos/community-i686/PKGBUILD
(from rev 116166, mingw-w64-gcc/trunk/PKGBUILD)
  
mingw-w64-gcc/repos/community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch
(from rev 116166, 
mingw-w64-gcc/trunk/gcc-make-xmmintrin-header-cplusplus-compatible.patch)
  mingw-w64-gcc/repos/community-i686/isl.patch
(from rev 116166, mingw-w64-gcc/trunk/isl.patch)
  mingw-w64-gcc/repos/community-x86_64/PKGBUILD
(from rev 116166, mingw-w64-gcc/trunk/PKGBUILD)
  
mingw-w64-gcc/repos/community-x86_64/gcc-make-xmmintrin-header-cplusplus-compatible.patch
(from rev 116166, 
mingw-w64-gcc/trunk/gcc-make-xmmintrin-header-cplusplus-compatible.patch)
  mingw-w64-gcc/repos/community-x86_64/isl.patch
(from rev 116166, mingw-w64-gcc/trunk/isl.patch)
Deleted:
  mingw-w64-gcc/repos/community-i686/PKGBUILD
  
mingw-w64-gcc/repos/community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch
  mingw-w64-gcc/repos/community-i686/isl.patch
  mingw-w64-gcc/repos/community-x86_64/PKGBUILD
  
mingw-w64-gcc/repos/community-x86_64/gcc-make-xmmintrin-header-cplusplus-compatible.patch
  mingw-w64-gcc/repos/community-x86_64/isl.patch

---+
 /PKGBUILD |  164 
++
 /gcc-make-xmmintrin-header-cplusplus-compatible.patch |   48 ++
 /isl.patch|  152 
+
 community-i686/PKGBUILD   |   82 
-
 community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch   |   24 -
 community-i686/isl.patch  |   76 

 community-x86_64/PKGBUILD |   82 
-
 community-x86_64/gcc-make-xmmintrin-header-cplusplus-compatible.patch |   24 -
 community-x86_64/isl.patch|   76 

 9 files changed, 364 insertions(+), 364 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 13:51:47 UTC (rev 116166)
+++ community-i686/PKGBUILD 2014-07-23 13:52:11 UTC (rev 116167)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: rubenvb vanboxem dottie ruben attie gmail dottie com
-
-_targets=i686-w64-mingw32 x86_64-w64-mingw32
-
-pkgname=mingw-w64-gcc
-pkgver=4.9.0
-pkgrel=3
-pkgdesc=Cross GCC for the MinGW-w64 cross-compiler
-arch=('i686' 'x86_64')
-url=http://gcc.gnu.org;
-license=('GPL' 'LGPL' 'FDL' 'custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-depends=('zlib' 'libmpc' 'cloog'
-'mingw-w64-crt' 'mingw-w64-binutils' 'mingw-w64-winpthreads'
-'mingw-w64-headers' 'mingw-w64-headers-bootstrap')
-makedepends=(gcc-ada=${pkgver} 'mingw-w64-gcc-base')
-#checkdepends=('dejagnu') # Windows executables could run on Arch through 
bin_mft and Wine
-optdepends=()
-provides=('mingw-w64-gcc-base')
-conflicts=('mingw-w64-gcc-base')
-replaces=()
-backup=()
-options=('!strip' 'staticlibs' '!emptydirs' '!buildflags')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2;
-'gcc-make-xmmintrin-header-cplusplus-compatible.patch'
-'isl.patch')
-md5sums=('9709b49ae0e904cbb0a6a1b62853b556'
- 'da6c9ba6baebe1286f3219d4181cdbb8'
- 'd99c0a484178b890526d180de1c6e8f8')
-
-prepare() {
-  cd ${srcdir}/gcc-${pkgver}
-
-  #do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-  # hack! - some configure tests for header files using $CPP $CPPFLAGS
-  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ {libiberty,gcc}/configure
-
-  # The file xmmintrin.h doesn't contain an extern C part
-  # This conflicts with mingw-w64 intrin.h and results in build
-  # failure like this one in mingw-w64-qt5-qtbase:
-  # /usr/lib/gcc/i686-w64-mingw32/4.8.0/include/xmmintrin.h:997:1: error: 
previous declaration of 'int _m_pextrw(__m64, int)' with 'C++' linkage
-  # /usr/i686-w64-mingw32/include/intrin.h:561:28: error: conflicts with new 
declaration with 'C' linkage
-  patch -p0 -i ${srcdir}/gcc-make-xmmintrin-header-cplusplus-compatible.patch
-  patch -p1 $srcdir/isl.patch
-}
-
-build() {
-  for _target in ${_targets}; do
-mkdir -p ${srcdir}/gcc-build-${_target}  cd 
${srcdir}/gcc-build-${_target}
-
-${srcdir}/gcc-${pkgver}/configure --prefix=/usr --libexecdir=/usr/lib \
---target=${_target} \
---enable-languages=c,lto,c++,objc,obj-c++,fortran,ada \
---enable-shared --enable-static \
---enable-threads=posix --enable-fully-dynamic-string 
--enable-libstdcxx-time=yes \
---with-system-zlib --enable-cloog-backend=isl \
-

[arch-commits] Commit in mingw-w64-gcc/trunk (PKGBUILD)

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 15:51:47
  Author: spupykin
Revision: 116166

upgpkg: mingw-w64-gcc 4.9.1-1

upd

Modified:
  mingw-w64-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 13:00:03 UTC (rev 116165)
+++ PKGBUILD2014-07-23 13:51:47 UTC (rev 116166)
@@ -5,8 +5,8 @@
 _targets=i686-w64-mingw32 x86_64-w64-mingw32
 
 pkgname=mingw-w64-gcc
-pkgver=4.9.0
-pkgrel=3
+pkgver=4.9.1
+pkgrel=1
 pkgdesc=Cross GCC for the MinGW-w64 cross-compiler
 arch=('i686' 'x86_64')
 url=http://gcc.gnu.org;
@@ -26,7 +26,7 @@
 
source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2;
 'gcc-make-xmmintrin-header-cplusplus-compatible.patch'
 'isl.patch')
-md5sums=('9709b49ae0e904cbb0a6a1b62853b556'
+md5sums=('fddf71348546af523353bd43d34919c1'
  'da6c9ba6baebe1286f3219d4181cdbb8'
  'd99c0a484178b890526d180de1c6e8f8')
 



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

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 16:15:36
  Author: spupykin
Revision: 116169

archrelease: copy trunk to community-any

Added:
  owncloud/repos/community-any/PKGBUILD
(from rev 116168, owncloud/trunk/PKGBUILD)
  owncloud/repos/community-any/apache.example.conf
(from rev 116168, owncloud/trunk/apache.example.conf)
Deleted:
  owncloud/repos/community-any/PKGBUILD
  owncloud/repos/community-any/apache.example.conf

-+
 PKGBUILD|  104 +++---
 apache.example.conf |   35 
 2 files changed, 67 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 14:15:27 UTC (rev 116168)
+++ PKGBUILD2014-07-23 14:15:36 UTC (rev 116169)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Antonio Rojas nqn1976 @ gmail.com
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=6.0.4
-pkgrel=1
-pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
-arch=('any')
-url=http://owncloud.org/;
-license=('GPL')
-depends=('php-gd' 'php-intl')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-   'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice-common: file preview')
-makedepends=()
-options=('!strip')
-source=(http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2{,.asc}
-   'apache.example.conf'
-   
'img.patch::https://gist.githubusercontent.com/anonymous/11535580/raw/stdin')
-backup=('etc/webapps/owncloud/apache.example.conf')
-md5sums=('0a92cf5971e9c9c58e40219b385bd8f4'
- 'SKIP'
- '02d29d2dbb6943c63b102c32c3bfcd77'
- '35815f95b015d0bfeebf5bbfb5271cc2')
-
-prepare() {
-  cd $srcdir/$pkgname/lib/private  patch -p0 $srcdir/img.patch
-}
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/${pkgname}/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d ${pkgdir}/usr/share/webapps/
-  cp -a ${srcdir}/${pkgname} ${pkgdir}/usr/share/webapps/
-
-  # install apache config file
-  install -d  ${pkgdir}/etc/webapps/${pkgname}
-  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
-
-  # move config to /etc
-  mv ${pkgdir}/usr/share/webapps/owncloud/config 
${pkgdir}/etc/webapps/${pkgname}/config
-  chown -R http:http ${pkgdir}/etc/webapps/${pkgname}/config
-  ln -s /etc/webapps/${pkgname}/config 
${pkgdir}/usr/share/webapps/owncloud/config
-}

Copied: owncloud/repos/community-any/PKGBUILD (from rev 116168, 
owncloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 14:15:36 UTC (rev 116169)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Antonio Rojas nqn1976 @ gmail.com
+# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
+
+pkgname=owncloud
+pkgver=7.0.0
+pkgrel=1
+pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
+arch=('any')
+url=http://owncloud.org/;
+license=('GPL')
+depends=('php-gd' 'php-intl')
+optdepends=('php-apache: to use the Apache web server'
+   'php-sqlite: to use the SQLite database backend'
+   'php-pgsql: to use the PostgreSQL database backend'
+   'mariadb: to use the MySQL database backend'
+   'smbclient: to mount SAMBA shares'
+   'php-mcrypt'
+   'php-imagick: file preview'
+   'ffmpeg: file preview'
+   'libreoffice-common: file preview')
+makedepends=()
+options=('!strip')
+backup=('etc/webapps/owncloud/apache.example.conf')
+source=(http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2{,.asc}
+   'apache.example.conf')
+md5sums=('28cfdc99e8ee9350fe88430b4c7d62f2'
+ 'SKIP'
+ '64c6edf88bcbb37d063e4bf77b39237f')
+
+package() {
+  # install license
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  cp ${srcdir}/${pkgname}/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
+
+  # install project
+  install -d ${pkgdir}/usr/share/webapps/
+  cp -a ${srcdir}/${pkgname} ${pkgdir}/usr/share/webapps/
+
+  # install apache config file
+  install -d  ${pkgdir}/etc/webapps/${pkgname}
+  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
+
+  # move config to /etc
+  mv ${pkgdir}/usr/share/webapps/owncloud/config 
${pkgdir}/etc/webapps/${pkgname}/config
+  chown -R http:http ${pkgdir}/etc/webapps/${pkgname}/config
+  ln -s /etc/webapps/${pkgname}/config 

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

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 16:15:27
  Author: spupykin
Revision: 116168

upgpkg: owncloud 7.0.0-1

upd

Modified:
  owncloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 13:52:11 UTC (rev 116167)
+++ PKGBUILD2014-07-23 14:15:27 UTC (rev 116168)
@@ -4,7 +4,7 @@
 # Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
 
 pkgname=owncloud
-pkgver=6.0.4
+pkgver=7.0.0
 pkgrel=1
 pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
 arch=('any')
@@ -22,19 +22,13 @@
'libreoffice-common: file preview')
 makedepends=()
 options=('!strip')
+backup=('etc/webapps/owncloud/apache.example.conf')
 
source=(http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2{,.asc}
-   'apache.example.conf'
-   
'img.patch::https://gist.githubusercontent.com/anonymous/11535580/raw/stdin')
-backup=('etc/webapps/owncloud/apache.example.conf')
-md5sums=('0a92cf5971e9c9c58e40219b385bd8f4'
+   'apache.example.conf')
+md5sums=('28cfdc99e8ee9350fe88430b4c7d62f2'
  'SKIP'
- '64c6edf88bcbb37d063e4bf77b39237f'
- '35815f95b015d0bfeebf5bbfb5271cc2')
+ '64c6edf88bcbb37d063e4bf77b39237f')
 
-prepare() {
-  cd $srcdir/$pkgname/lib/private  patch -p0 $srcdir/img.patch
-}
-
 package() {
   # install license
   install -d ${pkgdir}/usr/share/licenses/${pkgname}



[arch-commits] Commit in perl-gtk2-imageview/repos (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 16:17:10
  Author: fyan
Revision: 116171

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

Added:
  perl-gtk2-imageview/repos/community-i686/
  perl-gtk2-imageview/repos/community-i686/PKGBUILD
(from rev 116170, perl-gtk2-imageview/trunk/PKGBUILD)
  perl-gtk2-imageview/repos/community-x86_64/
  perl-gtk2-imageview/repos/community-x86_64/PKGBUILD
(from rev 116170, perl-gtk2-imageview/trunk/PKGBUILD)

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

Copied: perl-gtk2-imageview/repos/community-i686/PKGBUILD (from rev 116170, 
perl-gtk2-imageview/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 14:17:10 UTC (rev 116171)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: TDY t...@archlinux.info
+# Contributor: Olaf Leidinger leid...@newcon.de
+
+pkgname=perl-gtk2-imageview
+pkgver=0.05
+pkgrel=4
+pkgdesc=Perl bindings to the GtkImageView image viewer widget
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Gtk2-ImageView/;
+license=('LGPL3')
+depends=('cairo-perl' 'glib-perl' 'gtk2-perl' 'gtkimageview')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+checkdepends=('perl-test-pod' 'xorg-server-xvfb')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RA/RATCLIFFE/Gtk2-ImageView-$pkgver.tar.gz;)
+md5sums=('7c961071b347b6a64b8351fdd87ec4c0')
+
+build() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 make test
+}
+
+package() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: perl-gtk2-imageview/repos/community-x86_64/PKGBUILD (from rev 116170, 
perl-gtk2-imageview/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 14:17:10 UTC (rev 116171)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: TDY t...@archlinux.info
+# Contributor: Olaf Leidinger leid...@newcon.de
+
+pkgname=perl-gtk2-imageview
+pkgver=0.05
+pkgrel=4
+pkgdesc=Perl bindings to the GtkImageView image viewer widget
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Gtk2-ImageView/;
+license=('LGPL3')
+depends=('cairo-perl' 'glib-perl' 'gtk2-perl' 'gtkimageview')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+checkdepends=('perl-test-pod' 'xorg-server-xvfb')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RA/RATCLIFFE/Gtk2-ImageView-$pkgver.tar.gz;)
+md5sums=('7c961071b347b6a64b8351fdd87ec4c0')
+
+build() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 make test
+}
+
+package() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 16:16:20
  Author: fyan
Revision: 116170

addpkg: perl-gtk2-imageview 0.05-4

Added:
  perl-gtk2-imageview/
  perl-gtk2-imageview/repos/
  perl-gtk2-imageview/trunk/
  perl-gtk2-imageview/trunk/PKGBUILD

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

Added: perl-gtk2-imageview/trunk/PKGBUILD
===
--- perl-gtk2-imageview/trunk/PKGBUILD  (rev 0)
+++ perl-gtk2-imageview/trunk/PKGBUILD  2014-07-23 14:16:20 UTC (rev 116170)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: TDY t...@archlinux.info
+# Contributor: Olaf Leidinger leid...@newcon.de
+
+pkgname=perl-gtk2-imageview
+pkgver=0.05
+pkgrel=4
+pkgdesc=Perl bindings to the GtkImageView image viewer widget
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Gtk2-ImageView/;
+license=('LGPL3')
+depends=('cairo-perl' 'glib-perl' 'gtk2-perl' 'gtkimageview')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+checkdepends=('perl-test-pod' 'xorg-server-xvfb')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RA/RATCLIFFE/Gtk2-ImageView-$pkgver.tar.gz;)
+md5sums=('7c961071b347b6a64b8351fdd87ec4c0')
+
+build() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 make test
+}
+
+package() {
+  cd $srcdir/Gtk2-ImageView-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: perl-gtk2-imageview/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 16:40:38
  Author: fyan
Revision: 116172

addpkg: perl-goo-canvas 0.06-4

Added:
  perl-goo-canvas/
  perl-goo-canvas/repos/
  perl-goo-canvas/trunk/
  perl-goo-canvas/trunk/PKGBUILD

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

Added: perl-goo-canvas/trunk/PKGBUILD
===
--- perl-goo-canvas/trunk/PKGBUILD  (rev 0)
+++ perl-goo-canvas/trunk/PKGBUILD  2014-07-23 14:40:38 UTC (rev 116172)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Shanto sha...@hotmail.com
+# Contributor: TDY t...@gmx.com
+
+pkgname=perl-goo-canvas
+pkgver=0.06
+pkgrel=4
+pkgdesc=Perl bindings for GooCanvas
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Goo-Canvas/;
+license=('GPL' 'PerlArtistic')
+depends=('cairo-perl' 'glib-perl' 'goocanvas1' 'gtk2-perl')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/Y/YE/YEWENBIN/Goo-Canvas-$pkgver.tar.gz;)
+md5sums=('7dfe0be8c17bfd641d18384d4fd8fb23')
+
+build() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make install DESTDIR=$pkgdir
+}


Property changes on: perl-goo-canvas/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-goo-canvas/repos (4 files)

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 16:41:20
  Author: fyan
Revision: 116173

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

Added:
  perl-goo-canvas/repos/community-i686/
  perl-goo-canvas/repos/community-i686/PKGBUILD
(from rev 116172, perl-goo-canvas/trunk/PKGBUILD)
  perl-goo-canvas/repos/community-x86_64/
  perl-goo-canvas/repos/community-x86_64/PKGBUILD
(from rev 116172, perl-goo-canvas/trunk/PKGBUILD)

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

Copied: perl-goo-canvas/repos/community-i686/PKGBUILD (from rev 116172, 
perl-goo-canvas/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 14:41:20 UTC (rev 116173)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Shanto sha...@hotmail.com
+# Contributor: TDY t...@gmx.com
+
+pkgname=perl-goo-canvas
+pkgver=0.06
+pkgrel=4
+pkgdesc=Perl bindings for GooCanvas
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Goo-Canvas/;
+license=('GPL' 'PerlArtistic')
+depends=('cairo-perl' 'glib-perl' 'goocanvas1' 'gtk2-perl')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/Y/YE/YEWENBIN/Goo-Canvas-$pkgver.tar.gz;)
+md5sums=('7dfe0be8c17bfd641d18384d4fd8fb23')
+
+build() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make install DESTDIR=$pkgdir
+}

Copied: perl-goo-canvas/repos/community-x86_64/PKGBUILD (from rev 116172, 
perl-goo-canvas/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 14:41:20 UTC (rev 116173)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Shanto sha...@hotmail.com
+# Contributor: TDY t...@gmx.com
+
+pkgname=perl-goo-canvas
+pkgver=0.06
+pkgrel=4
+pkgdesc=Perl bindings for GooCanvas
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Goo-Canvas/;
+license=('GPL' 'PerlArtistic')
+depends=('cairo-perl' 'glib-perl' 'goocanvas1' 'gtk2-perl')
+makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/Y/YE/YEWENBIN/Goo-Canvas-$pkgver.tar.gz;)
+md5sums=('7dfe0be8c17bfd641d18384d4fd8fb23')
+
+build() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/Goo-Canvas-$pkgver
+  make install DESTDIR=$pkgdir
+}



[arch-commits] Commit in xf86-video-intel/trunk (3 files)

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 17:16:31
  Author: andyrtr
Revision: 217743

upgpkg: xf86-video-intel 2.99.913-1

upstream update 2.99.913

Modified:
  xf86-video-intel/trunk/PKGBUILD
Deleted:
  
xf86-video-intel/trunk/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
  xf86-video-intel/trunk/disable-dri3.patch

-+
 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch |   56 
--
 PKGBUILD|   21 +--
 disable-dri3.patch  |   52 
-
 3 files changed, 7 insertions(+), 122 deletions(-)

Deleted: 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
===
--- 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
2014-07-23 02:41:03 UTC (rev 217742)
+++ 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
2014-07-23 15:16:31 UTC (rev 217743)
@@ -1,56 +0,0 @@
-From e2bfa715a9e115921263d572b9f4c496b550a494 Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Tue, 10 Jun 2014 21:28:32 +0100
-Subject: [PATCH] sna/dri2: Check that the window covers the whole CRTC before
- xchg
-
-Fixes TearFre regression from
-
-commit 3932e97057fca16615adaefbc1eb25a0d51a1d8b [2.99.912]
-Author: Chris Wilson ch...@chris-wilson.co.uk
-Date:   Mon Jun 9 08:58:15 2014 +0100
-
-sna/dri2: Allow TearFree flipping to individual CRTC
-
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

- src/sna/sna_display.c |  1 +
- src/sna/sna_dri2.c| 10 ++
- 2 files changed, 11 insertions(+)
-
-diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
-index dcbe622..7169779 100644
 a/src/sna/sna_display.c
-+++ b/src/sna/sna_display.c
-@@ -332,6 +332,7 @@ static unsigned get_fb(struct sna *sna, struct kgem_bo *bo,
-   assert(bo-refcnt);
-   assert(bo-proxy == NULL);
-   assert(!bo-snoop);
-+  assert(8*bo-pitch = width * scrn-bitsPerPixel);
-   assert(height * bo-pitch = kgem_bo_size(bo)); /* XXX crtc offset */
-   if (bo-delta) {
-   DBG((%s: reusing fb=%d for handle=%d\n,
-diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
-index 1baaf2b..e196464 100644
 a/src/sna/sna_dri2.c
-+++ b/src/sna/sna_dri2.c
-@@ -1605,6 +1605,16 @@ can_xchg_one(struct sna *sna,
-   return false;
-   }
- 
-+  if (memcmp(win-clipList.extents, crtc-bounds, 
sizeof(crtc-bounds))) {
-+  DBG((%s: no, window [(%d, %d), (%d, %d)] does not cover CRTC 
[(%d, %d), (%d, %d)]\n,
-+   __FUNCTION__,
-+   win-clipList.extents.x1, win-clipList.extents.y1,
-+   win-clipList.extents.x2, win-clipList.extents.y2,
-+   crtc-bounds.x1, crtc-bounds.y1,
-+   crtc-bounds.x2, crtc-bounds.y2));
-+  return false;
-+  }
-+
-   if (sna_crtc_is_transformed(crtc)) {
-   DBG((%s: no, CRTC is rotated\n, __FUNCTION__));
-   return false;
--- 
-2.0.1
-

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 02:41:03 UTC (rev 217742)
+++ PKGBUILD2014-07-23 15:16:31 UTC (rev 217743)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-intel
-pkgver=2.99.912
-pkgrel=4
+pkgver=2.99.913
+pkgrel=1
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -23,21 +23,13 @@
 conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-   0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
-   disable-dri3.patch)
-sha256sums=('7c8ffc492d59f34cac64093deb70717b4d9223cf416ecc6fa016ab2e8bde9501'
-'19fe39fa5cd175e14f77d67dbd731f992c8f51161d90b73c63f52604a9eed7ce'
-'2cddfd09c7c32f0cd80819fbb1226095bc77665e9e1943df4a1e9d3a8295cedb')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6253ea35b4d6a53f0c80198b64ff810cec5f8278b80b2b639677dd9401517126')
 
 prepare() {
   cd ${pkgname}-${pkgver}
 
-  # fix FS#40863, merged upstream
-  patch -Np1 -i 
../0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
-  # ugly patch from fedora to disable dri3 (FS#41275 FS#41264 FS#41261)
-  patch -Np1 -i ../disable-dri3.patch
-  autoreconf -fiv
+#  autoreconf -fiv
 }
 
 build() {
@@ -44,7 +36,8 @@
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \
 --libexecdir=/usr/lib \
---enable-glamor
+--enable-glamor \
+--disable-dri3
   make
 }
 

Deleted: disable-dri3.patch
===
--- 

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

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 17:16:47
  Author: andyrtr
Revision: 217744

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

Added:
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 217743, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 217743, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 217743, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 217743, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  
xf86-video-intel/repos/testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
  xf86-video-intel/repos/testing-i686/PKGBUILD
  xf86-video-intel/repos/testing-i686/disable-dri3.patch
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
  
xf86-video-intel/repos/testing-x86_64/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
  xf86-video-intel/repos/testing-x86_64/disable-dri3.patch
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install

+
 /PKGBUILD  
|  112 ++
 /xf86-video-intel.install  
|   44 +++
 testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch   
|   56 -
 testing-i686/PKGBUILD  
|   63 -
 testing-i686/disable-dri3.patch
|   52 
 testing-i686/xf86-video-intel.install  
|   22 -
 testing-x86_64/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
|   56 -
 testing-x86_64/PKGBUILD
|   63 -
 testing-x86_64/disable-dri3.patch  
|   52 
 testing-x86_64/xf86-video-intel.install
|   22 -
 10 files changed, 156 insertions(+), 386 deletions(-)

Deleted: 
testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
===
--- 
testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
2014-07-23 15:16:31 UTC (rev 217743)
+++ 
testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
2014-07-23 15:16:47 UTC (rev 217744)
@@ -1,56 +0,0 @@
-From e2bfa715a9e115921263d572b9f4c496b550a494 Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Tue, 10 Jun 2014 21:28:32 +0100
-Subject: [PATCH] sna/dri2: Check that the window covers the whole CRTC before
- xchg
-
-Fixes TearFre regression from
-
-commit 3932e97057fca16615adaefbc1eb25a0d51a1d8b [2.99.912]
-Author: Chris Wilson ch...@chris-wilson.co.uk
-Date:   Mon Jun 9 08:58:15 2014 +0100
-
-sna/dri2: Allow TearFree flipping to individual CRTC
-
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

- src/sna/sna_display.c |  1 +
- src/sna/sna_dri2.c| 10 ++
- 2 files changed, 11 insertions(+)
-
-diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
-index dcbe622..7169779 100644
 a/src/sna/sna_display.c
-+++ b/src/sna/sna_display.c
-@@ -332,6 +332,7 @@ static unsigned get_fb(struct sna *sna, struct kgem_bo *bo,
-   assert(bo-refcnt);
-   assert(bo-proxy == NULL);
-   assert(!bo-snoop);
-+  assert(8*bo-pitch = width * scrn-bitsPerPixel);
-   assert(height * bo-pitch = kgem_bo_size(bo)); /* XXX crtc offset */
-   if (bo-delta) {
-   DBG((%s: reusing fb=%d for handle=%d\n,
-diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
-index 1baaf2b..e196464 100644
 a/src/sna/sna_dri2.c
-+++ b/src/sna/sna_dri2.c
-@@ -1605,6 +1605,16 @@ can_xchg_one(struct sna *sna,
-   return false;
-   }
- 
-+  if (memcmp(win-clipList.extents, crtc-bounds, 
sizeof(crtc-bounds))) {
-+  DBG((%s: no, window [(%d, %d), (%d, %d)] does not cover CRTC 
[(%d, %d), (%d, %d)]\n,
-+   __FUNCTION__,
-+   win-clipList.extents.x1, win-clipList.extents.y1,
-+   win-clipList.extents.x2, win-clipList.extents.y2,
-+   crtc-bounds.x1, crtc-bounds.y1,
-+   crtc-bounds.x2, crtc-bounds.y2));
-+  return false;
-+  }
-+
-   if (sna_crtc_is_transformed(crtc)) {
-   DBG((%s: no, CRTC is rotated\n, __FUNCTION__));
-   return false;
--- 
-2.0.1
-

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-07-23 15:16:31 UTC (rev 217743)
+++ testing-i686/PKGBUILD   2014-07-23 15:16:47 UTC (rev 217744)
@@ 

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

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 18:15:15
  Author: fyan
Revision: 116174

upgpkg: aria2 1.18.7-1

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 14:41:20 UTC (rev 116173)
+++ PKGBUILD2014-07-23 16:15:15 UTC (rev 116174)
@@ -7,7 +7,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=aria2
-pkgver=1.18.6
+pkgver=1.18.7
 pkgrel=1
 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
 checkdepends=('cppunit')
 source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('b9890e1d353e76a87bf94dc8a810586f4b7899130603599dd1227ed0c19e0d74')
+sha256sums=('7944336efdfc82892802bec304698448e8d27b30f30496576716e8b93ebfff98')
 
 build() {
   cd $pkgname-$pkgver



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

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 18:15:57
  Author: fyan
Revision: 116175

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 16:15:15 UTC (rev 116174)
+++ community-i686/PKGBUILD 2014-07-23 16:15:57 UTC (rev 116175)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=aria2
-pkgver=1.18.6
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
-checkdepends=('cppunit')
-source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('b9890e1d353e76a87bf94dc8a810586f4b7899130603599dd1227ed0c19e0d74')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # add bash completion
-  install -d $pkgdir/usr/share/bash-completion/completions
-  install -m644 $pkgdir/usr/share/doc/aria2/bash_completion/aria2c \
-$pkgdir/usr/share/bash-completion/completions
-  rm -rf $pkgdir/usr/share/doc/aria2/bash_completion
-}

Copied: aria2/repos/community-i686/PKGBUILD (from rev 116174, 
aria2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 16:15:57 UTC (rev 116175)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=aria2
+pkgver=1.18.7
+pkgrel=1
+pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
+arch=('i686' 'x86_64')
+url='http://aria2.sourceforge.net/'
+license=('GPL')
+depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
+checkdepends=('cppunit')
+source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
+sha256sums=('7944336efdfc82892802bec304698448e8d27b30f30496576716e8b93ebfff98')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # add bash completion
+  install -d $pkgdir/usr/share/bash-completion/completions
+  install -m644 $pkgdir/usr/share/doc/aria2/bash_completion/aria2c \
+$pkgdir/usr/share/bash-completion/completions
+  rm -rf $pkgdir/usr/share/doc/aria2/bash_completion
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-23 16:15:15 UTC (rev 116174)
+++ community-x86_64/PKGBUILD   2014-07-23 16:15:57 UTC (rev 116175)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=aria2
-pkgver=1.18.6
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
-checkdepends=('cppunit')
-source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('b9890e1d353e76a87bf94dc8a810586f4b7899130603599dd1227ed0c19e0d74')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
-

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

2014-07-23 Thread Eric Bélanger
Date: Wednesday, July 23, 2014 @ 18:25:10
  Author: eric
Revision: 116176

upgpkg: youtube-dl 2014.07.23.2-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 16:15:57 UTC (rev 116175)
+++ PKGBUILD2014-07-23 16:25:10 UTC (rev 116176)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2014.07.21
+pkgver=2014.07.23.2
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('ffmpeg: for video post-processing')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('f711536e1a1431d326e0df47b1fa7674bd2bf8d3'
+sha1sums=('4dc42935e58bf93510749a892c3b57e59752c210'
   'SKIP')
 
 prepare() {



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

2014-07-23 Thread Eric Bélanger
Date: Wednesday, July 23, 2014 @ 18:26:49
  Author: eric
Revision: 116177

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 16:25:10 UTC (rev 116176)
+++ PKGBUILD2014-07-23 16:26:49 UTC (rev 116177)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2014.07.21
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('f711536e1a1431d326e0df47b1fa7674bd2bf8d3'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 116176, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 16:26:49 UTC (rev 116177)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2014.07.23.2
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('4dc42935e58bf93510749a892c3b57e59752c210'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:32:29
  Author: anatolik
Revision: 116178

upgpkg: idle3-tools 0.9.1-5

Rebuild with correct packager

Modified:
  idle3-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 16:26:49 UTC (rev 116177)
+++ PKGBUILD2014-07-23 16:32:29 UTC (rev 116178)
@@ -4,7 +4,7 @@
 
 pkgname=idle3-tools
 pkgver=0.9.1
-pkgrel=4
+pkgrel=5
 pkgdesc='A utility that can disable, get and set the value of the idle3 timer 
found on Western Digital Hard Drives.'
 arch=(i686 x86_64)
 url='http://idle3-tools.sourceforge.net/'



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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:33:13
  Author: anatolik
Revision: 116179

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

Added:
  idle3-tools/repos/community-i686/PKGBUILD
(from rev 116178, idle3-tools/trunk/PKGBUILD)
  idle3-tools/repos/community-x86_64/PKGBUILD
(from rev 116178, idle3-tools/trunk/PKGBUILD)
Deleted:
  idle3-tools/repos/community-i686/PKGBUILD
  idle3-tools/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   50 
 community-i686/PKGBUILD   |   29 -
 community-x86_64/PKGBUILD |   29 -
 3 files changed, 50 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 16:32:29 UTC (rev 116178)
+++ community-i686/PKGBUILD 2014-07-23 16:33:13 UTC (rev 116179)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Archan Paul archan.p...@gmail.com
-# Contributor: aexoxea digital...@internode.on.net
-
-pkgname=idle3-tools
-pkgver=0.9.1
-pkgrel=3
-pkgdesc='A linux/unix utility that can disable, get and set the value of the 
idle3 timer found on recent Western Digital Hard Disk Drives.'
-arch=(i686 x86_64)
-url='http://idle3-tools.sourceforge.net/'
-license=(GPL)
-depends=(glibc)
-source=(http://download.sourceforge.net/idle3-tools/idle3-tools-$pkgver.tgz)
-md5sums=('797d8775b80b7b7b67a1f8b0a5b41f30')
-
-prepare() {
-  cd idle3-tools-$pkgver
-  sed -i 's/\bsbin\b/bin/g' Makefile
-}
-
-build() {
-  cd idle3-tools-$pkgver
-  make
-}
-
-package() {
-  cd idle3-tools-$pkgver
-  make binprefix=/usr DESTDIR=$pkgdir install
-}

Copied: idle3-tools/repos/community-i686/PKGBUILD (from rev 116178, 
idle3-tools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 16:33:13 UTC (rev 116179)
@@ -0,0 +1,25 @@
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Archan Paul archan.p...@gmail.com
+# Contributor: aexoxea digital...@internode.on.net
+
+pkgname=idle3-tools
+pkgver=0.9.1
+pkgrel=5
+pkgdesc='A utility that can disable, get and set the value of the idle3 timer 
found on Western Digital Hard Drives.'
+arch=(i686 x86_64)
+url='http://idle3-tools.sourceforge.net/'
+license=(GPL)
+depends=(glibc)
+source=(http://download.sourceforge.net/idle3-tools/idle3-tools-$pkgver.tgz)
+sha1sums=('44b5c4988e42d59e56fbc72550db34c5012beda6')
+
+build() {
+  cd idle3-tools-$pkgver
+  make
+}
+
+package() {
+  cd idle3-tools-$pkgver
+  make sbindir=/usr/bin DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-23 16:32:29 UTC (rev 116178)
+++ community-x86_64/PKGBUILD   2014-07-23 16:33:13 UTC (rev 116179)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Archan Paul archan.p...@gmail.com
-# Contributor: aexoxea digital...@internode.on.net
-
-pkgname=idle3-tools
-pkgver=0.9.1
-pkgrel=3
-pkgdesc='A linux/unix utility that can disable, get and set the value of the 
idle3 timer found on recent Western Digital Hard Disk Drives.'
-arch=(i686 x86_64)
-url='http://idle3-tools.sourceforge.net/'
-license=(GPL)
-depends=(glibc)
-source=(http://download.sourceforge.net/idle3-tools/idle3-tools-$pkgver.tgz)
-md5sums=('797d8775b80b7b7b67a1f8b0a5b41f30')
-
-prepare() {
-  cd idle3-tools-$pkgver
-  sed -i 's/\bsbin\b/bin/g' Makefile
-}
-
-build() {
-  cd idle3-tools-$pkgver
-  make
-}
-
-package() {
-  cd idle3-tools-$pkgver
-  make binprefix=/usr DESTDIR=$pkgdir install
-}

Copied: idle3-tools/repos/community-x86_64/PKGBUILD (from rev 116178, 
idle3-tools/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 16:33:13 UTC (rev 116179)
@@ -0,0 +1,25 @@
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Archan Paul archan.p...@gmail.com
+# Contributor: aexoxea digital...@internode.on.net
+
+pkgname=idle3-tools
+pkgver=0.9.1
+pkgrel=5
+pkgdesc='A utility that can disable, get and set the value of the idle3 timer 
found on Western Digital Hard Drives.'
+arch=(i686 x86_64)
+url='http://idle3-tools.sourceforge.net/'
+license=(GPL)
+depends=(glibc)
+source=(http://download.sourceforge.net/idle3-tools/idle3-tools-$pkgver.tgz)
+sha1sums=('44b5c4988e42d59e56fbc72550db34c5012beda6')
+
+build() {
+  cd idle3-tools-$pkgver
+  make
+}
+
+package() {
+  cd idle3-tools-$pkgver
+  make sbindir=/usr/bin DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:35:54
  Author: anatolik
Revision: 116180

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

Added:
  subtle/repos/community-i686/PKGBUILD
(from rev 116179, subtle/trunk/PKGBUILD)
  subtle/repos/community-i686/do_not_relink_binaries_on_install.diff
(from rev 116179, subtle/trunk/do_not_relink_binaries_on_install.diff)
  subtle/repos/community-i686/subtle.install
(from rev 116179, subtle/trunk/subtle.install)
  subtle/repos/community-x86_64/PKGBUILD
(from rev 116179, subtle/trunk/PKGBUILD)
  subtle/repos/community-x86_64/do_not_relink_binaries_on_install.diff
(from rev 116179, subtle/trunk/do_not_relink_binaries_on_install.diff)
  subtle/repos/community-x86_64/subtle.install
(from rev 116179, subtle/trunk/subtle.install)
Deleted:
  subtle/repos/community-i686/PKGBUILD
  subtle/repos/community-i686/do_not_relink_binaries_on_install.diff
  subtle/repos/community-i686/subtle.install
  subtle/repos/community-x86_64/PKGBUILD
  subtle/repos/community-x86_64/do_not_relink_binaries_on_install.diff
  subtle/repos/community-x86_64/subtle.install

-+
 /PKGBUILD   |  106 ++
 /do_not_relink_binaries_on_install.diff |   24 +++
 /subtle.install |   10 +
 community-i686/PKGBUILD |   53 ---
 community-i686/do_not_relink_binaries_on_install.diff   |   12 -
 community-i686/subtle.install   |5 
 community-x86_64/PKGBUILD   |   53 ---
 community-x86_64/do_not_relink_binaries_on_install.diff |   12 -
 community-x86_64/subtle.install |5 
 9 files changed, 140 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 16:33:13 UTC (rev 116179)
+++ community-i686/PKGBUILD 2014-07-23 16:35:54 UTC (rev 116180)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: unexist unex...@dorfelite.net
-# Contributor: Abakus ja...@arcor.de
-# Contributor: TDY t...@gmx.com
-# Contributor: Xilon xilo...@gmail.com
-
-pkgname=subtle
-# check the mercurial hash at http://hg.subforge.org/subtle
-_hg_revision=3243
-_hg_hash=43d1d0478c46
-pkgver=0.11.r$_hg_revision
-pkgrel=3
-pkgdesc='Grid-based manual tiling window manager'
-arch=(x86_64 i686)
-url='http://subtle.subforge.org/'
-license=(GPL)
-depends=(ruby libxrandr libxft libxpm libxinerama libxtst)
-backup=(etc/xdg/subtle/subtle.rb)
-install=subtle.install
-source=(http://hg.subforge.org/subtle/archive/$_hg_hash.tar.bz2
-do_not_relink_binaries_on_install.diff)
-sha256sums=('d3e29561a78a0491e6357ce60c940a1b050e99d116bffb7881d97b6a6b893137'
-'448dd3bcc8fd3807ab0f66c1d82edccbeb830502dfe758770e7f7a76ffce35a0')
-
-prepare() {
-  cd subtle-$_hg_hash
-
-  # Use vendor_ruby instead of site_ruby
-  sed -e \
-'s/RbConfig::CONFIG\[sitelibdir\]/RbConfig::CONFIG\[vendorlibdir\]/' \
--i Rakefile
-
-  patch -p1  $srcdir/do_not_relink_binaries_on_install.diff
-}
-
-build() {
-  cd subtle-$_hg_hash
-
-  rake build revision=$_hg_revision
-}
-
-package() {
-  cd subtle-$_hg_hash
-
-  # regenerate config with proper $pkgdir, revision and cppflags are not 
needed at this step
-  rake config destdir=$pkgdir
-  rake install
-
-  install -D -m644 data/subtle.desktop 
$pkgdir/usr/share/xsessions/subtle.desktop
-}

Copied: subtle/repos/community-i686/PKGBUILD (from rev 116179, 
subtle/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 16:35:54 UTC (rev 116180)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: unexist unex...@dorfelite.net
+# Contributor: Abakus ja...@arcor.de
+# Contributor: TDY t...@gmx.com
+# Contributor: Xilon xilo...@gmail.com
+
+pkgname=subtle
+# check the mercurial hash at http://hg.subforge.org/subtle
+_hg_revision=3243
+_hg_hash=43d1d0478c46
+pkgver=0.11.r$_hg_revision
+pkgrel=3
+pkgdesc='Grid-based manual tiling window manager'
+arch=(x86_64 i686)
+url='http://subtle.subforge.org/'
+license=(GPL)
+depends=(ruby libxrandr libxft libxpm libxinerama libxtst)
+backup=(etc/xdg/subtle/subtle.rb)
+install=subtle.install
+source=(http://hg.subforge.org/subtle/archive/$_hg_hash.tar.bz2
+do_not_relink_binaries_on_install.diff)
+sha256sums=('d3e29561a78a0491e6357ce60c940a1b050e99d116bffb7881d97b6a6b893137'
+

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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:39:01
  Author: anatolik
Revision: 116181

upgpkg: subtle 0.11.r3243-4

Rebuild with correct packager

Modified:
  subtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 16:35:54 UTC (rev 116180)
+++ PKGBUILD2014-07-23 16:39:01 UTC (rev 116181)
@@ -12,7 +12,7 @@
 _hg_revision=3243
 _hg_hash=43d1d0478c46
 pkgver=0.11.r$_hg_revision
-pkgrel=3
+pkgrel=4
 pkgdesc='Grid-based manual tiling window manager'
 arch=(x86_64 i686)
 url='http://subtle.subforge.org/'



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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:39:44
  Author: anatolik
Revision: 116182

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

Added:
  subtle/repos/community-i686/PKGBUILD
(from rev 116181, subtle/trunk/PKGBUILD)
  subtle/repos/community-i686/do_not_relink_binaries_on_install.diff
(from rev 116181, subtle/trunk/do_not_relink_binaries_on_install.diff)
  subtle/repos/community-i686/subtle.install
(from rev 116181, subtle/trunk/subtle.install)
  subtle/repos/community-x86_64/PKGBUILD
(from rev 116181, subtle/trunk/PKGBUILD)
  subtle/repos/community-x86_64/do_not_relink_binaries_on_install.diff
(from rev 116181, subtle/trunk/do_not_relink_binaries_on_install.diff)
  subtle/repos/community-x86_64/subtle.install
(from rev 116181, subtle/trunk/subtle.install)
Deleted:
  subtle/repos/community-i686/PKGBUILD
  subtle/repos/community-i686/do_not_relink_binaries_on_install.diff
  subtle/repos/community-i686/subtle.install
  subtle/repos/community-x86_64/PKGBUILD
  subtle/repos/community-x86_64/do_not_relink_binaries_on_install.diff
  subtle/repos/community-x86_64/subtle.install

-+
 /PKGBUILD   |  106 ++
 /do_not_relink_binaries_on_install.diff |   24 +++
 /subtle.install |   10 +
 community-i686/PKGBUILD |   53 ---
 community-i686/do_not_relink_binaries_on_install.diff   |   12 -
 community-i686/subtle.install   |5 
 community-x86_64/PKGBUILD   |   53 ---
 community-x86_64/do_not_relink_binaries_on_install.diff |   12 -
 community-x86_64/subtle.install |5 
 9 files changed, 140 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 16:39:01 UTC (rev 116181)
+++ community-i686/PKGBUILD 2014-07-23 16:39:44 UTC (rev 116182)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: unexist unex...@dorfelite.net
-# Contributor: Abakus ja...@arcor.de
-# Contributor: TDY t...@gmx.com
-# Contributor: Xilon xilo...@gmail.com
-
-pkgname=subtle
-# check the mercurial hash at http://hg.subforge.org/subtle
-_hg_revision=3243
-_hg_hash=43d1d0478c46
-pkgver=0.11.r$_hg_revision
-pkgrel=3
-pkgdesc='Grid-based manual tiling window manager'
-arch=(x86_64 i686)
-url='http://subtle.subforge.org/'
-license=(GPL)
-depends=(ruby libxrandr libxft libxpm libxinerama libxtst)
-backup=(etc/xdg/subtle/subtle.rb)
-install=subtle.install
-source=(http://hg.subforge.org/subtle/archive/$_hg_hash.tar.bz2
-do_not_relink_binaries_on_install.diff)
-sha256sums=('d3e29561a78a0491e6357ce60c940a1b050e99d116bffb7881d97b6a6b893137'
-'448dd3bcc8fd3807ab0f66c1d82edccbeb830502dfe758770e7f7a76ffce35a0')
-
-prepare() {
-  cd subtle-$_hg_hash
-
-  # Use vendor_ruby instead of site_ruby
-  sed -e \
-'s/RbConfig::CONFIG\[sitelibdir\]/RbConfig::CONFIG\[vendorlibdir\]/' \
--i Rakefile
-
-  patch -p1  $srcdir/do_not_relink_binaries_on_install.diff
-}
-
-build() {
-  cd subtle-$_hg_hash
-
-  rake build revision=$_hg_revision
-}
-
-package() {
-  cd subtle-$_hg_hash
-
-  # regenerate config with proper $pkgdir, revision and cppflags are not 
needed at this step
-  rake config destdir=$pkgdir
-  rake install
-
-  install -D -m644 data/subtle.desktop 
$pkgdir/usr/share/xsessions/subtle.desktop
-}

Copied: subtle/repos/community-i686/PKGBUILD (from rev 116181, 
subtle/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 16:39:44 UTC (rev 116182)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: unexist unex...@dorfelite.net
+# Contributor: Abakus ja...@arcor.de
+# Contributor: TDY t...@gmx.com
+# Contributor: Xilon xilo...@gmail.com
+
+pkgname=subtle
+# check the mercurial hash at http://hg.subforge.org/subtle
+_hg_revision=3243
+_hg_hash=43d1d0478c46
+pkgver=0.11.r$_hg_revision
+pkgrel=4
+pkgdesc='Grid-based manual tiling window manager'
+arch=(x86_64 i686)
+url='http://subtle.subforge.org/'
+license=(GPL)
+depends=(ruby libxrandr libxft libxpm libxinerama libxtst)
+backup=(etc/xdg/subtle/subtle.rb)
+install=subtle.install
+source=(http://hg.subforge.org/subtle/archive/$_hg_hash.tar.bz2
+do_not_relink_binaries_on_install.diff)
+sha256sums=('d3e29561a78a0491e6357ce60c940a1b050e99d116bffb7881d97b6a6b893137'
+

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

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 18:40:22
  Author: fyan
Revision: 116184

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 16:39:45 UTC (rev 116183)
+++ community-i686/PKGBUILD 2014-07-23 16:40:22 UTC (rev 116184)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=8
-pkgrel=1
-pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
-arch=('i686' 'x86_64')
-url=http://github.com/vodik/envoy;
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('271c0c30c833085de83bb11c52296b7b'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}
-
-# vim: ft=sh syn=sh et

Copied: envoy/repos/community-i686/PKGBUILD (from rev 116183, 
envoy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 16:40:22 UTC (rev 116184)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=9
+pkgrel=1
+pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
+arch=('i686' 'x86_64')
+url=http://github.com/vodik/envoy;
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
+clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
+md5sums=('044aa8b96be4a2c43fb149c05f9a63ae'
+ '8c4f3fd488fc8f92196a8aa42ac9567e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  rm -fr clique
+  ln -s ../clique-0.1 clique
+}
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}
+
+# vim: ft=sh syn=sh et

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-23 16:39:45 UTC (rev 116183)
+++ community-x86_64/PKGBUILD   2014-07-23 16:40:22 UTC (rev 116184)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=8
-pkgrel=1
-pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
-arch=('i686' 'x86_64')
-url=http://github.com/vodik/envoy;
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('271c0c30c833085de83bb11c52296b7b'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}
-
-# vim: ft=sh syn=sh et

Copied: envoy/repos/community-x86_64/PKGBUILD (from rev 116183, 
envoy/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-23 16:40:22 UTC (rev 116184)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=9
+pkgrel=1
+pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
+arch=('i686' 'x86_64')
+url=http://github.com/vodik/envoy;
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
+clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
+md5sums=('044aa8b96be4a2c43fb149c05f9a63ae'
+ '8c4f3fd488fc8f92196a8aa42ac9567e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  rm -fr clique
+  ln -s ../clique-0.1 clique
+}
+
+build() {
+  make -C 

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

2014-07-23 Thread Felix Yan
Date: Wednesday, July 23, 2014 @ 18:39:45
  Author: fyan
Revision: 116183

upgpkg: envoy 9-1

Modified:
  envoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 16:39:44 UTC (rev 116182)
+++ PKGBUILD2014-07-23 16:39:45 UTC (rev 116183)
@@ -2,7 +2,7 @@
 # Maintainer: Federico Cinelli cine...@aur.archlinux.org
 
 pkgname=envoy
-pkgver=8
+pkgver=9
 pkgrel=1
 pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('ragel')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
 clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('271c0c30c833085de83bb11c52296b7b'
+md5sums=('044aa8b96be4a2c43fb149c05f9a63ae'
  '8c4f3fd488fc8f92196a8aa42ac9567e')
 
 prepare() {



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

2014-07-23 Thread Anatol Pomozov
Date: Wednesday, July 23, 2014 @ 18:42:03
  Author: anatolik
Revision: 116185

Remove leftovers

Deleted:
  idle3-tools/repos/community-testing-i686/
  idle3-tools/repos/community-testing-x86_64/



[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 20:54:26
  Author: andyrtr
Revision: 217745

upgpkg: xf86-video-intel 2.99.914-1

upstream update 2.99.914

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 15:16:47 UTC (rev 217744)
+++ PKGBUILD2014-07-23 18:54:26 UTC (rev 217745)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-intel
-pkgver=2.99.913
+pkgver=2.99.914
 pkgrel=1
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
@@ -24,7 +24,7 @@
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6253ea35b4d6a53f0c80198b64ff810cec5f8278b80b2b639677dd9401517126')
+sha256sums=('78a22e5efd460b790c634caaf1afbb756046dd890482e204bb0d179baad27e46')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 20:55:37
  Author: andyrtr
Revision: 217746

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

Added:
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 217745, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 217745, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 217745, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 217745, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/testing-i686/PKGBUILD
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install

-+
 /PKGBUILD   |  112 ++
 /xf86-video-intel.install   |   44 +++
 testing-i686/PKGBUILD   |   56 ---
 testing-i686/xf86-video-intel.install   |   22 -
 testing-x86_64/PKGBUILD |   56 ---
 testing-x86_64/xf86-video-intel.install |   22 -
 6 files changed, 156 insertions(+), 156 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-07-23 18:54:26 UTC (rev 217745)
+++ testing-i686/PKGBUILD   2014-07-23 18:55:37 UTC (rev 217746)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-intel
-pkgver=2.99.913
-pkgrel=1
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-install=$pkgname.install
-pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
-depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util=0.3.9')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18' 'libx11' 
'libxrender'
- # additional deps for intel-virtual-output
-'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
-optdepends=('libxrandr: for intel-virtual-output'
-'libxinerama: for intel-virtual-output'
-'libxcursor: for intel-virtual-output'
-'libxtst: for intel-virtual-output')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19'
-   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6253ea35b4d6a53f0c80198b64ff810cec5f8278b80b2b639677dd9401517126')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-#  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---libexecdir=/usr/lib \
---enable-glamor \
---disable-dri3
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 217745, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-23 18:55:37 UTC (rev 217746)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-intel
+pkgver=2.99.914
+pkgrel=1
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+install=$pkgname.install
+pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
+depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('78a22e5efd460b790c634caaf1afbb756046dd890482e204bb0d179baad27e46')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+#  

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

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 21:12:36
  Author: andyrtr
Revision: 217747

upgpkg: gnutls 3.3.6-1

upstream update 3.3.6

Modified:
  gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 18:55:37 UTC (rev 217746)
+++ PKGBUILD2014-07-23 19:12:36 UTC (rev 217747)
@@ -3,7 +3,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=gnutls
-pkgver=3.3.5
+pkgver=3.3.6
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=('!zipman')
 depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
 
source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('1f396dcf3c14ea67de7243821006d1a2'
+md5sums=('84264c7d3f5fad14b7990a4e71aa340e'
  'SKIP')
 
 build() {



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

2014-07-23 Thread Andreas Radke
Date: Wednesday, July 23, 2014 @ 21:12:50
  Author: andyrtr
Revision: 217748

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

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

-+
 /PKGBUILD   |   82 ++
 /gnutls.install |   40 
 extra-i686/PKGBUILD |   41 -
 extra-i686/gnutls.install   |   20 --
 extra-x86_64/PKGBUILD   |   41 -
 extra-x86_64/gnutls.install |   20 --
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-23 19:12:36 UTC (rev 217747)
+++ extra-i686/PKGBUILD 2014-07-23 19:12:50 UTC (rev 217748)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=gnutls
-pkgver=3.3.5
-pkgrel=1
-pkgdesc=A library which provides a secure layer over a reliable transport 
layer
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL2.1')
-url=http://www.gnutls.org/;
-install=gnutls.install
-options=('!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('1f396dcf3c14ea67de7243821006d1a2'
- 'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check # || /bin/true
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
-  find $pkgdir/usr/share/man -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-i686/PKGBUILD (from rev 217747, 
gnutls/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 19:12:50 UTC (rev 217748)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=gnutls
+pkgver=3.3.6
+pkgrel=1
+pkgdesc=A library which provides a secure layer over a reliable transport 
layer
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL2.1')
+url=http://www.gnutls.org/;
+install=gnutls.install
+options=('!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('84264c7d3f5fad14b7990a4e71aa340e'
+ 'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check # || /bin/true
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
+  find $pkgdir/usr/share/man -exec gzip -9 {} \;
+}

Deleted: extra-i686/gnutls.install
===
--- extra-i686/gnutls.install   2014-07-23 19:12:36 UTC (rev 217747)
+++ extra-i686/gnutls.install   2014-07-23 19:12:50 UTC (rev 217748)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(gnutls.info-1.gz gnutls.info-2.gz gnutls.info-3.gz gnutls.info-4.gz 
gnutls.info-5.gz gnutls.info.gz gnutls-guile.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $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 $infodir/dir 2 /dev/null
-  done
-}

Copied: gnutls/repos/extra-i686/gnutls.install (from rev 217747, 
gnutls/trunk/gnutls.install)
===
--- extra-i686/gnutls.install   (rev 0)
+++ 

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

2014-07-23 Thread Jonathan Steel
Date: Wednesday, July 23, 2014 @ 22:30:23
  Author: jsteel
Revision: 116187

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

Added:
  vagrant/repos/community-i686/PKGBUILD
(from rev 116186, vagrant/trunk/PKGBUILD)
  vagrant/repos/community-i686/nfs.patch
(from rev 116186, vagrant/trunk/nfs.patch)
  vagrant/repos/community-x86_64/PKGBUILD
(from rev 116186, vagrant/trunk/PKGBUILD)
  vagrant/repos/community-x86_64/nfs.patch
(from rev 116186, vagrant/trunk/nfs.patch)
Deleted:
  vagrant/repos/community-i686/PKGBUILD
  vagrant/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |  124 +++
 community-i686/PKGBUILD|   55 ---
 community-i686/nfs.patch   |   20 ++
 community-x86_64/PKGBUILD  |   55 ---
 community-x86_64/nfs.patch |   20 ++
 5 files changed, 164 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 20:30:03 UTC (rev 116186)
+++ community-i686/PKGBUILD 2014-07-23 20:30:23 UTC (rev 116187)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at aur.archlinux.org
-# Contributor: Ido Rosen i...@kernel.org
-# Contributor: Brett Hoerner br...@bretthoerner.com
-# Contributor: Jochen Schalanda jochen+...@schalanda.name
-# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
-# Contributor: helios a...@wiresphere.de
-# Contributor: George Ornbo gor...@gmail.com
-# Contributor: Niklas Heer niklas.h...@me.com
-# Contributor: Steven Nance ste...@devtrw.com
-
-pkgname=vagrant
-pkgver=1.6.3
-pkgrel=1
-pkgdesc=Build and distribute virtualized development environments
-arch=('i686' 'x86_64')
-url=http://vagrantup.com;
-license=('MIT')
-options=('!emptydirs')
-depends=('ruby' 'curl' 'lzo2' 'libidn' 'rtmpdump')
-makedepends=('git')
-source=(http://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
-
http://pkgbuild.com/~jsteel/aur/$pkgname/substrate_archlinux_$CARCH.zip)
-md5sums=('55a91a9d9cba7b8b9d126c75b114e510')
-[[ $CARCH == i686 ]]  md5sums[3]='c04042b24de56d18a041bc005e5ecaa4'
-[[ $CARCH == x86_64 ]]  md5sums[3]='53d8a137e0b50fee8509a7d1c15fd33b'
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  EMBEDDED_DIR=$srcdir/substrate/embedded
-
-  echo -n $pkgver  $srcdir/substrate/${pkgname}_version
-
-  $EMBEDDED_DIR/bin/gem build $pkgname.gemspec
-
-  GEM_PATH=$EMBEDDED_DIR/gems GEM_HOME=$GEM_PATH \
-  GEMRC=$EMBEDDED_DIR/etc/gemrc CPPFLAGS=-I$EMBEDDED_DIR/include \
-  LDFLAGS=-L$EMBEDDED_DIR/lib PATH=$EMBEDDED_DIR/bin:$PATH \
-$EMBEDDED_DIR/bin/gem install $pkgname-$pkgver.gem --no-ri --no-rdoc
-}
-
-package() {
-  install -d $pkgdir/{opt/,usr/bin/,usr/share/bash-completion/completions/}
-
-  cp -r $srcdir/substrate/ $pkgdir/opt/$pkgname/
-
-  ln -s /opt/$pkgname/bin/$pkgname $pkgdir/usr/bin/$pkgname
-
-  ln -s 
/opt/$pkgname/embedded/gems/gems/$pkgname-$pkgver/contrib/bash/completion.sh \
-$pkgdir/usr/share/bash-completion/completions/$pkgname
-
-  install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: vagrant/repos/community-i686/PKGBUILD (from rev 116186, 
vagrant/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 20:30:23 UTC (rev 116187)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Jonathan Steel jsteel at aur.archlinux.org
+# Contributor: Ido Rosen i...@kernel.org
+# Contributor: Brett Hoerner br...@bretthoerner.com
+# Contributor: Jochen Schalanda jochen+...@schalanda.name
+# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
+# Contributor: helios a...@wiresphere.de
+# Contributor: George Ornbo gor...@gmail.com
+# Contributor: Niklas Heer niklas.h...@me.com
+# Contributor: Steven Nance ste...@devtrw.com
+
+pkgname=vagrant
+pkgver=1.6.3
+pkgrel=2
+pkgdesc=Build and distribute virtualized development environments
+arch=('i686' 'x86_64')
+url=http://vagrantup.com;
+license=('MIT')
+options=('!emptydirs')
+depends=('ruby' 'curl' 'lzo2' 'libidn' 'rtmpdump')
+makedepends=('git')
+source=(http://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
+nfs.patch
+
http://pkgbuild.com/~jsteel/aur/$pkgname/substrate_archlinux_$CARCH.zip)
+md5sums=('55a91a9d9cba7b8b9d126c75b114e510' 'a670dd93057fbd782176e0275b034bee')
+[[ $CARCH == i686 ]]  md5sums[3]='c04042b24de56d18a041bc005e5ecaa4'
+[[ $CARCH == x86_64 ]]  md5sums[3]='53d8a137e0b50fee8509a7d1c15fd33b'
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np0 -i $srcdir/nfs.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  EMBEDDED_DIR=$srcdir/substrate/embedded
+
+  echo -n $pkgver  $srcdir/substrate/${pkgname}_version
+
+  $EMBEDDED_DIR/bin/gem build $pkgname.gemspec
+
+  GEM_PATH=$EMBEDDED_DIR/gems GEM_HOME=$GEM_PATH \
+  

[arch-commits] Commit in vagrant/trunk (PKGBUILD nfs.patch)

2014-07-23 Thread Jonathan Steel
Date: Wednesday, July 23, 2014 @ 22:30:03
  Author: jsteel
Revision: 116186

Fix FS#41006

Added:
  vagrant/trunk/nfs.patch
Modified:
  vagrant/trunk/PKGBUILD

---+
 PKGBUILD  |   11 +--
 nfs.patch |   20 
 2 files changed, 29 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 16:42:03 UTC (rev 116185)
+++ PKGBUILD2014-07-23 20:30:03 UTC (rev 116186)
@@ -11,7 +11,7 @@
 
 pkgname=vagrant
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Build and distribute virtualized development environments
 arch=('i686' 'x86_64')
 url=http://vagrantup.com;
@@ -20,11 +20,18 @@
 depends=('ruby' 'curl' 'lzo2' 'libidn' 'rtmpdump')
 makedepends=('git')
 source=(http://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
+nfs.patch
 
http://pkgbuild.com/~jsteel/aur/$pkgname/substrate_archlinux_$CARCH.zip)
-md5sums=('55a91a9d9cba7b8b9d126c75b114e510')
+md5sums=('55a91a9d9cba7b8b9d126c75b114e510' 'a670dd93057fbd782176e0275b034bee')
 [[ $CARCH == i686 ]]  md5sums[3]='c04042b24de56d18a041bc005e5ecaa4'
 [[ $CARCH == x86_64 ]]  md5sums[3]='53d8a137e0b50fee8509a7d1c15fd33b'
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np0 -i $srcdir/nfs.patch
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
 

Added: nfs.patch
===
--- nfs.patch   (rev 0)
+++ nfs.patch   2014-07-23 20:30:03 UTC (rev 116186)
@@ -0,0 +1,20 @@
+--- plugins/hosts/arch/cap/nfs.rb.orig 2014-07-23 21:02:12.794095252 +0100
 plugins/hosts/arch/cap/nfs.rb  2014-07-23 21:06:54.738384725 +0100
+@@ -4,7 +4,7 @@
+   class NFS
+ def self.nfs_check_command(env)
+   if systemd?
+-return /usr/sbin/systemctl status nfsd
++return /usr/sbin/systemctl status nfs-server
+   else
+ return /etc/rc.d/nfs-server status
+   end
+@@ -12,7 +12,7 @@
+ 
+ def self.nfs_start_command(env)
+   if systemd?
+-return /usr/sbin/systemctl start nfsd rpc-idmapd rpc-mountd 
rpcbind
++return /usr/sbin/systemctl start nfs-server nfs-idmapd 
nfs-mountd rpcbind
+   else
+ return sh -c 'for s in {rpcbind,nfs-common,nfs-server}; do 
/etc/rc.d/$s start; done'
+   end



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:43:26
  Author: bpiotrowski
Revision: 116188

upgpkg: ansible 1.6.8-1

new upstream release

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 20:30:23 UTC (rev 116187)
+++ PKGBUILD2014-07-23 20:43:26 UTC (rev 116188)
@@ -1,12 +1,12 @@
 # $Id$
-# Maintainer:  Daniel Wallace danielwallace at gtmanfred dot com
 # Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Daniel Wallace danielwallace at gtmanfred dot com
 # Contributor: Chris seitz.christ...@gmail.com
 # Contributor: m0ikz ndelato...@moikz.com.ar
 # Contributor: atweiden archb...@gmail.com
 
 pkgname=ansible
-pkgver=1.6.6
+pkgver=1.6.8
 pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
@@ -19,7 +19,7 @@
 'python2-keyczar: needed for accelerated mode')
 backup=('etc/ansible/ansible.cfg')
 source=(http://releases.ansible.com/ansible/$pkgname-$pkgver.tar.gz)
-sha256sums=('cae6ff0d5fea73827c6a5b8bece5718ec5e84a92eb9284f48a4308e07dd18297')
+sha256sums=('1a47ea5cf339572c46bc346dea6c27e4fe828be052f8b7c0f7cc1496dcd9d616')
 
 build() {
   cd $pkgname-$pkgver



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:44:19
  Author: bpiotrowski
Revision: 116190

upgpkg: phpmyadmin 4.2.6-1

new upstream release

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 20:43:32 UTC (rev 116189)
+++ PKGBUILD2014-07-23 20:44:19 UTC (rev 116190)
@@ -6,7 +6,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.2.5
+pkgver=4.2.6
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -16,7 +16,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('7d5b21b08f1a2d1254569ff4e7944d2e')
+md5sums=('2d851ac78d1222a4ee37406f980e181f')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:43:32
  Author: bpiotrowski
Revision: 116189

archrelease: copy trunk to community-any

Added:
  ansible/repos/community-any/PKGBUILD
(from rev 116188, ansible/trunk/PKGBUILD)
Deleted:
  ansible/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 20:43:26 UTC (rev 116188)
+++ PKGBUILD2014-07-23 20:43:32 UTC (rev 116189)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:  Daniel Wallace danielwallace at gtmanfred dot com
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Chris seitz.christ...@gmail.com
-# Contributor: m0ikz ndelato...@moikz.com.ar
-# Contributor: atweiden archb...@gmail.com
-
-pkgname=ansible
-pkgver=1.6.6
-pkgrel=1
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='http://www.ansible.com'
-license=('GPL3')
-depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja')
-makedepends=('asciidoc' 'fakeroot')
-optdepends=('python2-pyasn1: needed for accelerated mode'
-'python2-crypto: needed for accelerated mode'
-'python2-keyczar: needed for accelerated mode')
-backup=('etc/ansible/ansible.cfg')
-source=(http://releases.ansible.com/ansible/$pkgname-$pkgver.tar.gz)
-sha256sums=('cae6ff0d5fea73827c6a5b8bece5718ec5e84a92eb9284f48a4308e07dd18297')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install -O1 --root=$pkgdir
-  find $pkgdir/usr/lib -type f -name \*.py -exec sed -i '1s:python$:2:' {} +
-
-  install -d $pkgdir/usr/share/ansible
-  cp -dpr --no-preserve=ownership ./library/* $pkgdir/usr/share/ansible/
-  cp -dpr --no-preserve=ownership ./examples $pkgdir/usr/share/ansible
-  install -Dm644 examples/ansible.cfg $pkgdir/etc/ansible/ansible.cfg
-
-  install -Dm644 README.md $pkgdir/usr/share/doc/ansible/README.md
-  install -Dm644 COPYING $pkgdir/usr/share/doc/ansible/COPYING
-
-  install -d $pkgdir/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
$pkgdir/usr/share/man/man1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ansible/repos/community-any/PKGBUILD (from rev 116188, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 20:43:32 UTC (rev 116189)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Chris seitz.christ...@gmail.com
+# Contributor: m0ikz ndelato...@moikz.com.ar
+# Contributor: atweiden archb...@gmail.com
+
+pkgname=ansible
+pkgver=1.6.8
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='http://www.ansible.com'
+license=('GPL3')
+depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja')
+makedepends=('asciidoc' 'fakeroot')
+optdepends=('python2-pyasn1: needed for accelerated mode'
+'python2-crypto: needed for accelerated mode'
+'python2-keyczar: needed for accelerated mode')
+backup=('etc/ansible/ansible.cfg')
+source=(http://releases.ansible.com/ansible/$pkgname-$pkgver.tar.gz)
+sha256sums=('1a47ea5cf339572c46bc346dea6c27e4fe828be052f8b7c0f7cc1496dcd9d616')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install -O1 --root=$pkgdir
+  find $pkgdir/usr/lib -type f -name \*.py -exec sed -i '1s:python$:2:' {} +
+
+  install -d $pkgdir/usr/share/ansible
+  cp -dpr --no-preserve=ownership ./library/* $pkgdir/usr/share/ansible/
+  cp -dpr --no-preserve=ownership ./examples $pkgdir/usr/share/ansible
+  install -Dm644 examples/ansible.cfg $pkgdir/etc/ansible/ansible.cfg
+
+  install -Dm644 README.md $pkgdir/usr/share/doc/ansible/README.md
+  install -Dm644 COPYING $pkgdir/usr/share/doc/ansible/COPYING
+
+  install -d $pkgdir/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
$pkgdir/usr/share/man/man1
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:44:21
  Author: bpiotrowski
Revision: 116191

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 116190, phpmyadmin/trunk/PKGBUILD)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 20:44:19 UTC (rev 116190)
+++ PKGBUILD2014-07-23 20:44:21 UTC (rev 116191)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=4.2.5
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('7d5b21b08f1a2d1254569ff4e7944d2e')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
-  cd $_instdir
-
-  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
-  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 116190, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 20:44:21 UTC (rev 116191)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=4.2.6
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+md5sums=('2d851ac78d1222a4ee37406f980e181f')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
+  cd $_instdir
+
+  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
+  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+}



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:46:31
  Author: bpiotrowski
Revision: 116192

upgpkg: tt-rss 1.13-1

new upstream release

Modified:
  tt-rss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 20:44:21 UTC (rev 116191)
+++ PKGBUILD2014-07-23 20:46:31 UTC (rev 116192)
@@ -5,8 +5,8 @@
 # Contributor: Erik Mank e...@braindisorder.org
 
 pkgname=tt-rss
-pkgver=1.12
-pkgrel=2
+pkgver=1.13
+pkgrel=1
 pkgdesc='Web-based news feed (RSS/Atom) aggregator'
 arch=('any')
 url='http://tt-rss.org/redmine/'
@@ -16,7 +16,7 @@
 install=tt-rss.install
 source=(https://github.com/gothfox/Tiny-Tiny-RSS/archive/$pkgver.tar.gz
 service)
-md5sums=('2ece52d859ca66883a6140ca637bc53b'
+md5sums=('f8f04fe2b51aae4a8bd38288ae9db503'
  'cb9900413dd53d44a5ed1116c962dbcb')
 
 package() {



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 22:46:33
  Author: bpiotrowski
Revision: 116193

archrelease: copy trunk to community-any

Added:
  tt-rss/repos/community-any/PKGBUILD
(from rev 116192, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/community-any/service
(from rev 116192, tt-rss/trunk/service)
  tt-rss/repos/community-any/tt-rss.install
(from rev 116192, tt-rss/trunk/tt-rss.install)
Deleted:
  tt-rss/repos/community-any/PKGBUILD
  tt-rss/repos/community-any/service
  tt-rss/repos/community-any/tt-rss.install

+
 PKGBUILD   |   86 +++
 service|   24 +++
 tt-rss.install |8 ++---
 3 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 20:46:31 UTC (rev 116192)
+++ PKGBUILD2014-07-23 20:46:33 UTC (rev 116193)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Clément Démoulins clem...@archivel.fr
-# Contributor: David Rosenstrauch dar...@darose.net
-# Contributor: Erik Mank e...@braindisorder.org
-
-pkgname=tt-rss
-pkgver=1.12
-pkgrel=2
-pkgdesc='Web-based news feed (RSS/Atom) aggregator'
-arch=('any')
-url='http://tt-rss.org/redmine/'
-license=('GPL')
-depends=('php')
-optdepends=('mysql' 'postgresql' 'php')
-install=tt-rss.install
-source=(https://github.com/gothfox/Tiny-Tiny-RSS/archive/$pkgver.tar.gz
-service)
-md5sums=('2ece52d859ca66883a6140ca637bc53b'
- 'cb9900413dd53d44a5ed1116c962dbcb')
-
-package() {
-  cd Tiny-Tiny-RSS-$pkgver
-  _instdir=$pkgdir/usr/share/webapps/$pkgname
-
-  install -d $_instdir
-  cp -ra * $_instdir/
-  rm -rf $_instdir/debian
-
-  install -d $pkgdir/etc/webapps/tt-rss
-  install -gm640 -g http config.php-dist 
$pkgdir/etc/webapps/tt-rss/config.php-dist
-  ln -s /etc/webapps/tt-rss/config.php $_instdir/config.php
-
-  install -d $pkgdir/var/lib/tt-rss
-  mv $_instdir/{lock,feed-icons,cache} $pkgdir/var/lib/tt-rss
-  ln -s /var/lib/tt-rss/lock $_instdir/lock
-  ln -s /var/lib/tt-rss/feed-icons $_instdir/feed-icons
-  ln -s /var/lib/tt-rss/cache $_instdir/cache
-  chown -R 33:33 $pkgdir/var/lib/tt-rss
-  chmod -R 777 $pkgdir/var/lib/tt-rss/*
-
-  install -Dm644 $srcdir/service 
$pkgdir/usr/lib/systemd/system/tt-rss.service
-}

Copied: tt-rss/repos/community-any/PKGBUILD (from rev 116192, 
tt-rss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 20:46:33 UTC (rev 116193)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Clément Démoulins clem...@archivel.fr
+# Contributor: David Rosenstrauch dar...@darose.net
+# Contributor: Erik Mank e...@braindisorder.org
+
+pkgname=tt-rss
+pkgver=1.13
+pkgrel=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=('any')
+url='http://tt-rss.org/redmine/'
+license=('GPL')
+depends=('php')
+optdepends=('mysql' 'postgresql' 'php')
+install=tt-rss.install
+source=(https://github.com/gothfox/Tiny-Tiny-RSS/archive/$pkgver.tar.gz
+service)
+md5sums=('f8f04fe2b51aae4a8bd38288ae9db503'
+ 'cb9900413dd53d44a5ed1116c962dbcb')
+
+package() {
+  cd Tiny-Tiny-RSS-$pkgver
+  _instdir=$pkgdir/usr/share/webapps/$pkgname
+
+  install -d $_instdir
+  cp -ra * $_instdir/
+  rm -rf $_instdir/debian
+
+  install -d $pkgdir/etc/webapps/tt-rss
+  install -gm640 -g http config.php-dist 
$pkgdir/etc/webapps/tt-rss/config.php-dist
+  ln -s /etc/webapps/tt-rss/config.php $_instdir/config.php
+
+  install -d $pkgdir/var/lib/tt-rss
+  mv $_instdir/{lock,feed-icons,cache} $pkgdir/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock $_instdir/lock
+  ln -s /var/lib/tt-rss/feed-icons $_instdir/feed-icons
+  ln -s /var/lib/tt-rss/cache $_instdir/cache
+  chown -R 33:33 $pkgdir/var/lib/tt-rss
+  chmod -R 777 $pkgdir/var/lib/tt-rss/*
+
+  install -Dm644 $srcdir/service 
$pkgdir/usr/lib/systemd/system/tt-rss.service
+}

Deleted: service
===
--- service 2014-07-23 20:46:31 UTC (rev 116192)
+++ service 2014-07-23 20:46:33 UTC (rev 116193)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Tiny Tiny RSS feeds update daemon
-After=network.target mysqld.service postgresql.service
-
-[Service]
-ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
-User=http
-StandardOutput=null
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target

Copied: tt-rss/repos/community-any/service (from rev 116192, 
tt-rss/trunk/service)
===
--- service (rev 0)
+++ service 2014-07-23 20:46:33 UTC (rev 116193)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Tiny Tiny RSS feeds update daemon
+After=network.target mysqld.service postgresql.service
+
+[Service]
+ExecStart=/usr/bin/php 

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

2014-07-23 Thread Jonathan Steel
Date: Wednesday, July 23, 2014 @ 22:51:52
  Author: jsteel
Revision: 116194

Fix FS#40645

Modified:
  ddclient/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 20:46:33 UTC (rev 116193)
+++ PKGBUILD2014-07-23 20:51:52 UTC (rev 116194)
@@ -5,7 +5,7 @@
 
 pkgname=ddclient
 pkgver=3.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Update dynamic DNS entries for accounts on many dynamic DNS services
 arch=('any')
 url=http://ddclient.sourceforge.net;
@@ -17,6 +17,13 @@
 md5sums=('62cd5fe93ced2c794d5f441f9d908841'
  '1bcd3e75309e658931532adef2a0608a')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Fix FS#40645
+  sed -i '2977s/http:/https:/' $pkgname
+}
+
 package() {
   cd $srcdir/$pkgname-$pkgver
 



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

2014-07-23 Thread Jonathan Steel
Date: Wednesday, July 23, 2014 @ 22:52:05
  Author: jsteel
Revision: 116195

archrelease: copy trunk to community-any

Added:
  ddclient/repos/community-any/PKGBUILD
(from rev 116194, ddclient/trunk/PKGBUILD)
  ddclient/repos/community-any/ddclient.service
(from rev 116194, ddclient/trunk/ddclient.service)
Deleted:
  ddclient/repos/community-any/PKGBUILD
  ddclient/repos/community-any/ddclient.service

--+
 PKGBUILD |   75 -
 ddclient.service |   22 +++
 2 files changed, 52 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 20:51:52 UTC (rev 116194)
+++ PKGBUILD2014-07-23 20:52:05 UTC (rev 116195)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Abhishek Dasgupta abh...@gmail.com
-# Contributor: David Rosenstrauch dar...@darose.net
-
-pkgname=ddclient
-pkgver=3.8.2
-pkgrel=1
-pkgdesc=Update dynamic DNS entries for accounts on many dynamic DNS services
-arch=('any')
-url=http://ddclient.sourceforge.net;
-license=('GPL2')
-depends=('perl-io-socket-ssl' 'perl-digest-sha1' 'net-tools')
-backup=('etc/ddclient/ddclient.conf')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
-$pkgname.service)
-md5sums=('62cd5fe93ced2c794d5f441f9d908841'
- '1bcd3e75309e658931532adef2a0608a')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
-  install -Dm600 sample-etc_$pkgname.conf $pkgdir/etc/$pkgname/$pkgname.conf
-  install -d $pkgdir/var/cache/$pkgname
-  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-
-  install -Dm644 README.cisco $pkgdir/usr/share/doc/$pkgname/README.cisco
-  install -Dm644 README.md $pkgdir/usr/share/doc/$pkgname/README.md
-  install -Dm644 README.ssl $pkgdir/usr/share/doc/$pkgname/README.ssl
-  install -Dm644 sample-etc_cron.d_$pkgname 
$pkgdir/usr/share/doc/$pkgname/sample-etc_cron.d_$pkgname
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
-}

Copied: ddclient/repos/community-any/PKGBUILD (from rev 116194, 
ddclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 20:52:05 UTC (rev 116195)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Abhishek Dasgupta abh...@gmail.com
+# Contributor: David Rosenstrauch dar...@darose.net
+
+pkgname=ddclient
+pkgver=3.8.2
+pkgrel=2
+pkgdesc=Update dynamic DNS entries for accounts on many dynamic DNS services
+arch=('any')
+url=http://ddclient.sourceforge.net;
+license=('GPL2')
+depends=('perl-io-socket-ssl' 'perl-digest-sha1' 'net-tools')
+backup=('etc/ddclient/ddclient.conf')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
+$pkgname.service)
+md5sums=('62cd5fe93ced2c794d5f441f9d908841'
+ '1bcd3e75309e658931532adef2a0608a')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Fix FS#40645
+  sed -i '2977s/http:/https:/' $pkgname
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm600 sample-etc_$pkgname.conf $pkgdir/etc/$pkgname/$pkgname.conf
+  install -d $pkgdir/var/cache/$pkgname
+  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+
+  install -Dm644 README.cisco $pkgdir/usr/share/doc/$pkgname/README.cisco
+  install -Dm644 README.md $pkgdir/usr/share/doc/$pkgname/README.md
+  install -Dm644 README.ssl $pkgdir/usr/share/doc/$pkgname/README.ssl
+  install -Dm644 sample-etc_cron.d_$pkgname 
$pkgdir/usr/share/doc/$pkgname/sample-etc_cron.d_$pkgname
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+}

Deleted: ddclient.service
===
--- ddclient.service2014-07-23 20:51:52 UTC (rev 116194)
+++ ddclient.service2014-07-23 20:52:05 UTC (rev 116195)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Dynamic DNS Update Client
-After=network.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/ddclient.pid
-ExecStart=/usr/bin/ddclient
-
-[Install]
-WantedBy=multi-user.target

Copied: ddclient/repos/community-any/ddclient.service (from rev 116194, 
ddclient/trunk/ddclient.service)
===
--- ddclient.service(rev 0)
+++ ddclient.service2014-07-23 20:52:05 UTC (rev 116195)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Dynamic DNS Update Client
+After=network.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/ddclient.pid
+ExecStart=/usr/bin/ddclient
+

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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:00:49
  Author: bpiotrowski
Revision: 217749

upgpkg: ffmpeg 1:2.2.5-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 19:12:50 UTC (rev 217748)
+++ PKGBUILD2014-07-23 21:00:49 UTC (rev 217749)
@@ -5,8 +5,8 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.2.4
-pkgrel=3
+pkgver=2.2.5
+pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 )
 makedepends=('libvdpau' 'yasm' 'x264')
 source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('5b85aea53d8dcd5b0f7b497f233bc101'
+md5sums=('a91dbd963f0ed16bf0eacaba98439d00'
  'SKIP')
 
 build() {



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:00:56
  Author: bpiotrowski
Revision: 217750

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-23 21:00:49 UTC (rev 217749)
+++ extra-i686/PKGBUILD 2014-07-23 21:00:56 UTC (rev 217750)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=2.2.4
-pkgrel=3
-epoch=1
-pkgdesc='Complete and free Internet live audio and video broadcasting solution'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL')
-depends=(
-  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
-  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
-  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
-  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265'
-)
-makedepends=('libvdpau' 'yasm' 'x264')
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('5b85aea53d8dcd5b0f7b497f233bc101'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-debug \
---disable-static \
---enable-avisynth \
---enable-avresample \
---enable-decoder=atrac3 \
---enable-decoder=atrac3p \
---enable-dxva2 \
---enable-fontconfig \
---enable-gnutls \
---enable-gpl \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libgsm \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-librtmp \
---enable-libschroedinger \
---enable-libspeex \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvorbis \
---enable-libvpx \
---enable-libx264 \
---enable-libx265 \
---enable-libxvid \
---enable-pic \
---enable-postproc \
---enable-runtime-cpudetect \
---enable-shared \
---enable-swresample \
---enable-vdpau \
---enable-version3 \
---enable-x11grab
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install install-man
-  install -Dm755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 217749, 
ffmpeg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 21:00:56 UTC (rev 217750)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=2.2.5
+pkgrel=1
+epoch=1
+pkgdesc='Complete and free Internet live audio and video broadcasting solution'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
+  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
+  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
+  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265'
+)
+makedepends=('libvdpau' 'yasm' 'x264')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('a91dbd963f0ed16bf0eacaba98439d00'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--disable-static \
+--enable-avisynth \
+--enable-avresample \
+--enable-decoder=atrac3 \
+--enable-decoder=atrac3p \
+--enable-dxva2 \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-librtmp \
+--enable-libschroedinger \
+

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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:13:44
  Author: bpiotrowski
Revision: 116196

upgpkg: umurmur 0.2.14-2

rebuild against polarssl

Modified:
  umurmur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 20:52:05 UTC (rev 116195)
+++ PKGBUILD2014-07-23 21:13:44 UTC (rev 116196)
@@ -1,16 +1,16 @@
 # $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
 # Contributor: Robert Knauer rob...@privatdemail.net
 # Contributor: xav xav at ethertricks dot net
 
 pkgname=umurmur
 pkgver=0.2.14
-pkgrel=1
+pkgrel=2
 pkgdesc='Minimalistic Mumble server'
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/umurmur/'
 license=('custom')
-depends=('openssl' 'libconfig' 'protobuf-c')
+depends=('polarssl' 'libconfig' 'protobuf-c')
 install=$pkgname.install
 backup=('etc/umurmur/umurmur.conf')
 source=(http://umurmur.googlecode.com/files/umurmur-$pkgver.tar.gz
@@ -20,7 +20,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=openssl
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=polarssl
   make
 }
 



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:15:19
  Author: bpiotrowski
Revision: 116197

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

Added:
  umurmur/repos/community-i686/PKGBUILD
(from rev 116196, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-i686/umurmur.install
(from rev 116196, umurmur/trunk/umurmur.install)
  umurmur/repos/community-i686/umurmur.service
(from rev 116196, umurmur/trunk/umurmur.service)
  umurmur/repos/community-x86_64/PKGBUILD
(from rev 116196, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-x86_64/umurmur.install
(from rev 116196, umurmur/trunk/umurmur.install)
  umurmur/repos/community-x86_64/umurmur.service
(from rev 116196, umurmur/trunk/umurmur.service)
Deleted:
  umurmur/repos/community-i686/PKGBUILD
  umurmur/repos/community-i686/umurmur.install
  umurmur/repos/community-i686/umurmur.service
  umurmur/repos/community-x86_64/PKGBUILD
  umurmur/repos/community-x86_64/umurmur.install
  umurmur/repos/community-x86_64/umurmur.service

--+
 /PKGBUILD|   68 +
 /umurmur.install |   26 ++
 /umurmur.service |   30 
 community-i686/PKGBUILD  |   34 --
 community-i686/umurmur.install   |   13 ---
 community-i686/umurmur.service   |   15 
 community-x86_64/PKGBUILD|   34 --
 community-x86_64/umurmur.install |   13 ---
 community-x86_64/umurmur.service |   15 
 9 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 21:13:44 UTC (rev 116196)
+++ community-i686/PKGBUILD 2014-07-23 21:15:19 UTC (rev 116197)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Robert Knauer rob...@privatdemail.net
-# Contributor: xav xav at ethertricks dot net
-
-pkgname=umurmur
-pkgver=0.2.14
-pkgrel=1
-pkgdesc='Minimalistic Mumble server'
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/umurmur/'
-license=('custom')
-depends=('openssl' 'libconfig' 'protobuf-c')
-install=$pkgname.install
-backup=('etc/umurmur/umurmur.conf')
-source=(http://umurmur.googlecode.com/files/umurmur-$pkgver.tar.gz
-umurmur.service)
-md5sums=('e22121b4b91f4c9de43f858f6defa0b0'
- 'd9d556e4ffa77e193fb40ce508804720')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=openssl
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 umurmur.conf.example $pkgdir/etc/umurmur/umurmur.conf
-  install -Dm644 ../umurmur.service 
$pkgdir/usr/lib/systemd/system/umurmur.service
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: umurmur/repos/community-i686/PKGBUILD (from rev 116196, 
umurmur/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-23 21:15:19 UTC (rev 116197)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Robert Knauer rob...@privatdemail.net
+# Contributor: xav xav at ethertricks dot net
+
+pkgname=umurmur
+pkgver=0.2.14
+pkgrel=2
+pkgdesc='Minimalistic Mumble server'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/umurmur/'
+license=('custom')
+depends=('polarssl' 'libconfig' 'protobuf-c')
+install=$pkgname.install
+backup=('etc/umurmur/umurmur.conf')
+source=(http://umurmur.googlecode.com/files/umurmur-$pkgver.tar.gz
+umurmur.service)
+md5sums=('e22121b4b91f4c9de43f858f6defa0b0'
+ 'd9d556e4ffa77e193fb40ce508804720')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=polarssl
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 umurmur.conf.example $pkgdir/etc/umurmur/umurmur.conf
+  install -Dm644 ../umurmur.service 
$pkgdir/usr/lib/systemd/system/umurmur.service
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-i686/umurmur.install
===
--- community-i686/umurmur.install  2014-07-23 21:13:44 UTC (rev 116196)
+++ community-i686/umurmur.install  2014-07-23 21:15:19 UTC (rev 116197)
@@ -1,13 +0,0 @@
-post_install() {
-  getent group umurmur  /dev/null || groupadd -r umurmur 1/dev/null
-  getent passwd umurmur  /dev/null || useradd -r -M -g umurmur -s /bin/false 
umurmur 1/dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  getent passwd umurmur  /dev/null  userdel umurmur 1/dev/null
-  getent group umurmur  /dev/null  groupdel umurmur 1/dev/null
-}

Copied: 

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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:20:44
  Author: bpiotrowski
Revision: 116198

upgpkg: fish 2.1.0-4

add which to depends as 'type' function depends on it (FS#41225)

Modified:
  fish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 21:15:19 UTC (rev 116197)
+++ PKGBUILD2014-07-23 21:20:44 UTC (rev 116198)
@@ -7,12 +7,12 @@
 
 pkgname=fish
 pkgver=2.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Smart and user friendly shell intended mostly for interactive use'
 arch=('i686' 'x86_64')
 url='http://fishshell.com/'
 license=('GPL2')
-depends=('bc' 'gcc-libs' 'inetutils' 'ncurses')
+depends=('bc' 'gcc-libs' 'inetutils' 'ncurses' 'which')
 optdepends=('python: for manual page completion parser and web configuration 
tool')
 install=fish.install
 source=(http://fishshell.com/files/$pkgver/fish-$pkgver.tar.gz



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:21:03
  Author: bpiotrowski
Revision: 116199

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

Added:
  fish/repos/community-i686/CVE-2014-2905.patch
(from rev 116198, fish/trunk/CVE-2014-2905.patch)
  fish/repos/community-i686/CVE-2014-2906.patch
(from rev 116198, fish/trunk/CVE-2014-2906.patch)
  fish/repos/community-i686/PKGBUILD
(from rev 116198, fish/trunk/PKGBUILD)
  fish/repos/community-i686/fish.install
(from rev 116198, fish/trunk/fish.install)
  fish/repos/community-x86_64/CVE-2014-2905.patch
(from rev 116198, fish/trunk/CVE-2014-2905.patch)
  fish/repos/community-x86_64/CVE-2014-2906.patch
(from rev 116198, fish/trunk/CVE-2014-2906.patch)
  fish/repos/community-x86_64/PKGBUILD
(from rev 116198, fish/trunk/PKGBUILD)
  fish/repos/community-x86_64/fish.install
(from rev 116198, fish/trunk/fish.install)
Deleted:
  fish/repos/community-i686/CVE-2014-2905.patch
  fish/repos/community-i686/CVE-2014-2906.patch
  fish/repos/community-i686/PKGBUILD
  fish/repos/community-i686/fish.install
  fish/repos/community-x86_64/CVE-2014-2905.patch
  fish/repos/community-x86_64/CVE-2014-2906.patch
  fish/repos/community-x86_64/PKGBUILD
  fish/repos/community-x86_64/fish.install

--+
 /CVE-2014-2905.patch |  526 +
 /CVE-2014-2906.patch |  134 
 /PKGBUILD|   82 +
 /fish.install|   22 +
 community-i686/CVE-2014-2905.patch   |  263 
 community-i686/CVE-2014-2906.patch   |   67 
 community-i686/PKGBUILD  |   41 --
 community-i686/fish.install  |   11 
 community-x86_64/CVE-2014-2905.patch |  263 
 community-x86_64/CVE-2014-2906.patch |   67 
 community-x86_64/PKGBUILD|   41 --
 community-x86_64/fish.install|   11 
 12 files changed, 764 insertions(+), 764 deletions(-)

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


[arch-commits] Commit in elasticsearch/trunk (6 files)

2014-07-23 Thread Massimiliano Torromeo
Date: Wednesday, July 23, 2014 @ 23:30:54
  Author: mtorromeo
Revision: 116200

upgpkg: elasticsearch 1.3.0-1

Updated to 1.3.0 and fixed FS#41309 and FS#41310

Added:
  elasticsearch/trunk/elasticsearch-tmpfile.conf
Modified:
  elasticsearch/trunk/PKGBUILD
  elasticsearch/trunk/elasticsearch.install
  elasticsearch/trunk/elasticsearch.service
  elasticsearch/trunk/elasticsearch@.service
Deleted:
  elasticsearch/trunk/elasticsearch-user.conf

+
 PKGBUILD   |   23 +++
 elasticsearch-tmpfile.conf |2 ++
 elasticsearch-user.conf|3 ---
 elasticsearch.install  |   10 --
 elasticsearch.service  |2 --
 elasticsearch@.service |2 --
 6 files changed, 21 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 21:21:03 UTC (rev 116199)
+++ PKGBUILD2014-07-23 21:30:54 UTC (rev 116200)
@@ -4,22 +4,28 @@
 # Refactored by Blaž Speed Hrastnik https://github.com/archSeer
 
 pkgname=elasticsearch
-pkgver=1.2.2
-pkgrel=2
+pkgver=1.3.0
+pkgrel=1
 pkgdesc=Distributed RESTful search engine built on top of Lucene
 arch=('i686' 'x86_64')
 url=http://www.elasticsearch.org/;
 license=('APACHE')
-depends=('java-runtime' 'bash' 'systemd')
+depends=('java-runtime' 'systemd')
 install='elasticsearch.install'
 source=(
   http://download.elasticsearch.org/$pkgname/$pkgname/$pkgname-$pkgver.tar.gz;
   elasticsearch.service
   elasticsearch@.service
-  elasticsearch-user.conf
   elasticsearch-sysctl.conf
+  elasticsearch-tmpfile.conf
   elasticsearch.default
 )
+sha256sums=('4e2cf72d4ceaaf250a292c00a320d13d2fdb067ad8aeed969862db3060af4534'
+'f3a6e5b968ffe38edc42c80193f75ab1682a5224c977c8957816d321733aabc4'
+'c3ea4d82da44da8ea9bcb4d7d9cdfb086d25fd8ec2ea457adec290f0d6ebe083'
+'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
+'39ab5801b45c0f49af43c4d1826a655a981bfa07e4b3791d7a0719f8c191d8d9'
+'a0ee0761156a02d3f79db5ef295613c1a6d4267482c8db889d92a94b59feb497')
 
 backup=('etc/elasticsearch/elasticsearch.yml'
 'etc/elasticsearch/logging.yml'
@@ -69,7 +75,7 @@
 
   install -Dm644 $srcdir/elasticsearch.service 
$pkgdir/usr/lib/systemd/system/elasticsearch.service
   install -Dm644 $srcdir/elasticsearch@.service 
$pkgdir/usr/lib/systemd/system/elasticsearch@.service
-  install -Dm644 $srcdir/elasticsearch-user.conf 
$pkgdir/usr/lib/sysusers.d/elasticsearch.conf
+  install -Dm644 $srcdir/elasticsearch-tmpfile.conf 
$pkgdir/usr/lib/tmpfiles.d/elasticsearch.conf
   install -Dm644 $srcdir/elasticsearch-sysctl.conf 
$pkgdir/usr/lib/sysctl.d/elasticsearch.conf
 
   install -Dm644 $srcdir/elasticsearch.default 
$pkgdir/etc/default/elasticsearch
@@ -76,10 +82,3 @@
 
   ln -s ../../../var/lib/elasticsearch $pkgdir/usr/share/elasticsearch/data
 }
-
-sha256sums=('c833d000c7e29e17b4cc5df2e26020c159ee086cdf4ac19f661911cc9aedfbee'
-'4b7c741c2fa2f856cff6b9e83693c2de9d8c00a73812b34133b4446bdcb2e4c8'
-'0c6969af1ab91fc543d4c37fea8f3596872a143281c22a17801703490758ba0a'
-'51a5ebf06f8853b4b4cbf1b13320dd738a82e9f2caab47ca772f157a6bd78063'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'a0ee0761156a02d3f79db5ef295613c1a6d4267482c8db889d92a94b59feb497')

Added: elasticsearch-tmpfile.conf
===
--- elasticsearch-tmpfile.conf  (rev 0)
+++ elasticsearch-tmpfile.conf  2014-07-23 21:30:54 UTC (rev 116200)
@@ -0,0 +1,2 @@
+d /var/log/elasticsearch 0755 elasticsearch elasticsearch - 
+d /var/lib/elasticsearch 0755 elasticsearch elasticsearch - 

Deleted: elasticsearch-user.conf
===
--- elasticsearch-user.conf 2014-07-23 21:21:03 UTC (rev 116199)
+++ elasticsearch-user.conf 2014-07-23 21:30:54 UTC (rev 116200)
@@ -1,3 +0,0 @@
-u elasticsearch 114 Elasticsearch user
-g elasticsearch 114
-m elasticsearch elasticsearch

Modified: elasticsearch.install
===
--- elasticsearch.install   2014-07-23 21:21:03 UTC (rev 116199)
+++ elasticsearch.install   2014-07-23 21:30:54 UTC (rev 116200)
@@ -1,10 +1,16 @@
 post_install() {
-systemd-sysusers elasticsearch.conf
+getent group elasticsearch /dev/null 21 || groupadd -g 114 
elasticsearch /dev/null
+getent passwd elasticsearch /dev/null 21 || useradd -u 114 -g 
elasticsearch -d /usr/share/elasticsearch -s /bin/false elasticsearch 
/dev/null
+
+systemd-tmpfiles --create elasticsearch.conf
 chown -R elasticsearch:elasticsearch /usr/share/elasticsearch
 }
 
 post_upgrade(){
-systemd-sysusers elasticsearch.conf
+getent group elasticsearch /dev/null 21 || groupadd -g 114 
elasticsearch /dev/null
+getent passwd elasticsearch 

[arch-commits] Commit in elasticsearch/repos (28 files)

2014-07-23 Thread Massimiliano Torromeo
Date: Wednesday, July 23, 2014 @ 23:31:20
  Author: mtorromeo
Revision: 116201

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

Added:
  elasticsearch/repos/community-i686/PKGBUILD
(from rev 116200, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
(from rev 116200, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-i686/elasticsearch-tmpfile.conf
(from rev 116200, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-i686/elasticsearch.default
(from rev 116200, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-i686/elasticsearch.install
(from rev 116200, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-i686/elasticsearch.service
(from rev 116200, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-i686/elasticsearch@.service
(from rev 116200, elasticsearch/trunk/elasticsearch@.service)
  elasticsearch/repos/community-x86_64/PKGBUILD
(from rev 116200, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
(from rev 116200, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
(from rev 116200, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-x86_64/elasticsearch.default
(from rev 116200, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-x86_64/elasticsearch.install
(from rev 116200, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-x86_64/elasticsearch.service
(from rev 116200, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-x86_64/elasticsearch@.service
(from rev 116200, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-i686/PKGBUILD
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
  elasticsearch/repos/community-i686/elasticsearch-user.conf
  elasticsearch/repos/community-i686/elasticsearch.default
  elasticsearch/repos/community-i686/elasticsearch.install
  elasticsearch/repos/community-i686/elasticsearch.service
  elasticsearch/repos/community-i686/elasticsearch@.service
  elasticsearch/repos/community-x86_64/PKGBUILD
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
  elasticsearch/repos/community-x86_64/elasticsearch-user.conf
  elasticsearch/repos/community-x86_64/elasticsearch.default
  elasticsearch/repos/community-x86_64/elasticsearch.install
  elasticsearch/repos/community-x86_64/elasticsearch.service
  elasticsearch/repos/community-x86_64/elasticsearch@.service

-+
 /PKGBUILD   |  168 ++
 /elasticsearch-sysctl.conf  |2 
 /elasticsearch.default  |   22 +++
 /elasticsearch.install  |   46 +++
 /elasticsearch.service  |   40 ++
 /elasticsearch@.service |   40 ++
 community-i686/PKGBUILD |   85 -
 community-i686/elasticsearch-sysctl.conf|1 
 community-i686/elasticsearch-tmpfile.conf   |2 
 community-i686/elasticsearch-user.conf  |3 
 community-i686/elasticsearch.default|   11 -
 community-i686/elasticsearch.install|   17 --
 community-i686/elasticsearch.service|   22 ---
 community-i686/elasticsearch@.service   |   22 ---
 community-x86_64/PKGBUILD   |   85 -
 community-x86_64/elasticsearch-sysctl.conf  |1 
 community-x86_64/elasticsearch-tmpfile.conf |2 
 community-x86_64/elasticsearch-user.conf|3 
 community-x86_64/elasticsearch.default  |   11 -
 community-x86_64/elasticsearch.install  |   17 --
 community-x86_64/elasticsearch.service  |   22 ---
 community-x86_64/elasticsearch@.service |   22 ---
 22 files changed, 322 insertions(+), 322 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-23 21:30:54 UTC (rev 116200)
+++ community-i686/PKGBUILD 2014-07-23 21:31:20 UTC (rev 116201)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Marcello mererghost Rocha https://github.com/mereghost
-# Refactored by Blaž Speed Hrastnik https://github.com/archSeer
-
-pkgname=elasticsearch
-pkgver=1.2.2
-pkgrel=2
-pkgdesc=Distributed RESTful search engine built on top of Lucene
-arch=('i686' 'x86_64')
-url=http://www.elasticsearch.org/;
-license=('APACHE')
-depends=('java-runtime' 'bash' 'systemd')
-install='elasticsearch.install'
-source=(
-  http://download.elasticsearch.org/$pkgname/$pkgname/$pkgname-$pkgver.tar.gz;
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-user.conf
- 

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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:36:37
  Author: bpiotrowski
Revision: 217751

upgpkg: ffmpeg 1:2.3-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 21:00:56 UTC (rev 217750)
+++ PKGBUILD2014-07-23 21:36:37 UTC (rev 217751)
@@ -5,7 +5,7 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.2.5
+pkgver=2.3
 pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
@@ -20,7 +20,7 @@
 )
 makedepends=('libvdpau' 'yasm' 'x264')
 source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('a91dbd963f0ed16bf0eacaba98439d00'
+md5sums=('00f98a030d21366b6583875d57d98c27'
  'SKIP')
 
 build() {



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:36:45
  Author: bpiotrowski
Revision: 217752

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

Added:
  ffmpeg/repos/testing-i686/
  ffmpeg/repos/testing-i686/PKGBUILD
(from rev 217751, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/testing-x86_64/
  ffmpeg/repos/testing-x86_64/PKGBUILD
(from rev 217751, ffmpeg/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   82 ++
 testing-x86_64/PKGBUILD |   82 ++
 2 files changed, 164 insertions(+)

Copied: ffmpeg/repos/testing-i686/PKGBUILD (from rev 217751, 
ffmpeg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-23 21:36:45 UTC (rev 217752)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=2.3
+pkgrel=1
+epoch=1
+pkgdesc='Complete and free Internet live audio and video broadcasting solution'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
+  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
+  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
+  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265'
+)
+makedepends=('libvdpau' 'yasm' 'x264')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('00f98a030d21366b6583875d57d98c27'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--disable-static \
+--enable-avisynth \
+--enable-avresample \
+--enable-decoder=atrac3 \
+--enable-decoder=atrac3p \
+--enable-dxva2 \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-librtmp \
+--enable-libschroedinger \
+--enable-libspeex \
+--enable-libtheora \
+--enable-libv4l2 \
+--enable-libvorbis \
+--enable-libvpx \
+--enable-libx264 \
+--enable-libx265 \
+--enable-libxvid \
+--enable-pic \
+--enable-postproc \
+--enable-runtime-cpudetect \
+--enable-shared \
+--enable-swresample \
+--enable-vdpau \
+--enable-version3 \
+--enable-x11grab
+
+  make
+  make tools/qt-faststart
+  make doc/ff{mpeg,play,server}.1
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install install-man
+  install -Dm755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ffmpeg/repos/testing-x86_64/PKGBUILD (from rev 217751, 
ffmpeg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-07-23 21:36:45 UTC (rev 217752)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=2.3
+pkgrel=1
+epoch=1
+pkgdesc='Complete and free Internet live audio and video broadcasting solution'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
+  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
+  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
+  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265'
+)
+makedepends=('libvdpau' 'yasm' 'x264')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('00f98a030d21366b6583875d57d98c27'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--disable-static \
+--enable-avisynth \
+--enable-avresample \
+--enable-decoder=atrac3 \
+--enable-decoder=atrac3p \
+--enable-dxva2 \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-librtmp \
+

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

2014-07-23 Thread Sébastien Luttringer
Date: Wednesday, July 23, 2014 @ 23:41:08
  Author: seblu
Revision: 116202

archrelease: copy trunk to community-testing-x86_64

Added:
  docker/repos/community-testing-x86_64/
  docker/repos/community-testing-x86_64/PKGBUILD
(from rev 116201, docker/trunk/PKGBUILD)
  docker/repos/community-testing-x86_64/docker.install
(from rev 116201, docker/trunk/docker.install)

+
 PKGBUILD   |   53 +
 docker.install |   29 +
 2 files changed, 82 insertions(+)

Copied: docker/repos/community-testing-x86_64/PKGBUILD (from rev 116201, 
docker/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-23 21:41:08 UTC (rev 116202)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer
+
+pkgname=docker
+pkgver=1.1.1
+pkgrel=2
+epoch=1
+pkgdesc='Pack, ship and run any application as a lightweight container'
+arch=('x86_64')
+url='http://www.docker.io/'
+license=('Apache')
+depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
+makedepends=('git' 'go' 'btrfs-progs')
+optdepends=('btrfs-progs: btrfs backend support'
+'lxc: lxc backend support')
+# don't strip binaries! A sha1 is used to check binary consistency.
+options=('!strip')
+install=$pkgname.install
+source=(git+https://github.com/dotcloud/docker.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd docker
+  export AUTO_GOPATH=1
+  ./hack/make.sh dynbinary
+}
+
+#check() {
+#  cd $_magic/docker
+#  # Will be added upstream soon
+#  ./hack/make.sh dyntest
+#}
+
+package() {
+  cd docker
+  install -Dm755 bundles/$pkgver/dynbinary/docker-$pkgver 
$pkgdir/usr/bin/docker
+  install -Dm755 bundles/$pkgver/dynbinary/dockerinit-$pkgver 
$pkgdir/usr/lib/docker/dockerinit
+  # completion
+  install -Dm644 'contrib/completion/bash/docker' 
$pkgdir/usr/share/bash-completion/completions/docker
+  install -Dm644 'contrib/completion/zsh/_docker' 
$pkgdir/usr/share/zsh/site-functions/_docker
+  # systemd
+  install -Dm644 'contrib/init/systemd/socket-activation/docker.service' \
+$pkgdir/usr/lib/systemd/system/docker.service
+  install -Dm644 'contrib/init/systemd/socket-activation/docker.socket' \
+$pkgdir/usr/lib/systemd/system/docker.socket
+  # vim syntax
+  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' \
+$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim
+  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' \
+$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
+}
+
+# vim:set ts=2 sw=2 et:

Copied: docker/repos/community-testing-x86_64/docker.install (from rev 116201, 
docker/trunk/docker.install)
===
--- community-testing-x86_64/docker.install (rev 0)
+++ community-testing-x86_64/docker.install 2014-07-23 21:41:08 UTC (rev 
116202)
@@ -0,0 +1,29 @@
+# arg 1:  the new package version
+post_install() {
+  # create docker group (FS#38029)
+  getent group docker /dev/null || groupadd -g 142 docker
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  (( $(vercmp $2 '1:0.7.1-1')  0 ))   post_install $1 || true
+  (( $(vercmp $2 '1:1.1.1-2')  0 ))   socketactivation || true
+}
+
+# arg 1:  the old package version
+post_remove() {
+  groupdel docker /dev/null 21 || true
+}
+
+socketactivation() {
+  if systemctl -q is-enabled docker; then
+cat  EOF
+The docker service switched to socket activation.
+We will enable the socket file for you. Don't need to thanks us.
+EOF
+systemctl enable docker.socket
+  fi
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:43:48
  Author: bpiotrowski
Revision: 116204

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

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

--+
 community-testing-i686/PKGBUILD  |   53 +
 community-testing-i686/mpv.install   |   12 +++
 community-testing-x86_64/PKGBUILD|   53 +
 community-testing-x86_64/mpv.install |   12 +++
 4 files changed, 130 insertions(+)

Copied: mpv/repos/community-testing-i686/PKGBUILD (from rev 116203, 
mpv/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-23 21:43:48 UTC (rev 116204)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Eivind Uggedal eiv...@uggedal.com
+
+pkgname=mpv
+pkgver=0.4.1
+pkgrel=2
+pkgdesc='Video player based on MPlayer/mplayer2'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl' 'enca'
+  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
+  'libguess' 'portaudio'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa')
+options=('!emptydirs' '!buildflags')
+install=mpv.install
+source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('24dcff8c676388227b280a463f9a05d0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./bootstrap.py
+  sed -i 's/vendor-completions/site-functions/' wscript_build.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./waf configure --prefix=/usr \
+--confdir=/etc/mpv \
+--enable-joystick \
+--enable-zsh-comp \
+--enable-libmpv-shared \
+--enable-cdda \
+--enable-portaudio
+
+  ./waf build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  ./waf install --destdir=$pkgdir
+
+  install -d $pkgdir/usr/share/doc/mpv/examples
+  install -m644 etc/{input,example}.conf \
+$pkgdir/usr/share/doc/mpv/examples
+  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
+$pkgdir/usr/share/doc/mpv
+}

Copied: mpv/repos/community-testing-i686/mpv.install (from rev 116203, 
mpv/trunk/mpv.install)
===
--- community-testing-i686/mpv.install  (rev 0)
+++ community-testing-i686/mpv.install  2014-07-23 21:43:48 UTC (rev 116204)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: mpv/repos/community-testing-x86_64/PKGBUILD (from rev 116203, 
mpv/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-23 21:43:48 UTC (rev 116204)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Eivind Uggedal eiv...@uggedal.com
+
+pkgname=mpv
+pkgver=0.4.1
+pkgrel=2
+pkgdesc='Video player based on MPlayer/mplayer2'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl' 'enca'
+  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
+  'libguess' 'portaudio'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa')
+options=('!emptydirs' '!buildflags')
+install=mpv.install
+source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('24dcff8c676388227b280a463f9a05d0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./bootstrap.py
+  sed -i 's/vendor-completions/site-functions/' wscript_build.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./waf configure --prefix=/usr \
+--confdir=/etc/mpv \
+--enable-joystick \
+--enable-zsh-comp \
+--enable-libmpv-shared \
+--enable-cdda \
+--enable-portaudio
+
+  ./waf build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  ./waf install --destdir=$pkgdir
+
+  install -d $pkgdir/usr/share/doc/mpv/examples
+  install -m644 etc/{input,example}.conf \
+$pkgdir/usr/share/doc/mpv/examples
+  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
+$pkgdir/usr/share/doc/mpv
+}


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

2014-07-23 Thread Bartłomiej Piotrowski
Date: Wednesday, July 23, 2014 @ 23:43:39
  Author: bpiotrowski
Revision: 116203

upgpkg: mpv 0.4.1-2

rebuild against ffmpeg 2.3

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-23 21:41:08 UTC (rev 116202)
+++ PKGBUILD2014-07-23 21:43:39 UTC (rev 116203)
@@ -4,7 +4,7 @@
 
 pkgname=mpv
 pkgver=0.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Video player based on MPlayer/mplayer2'
 arch=('i686' 'x86_64')
 license=('GPL')



[arch-commits] Commit in (12 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:18:32
  Author: seblu
Revision: 217753

Move bind to extra

Added:
  bind/
  bind/repos/
  bind/trunk/
  bind/trunk/01-fix-forgotten-log.patch
  bind/trunk/127.0.0.zone
  bind/trunk/PKGBUILD
  bind/trunk/bind.install
  bind/trunk/localhost.zone
  bind/trunk/named.conf
  bind/trunk/named.logrotate
  bind/trunk/named.service
  bind/trunk/tmpfiles.d

+
 01-fix-forgotten-log.patch |   41 
 127.0.0.zone   |   11 +
 PKGBUILD   |   87 +++
 bind.install   |   23 +++
 localhost.zone |   10 
 named.conf |   64 +++
 named.logrotate|6 ++
 named.service  |   11 +
 tmpfiles.d |1 
 9 files changed, 254 insertions(+)

Added: bind/trunk/01-fix-forgotten-log.patch
===
--- bind/trunk/01-fix-forgotten-log.patch   (rev 0)
+++ bind/trunk/01-fix-forgotten-log.patch   2014-07-23 22:18:32 UTC (rev 
217753)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Added: bind/trunk/127.0.0.zone
===
--- bind/trunk/127.0.0.zone (rev 0)
+++ bind/trunk/127.0.0.zone 2014-07-23 22:18:32 UTC (rev 217753)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Added: bind/trunk/PKGBUILD
===
--- bind/trunk/PKGBUILD (rev 0)
+++ bind/trunk/PKGBUILD 2014-07-23 22:18:32 UTC (rev 217753)
@@ -0,0 +1,87 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez mario_v...@hotmail.com
+
+pkgname=bind
+_pkgver=9.10.0-P2
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='The ISC BIND nameserver'
+url='http://www.isc.org/software/bind/'
+license=('custom:ISC')
+arch=('i686' 'x86_64')
+options=('!makeflags')
+depends=('openssl' 'krb5' 'libxml2' 'libcap')
+provides=('dns-server')
+backup=('etc/logrotate.d/named'
+'etc/named.conf')
+install=$pkgname.install
+source=(http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz{,.asc}
+'01-fix-forgotten-log.patch'
+'root.hint::http://www.internic.net/zones/named.root'
+'tmpfiles.d'
+'named.conf'
+'named.service'
+'named.logrotate'
+'localhost.zone'
+'127.0.0.zone')

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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:19:25
  Author: seblu
Revision: 217754

archrelease: copy trunk to extra-i686

Added:
  bind/repos/extra-i686/
  bind/repos/extra-i686/01-fix-forgotten-log.patch
(from rev 217753, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/extra-i686/127.0.0.zone
(from rev 217753, bind/trunk/127.0.0.zone)
  bind/repos/extra-i686/PKGBUILD
(from rev 217753, bind/trunk/PKGBUILD)
  bind/repos/extra-i686/bind.install
(from rev 217753, bind/trunk/bind.install)
  bind/repos/extra-i686/localhost.zone
(from rev 217753, bind/trunk/localhost.zone)
  bind/repos/extra-i686/named.conf
(from rev 217753, bind/trunk/named.conf)
  bind/repos/extra-i686/named.logrotate
(from rev 217753, bind/trunk/named.logrotate)
  bind/repos/extra-i686/named.service
(from rev 217753, bind/trunk/named.service)
  bind/repos/extra-i686/tmpfiles.d
(from rev 217753, bind/trunk/tmpfiles.d)

+
 01-fix-forgotten-log.patch |   41 
 127.0.0.zone   |   11 +
 PKGBUILD   |   87 +++
 bind.install   |   23 +++
 localhost.zone |   10 
 named.conf |   64 +++
 named.logrotate|6 ++
 named.service  |   11 +
 tmpfiles.d |1 
 9 files changed, 254 insertions(+)

Copied: bind/repos/extra-i686/01-fix-forgotten-log.patch (from rev 217753, 
bind/trunk/01-fix-forgotten-log.patch)
===
--- extra-i686/01-fix-forgotten-log.patch   (rev 0)
+++ extra-i686/01-fix-forgotten-log.patch   2014-07-23 22:19:25 UTC (rev 
217754)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Copied: bind/repos/extra-i686/127.0.0.zone (from rev 217753, 
bind/trunk/127.0.0.zone)
===
--- extra-i686/127.0.0.zone (rev 0)
+++ extra-i686/127.0.0.zone 2014-07-23 22:19:25 UTC (rev 217754)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Copied: bind/repos/extra-i686/PKGBUILD (from rev 217753, bind/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:19:25 UTC (rev 217754)
@@ -0,0 +1,87 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez mario_v...@hotmail.com
+
+pkgname=bind

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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:20:06
  Author: seblu
Revision: 217755

archrelease: copy trunk to extra-x86_64

Added:
  bind/repos/extra-x86_64/
  bind/repos/extra-x86_64/01-fix-forgotten-log.patch
(from rev 217754, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 217754, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 217754, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/bind.install
(from rev 217754, bind/trunk/bind.install)
  bind/repos/extra-x86_64/localhost.zone
(from rev 217754, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 217754, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.logrotate
(from rev 217754, bind/trunk/named.logrotate)
  bind/repos/extra-x86_64/named.service
(from rev 217754, bind/trunk/named.service)
  bind/repos/extra-x86_64/tmpfiles.d
(from rev 217754, bind/trunk/tmpfiles.d)

+
 01-fix-forgotten-log.patch |   41 
 127.0.0.zone   |   11 +
 PKGBUILD   |   87 +++
 bind.install   |   23 +++
 localhost.zone |   10 
 named.conf |   64 +++
 named.logrotate|6 ++
 named.service  |   11 +
 tmpfiles.d |1 
 9 files changed, 254 insertions(+)

Copied: bind/repos/extra-x86_64/01-fix-forgotten-log.patch (from rev 217754, 
bind/trunk/01-fix-forgotten-log.patch)
===
--- extra-x86_64/01-fix-forgotten-log.patch (rev 0)
+++ extra-x86_64/01-fix-forgotten-log.patch 2014-07-23 22:20:06 UTC (rev 
217755)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Copied: bind/repos/extra-x86_64/127.0.0.zone (from rev 217754, 
bind/trunk/127.0.0.zone)
===
--- extra-x86_64/127.0.0.zone   (rev 0)
+++ extra-x86_64/127.0.0.zone   2014-07-23 22:20:06 UTC (rev 217755)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Copied: bind/repos/extra-x86_64/PKGBUILD (from rev 217754, bind/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:20:06 UTC (rev 217755)
@@ -0,0 +1,87 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez 

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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:23:30
  Author: seblu
Revision: 116206

db-remove: bind removed by seblu

Deleted:
  bind/repos/community-x86_64/



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:23:15
  Author: seblu
Revision: 116205

db-remove: bind removed by seblu

Deleted:
  bind/repos/community-i686/



[arch-commits] Commit in (bind)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:24:44
  Author: seblu
Revision: 116207

Moved to extra

Deleted:
  bind/



[arch-commits] Commit in (7 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:32:52
  Author: seblu
Revision: 217756

community2extra: Moving ebtables from community to extra

Added:
  ebtables/
  ebtables/repos/
  ebtables/trunk/
  ebtables/trunk/PKGBUILD
  ebtables/trunk/ebtables.install
  ebtables/trunk/ebtables.service
  ebtables/trunk/ebtables.systemd

--+
 PKGBUILD |   51 +++
 ebtables.install |9 +
 ebtables.service |   11 +++
 ebtables.systemd |   21 +
 4 files changed, 92 insertions(+)

Added: ebtables/trunk/PKGBUILD
===
--- ebtables/trunk/PKGBUILD (rev 0)
+++ ebtables/trunk/PKGBUILD 2014-07-23 22:32:52 UTC (rev 217756)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=ebtables
+pkgver=2.0.10_4
+pkgrel=4
+pkgdesc='Ethernet bridge filtering utilities'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('perl' 'bash')
+license=('GPL2')
+backup=(etc/$pkgname.conf)
+# ebtables segfault with --as-needed
+options=('!buildflags')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-v${pkgver/_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('506742a3d44b9925955425a659c1a8d0'
+ 'b4c329060809e5b290ae49fbd0ad61f2'
+ 'baf923443c3b16277e50d60d2e68f534')
+
+build() {
+  cd $pkgname-v${pkgver/_/-}
+  make CFLAGS='-Wunused -Wall -Werror -Wno-error=unused-but-set-variable'
+}
+
+package() {
+  pushd $pkgname-v${pkgver/_/-}
+  make install \
+DESTDIR=$pkgdir \
+LIBDIR=/usr/lib \
+MANDIR=/usr/share/man \
+BINDIR=/usr/bin \
+INITDIR=/etc/rc.d \
+SYSCONFIGDIR=/etc
+  popd
+  # rm package ebtables rc.d scripts
+  rm $pkgdir/etc/ebtables-config
+  rm -r $pkgdir/etc/rc.d
+  # systemd
+  install -Dm 755 $pkgname.systemd \
+$pkgdir/usr/lib/systemd/scripts/$pkgname
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: ebtables/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ebtables/trunk/ebtables.install
===
--- ebtables/trunk/ebtables.install (rev 0)
+++ ebtables/trunk/ebtables.install 2014-07-23 22:32:52 UTC (rev 217756)
@@ -0,0 +1,9 @@
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  [ $(vercmp $2 '2.0.10_4-1') -gt 0 ] || cat EOF
+Config file have been moved to /etc/ebtables.conf and only support text format.
+EOF
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Added: ebtables/trunk/ebtables.service
===
--- ebtables/trunk/ebtables.service (rev 0)
+++ ebtables/trunk/ebtables.service 2014-07-23 22:32:52 UTC (rev 217756)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Ethernet bridge table
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/lib/systemd/scripts/ebtables start
+ExecStop=/usr/lib/systemd/scripts/ebtables stop
+
+[Install]
+WantedBy=multi-user.target

Added: ebtables/trunk/ebtables.systemd
===
--- ebtables/trunk/ebtables.systemd (rev 0)
+++ ebtables/trunk/ebtables.systemd 2014-07-23 22:32:52 UTC (rev 217756)
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+CONFIG_FILE='/etc/ebtables.conf'
+
+case $1 in
+  start)
+ebtables-restore  $CONFIG_FILE
+  ;;
+  stop)
+ebtables -F
+  ;;
+  save)
+ebtables-save  $CONFIG_FILE
+  ;;
+  *)
+echo usage: ${0##*/} {start|stop|save} 2
+exit 1
+  ;;
+esac
+
+# vim:set ts=2 sw=2 ft=sh et:



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:33:19
  Author: seblu
Revision: 217757

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

Added:
  ebtables/repos/extra-i686/
  ebtables/repos/extra-i686/PKGBUILD
(from rev 217756, ebtables/trunk/PKGBUILD)
  ebtables/repos/extra-i686/ebtables.install
(from rev 217756, ebtables/trunk/ebtables.install)
  ebtables/repos/extra-i686/ebtables.service
(from rev 217756, ebtables/trunk/ebtables.service)
  ebtables/repos/extra-i686/ebtables.systemd
(from rev 217756, ebtables/trunk/ebtables.systemd)
  ebtables/repos/extra-x86_64/
  ebtables/repos/extra-x86_64/PKGBUILD
(from rev 217756, ebtables/trunk/PKGBUILD)
  ebtables/repos/extra-x86_64/ebtables.install
(from rev 217756, ebtables/trunk/ebtables.install)
  ebtables/repos/extra-x86_64/ebtables.service
(from rev 217756, ebtables/trunk/ebtables.service)
  ebtables/repos/extra-x86_64/ebtables.systemd
(from rev 217756, ebtables/trunk/ebtables.systemd)

---+
 extra-i686/PKGBUILD   |   51 
 extra-i686/ebtables.install   |9 +++
 extra-i686/ebtables.service   |   11 
 extra-i686/ebtables.systemd   |   21 
 extra-x86_64/PKGBUILD |   51 
 extra-x86_64/ebtables.install |9 +++
 extra-x86_64/ebtables.service |   11 
 extra-x86_64/ebtables.systemd |   21 
 8 files changed, 184 insertions(+)

Copied: ebtables/repos/extra-i686/PKGBUILD (from rev 217756, 
ebtables/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:33:19 UTC (rev 217757)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=ebtables
+pkgver=2.0.10_4
+pkgrel=4
+pkgdesc='Ethernet bridge filtering utilities'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('perl' 'bash')
+license=('GPL2')
+backup=(etc/$pkgname.conf)
+# ebtables segfault with --as-needed
+options=('!buildflags')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-v${pkgver/_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('506742a3d44b9925955425a659c1a8d0'
+ 'b4c329060809e5b290ae49fbd0ad61f2'
+ 'baf923443c3b16277e50d60d2e68f534')
+
+build() {
+  cd $pkgname-v${pkgver/_/-}
+  make CFLAGS='-Wunused -Wall -Werror -Wno-error=unused-but-set-variable'
+}
+
+package() {
+  pushd $pkgname-v${pkgver/_/-}
+  make install \
+DESTDIR=$pkgdir \
+LIBDIR=/usr/lib \
+MANDIR=/usr/share/man \
+BINDIR=/usr/bin \
+INITDIR=/etc/rc.d \
+SYSCONFIGDIR=/etc
+  popd
+  # rm package ebtables rc.d scripts
+  rm $pkgdir/etc/ebtables-config
+  rm -r $pkgdir/etc/rc.d
+  # systemd
+  install -Dm 755 $pkgname.systemd \
+$pkgdir/usr/lib/systemd/scripts/$pkgname
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ebtables/repos/extra-i686/ebtables.install (from rev 217756, 
ebtables/trunk/ebtables.install)
===
--- extra-i686/ebtables.install (rev 0)
+++ extra-i686/ebtables.install 2014-07-23 22:33:19 UTC (rev 217757)
@@ -0,0 +1,9 @@
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  [ $(vercmp $2 '2.0.10_4-1') -gt 0 ] || cat EOF
+Config file have been moved to /etc/ebtables.conf and only support text format.
+EOF
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: ebtables/repos/extra-i686/ebtables.service (from rev 217756, 
ebtables/trunk/ebtables.service)
===
--- extra-i686/ebtables.service (rev 0)
+++ extra-i686/ebtables.service 2014-07-23 22:33:19 UTC (rev 217757)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Ethernet bridge table
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/lib/systemd/scripts/ebtables start
+ExecStop=/usr/lib/systemd/scripts/ebtables stop
+
+[Install]
+WantedBy=multi-user.target

Copied: ebtables/repos/extra-i686/ebtables.systemd (from rev 217756, 
ebtables/trunk/ebtables.systemd)
===
--- extra-i686/ebtables.systemd (rev 0)
+++ extra-i686/ebtables.systemd 2014-07-23 22:33:19 UTC (rev 217757)
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+CONFIG_FILE='/etc/ebtables.conf'
+
+case $1 in
+  start)
+ebtables-restore  $CONFIG_FILE
+  ;;
+  stop)
+ebtables -F
+  ;;
+  save)
+ebtables-save  $CONFIG_FILE
+  ;;
+  *)
+echo usage: ${0##*/} {start|stop|save} 2
+exit 1
+  ;;
+esac
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: 

[arch-commits] Commit in (ebtables)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:33:48
  Author: seblu
Revision: 116210

community2extra: Moving ebtables from community to extra

Deleted:
  ebtables/



[arch-commits] Commit in (6 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:34:21
  Author: seblu
Revision: 217758

community2extra: Moving arptables from community to extra

Added:
  arptables/
  arptables/repos/
  arptables/trunk/
  arptables/trunk/PKGBUILD
  arptables/trunk/arptables.service
  arptables/trunk/arptables.systemd

---+
 PKGBUILD  |   49 +
 arptables.service |   11 +++
 arptables.systemd |   21 +
 3 files changed, 81 insertions(+)

Added: arptables/trunk/PKGBUILD
===
--- arptables/trunk/PKGBUILD(rev 0)
+++ arptables/trunk/PKGBUILD2014-07-23 22:34:21 UTC (rev 217758)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=arptables
+pkgver=0.0.4
+pkgrel=2
+pkgdesc='ARP filtering utility'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('glibc' 'perl' 'bash')
+license=('GPL')
+backup=(etc/$pkgname.conf)
+source=(http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
+ 'e54342a833c52b2bc67e7985e8f8fdfd'
+ 'b26771191e52905d8aea6333c26cb1c3')
+
+build() {
+  cd $pkgname-v${pkgver//_/-}
+  make
+}
+
+package() {
+  pushd $pkgname-v${pkgver//_/-}
+  make install \
+DESTDIR=$pkgdir \
+PREFIX=/usr \
+LIBDIR=/usr/lib/arptables \
+BINDIR=/usr/bin \
+MANDIR=/usr/share/man \
+INITDIR=/etc/rc.d \
+SYSCONFIGDIR=/etc
+  popd
+  # systemd
+  install -Dm 755 $pkgname.systemd \
+$pkgdir/usr/lib/systemd/scripts/$pkgname
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+  # remove upstream rc
+  rm -rf $pkgdir/etc/rc.d
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: arptables/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: arptables/trunk/arptables.service
===
--- arptables/trunk/arptables.service   (rev 0)
+++ arptables/trunk/arptables.service   2014-07-23 22:34:21 UTC (rev 217758)
@@ -0,0 +1,11 @@
+[Unit]
+Description=ARP Tables
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/lib/systemd/scripts/arptables start
+ExecStop=/usr/lib/systemd/scripts/arptables stop
+
+[Install]
+WantedBy=multi-user.target

Added: arptables/trunk/arptables.systemd
===
--- arptables/trunk/arptables.systemd   (rev 0)
+++ arptables/trunk/arptables.systemd   2014-07-23 22:34:21 UTC (rev 217758)
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+CONFIG_FILE='/etc/arptables.conf'
+
+case $1 in
+  start)
+arptables-restore  $CONFIG_FILE
+  ;;
+  stop)
+arptables-restore  /dev/null
+  ;;
+  save)
+arptables-save  $CONFIG_FILE
+  ;;
+  *)
+echo usage: ${0##*/} {start|stop|save} 2
+exit 1
+  ;;
+esac
+
+# vim:set ts=2 sw=2 ft=sh et:



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:34:43
  Author: seblu
Revision: 217759

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

Added:
  arptables/repos/extra-i686/
  arptables/repos/extra-i686/PKGBUILD
(from rev 217758, arptables/trunk/PKGBUILD)
  arptables/repos/extra-i686/arptables.service
(from rev 217758, arptables/trunk/arptables.service)
  arptables/repos/extra-i686/arptables.systemd
(from rev 217758, arptables/trunk/arptables.systemd)
  arptables/repos/extra-x86_64/
  arptables/repos/extra-x86_64/PKGBUILD
(from rev 217758, arptables/trunk/PKGBUILD)
  arptables/repos/extra-x86_64/arptables.service
(from rev 217758, arptables/trunk/arptables.service)
  arptables/repos/extra-x86_64/arptables.systemd
(from rev 217758, arptables/trunk/arptables.systemd)

+
 extra-i686/PKGBUILD|   49 +++
 extra-i686/arptables.service   |   11 
 extra-i686/arptables.systemd   |   21 
 extra-x86_64/PKGBUILD  |   49 +++
 extra-x86_64/arptables.service |   11 
 extra-x86_64/arptables.systemd |   21 
 6 files changed, 162 insertions(+)

Copied: arptables/repos/extra-i686/PKGBUILD (from rev 217758, 
arptables/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:34:43 UTC (rev 217759)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=arptables
+pkgver=0.0.4
+pkgrel=2
+pkgdesc='ARP filtering utility'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('glibc' 'perl' 'bash')
+license=('GPL')
+backup=(etc/$pkgname.conf)
+source=(http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
+ 'e54342a833c52b2bc67e7985e8f8fdfd'
+ 'b26771191e52905d8aea6333c26cb1c3')
+
+build() {
+  cd $pkgname-v${pkgver//_/-}
+  make
+}
+
+package() {
+  pushd $pkgname-v${pkgver//_/-}
+  make install \
+DESTDIR=$pkgdir \
+PREFIX=/usr \
+LIBDIR=/usr/lib/arptables \
+BINDIR=/usr/bin \
+MANDIR=/usr/share/man \
+INITDIR=/etc/rc.d \
+SYSCONFIGDIR=/etc
+  popd
+  # systemd
+  install -Dm 755 $pkgname.systemd \
+$pkgdir/usr/lib/systemd/scripts/$pkgname
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+  # remove upstream rc
+  rm -rf $pkgdir/etc/rc.d
+}
+
+# vim:set ts=2 sw=2 et:

Copied: arptables/repos/extra-i686/arptables.service (from rev 217758, 
arptables/trunk/arptables.service)
===
--- extra-i686/arptables.service(rev 0)
+++ extra-i686/arptables.service2014-07-23 22:34:43 UTC (rev 217759)
@@ -0,0 +1,11 @@
+[Unit]
+Description=ARP Tables
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/lib/systemd/scripts/arptables start
+ExecStop=/usr/lib/systemd/scripts/arptables stop
+
+[Install]
+WantedBy=multi-user.target

Copied: arptables/repos/extra-i686/arptables.systemd (from rev 217758, 
arptables/trunk/arptables.systemd)
===
--- extra-i686/arptables.systemd(rev 0)
+++ extra-i686/arptables.systemd2014-07-23 22:34:43 UTC (rev 217759)
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+CONFIG_FILE='/etc/arptables.conf'
+
+case $1 in
+  start)
+arptables-restore  $CONFIG_FILE
+  ;;
+  stop)
+arptables-restore  /dev/null
+  ;;
+  save)
+arptables-save  $CONFIG_FILE
+  ;;
+  *)
+echo usage: ${0##*/} {start|stop|save} 2
+exit 1
+  ;;
+esac
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: arptables/repos/extra-x86_64/PKGBUILD (from rev 217758, 
arptables/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:34:43 UTC (rev 217759)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=arptables
+pkgver=0.0.4
+pkgrel=2
+pkgdesc='ARP filtering utility'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('glibc' 'perl' 'bash')
+license=('GPL')
+backup=(etc/$pkgname.conf)
+source=(http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
+ 'e54342a833c52b2bc67e7985e8f8fdfd'
+ 'b26771191e52905d8aea6333c26cb1c3')
+
+build() 

[arch-commits] Commit in (arptables)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:35:11
  Author: seblu
Revision: 116213

community2extra: Moving arptables from community to extra

Deleted:
  arptables/



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:35:27
  Author: seblu
Revision: 217760

community2extra: Moving libmnl from community to extra

Added:
  libmnl/
  libmnl/repos/
  libmnl/trunk/
  libmnl/trunk/PKGBUILD

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

Added: libmnl/trunk/PKGBUILD
===
--- libmnl/trunk/PKGBUILD   (rev 0)
+++ libmnl/trunk/PKGBUILD   2014-07-23 22:35:27 UTC (rev 217760)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Christian Hesse m...@earthworm.de
+
+pkgname=libmnl
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='Minimalistic user-space library oriented to Netlink developers.'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libmnl/'
+license=('LGPL2.1')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+sha1sums=('c27e25f67c6422ebf893fc3a844af8085a1c5b63')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: libmnl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:35:47
  Author: seblu
Revision: 217761

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

Added:
  libmnl/repos/extra-i686/
  libmnl/repos/extra-i686/PKGBUILD
(from rev 217760, libmnl/trunk/PKGBUILD)
  libmnl/repos/extra-x86_64/
  libmnl/repos/extra-x86_64/PKGBUILD
(from rev 217760, libmnl/trunk/PKGBUILD)

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

Copied: libmnl/repos/extra-i686/PKGBUILD (from rev 217760, 
libmnl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:35:47 UTC (rev 217761)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Christian Hesse m...@earthworm.de
+
+pkgname=libmnl
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='Minimalistic user-space library oriented to Netlink developers.'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libmnl/'
+license=('LGPL2.1')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+sha1sums=('c27e25f67c6422ebf893fc3a844af8085a1c5b63')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libmnl/repos/extra-x86_64/PKGBUILD (from rev 217760, 
libmnl/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:35:47 UTC (rev 217761)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Christian Hesse m...@earthworm.de
+
+pkgname=libmnl
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='Minimalistic user-space library oriented to Netlink developers.'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libmnl/'
+license=('LGPL2.1')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+sha1sums=('c27e25f67c6422ebf893fc3a844af8085a1c5b63')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (libmnl)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:36:16
  Author: seblu
Revision: 116216

community2extra: Moving libmnl from community to extra

Deleted:
  libmnl/



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:36:56
  Author: seblu
Revision: 217763

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

Added:
  libnftnl/repos/extra-i686/
  libnftnl/repos/extra-i686/PKGBUILD
(from rev 217762, libnftnl/trunk/PKGBUILD)
  libnftnl/repos/extra-x86_64/
  libnftnl/repos/extra-x86_64/PKGBUILD
(from rev 217762, libnftnl/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   32 
 extra-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libnftnl/repos/extra-i686/PKGBUILD (from rev 217762, 
libnftnl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:36:56 UTC (rev 217763)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('i686' 'x86_64')
+url='http://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+source=(http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2{,.sig})
+sha1sums=('19b6903b3dc2a86cc13bb560ae55f779b92cae69'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libnftnl/repos/extra-x86_64/PKGBUILD (from rev 217762, 
libnftnl/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:36:56 UTC (rev 217763)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('i686' 'x86_64')
+url='http://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+source=(http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2{,.sig})
+sha1sums=('19b6903b3dc2a86cc13bb560ae55f779b92cae69'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:36:32
  Author: seblu
Revision: 217762

community2extra: Moving libnftnl from community to extra

Added:
  libnftnl/
  libnftnl/repos/
  libnftnl/trunk/
  libnftnl/trunk/PKGBUILD

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

Added: libnftnl/trunk/PKGBUILD
===
--- libnftnl/trunk/PKGBUILD (rev 0)
+++ libnftnl/trunk/PKGBUILD 2014-07-23 22:36:32 UTC (rev 217762)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('i686' 'x86_64')
+url='http://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+source=(http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2{,.sig})
+sha1sums=('19b6903b3dc2a86cc13bb560ae55f779b92cae69'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: libnftnl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (libnftnl)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:37:26
  Author: seblu
Revision: 116219

community2extra: Moving libnftnl from community to extra

Deleted:
  libnftnl/



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:38:00
  Author: seblu
Revision: 217765

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

Added:
  ipset/repos/extra-i686/
  ipset/repos/extra-i686/PKGBUILD
(from rev 217764, ipset/trunk/PKGBUILD)
  ipset/repos/extra-i686/ipset.service
(from rev 217764, ipset/trunk/ipset.service)
  ipset/repos/extra-x86_64/
  ipset/repos/extra-x86_64/PKGBUILD
(from rev 217764, ipset/trunk/PKGBUILD)
  ipset/repos/extra-x86_64/ipset.service
(from rev 217764, ipset/trunk/ipset.service)

+
 extra-i686/PKGBUILD|   40 
 extra-i686/ipset.service   |   13 +
 extra-x86_64/PKGBUILD  |   40 
 extra-x86_64/ipset.service |   13 +
 4 files changed, 106 insertions(+)

Copied: ipset/repos/extra-i686/PKGBUILD (from rev 217764, ipset/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:38:00 UTC (rev 217765)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.21.1
+pkgrel=2
+pkgdesc='Administration tool for IP sets'
+arch=('i686' 'x86_64')
+url='http://ipset.netfilter.org'
+license=('GPL2')
+depends=('libmnl')
+backup=(etc/$pkgname.conf)
+source=(http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2;
+$pkgname.service)
+md5sums=('9c136fd51694eb0ef259cda085145da0'
+ '60ebe10f071314fc9e8647440a02467c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install doc
+  install -dm755 $pkgdir/usr/share/doc/$pkgname
+  install -m644 README UPGRADE ChangeLog $pkgdir/usr/share/doc/$pkgname
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc $pkgdir/usr/lib/pkgconfig/libipset.pc
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ipset/repos/extra-i686/ipset.service (from rev 217764, 
ipset/trunk/ipset.service)
===
--- extra-i686/ipset.service(rev 0)
+++ extra-i686/ipset.service2014-07-23 22:38:00 UTC (rev 217765)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Loading IP Sets
+Before=iptables.service ip6tables.service
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset destroy
+
+[Install]
+WantedBy=multi-user.target

Copied: ipset/repos/extra-x86_64/PKGBUILD (from rev 217764, 
ipset/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:38:00 UTC (rev 217765)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.21.1
+pkgrel=2
+pkgdesc='Administration tool for IP sets'
+arch=('i686' 'x86_64')
+url='http://ipset.netfilter.org'
+license=('GPL2')
+depends=('libmnl')
+backup=(etc/$pkgname.conf)
+source=(http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2;
+$pkgname.service)
+md5sums=('9c136fd51694eb0ef259cda085145da0'
+ '60ebe10f071314fc9e8647440a02467c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install doc
+  install -dm755 $pkgdir/usr/share/doc/$pkgname
+  install -m644 README UPGRADE ChangeLog $pkgdir/usr/share/doc/$pkgname
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc $pkgdir/usr/lib/pkgconfig/libipset.pc
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ipset/repos/extra-x86_64/ipset.service (from rev 217764, 
ipset/trunk/ipset.service)
===
--- extra-x86_64/ipset.service  (rev 0)
+++ extra-x86_64/ipset.service  2014-07-23 22:38:00 UTC (rev 217765)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Loading IP Sets
+Before=iptables.service ip6tables.service
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset destroy
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in (5 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:37:42
  Author: seblu
Revision: 217764

community2extra: Moving ipset from community to extra

Added:
  ipset/
  ipset/repos/
  ipset/trunk/
  ipset/trunk/PKGBUILD
  ipset/trunk/ipset.service

---+
 PKGBUILD  |   40 
 ipset.service |   13 +
 2 files changed, 53 insertions(+)

Added: ipset/trunk/PKGBUILD
===
--- ipset/trunk/PKGBUILD(rev 0)
+++ ipset/trunk/PKGBUILD2014-07-23 22:37:42 UTC (rev 217764)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.21.1
+pkgrel=2
+pkgdesc='Administration tool for IP sets'
+arch=('i686' 'x86_64')
+url='http://ipset.netfilter.org'
+license=('GPL2')
+depends=('libmnl')
+backup=(etc/$pkgname.conf)
+source=(http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2;
+$pkgname.service)
+md5sums=('9c136fd51694eb0ef259cda085145da0'
+ '60ebe10f071314fc9e8647440a02467c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install doc
+  install -dm755 $pkgdir/usr/share/doc/$pkgname
+  install -m644 README UPGRADE ChangeLog $pkgdir/usr/share/doc/$pkgname
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc $pkgdir/usr/lib/pkgconfig/libipset.pc
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: ipset/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ipset/trunk/ipset.service
===
--- ipset/trunk/ipset.service   (rev 0)
+++ ipset/trunk/ipset.service   2014-07-23 22:37:42 UTC (rev 217764)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Loading IP Sets
+Before=iptables.service ip6tables.service
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset destroy
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in (ipset)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:38:30
  Author: seblu
Revision: 116222

community2extra: Moving ipset from community to extra

Deleted:
  ipset/



[arch-commits] Commit in (4 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:39:00
  Author: seblu
Revision: 217766

community2extra: Moving libnfnetlink from community to extra

Added:
  libnfnetlink/
  libnfnetlink/repos/
  libnfnetlink/trunk/
  libnfnetlink/trunk/PKGBUILD

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

Added: libnfnetlink/trunk/PKGBUILD
===
--- libnfnetlink/trunk/PKGBUILD (rev 0)
+++ libnfnetlink/trunk/PKGBUILD 2014-07-23 22:39:00 UTC (rev 217766)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sébastien Luttringer
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnfnetlink
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='Low-level library for netfilter related kernel/userspace 
communication'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libnfnetlink/'
+license=('GPL')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+md5sums=('98927583d2016a9fb1936fed992e2c5e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: libnfnetlink/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (libnfnetlink)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:39:52
  Author: seblu
Revision: 116225

community2extra: Moving libnfnetlink from community to extra

Deleted:
  libnfnetlink/



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

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:39:24
  Author: seblu
Revision: 217767

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

Added:
  libnfnetlink/repos/extra-i686/
  libnfnetlink/repos/extra-i686/PKGBUILD
(from rev 217766, libnfnetlink/trunk/PKGBUILD)
  libnfnetlink/repos/extra-x86_64/
  libnfnetlink/repos/extra-x86_64/PKGBUILD
(from rev 217766, libnfnetlink/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   29 +
 extra-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: libnfnetlink/repos/extra-i686/PKGBUILD (from rev 217766, 
libnfnetlink/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:39:24 UTC (rev 217767)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sébastien Luttringer
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnfnetlink
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='Low-level library for netfilter related kernel/userspace 
communication'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libnfnetlink/'
+license=('GPL')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+md5sums=('98927583d2016a9fb1936fed992e2c5e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libnfnetlink/repos/extra-x86_64/PKGBUILD (from rev 217766, 
libnfnetlink/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:39:24 UTC (rev 217767)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sébastien Luttringer
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnfnetlink
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='Low-level library for netfilter related kernel/userspace 
communication'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/libnfnetlink/'
+license=('GPL')
+depends=('glibc')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2;)
+md5sums=('98927583d2016a9fb1936fed992e2c5e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (4 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:40:43
  Author: seblu
Revision: 217768

community2extra: Moving libnetfilter_acct from community to extra

Added:
  libnetfilter_acct/
  libnetfilter_acct/repos/
  libnetfilter_acct/trunk/
  libnetfilter_acct/trunk/PKGBUILD

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

Added: libnetfilter_acct/trunk/PKGBUILD
===
--- libnetfilter_acct/trunk/PKGBUILD(rev 0)
+++ libnetfilter_acct/trunk/PKGBUILD2014-07-23 22:40:43 UTC (rev 217768)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sébastien Luttringer
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+# Maintainer: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnetfilter_acct
+pkgver=1.0.2
+pkgrel=2
+pkgdesc='Library providing interface to extended accounting infrastructure'
+arch=('i686' 'x86_64')
+url=http://www.netfilter.org/projects/libnetfilter_acct/index.html;
+license=('GPL')
+depends=('libnfnetlink' 'libmnl')
+makedepends=('pkgconfig')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('2118d9514c079839ebd9cb3144ad2ad7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: libnetfilter_acct/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


  1   2   >