[arch-commits] Commit in lua (9 files)

2015-05-03 Thread Anatol Pomozov
Date: Sunday, May 3, 2015 @ 08:36:25
  Author: anatolik
Revision: 238377

Update Lua to 5.3.0

Add lua52 package for packages that needs older lua

Added:
  lua52/
  lua52/trunk/
  lua52/trunk/LICENSE
  lua52/trunk/PKGBUILD
  lua52/trunk/liblua.so.patch
  lua52/trunk/lua.pc
Modified:
  lua/trunk/PKGBUILD
  lua/trunk/liblua.so.patch
  lua51/trunk/PKGBUILD

--+
 51/trunk/PKGBUILD|8 ++---
 52/trunk/LICENSE |   30 +
 52/trunk/PKGBUILD|   63 +
 52/trunk/liblua.so.patch |   57 
 52/trunk/lua.pc  |   20 ++
 trunk/PKGBUILD   |   34 +++-
 trunk/liblua.so.patch|   49 ++-
 7 files changed, 216 insertions(+), 45 deletions(-)

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2015-05-03 05:31:30 UTC (rev 238376)
+++ trunk/PKGBUILD  2015-05-03 06:36:25 UTC (rev 238377)
@@ -4,50 +4,48 @@
 # Contributor: Damir Perisa damir.per...@bluewin.ch
 
 pkgname=lua
-pkgver=5.2.4
+pkgver=5.3.0
 pkgrel=1
-pkgdesc='Powerful light-weight programming language designed for extending 
applications'
+pkgdesc='Powerful lightweight programming language designed for extending 
applications'
 arch=('i686' 'x86_64')
 url='http://www.lua.org/'
 depends=('readline')
 license=('MIT')
-options=('!makeflags' '!emptydirs')
-source=(http://www.lua.org/ftp/$pkgname-$pkgver.tar.gz
+options=('!emptydirs')
+source=(http://www.lua.org/ftp/lua-$pkgver.tar.gz
 liblua.so.patch
 lua.pc
 LICENSE)
-md5sums=('913fdb32207046b273fdb17aad70be13'
- 'bdc663c7b82ffc0b5df67611621fb625'
+md5sums=('a1b0a7e92d0c85bbff7a8d27bf29f8af'
+ '85fe4e5f780376457eba3bc23d2cb2d3'
  'e7ba6c2b695b0b84a5ea0cbff5fc9067'
  '0e2bd67b909b9ff673da844ca3480df2')
 
 prepare() {
-  cd $pkgname-$pkgver
+  cd lua-$pkgver
   patch -p1 -i ../liblua.so.patch
+
+  sed s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g ../lua.pc  lua.pc
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd lua-$pkgver
 
-  export CFLAGS=$CFLAGS -fPIC
-  make MYCFLAGS=$CFLAGS MYLDFLAGS=$LDFLAGS linux
-
-  sed s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g ../lua.pc  lua.pc
+  make MYCFLAGS=$CFLAGS -fPIC MYLDFLAGS=$LDFLAGS linux
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd lua-$pkgver
 
   make \
-TO_LIB='liblua.a liblua.so liblua.so.5.2 liblua.so.5.2.4' \
+TO_LIB=liblua.a liblua.so liblua.so.5.3 liblua.so.$pkgver \
 INSTALL_DATA='cp -d' \
 INSTALL_TOP=$pkgdir/usr \
 INSTALL_MAN=$pkgdir/usr/share/man/man1 \
 install
-  install -Dm644 lua.pc $pkgdir/usr/lib/pkgconfig/lua.pc
+  install -Dm644 lua.pc $pkgdir/usr/lib/pkgconfig/$pkgname.pc
 
-  # Install the documentation
-  install -d $pkgdir/usr/share/doc/lua
-  install -m644 doc/*.{gif,png,css,html} $pkgdir/usr/share/doc/lua
+  install -d $pkgdir/usr/share/doc/$pkgname
+  install -m644 doc/*.{gif,png,css,html} $pkgdir/usr/share/doc/$pkgname
   install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }

Modified: trunk/liblua.so.patch
===
--- trunk/liblua.so.patch   2015-05-03 05:31:30 UTC (rev 238376)
+++ trunk/liblua.so.patch   2015-05-03 06:36:25 UTC (rev 238377)
@@ -1,7 +1,8 @@
-diff -ru lua-5.2.1/Makefile lua-5.2.1.new/Makefile
 lua-5.2.1/Makefile 2012-05-17 16:05:54.0 +0200
-+++ lua-5.2.1.new/Makefile 2012-09-12 22:39:07.162748096 +0200
-@@ -52,7 +52,7 @@
+diff --git a/Makefile b/Makefile
+index 7fa91c8..dccf485 100644
+--- a/Makefile
 b/Makefile
+@@ -52,7 +52,7 @@ R= $V.0
  all:  $(PLAT)
  
  $(PLATS) clean:
@@ -10,30 +11,19 @@
  
  test: dummy
src/lua -v
-diff -ru lua-5.2.1/src/luaconf.h lua-5.2.1.new/src/luaconf.h
 lua-5.2.1/src/luaconf.h2012-05-11 16:14:42.0 +0200
-+++ lua-5.2.1.new/src/luaconf.h2012-09-12 22:40:27.986622772 +0200
-@@ -100,7 +100,7 @@
- #else /* }{ */
+diff --git a/src/Makefile b/src/Makefile
+index 2e7a412..fa5769f 100644
+--- a/src/Makefile
 b/src/Makefile
+@@ -29,6 +29,7 @@ MYOBJS=
+ PLATS= aix bsd c89 freebsd generic linux macosx mingw posix solaris
  
- #define LUA_VDIR  LUA_VERSION_MAJOR . LUA_VERSION_MINOR /
--#define LUA_ROOT  /usr/local/
-+#define LUA_ROOT  /usr/
- #define LUA_LDIR  LUA_ROOT share/lua/ LUA_VDIR
- #define LUA_CDIR  LUA_ROOT lib/lua/ LUA_VDIR
- #define LUA_PATH_DEFAULT  \
-diff -ru lua-5.2.1/src/Makefile lua-5.2.1.new/src/Makefile
 lua-5.2.1/src/Makefile 2012-03-09 17:32:16.0 +0100
-+++ lua-5.2.1.new/src/Makefile 2012-09-12 22:38:08.591386896 +0200
-@@ -29,6 +29,7 @@
- PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris
- 
  LUA_A=liblua.a
 +LUA_SO= liblua.so
  CORE_O=   lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o 
llex.o 

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

2015-05-03 Thread Allan McRae
Date: Sunday, May 3, 2015 @ 09:30:27
  Author: allan
Revision: 238378

more adjustments

Modified:
  gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 06:36:25 UTC (rev 238377)
+++ PKGBUILD2015-05-03 07:30:27 UTC (rev 238378)
@@ -127,7 +127,6 @@
  libgomp \
  libitm \
  libquadmath \
- libmpx \
  libsanitizer/{a,l,ub}san \
  libstdc++-v3/src \
  libvtv; do
@@ -141,6 +140,9 @@
 
   make -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
 
+  make -C $CHOST/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib/libmpx.spec
+
   for lib in libgomp \
  libitm \
  libquadmath; do
@@ -186,8 +188,9 @@
   make -C gcc DESTDIR=${pkgdir} install-mkheaders
   
   make -C lto-plugin DESTDIR=${pkgdir} install
-  install -Dm755 ${pkgdir}/usr/lib/bfd-plugins/
-  ln -s /usr/lib/gcc/$CHOST/${pkgver}/liblto_plugin.so 
${pkgdir}/usr/lib/bfd-plugins/
+  install -dm755 ${pkgdir}/usr/lib/bfd-plugins/
+  ln -s /usr/lib/gcc/$CHOST/${pkgver}/liblto_plugin.so \
+${pkgdir}/usr/lib/bfd-plugins/
 
   make -C $CHOST/libcilkrts DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS \
 install-nodist_cilkincludeHEADERS
@@ -197,6 +200,7 @@
   make -C $CHOST/libquadmath DESTDIR=${pkgdir} 
install-nodist_libsubincludeHEADERS
   make -C $CHOST/libsanitizer DESTDIR=${pkgdir} 
install-nodist_{saninclude,toolexeclib}HEADERS
   make -C $CHOST/libsanitizer/asan DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS
+  make -C $CHOST/libmpx DESTDIR=${pkgdir} install-nodist_toolexeclibHEADERS
 
   make -C libiberty DESTDIR=${pkgdir} install
   # install PIC version of libiberty


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:16:05
  Author: fyan
Revision: 238383

upgpkg: perl-xml-libxml 2.0121-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 16:13:58 UTC (rev 238382)
+++ PKGBUILD2015-05-03 16:16:05 UTC (rev 238383)
@@ -5,7 +5,7 @@
 # Contributor: François Charette francois.archlinux.org
 
 pkgname=perl-xml-libxml
-pkgver=2.0120
+pkgver=2.0121
 pkgrel=1
 pkgdesc=Interface to the libxml library
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('ad4b930ecdc594cc06437b59ed85ab58')
+md5sums=('1544ab9ac110f5da296015346561ce02')
 
 build() {
   cd $srcdir/XML-LibXML-$pkgver


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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 07:54:35
  Author: bisson
Revision: 238453

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

Added:
  libassuan/repos/core-i686/PKGBUILD
(from rev 238452, libassuan/repos/testing-i686/PKGBUILD)
  libassuan/repos/core-i686/libassuan.install
(from rev 238452, libassuan/repos/testing-i686/libassuan.install)
  libassuan/repos/core-x86_64/PKGBUILD
(from rev 238452, libassuan/repos/testing-x86_64/PKGBUILD)
  libassuan/repos/core-x86_64/libassuan.install
(from rev 238452, libassuan/repos/testing-x86_64/libassuan.install)
Deleted:
  libassuan/repos/core-i686/PKGBUILD
  libassuan/repos/core-i686/libassuan.install
  libassuan/repos/core-x86_64/PKGBUILD
  libassuan/repos/core-x86_64/libassuan.install
  libassuan/repos/testing-i686/
  libassuan/repos/testing-x86_64/

---+
 /PKGBUILD |   64 
 /libassuan.install|   40 +
 core-i686/PKGBUILD|   30 --
 core-i686/libassuan.install   |   20 
 core-x86_64/PKGBUILD  |   30 --
 core-x86_64/libassuan.install |   20 
 6 files changed, 104 insertions(+), 100 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-04 04:21:50 UTC (rev 238452)
+++ core-i686/PKGBUILD  2015-05-04 05:54:35 UTC (rev 238453)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=libassuan
-pkgver=2.1.3
-pkgrel=1
-pkgdesc=A IPC library used by some GnuPG related software
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnupg.org/related_software/libassuan;
-depends=('libgpg-error')
-source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
-install=libassuan.install
-md5sums=('b5373485419a7e2c23457d20811caabe')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

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

Deleted: core-i686/libassuan.install
===
--- core-i686/libassuan.install 2015-05-04 04:21:50 UTC (rev 238452)
+++ core-i686/libassuan.install 2015-05-04 05:54:35 UTC (rev 238453)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(assuan.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}

Copied: libassuan/repos/core-i686/libassuan.install (from rev 238452, 
libassuan/repos/testing-i686/libassuan.install)
===
--- core-i686/libassuan.install (rev 0)
+++ core-i686/libassuan.install 2015-05-04 05:54:35 UTC (rev 238453)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(assuan.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-04 04:21:50 UTC (rev 238452)
+++ core-x86_64/PKGBUILD2015-05-04 05:54:35 UTC (rev 238453)
@@ -1,30 +0,0 @@
-# $Id$

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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 07:54:36
  Author: bisson
Revision: 238454

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

Added:
  libksba/repos/core-i686/PKGBUILD
(from rev 238452, libksba/repos/testing-i686/PKGBUILD)
  libksba/repos/core-i686/libksba.install
(from rev 238452, libksba/repos/testing-i686/libksba.install)
  libksba/repos/core-x86_64/PKGBUILD
(from rev 238452, libksba/repos/testing-x86_64/PKGBUILD)
  libksba/repos/core-x86_64/libksba.install
(from rev 238452, libksba/repos/testing-x86_64/libksba.install)
Deleted:
  libksba/repos/core-i686/PKGBUILD
  libksba/repos/core-i686/libksba.install
  libksba/repos/core-x86_64/PKGBUILD
  libksba/repos/core-x86_64/libksba.install
  libksba/repos/testing-i686/
  libksba/repos/testing-x86_64/

-+
 /PKGBUILD   |   64 ++
 /libksba.install|   40 ++
 core-i686/PKGBUILD  |   31 
 core-i686/libksba.install   |   20 -
 core-x86_64/PKGBUILD|   31 
 core-x86_64/libksba.install |   20 -
 6 files changed, 104 insertions(+), 102 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-04 05:54:35 UTC (rev 238453)
+++ core-i686/PKGBUILD  2015-05-04 05:54:36 UTC (rev 238454)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-
-pkgname=libksba
-pkgver=1.3.2
-pkgrel=1
-pkgdesc=A CMS and X.509 access library
-arch=(i686 x86_64)
-license=('GPL')
-url=ftp://ftp.gnupg.org/gcrypt/alpha/libksba;
-depends=('bash' 'libgpg-error' 'glibc')
-source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
-install=libksba.install
-sha1sums=('37d0893a587354af2b6e49f6ae701ca84f52da67')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}  
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libksba/repos/core-i686/PKGBUILD (from rev 238452, 
libksba/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-04 05:54:36 UTC (rev 238454)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: 
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+
+pkgname=libksba
+pkgver=1.3.3
+pkgrel=1
+pkgdesc=A CMS and X.509 access library
+arch=(i686 x86_64)
+license=('GPL')
+url=ftp://ftp.gnupg.org/gcrypt/alpha/libksba;
+depends=('bash' 'libgpg-error' 'glibc')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+install=libksba.install
+sha1sums=('86fe0436f3c8c394d32e142ee410a9f9560173fb'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}  
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: core-i686/libksba.install
===
--- core-i686/libksba.install   2015-05-04 05:54:35 UTC (rev 238453)
+++ core-i686/libksba.install   2015-05-04 05:54:36 UTC (rev 238454)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(ksba.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}

Copied: libksba/repos/core-i686/libksba.install (from rev 238452, 
libksba/repos/testing-i686/libksba.install)
===
--- core-i686/libksba.install   (rev 0)
+++ core-i686/libksba.install   2015-05-04 05:54:36 UTC (rev 238454)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(ksba.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-04 05:54:35 UTC (rev 238453)
+++ core-x86_64/PKGBUILD2015-05-04 05:54:36 UTC (rev 238454)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-
-pkgname=libksba

[arch-commits] Commit in gcc-multilib/repos/multilib-testing-x86_64 (21 files)

2015-05-03 Thread Jan Steffens
Date: Sunday, May 3, 2015 @ 23:26:49
  Author: heftig
Revision: 132669

archrelease: copy trunk to multilib-testing-x86_64

Added:
  gcc-multilib/repos/multilib-testing-x86_64/PKGBUILD
(from rev 132668, gcc-multilib/trunk/PKGBUILD)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-filename-output.patch
(from rev 132668, gcc-multilib/trunk/gcc-4.8-filename-output.patch)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-lambda-ICE.patch
(from rev 132668, gcc-multilib/trunk/gcc-4.8-lambda-ICE.patch)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.9-isl-0.13-hack.patch
(from rev 132668, gcc-multilib/trunk/gcc-4.9-isl-0.13-hack.patch)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-ada.install
(from rev 132668, gcc-multilib/trunk/gcc-ada.install)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-fortran.install
(from rev 132668, gcc-multilib/trunk/gcc-fortran.install)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-go.install
(from rev 132668, gcc-multilib/trunk/gcc-go.install)
  gcc-multilib/repos/multilib-testing-x86_64/gcc-libs.install
(from rev 132668, gcc-multilib/trunk/gcc-libs.install)
  gcc-multilib/repos/multilib-testing-x86_64/gcc.install
(from rev 132668, gcc-multilib/trunk/gcc.install)
  gcc-multilib/repos/multilib-testing-x86_64/pr65801.patch
(from rev 132668, gcc-multilib/trunk/pr65801.patch)
  gcc-multilib/repos/multilib-testing-x86_64/pr65822.patch
(from rev 132668, gcc-multilib/trunk/pr65822.patch)
  gcc-multilib/repos/multilib-testing-x86_64/pr65873.patch
(from rev 132668, gcc-multilib/trunk/pr65873.patch)
Deleted:
  gcc-multilib/repos/multilib-testing-x86_64/PKGBUILD
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-filename-output.patch
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-lambda-ICE.patch
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.9-isl-0.13-hack.patch
  gcc-multilib/repos/multilib-testing-x86_64/gcc-ada.install
  gcc-multilib/repos/multilib-testing-x86_64/gcc-fortran.install
  gcc-multilib/repos/multilib-testing-x86_64/gcc-go.install
  gcc-multilib/repos/multilib-testing-x86_64/gcc-libs.install
  gcc-multilib/repos/multilib-testing-x86_64/gcc.install

---+
 PKGBUILD  |  789 
 gcc-4.8-filename-output.patch |   34 -
 gcc-4.8-lambda-ICE.patch  |   70 +--
 gcc-4.9-isl-0.13-hack.patch   |  142 +++
 gcc-ada.install   |   40 +-
 gcc-fortran.install   |   32 -
 gcc-go.install|   40 +-
 gcc-libs.install  |   32 -
 gcc.install   |   40 +-
 pr65801.patch |   54 ++
 pr65822.patch |   66 +++
 pr65873.patch |   17 
 12 files changed, 760 insertions(+), 596 deletions(-)

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


[arch-commits] Commit in linux-tools/repos (36 files)

2015-05-03 Thread Sébastien Luttringer
Date: Sunday, May 3, 2015 @ 23:54:29
  Author: seblu
Revision: 132675

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

Added:
  linux-tools/repos/community-i686/02-archlinux-paths.patch
(from rev 132674, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
(from rev 132674, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-i686/PKGBUILD
(from rev 132674, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 132674, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 132674, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 132674, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 132674, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 132674, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
(from rev 132674, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
(from rev 132674, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 132674, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 132674, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 132674, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 132674, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 132674, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 132674, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/01-fix-perf-python.patch
  linux-tools/repos/community-i686/02-archlinux-paths.patch
  linux-tools/repos/community-i686/03-fix-tmon-ltinfo.patch
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/01-fix-perf-python.patch
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
  linux-tools/repos/community-x86_64/03-fix-tmon-ltinfo.patch
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /02-archlinux-paths.patch |   42 ++
 /04-fix-usip-h-path.patch |   26 +
 /PKGBUILD |  464 
 /cpupower.default |   58 +++
 /cpupower.install |   26 +
 /cpupower.service |   20 +
 /cpupower.systemd |   64 +++
 /usbipd.service   |   18 +
 community-i686/01-fix-perf-python.patch   |   12 
 community-i686/02-archlinux-paths.patch   |   21 -
 community-i686/03-fix-tmon-ltinfo.patch   |   13 
 community-i686/04-fix-usip-h-path.patch   |   13 
 community-i686/PKGBUILD   |  232 --
 community-i686/cpupower.default   |   29 -
 community-i686/cpupower.install   |   13 
 community-i686/cpupower.service   |   10 
 community-i686/cpupower.systemd   |   32 -
 community-i686/usbipd.service |9 
 community-x86_64/01-fix-perf-python.patch |   12 
 community-x86_64/02-archlinux-paths.patch |   21 -
 community-x86_64/03-fix-tmon-ltinfo.patch |   13 
 community-x86_64/04-fix-usip-h-path.patch |   13 
 community-x86_64/PKGBUILD |  232 --
 community-x86_64/cpupower.default |   29 -
 community-x86_64/cpupower.install |   13 
 community-x86_64/cpupower.service |   10 
 community-x86_64/cpupower.systemd |   32 -
 community-x86_64/usbipd.service   |9 
 28 files changed, 718 insertions(+), 768 deletions(-)

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


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

2015-05-03 Thread Sébastien Luttringer
Date: Sunday, May 3, 2015 @ 23:53:56
  Author: seblu
Revision: 132674

upgpkg: linux-tools 4.0-1

Modified:
  linux-tools/trunk/PKGBUILD
Deleted:
  linux-tools/trunk/01-fix-perf-python.patch
  linux-tools/trunk/03-fix-tmon-ltinfo.patch

--+
 01-fix-perf-python.patch |   12 
 03-fix-tmon-ltinfo.patch |   13 -
 PKGBUILD |   14 +++---
 3 files changed, 7 insertions(+), 32 deletions(-)

Deleted: 01-fix-perf-python.patch
===
--- 01-fix-perf-python.patch2015-05-03 21:44:02 UTC (rev 132673)
+++ 01-fix-perf-python.patch2015-05-03 21:53:56 UTC (rev 132674)
@@ -1,12 +0,0 @@
 a/tools/perf/config/feature-checks/Makefile  2014-01-21 01:58:25.444339009 
+0100
-+++ b/tools/perf/config/feature-checks/Makefile  2014-01-21 01:46:58.081780576 
+0100
-@@ -103,9 +103,6 @@
- test-libperl:
-$(BUILD) $(FLAGS_PERL_EMBED)
- 
--override PYTHON := python
--override PYTHON_CONFIG := python-config
--
- escape-for-shell-sq =  $(subst ','\'',$(1))
- shell-sq = '$(escape-for-shell-sq)'
- 

Deleted: 03-fix-tmon-ltinfo.patch
===
--- 03-fix-tmon-ltinfo.patch2015-05-03 21:44:02 UTC (rev 132673)
+++ 03-fix-tmon-ltinfo.patch2015-05-03 21:53:56 UTC (rev 132674)
@@ -1,13 +0,0 @@
-# Copyright 2014 Sébastien Luttringer
-
 a/tools/thermal/tmon/Makefile
-+++ b/tools/thermal/tmon/Makefile
-@@ -21,7 +21,7 @@ OBJS = tmon.o tui.o sysfs.o pid.o
- OBJS +=
- 
- tmon: $(OBJS) Makefile tmon.h
--  $(CC) ${CFLAGS} $(LDFLAGS) $(OBJS)  -o $(TARGET) -lm -lpanel -lncursesw 
-ltinfo -lpthread
-+  $(CC) ${CFLAGS} $(LDFLAGS) $(OBJS)  -o $(TARGET) -lm -lpanel -lncursesw 
-lpthread
- 
- valgrind: tmon
-sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes 
--show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET)  1 /dev/null

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 21:44:02 UTC (rev 132673)
+++ PKGBUILD2015-05-03 21:53:56 UTC (rev 132674)
@@ -13,7 +13,7 @@
   'usbip'
   'x86_energy_perf_policy'
 )
-pkgver=3.19
+pkgver=4.0
 pkgrel=1
 license=('GPL2')
 arch=('i686' 'x86_64')
@@ -31,17 +31,18 @@
 # tmon deps
 makedepends+=('ncurses')
 groups=($pkgbase)
-source=(http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz;
-#http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.7.xz;
+validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886') # Linus Torvalds
+source=(http://ftp.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/linux-$pkgver.tar{.xz,.sign}
+
#http://ftp.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/patch-$pkgver.7.xz;
 'cpupower.default'
 'cpupower.systemd'
 'cpupower.service'
 'usbipd.service'
 '02-archlinux-paths.patch'
-'03-fix-tmon-ltinfo.patch'
 '04-fix-usip-h-path.patch')
-# http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
-sha256sums=('be42511fe5321012bb4a2009167ce56a9e5fe362b4af43e8c371b3666859806c'
+# http://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
+sha256sums=('0f2f7d44979bc8f71c4fc5d3308c03499c26a824dd311fdf6eef4dee0d7d5991'
+'SKIP'
 '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
@@ -54,7 +55,6 @@
   cd linux-$pkgver
   #patch -N -p1 -i $srcdir/patch-$pkgver.7
   patch -N -p1 -i $srcdir/02-archlinux-paths.patch
-  patch -N -p1 -i $srcdir/03-fix-tmon-ltinfo.patch
   patch -N -p1 -i $srcdir/04-fix-usip-h-path.patch
 }
 


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

2015-05-03 Thread Jan Steffens
Date: Sunday, May 3, 2015 @ 23:32:03
  Author: heftig
Revision: 132670

Remove unused patches

Deleted:
  gcc-multilib/trunk/gcc-4.8-filename-output.patch
  gcc-multilib/trunk/gcc-4.8-lambda-ICE.patch
  gcc-multilib/trunk/gcc-4.9-isl-0.13-hack.patch

---+
 gcc-4.8-filename-output.patch |   17 -
 gcc-4.8-lambda-ICE.patch  |   35 ---
 gcc-4.9-isl-0.13-hack.patch   |   71 
 3 files changed, 123 deletions(-)

Deleted: gcc-4.8-filename-output.patch
===
--- gcc-4.8-filename-output.patch   2015-05-03 21:26:49 UTC (rev 132669)
+++ gcc-4.8-filename-output.patch   2015-05-03 21:32:03 UTC (rev 132670)
@@ -1,17 +0,0 @@
-diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
-index 968b703..3f8e6e6 100644
 a/gcc/c-family/c-opts.c
-+++ b/gcc/c-family/c-opts.c
-@@ -1438,6 +1438,12 @@ c_finish_options (void)
- static void
- push_command_line_include (void)
- {
-+  /* This can happen if disabled by -imacros for example.
-+ Punt so that we don't set command-line as the filename for
-+ the header.  */
-+  if (include_cursor  deferred_count)
-+return;
-+
-   if (!done_preinclude)
- {
-   done_preinclude = true;

Deleted: gcc-4.8-lambda-ICE.patch
===
--- gcc-4.8-lambda-ICE.patch2015-05-03 21:26:49 UTC (rev 132669)
+++ gcc-4.8-lambda-ICE.patch2015-05-03 21:32:03 UTC (rev 132670)
@@ -1,35 +0,0 @@
-diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c
-index 0b8e2f7..ad1c209 100644
 a/gcc/cp/semantics.c
-+++ b/gcc/cp/semantics.c
-@@ -2719,8 +2719,10 @@ finish_member_declaration (tree decl)
- /*friend_p=*/0);
-   }
- }
--  /* Enter the DECL into the scope of the class.  */
--  else if (pushdecl_class_level (decl))
-+  /* Enter the DECL into the scope of the class, if the class
-+ isn't a closure (whose fields are supposed to be unnamed).  */
-+  else if (CLASSTYPE_LAMBDA_EXPR (current_class_type)
-+ || pushdecl_class_level (decl))
- {
-   if (TREE_CODE (decl) == USING_DECL)
-   {
-diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C 
b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C
-new file mode 100644
-index 000..df2b037
 /dev/null
-+++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C
-@@ -0,0 +1,9 @@
-+// PR c++/56710
-+// { dg-options -std=c++11 -Wall }
-+
-+int main()
-+{
-+int t = 0;
-+return []() - int {int __t; __t = t; return __t; }();
-+return [t]() - int {int __t; __t = t; return __t; }();
-+}
--- 
-1.8.4.2
-

Deleted: gcc-4.9-isl-0.13-hack.patch
===
--- gcc-4.9-isl-0.13-hack.patch 2015-05-03 21:26:49 UTC (rev 132669)
+++ gcc-4.9-isl-0.13-hack.patch 2015-05-03 21:32:03 UTC (rev 132670)
@@ -1,71 +0,0 @@
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c 
gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c
 gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c2014-03-03 
21:39:22.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c2014-06-25 
15:07:57.958697105 +1000
-@@ -28,6 +28,8 @@
- #include isl/constraint.h
- #include isl/ilp.h
- #include isl/aff.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-interchange.c 
gcc-4.9-20140604/gcc/graphite-interchange.c
 gcc-4.9-20140604-old/gcc/graphite-interchange.c2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-interchange.c2014-06-25 
15:10:06.882899243 +1000
-@@ -29,6 +29,9 @@
- #include isl/map.h
- #include isl/union_map.h
- #include isl/ilp.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
-+#include isl/deprecated/constraint_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c 
gcc-4.9-20140604/gcc/graphite-optimize-isl.c
 gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c   2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-optimize-isl.c   2014-06-25 
15:16:57.038386166 +1000
-@@ -28,6 +28,8 @@
- #include isl/band.h
- #include isl/aff.h
- #include isl/options.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/aff_int.h
- #endif
- 
- #include system.h
-@@ -373,7 +375,7 @@
-   {
- for (i = ScheduleDimensions - 1 ;  i = 0 ; i--)
-   {
--if (isl_band_member_is_zero_distance (Band, i))
-+if (isl_band_member_is_coincident (Band, i))
-   {
- isl_map *TileMap;
- isl_union_map *TileUMap;
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-poly.c 
gcc-4.9-20140604/gcc/graphite-poly.c
 

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

2015-05-03 Thread Jan Steffens
Date: Sunday, May 3, 2015 @ 23:33:31
  Author: heftig
Revision: 238444

Remove unused patches

Deleted:
  gcc/trunk/gcc-4.8-filename-output.patch
  gcc/trunk/gcc-4.9-isl-0.13-hack.patch

---+
 gcc-4.8-filename-output.patch |   17 -
 gcc-4.9-isl-0.13-hack.patch   |   71 
 2 files changed, 88 deletions(-)

Deleted: gcc-4.8-filename-output.patch
===
--- gcc-4.8-filename-output.patch   2015-05-03 19:56:25 UTC (rev 238443)
+++ gcc-4.8-filename-output.patch   2015-05-03 21:33:31 UTC (rev 238444)
@@ -1,17 +0,0 @@
-diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
-index 968b703..3f8e6e6 100644
 a/gcc/c-family/c-opts.c
-+++ b/gcc/c-family/c-opts.c
-@@ -1438,6 +1438,12 @@ c_finish_options (void)
- static void
- push_command_line_include (void)
- {
-+  /* This can happen if disabled by -imacros for example.
-+ Punt so that we don't set command-line as the filename for
-+ the header.  */
-+  if (include_cursor  deferred_count)
-+return;
-+
-   if (!done_preinclude)
- {
-   done_preinclude = true;

Deleted: gcc-4.9-isl-0.13-hack.patch
===
--- gcc-4.9-isl-0.13-hack.patch 2015-05-03 19:56:25 UTC (rev 238443)
+++ gcc-4.9-isl-0.13-hack.patch 2015-05-03 21:33:31 UTC (rev 238444)
@@ -1,71 +0,0 @@
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c 
gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c
 gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c2014-03-03 
21:39:22.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c2014-06-25 
15:07:57.958697105 +1000
-@@ -28,6 +28,8 @@
- #include isl/constraint.h
- #include isl/ilp.h
- #include isl/aff.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-interchange.c 
gcc-4.9-20140604/gcc/graphite-interchange.c
 gcc-4.9-20140604-old/gcc/graphite-interchange.c2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-interchange.c2014-06-25 
15:10:06.882899243 +1000
-@@ -29,6 +29,9 @@
- #include isl/map.h
- #include isl/union_map.h
- #include isl/ilp.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
-+#include isl/deprecated/constraint_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c 
gcc-4.9-20140604/gcc/graphite-optimize-isl.c
 gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c   2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-optimize-isl.c   2014-06-25 
15:16:57.038386166 +1000
-@@ -28,6 +28,8 @@
- #include isl/band.h
- #include isl/aff.h
- #include isl/options.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/aff_int.h
- #endif
- 
- #include system.h
-@@ -373,7 +375,7 @@
-   {
- for (i = ScheduleDimensions - 1 ;  i = 0 ; i--)
-   {
--if (isl_band_member_is_zero_distance (Band, i))
-+if (isl_band_member_is_coincident (Band, i))
-   {
- isl_map *TileMap;
- isl_union_map *TileUMap;
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-poly.c 
gcc-4.9-20140604/gcc/graphite-poly.c
 gcc-4.9-20140604-old/gcc/graphite-poly.c   2014-01-03 08:23:26.0 
+1000
-+++ gcc-4.9-20140604/gcc/graphite-poly.c   2014-06-25 15:18:01.207157796 
+1000
-@@ -28,6 +28,8 @@
- #include isl/constraint.h
- #include isl/ilp.h
- #include isl/aff.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-sese-to-poly.c 
gcc-4.9-20140604/gcc/graphite-sese-to-poly.c
 gcc-4.9-20140604-old/gcc/graphite-sese-to-poly.c   2014-04-08 
20:59:40.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-sese-to-poly.c   2014-06-25 
15:19:46.575140398 +1000
-@@ -26,6 +26,9 @@
- #include isl/union_map.h
- #include isl/constraint.h
- #include isl/aff.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/aff_int.h
-+#include isl/deprecated/constraint_int.h
- #include cloog/cloog.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h


[arch-commits] Commit in gcc-multilib/repos/multilib-testing-x86_64 (3 files)

2015-05-03 Thread Jan Steffens
Date: Sunday, May 3, 2015 @ 23:34:26
  Author: heftig
Revision: 132671

Remove unused patches

Deleted:
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-filename-output.patch
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.8-lambda-ICE.patch
  gcc-multilib/repos/multilib-testing-x86_64/gcc-4.9-isl-0.13-hack.patch

---+
 gcc-4.8-filename-output.patch |   17 -
 gcc-4.8-lambda-ICE.patch  |   35 ---
 gcc-4.9-isl-0.13-hack.patch   |   71 
 3 files changed, 123 deletions(-)

Deleted: gcc-4.8-filename-output.patch
===
--- gcc-4.8-filename-output.patch   2015-05-03 21:32:03 UTC (rev 132670)
+++ gcc-4.8-filename-output.patch   2015-05-03 21:34:26 UTC (rev 132671)
@@ -1,17 +0,0 @@
-diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
-index 968b703..3f8e6e6 100644
 a/gcc/c-family/c-opts.c
-+++ b/gcc/c-family/c-opts.c
-@@ -1438,6 +1438,12 @@ c_finish_options (void)
- static void
- push_command_line_include (void)
- {
-+  /* This can happen if disabled by -imacros for example.
-+ Punt so that we don't set command-line as the filename for
-+ the header.  */
-+  if (include_cursor  deferred_count)
-+return;
-+
-   if (!done_preinclude)
- {
-   done_preinclude = true;

Deleted: gcc-4.8-lambda-ICE.patch
===
--- gcc-4.8-lambda-ICE.patch2015-05-03 21:32:03 UTC (rev 132670)
+++ gcc-4.8-lambda-ICE.patch2015-05-03 21:34:26 UTC (rev 132671)
@@ -1,35 +0,0 @@
-diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c
-index 0b8e2f7..ad1c209 100644
 a/gcc/cp/semantics.c
-+++ b/gcc/cp/semantics.c
-@@ -2719,8 +2719,10 @@ finish_member_declaration (tree decl)
- /*friend_p=*/0);
-   }
- }
--  /* Enter the DECL into the scope of the class.  */
--  else if (pushdecl_class_level (decl))
-+  /* Enter the DECL into the scope of the class, if the class
-+ isn't a closure (whose fields are supposed to be unnamed).  */
-+  else if (CLASSTYPE_LAMBDA_EXPR (current_class_type)
-+ || pushdecl_class_level (decl))
- {
-   if (TREE_CODE (decl) == USING_DECL)
-   {
-diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C 
b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C
-new file mode 100644
-index 000..df2b037
 /dev/null
-+++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-names1.C
-@@ -0,0 +1,9 @@
-+// PR c++/56710
-+// { dg-options -std=c++11 -Wall }
-+
-+int main()
-+{
-+int t = 0;
-+return []() - int {int __t; __t = t; return __t; }();
-+return [t]() - int {int __t; __t = t; return __t; }();
-+}
--- 
-1.8.4.2
-

Deleted: gcc-4.9-isl-0.13-hack.patch
===
--- gcc-4.9-isl-0.13-hack.patch 2015-05-03 21:32:03 UTC (rev 132670)
+++ gcc-4.9-isl-0.13-hack.patch 2015-05-03 21:34:26 UTC (rev 132671)
@@ -1,71 +0,0 @@
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c 
gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c
 gcc-4.9-20140604-old/gcc/graphite-clast-to-gimple.c2014-03-03 
21:39:22.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-clast-to-gimple.c2014-06-25 
15:07:57.958697105 +1000
-@@ -28,6 +28,8 @@
- #include isl/constraint.h
- #include isl/ilp.h
- #include isl/aff.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-interchange.c 
gcc-4.9-20140604/gcc/graphite-interchange.c
 gcc-4.9-20140604-old/gcc/graphite-interchange.c2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-interchange.c2014-06-25 
15:10:06.882899243 +1000
-@@ -29,6 +29,9 @@
- #include isl/map.h
- #include isl/union_map.h
- #include isl/ilp.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/ilp_int.h
-+#include isl/deprecated/constraint_int.h
- #include cloog/cloog.h
- #include cloog/isl/domain.h
- #endif
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c 
gcc-4.9-20140604/gcc/graphite-optimize-isl.c
 gcc-4.9-20140604-old/gcc/graphite-optimize-isl.c   2014-01-03 
08:23:26.0 +1000
-+++ gcc-4.9-20140604/gcc/graphite-optimize-isl.c   2014-06-25 
15:16:57.038386166 +1000
-@@ -28,6 +28,8 @@
- #include isl/band.h
- #include isl/aff.h
- #include isl/options.h
-+#include isl/deprecated/int.h
-+#include isl/deprecated/aff_int.h
- #endif
- 
- #include system.h
-@@ -373,7 +375,7 @@
-   {
- for (i = ScheduleDimensions - 1 ;  i = 0 ; i--)
-   {
--if (isl_band_member_is_zero_distance (Band, i))
-+if (isl_band_member_is_coincident (Band, i))
-   {
- isl_map *TileMap;
- isl_union_map *TileUMap;
-diff -Naur gcc-4.9-20140604-old/gcc/graphite-poly.c 

[arch-commits] Commit in spyder/repos/community-any (8 files)

2015-05-03 Thread Fabio Castelli
Date: Sunday, May 3, 2015 @ 23:44:02
  Author: muflone
Revision: 132673

archrelease: copy trunk to community-any

Added:
  spyder/repos/community-any/PKGBUILD
(from rev 132672, spyder/trunk/PKGBUILD)
  spyder/repos/community-any/pylint2.patch
(from rev 132672, spyder/trunk/pylint2.patch)
  spyder/repos/community-any/python2.patch
(from rev 132672, spyder/trunk/python2.patch)
  spyder/repos/community-any/spyder.install
(from rev 132672, spyder/trunk/spyder.install)
Deleted:
  spyder/repos/community-any/PKGBUILD
  spyder/repos/community-any/pylint2.patch
  spyder/repos/community-any/python2.patch
  spyder/repos/community-any/spyder.install

+
 PKGBUILD   |  158 +++
 pylint2.patch  |   56 +--
 python2.patch  |   36 ++--
 spyder.install |   24 
 4 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 21:43:32 UTC (rev 132672)
+++ PKGBUILD2015-05-03 21:44:02 UTC (rev 132673)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Francois Boulogne fboulo...@april.org
-# Contributor: TDY t...@gmx.com
-
-pkgbase='spyder'
-pkgname=('spyder' 'spyder3')
-pkgver=2.3.3
-pkgrel=1
-pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features.'
-makedepends=('python2-setuptools' 'python-setuptools' 'python-sphinx' 
'python2-sphinx')
-arch=('any')
-url='http://code.google.com/p/spyderlib/'
-license=('MIT')
-install=${pkgbase}.install
-source=(https://bitbucket.org/spyder-ide/spyderlib/downloads/${pkgbase}-${pkgver}.zip;
-pylint2.patch
-python2.patch)
-sha256sums=('9f7aa4070308d74aafcd2007fa55749b066af80ee9243aea190e77a636fce1a5'
-'f8836efa74ac9b8fce389a2708bb253083bbe042aabec124659839d5b3e167dd'
-'05f194438176cfa03cb76f38e5f64723b72a39d6771d5d4a927adf07a0ec67f1')
-
-package_spyder() {
-  pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features for Python 2.x series.'
-  depends=('python2-pyqt4' 'python2-pyflakes' 'python2-pyzmq' 
'python2-pygments' 'gtk-update-icon-cache')
-  optdepends=('python2-pylint: powerful code analysis'
-  'ipython2: enhanced Python interpreter'
-  'python2-rope: editor code completion, calltips and 
go-to-definition'
-  'python2-sphinx: rich text help on the object inspector'
-  'python2-numpy: N-dimensional arrays'
-  'python2-scipy: signal/image processing'
-  'python2-psutil: memory/CPU usage in the status bar'
-  'python2-h5py: HDF5 support'
-  'python2-matplotlib: interactive 2D/3D data plotting'
-  'python2-pep8: real-time code style analysis'
-  'python2-sympy: symbolic mathematics for the IPython console')
-  [ -d build ]  rm -rf build
-  cp -r ${pkgbase}-${pkgver} build
-  cd build
-  patch -p1 -i ../python2.patch
-  patch -p1 -i ../pylint2.patch
-  python2 setup.py build
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
-  # Install license file
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  # Install icon and desktop file
-  install -D -m644 scripts/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -D -m644 spyderlib/images/spyder.svg 
${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg
-  # Remove useless spyder_win_post_install script
-  rm -f ${pkgdir}/usr/bin/spyder_win_post_install.py
-}
-
-package_spyder3() {
-  pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features for Python 3.x series.'
-  depends=('python-pyqt4' 'python-pyflakes' 'python-pyzmq' 'python-pygments' 
'gtk-update-icon-cache')
-  optdepends=('python-pylint: powerful code analysis'
-  'ipython: enhanced Python interpreter'
-  'python-rope: editor code completion, calltips and 
go-to-definition'
-  'python-sphinx: rich text help on the object inspector'
-  'python-numpy: N-dimensional arrays'
-  'python-scipy: signal/image processing'
-  'python-psutil: memory/CPU usage in the status bar'
-  'python-h5py: HDF5 support'
-  'python-matplotlib: interactive 2D/3D data plotting'
-  'pep8: real-time code style analysis'
-  'python-sympy: symbolic mathematics for the IPython console')
-  [ -d build ]  rm -rf build
-  cp -r ${pkgbase}-${pkgver} build
-  cd build
-  python3 setup.py build
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
-  # Install license file
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  # Install icon and desktop file
-  install -D -m644 scripts/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-  

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

2015-05-03 Thread Fabio Castelli
Date: Sunday, May 3, 2015 @ 23:43:32
  Author: muflone
Revision: 132672

upgpkg: spyder 2.3.4-1

Modified:
  spyder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 21:34:26 UTC (rev 132671)
+++ PKGBUILD2015-05-03 21:43:32 UTC (rev 132672)
@@ -5,7 +5,7 @@
 
 pkgbase='spyder'
 pkgname=('spyder' 'spyder3')
-pkgver=2.3.3
+pkgver=2.3.4
 pkgrel=1
 pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features.'
 makedepends=('python2-setuptools' 'python-setuptools' 'python-sphinx' 
'python2-sphinx')
@@ -16,7 +16,7 @@
 
source=(https://bitbucket.org/spyder-ide/spyderlib/downloads/${pkgbase}-${pkgver}.zip;
 pylint2.patch
 python2.patch)
-sha256sums=('9f7aa4070308d74aafcd2007fa55749b066af80ee9243aea190e77a636fce1a5'
+sha256sums=('da4b13d6faed3e8810c0418f8274b26fde4f265ea4f93bee154af128a755c184'
 'f8836efa74ac9b8fce389a2708bb253083bbe042aabec124659839d5b3e167dd'
 '05f194438176cfa03cb76f38e5f64723b72a39d6771d5d4a927adf07a0ec67f1')
 


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

2015-05-03 Thread Sébastien Luttringer
Date: Sunday, May 3, 2015 @ 23:49:11
  Author: seblu
Revision: 238445

upgpkg: btrfs-progs 4.0-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 21:33:31 UTC (rev 238444)
+++ PKGBUILD2015-05-03 21:49:11 UTC (rev 238445)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski tp...@archlinux.org
 
 pkgname=btrfs-progs
-pkgver=3.19.1
+pkgver=4.0
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')


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

2015-05-03 Thread Anatol Pomozov
Date: Monday, May 4, 2015 @ 01:42:46
  Author: anatolik
Revision: 238447

upgpkg: dhcpcd 6.8.2-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 21:49:27 UTC (rev 238446)
+++ PKGBUILD2015-05-03 23:42:46 UTC (rev 238447)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet jvinet.zeroflux.org
 
 pkgname=dhcpcd
-pkgver=6.8.1
+pkgver=6.8.2
 pkgrel=1
 pkgdesc=RFC2131 compliant DHCP client daemon
 url=http://roy.marples.name/projects/dhcpcd/;
@@ -18,7 +18,7 @@
 source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2;
 'dhcpcd_.service'
'dhcpcd.service')
-sha1sums=('1369656c67b2a110d5b7844f94159ae45f495c05'
+sha1sums=('4fa1299d0ca947dd39013851e7c047b4dabb36c3'
   '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
   '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
 


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

2015-05-03 Thread Anatol Pomozov
Date: Monday, May 4, 2015 @ 01:43:27
  Author: anatolik
Revision: 238448

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

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 238447, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.service
(from rev 238447, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-i686/dhcpcd_.service
(from rev 238447, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 238447, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 238447, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 238447, dhcpcd/trunk/dhcpcd_.service)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/dhcpcd.service|   13 
 testing-i686/dhcpcd_.service   |   15 +
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/dhcpcd.service  |   13 
 testing-x86_64/dhcpcd_.service |   15 +
 6 files changed, 176 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 238447, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-03 23:43:27 UTC (rev 238448)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Tom Killian tom.archlinux.org
+# Contributor: Judd Vinet jvinet.zeroflux.org
+
+pkgname=dhcpcd
+pkgver=6.8.2
+pkgrel=1
+pkgdesc=RFC2131 compliant DHCP client daemon
+url=http://roy.marples.name/projects/dhcpcd/;
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2;
+'dhcpcd_.service'
+   'dhcpcd.service')
+sha1sums=('4fa1299d0ca947dd39013851e7c047b4dabb36c3'
+  '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+  '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  sed 26q $srcdir/$pkgname-$pkgver/control.h \
+  $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll  ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 ${srcdir}/dhcpcd_.service 
${pkgdir}/usr/lib/systemd/system/dhcpcd@.service
+  install -Dm644 ${srcdir}/dhcpcd.service 
${pkgdir}/usr/lib/systemd/system/dhcpcd.service # FS#31543
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.service (from rev 238447, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-i686/dhcpcd.service (rev 0)
+++ testing-i686/dhcpcd.service 2015-05-03 23:43:27 UTC (rev 238448)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/dhcpcd_.service (from rev 238447, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-i686/dhcpcd_.service(rev 0)
+++ testing-i686/dhcpcd_.service2015-05-03 23:43:27 UTC (rev 238448)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 238447, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-03 23:43:27 UTC (rev 238448)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Tom Killian tom.archlinux.org
+# Contributor: Judd Vinet jvinet.zeroflux.org
+
+pkgname=dhcpcd
+pkgver=6.8.2
+pkgrel=1
+pkgdesc=RFC2131 compliant DHCP client daemon
+url=http://roy.marples.name/projects/dhcpcd/;

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

2015-05-03 Thread Jan Steffens
Date: Sunday, May 3, 2015 @ 22:23:27
  Author: heftig
Revision: 132666

5.1.0-2

Added:
  gcc-multilib/trunk/pr65801.patch
  gcc-multilib/trunk/pr65822.patch
  gcc-multilib/trunk/pr65873.patch
Modified:
  gcc-multilib/trunk/PKGBUILD

---+
 PKGBUILD  |   45 ++
 pr65801.patch |   54 +
 pr65822.patch |   66 
 pr65873.patch |   17 ++
 4 files changed, 173 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 18:49:47 UTC (rev 132665)
+++ PKGBUILD2015-05-03 20:23:27 UTC (rev 132666)
@@ -9,8 +9,8 @@
 pkgver=5.1.0
 _pkgver=5
 _islver=0.14.1
-pkgrel=1
-#_snapshot=5.1.0-RC-20150412
+pkgrel=2
+_snapshot=5-20150428
 pkgdesc=The GNU Compiler Collection for multilib
 arch=('x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')
@@ -19,11 +19,17 @@
  'lib32-glibc=2.21')
 checkdepends=('dejagnu' 'inetutils')
 options=('!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2)
-md5sums=('d5525b1127d07d215960e6051c5da35e'
- '118d1a379abf7606a3334c98a8411c79')
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
+pr65801.patch
+pr65822.patch
+pr65873.patch)
+md5sums=('6068bb8e23caa1172a127026e05ed311'
+ '118d1a379abf7606a3334c98a8411c79'
+ '0e0ab8f824573f51733aaeee84254df6'
+ '9a9cc98e916fd37c7b3dad50f29d2f48'
+ 'cad91055efb6e20919fb81aff1600d8e')
 
 if [ -n ${_snapshot} ]; then
   _basedir=gcc-${_snapshot}
@@ -50,6 +56,15 @@
   # hack! - some configure tests for header files using $CPP $CPPFLAGS
   sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ {libiberty,gcc}/configure
 
+  # commit 346ee8b5
+  patch -p1 -i ${srcdir}/pr65801.patch
+
+  # https://gcc.gnu.org/ml/gcc-patches/2015-04/msg01558.html
+  patch -p1 -i ${srcdir}/pr65822.patch
+
+  # commit a64b35493
+  patch -p1 -i ${srcdir}/pr65873.patch
+
   mkdir ${srcdir}/gcc-build
 }
 
@@ -66,7 +81,7 @@
   --mandir=/usr/share/man --infodir=/usr/share/info \
   --with-bugurl=https://bugs.archlinux.org/ \
   --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
-  --enable-shared --enable-threads=posix \
+  --enable-shared --enable-threads=posix --enable-libmpx \
   --with-system-zlib --with-isl --enable-__cxa_atexit \
   --disable-libunwind-exceptions --enable-clocale=gnu \
   --disable-libstdcxx-pch --disable-libssp \
@@ -120,6 +135,9 @@
 
   make -C $CHOST/32/libobjc DESTDIR=${pkgdir} install-libs
 
+  make -C $CHOST/32/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib32/libmpx.spec
+
   # remove stuff in gcc-libs-multilib
   rm -r ${pkgdir}/usr/lib
 
@@ -161,6 +179,9 @@
 
   make -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
 
+  make -C $CHOST/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib/libmpx.spec
+
   for lib in libgomp \
  libitm \
  libquadmath; do
@@ -213,7 +234,11 @@
 
   make DESTDIR=${pkgdir} install-fixincludes
   make -C gcc DESTDIR=${pkgdir} install-mkheaders
+
   make -C lto-plugin DESTDIR=${pkgdir} install
+  install -dm755 ${pkgdir}/usr/lib/bfd-plugins/
+  ln -s /usr/lib/gcc/$CHOST/${pkgver}/liblto_plugin.so \
+${pkgdir}/usr/lib/bfd-plugins/
 
   make -C $CHOST/libcilkrts DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS \
 install-nodist_cilkincludeHEADERS
@@ -223,11 +248,13 @@
   make -C $CHOST/libquadmath DESTDIR=${pkgdir} 
install-nodist_libsubincludeHEADERS
   make -C $CHOST/libsanitizer DESTDIR=${pkgdir} 
install-nodist_{saninclude,toolexeclib}HEADERS
   make -C $CHOST/libsanitizer/asan DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS
+  make -C $CHOST/libmpx DESTDIR=${pkgdir} install-nodist_toolexeclibHEADERS
   make -C $CHOST/32/libcilkrts DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS
   make -C $CHOST/32/libgomp DESTDIR=${pkgdir} install-nodist_toolexeclibHEADERS
   make -C $CHOST/32/libitm DESTDIR=${pkgdir} install-nodist_toolexeclibHEADERS
   make -C $CHOST/32/libsanitizer DESTDIR=${pkgdir} 
install-nodist_{saninclude,toolexeclib}HEADERS
   make -C $CHOST/32/libsanitizer/asan DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS
+  make -C $CHOST/32/libmpx DESTDIR=${pkgdir} install-nodist_toolexeclibHEADERS
 
   make -C libiberty DESTDIR=${pkgdir} install
   # install PIC version of libiberty
@@ -363,7 +390,7 @@
   pkgdesc=Go front-end for GCC for multilib
   depends=(gcc-multilib=$pkgver-$pkgrel)
   provides=(gcc-go=$pkgver-$pkgrel)
-  conflicts=('gcc-go')
+  

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

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 23:16:16
  Author: arojas
Revision: 132668

archrelease: copy trunk to community-any

Added:
  mathjax/repos/community-any/PKGBUILD
(from rev 132667, mathjax/trunk/PKGBUILD)
  mathjax/repos/community-any/mathjax.install
(from rev 132667, mathjax/trunk/mathjax.install)
Deleted:
  mathjax/repos/community-any/PKGBUILD
  mathjax/repos/community-any/mathjax.install

-+
 PKGBUILD|   76 +++---
 mathjax.install |   26 +-
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 21:15:41 UTC (rev 132667)
+++ PKGBUILD2015-05-03 21:16:16 UTC (rev 132668)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Kevin Dodd jesi...@gmail.com
-# Contributor: Tianjiao Yin ytj...@gmail.com
-
-pkgname=mathjax
-pkgver=2.5.1
-pkgrel=3
-pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
-url='https://www.mathjax.org/'
-arch=(any)
-license=(Apache)
-depends=(xorg-mkfontdir fontconfig)
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('e294ea66e87900a0a803281d6c13025db38d27e103f4d9e960bfc554ad92c602')
-
-prepare() {
-  cd MathJax-$pkgver
-
-# don't warn about missing PNG fonts
-  sed -e 's|imageFont: TeX,|imageFont: null,|' -i config/default.js
-
-# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
-  rm -r docs test unpacked
-  rm -r fonts/HTML-CSS/TeX/png
-  for _format in eot otf svg ; do
-   find . -type d -name $_format -prune -exec rm -rf {} \;
-  done
-}
-
-package() {
-  mkdir -p $pkgdir/usr/share/{fonts,licenses/mathjax}
-  cp -a MathJax-$pkgver $pkgdir/usr/share/mathjax
-  mv $pkgdir/usr/share/mathjax/fonts $pkgdir/usr/share/fonts/mathjax
-  ln -s /usr/share/fonts/mathjax $pkgdir/usr/share/mathjax/fonts
-  mv $pkgdir/usr/share/mathjax/LICENSE 
$pkgdir/usr/share/licenses/mathjax/LICENSE
-}

Copied: mathjax/repos/community-any/PKGBUILD (from rev 132667, 
mathjax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 21:16:16 UTC (rev 132668)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Kevin Dodd jesi...@gmail.com
+# Contributor: Tianjiao Yin ytj...@gmail.com
+
+pkgname=mathjax
+pkgver=2.5.3
+pkgrel=1
+pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
+url='https://www.mathjax.org/'
+arch=(any)
+license=(Apache)
+depends=(xorg-mkfontdir fontconfig)
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
+sha256sums=('d24fcd6e66db4d79177513fbd25be9b75bff30f2a379199e8a05d5051fed5df3')
+
+prepare() {
+  cd MathJax-$pkgver
+
+# don't warn about missing PNG fonts
+  sed -e 's|imageFont: TeX,|imageFont: null,|' -i config/default.js
+
+# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
+  rm -r docs test unpacked
+  rm -r fonts/HTML-CSS/TeX/png
+  for _format in eot otf svg ; do
+   find . -type d -name $_format -prune -exec rm -rf {} \;
+  done
+}
+
+package() {
+  mkdir -p $pkgdir/usr/share/{fonts,licenses/mathjax}
+  cp -a MathJax-$pkgver $pkgdir/usr/share/mathjax
+  mv $pkgdir/usr/share/mathjax/fonts $pkgdir/usr/share/fonts/mathjax
+  ln -s /usr/share/fonts/mathjax $pkgdir/usr/share/mathjax/fonts
+  mv $pkgdir/usr/share/mathjax/LICENSE 
$pkgdir/usr/share/licenses/mathjax/LICENSE
+}

Deleted: mathjax.install
===
--- mathjax.install 2015-05-03 21:15:41 UTC (rev 132667)
+++ mathjax.install 2015-05-03 21:16:16 UTC (rev 132668)
@@ -1,13 +0,0 @@
-post_install() {
-   fc-cache -s
-   find /usr/share/fonts/mathjax -type d -name 'woff' -exec mkfontscale -- 
{} +
-   find /usr/share/fonts/mathjax -type d -name 'woff' -exec mkfontdir -- 
{} +
-}
-
-post_remove() {
-   post_install $@
-}
-
-post_upgrade() {
-   post_install $@
-}

Copied: mathjax/repos/community-any/mathjax.install (from rev 132667, 
mathjax/trunk/mathjax.install)
===
--- mathjax.install (rev 0)
+++ mathjax.install 2015-05-03 21:16:16 UTC (rev 132668)
@@ -0,0 +1,13 @@
+post_install() {
+   fc-cache -s
+   find /usr/share/fonts/mathjax -type d -name 'woff' -exec mkfontscale -- 
{} +
+   find /usr/share/fonts/mathjax -type d -name 'woff' -exec mkfontdir -- 
{} +
+}
+
+post_remove() {
+   post_install $@
+}
+
+post_upgrade() {
+   post_install $@
+}


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

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 23:15:41
  Author: arojas
Revision: 132667

Update to 2.5.3

Modified:
  mathjax/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 20:23:27 UTC (rev 132666)
+++ PKGBUILD2015-05-03 21:15:41 UTC (rev 132667)
@@ -4,8 +4,8 @@
 # Contributor: Tianjiao Yin ytj...@gmail.com
 
 pkgname=mathjax
-pkgver=2.5.1
-pkgrel=3
+pkgver=2.5.3
+pkgrel=1
 pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
 url='https://www.mathjax.org/'
 arch=(any)
@@ -13,7 +13,7 @@
 depends=(xorg-mkfontdir fontconfig)
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('e294ea66e87900a0a803281d6c13025db38d27e103f4d9e960bfc554ad92c602')
+sha256sums=('d24fcd6e66db4d79177513fbd25be9b75bff30f2a379199e8a05d5051fed5df3')
 
 prepare() {
   cd MathJax-$pkgver


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

2015-05-03 Thread Sébastien Luttringer
Date: Sunday, May 3, 2015 @ 23:49:27
  Author: seblu
Revision: 238446

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 238445, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 238445, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 238445, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 238445, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 238445, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 238445, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 238445, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 238445, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   49 
 testing-i686/btrfs-progs.install  |9 +
 testing-i686/initcpio-hook-btrfs  |7 
 testing-i686/initcpio-install-btrfs   |   17 +++
 testing-x86_64/PKGBUILD   |   49 
 testing-x86_64/btrfs-progs.install|9 +
 testing-x86_64/initcpio-hook-btrfs|7 
 testing-x86_64/initcpio-install-btrfs |   17 +++
 8 files changed, 164 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 238445, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-03 21:49:27 UTC (rev 238446)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=4.0
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname
+  make prefix=$pkgdir/usr install
+
+  # install mkinitcpio hooks
+  cd $srcdir
+  install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
+  install -Dm644 initcpio-hook-btrfs $pkgdir/usr/lib/initcpio/hooks/btrfs
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 238445, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2015-05-03 21:49:27 UTC (rev 238446)
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ $(vercmp 0.19.20121005 $2) -eq 1 ]; then
+echo btrfs multi-device support now relies on linux 3.6 or later
+  fi
+}
+
+# vim:set ts=2 sw=2 et:

Copied: btrfs-progs/repos/testing-i686/initcpio-hook-btrfs (from rev 238445, 
btrfs-progs/trunk/initcpio-hook-btrfs)
===
--- testing-i686/initcpio-hook-btrfs(rev 0)
+++ testing-i686/initcpio-hook-btrfs2015-05-03 21:49:27 UTC (rev 238446)
@@ -0,0 +1,7 @@
+#!/usr/bin/ash
+
+run_hook() {
+btrfs device scan
+}
+
+# vim: set ft=sh ts=4 sw=4 et:

Copied: btrfs-progs/repos/testing-i686/initcpio-install-btrfs (from rev 238445, 
btrfs-progs/trunk/initcpio-install-btrfs)
===
--- testing-i686/initcpio-install-btrfs (rev 0)
+++ testing-i686/initcpio-install-btrfs 2015-05-03 21:49:27 UTC (rev 238446)
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+build() {
+add_module btrfs
+add_binary btrfs
+add_binary btrfsck
+add_runscript
+}
+
+help() {
+cat HELPEOF
+This hook provides support for multi-device btrfs volumes. This hook
+is only needed for initramfs images which do not use udev.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et:

Copied: btrfs-progs/repos/testing-x86_64/PKGBUILD (from rev 238445, 

[arch-commits] Commit in linux-grsec/trunk (PKGBUILD config config.x86_64)

2015-05-03 Thread Daniel Micay
Date: Monday, May 4, 2015 @ 00:05:11
  Author: thestinger
Revision: 132676

upgpkg: linux-grsec 4.0.1.201505031602-1

Modified:
  linux-grsec/trunk/PKGBUILD
  linux-grsec/trunk/config
  linux-grsec/trunk/config.x86_64

---+
 PKGBUILD  |   24 +-
 config|  134 +++-
 config.x86_64 |  134 ++--
 3 files changed, 217 insertions(+), 75 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 21:54:29 UTC (rev 132675)
+++ PKGBUILD2015-05-03 22:05:11 UTC (rev 132676)
@@ -6,10 +6,10 @@
 # Contributor: Thomas Dwyer http://tomd.tel
 
 pkgbase=linux-grsec
-_srcname=linux-3.19
-_pkgver=3.19.6
+_srcname=linux-4.0
+_pkgver=4.0.1
 _grsecver=3.1
-_timestamp=201504290821
+_timestamp=201505031602
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -18,10 +18,10 @@
 license=('GPL2')
 makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc')
 options=('!strip')
-source=(https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz;
-https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.sign;
-https://www.kernel.org/pub/linux/kernel/v3.x/patch-${_pkgver}.xz;
-https://www.kernel.org/pub/linux/kernel/v3.x/patch-${_pkgver}.sign;
+source=(https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz;
+https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign;
+https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.xz;
+https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.sign;
 https://grsecurity.net/test/$_grsec_patch;
 https://grsecurity.net/test/${_grsec_patch}.sig;
 # the main kernel config files
@@ -30,14 +30,14 @@
 'linux.preset'
 'change-default-console-loglevel.patch'
 )
-sha256sums=('be42511fe5321012bb4a2009167ce56a9e5fe362b4af43e8c371b3666859806c'
+sha256sums=('0f2f7d44979bc8f71c4fc5d3308c03499c26a824dd311fdf6eef4dee0d7d5991'
 'SKIP'
-'8dd82b6e2daca608e18dcda50b370b089dd45a7b3915ea274b59bfe15f657026'
+'9b4b47eb6584dc39aaa5db46843b83f7c60975abecbda4dc106a8722eabe96fb'
 'SKIP'
-'d834d624948626d9dd3fd7383200e5a396feebd6de710f19b38f09791941ca5b'
+'94bf9b3abbee7d4dac657a519515b1ee76bd11fa3cb37deb081867dbe6962f9a'
 'SKIP'
-'565eb62808216b0ea6fbf16647ffd907810b1d34e445b82d093134bb26c46b7b'
-'3861d6d5ac87d64209971d2f5e389246a1f10833bcd4519c05007a01ab881631'
+'3ec9745e2cde88012480be6f45456c7226c1dcedf137b9d93441f3d891eae57d'
+'1e03da0a93bad6f5a6b11783903990716771cb78db3397c0773c18ac0f883488'
 'ca7e718375b3790888756cc0a64a7500cd57dddb9bf7e10a0df22c860d91f74d'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
 validpgpkeys=(

Modified: config
===
--- config  2015-05-03 21:54:29 UTC (rev 132675)
+++ config  2015-05-03 22:05:11 UTC (rev 132676)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 3.19.1.201503092204-1 Kernel Configuration
+# Linux/x86 4.0.1.201505031602-1 Kernel Configuration
 #
 # CONFIG_64BIT is not set
 CONFIG_X86_32=y
@@ -124,6 +124,7 @@
 # RCU Subsystem
 #
 CONFIG_PREEMPT_RCU=y
+CONFIG_SRCU=y
 # CONFIG_TASKS_RCU is not set
 CONFIG_RCU_STALL_COMMON=y
 CONFIG_RCU_FANOUT=32
@@ -132,6 +133,7 @@
 CONFIG_RCU_FAST_NO_HZ=y
 # CONFIG_TREE_RCU_TRACE is not set
 # CONFIG_RCU_BOOST is not set
+CONFIG_RCU_KTHREAD_PRIO=0
 # CONFIG_RCU_NOCB_CPU is not set
 CONFIG_BUILD_BIN2C=y
 CONFIG_IKCONFIG=y
@@ -176,7 +178,6 @@
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
-# CONFIG_INIT_FALLBACK is not set
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
 CONFIG_SYSCTL=y
 CONFIG_ANON_INODES=y
@@ -341,6 +342,7 @@
 CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
 CONFIG_MUTEX_SPIN_ON_OWNER=y
 CONFIG_RWSEM_SPIN_ON_OWNER=y
+CONFIG_LOCK_SPIN_ON_OWNER=y
 CONFIG_ARCH_USE_QUEUE_RWLOCK=y
 CONFIG_QUEUE_RWLOCK=y
 CONFIG_FREEZER=y
@@ -355,6 +357,7 @@
 # CONFIG_X86_BIGSMP is not set
 # CONFIG_X86_EXTENDED_PLATFORM is not set
 CONFIG_X86_INTEL_LPSS=y
+# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
 CONFIG_IOSF_MBI=m
 # CONFIG_IOSF_MBI_DEBUG is not set
 CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
@@ -491,6 +494,7 @@
 CONFIG_ZBUD=y
 CONFIG_ZSMALLOC=y
 # CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_ZSMALLOC_STAT is not set
 CONFIG_GENERIC_EARLY_IOREMAP=y
 # CONFIG_HIGHPTE is not set
 CONFIG_X86_CHECK_BIOS_CORRUPTION=y
@@ -572,6 +576,7 @@
 CONFIG_ACPI_PCI_SLOT=y
 CONFIG_X86_PM_TIMER=y
 CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_HOTPLUG_IOAPIC=y
 CONFIG_ACPI_SBS=m
 CONFIG_ACPI_HED=y
 CONFIG_ACPI_CUSTOM_METHOD=m
@@ -1246,6 +1251,7 @@
 CONFIG_PHONET=m
 CONFIG_6LOWPAN=m
 CONFIG_IEEE802154=m
+CONFIG_IEEE802154_SOCKET=m
 

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

2015-05-03 Thread Daniel Micay
Date: Monday, May 4, 2015 @ 00:06:16
  Author: thestinger
Revision: 132677

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

Added:
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 132676, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 132676, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 132676, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 132676, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 132676, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 132676, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 132676, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 132676, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 132676, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 132676, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 132676, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 132676, linux-grsec/trunk/linux.preset)
Deleted:
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

+
 /PKGBUILD  |  650 
 /change-default-console-loglevel.patch |   22 
 /config|15030 +++
 /config.x86_64 |14446 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  325 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 7443 ---
 community-i686/config.x86_64   | 7153 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  325 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 7443 ---
 community-x86_64/config.x86_64 | 7153 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 30250 insertions(+), 29966 deletions(-)

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


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

2015-05-03 Thread Anatol Pomozov
Date: Monday, May 4, 2015 @ 01:13:22
  Author: anatolik
Revision: 132678

FS#44830 add replaces=(ruby-gdkpixbuf2)

Modified:
  ruby-gdk_pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 22:06:16 UTC (rev 132677)
+++ PKGBUILD2015-05-03 23:13:22 UTC (rev 132678)
@@ -4,12 +4,13 @@
 _gemname=gdk_pixbuf2
 pkgname=ruby-$_gemname
 pkgver=2.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
 license=(LGPL2.1)
 depends=(ruby ruby-glib2=$pkgver gdk-pixbuf2)
+replaces=(ruby-gdkpixbuf2)
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)


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

2015-05-03 Thread Anatol Pomozov
Date: Monday, May 4, 2015 @ 01:14:17
  Author: anatolik
Revision: 132679

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

Added:
  ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD
(from rev 132678, ruby-gdk_pixbuf2/trunk/PKGBUILD)
  ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD
(from rev 132678, ruby-gdk_pixbuf2/trunk/PKGBUILD)
Deleted:
  ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD
  ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   46 
 community-i686/PKGBUILD   |   22 -
 community-x86_64/PKGBUILD |   22 -
 3 files changed, 46 insertions(+), 44 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-03 23:13:22 UTC (rev 132678)
+++ community-i686/PKGBUILD 2015-05-03 23:14:17 UTC (rev 132679)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-_gemname=gdk_pixbuf2
-pkgname=ruby-$_gemname
-pkgver=2.2.5
-pkgrel=1
-pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-glib2=$pkgver gdk-pixbuf2)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('341399cadcb4278a37c1b9771860273efc4f674f')
-
-package() {
-  local _gemdir=$(ruby -e'puts Gem.default_dir')
-  gem install --ignore-dependencies --no-user-install -i $pkgdir/$_gemdir -n 
$pkgdir/usr/bin $_gemname-$pkgver.gem
-  rm $pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem
-}

Copied: ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD (from rev 132678, 
ruby-gdk_pixbuf2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-03 23:14:17 UTC (rev 132679)
@@ -0,0 +1,23 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+_gemname=gdk_pixbuf2
+pkgname=ruby-$_gemname
+pkgver=2.2.5
+pkgrel=2
+pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-glib2=$pkgver gdk-pixbuf2)
+replaces=(ruby-gdkpixbuf2)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('341399cadcb4278a37c1b9771860273efc4f674f')
+
+package() {
+  local _gemdir=$(ruby -e'puts Gem.default_dir')
+  gem install --ignore-dependencies --no-user-install -i $pkgdir/$_gemdir -n 
$pkgdir/usr/bin $_gemname-$pkgver.gem
+  rm $pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-03 23:13:22 UTC (rev 132678)
+++ community-x86_64/PKGBUILD   2015-05-03 23:14:17 UTC (rev 132679)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-_gemname=gdk_pixbuf2
-pkgname=ruby-$_gemname
-pkgver=2.2.5
-pkgrel=1
-pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-glib2=$pkgver gdk-pixbuf2)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('341399cadcb4278a37c1b9771860273efc4f674f')
-
-package() {
-  local _gemdir=$(ruby -e'puts Gem.default_dir')
-  gem install --ignore-dependencies --no-user-install -i $pkgdir/$_gemdir -n 
$pkgdir/usr/bin $_gemname-$pkgver.gem
-  rm $pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem
-}

Copied: ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD (from rev 132678, 
ruby-gdk_pixbuf2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-03 23:14:17 UTC (rev 132679)
@@ -0,0 +1,23 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+_gemname=gdk_pixbuf2
+pkgname=ruby-$_gemname
+pkgver=2.2.5
+pkgrel=2
+pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-glib2=$pkgver gdk-pixbuf2)
+replaces=(ruby-gdkpixbuf2)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('341399cadcb4278a37c1b9771860273efc4f674f')
+
+package() {
+  local _gemdir=$(ruby -e'puts Gem.default_dir')
+  gem install --ignore-dependencies 

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

2015-05-03 Thread Felix Yan
Date: Monday, May 4, 2015 @ 04:54:46
  Author: fyan
Revision: 132682

archrelease: copy trunk to community-any

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

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

Deleted: LICENSE
===
--- LICENSE 2015-05-04 02:46:49 UTC (rev 132681)
+++ LICENSE 2015-05-04 02:54:46 UTC (rev 132682)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 132681, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-05-04 02:54:46 UTC (rev 132682)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

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

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

2015-05-03 Thread Evangelos Foutras
Date: Monday, May 4, 2015 @ 07:48:16
  Author: foutrelis
Revision: 132683

upgpkg: xdotool 3.20150503.1-1

New upstream release.

Modified:
  xdotool/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-04 02:54:46 UTC (rev 132682)
+++ PKGBUILD2015-05-04 05:48:16 UTC (rev 132683)
@@ -3,20 +3,19 @@
 # Contributor: Rttommy rtto...@gmail.com
 
 pkgname=xdotool
-pkgver=2.20110530.1
-pkgrel=3
+pkgver=3.20150503.1
+pkgrel=1
 pkgdesc=Command-line X11 automation tool
 arch=('i686' 'x86_64')
 url=http://www.semicomplete.com/projects/xdotool/;
 license=('BSD')
-depends=('libxtst' 'libxinerama')
-source=(http://semicomplete.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67')
+depends=('libxtst' 'libxinerama' 'libxkbcommon')
+source=(https://github.com/jordansissel/xdotool/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e8326883bd5e91bede7336cbee186e6e9143f40b3fb61c84afc9bb31b87e96d1')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-
-  make
+  make WITHOUT_RPATH_FIX=1
 }
 
 package() {
@@ -27,8 +26,7 @@
   # Remove execute bit from header file
   chmod -x $pkgdir/usr/include/xdo.h
 
-  # License
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/xdotool/COPYRIGHT
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
 }
 
 # vim:set ts=2 sw=2 et:


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

2015-05-03 Thread Evangelos Foutras
Date: Monday, May 4, 2015 @ 07:48:28
  Author: foutrelis
Revision: 132684

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-04 05:48:16 UTC (rev 132683)
+++ community-i686/PKGBUILD 2015-05-04 05:48:28 UTC (rev 132684)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Rttommy rtto...@gmail.com
-
-pkgname=xdotool
-pkgver=2.20110530.1
-pkgrel=3
-pkgdesc=Command-line X11 automation tool
-arch=('i686' 'x86_64')
-url=http://www.semicomplete.com/projects/xdotool/;
-license=('BSD')
-depends=('libxtst' 'libxinerama')
-source=(http://semicomplete.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make PREFIX=$pkgdir/usr INSTALLMAN=$pkgdir/usr/share/man install
-
-  # Remove execute bit from header file
-  chmod -x $pkgdir/usr/include/xdo.h
-
-  # License
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/xdotool/COPYRIGHT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xdotool/repos/community-i686/PKGBUILD (from rev 132683, 
xdotool/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-04 05:48:28 UTC (rev 132684)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Rttommy rtto...@gmail.com
+
+pkgname=xdotool
+pkgver=3.20150503.1
+pkgrel=1
+pkgdesc=Command-line X11 automation tool
+arch=('i686' 'x86_64')
+url=http://www.semicomplete.com/projects/xdotool/;
+license=('BSD')
+depends=('libxtst' 'libxinerama' 'libxkbcommon')
+source=(https://github.com/jordansissel/xdotool/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e8326883bd5e91bede7336cbee186e6e9143f40b3fb61c84afc9bb31b87e96d1')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make WITHOUT_RPATH_FIX=1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make PREFIX=$pkgdir/usr INSTALLMAN=$pkgdir/usr/share/man install
+
+  # Remove execute bit from header file
+  chmod -x $pkgdir/usr/include/xdo.h
+
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-04 05:48:16 UTC (rev 132683)
+++ community-x86_64/PKGBUILD   2015-05-04 05:48:28 UTC (rev 132684)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Rttommy rtto...@gmail.com
-
-pkgname=xdotool
-pkgver=2.20110530.1
-pkgrel=3
-pkgdesc=Command-line X11 automation tool
-arch=('i686' 'x86_64')
-url=http://www.semicomplete.com/projects/xdotool/;
-license=('BSD')
-depends=('libxtst' 'libxinerama')
-source=(http://semicomplete.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make PREFIX=$pkgdir/usr INSTALLMAN=$pkgdir/usr/share/man install
-
-  # Remove execute bit from header file
-  chmod -x $pkgdir/usr/include/xdo.h
-
-  # License
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/xdotool/COPYRIGHT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xdotool/repos/community-x86_64/PKGBUILD (from rev 132683, 
xdotool/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-04 05:48:28 UTC (rev 132684)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Rttommy rtto...@gmail.com
+
+pkgname=xdotool
+pkgver=3.20150503.1
+pkgrel=1
+pkgdesc=Command-line X11 automation tool
+arch=('i686' 'x86_64')
+url=http://www.semicomplete.com/projects/xdotool/;
+license=('BSD')
+depends=('libxtst' 'libxinerama' 'libxkbcommon')
+source=(https://github.com/jordansissel/xdotool/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e8326883bd5e91bede7336cbee186e6e9143f40b3fb61c84afc9bb31b87e96d1')
+
+build() {
+  cd 

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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 06:21:47
  Author: bisson
Revision: 238449

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

Added:
  gnupg/repos/core-i686/PKGBUILD
(from rev 238448, gnupg/repos/testing-i686/PKGBUILD)
  gnupg/repos/core-i686/install
(from rev 238448, gnupg/repos/testing-i686/install)
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 238448, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 238448, gnupg/repos/testing-x86_64/install)
Deleted:
  gnupg/repos/core-i686/PKGBUILD
  gnupg/repos/core-i686/install
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/testing-i686/
  gnupg/repos/testing-x86_64/

--+
 /PKGBUILD|  126 +
 /install |   50 +++
 core-i686/PKGBUILD   |   63 
 core-i686/install|   25 -
 core-x86_64/PKGBUILD |   63 
 core-x86_64/install  |   25 -
 6 files changed, 176 insertions(+), 176 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-03 23:43:27 UTC (rev 238448)
+++ core-i686/PKGBUILD  2015-05-04 04:21:47 UTC (rev 238449)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-# Contributor: Judd Vinet jvi...@zeroflux.org
-
-pkgname=gnupg
-pkgver=2.1.3
-pkgrel=2
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon')
-makedepends=('libldap' 'libusb-compat')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
-  '46CC730865BB5C78EBABADCF04376F3EE0856959'
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
-  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('091e69ec1ce3f0032e6b135e4da561e8d46d20a7' 'SKIP')
-
-install=install
-
-conflicts=('dirmngr' 'gnupg2')
-provides=('dirmngr' gnupg2=${pkgver})
-replaces=('dirmngr' 'gnupg2')
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-   --enable-gpgtar \
-
-   make
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   ln -s gpg2 ${pkgdir}/usr/bin/gpg
-   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
-   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
-   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
-}

Copied: gnupg/repos/core-i686/PKGBUILD (from rev 238448, 
gnupg/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-04 04:21:47 UTC (rev 238449)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.3
+pkgrel=3
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('091e69ec1ce3f0032e6b135e4da561e8d46d20a7' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/noinst_SCRIPTS = gpg-zip/c bin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   

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

2015-05-03 Thread Felix Yan
Date: Monday, May 4, 2015 @ 04:46:49
  Author: fyan
Revision: 132681

archrelease: copy trunk to community-any

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

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

Deleted: LICENSE
===
--- LICENSE 2015-05-04 02:45:48 UTC (rev 132680)
+++ LICENSE 2015-05-04 02:46:49 UTC (rev 132681)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 132680, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-05-04 02:46:49 UTC (rev 132681)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

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

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

2015-05-03 Thread Felix Yan
Date: Monday, May 4, 2015 @ 04:45:48
  Author: fyan
Revision: 132680

upgpkg: jenkins 1.612-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 23:14:17 UTC (rev 132679)
+++ PKGBUILD2015-05-04 02:45:48 UTC (rev 132680)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.611
+pkgver=1.612
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('c7b2ec8be305c44347729079c12867fca72950d4651b1784d27b8aa4f6223867dd9d2277f1cd7bd83734d82bcfe46818999673a65b24f0d7946799ffe49c2539'
+sha512sums=('3718d6cd56199c90c01e9847f45f6b5542847e04d50a5ba98e9d792382a276806200dd927d3e2a7df35d46a3b4b37d190dd0733469d37ce336a4cd8a2d2ef6ae'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 06:21:50
  Author: bisson
Revision: 238452

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

Added:
  s-nail/repos/core-i686/PKGBUILD
(from rev 238448, s-nail/repos/testing-i686/PKGBUILD)
  s-nail/repos/core-x86_64/PKGBUILD
(from rev 238448, s-nail/repos/testing-x86_64/PKGBUILD)
Deleted:
  s-nail/repos/core-i686/PKGBUILD
  s-nail/repos/core-x86_64/PKGBUILD
  s-nail/repos/testing-i686/
  s-nail/repos/testing-x86_64/

--+
 /PKGBUILD|  102 +
 core-i686/PKGBUILD   |   51 
 core-x86_64/PKGBUILD |   51 
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-04 04:21:49 UTC (rev 238451)
+++ core-i686/PKGBUILD  2015-05-04 04:21:50 UTC (rev 238452)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
-# Contributor: Andreas Wagner andreas.wag...@em.uni-frankfurt.de
-
-pkgname=s-nail
-pkgver=14.7.11
-pkgrel=1
-pkgdesc='Mail processing system with a command syntax reminiscent of ed'
-url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-depends=('openssl' 'krb5')
-optdepends=('smtp-forwarder: for sending mail')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz;)
-sha1sums=('425bfe08a74483c4d8bd96f8943c03953a28187e')
-
-groups=('base')
-backup=('etc/mail.rc')
-replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
-provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
-conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   CFLAGS+= $CPPFLAGS
-   make \
-   PREFIX=/usr \
-   SYSCONFDIR=/etc \
-   MANDIR=/usr/share/man \
-   MAILSPOOL=/var/spool/mail \
-   SID= NAIL=mail \
-   WANT_AUTOCC=0 \
-   config
-
-   make build
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make test
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} packager-install
-   ln -sf mail ${pkgdir}/usr/bin/mailx
-   ln -sf mail.1.gz ${pkgdir}/usr/share/man/man1/mailx.1.gz
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: s-nail/repos/core-i686/PKGBUILD (from rev 238448, 
s-nail/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-04 04:21:50 UTC (rev 238452)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
+# Contributor: Andreas Wagner andreas.wag...@em.uni-frankfurt.de
+
+pkgname=s-nail
+pkgver=14.8.0
+pkgrel=1
+pkgdesc='Mail processing system with a command syntax reminiscent of ed'
+url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'krb5')
+optdepends=('smtp-forwarder: for sending mail')
+source=(https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz;)
+sha1sums=('5d0e1d59263011efa81cedbf4f970b0522090f2d')
+
+groups=('base')
+backup=('etc/mail.rc')
+replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   CFLAGS+= $CPPFLAGS
+   make \
+   PREFIX=/usr \
+   SYSCONFDIR=/etc \
+   MANDIR=/usr/share/man \
+   MAILSPOOL=/var/spool/mail \
+   SID= NAIL=mail \
+   WANT_AUTOCC=0 \
+   config
+
+   make build
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make test
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} packager-install
+   ln -sf mail ${pkgdir}/usr/bin/mailx
+   ln -sf mail.1.gz ${pkgdir}/usr/share/man/man1/mailx.1.gz
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-04 04:21:49 UTC (rev 238451)
+++ core-x86_64/PKGBUILD2015-05-04 04:21:50 UTC (rev 238452)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
-# Contributor: Andreas Wagner 

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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 06:21:49
  Author: bisson
Revision: 238451

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

Added:
  npth/repos/core-i686/PKGBUILD
(from rev 238448, npth/repos/testing-i686/PKGBUILD)
  npth/repos/core-x86_64/PKGBUILD
(from rev 238448, npth/repos/testing-x86_64/PKGBUILD)
Deleted:
  npth/repos/core-i686/PKGBUILD
  npth/repos/core-x86_64/PKGBUILD
  npth/repos/testing-i686/
  npth/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-04 04:21:48 UTC (rev 238450)
+++ core-i686/PKGBUILD  2015-05-04 04:21:49 UTC (rev 238451)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=npth
-pkgver=1.1
-pkgrel=1
-pkgdesc='New portable threads library'
-url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
-license=('LGPL')
-options=('!libtool')
-arch=('i686' 'x86_64')
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('597ce74402e5790553a6273130b214d7ddd0b05d')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr --enable-maintainer-mode
-   make
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: npth/repos/core-i686/PKGBUILD (from rev 238448, 
npth/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-04 04:21:49 UTC (rev 238451)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=npth
+pkgver=1.2
+pkgrel=1
+pkgdesc='New portable threads library'
+url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('3bfa2a2d7521d6481850e8a611efe5bf5ed75200' 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --enable-maintainer-mode
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-04 04:21:48 UTC (rev 238450)
+++ core-x86_64/PKGBUILD2015-05-04 04:21:49 UTC (rev 238451)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=npth
-pkgver=1.1
-pkgrel=1
-pkgdesc='New portable threads library'
-url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
-license=('LGPL')
-options=('!libtool')
-arch=('i686' 'x86_64')
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('597ce74402e5790553a6273130b214d7ddd0b05d')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr --enable-maintainer-mode
-   make
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: npth/repos/core-x86_64/PKGBUILD (from rev 238448, 
npth/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2015-05-04 04:21:49 UTC (rev 238451)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=npth
+pkgver=1.2
+pkgrel=1
+pkgdesc='New portable threads library'
+url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('3bfa2a2d7521d6481850e8a611efe5bf5ed75200' 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --enable-maintainer-mode
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}


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

2015-05-03 Thread Gaetan Bisson
Date: Monday, May 4, 2015 @ 06:21:48
  Author: bisson
Revision: 238450

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

Added:
  libedit/repos/core-i686/PKGBUILD
(from rev 238448, libedit/repos/testing-i686/PKGBUILD)
  libedit/repos/core-x86_64/PKGBUILD
(from rev 238448, libedit/repos/testing-x86_64/PKGBUILD)
Deleted:
  libedit/repos/core-i686/PKGBUILD
  libedit/repos/core-x86_64/PKGBUILD
  libedit/repos/testing-i686/
  libedit/repos/testing-x86_64/

--+
 /PKGBUILD|   60 +
 core-i686/PKGBUILD   |   30 
 core-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-04 04:21:47 UTC (rev 238449)
+++ core-i686/PKGBUILD  2015-05-04 04:21:48 UTC (rev 238450)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Maintainer: Vesa Kaihlavirta v...@archlinux.org
-# Contributor: Roman Cheplyaka r...@ro-che.info
-
-pkgname=libedit
-pkgver=20141030_3.1
-_pkgver=20141029-3.1
-pkgrel=1
-pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
-url='http://www.thrysoee.dk/editline/'
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('ncurses')
-source=(http://www.thrysoee.dk/editline/libedit-${pkgver/_/-}.tar.gz;)
-sha1sums=('58b73e529b2361c172a57c9a4bbecb0633efca30')
-
-build() {
-   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
-   ./configure --prefix=/usr --enable-widec
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
-   make prefix=${pkgdir}/usr install
-
-   cp ${pkgdir}/usr/share/man/man3/editline.3 
${pkgdir}/usr/share/man/man3/el.3
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/libedit/LICENSE
-}

Copied: libedit/repos/core-i686/PKGBUILD (from rev 238448, 
libedit/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-04 04:21:48 UTC (rev 238450)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Maintainer: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Roman Cheplyaka r...@ro-che.info
+
+pkgname=libedit
+_pkgver=20150325-3.1
+pkgver=${_pkgver/-/_}
+pkgrel=1
+pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
+url='http://www.thrysoee.dk/editline/'
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('ncurses')
+source=(http://www.thrysoee.dk/editline/libedit-${pkgver/_/-}.tar.gz;)
+sha1sums=('c5bf50b433ea35f9fc883400cde674556c44af30')
+
+build() {
+   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
+   ./configure --prefix=/usr --enable-widec
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
+   make prefix=${pkgdir}/usr install
+
+   cp ${pkgdir}/usr/share/man/man3/editline.3 
${pkgdir}/usr/share/man/man3/el.3
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/libedit/LICENSE
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-04 04:21:47 UTC (rev 238449)
+++ core-x86_64/PKGBUILD2015-05-04 04:21:48 UTC (rev 238450)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Maintainer: Vesa Kaihlavirta v...@archlinux.org
-# Contributor: Roman Cheplyaka r...@ro-che.info
-
-pkgname=libedit
-pkgver=20141030_3.1
-_pkgver=20141029-3.1
-pkgrel=1
-pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
-url='http://www.thrysoee.dk/editline/'
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('ncurses')
-source=(http://www.thrysoee.dk/editline/libedit-${pkgver/_/-}.tar.gz;)
-sha1sums=('58b73e529b2361c172a57c9a4bbecb0633efca30')
-
-build() {
-   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
-   ./configure --prefix=/usr --enable-widec
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${_pkgver/_/-}
-   make prefix=${pkgdir}/usr install
-
-   cp ${pkgdir}/usr/share/man/man3/editline.3 
${pkgdir}/usr/share/man/man3/el.3
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/libedit/LICENSE
-}

Copied: libedit/repos/core-x86_64/PKGBUILD (from rev 238448, 
libedit/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2015-05-04 04:21:48 UTC (rev 238450)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Maintainer: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Roman Cheplyaka r...@ro-che.info
+
+pkgname=libedit
+_pkgver=20150325-3.1
+pkgver=${_pkgver/-/_}
+pkgrel=1
+pkgdesc='Command 

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

2015-05-03 Thread Martin Wimpress
Date: Sunday, May 3, 2015 @ 12:02:14
  Author: flexiondotorg
Revision: 132651

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

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

+
 /PKGBUILD  |  102 ++
 /syncthing.1   |  188 +++
 /syncthing.install |   40 +++
 community-i686/PKGBUILD|   51 -
 community-i686/syncthing.1 |   94 -
 community-i686/syncthing.install   |   20 ---
 community-x86_64/PKGBUILD  |   51 -
 community-x86_64/syncthing.1   |   94 -
 community-x86_64/syncthing.install |   20 ---
 9 files changed, 330 insertions(+), 330 deletions(-)

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

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 132650, 
syncthing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-03 10:02:14 UTC (rev 132651)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.2
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPLv2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
+$pkgname.1)
+sha1sums=('SKIP'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+install=${pkgname}.install
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p src/github.com/syncthing
+  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  go run build.go -no-upgrade build
+}
+
+check() {
+  export GOPATH=${srcdir}
+  cd 

[arch-commits] Commit in gcc/repos (38 files)

2015-05-03 Thread Allan McRae
Date: Sunday, May 3, 2015 @ 12:55:44
  Author: allan
Revision: 238380

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

Added:
  gcc/repos/testing-i686/PKGBUILD
(from rev 238379, gcc/trunk/PKGBUILD)
  gcc/repos/testing-i686/gcc-4.8-filename-output.patch
(from rev 238379, gcc/trunk/gcc-4.8-filename-output.patch)
  gcc/repos/testing-i686/gcc-4.9-isl-0.13-hack.patch
(from rev 238379, gcc/trunk/gcc-4.9-isl-0.13-hack.patch)
  gcc/repos/testing-i686/gcc-ada.install
(from rev 238379, gcc/trunk/gcc-ada.install)
  gcc/repos/testing-i686/gcc-fortran.install
(from rev 238379, gcc/trunk/gcc-fortran.install)
  gcc/repos/testing-i686/gcc-go.install
(from rev 238379, gcc/trunk/gcc-go.install)
  gcc/repos/testing-i686/gcc-libs.install
(from rev 238379, gcc/trunk/gcc-libs.install)
  gcc/repos/testing-i686/gcc.install
(from rev 238379, gcc/trunk/gcc.install)
  gcc/repos/testing-i686/pr65801.patch
(from rev 238379, gcc/trunk/pr65801.patch)
  gcc/repos/testing-i686/pr65822.patch
(from rev 238379, gcc/trunk/pr65822.patch)
  gcc/repos/testing-i686/pr65873.patch
(from rev 238379, gcc/trunk/pr65873.patch)
  gcc/repos/testing-x86_64/PKGBUILD
(from rev 238379, gcc/trunk/PKGBUILD)
  gcc/repos/testing-x86_64/gcc-4.8-filename-output.patch
(from rev 238379, gcc/trunk/gcc-4.8-filename-output.patch)
  gcc/repos/testing-x86_64/gcc-4.9-isl-0.13-hack.patch
(from rev 238379, gcc/trunk/gcc-4.9-isl-0.13-hack.patch)
  gcc/repos/testing-x86_64/gcc-ada.install
(from rev 238379, gcc/trunk/gcc-ada.install)
  gcc/repos/testing-x86_64/gcc-fortran.install
(from rev 238379, gcc/trunk/gcc-fortran.install)
  gcc/repos/testing-x86_64/gcc-go.install
(from rev 238379, gcc/trunk/gcc-go.install)
  gcc/repos/testing-x86_64/gcc-libs.install
(from rev 238379, gcc/trunk/gcc-libs.install)
  gcc/repos/testing-x86_64/gcc.install
(from rev 238379, gcc/trunk/gcc.install)
  gcc/repos/testing-x86_64/pr65801.patch
(from rev 238379, gcc/trunk/pr65801.patch)
  gcc/repos/testing-x86_64/pr65822.patch
(from rev 238379, gcc/trunk/pr65822.patch)
  gcc/repos/testing-x86_64/pr65873.patch
(from rev 238379, gcc/trunk/pr65873.patch)
Deleted:
  gcc/repos/testing-i686/PKGBUILD
  gcc/repos/testing-i686/gcc-4.8-filename-output.patch
  gcc/repos/testing-i686/gcc-4.9-isl-0.13-hack.patch
  gcc/repos/testing-i686/gcc-ada.install
  gcc/repos/testing-i686/gcc-fortran.install
  gcc/repos/testing-i686/gcc-go.install
  gcc/repos/testing-i686/gcc-libs.install
  gcc/repos/testing-i686/gcc.install
  gcc/repos/testing-x86_64/PKGBUILD
  gcc/repos/testing-x86_64/gcc-4.8-filename-output.patch
  gcc/repos/testing-x86_64/gcc-4.9-isl-0.13-hack.patch
  gcc/repos/testing-x86_64/gcc-ada.install
  gcc/repos/testing-x86_64/gcc-fortran.install
  gcc/repos/testing-x86_64/gcc-go.install
  gcc/repos/testing-x86_64/gcc-libs.install
  gcc/repos/testing-x86_64/gcc.install

--+
 /PKGBUILD|  668 +
 /gcc-4.8-filename-output.patch   |   34 +
 /gcc-4.9-isl-0.13-hack.patch |  142 +
 /gcc-ada.install |   40 +
 /gcc-fortran.install |   32 +
 /gcc-go.install  |   40 +
 /gcc-libs.install|   32 +
 /gcc.install |   40 +
 testing-i686/PKGBUILD|  310 ---
 testing-i686/gcc-4.8-filename-output.patch   |   17 
 testing-i686/gcc-4.9-isl-0.13-hack.patch |   71 --
 testing-i686/gcc-ada.install |   20 
 testing-i686/gcc-fortran.install |   16 
 testing-i686/gcc-go.install  |   20 
 testing-i686/gcc-libs.install|   16 
 testing-i686/gcc.install |   20 
 testing-i686/pr65801.patch   |   54 ++
 testing-i686/pr65822.patch   |   66 ++
 testing-i686/pr65873.patch   |   17 
 testing-x86_64/PKGBUILD  |  310 ---
 testing-x86_64/gcc-4.8-filename-output.patch |   17 
 testing-x86_64/gcc-4.9-isl-0.13-hack.patch   |   71 --
 testing-x86_64/gcc-ada.install   |   20 
 testing-x86_64/gcc-fortran.install   |   16 
 testing-x86_64/gcc-go.install|   20 
 testing-x86_64/gcc-libs.install  |   16 
 testing-x86_64/gcc.install   |   20 
 testing-x86_64/pr65801.patch |   54 ++
 testing-x86_64/pr65822.patch |   66 ++
 testing-x86_64/pr65873.patch |   17 
 30 files changed, 1302 insertions(+), 980 deletions(-)

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


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

2015-05-03 Thread Martin Wimpress
Date: Sunday, May 3, 2015 @ 12:01:53
  Author: flexiondotorg
Revision: 132650

upgpkg: syncthing 0.11.2-1 - New upstream release.

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 05:32:35 UTC (rev 132649)
+++ PKGBUILD2015-05-03 10:01:53 UTC (rev 132650)
@@ -6,8 +6,8 @@
 # Contributor: korjjj korjjj+...@gmail.com
 
 pkgname=syncthing
-pkgver=0.11.1
-pkgrel=2
+pkgver=0.11.2
+pkgrel=1
 pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
 url=http://syncthing.net/;
 license=('MPLv2')


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

2015-05-03 Thread Allan McRae
Date: Sunday, May 3, 2015 @ 12:51:52
  Author: allan
Revision: 238379

upgpkg: gcc 5.1.0-2

fix a few bugs, enable libmpx, make lto usage easier

Modified:
  gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 07:30:27 UTC (rev 238378)
+++ PKGBUILD2015-05-03 10:51:52 UTC (rev 238379)
@@ -8,7 +8,7 @@
 pkgver=5.1.0
 _pkgver=5
 _islver=0.14.1
-pkgrel=1
+pkgrel=2
 _snapshot=5-20150428
 pkgdesc=The GNU Compiler Collection
 arch=('i686' 'x86_64')


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:16:09
  Author: fyan
Revision: 132656

upgpkg: python-urllib3 1.10.4-1

Modified:
  python-urllib3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 16:14:40 UTC (rev 132655)
+++ PKGBUILD2015-05-03 16:16:09 UTC (rev 132656)
@@ -6,7 +6,7 @@
 
 pkgbase=python-urllib3
 pkgname=(python-urllib3 python2-urllib3)
-pkgver=1.10.3
+pkgver=1.10.4
 pkgrel=1
 pkgdesc=HTTP library with thread-safe connection pooling and file post 
support
 arch=(any)
@@ -17,7 +17,7 @@
   'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 
'python-coverage' 'python2-coverage')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/shazow/urllib3/archive/$pkgver.tar.gz;
 LICENSE)
-md5sums=('e7c42b05c0c44e508d8e83b98cc2be8c'
+md5sums=('6f768748ad8d20ad5f6160e009b36721'
  '350846ab4dd11ce105b570c15c1b0764')
 
 prepare() {


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:16:23
  Author: fyan
Revision: 132657

archrelease: copy trunk to community-any

Added:
  python-urllib3/repos/community-any/LICENSE
(from rev 132656, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/community-any/PKGBUILD
(from rev 132656, python-urllib3/trunk/PKGBUILD)
Deleted:
  python-urllib3/repos/community-any/LICENSE
  python-urllib3/repos/community-any/PKGBUILD

--+
 LICENSE  |   64 +++
 PKGBUILD |  124 ++---
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-05-03 16:16:09 UTC (rev 132656)
+++ LICENSE 2015-05-03 16:16:23 UTC (rev 132657)
@@ -1,32 +0,0 @@
-Note from the ArchLinux Packager:
-The urllib3 source doesn't come with a license file.  Its homepage
-does provide a link to the text of the MIT license, so I copied
-the following text to a file when building the package.
-
---CUT--
-Open Source Initiative OSI - The MIT License:Licensing
-
-
-[OSI Approved License]
-
-The MIT License
-
-Copyright (c) year copyright holders
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: python-urllib3/repos/community-any/LICENSE (from rev 132656, 
python-urllib3/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-05-03 16:16:23 UTC (rev 132657)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c) year copyright holders
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:16:09 UTC (rev 132656)
+++ PKGBUILD2015-05-03 16:16:23 UTC (rev 132657)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Patrice Peterson runiq at archlinux dot us
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: BorgHunter borghunter at gmail dot com
-
-pkgbase=python-urllib3
-pkgname=(python-urllib3 python2-urllib3)
-pkgver=1.10.3
-pkgrel=1
-pkgdesc=HTTP library with thread-safe connection pooling and file post 
support
-arch=(any)
-url=https://github.com/shazow/urllib3;
-license=(MIT)
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-pyopenssl' 'python2-pyopenssl'
-  'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 
'python-coverage' 'python2-coverage')

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

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 20:52:49
  Author: arojas
Revision: 238442

baloo-frameworks - baloo

Modified:
  gwenview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 18:46:12 UTC (rev 238441)
+++ PKGBUILD2015-05-03 18:52:49 UTC (rev 238442)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde-applications' 'kdegraphics')
-depends=('kded' 'kactivities-frameworks' 'baloo-frameworks')
+depends=('kded' 'kactivities-frameworks' 'baloo')
 optdepends=('qt5-imageformats: support for tiff, webp, and more image formats'
 'kimageformats: support for dds, xcf, exr, psd, and more image 
formats')
 makedepends=('extra-cmake-modules' 'git' 'kdoctools' 'python')


[arch-commits] Commit in perl-xml-libxml/repos (8 files)

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:16:28
  Author: fyan
Revision: 238384

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

Added:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
(from rev 238383, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
(from rev 238383, perl-xml-libxml/trunk/perl-xml-libxml.install)
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
(from rev 238383, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install
(from rev 238383, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install

--+
 /PKGBUILD|   72 +
 /perl-xml-libxml.install |   32 ++
 extra-i686/PKGBUILD  |   36 
 extra-i686/perl-xml-libxml.install   |   16 ---
 extra-x86_64/PKGBUILD|   36 
 extra-x86_64/perl-xml-libxml.install |   16 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-03 16:16:05 UTC (rev 238383)
+++ extra-i686/PKGBUILD 2015-05-03 16:16:28 UTC (rev 238384)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-xml-libxml
-pkgver=2.0120
-pkgrel=1
-pkgdesc=Interface to the libxml library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('ad4b930ecdc594cc06437b59ed85ab58')
-
-build() {
-  cd $srcdir/XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd $srcdir/XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd $srcdir/XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir/
-}

Copied: perl-xml-libxml/repos/extra-i686/PKGBUILD (from rev 238383, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-03 16:16:28 UTC (rev 238384)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-xml-libxml
+pkgver=2.0121
+pkgrel=1
+pkgdesc=Interface to the libxml library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('1544ab9ac110f5da296015346561ce02')
+
+build() {
+  cd $srcdir/XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir/
+}

Deleted: extra-i686/perl-xml-libxml.install
===
--- extra-i686/perl-xml-libxml.install  2015-05-03 16:16:05 UTC (rev 238383)
+++ extra-i686/perl-xml-libxml.install  2015-05-03 16:16:28 UTC (rev 238384)
@@ -1,16 +0,0 @@
-post_install() {
-  echo :: Installing SAX XML Parsers
-  perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
-  perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-}
-
-post_upgrade() {
-  if [[ ! -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-post_install
-  else
-libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-if [[ $libxmlcount == 0 ]]; then
-  post_install
-fi
-  fi
-}

Copied: perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install (from rev 
238383, perl-xml-libxml/trunk/perl-xml-libxml.install)
===
--- extra-i686/perl-xml-libxml.install  (rev 0)
+++ extra-i686/perl-xml-libxml.install  2015-05-03 16:16:28 UTC (rev 238384)
@@ 

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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:13:57
  Author: fyan
Revision: 132652

upgpkg: python-greenlet 0.4.6-1

Modified:
  python-greenlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 10:02:14 UTC (rev 132651)
+++ PKGBUILD2015-05-03 16:13:57 UTC (rev 132652)
@@ -5,8 +5,8 @@
 
 pkgbase=python-greenlet
 pkgname=(python-greenlet python2-greenlet)
-pkgver=0.4.5
-pkgrel=2
+pkgver=0.4.6
+pkgrel=1
 pkgdesc=Lightweight in-process concurrent programming
 license=(MIT)
 url=http://pypi.python.org/pypi/greenlet;
@@ -51,4 +51,4 @@
install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
 }
 
-sha512sums=('bdef004299e6d9ac457c0884aea69a882f7ee66135ea5da9a231c7f05024413db8ee5bc1e15c4bbc17379130eda5b38948662178fc34c00f96449a6ada6d3e78')
+sha512sums=('498721395bdc4612dd646ee7f384d7edba992dd10a31fccbdb67294e4f22b4890e79f7c509863943b8538c7a34bb4a64fbe6870fc84651f7fdf17654d47281ed')


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:14:22
  Author: fyan
Revision: 132653

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-03 16:13:57 UTC (rev 132652)
+++ community-i686/PKGBUILD 2015-05-03 16:14:22 UTC (rev 132653)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ralf Schmitt r...@systemexit.de
-
-pkgbase=python-greenlet
-pkgname=(python-greenlet python2-greenlet)
-pkgver=0.4.5
-pkgrel=2
-pkgdesc=Lightweight in-process concurrent programming
-license=(MIT)
-url=http://pypi.python.org/pypi/greenlet;
-makedepends=('python' 'python2')
-checkdepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-${pkgver}.zip;)
-arch=('i686' 'x86_64')
-
-prepare() {
-cp -a greenlet-$pkgver greenlet-$pkgver-py2
-}
-
-build() {
-   cd greenlet-$pkgver
-   python setup.py build
-
-cd ../greenlet-$pkgver-py2
-python2 setup.py build
-}
-
-check() {
-cd greenlet-$pkgver
-python setup.py test
-
-cd ../greenlet-$pkgver-py2
-python2 setup.py test
-}
-
-package_python-greenlet() {
-depends=('python')
-
-cd greenlet-$pkgver
-python setup.py install -O1 --root=$pkgdir
-install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
-}
-
-package_python2-greenlet() {
-depends=('python2')
-
-   cd greenlet-$pkgver-py2
-   python2 setup.py install -O1 --root=$pkgdir
-   install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
-}
-
-sha512sums=('bdef004299e6d9ac457c0884aea69a882f7ee66135ea5da9a231c7f05024413db8ee5bc1e15c4bbc17379130eda5b38948662178fc34c00f96449a6ada6d3e78')

Copied: python-greenlet/repos/community-i686/PKGBUILD (from rev 132652, 
python-greenlet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-03 16:14:22 UTC (rev 132653)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ralf Schmitt r...@systemexit.de
+
+pkgbase=python-greenlet
+pkgname=(python-greenlet python2-greenlet)
+pkgver=0.4.6
+pkgrel=1
+pkgdesc=Lightweight in-process concurrent programming
+license=(MIT)
+url=http://pypi.python.org/pypi/greenlet;
+makedepends=('python' 'python2')
+checkdepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-${pkgver}.zip;)
+arch=('i686' 'x86_64')
+
+prepare() {
+cp -a greenlet-$pkgver greenlet-$pkgver-py2
+}
+
+build() {
+   cd greenlet-$pkgver
+   python setup.py build
+
+cd ../greenlet-$pkgver-py2
+python2 setup.py build
+}
+
+check() {
+cd greenlet-$pkgver
+python setup.py test
+
+cd ../greenlet-$pkgver-py2
+python2 setup.py test
+}
+
+package_python-greenlet() {
+depends=('python')
+
+cd greenlet-$pkgver
+python setup.py install -O1 --root=$pkgdir
+install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
+}
+
+package_python2-greenlet() {
+depends=('python2')
+
+   cd greenlet-$pkgver-py2
+   python2 setup.py install -O1 --root=$pkgdir
+   install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
+}
+
+sha512sums=('498721395bdc4612dd646ee7f384d7edba992dd10a31fccbdb67294e4f22b4890e79f7c509863943b8538c7a34bb4a64fbe6870fc84651f7fdf17654d47281ed')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-03 16:13:57 UTC (rev 132652)
+++ community-x86_64/PKGBUILD   2015-05-03 16:14:22 UTC (rev 132653)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Ralf Schmitt r...@systemexit.de
-
-pkgbase=python-greenlet
-pkgname=(python-greenlet python2-greenlet)
-pkgver=0.4.5
-pkgrel=2
-pkgdesc=Lightweight in-process concurrent programming
-license=(MIT)
-url=http://pypi.python.org/pypi/greenlet;
-makedepends=('python' 

[arch-commits] Commit in python-requests/repos/extra-any (4 files)

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:13:58
  Author: fyan
Revision: 238382

archrelease: copy trunk to extra-any

Added:
  python-requests/repos/extra-any/PKGBUILD
(from rev 238381, python-requests/trunk/PKGBUILD)
  python-requests/repos/extra-any/certs.patch
(from rev 238381, python-requests/trunk/certs.patch)
Deleted:
  python-requests/repos/extra-any/PKGBUILD
  python-requests/repos/extra-any/certs.patch

-+
 PKGBUILD|  116 +-
 certs.patch |   26 ++---
 2 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:13:44 UTC (rev 238381)
+++ PKGBUILD2015-05-03 16:13:58 UTC (rev 238382)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgbase=python-requests
-pkgname=('python-requests' 'python2-requests')
-pkgver=2.6.2
-pkgrel=1
-pkgdesc=Python HTTP for Humans
-arch=('any')
-url=http://python-requests.org;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/r/requests/requests-$pkgver.tar.gz
-certs.patch)
-sha256sums=('0577249d4b6c4b11fd97c28037e98664bfaa0559022fee7bcef6b752a106e505'
-'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
-
-prepare() {
-cd $srcdir/requests-$pkgver
-patch -p1 -i $srcdir/certs.patch
-sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
-rm -f requests/cacert.pem
-
-cd $srcdir
-cp -a requests-$pkgver{,-py2}
-find requests-$pkgver-py2 -name \*.py -exec sed -r 
's|^#!(.*)python$|#!\1python2|' -i {} +
-}
-
-build() {
-cd $srcdir/requests-$pkgver
-python setup.py build
-
-cd $srcdir/requests-$pkgver-py2
-python2 setup.py build
-}
-
-check() {
-cd $srcdir/requests-$pkgver
-test -f $(python -m requests.certs)
-}
-
-package_python-requests() {
-depends=('python')
-
-cd $srcdir/requests-$pkgver
-python setup.py install --skip-build -O1 --root=$pkgdir
-install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-requests() {
-depends=('python2')
-optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
-'python2-grequests: asynchronous requests with gevent')
-
-cd $srcdir/requests-$pkgver-py2
-python2 setup.py install --skip-build -O1 --root=$pkgdir
-}

Copied: python-requests/repos/extra-any/PKGBUILD (from rev 238381, 
python-requests/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 16:13:58 UTC (rev 238382)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-requests
+pkgname=('python-requests' 'python2-requests')
+pkgver=2.7.0
+pkgrel=1
+pkgdesc=Python HTTP for Humans
+arch=('any')
+url=http://python-requests.org;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/r/requests/requests-$pkgver.tar.gz
+certs.patch)
+sha256sums=('398a3db6d61899d25fd4a06c6ca12051b0ce171d705decd7ed5511517b4bb93d'
+'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
+
+prepare() {
+cd $srcdir/requests-$pkgver
+patch -p1 -i $srcdir/certs.patch
+sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+rm -f requests/cacert.pem
+
+cd $srcdir
+cp -a requests-$pkgver{,-py2}
+find requests-$pkgver-py2 -name \*.py -exec sed -r 
's|^#!(.*)python$|#!\1python2|' -i {} +
+}
+
+build() {
+cd $srcdir/requests-$pkgver
+python setup.py build
+
+cd $srcdir/requests-$pkgver-py2
+python2 setup.py build
+}
+
+check() {
+cd $srcdir/requests-$pkgver
+test -f $(python -m requests.certs)
+}
+
+package_python-requests() {
+depends=('python')
+
+cd $srcdir/requests-$pkgver
+python setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+depends=('python2')
+optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+'python2-grequests: asynchronous requests with gevent')
+
+cd $srcdir/requests-$pkgver-py2
+python2 setup.py install --skip-build -O1 --root=$pkgdir
+}

Deleted: certs.patch
===
--- certs.patch 2015-05-03 16:13:44 UTC (rev 238381)
+++ certs.patch 2015-05-03 16:13:58 UTC (rev 238382)
@@ -1,13 +0,0 @@
-diff --git a/requests/certs.py b/requests/certs.py
-index 07e6475..33db011 100644
 a/requests/certs.py
-+++ b/requests/certs.py
-@@ -19,7 +19,7 @@ except ImportError:
-

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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:13:44
  Author: fyan
Revision: 238381

upgpkg: python-requests 2.7.0-1

Modified:
  python-requests/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 10:55:44 UTC (rev 238380)
+++ PKGBUILD2015-05-03 16:13:44 UTC (rev 238381)
@@ -4,7 +4,7 @@
 
 pkgbase=python-requests
 pkgname=('python-requests' 'python2-requests')
-pkgver=2.6.2
+pkgver=2.7.0
 pkgrel=1
 pkgdesc=Python HTTP for Humans
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/r/requests/requests-$pkgver.tar.gz
 certs.patch)
-sha256sums=('0577249d4b6c4b11fd97c28037e98664bfaa0559022fee7bcef6b752a106e505'
+sha256sums=('398a3db6d61899d25fd4a06c6ca12051b0ce171d705decd7ed5511517b4bb93d'
 'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
 
 prepare() {


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:14:40
  Author: fyan
Revision: 132655

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132654, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132654, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:14:26 UTC (rev 132654)
+++ PKGBUILD2015-05-03 16:14:40 UTC (rev 132655)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.32
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132654, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 16:14:40 UTC (rev 132655)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.33
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-03 16:14:26 UTC (rev 132654)
+++ thefuck.install 2015-05-03 16:14:40 UTC (rev 132655)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132654, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-03 16:14:40 UTC (rev 132655)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:14:26
  Author: fyan
Revision: 132654

upgpkg: thefuck 1.33-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 16:14:22 UTC (rev 132653)
+++ PKGBUILD2015-05-03 16:14:26 UTC (rev 132654)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=thefuck
-pkgver=1.32
+pkgver=1.33
 pkgrel=1
 pkgdesc=Magnificent app which corrects your previous console command
 arch=('any')


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:18:11
  Author: fyan
Revision: 132659

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132658, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132658, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:17:58 UTC (rev 132658)
+++ PKGBUILD2015-05-03 16:18:11 UTC (rev 132659)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.33
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132658, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 16:18:11 UTC (rev 132659)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.34
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-03 16:17:58 UTC (rev 132658)
+++ thefuck.install 2015-05-03 16:18:11 UTC (rev 132659)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132658, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-03 16:18:11 UTC (rev 132659)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:17:58
  Author: fyan
Revision: 132658

upgpkg: thefuck 1.34-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 16:16:23 UTC (rev 132657)
+++ PKGBUILD2015-05-03 16:17:58 UTC (rev 132658)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=thefuck
-pkgver=1.33
+pkgver=1.34
 pkgrel=1
 pkgdesc=Magnificent app which corrects your previous console command
 arch=('any')


[arch-commits] Commit in kdesdk-dev-scripts/repos (extra-i686 extra-x86_64)

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 20:16:06
  Author: arojas
Revision: 238385

Remove wrong repos

Deleted:
  kdesdk-dev-scripts/repos/extra-i686/
  kdesdk-dev-scripts/repos/extra-x86_64/


[arch-commits] Commit in (kcm-touchpad-frameworks)

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 20:49:47
  Author: arojas
Revision: 132665

Merged in plasma-desktop

Deleted:
  kcm-touchpad-frameworks/


[arch-commits] Commit in (10 files)

2015-05-03 Thread Antonio Rojas
Date: Sunday, May 3, 2015 @ 20:46:12
  Author: arojas
Revision: 238441

Cleanup obsolete Plasma packages

Deleted:
  baloo-frameworks/
  bluedevil-frameworks/
  kde-gtk-config-frameworks/
  kdeplasma-addons-frameworks/
  kfilemetadata5/
  kscreen-frameworks/
  libbluedevil-frameworks/
  libkscreen-frameworks/
  libmm-qt5/
  polkit-kde-frameworks/


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:21:24
  Author: fyan
Revision: 132660

upgpkg: mongodb-tools 3.1.2-1

Modified:
  mongodb-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-03 16:18:11 UTC (rev 132659)
+++ PKGBUILD2015-05-03 16:21:24 UTC (rev 132660)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=mongodb-tools
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 pkgdesc=The MongoDB tools provide import, export, and diagnostic 
capabilities.
 arch=('i686' 'x86_64')


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

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:21:49
  Author: fyan
Revision: 132661

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-03 16:21:24 UTC (rev 132660)
+++ community-i686/PKGBUILD 2015-05-03 16:21:49 UTC (rev 132661)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=mongodb-tools
-pkgver=3.1.1
-pkgrel=1
-pkgdesc=The MongoDB tools provide import, export, and diagnostic 
capabilities.
-arch=('i686' 'x86_64')
-url=https://github.com/mongodb/mongo-tools;
-license=('Apache')
-depends=('libsasl')
-makedepends=('git' 'go')
-source=(git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd mongo-tools
-}
-
-build() {
-  cd mongo-tools
-  . ./set_gopath.sh
-
-  mkdir bin
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-go build -o bin/$i -tags ssl sasl $i/main/$i.go
-  done
-}
-
-package() {
-  cd mongo-tools
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-install -Dm755 bin/$i $pkgdir/usr/bin/$i
-  done
-}

Copied: mongodb-tools/repos/community-i686/PKGBUILD (from rev 132660, 
mongodb-tools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-03 16:21:49 UTC (rev 132661)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=mongodb-tools
+pkgver=3.1.2
+pkgrel=1
+pkgdesc=The MongoDB tools provide import, export, and diagnostic 
capabilities.
+arch=('i686' 'x86_64')
+url=https://github.com/mongodb/mongo-tools;
+license=('Apache')
+depends=('libsasl')
+makedepends=('git' 'go')
+source=(git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cd mongo-tools
+}
+
+build() {
+  cd mongo-tools
+  . ./set_gopath.sh
+
+  mkdir bin
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
+go build -o bin/$i -tags ssl sasl $i/main/$i.go
+  done
+}
+
+package() {
+  cd mongo-tools
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
+install -Dm755 bin/$i $pkgdir/usr/bin/$i
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-03 16:21:24 UTC (rev 132660)
+++ community-x86_64/PKGBUILD   2015-05-03 16:21:49 UTC (rev 132661)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=mongodb-tools
-pkgver=3.1.1
-pkgrel=1
-pkgdesc=The MongoDB tools provide import, export, and diagnostic 
capabilities.
-arch=('i686' 'x86_64')
-url=https://github.com/mongodb/mongo-tools;
-license=('Apache')
-depends=('libsasl')
-makedepends=('git' 'go')
-source=(git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd mongo-tools
-}
-
-build() {
-  cd mongo-tools
-  . ./set_gopath.sh
-
-  mkdir bin
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-go build -o bin/$i -tags ssl sasl $i/main/$i.go
-  done
-}
-
-package() {
-  cd mongo-tools
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-install -Dm755 bin/$i $pkgdir/usr/bin/$i
-  done
-}

Copied: mongodb-tools/repos/community-x86_64/PKGBUILD (from rev 132660, 
mongodb-tools/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-03 16:21:49 UTC (rev 132661)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=mongodb-tools
+pkgver=3.1.2
+pkgrel=1
+pkgdesc=The MongoDB tools provide import, export, and diagnostic 
capabilities.
+arch=('i686' 'x86_64')
+url=https://github.com/mongodb/mongo-tools;
+license=('Apache')
+depends=('libsasl')
+makedepends=('git' 'go')
+source=(git+https://github.com/mongodb/mongo-tools.git#tag=r$pkgver;)
+md5sums=('SKIP')
+