[arch-commits] Commit in (cblas)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:13:28
  Author: arojas
Revision: 143620

community2extra: Moving cblas from community to extra

Deleted:
  cblas/


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:13:00
  Author: arojas
Revision: 248878

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

Added:
  cblas/repos/extra-i686/
  cblas/repos/extra-i686/LICENSE
(from rev 248877, cblas/trunk/LICENSE)
  cblas/repos/extra-i686/PKGBUILD
(from rev 248877, cblas/trunk/PKGBUILD)
  cblas/repos/extra-i686/fPIC.patch
(from rev 248877, cblas/trunk/fPIC.patch)
  cblas/repos/extra-i686/sdsdot.patch
(from rev 248877, cblas/trunk/sdsdot.patch)
  cblas/repos/extra-i686/shared.patch
(from rev 248877, cblas/trunk/shared.patch)
  cblas/repos/extra-x86_64/
  cblas/repos/extra-x86_64/LICENSE
(from rev 248877, cblas/trunk/LICENSE)
  cblas/repos/extra-x86_64/PKGBUILD
(from rev 248877, cblas/trunk/PKGBUILD)
  cblas/repos/extra-x86_64/fPIC.patch
(from rev 248877, cblas/trunk/fPIC.patch)
  cblas/repos/extra-x86_64/sdsdot.patch
(from rev 248877, cblas/trunk/sdsdot.patch)
  cblas/repos/extra-x86_64/shared.patch
(from rev 248877, cblas/trunk/shared.patch)

---+
 extra-i686/PKGBUILD   |   51 
 extra-i686/fPIC.patch |   23 +++
 extra-i686/sdsdot.patch   |   19 
 extra-i686/shared.patch   |   11 +
 extra-x86_64/PKGBUILD |   51 
 extra-x86_64/fPIC.patch   |   23 +++
 extra-x86_64/sdsdot.patch |   19 
 extra-x86_64/shared.patch |   11 +
 8 files changed, 208 insertions(+)

Copied: cblas/repos/extra-i686/LICENSE (from rev 248877, cblas/trunk/LICENSE)
===
(Binary files differ)

Copied: cblas/repos/extra-i686/PKGBUILD (from rev 248877, cblas/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 09:13:00 UTC (rev 248878)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andreas B. Wagner 
+# Contributor: Sebastien Binet pkgname=cblas
+
+pkgname=cblas
+pkgver=3.5.0
+pkgrel=3
+pkgdesc="C interface to BLAS"
+url="http://www.netlib.org/blas;
+arch=(i686 x86_64)
+license=(custom)
+depends=(blas)
+makedepends=(gcc-fortran)
+options=(staticlibs) # needed by fflas-ffpack
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'LICENSE')
+md5sums=('1e8830f622d2112239a4a8a83b84209a'
+ 'e779fc195f8f48672656522bcfd642e4'
+ 'de4a0cf18b0e748e85d3305845f7f99b'
+ '733dcdded7ce1ec6d1ec01ceca200426'
+ '38b6acb8ed5691d25863319d30a8b365')
+
+prepare() {
+  cd CBLAS
+
+# Compile with -fPIC
+  patch -p1 -i "$srcdir"/fPIC.patch
+# Compile shared lib
+  patch -p0 -i "$srcdir"/shared.patch
+# Fix missing variable in sdsdotstub
+  patch -p1 -i "$srcdir"/sdsdot.patch
+
+  cp Makefile.{LINUX,in}
+}
+
+build() {
+  cd CBLAS
+
+  make alllib
+}
+
+package() {
+  install -d "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+
+  install -m644 CBLAS/lib/* "$pkgdir"/usr/lib/
+  install -m644 CBLAS/include/*.h "$pkgdir"/usr/include
+
+  install -d "$pkgdir"/usr/share/licenses/cblas
+  install -m644 LICENSE "$pkgdir"/usr/share/licenses/cblas/
+}

Copied: cblas/repos/extra-i686/fPIC.patch (from rev 248877, 
cblas/trunk/fPIC.patch)
===
--- extra-i686/fPIC.patch   (rev 0)
+++ extra-i686/fPIC.patch   2015-10-11 09:13:00 UTC (rev 248878)
@@ -0,0 +1,23 @@
+--- CBLAS/Makefile.LINUX.orig  2015-06-14 12:25:24.099556681 +0200
 CBLAS/Makefile.LINUX   2015-06-14 12:25:52.819706410 +0200
+@@ -23,7 +23,8 @@
+ #-
+  
+ BLLIB = libblas.a
+-CBLIB = ../lib/cblas_$(PLAT).a
++CBLIB = ../lib/libcblas.a
++CBSHLIB= ../lib/libcblas.so
+ 
+ #-
+ # Compilers
+@@ -37,8 +38,8 @@
+ # Flags for Compilers
+ #-
+ 
+-CFLAGS = -O3 -DADD_
+-FFLAGS = -O3  
++CFLAGS = -O3 -DADD_ -fPIC
++FFLAGS = -O3 -fPIC
+ 
+ #-
+ # Archive programs and flags

Copied: cblas/repos/extra-i686/sdsdot.patch (from rev 248877, 
cblas/trunk/sdsdot.patch)
===
--- extra-i686/sdsdot.patch (rev 0)
+++ extra-i686/sdsdot.patch 2015-10-11 09:13:00 UTC (rev 248878)
@@ -0,0 +1,19 @@
+--- CBLAS/src/sdsdotsub.f.orig 2015-06-14 13:13:11.353896469 +0200
 CBLAS/src/sdsdotsub.f  2015-06-14 13:13:44.830675890 +0200
+@@ -3,13 +3,13 @@
+ c The program is a fortran wrapper for sdsdot.
+ c Witten by Keita 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:55:06
  Author: arojas
Revision: 143623

NTL 9.4 rebuild

Modified:
  flint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 09:45:05 UTC (rev 143622)
+++ PKGBUILD2015-10-11 09:55:06 UTC (rev 143623)
@@ -5,7 +5,7 @@
 
 pkgname=flint
 pkgver=2.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A C library for doing number theory"
 arch=(i686 x86_64)
 url="http://www.flintlib.org;


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:56:11
  Author: arojas
Revision: 143624

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

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

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

Copied: flint/repos/community-staging-i686/PKGBUILD (from rev 143623, 
flint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 09:56:11 UTC (rev 143624)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org;
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: flint/repos/community-staging-x86_64/PKGBUILD (from rev 143623, 
flint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-11 09:56:11 UTC (rev 143624)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org;
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:09:36
  Author: arojas
Revision: 143627

NTL 9.4 rebuild

Modified:
  singular/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:03:49 UTC (rev 143626)
+++ PKGBUILD2015-10-11 10:09:36 UTC (rev 143627)
@@ -5,7 +5,7 @@
 pkgname=singular
 pkgver=3.1.7.p1
 _majver=3-1-7
-pkgrel=8
+pkgrel=9
 pkgdesc="Computer Algebra System for polynomial computations"
 arch=(i686 x86_64)
 url="http://www.singular.uni-kl.de/;


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:10:33
  Author: arojas
Revision: 143628

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

Added:
  singular/repos/community-staging-i686/
  singular/repos/community-staging-i686/PKGBUILD
(from rev 143627, singular/trunk/PKGBUILD)
  singular/repos/community-staging-i686/ntl8.patch
(from rev 143627, singular/trunk/ntl8.patch)
  singular/repos/community-staging-i686/templates.patch
(from rev 143627, singular/trunk/templates.patch)
  singular/repos/community-staging-x86_64/
  singular/repos/community-staging-x86_64/PKGBUILD
(from rev 143627, singular/trunk/PKGBUILD)
  singular/repos/community-staging-x86_64/ntl8.patch
(from rev 143627, singular/trunk/ntl8.patch)
  singular/repos/community-staging-x86_64/templates.patch
(from rev 143627, singular/trunk/templates.patch)

--+
 community-staging-i686/PKGBUILD  |   77 ++
 community-staging-i686/ntl8.patch|   84 +
 community-staging-i686/templates.patch   |   19 ++
 community-staging-x86_64/PKGBUILD|   77 ++
 community-staging-x86_64/ntl8.patch  |   84 +
 community-staging-x86_64/templates.patch |   19 ++
 6 files changed, 360 insertions(+)

Copied: singular/repos/community-staging-i686/PKGBUILD (from rev 143627, 
singular/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 10:10:33 UTC (rev 143628)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=singular
+pkgver=3.1.7.p1
+_majver=3-1-7
+pkgrel=9
+pkgdesc="Computer Algebra System for polynomial computations"
+arch=(i686 x86_64)
+url="http://www.singular.uni-kl.de/;
+license=(GPL)
+depends=(flint cddlib) # polymake
+source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/src/$_majver/Singular-${_majver}p1.tar.gz;
 
+"http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/src/$_majver/Singular-${_majver}-share.tar.gz;
 'templates.patch' 'ntl8.patch')
+md5sums=('ce369519d1c5d07342722e78240ea044'
+ 'b9177c00e95ee21b137984bade9fc481'
+ 'a267423f3b25f0b91853f9cf607974a7'
+ '38ff8896595626d657fd386ea9408419')
+
+prepare() {
+  cd Singular-$_majver
+  patch -p1 -i ../templates.patch
+# fix build against NTL 8
+  patch -p1 -i ../ntl8.patch
+# fix flint detection
+  sed -e 's|-lmpir|-lgmp|' -i factory/configure -i Singular/configure
+}
+
+build() {
+  cd Singular-$_majver
+
+  export CPP=/usr/bin/cpp
+  export CXXCPP=/usr/bin/cpp
+  export CFLAGS="-fPIC"
+  export CXXFLAGS="-fPIC"
+
+# force using system ntl
+  rm -r ntl
+
+  mkdir -p build
+
+  ./configure --prefix=$PWD/build/usr/lib/Singular \
+ --bindir=$PWD/build/usr/lib/Singular --libdir=$PWD/build/usr/lib/Singular 
--includedir=$PWD/build/usr/include \
+ --with-apint=gmp --with-gmp=/usr --with-malloc=system --with-ntl=/usr 
--with-flint=/usr --disable-doc --with-NTL --without-MP --without-lex \
+ --enable-Singular --enable-factory --enable-libfac 
--enable-IntegerProgramming --enable-gfanlib
+  make install
+
+  export CFLAGS="$CFLAGS -DPIC -DLIBSINGULAR"
+  export CXXFLAGS="$CXXFLAGS -DPIC -DLIBSINGULAR"
+
+  ./configure --prefix=$PWD/build/usr/lib/Singular \
+ --bindir=$PWD/build/usr/lib/Singular --libdir=$PWD/build/usr/lib/Singular 
--includedir=$PWD/build/usr/include \
+ --with-apint=gmp --with-gmp=/usr --with-malloc=system --with-ntl=/usr 
--with-flint=/usr --disable-doc --with-NTL --without-MP \
+ --enable-Singular --enable-factory --enable-libfac 
--enable-IntegerProgramming
+  make clean
+  make install-libsingular
+
+# needed by Sage, not installed by default
+  cp Singular/sing_dbm.h build/usr/include/singular/
+}
+
+package() {
+  cd Singular-$_majver
+
+  cp -r build/* "$pkgdir"/ 
+
+  mkdir -p "$pkgdir"/usr/bin
+  ln -sf /usr/lib/Singular/Singular-$_majver 
"$pkgdir"/usr/lib/Singular/Singular
+  ln -s /usr/lib/Singular/Singular "$pkgdir"/usr/bin/
+  ln -s /usr/lib/Singular/libsingular.so "$pkgdir"/usr/lib/
+
+# Install docs
+  mkdir -p "$pkgdir"/usr/share/singular
+  install -m644 "$srcdir"/Singular/$_majver/info/singular.hlp 
"$pkgdir"/usr/share/singular/
+  install -m644 "$srcdir"/Singular/$_majver/doc/singular.idx 
"$pkgdir"/usr/share/singular/
+}

Copied: singular/repos/community-staging-i686/ntl8.patch (from rev 143627, 
singular/trunk/ntl8.patch)
===
--- community-staging-i686/ntl8.patch   (rev 0)
+++ community-staging-i686/ntl8.patch   2015-10-11 10:10:33 UTC (rev 143628)
@@ -0,0 +1,84 @@
+--- Singular-3-1-6/factory/NTLconvert.cc.orig  2012-12-19 14:01:16.0 
-0700
 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:23:09
  Author: arojas
Revision: 143630

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

Added:
  linbox/repos/community-staging-i686/
  linbox/repos/community-staging-i686/PKGBUILD
(from rev 143629, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-i686/lapack.patch
(from rev 143629, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-i686/linbox-fplll.patch
(from rev 143629, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-i686/underlink.patch
(from rev 143629, linbox/trunk/underlink.patch)
  linbox/repos/community-staging-x86_64/
  linbox/repos/community-staging-x86_64/PKGBUILD
(from rev 143629, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-x86_64/lapack.patch
(from rev 143629, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-x86_64/linbox-fplll.patch
(from rev 143629, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-x86_64/underlink.patch
(from rev 143629, linbox/trunk/underlink.patch)

-+
 community-staging-i686/PKGBUILD |   51 +++
 community-staging-i686/lapack.patch |   22 ++
 community-staging-i686/linbox-fplll.patch   |   87 ++
 community-staging-i686/underlink.patch  |   41 
 community-staging-x86_64/PKGBUILD   |   51 +++
 community-staging-x86_64/lapack.patch   |   22 ++
 community-staging-x86_64/linbox-fplll.patch |   87 ++
 community-staging-x86_64/underlink.patch|   41 
 8 files changed, 402 insertions(+)

Copied: linbox/repos/community-staging-i686/PKGBUILD (from rev 143629, 
linbox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 10:23:09 UTC (rev 143630)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas < nqn7...@gmail.com >
+
+pkgname=linbox
+pkgver=1.3.2
+pkgrel=6
+pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
+arch=(i686 x86_64)
+url="http://linalg.org/;
+license=(LGPL)
+depends=(m4rie lapack ntl libfplll iml givaro) 
+makedepends=(fflas-ffpack)
+source=("http://linalg.org/$pkgname-$pkgver.tar.gz; 'linbox-fplll.patch' 
'underlink.patch' 'lapack.patch')
+md5sums=('67c80345c8c3e93d213f2d7d37d8c9af'
+ '76fbb525cceff1dd74a7c1892ca965d0'
+ '731a6b17c40a56e38fef79e03391e0b5'
+ '3525650c88f9a2809214216b914f4f46')
+
+prepare() {
+  cd $pkgname-$pkgver
+# fix build with newer givaro
+  sed -i 's|version_max=30800|version_max=30900|' configure
+# fix libfplll support - Fedora patch
+  patch -p0 -i ../linbox-fplll.patch
+# fix underlink - Fedora patch
+  patch -p0 -i ../underlink.patch
+# fix detecting lapack support in fflas-ffpack
+  patch -p0 -i ../lapack.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  export CFLAGS="$CFLAGS -g -fPIC"
+  export CXXFLAGS="$CXXFLAGS -g -fPIC"
+  export LDFLAGS="$LDFLAGS -L/usr/lib"
+
+  ./configure --prefix=/usr --enable-sage --enable-optimization 
--with-fplll=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+

Copied: linbox/repos/community-staging-i686/lapack.patch (from rev 143629, 
linbox/trunk/lapack.patch)
===
--- community-staging-i686/lapack.patch (rev 0)
+++ community-staging-i686/lapack.patch 2015-10-11 10:23:09 UTC (rev 143630)
@@ -0,0 +1,22 @@
+--- ./macros/lapack-check.m4.orig  2012-06-07 02:30:26.0 -0600
 ./macros/lapack-check.m4   2012-10-02 15:05:47.051001770 -0600
+@@ -38,7 +38,7 @@ LIBS="${BACKUP_LIBS} ${BLAS_LIBS}"
+ 
+ AC_TRY_RUN(dnl ICC ?
+ [   #include "fflas-ffpack/fflas-ffpack-config.h"
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack
+--- ./configure.orig   2012-06-07 15:19:31.0 -0600
 ./configure2012-10-02 15:06:07.629005714 -0600
+@@ -18077,7 +18077,7 @@ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+#include "fflas-ffpack/fflas-ffpack-config.h"
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack

Copied: linbox/repos/community-staging-i686/linbox-fplll.patch (from rev 
143629, linbox/trunk/linbox-fplll.patch)
===
--- community-staging-i686/linbox-fplll.patch   (rev 0)
+++ community-staging-i686/linbox-fplll.patch   2015-10-11 10:23:09 UTC (rev 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:22:18
  Author: arojas
Revision: 143629

NTL 9.4 rebuild

Modified:
  linbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:10:33 UTC (rev 143628)
+++ PKGBUILD2015-10-11 10:22:18 UTC (rev 143629)
@@ -3,7 +3,7 @@
 
 pkgname=linbox
 pkgver=1.3.2
-pkgrel=5
+pkgrel=6
 pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
 arch=(i686 x86_64)
 url="http://linalg.org/;


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:28:03
  Author: arojas
Revision: 143631

Update to 0.3.9.5

Modified:
  pynac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:23:09 UTC (rev 143630)
+++ PKGBUILD2015-10-11 10:28:03 UTC (rev 143631)
@@ -3,7 +3,7 @@
 # Contributor: Rémy Oudompheng 
 
 pkgname=pynac
-pkgver=0.3.9.2
+pkgver=0.3.9.5
 pkgrel=1
 pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(python2)
 source=("https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
-md5sums=('da01895f602a65ca362681d46c1ac0f9')
+md5sums=('0fc861458b94e6ba7ac04d6440370d92')
 
 build() {
   cd pynac-pynac-$pkgver


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:28:44
  Author: arojas
Revision: 143632

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

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

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

Copied: pynac/repos/community-staging-i686/PKGBUILD (from rev 143631, 
pynac/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 10:28:44 UTC (rev 143632)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=pynac
+pkgver=0.3.9.5
+pkgrel=1
+pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
+arch=(i686 x86_64)
+url="http://pynac.org;
+license=(GPL)
+depends=(python2)
+source=("https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('0fc861458b94e6ba7ac04d6440370d92')
+
+build() {
+  cd pynac-pynac-$pkgver
+
+  export PYTHON_VERSION=2
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pynac-pynac-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: pynac/repos/community-staging-x86_64/PKGBUILD (from rev 143631, 
pynac/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-11 10:28:44 UTC (rev 143632)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=pynac
+pkgver=0.3.9.5
+pkgrel=1
+pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
+arch=(i686 x86_64)
+url="http://pynac.org;
+license=(GPL)
+depends=(python2)
+source=("https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('0fc861458b94e6ba7ac04d6440370d92')
+
+build() {
+  cd pynac-pynac-$pkgver
+
+  export PYTHON_VERSION=2
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pynac-pynac-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in coin-or-cbc/trunk (PKGBUILD)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:48:21
  Author: arojas
Revision: 143637

Update to 2.9.7

Modified:
  coin-or-cbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:43:26 UTC (rev 143636)
+++ PKGBUILD2015-10-11 10:48:21 UTC (rev 143637)
@@ -4,7 +4,7 @@
 # Contributor: Daniel Ehlers 
 
 pkgname=coin-or-cbc
-pkgver=2.9.6
+pkgver=2.9.7
 pkgrel=1
 pkgdesc="COIN-OR branch-and-cut mixed integer programming solver"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 groups=(coin-or)
 depends=(coin-or-cgl)
 source=("http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
-sha1sums=('81d67a0076850b62386dc56b15389ba7dca5108b')
+sha1sums=('2f1ae1c13cfb686d1f3ec5045acef524b10070c0')
 
 build() {
   cd Cbc-$pkgver/Cbc


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:43:28
  Author: arojas
Revision: 143621

Update to 9.4.0

Modified:
  ntl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 09:13:28 UTC (rev 143620)
+++ PKGBUILD2015-10-11 09:43:28 UTC (rev 143621)
@@ -3,7 +3,7 @@
 # Contributor: Brad Conte 
 
 pkgname=ntl
-pkgver=9.3.0
+pkgver=9.4.0
 pkgrel=1
 pkgdesc="A Library for doing Number Theory"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=(gf2x gmp)
 makedepends=()
 source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('e55dd4fcb3a6b4901776239ccffb2300')
+md5sums=('e030f137169238832c43606060449f08')
 
 build() {
   cd $pkgname-$pkgver/src


[arch-commits] Commit in coin-or-clp/trunk (PKGBUILD)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:42:37
  Author: arojas
Revision: 143635

Update to 1.16.9

Modified:
  coin-or-clp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:36:46 UTC (rev 143634)
+++ PKGBUILD2015-10-11 10:42:37 UTC (rev 143635)
@@ -4,7 +4,7 @@
 # Contributor: Daniel Ehlers 
 
 pkgname=coin-or-clp
-pkgver=1.16.8
+pkgver=1.16.9
 pkgrel=1
 pkgdesc="COIN-OR linear programming solver"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 groups=(coin-or)
 depends=(coin-or-osi suitesparse)
 source=("http://www.coin-or.org/download/source/Clp/Clp-${pkgver}.tgz;)
-sha1sums=('6cb344514524a7ac33be779c65bf8eec61e57cb3')
+sha1sums=('87fd4c57fbb60777a2420c3a6514600f525abc09')
 
 build() {
   cd Clp-$pkgver/Clp


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:45:05
  Author: arojas
Revision: 143622

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

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

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

Copied: ntl/repos/community-staging-i686/PKGBUILD (from rev 143621, 
ntl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 09:45:05 UTC (rev 143622)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Brad Conte 
+
+pkgname=ntl
+pkgver=9.4.0
+pkgrel=1
+pkgdesc="A Library for doing Number Theory"
+arch=(i686 x86_64)
+url="http://www.shoup.net/ntl/;
+license=(GPL)
+depends=(gf2x gmp)
+makedepends=()
+source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('e030f137169238832c43606060449f08')
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on 
NTL_LEGACY_SP_MULMOD=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX="$pkgdir/usr" install
+}

Copied: ntl/repos/community-staging-x86_64/PKGBUILD (from rev 143621, 
ntl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-11 09:45:05 UTC (rev 143622)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Brad Conte 
+
+pkgname=ntl
+pkgver=9.4.0
+pkgrel=1
+pkgdesc="A Library for doing Number Theory"
+arch=(i686 x86_64)
+url="http://www.shoup.net/ntl/;
+license=(GPL)
+depends=(gf2x gmp)
+makedepends=()
+source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('e030f137169238832c43606060449f08')
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on 
NTL_LEGACY_SP_MULMOD=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX="$pkgdir/usr" install
+}


[arch-commits] Commit in coin-or-cbc/repos (4 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:49:09
  Author: arojas
Revision: 143638

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

Added:
  coin-or-cbc/repos/community-i686/PKGBUILD
(from rev 143637, coin-or-cbc/trunk/PKGBUILD)
  coin-or-cbc/repos/community-x86_64/PKGBUILD
(from rev 143637, coin-or-cbc/trunk/PKGBUILD)
Deleted:
  coin-or-cbc/repos/community-i686/PKGBUILD
  coin-or-cbc/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-11 10:48:21 UTC (rev 143637)
+++ community-i686/PKGBUILD 2015-10-11 10:49:09 UTC (rev 143638)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: spider-mario 
-# Contributor: Daniel Ehlers 
-
-pkgname=coin-or-cbc
-pkgver=2.9.6
-pkgrel=1
-pkgdesc="COIN-OR branch-and-cut mixed integer programming solver"
-arch=(i686 x86_64)
-url="https://projects.coin-or.org/Cbc;
-license=(EPL)
-groups=(coin-or)
-depends=(coin-or-cgl)
-source=("http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
-sha1sums=('81d67a0076850b62386dc56b15389ba7dca5108b')
-
-build() {
-  cd Cbc-$pkgver/Cbc
-  COIN_SKIP_PROJECTS="Sample" \
-  ./configure --prefix=/usr \
-  --with-osi-lib="$(pkg-config --libs osi)" \
-  --with-osi-incdir="/usr/include/coin/" \
-  --with-clp-lib="$(pkg-config --libs clp)" \
-  --with-clp-incdir="/usr/include/coin/" \
-  --with-cgl-lib="$(pkg-config --libs cgl)" \
-  --with-cgl-incdir="/usr/include/coin/" \
-  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
-  --with-coinutils-incdir="/usr/include/coin/" \
-  --enable-dependency-linking \
-  --enable-cbc-parallel
-  make
-}
-
-check() {
-  cd Cbc-$pkgver/Cbc
-  make test
-}
-
-package() {
-  cd Cbc-$pkgver/Cbc
-  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-cbc/repos/community-i686/PKGBUILD (from rev 143637, 
coin-or-cbc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 10:49:09 UTC (rev 143638)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: spider-mario 
+# Contributor: Daniel Ehlers 
+
+pkgname=coin-or-cbc
+pkgver=2.9.7
+pkgrel=1
+pkgdesc="COIN-OR branch-and-cut mixed integer programming solver"
+arch=(i686 x86_64)
+url="https://projects.coin-or.org/Cbc;
+license=(EPL)
+groups=(coin-or)
+depends=(coin-or-cgl)
+source=("http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
+sha1sums=('2f1ae1c13cfb686d1f3ec5045acef524b10070c0')
+
+build() {
+  cd Cbc-$pkgver/Cbc
+  COIN_SKIP_PROJECTS="Sample" \
+  ./configure --prefix=/usr \
+  --with-osi-lib="$(pkg-config --libs osi)" \
+  --with-osi-incdir="/usr/include/coin/" \
+  --with-clp-lib="$(pkg-config --libs clp)" \
+  --with-clp-incdir="/usr/include/coin/" \
+  --with-cgl-lib="$(pkg-config --libs cgl)" \
+  --with-cgl-incdir="/usr/include/coin/" \
+  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
+  --with-coinutils-incdir="/usr/include/coin/" \
+  --enable-dependency-linking \
+  --enable-cbc-parallel
+  make
+}
+
+check() {
+  cd Cbc-$pkgver/Cbc
+  make test
+}
+
+package() {
+  cd Cbc-$pkgver/Cbc
+  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-11 10:48:21 UTC (rev 143637)
+++ community-x86_64/PKGBUILD   2015-10-11 10:49:09 UTC (rev 143638)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: spider-mario 
-# Contributor: Daniel Ehlers 
-
-pkgname=coin-or-cbc
-pkgver=2.9.6
-pkgrel=1
-pkgdesc="COIN-OR branch-and-cut mixed integer programming solver"
-arch=(i686 x86_64)
-url="https://projects.coin-or.org/Cbc;
-license=(EPL)
-groups=(coin-or)
-depends=(coin-or-cgl)
-source=("http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
-sha1sums=('81d67a0076850b62386dc56b15389ba7dca5108b')
-
-build() {
-  cd Cbc-$pkgver/Cbc
-  COIN_SKIP_PROJECTS="Sample" \
-  ./configure --prefix=/usr \
-  --with-osi-lib="$(pkg-config --libs osi)" \
-  

[arch-commits] Commit in coin-or-coinutils/repos (4 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:36:46
  Author: arojas
Revision: 143634

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

Added:
  coin-or-coinutils/repos/community-i686/PKGBUILD
(from rev 143633, coin-or-coinutils/trunk/PKGBUILD)
  coin-or-coinutils/repos/community-x86_64/PKGBUILD
(from rev 143633, coin-or-coinutils/trunk/PKGBUILD)
Deleted:
  coin-or-coinutils/repos/community-i686/PKGBUILD
  coin-or-coinutils/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-10-11 10:35:57 UTC (rev 143633)
+++ community-i686/PKGBUILD 2015-10-11 10:36:46 UTC (rev 143634)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: tikysal 
-# Derived from Daniel Ehlers'
-
-pkgname=coin-or-coinutils
-pkgver=2.10.10
-pkgrel=1
-pkgdesc="COIN-OR collection of utility classes"
-arch=('i686' 'x86_64')
-url="https://projects.coin-or.org/CoinUtils;
-license=('EPL')
-depends=('zlib' 'bzip2' 'glpk' 'lapack')
-makedepends=('gcc-fortran')
-groups=('coin-or')
-source=("http://www.coin-or.org/download/source/CoinUtils/CoinUtils-${pkgver}.tgz;)
-sha1sums=('88c02db258092919c7a52ab7d7f3d32506057607')
-
-build() {
-  cd CoinUtils-$pkgver
-
-  ./configure --prefix=/usr --with-blas-lib='-lblas' 
--with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' 
--enable-dependency-linking
-  make
-}
-
-check() {
-  cd CoinUtils-$pkgver
-#  make test - Data is missing in 2.10.10 tarball
-}
-
-package() {
-  cd CoinUtils-$pkgver
-  PKG_CONFIG_LIBDIR="${pkgdir}/usr/lib/pkgconfig/" \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-coinutils/repos/community-i686/PKGBUILD (from rev 143633, 
coin-or-coinutils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 10:36:46 UTC (rev 143634)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: tikysal 
+# Derived from Daniel Ehlers'
+
+pkgname=coin-or-coinutils
+pkgver=2.10.11
+pkgrel=1
+pkgdesc="COIN-OR collection of utility classes"
+arch=(i686 x86_64)
+url="https://projects.coin-or.org/CoinUtils;
+license=(EPL)
+depends=(zlib bzip2 glpk lapack)
+makedepends=(gcc-fortran)
+groups=(coin-or)
+source=("http://www.coin-or.org/download/source/CoinUtils/CoinUtils-${pkgver}.tgz;)
+sha1sums=('1502ee1a3d8076757100be943525acdc172de115')
+
+build() {
+  cd CoinUtils-$pkgver
+
+  ./configure --prefix=/usr --with-blas-lib='-lblas' 
--with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' 
--enable-dependency-linking
+  make
+}
+
+check() {
+  cd CoinUtils-$pkgver
+  make test
+}
+
+package() {
+  cd CoinUtils-$pkgver
+  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-11 10:35:57 UTC (rev 143633)
+++ community-x86_64/PKGBUILD   2015-10-11 10:36:46 UTC (rev 143634)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: tikysal 
-# Derived from Daniel Ehlers'
-
-pkgname=coin-or-coinutils
-pkgver=2.10.10
-pkgrel=1
-pkgdesc="COIN-OR collection of utility classes"
-arch=('i686' 'x86_64')
-url="https://projects.coin-or.org/CoinUtils;
-license=('EPL')
-depends=('zlib' 'bzip2' 'glpk' 'lapack')
-makedepends=('gcc-fortran')
-groups=('coin-or')
-source=("http://www.coin-or.org/download/source/CoinUtils/CoinUtils-${pkgver}.tgz;)
-sha1sums=('88c02db258092919c7a52ab7d7f3d32506057607')
-
-build() {
-  cd CoinUtils-$pkgver
-
-  ./configure --prefix=/usr --with-blas-lib='-lblas' 
--with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' 
--enable-dependency-linking
-  make
-}
-
-check() {
-  cd CoinUtils-$pkgver
-#  make test - Data is missing in 2.10.10 tarball
-}
-
-package() {
-  cd CoinUtils-$pkgver
-  PKG_CONFIG_LIBDIR="${pkgdir}/usr/lib/pkgconfig/" \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-coinutils/repos/community-x86_64/PKGBUILD (from rev 143633, 
coin-or-coinutils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 10:36:46 UTC (rev 143634)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: tikysal 
+# Derived from Daniel Ehlers'
+
+pkgname=coin-or-coinutils
+pkgver=2.10.11
+pkgrel=1
+pkgdesc="COIN-OR collection of utility 

[arch-commits] Commit in coin-or-coinutils/trunk (PKGBUILD)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:35:57
  Author: arojas
Revision: 143633

Update to 2.10.11

Modified:
  coin-or-coinutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:28:44 UTC (rev 143632)
+++ PKGBUILD2015-10-11 10:35:57 UTC (rev 143633)
@@ -4,17 +4,17 @@
 # Derived from Daniel Ehlers'
 
 pkgname=coin-or-coinutils
-pkgver=2.10.10
+pkgver=2.10.11
 pkgrel=1
 pkgdesc="COIN-OR collection of utility classes"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url="https://projects.coin-or.org/CoinUtils;
-license=('EPL')
-depends=('zlib' 'bzip2' 'glpk' 'lapack')
-makedepends=('gcc-fortran')
-groups=('coin-or')
+license=(EPL)
+depends=(zlib bzip2 glpk lapack)
+makedepends=(gcc-fortran)
+groups=(coin-or)
 
source=("http://www.coin-or.org/download/source/CoinUtils/CoinUtils-${pkgver}.tgz;)
-sha1sums=('88c02db258092919c7a52ab7d7f3d32506057607')
+sha1sums=('1502ee1a3d8076757100be943525acdc172de115')
 
 build() {
   cd CoinUtils-$pkgver
@@ -25,11 +25,11 @@
 
 check() {
   cd CoinUtils-$pkgver
-#  make test - Data is missing in 2.10.10 tarball
+  make test
 }
 
 package() {
   cd CoinUtils-$pkgver
-  PKG_CONFIG_LIBDIR="${pkgdir}/usr/lib/pkgconfig/" \
+  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in coin-or-clp/repos (4 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:43:26
  Author: arojas
Revision: 143636

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

Added:
  coin-or-clp/repos/community-i686/PKGBUILD
(from rev 143635, coin-or-clp/trunk/PKGBUILD)
  coin-or-clp/repos/community-x86_64/PKGBUILD
(from rev 143635, coin-or-clp/trunk/PKGBUILD)
Deleted:
  coin-or-clp/repos/community-i686/PKGBUILD
  coin-or-clp/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-11 10:42:37 UTC (rev 143635)
+++ community-i686/PKGBUILD 2015-10-11 10:43:26 UTC (rev 143636)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: spider-mario 
-# Contributor: Daniel Ehlers 
-
-pkgname=coin-or-clp
-pkgver=1.16.8
-pkgrel=1
-pkgdesc="COIN-OR linear programming solver"
-arch=(i686 x86_64)
-url="https://projects.coin-or.org/Clp;
-license=(EPL)
-groups=(coin-or)
-depends=(coin-or-osi suitesparse)
-source=("http://www.coin-or.org/download/source/Clp/Clp-${pkgver}.tgz;)
-sha1sums=('6cb344514524a7ac33be779c65bf8eec61e57cb3')
-
-build() {
-  cd Clp-$pkgver/Clp
-  COIN_SKIP_PROJECTS="Sample" \
-  ./configure --prefix=/usr \
-  --with-osi-lib="$(pkg-config --libs osi)" \
-  --with-osi-incdir="/usr/include/coin/" \
-  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
-  --with-coinutils-incdir="/usr/include/coin/" \
-  --with-cholmod-lib='-lcholmod' --with-cholmod-incdir=/usr/include
-  make
-}
-
-check() {
-  cd Clp-$pkgver/Clp
-  make test
-}
-
-package() {
-  cd Clp-$pkgver/Clp
-  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-clp/repos/community-i686/PKGBUILD (from rev 143635, 
coin-or-clp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 10:43:26 UTC (rev 143636)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: spider-mario 
+# Contributor: Daniel Ehlers 
+
+pkgname=coin-or-clp
+pkgver=1.16.9
+pkgrel=1
+pkgdesc="COIN-OR linear programming solver"
+arch=(i686 x86_64)
+url="https://projects.coin-or.org/Clp;
+license=(EPL)
+groups=(coin-or)
+depends=(coin-or-osi suitesparse)
+source=("http://www.coin-or.org/download/source/Clp/Clp-${pkgver}.tgz;)
+sha1sums=('87fd4c57fbb60777a2420c3a6514600f525abc09')
+
+build() {
+  cd Clp-$pkgver/Clp
+  COIN_SKIP_PROJECTS="Sample" \
+  ./configure --prefix=/usr \
+  --with-osi-lib="$(pkg-config --libs osi)" \
+  --with-osi-incdir="/usr/include/coin/" \
+  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
+  --with-coinutils-incdir="/usr/include/coin/" \
+  --with-cholmod-lib='-lcholmod' --with-cholmod-incdir=/usr/include
+  make
+}
+
+check() {
+  cd Clp-$pkgver/Clp
+  make test
+}
+
+package() {
+  cd Clp-$pkgver/Clp
+  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-11 10:42:37 UTC (rev 143635)
+++ community-x86_64/PKGBUILD   2015-10-11 10:43:26 UTC (rev 143636)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: spider-mario 
-# Contributor: Daniel Ehlers 
-
-pkgname=coin-or-clp
-pkgver=1.16.8
-pkgrel=1
-pkgdesc="COIN-OR linear programming solver"
-arch=(i686 x86_64)
-url="https://projects.coin-or.org/Clp;
-license=(EPL)
-groups=(coin-or)
-depends=(coin-or-osi suitesparse)
-source=("http://www.coin-or.org/download/source/Clp/Clp-${pkgver}.tgz;)
-sha1sums=('6cb344514524a7ac33be779c65bf8eec61e57cb3')
-
-build() {
-  cd Clp-$pkgver/Clp
-  COIN_SKIP_PROJECTS="Sample" \
-  ./configure --prefix=/usr \
-  --with-osi-lib="$(pkg-config --libs osi)" \
-  --with-osi-incdir="/usr/include/coin/" \
-  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
-  --with-coinutils-incdir="/usr/include/coin/" \
-  --with-cholmod-lib='-lcholmod' --with-cholmod-incdir=/usr/include
-  make
-}
-
-check() {
-  cd Clp-$pkgver/Clp
-  make test
-}
-
-package() {
-  cd Clp-$pkgver/Clp
-  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-clp/repos/community-x86_64/PKGBUILD 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:53:50
  Author: arojas
Revision: 143639

Add brial, fork of polybori required by Sagemath 6.9

Added:
  brial/
  brial/trunk/
  brial/trunk/PKGBUILD

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

Added: brial/trunk/PKGBUILD
===
--- brial/trunk/PKGBUILD(rev 0)
+++ brial/trunk/PKGBUILD2015-10-11 10:53:50 UTC (rev 143639)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=brial
+pkgver=0.8.4.3
+pkgrel=1
+pkgdesc="Library for polynomials over boolean rings"
+arch=(i686 x86_64)
+url="https://github.com/BRiAl/BRiAl;
+license=(GPL)
+depends=(python2 m4ri)
+makedepends=(boost)
+conflicts=(polybori)
+replaces=(polybori)
+source=("https://github.com/BRiAl/BRiAl/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2;)
+md5sums=('66275eea0654cb1eb6438a6262140885')
+
+build() {
+  cd $pkgname-$pkgver 
+
+  export PYTHON=python2
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+


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


[arch-commits] Commit in brial (5 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:54:46
  Author: arojas
Revision: 143640

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

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

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

Copied: brial/repos/community-staging-i686/PKGBUILD (from rev 143639, 
brial/trunk/PKGBUILD)
===
--- repos/community-staging-i686/PKGBUILD   (rev 0)
+++ repos/community-staging-i686/PKGBUILD   2015-10-11 10:54:46 UTC (rev 
143640)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=brial
+pkgver=0.8.4.3
+pkgrel=1
+pkgdesc="Library for polynomials over boolean rings"
+arch=(i686 x86_64)
+url="https://github.com/BRiAl/BRiAl;
+license=(GPL)
+depends=(python2 m4ri)
+makedepends=(boost)
+conflicts=(polybori)
+replaces=(polybori)
+source=("https://github.com/BRiAl/BRiAl/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2;)
+md5sums=('66275eea0654cb1eb6438a6262140885')
+
+build() {
+  cd $pkgname-$pkgver 
+
+  export PYTHON=python2
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+

Copied: brial/repos/community-staging-x86_64/PKGBUILD (from rev 143639, 
brial/trunk/PKGBUILD)
===
--- repos/community-staging-x86_64/PKGBUILD (rev 0)
+++ repos/community-staging-x86_64/PKGBUILD 2015-10-11 10:54:46 UTC (rev 
143640)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=brial
+pkgver=0.8.4.3
+pkgrel=1
+pkgdesc="Library for polynomials over boolean rings"
+arch=(i686 x86_64)
+url="https://github.com/BRiAl/BRiAl;
+license=(GPL)
+depends=(python2 m4ri)
+makedepends=(boost)
+conflicts=(polybori)
+replaces=(polybori)
+source=("https://github.com/BRiAl/BRiAl/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2;)
+md5sums=('66275eea0654cb1eb6438a6262140885')
+
+build() {
+  cd $pkgname-$pkgver 
+
+  export PYTHON=python2
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in (8 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:12:38
  Author: arojas
Revision: 248877

community2extra: Moving cblas from community to extra

Added:
  cblas/
  cblas/repos/
  cblas/trunk/
  cblas/trunk/LICENSE
  cblas/trunk/PKGBUILD
  cblas/trunk/fPIC.patch
  cblas/trunk/sdsdot.patch
  cblas/trunk/shared.patch

--+
 LICENSE  |1 +
 PKGBUILD |   51 +++
 fPIC.patch   |   23 +++
 sdsdot.patch |   19 +++
 shared.patch |   11 +++
 5 files changed, 105 insertions(+)

Added: cblas/trunk/LICENSE
===
(Binary files differ)

Index: cblas/trunk/LICENSE
===
--- cblas/trunk/LICENSE 2015-10-10 22:43:29 UTC (rev 248876)
+++ cblas/trunk/LICENSE 2015-10-11 09:12:38 UTC (rev 248877)

Property changes on: cblas/trunk/LICENSE
___
Added: svn:mime-type
## -0,0 +1 ##
+message/rfc822
\ No newline at end of property
Added: cblas/trunk/PKGBUILD
===
--- cblas/trunk/PKGBUILD(rev 0)
+++ cblas/trunk/PKGBUILD2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andreas B. Wagner 
+# Contributor: Sebastien Binet pkgname=cblas
+
+pkgname=cblas
+pkgver=3.5.0
+pkgrel=3
+pkgdesc="C interface to BLAS"
+url="http://www.netlib.org/blas;
+arch=(i686 x86_64)
+license=(custom)
+depends=(blas)
+makedepends=(gcc-fortran)
+options=(staticlibs) # needed by fflas-ffpack
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'LICENSE')
+md5sums=('1e8830f622d2112239a4a8a83b84209a'
+ 'e779fc195f8f48672656522bcfd642e4'
+ 'de4a0cf18b0e748e85d3305845f7f99b'
+ '733dcdded7ce1ec6d1ec01ceca200426'
+ '38b6acb8ed5691d25863319d30a8b365')
+
+prepare() {
+  cd CBLAS
+
+# Compile with -fPIC
+  patch -p1 -i "$srcdir"/fPIC.patch
+# Compile shared lib
+  patch -p0 -i "$srcdir"/shared.patch
+# Fix missing variable in sdsdotstub
+  patch -p1 -i "$srcdir"/sdsdot.patch
+
+  cp Makefile.{LINUX,in}
+}
+
+build() {
+  cd CBLAS
+
+  make alllib
+}
+
+package() {
+  install -d "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+
+  install -m644 CBLAS/lib/* "$pkgdir"/usr/lib/
+  install -m644 CBLAS/include/*.h "$pkgdir"/usr/include
+
+  install -d "$pkgdir"/usr/share/licenses/cblas
+  install -m644 LICENSE "$pkgdir"/usr/share/licenses/cblas/
+}


Property changes on: cblas/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: cblas/trunk/fPIC.patch
===
--- cblas/trunk/fPIC.patch  (rev 0)
+++ cblas/trunk/fPIC.patch  2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,23 @@
+--- CBLAS/Makefile.LINUX.orig  2015-06-14 12:25:24.099556681 +0200
 CBLAS/Makefile.LINUX   2015-06-14 12:25:52.819706410 +0200
+@@ -23,7 +23,8 @@
+ #-
+  
+ BLLIB = libblas.a
+-CBLIB = ../lib/cblas_$(PLAT).a
++CBLIB = ../lib/libcblas.a
++CBSHLIB= ../lib/libcblas.so
+ 
+ #-
+ # Compilers
+@@ -37,8 +38,8 @@
+ # Flags for Compilers
+ #-
+ 
+-CFLAGS = -O3 -DADD_
+-FFLAGS = -O3  
++CFLAGS = -O3 -DADD_ -fPIC
++FFLAGS = -O3 -fPIC
+ 
+ #-
+ # Archive programs and flags

Added: cblas/trunk/sdsdot.patch
===
--- cblas/trunk/sdsdot.patch(rev 0)
+++ cblas/trunk/sdsdot.patch2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,19 @@
+--- CBLAS/src/sdsdotsub.f.orig 2015-06-14 13:13:11.353896469 +0200
 CBLAS/src/sdsdotsub.f  2015-06-14 13:13:44.830675890 +0200
+@@ -3,13 +3,13 @@
+ c The program is a fortran wrapper for sdsdot.
+ c Witten by Keita Teranishi.  2/11/1998
+ c
+-  subroutine sdsdotsub(n,x,incx,y,incy,dot)
++  subroutine sdsdotsub(n,sb,x,incx,y,incy,dot)
+ c
+   external sdsdot
+-  real sdsdot,dot
++  real sb,sdsdot,dot
+   integer n,incx,incy
+   real x(*),y(*)
+ c
+-  dot=sdsdot(n,x,incx,y,incy)
++  dot=sdsdot(n,sb,x,incx,y,incy)
+   return
+   end  

Added: cblas/trunk/shared.patch
===
--- cblas/trunk/shared.patch(rev 0)
+++ cblas/trunk/shared.patch2015-10-11 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:03:03
  Author: arojas
Revision: 143625

Update to 20150827, NTL 9.4 rebuild

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 09:56:11 UTC (rev 143624)
+++ PKGBUILD2015-10-11 10:03:03 UTC (rev 143625)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=eclib
-pkgver=20150826
+pkgver=20150827
 pkgrel=1
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
@@ -9,11 +9,11 @@
 url="https://github.com/JohnCremona/eclib/;
 license=(GPL)
 depends=(flint pari-sage)
-source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz;)
-md5sums=('50e126500e976097b08d24729c719b2c')
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+md5sums=('6a9d3b001a7035697079fb08c420e4a3')
 
 build() {
-  cd eclib-$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./autogen.sh
   ./configure --prefix=/usr --with-flint=/usr
   make
@@ -20,7 +20,7 @@
 }
 
 package() {
-  cd eclib-$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make install DESTDIR="$pkgdir"
 }
 


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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 12:03:49
  Author: arojas
Revision: 143626

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

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

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

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 143625, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-11 10:03:49 UTC (rev 143626)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150827
+pkgrel=1
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+md5sums=('6a9d3b001a7035697079fb08c420e4a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 143625, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-11 10:03:49 UTC (rev 143626)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150827
+pkgrel=1
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+md5sums=('6a9d3b001a7035697079fb08c420e4a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


[arch-commits] Commit in lib32-libsoup (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:24:18
  Author: alucryd
Revision: 143664

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libsoup/repos/
  lib32-libsoup/repos/multilib-x86_64/
  lib32-libsoup/repos/multilib-x86_64/PKGBUILD
(from rev 143663, lib32-libsoup/trunk/PKGBUILD)

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

Copied: lib32-libsoup/repos/multilib-x86_64/PKGBUILD (from rev 143663, 
lib32-libsoup/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:24:18 UTC (rev 143664)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Maximilian Stein 
+# Contributor: josephgbr 
+
+pkgname=lib32-libsoup
+pkgver=2.52.0
+pkgrel=1
+pkgdesc='GNOME HTTP Library'
+arch=('x86_64')
+url='http://www.gnome.org'
+license=('LGPL')
+depends=('lib32-glib-networking' 'lib32-libxml2' 'lib32-sqlite' 'libsoup')
+makedepends=('gcc-multilib' 'gobject-introspection' 'intltool' 'python'
+ 'vala')
+conflicts=('lib32-libsoup-gnome')
+replaces=('lib32-libsoup-gnome')
+options=('!emptydirs')
+source=("http://ftp.gnome.org/pub/gnome/sources/libsoup/${pkgver%.*}/libsoup-${pkgver}.tar.xz;)
+sha256sums=('6c6c366622a1a9d938e0cea9b557fa536f088784251d31381ccd1b115a466785')
+
+build() {
+  cd libsoup-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static
+  make
+}
+
+package() {
+  cd libsoup-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+}
+
+# vim: ts=2 sw=2 et:


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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:26:16
  Author: alucryd
Revision: 143668

upgpkg: lib32-libepoxy 1.3.1-3

Fix arch array

Modified:
  lib32-libepoxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 15:24:49 UTC (rev 143667)
+++ PKGBUILD2015-10-11 15:26:16 UTC (rev 143668)
@@ -4,9 +4,9 @@
 
 pkgname=lib32-libepoxy
 pkgver=1.3.1
-pkgrel=2
+pkgrel=3
 pkgdesc='A library for handling OpenGL function pointer management for you'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url='https://github.com/anholt/libepoxy'
 license=('MIT')
 depends=('lib32-glibc')


[arch-commits] Commit in lib32-gtk3 (4 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:24:49
  Author: alucryd
Revision: 143667

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-gtk3/repos/
  lib32-gtk3/repos/multilib-x86_64/
  lib32-gtk3/repos/multilib-x86_64/PKGBUILD
(from rev 143666, lib32-gtk3/trunk/PKGBUILD)
  lib32-gtk3/repos/multilib-x86_64/gtk3.install
(from rev 143666, lib32-gtk3/trunk/gtk3.install)

--+
 PKGBUILD |   50 ++
 gtk3.install |   13 +
 2 files changed, 63 insertions(+)

Copied: lib32-gtk3/repos/multilib-x86_64/PKGBUILD (from rev 143666, 
lib32-gtk3/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:24:49 UTC (rev 143667)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: GordonGR 
+
+pkgname=lib32-gtk3
+pkgver=3.18.1
+pkgrel=2
+pkgdesc='GObject-based multi-platform GUI toolkit (v3)'
+arch=('x86_64')
+license=('LGPL')
+url='http://www.gtk.org/'
+depends=('gtk3' 'lib32-at-spi2-atk' 'lib32-colord' 'lib32-gdk-pixbuf2'
+ 'lib32-json-glib' 'lib32-libcups' 'lib32-libepoxy'
+ 'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
+ 'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
+makedepends=('gcc-multilib' 'gobject-introspection')
+install='gtk3.install'
+source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz;)
+sha256sums=('bd279cbb19f3fda074c89cf0edf9e7d95eee8b889b6889d16c2f7f0f6bdeba92')
+
+build() {
+  cd gtk+-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--enable-{broadway,wayland,x11}-backend \
+--disable-libcanberra \
+--disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gtk+-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}"/usr/bin/gtk-query-immodules-3.0{,-32}
+  rm 
"${pkgdir}"/usr/bin/{broadwayd,gtk-{builder-tool,encode-symbolic-svg,launch,update-icon-cache},gtk3-{demo,demo-application,icon-browser,widget-factory}}
+  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-gtk3/repos/multilib-x86_64/gtk3.install (from rev 143666, 
lib32-gtk3/trunk/gtk3.install)
===
--- repos/multilib-x86_64/gtk3.install  (rev 0)
+++ repos/multilib-x86_64/gtk3.install  2015-10-11 15:24:49 UTC (rev 143667)
@@ -0,0 +1,13 @@
+post_install() {
+  GTK_PATH=/usr/lib32/gtk-3.0 /usr/bin/gtk-query-immodules-3.0-32 
--update-cache
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  rm -f /usr/lib32/gtk-3.0/3.0.0/immodules.cache
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-rest (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:24:41
  Author: alucryd
Revision: 143666

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rest/repos/
  lib32-rest/repos/multilib-x86_64/
  lib32-rest/repos/multilib-x86_64/PKGBUILD
(from rev 143665, lib32-rest/trunk/PKGBUILD)

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

Copied: lib32-rest/repos/multilib-x86_64/PKGBUILD (from rev 143665, 
lib32-rest/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:24:41 UTC (rev 143666)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: GordonGR 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=lib32-rest
+pkgver=0.7.93
+pkgrel=1
+pkgdesc='A helper library for RESTful services'
+arch=('x86_64')
+url='http://www.gtk.org/'
+license=('GPL2')
+depends=('lib32-libsoup' 'rest')
+makedepends=('gcc-multilib' 'gobject-introspection')
+source=("http://download.gnome.org/sources/rest/${pkgver%.*}/rest-${pkgver}.tar.xz;)
+sha256sums=('c710644455340a44ddc005c645c466f05c0d779993138ea21a62c6082108b216')
+
+build() {
+  cd rest-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+  make
+}
+
+package() {
+  cd rest-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in haskell-asn1-types/repos (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:34:38
  Author: fyan
Revision: 143672

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

Added:
  haskell-asn1-types/repos/community-i686/
  haskell-asn1-types/repos/community-i686/PKGBUILD
(from rev 143671, haskell-asn1-types/trunk/PKGBUILD)
  haskell-asn1-types/repos/community-i686/haskell-asn1-types.install
(from rev 143671, haskell-asn1-types/trunk/haskell-asn1-types.install)
  haskell-asn1-types/repos/community-x86_64/
  haskell-asn1-types/repos/community-x86_64/PKGBUILD
(from rev 143671, haskell-asn1-types/trunk/PKGBUILD)
  haskell-asn1-types/repos/community-x86_64/haskell-asn1-types.install
(from rev 143671, haskell-asn1-types/trunk/haskell-asn1-types.install)

-+
 community-i686/PKGBUILD |   42 ++
 community-i686/haskell-asn1-types.install   |   18 +++
 community-x86_64/PKGBUILD   |   42 ++
 community-x86_64/haskell-asn1-types.install |   18 +++
 4 files changed, 120 insertions(+)

Copied: haskell-asn1-types/repos/community-i686/PKGBUILD (from rev 143671, 
haskell-asn1-types/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 15:34:38 UTC (rev 143672)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hourglass" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('4ae6d47503a0ebf40584ea9d733eb572ac2dd607556dff1211b25602b34f2ec6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-asn1-types/repos/community-i686/haskell-asn1-types.install 
(from rev 143671, haskell-asn1-types/trunk/haskell-asn1-types.install)
===
--- community-i686/haskell-asn1-types.install   (rev 0)
+++ community-i686/haskell-asn1-types.install   2015-10-11 15:34:38 UTC (rev 
143672)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-types
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-asn1-types/repos/community-x86_64/PKGBUILD (from rev 143671, 
haskell-asn1-types/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 15:34:38 UTC (rev 143672)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hourglass" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('4ae6d47503a0ebf40584ea9d733eb572ac2dd607556dff1211b25602b34f2ec6')
+
+build() {
+cd 

[arch-commits] Commit in haskell-asn1-encoding/repos (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:42:28
  Author: fyan
Revision: 143676

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

Added:
  haskell-asn1-encoding/repos/community-i686/
  haskell-asn1-encoding/repos/community-i686/PKGBUILD
(from rev 143675, haskell-asn1-encoding/trunk/PKGBUILD)
  haskell-asn1-encoding/repos/community-i686/haskell-asn1-encoding.install
(from rev 143675, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)
  haskell-asn1-encoding/repos/community-x86_64/
  haskell-asn1-encoding/repos/community-x86_64/PKGBUILD
(from rev 143675, haskell-asn1-encoding/trunk/PKGBUILD)
  haskell-asn1-encoding/repos/community-x86_64/haskell-asn1-encoding.install
(from rev 143675, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)

+
 community-i686/PKGBUILD|   42 +++
 community-i686/haskell-asn1-encoding.install   |   18 +
 community-x86_64/PKGBUILD  |   42 +++
 community-x86_64/haskell-asn1-encoding.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-asn1-encoding/repos/community-i686/PKGBUILD (from rev 143675, 
haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 15:42:28 UTC (rev 143676)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-types" "haskell-hourglass")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('90d7e05806977e683a468a4112270c9745c07f52452915db6a8fb19b752d7106')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-asn1-encoding/repos/community-i686/haskell-asn1-encoding.install (from 
rev 143675, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)
===
--- community-i686/haskell-asn1-encoding.install
(rev 0)
+++ community-i686/haskell-asn1-encoding.install2015-10-11 15:42:28 UTC 
(rev 143676)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-encoding
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-asn1-encoding/repos/community-x86_64/PKGBUILD (from rev 143675, 
haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 15:42:28 UTC (rev 143676)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-types" "haskell-hourglass")
+options=('staticlibs')

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:41:58
  Author: fyan
Revision: 143675

addpkg: haskell-asn1-encoding 0.9.3-1

Added:
  haskell-asn1-encoding/
  haskell-asn1-encoding/repos/
  haskell-asn1-encoding/trunk/
  haskell-asn1-encoding/trunk/PKGBUILD
  haskell-asn1-encoding/trunk/haskell-asn1-encoding.install

---+
 PKGBUILD  |   42 
 haskell-asn1-encoding.install |   18 +
 2 files changed, 60 insertions(+)

Added: haskell-asn1-encoding/trunk/PKGBUILD
===
--- haskell-asn1-encoding/trunk/PKGBUILD(rev 0)
+++ haskell-asn1-encoding/trunk/PKGBUILD2015-10-11 15:41:58 UTC (rev 
143675)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-types" "haskell-hourglass")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('90d7e05806977e683a468a4112270c9745c07f52452915db6a8fb19b752d7106')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-asn1-encoding/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-asn1-encoding/trunk/haskell-asn1-encoding.install
===
--- haskell-asn1-encoding/trunk/haskell-asn1-encoding.install   
(rev 0)
+++ haskell-asn1-encoding/trunk/haskell-asn1-encoding.install   2015-10-11 
15:41:58 UTC (rev 143675)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-encoding
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:50:31
  Author: fyan
Revision: 143679

upgpkg: wine-staging 1.7.52-2

enable gtk3 theming support

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 15:44:06 UTC (rev 143678)
+++ PKGBUILD2015-10-11 15:50:31 UTC (rev 143679)
@@ -7,7 +7,7 @@
 
 pkgname=wine-staging
 pkgver=1.7.52
-pkgrel=1
+pkgrel=2
 
 _pkgbasever=${pkgver/rc/-rc}
 
@@ -62,10 +62,10 @@
   libxslt lib32-libxslt
   libpulselib32-libpulse
   libva   lib32-libva
+  gtk3lib32-gtk3
   samba
   opencl-headers
 )
-# gtk3lib32-gtk3
   
 optdepends=(
   giflib  lib32-giflib
@@ -85,10 +85,10 @@
   libcl   lib32-libcl
   libxslt lib32-libxslt
   libva   lib32-libva
+  gtk3lib32-gtk3
   cups
   samba   dosbox
 )
-# gtk3lib32-gtk3
 
 if [[ $CARCH == i686 ]]; then
   # Strip lib32 etc. on i686


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

2015-10-11 Thread Andreas Radke
Date: Sunday, October 11, 2015 @ 14:06:09
  Author: andyrtr
Revision: 248879

upgpkg: claws-mail 3.13.0-1

upstream update 3.13.0

Modified:
  claws-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 09:13:00 UTC (rev 248878)
+++ PKGBUILD2015-10-11 12:06:09 UTC (rev 248879)
@@ -2,8 +2,8 @@
 # Maintainer: Andreas Radke 
 
 pkgname=claws-mail
-pkgver=3.12.0
-pkgrel=2
+pkgver=3.13.0
+pkgrel=1
 pkgdesc="A GTK+ based e-mail client."
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -34,10 +34,9 @@
 conflicts=('claws-mail-extra-plugins')
 provides=('claws')
 install=claws-mail.install
-source=(#http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc}
-
http://www.claws-mail.org/download.php?file=releases/claws-mail-3.12.0.tar.xz{,.asc})
-md5sums=('73c11bf9f260473abe0e888af19e23b8'
- 'SKIP')
+source=(http://www.claws-mail.org/download.php?file=releases/claws-mail-$pkgver.tar.xz{,.asc})
+sha256sums=('365076806c63dd8a1d6f08ead6a863a01ba05819c1a860ea7bbee8fcda4bf93a'
+'SKIP')
 validpgpkeys=('8B3B297A03468356692F8D592CD716D654D6BBD4') # Paul 

 
 build() {


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

2015-10-11 Thread Andreas Radke
Date: Sunday, October 11, 2015 @ 14:06:33
  Author: andyrtr
Revision: 248880

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

Added:
  claws-mail/repos/extra-i686/PKGBUILD
(from rev 248879, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-i686/claws-mail.install
(from rev 248879, claws-mail/trunk/claws-mail.install)
  claws-mail/repos/extra-x86_64/PKGBUILD
(from rev 248879, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-x86_64/claws-mail.install
(from rev 248879, claws-mail/trunk/claws-mail.install)
Deleted:
  claws-mail/repos/extra-i686/PKGBUILD
  claws-mail/repos/extra-i686/claws-mail.install
  claws-mail/repos/extra-x86_64/PKGBUILD
  claws-mail/repos/extra-x86_64/claws-mail.install

-+
 /PKGBUILD   |  150 ++
 /claws-mail.install |   32 
 extra-i686/PKGBUILD |   76 ---
 extra-i686/claws-mail.install   |   16 
 extra-x86_64/PKGBUILD   |   76 ---
 extra-x86_64/claws-mail.install |   16 
 6 files changed, 182 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:06:09 UTC (rev 248879)
+++ extra-i686/PKGBUILD 2015-10-11 12:06:33 UTC (rev 248880)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=claws-mail
-pkgver=3.12.0
-pkgrel=2
-pkgdesc="A GTK+ based e-mail client."
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://www.claws-mail.org;
-depends=('gtk2' 'gnutls' 'startup-notification' 'enchant' 'gpgme' 'libetpan' 
'compface'
- 'libsm' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('spamassassin' 'bogofilter' 'valgrind'
- # dependencies for plugins
- 'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 
'poppler-glib' 'pygtk') 
- #'libchamplain' needed for geolocation plugin, disabled for now - 
most time it's not compatible with current gnome releases
-optdepends=('python2:   needed for some tools and python plugin'
-'perl:  needed for some tools and perl plugin'
-'spamassassin:  adds support for spamfiltering'
-'bogofilter:adds support for spamfiltering'
-'libnotify: for notification plugin'
-'libcanberra:   for notification plugin'
-'dbus:  for notification plugin'
-'libxml2:   for gtkhtml2_viewer and rssyl plugins'
-'curl:  for gtkhtml2_viewer, vcalendar, rssyl and 
spamreport plugins'
-'libarchive:for archive plugin and various other plugins'
-'libytnef:  for tnef_parse plugin'
-'webkitgtk2:for the fancy webkit html plugin'
-'libsoup:   for the fancy webkit html plugin'
-   'libgdata:  for gdata plugin'
-   'poppler-glib:  for pdf viewer plugin'
-   'ghostscript:   for pdf viewer plugin')
-replaces=('sylpheed-claws' 'claws-mail-extra-plugins')
-conflicts=('claws-mail-extra-plugins')
-provides=('claws')
-install=claws-mail.install
-source=(#http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc}
-
http://www.claws-mail.org/download.php?file=releases/claws-mail-3.12.0.tar.xz{,.asc})
-md5sums=('73c11bf9f260473abe0e888af19e23b8'
- 'SKIP')
-validpgpkeys=('8B3B297A03468356692F8D592CD716D654D6BBD4') # Paul 

-
-build() {
-  cd ${pkgname}-${pkgver}
- 
-  # fixes for python2
-  export PYTHON="/usr/bin/python2"
-  sed -i 's@^#!.*python.*@#!/usr/bin/python2@' tools/*.py
-  sed -i 's:python -c:python2 -c:g' configure
-  
-  ./configure --prefix=/usr --disable-static \
---enable-enchant \
---enable-gnutls \
---enable-ldap \
---enable-crash-dialog \
---enable-pgpmime-plugin \
---enable-spamassassin-plugin \
---enable-bogofilter-plugin \
---enable-appdata
-#--help
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # build and install extra tools
-  cd tools
-  make
-   # all executables and .conf files ; only top directory
-  find -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i ; 
do
-  install -D -m755 ${i} \
-${pkgdir}/usr/lib/claws-mail/tools/${i}
-  done
-}

Copied: claws-mail/repos/extra-i686/PKGBUILD (from rev 248879, 
claws-mail/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:06:33 UTC (rev 248880)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=claws-mail
+pkgver=3.13.0
+pkgrel=1
+pkgdesc="A GTK+ based e-mail client."
+arch=('i686' 

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

2015-10-11 Thread Lukas Jirkovsky
Date: Sunday, October 11, 2015 @ 15:25:57
  Author: stativ
Revision: 143646

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

Added:
  cuetools/repos/community-i686/PKGBUILD
(from rev 143645, cuetools/trunk/PKGBUILD)
  cuetools/repos/community-x86_64/PKGBUILD
(from rev 143645, cuetools/trunk/PKGBUILD)
Deleted:
  cuetools/repos/community-i686/PKGBUILD
  cuetools/repos/community-i686/cuetag-fix_spaces.diff
  cuetools/repos/community-i686/fix_build_with_automake-1.12.diff
  cuetools/repos/community-x86_64/PKGBUILD
  cuetools/repos/community-x86_64/cuetag-fix_spaces.diff
  cuetools/repos/community-x86_64/fix_build_with_automake-1.12.diff

+
 /PKGBUILD  |   74 +++
 community-i686/PKGBUILD|   43 ---
 community-i686/cuetag-fix_spaces.diff  |   46 ---
 community-i686/fix_build_with_automake-1.12.diff   |   24 --
 community-x86_64/PKGBUILD  |   43 ---
 community-x86_64/cuetag-fix_spaces.diff|   46 ---
 community-x86_64/fix_build_with_automake-1.12.diff |   24 --
 7 files changed, 74 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-11 13:25:44 UTC (rev 143645)
+++ community-i686/PKGBUILD 2015-10-11 13:25:57 UTC (rev 143646)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=cuetools
-pkgver=1.4.0
-pkgrel=3
-pkgdesc="Cue and toc file parsers and utilities"
-arch=('i686' 'x86_64')
-url="https://github.com/svend/cuetools;
-#url="http://developer.berlios.de/projects/cuetools/;
-license=('GPL')
-depends=('glibc')
-optdepends=('id3v2: mp3 support in cuetag (does not require mutagen)'
-'mutagen: mp3 support in cuetag (does not require id3v2)')
-source=("https://github.com/svend/cuetools/archive/${pkgver}.tar.gz;
-"cuetag-fix_spaces.diff" "fix_build_with_automake-1.12.diff")
-md5sums=('4492dae2b3f9e077f6455a1f1cddef3b'
- '60f4aba26e529e48dbedd2adef917117'
- '67a3b32711d1a1f508be6ed0f1bdadf3')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  patch -Np1 < "$srcdir/fix_build_with_automake-1.12.diff" || true
-  patch -Np1 < "$srcdir/cuetag-fix_spaces.diff" || true
-
-  aclocal
-  autoheader
-  automake --force-missing --add-missing
-  autoconf
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: cuetools/repos/community-i686/PKGBUILD (from rev 143645, 
cuetools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 13:25:57 UTC (rev 143646)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=cuetools
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="Cue and toc file parsers and utilities"
+arch=('i686' 'x86_64')
+url="https://github.com/svend/cuetools;
+#url="http://developer.berlios.de/projects/cuetools/;
+license=('GPL')
+depends=('glibc')
+optdepends=('id3v2: mp3 support in cuetag (does not require mutagen)'
+'mutagen: mp3 support in cuetag (does not require id3v2)')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/svend/cuetools/archive/${pkgver}.tar.gz;)
+md5sums=('b1f365fc7ab02eff4b58b6a54ecee080')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  aclocal
+  autoheader
+  automake --force-missing --add-missing
+  autoconf
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/cuetag-fix_spaces.diff
===
--- community-i686/cuetag-fix_spaces.diff   2015-10-11 13:25:44 UTC (rev 
143645)
+++ community-i686/cuetag-fix_spaces.diff   2015-10-11 13:25:57 UTC (rev 
143646)
@@ -1,46 +0,0 @@
-From 21ee6cc40f02693928efbc4f3beeb681950c16b5 Mon Sep 17 00:00:00 2001
-From: Svend Sorensen 
-Date: Sat, 23 Nov 2013 17:23:01 -0800
-Subject: [PATCH] cuetag: Fix handling of spaces in file names
-
-Fixes #14

- src/tools/cuetag.sh | 9 -
- 1 file changed, 4 insertions(+), 5 deletions(-)
-
-diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh
-index f26fa20..448920f 100755
 a/src/tools/cuetag.sh
-+++ b/src/tools/cuetag.sh
-@@ -182,16 +182,15 @@ main()
-   ntrack=$(cueprint -d '%N' "$cue_file")
-   trackno=1
- 
--  FILES= FIELDS=
-+  NUM_FILES=0 FIELDS=
-   for arg in "$@"; do
-   case "$arg" in
--  *.*) FILES="$FILES $arg";;
-+  *.*) NUM_FILES=$(expr $NUM_FILES + 1);;
-

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

2015-10-11 Thread Lukas Jirkovsky
Date: Sunday, October 11, 2015 @ 15:25:44
  Author: stativ
Revision: 143645

upgpkg: cuetools 1.4.1-1

update to 1.4.1

Modified:
  cuetools/trunk/PKGBUILD
Deleted:
  cuetools/trunk/cuetag-fix_spaces.diff
  cuetools/trunk/fix_build_with_automake-1.12.diff

---+
 PKGBUILD  |   14 +++---
 cuetag-fix_spaces.diff|   46 
 fix_build_with_automake-1.12.diff |   24 --
 3 files changed, 4 insertions(+), 80 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 13:07:03 UTC (rev 143644)
+++ PKGBUILD2015-10-11 13:25:44 UTC (rev 143645)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=cuetools
-pkgver=1.4.0
-pkgrel=3
+pkgver=1.4.1
+pkgrel=1
 pkgdesc="Cue and toc file parsers and utilities"
 arch=('i686' 'x86_64')
 url="https://github.com/svend/cuetools;
@@ -11,18 +11,12 @@
 depends=('glibc')
 optdepends=('id3v2: mp3 support in cuetag (does not require mutagen)'
 'mutagen: mp3 support in cuetag (does not require id3v2)')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/svend/cuetools/archive/${pkgver}.tar.gz;
-"cuetag-fix_spaces.diff" "fix_build_with_automake-1.12.diff")
-md5sums=('4492dae2b3f9e077f6455a1f1cddef3b'
- '60f4aba26e529e48dbedd2adef917117'
- '67a3b32711d1a1f508be6ed0f1bdadf3')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/svend/cuetools/archive/${pkgver}.tar.gz;)
+md5sums=('b1f365fc7ab02eff4b58b6a54ecee080')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
 
-  patch -Np1 < "$srcdir/fix_build_with_automake-1.12.diff" || true
-  patch -Np1 < "$srcdir/cuetag-fix_spaces.diff" || true
-
   aclocal
   autoheader
   automake --force-missing --add-missing

Deleted: cuetag-fix_spaces.diff
===
--- cuetag-fix_spaces.diff  2015-10-11 13:07:03 UTC (rev 143644)
+++ cuetag-fix_spaces.diff  2015-10-11 13:25:44 UTC (rev 143645)
@@ -1,46 +0,0 @@
-From 21ee6cc40f02693928efbc4f3beeb681950c16b5 Mon Sep 17 00:00:00 2001
-From: Svend Sorensen 
-Date: Sat, 23 Nov 2013 17:23:01 -0800
-Subject: [PATCH] cuetag: Fix handling of spaces in file names
-
-Fixes #14

- src/tools/cuetag.sh | 9 -
- 1 file changed, 4 insertions(+), 5 deletions(-)
-
-diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh
-index f26fa20..448920f 100755
 a/src/tools/cuetag.sh
-+++ b/src/tools/cuetag.sh
-@@ -182,16 +182,15 @@ main()
-   ntrack=$(cueprint -d '%N' "$cue_file")
-   trackno=1
- 
--  FILES= FIELDS=
-+  NUM_FILES=0 FIELDS=
-   for arg in "$@"; do
-   case "$arg" in
--  *.*) FILES="$FILES $arg";;
-+  *.*) NUM_FILES=$(expr $NUM_FILES + 1);;
-   *) FIELDS="$FIELDS $arg";;
-   esac
-   done
- 
--  set -- $FILES
--  if [ $# -ne $ntrack ]; then
-+  if [ $NUM_FILES -ne $ntrack ]; then
-   echo "warning: number of files does not match number of tracks"
-   fi
- 
-@@ -209,7 +208,7 @@ main()
-   *.[Tt][Xx][Tt])
-   vorbis $trackno "$file"
-   ;;
--  *)
-+  *.*)
-   echo "$file: uknown file type"
-   ;;
-   esac
--- 
-1.8.5.1
-

Deleted: fix_build_with_automake-1.12.diff
===
--- fix_build_with_automake-1.12.diff   2015-10-11 13:07:03 UTC (rev 143644)
+++ fix_build_with_automake-1.12.diff   2015-10-11 13:25:44 UTC (rev 143645)
@@ -1,24 +0,0 @@
-From 761eba5b9b9c87a872a18b7ba4bf3d77a96e2157 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Horv=C3=A1th=20Bal=C3=A1zs?= 
-Date: Tue, 15 Oct 2013 01:17:52 +0200
-Subject: [PATCH] Fix build with automake-1.12.
-

- configure.ac | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/configure.ac b/configure.ac
-index f54bb92..9f36932 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -4,6 +4,7 @@ AC_PROG_CC
- AC_PROG_INSTALL
- AC_PROG_RANLIB
- AM_PROG_LEX
-+m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
- AC_PROG_YACC
- AC_CONFIG_HEADERS([config.h])
- AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lib/Makefile 
src/tools/Makefile extras/Makefile])
--- 
-1.8.4
-


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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 16:14:38
  Author: alucryd
Revision: 248891

upgpkg: mkvtoolnix 8.4.0-2

Build the new Qt GUI and ditch the mkvinfo GUI

Added:
  mkvtoolnix/trunk/mkvtoolnix-gui.install
Modified:
  mkvtoolnix/trunk/PKGBUILD
Deleted:
  mkvtoolnix/trunk/mkvtoolnix.install

+
 PKGBUILD   |  105 ++-
 mkvtoolnix-gui.install |   15 ++
 mkvtoolnix.install |   15 --
 3 files changed, 47 insertions(+), 88 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:45:12 UTC (rev 248890)
+++ PKGBUILD2015-10-11 14:14:38 UTC (rev 248891)
@@ -1,102 +1,61 @@
 # $Id$
 # Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
 # Contributor: xduugu 
 
 pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
 pkgver=8.4.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
 license=('GPL')
-url="http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo' 'xdg-utils' 'boost' 'ruby')
-source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
+makedepends=('boost' 'boost-libs' 'file' 'flac' 'libebml' 'libmatroska'
+ 'libogg' 'libvorbis' 'qt5-base' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
 md5sums=('773eb42b7887bd20c4ce65cdf667976b')
 
-prepare() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Disable automagic curl dep used for online update checking
-  #sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS="" CURL_LIBS=""
-
-  export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-  export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-
-  # Sets number of threads for a parallel build
-  export DRAKETHREADS=4
-
-  autoreconf -vfi
-}
-
 build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
+  cd mkvtoolnix-${pkgver}
 
-  # XXX: Temporary define to build against boost 1.58
-  # https://github.com/mbunkus/mkvtoolnix/issues/1172
-  CXXFLAGS+=' -DBOOST_CODECVT_DO_LENGTH_CONST=const'
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
+  ./configure --prefix='/usr' \
   --without-curl \
-  --disable-gui
-  ./drake
-
+  --disable-qt
+  ./drake apps:mkvinfo $MAKEFLAGS
   mv src/mkvinfo{,-cli}
 
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
+  ./configure --prefix='/usr' \
   --without-curl
-
-  ./drake
+  ./drake $MAKEFLAGS
 }
 
 package_mkvtoolnix-cli() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - CLI 
version"
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
+  pkgdesc='Set of tools to create, edit and inspect Matroska files - CLI'
+  depends=('boost-libs' 'file' 'flac' 'libebml' 'libmatroska' 'libogg'
+   'libvorbis' 'zlib')
 
-  cd "${srcdir}/${pkgbase}-${pkgver}"
+  cd mkvtoolnix-${pkgver}
 
   ./drake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-
-  rm -rf "${pkgdir}"/usr/bin/mmg
-  rm -rf "${pkgdir}"/usr/share/man/de/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/es/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/applications
-  rm -rf "${pkgdir}"/usr/share/icons
-  rm -rf "${pkgdir}"/usr/share/mime
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
 }
 
-package_mkvtoolnix-gtk() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - wxGTK GUI"
-  depends=("mkvtoolnix-cli=${pkgver}" 'wxgtk' 'xdg-utils' 'desktop-file-utils')
-  install=mkvtoolnix.install
+package_mkvtoolnix-gui() {
+  pkgdesc='Set of tools to create, edit and inspect Matroska files - GUI'
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-base' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+  install='mkvtoolnix-gui.install'
 
-  cd "${srcdir}/${pkgbase}-${pkgver}"
+  cd mkvtoolnix-${pkgver}
 
   ./drake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkv*
-  install -Dm755 src/mkvinfo "${pkgdir}"/usr/bin/mkvinfo-gtk
-  #sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
"${pkgdir}"/usr/share/applications/mkvinfo.desktop
-
-  rm -rf 

[arch-commits] Commit in lib32-libepoxy (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:24:08
  Author: alucryd
Revision: 143663

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libepoxy/repos/
  lib32-libepoxy/repos/multilib-x86_64/
  lib32-libepoxy/repos/multilib-x86_64/PKGBUILD
(from rev 143662, lib32-libepoxy/trunk/PKGBUILD)

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

Copied: lib32-libepoxy/repos/multilib-x86_64/PKGBUILD (from rev 143662, 
lib32-libepoxy/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:24:08 UTC (rev 143663)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Laurent Carlier 
+
+pkgname=lib32-libepoxy
+pkgver=1.3.1
+pkgrel=2
+pkgdesc='A library for handling OpenGL function pointer management for you'
+arch=('i686' 'x86_64')
+url='https://github.com/anholt/libepoxy'
+license=('MIT')
+depends=('lib32-glibc')
+makedepends=('gcc-multilib' 'lib32-libgl' 'python' 'xorg-util-macros')
+source=("https://github.com/anholt/libepoxy/releases/download/v${pkgver}/libepoxy-${pkgver}.tar.bz2;)
+sha256sums=('1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64')
+
+build() {
+  cd libepoxy-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+}
+
+package() {
+  cd libepoxy-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/include
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libepoxy "${pkgdir}"/usr/share/licenses/lib32-libepoxy
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-libxkbcommon (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:24:31
  Author: alucryd
Revision: 143665

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libxkbcommon/repos/
  lib32-libxkbcommon/repos/multilib-x86_64/
  lib32-libxkbcommon/repos/multilib-x86_64/PKGBUILD
(from rev 143664, lib32-libxkbcommon/trunk/PKGBUILD)

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

Copied: lib32-libxkbcommon/repos/multilib-x86_64/PKGBUILD (from rev 143664, 
lib32-libxkbcommon/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:24:31 UTC (rev 143665)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan Alexander Steffens 
+# Contributor: Daniel Micay 
+# Contributor: Mladen Pejakovic 
+
+pkgbase=lib32-libxkbcommon
+pkgname=('lib32-libxkbcommon' 'lib32-libxkbcommon-x11')
+pkgver=0.5.0
+pkgrel=1
+arch=('x86_64')
+url='http://xkbcommon.org/'
+license=('custom')
+makedepends=('gcc-multilib' 'lib32-libxcb' 'xorg-util-macros')
+source=("http://xkbcommon.org/download/libxkbcommon-${pkgver}.tar.xz;)
+sha256sums=('90bd7824742b9a6f52a6cf80e2cadd6f5349cf600a358d08260772615b89d19c')
+
+prepare() {
+  mkdir -p x11/usr/lib32/pkgconfig
+}
+
+build() {
+  cd libxkbcommon-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-docs \
+--disable-static
+  make
+}
+
+package_lib32-libxkbcommon() {
+  pkgdesc='Keyboard handling library using XKB data'
+  depends=('lib32-glibc' 'libxkbcommon')
+
+  cd libxkbcommon-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/include
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libxkbcommon "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon
+
+  mv "${pkgdir}"/usr/lib32/*x11* ../x11/usr/lib32
+  mv "${pkgdir}"/usr/lib32/pkgconfig/*x11* ../x11/usr/lib32/pkgconfig
+}
+
+package_lib32-libxkbcommon-x11() {
+  pkgdesc='Keyboard handling library using XKB data for X11 XCB clients'
+  depends=('lib32-libxcb' 'lib32-libxkbcommon' 'libxkbcommon-x11')
+
+  mv x11/* "${pkgdir}"/
+  find "${pkgdir}" -type d -exec chmod 755 {} +
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libxkbcommon-x11 "${pkgdir}"/usr/share/licenses/lib32-libxkbcommon-x11
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-colord (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:29
  Author: alucryd
Revision: 143659

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-colord/repos/
  lib32-colord/repos/multilib-x86_64/
  lib32-colord/repos/multilib-x86_64/PKGBUILD
(from rev 143658, lib32-colord/trunk/PKGBUILD)

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

Copied: lib32-colord/repos/multilib-x86_64/PKGBUILD (from rev 143658, 
lib32-colord/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:29 UTC (rev 143659)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: josephgbr 
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-colord
+pkgver=1.2.12
+pkgrel=1
+pkgdesc='System daemon for managing color devices'
+arch=('x86_64')
+url='http://www.freedesktop.org/software/colord'
+license=('GPL2')
+depends=('colord' 'lib32-dconf' 'lib32-libgudev' 'lib32-libgusb' 'lib32-lcms2'
+ 'lib32-polkit' 'lib32-sqlite')
+makedepends=('argyllcms' 'gcc-multilib' 'gobject-introspection' 'intltool'
+ 'python2' 'sane' 'vala')
+source=("http://www.freedesktop.org/software/colord/releases/colord-${pkgver}.tar.xz;)
+sha256sums=('d5241864c16a37f9e40d38d5009255456495a67f170ce0dc9250774442d68c3a')
+
+build() {
+  cd colord-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32/colord' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--enable-vala \
+--disable-bash-completion \
+--disable-static \
+--disable-volume-search \
+--with-daemon-user='colord' \
+--with-systemdsystemunitdir='/usr/lib/systemd/system'
+  make
+}
+
+package() {
+  cd colord-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,var,usr/{bin,include,lib,share}}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-polkit (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:11
  Author: alucryd
Revision: 143657

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-polkit/repos/
  lib32-polkit/repos/multilib-x86_64/
  lib32-polkit/repos/multilib-x86_64/PKGBUILD
(from rev 143656, lib32-polkit/trunk/PKGBUILD)

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

Copied: lib32-polkit/repos/multilib-x86_64/PKGBUILD (from rev 143656, 
lib32-polkit/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:11 UTC (rev 143657)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Jan de Groot 
+# Contributor: GordonGR 
+
+pkgname=lib32-polkit
+pkgver=0.113
+pkgrel=2
+pkgdesc='Application development toolkit for controlling system-wide 
privileges'
+arch=('x86_64')
+license=('LGPL')
+url='http://www.freedesktop.org/wiki/Software/polkit'
+depends=('lib32-glib2' 'lib32-js17' 'lib32-pam' 'lib32-systemd' 'polkit')
+makedepends=('gcc-multilib' 'intltool' 'python2')
+source=("http://www.freedesktop.org/software/polkit/releases/polkit-${pkgver}.tar.gz;)
+sha256sums=('e1c095093c654951f78f8618d427faf91cf62abdefed98de40ff65eca6413c81')
+
+build() {
+  cd polkit-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32/polkit-1' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--enable-libsystemd-login \
+--disable-examples \
+--disable-gtk-doc-html \
+--disable-introspection \
+--disable-man-pages \
+--disable-static \
+--with-os-type='redhat'
+  make
+}
+
+package() {
+  cd polkit-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{bin,lib,include,share}}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-libproxy (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:50
  Author: alucryd
Revision: 143661

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libproxy/repos/
  lib32-libproxy/repos/multilib-x86_64/
  lib32-libproxy/repos/multilib-x86_64/PKGBUILD
(from rev 143660, lib32-libproxy/trunk/PKGBUILD)

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

Copied: lib32-libproxy/repos/multilib-x86_64/PKGBUILD (from rev 143660, 
lib32-libproxy/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:50 UTC (rev 143661)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: TryA 
+# Contributor: Jan de Groot 
+# Contributor: josephgbr 
+
+pkgname=lib32-libproxy
+pkgver=0.4.11
+pkgrel=1
+pkgdesc='A library that provides automatic proxy configuration management'
+arch=('x86_64')
+url='http://libproxy.googlecode.com'
+license=('LGPL')
+depends=('lib32-gcc-libs' 'libproxy')
+makedepends=('cmake' 'gcc-multilib' 'lib32-zlib')
+source=("http://libproxy.googlecode.com/files/libproxy-${pkgver}.tar.gz;)
+md5sums=('3cd1ae2a4abecf44b3f24d6639d2cd84')
+
+build() {
+  cd libproxy-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_C_FLAGS="${CFLAGS}" \
+-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DLIBEXEC_INSTALL_DIR='/usr/lib32/libproxy' \
+-DLIB_SUFFIX='32' \
+-DPERL_VENDORINSTALL='FALSE' \
+-DWITH_{GNOME3,MOZJS,NATUS,NM,KDE4,PERL,PYTHON,WEBKIT}='FALSE'
+  make
+}
+
+package() {
+  cd libproxy-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-json-glib (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:40
  Author: alucryd
Revision: 143660

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-json-glib/repos/
  lib32-json-glib/repos/multilib-x86_64/
  lib32-json-glib/repos/multilib-x86_64/PKGBUILD
(from rev 143659, lib32-json-glib/trunk/PKGBUILD)

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

Copied: lib32-json-glib/repos/multilib-x86_64/PKGBUILD (from rev 143659, 
lib32-json-glib/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:40 UTC (rev 143660)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jameson Pugh 
+
+pkgname=lib32-json-glib
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='JSON library built on GLib'
+arch=('x86_64')
+url='http://live.gnome.org/JsonGlib'
+license=('GPL')
+depends=('json-glib' 'lib32-glib2')
+makedepends=('gobject-introspection' 'python2')
+source=("http://ftp.gnome.org/pub/GNOME/sources/json-glib/${pkgver%.*}/json-glib-${pkgver}.tar.xz;)
+sha256sums=('80f3593cb6bd13f1465828e46a9f740e2e9bd3cd2257889442b3e62bd6de05cd')
+
+build(){
+  cd json-glib-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+  make
+}
+
+package(){
+  cd json-glib-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-libgudev (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:20
  Author: alucryd
Revision: 143658

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libgudev/repos/
  lib32-libgudev/repos/multilib-x86_64/
  lib32-libgudev/repos/multilib-x86_64/PKGBUILD
(from rev 143657, lib32-libgudev/trunk/PKGBUILD)

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

Copied: lib32-libgudev/repos/multilib-x86_64/PKGBUILD (from rev 143657, 
lib32-libgudev/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:20 UTC (rev 143658)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: FadeMind 
+# Contributor: Evangelos Foutras 
+
+pkgname=lib32-libgudev
+pkgver=230
+pkgrel=1
+pkgdesc='GObject bindings for libudev'
+arch=('x86_64')
+url='https://wiki.gnome.org/Projects/libgudev'
+license=('LGPL2.1')
+depends=('lib32-glib2' 'lib32-systemd' 'libgudev')
+makedepends=('gcc-multilib')
+conflicts=('lib32-systemd<221')
+source=("https://download.gnome.org/sources/libgudev/${pkgver}/libgudev-${pkgver}.tar.xz;)
+sha256sums=('a2e77faced0c66d7498403adefcc0707105e03db71a2b2abd620025b86347c18')
+
+build() {
+  cd libgudev-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--disable-introspection
+  make
+}
+
+package() {
+  cd libgudev-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf ${pkgdir}/usr/{include,lib32/pkgconfig,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-glib-networking (4 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:59
  Author: alucryd
Revision: 143662

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-glib-networking/repos/
  lib32-glib-networking/repos/multilib-x86_64/
  lib32-glib-networking/repos/multilib-x86_64/PKGBUILD
(from rev 143661, lib32-glib-networking/trunk/PKGBUILD)
  lib32-glib-networking/repos/multilib-x86_64/glib-networking.install
(from rev 143661, lib32-glib-networking/trunk/glib-networking.install)

-+
 PKGBUILD|   42 ++
 glib-networking.install |   13 +
 2 files changed, 55 insertions(+)

Copied: lib32-glib-networking/repos/multilib-x86_64/PKGBUILD (from rev 143661, 
lib32-glib-networking/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:59 UTC (rev 143662)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+
+pkgname=lib32-glib-networking
+pkgver=2.46.0
+pkgrel=1
+pkgdesc='Network-related giomodules for glib'
+arch=('x86_64')
+url='http://www.gtk.org/'
+license=('GPL2')
+depends=('glib-networking' 'lib32-glib2' 'lib32-gnutls' 'lib32-libproxy')
+makedepends=('ca-certificates' 'gcc-multilib' 'intltool')
+install='glib-networking.install'
+source=("http://download.gnome.org/sources/glib-networking/${pkgver%.*}/glib-networking-${pkgver}.tar.xz;)
+sha256sums=('3655526d6dbfc697c22cd9b279e14599f8449f5802b12d84485bdc52d96482f0')
+
+build() {
+  cd glib-networking-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32/glib-networking' \
+--sysconfdir='/etc' \
+--disable-installed-tests \
+--disable-static
+  make
+}
+
+package() {
+  cd glib-networking-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-glib-networking/repos/multilib-x86_64/glib-networking.install 
(from rev 143661, lib32-glib-networking/trunk/glib-networking.install)
===
--- repos/multilib-x86_64/glib-networking.install   
(rev 0)
+++ repos/multilib-x86_64/glib-networking.install   2015-10-11 15:23:59 UTC 
(rev 143662)
@@ -0,0 +1,13 @@
+post_install() {
+  gio-querymodules-32 usr/lib32/gio/modules
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:43:45
  Author: fyan
Revision: 143677

upgpkg: python-keyring 5.5.1-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 15:42:28 UTC (rev 143676)
+++ PKGBUILD2015-10-11 15:43:45 UTC (rev 143677)
@@ -8,7 +8,7 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.5
+pkgver=5.5.1
 pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
@@ -19,7 +19,7 @@
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
   'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
   'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('01c497ed8795a19d4590b327bcc386e1')
+md5sums=('828dcf21200760faa0cc00e2c5b5b14c')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:44:06
  Author: fyan
Revision: 143678

archrelease: copy trunk to community-any

Added:
  python-keyring/repos/community-any/PKGBUILD
(from rev 143677, python-keyring/trunk/PKGBUILD)
Deleted:
  python-keyring/repos/community-any/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 15:43:45 UTC (rev 143677)
+++ PKGBUILD2015-10-11 15:44:06 UTC (rev 143678)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgbase=python-keyring
-pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.5
-pkgrel=1
-pkgdesc="Store and access your passwords safely."
-arch=('any')
-url="http://pypi.python.org/pypi/keyring;
-license=('PSF' 'MIT')
-source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
-makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
-  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
-  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('01c497ed8795a19d4590b327bcc386e1')
-
-prepare() {
-  cp -a keyring-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Not using ptr because we are not packaging keyczar
-
-  cd "$srcdir/keyring-$pkgver"
-  py.test
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  py.test2
-}
-
-package_python-keyring() {
-  depends=('python-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python-gobject: Gnome integration'
-'kdebindings-python: Kde integration'
-'python-crypto: CLI keyring'
-'python-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-keyring() {
-  depends=('python2-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python2-gobject: Gnome integration'
-'kdebindings-python2: Kde integration'
-'python2-crypto: CLI keyring'
-'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  mv "$pkgdir"/usr/bin/keyring{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-any/PKGBUILD (from rev 143677, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-11 15:44:06 UTC (rev 143678)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=5.5.1
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
+  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
+  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
+md5sums=('828dcf21200760faa0cc00e2c5b5b14c')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Not using ptr because we are not packaging keyczar
+
+  cd "$srcdir/keyring-$pkgver"
+  py.test
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  py.test2
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+'python-gobject: Gnome integration'
+'kdebindings-python: Kde integration'
+'python-crypto: CLI keyring'
+'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd 

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:51:29
  Author: fyan
Revision: 143680

addpkg: haskell-cereal 0.4.1.1-1

Added:
  haskell-cereal/
  haskell-cereal/repos/
  haskell-cereal/trunk/
  haskell-cereal/trunk/PKGBUILD
  haskell-cereal/trunk/haskell-cereal.install

+
 PKGBUILD   |   43 +++
 haskell-cereal.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-cereal/trunk/PKGBUILD
===
--- haskell-cereal/trunk/PKGBUILD   (rev 0)
+++ haskell-cereal/trunk/PKGBUILD   2015-10-11 15:51:29 UTC (rev 143680)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cereal
+pkgname=haskell-cereal
+pkgver=0.4.1.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df047216179ba3817134e32c73ef9e3b5dddbd4efff604f50ca0ca0c93753097')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-cereal/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-cereal/trunk/haskell-cereal.install
===
--- haskell-cereal/trunk/haskell-cereal.install (rev 0)
+++ haskell-cereal/trunk/haskell-cereal.install 2015-10-11 15:51:29 UTC (rev 
143680)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cereal
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in wine-staging/repos/multilib-x86_64 (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:52:20
  Author: fyan
Revision: 143681

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 143679, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 143679, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/multilib-x86_64/wine.install
(from rev 143679, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD
  wine-staging/repos/multilib-x86_64/wine.install

--+
 PKGBUILD |  386 -
 wine.install |   24 +--
 2 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
143679, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 15:51:29 UTC (rev 143680)
+++ PKGBUILD2015-10-11 15:52:20 UTC (rev 143681)
@@ -1,193 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.7.52
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$pkgver.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('843245d4736db4ad1449f00d747a2f7912680c59'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  attrlib32-attr
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libldap lib32-libldap
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libpulselib32-libpulse
-  libva   lib32-libva
-  samba
-  opencl-headers
-)
-# gtk3lib32-gtk3
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  ncurses lib32-ncurses
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libva   lib32-libva
-  cups
-  samba   dosbox
-)
-# gtk3lib32-gtk3
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  cd wine-patched-staging-$pkgver
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i configure*
-}
-
-build() {
-  cd "$srcdir"
-
-  # remove once https://bugs.winehq.org/show_bug.cgi?id=38653 is resolved
-  export CFLAGS="${CFLAGS/-O2/} -O0"
-  export CXXFLAGS="${CXXFLAGS/-O2/} -O0"
-
-  # Allow ccache to work
-  mv wine-patched-staging-$pkgver $pkgname
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  

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

2015-10-11 Thread Jan Steffens
Date: Sunday, October 11, 2015 @ 14:43:30
  Author: heftig
Revision: 248887

3.18.1

Modified:
  gtksourceview3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:36:58 UTC (rev 248886)
+++ PKGBUILD2015-10-11 12:43:30 UTC (rev 248887)
@@ -3,7 +3,7 @@
 
 pkgname=gtksourceview3
 _pkgbasename=gtksourceview
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="A text widget adding syntax highlighting and more to GNOME"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection' 'glade' 'vala')
 url="http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver:0:4}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('54b111264e6985e26a878dec88ff94fd0a9ae0dc4cfcdf08f4a6b5f655d4b693')
+sha256sums=('7be95faf068b9f0ac7540cc1e8d607baa98a482850ef11a6471b53c9327aede6')
 
 build() {
   cd "$_pkgbasename-$pkgver"


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

2015-10-11 Thread Jan Steffens
Date: Sunday, October 11, 2015 @ 14:43:33
  Author: heftig
Revision: 24

3.18.1

Modified:
  gnome-characters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:43:30 UTC (rev 248887)
+++ PKGBUILD2015-10-11 12:43:33 UTC (rev 24)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-characters
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="Simple utility application to find and insert unusual characters"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 install=gnome-characters.install
 groups=('gnome-extra')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e068b2275a08639565a88b096d378a4ac2abf90301ff43056bb5157dff54ce08')
+sha256sums=('161839bb6c1ffca78b6c11b8d4f3f32b8263705911df0aed3268672c050b9bac')
 
 build() {
   cd $pkgname-$pkgver


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

2015-10-11 Thread Jan Steffens
Date: Sunday, October 11, 2015 @ 14:45:12
  Author: heftig
Revision: 248890

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

Added:
  gnome-characters/repos/extra-i686/PKGBUILD
(from rev 248889, gnome-characters/trunk/PKGBUILD)
  gnome-characters/repos/extra-i686/gnome-characters.install
(from rev 248889, gnome-characters/trunk/gnome-characters.install)
  gnome-characters/repos/extra-x86_64/PKGBUILD
(from rev 248889, gnome-characters/trunk/PKGBUILD)
  gnome-characters/repos/extra-x86_64/gnome-characters.install
(from rev 248889, gnome-characters/trunk/gnome-characters.install)
Deleted:
  gnome-characters/repos/extra-i686/PKGBUILD
  gnome-characters/repos/extra-i686/gnome-characters.install
  gnome-characters/repos/extra-x86_64/PKGBUILD
  gnome-characters/repos/extra-x86_64/gnome-characters.install

---+
 /PKGBUILD |   58 
 /gnome-characters.install |   24 +
 extra-i686/PKGBUILD   |   29 
 extra-i686/gnome-characters.install   |   12 --
 extra-x86_64/PKGBUILD |   29 
 extra-x86_64/gnome-characters.install |   12 --
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:44:43 UTC (rev 248889)
+++ extra-i686/PKGBUILD 2015-10-11 12:45:12 UTC (rev 248890)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-characters
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="Simple utility application to find and insert unusual characters"
-arch=(i686 x86_64)
-url="http://gnome.org;
-license=('GPL2')
-depends=(gjs gtk3 libunistring)
-makedepends=(intltool gobject-introspection)
-install=gnome-characters.install
-groups=('gnome-extra')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e068b2275a08639565a88b096d378a4ac2abf90301ff43056bb5157dff54ce08')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-characters/repos/extra-i686/PKGBUILD (from rev 248889, 
gnome-characters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:45:12 UTC (rev 248890)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-characters
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="Simple utility application to find and insert unusual characters"
+arch=(i686 x86_64)
+url="http://gnome.org;
+license=('GPL2')
+depends=(gjs gtk3 libunistring)
+makedepends=(intltool gobject-introspection)
+install=gnome-characters.install
+groups=('gnome-extra')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('161839bb6c1ffca78b6c11b8d4f3f32b8263705911df0aed3268672c050b9bac')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/gnome-characters.install
===
--- extra-i686/gnome-characters.install 2015-10-11 12:44:43 UTC (rev 248889)
+++ extra-i686/gnome-characters.install 2015-10-11 12:45:12 UTC (rev 248890)
@@ -1,12 +0,0 @@
-post_install() {
-   gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-characters/repos/extra-i686/gnome-characters.install (from rev 
248889, gnome-characters/trunk/gnome-characters.install)
===
--- extra-i686/gnome-characters.install (rev 0)
+++ extra-i686/gnome-characters.install 2015-10-11 12:45:12 UTC (rev 248890)
@@ -0,0 +1,12 @@
+post_install() {
+   gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-10-11 12:44:43 UTC (rev 248889)
+++ extra-x86_64/PKGBUILD   2015-10-11 12:45:12 UTC (rev 248890)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-characters
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="Simple utility application to find and insert unusual characters"
-arch=(i686 x86_64)
-url="http://gnome.org;
-license=('GPL2')
-depends=(gjs gtk3 libunistring)
-makedepends=(intltool gobject-introspection)

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

2015-10-11 Thread Jan Steffens
Date: Sunday, October 11, 2015 @ 14:44:43
  Author: heftig
Revision: 248889

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:43:33 UTC (rev 24)
+++ extra-i686/PKGBUILD 2015-10-11 12:44:43 UTC (rev 248889)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gtksourceview3
-_pkgbasename=gtksourceview
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A text widget adding syntax highlighting and more to GNOME"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libxml2')
-makedepends=('intltool' 'gobject-introspection' 'glade' 'vala')
-url="http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver:0:4}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('54b111264e6985e26a878dec88ff94fd0a9ae0dc4cfcdf08f4a6b5f655d4b693')
-
-build() {
-  cd "$_pkgbasename-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --enable-glade-catalog
-  make
-}
-
-package() {
-  cd "$_pkgbasename-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gtksourceview3/repos/extra-i686/PKGBUILD (from rev 24, 
gtksourceview3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:44:43 UTC (rev 248889)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gtksourceview3
+_pkgbasename=gtksourceview
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="A text widget adding syntax highlighting and more to GNOME"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk3' 'libxml2')
+makedepends=('intltool' 'gobject-introspection' 'glade' 'vala')
+url="http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver:0:4}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('7be95faf068b9f0ac7540cc1e8d607baa98a482850ef11a6471b53c9327aede6')
+
+build() {
+  cd "$_pkgbasename-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-glade-catalog
+  make
+}
+
+package() {
+  cd "$_pkgbasename-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-10-11 12:43:33 UTC (rev 24)
+++ extra-x86_64/PKGBUILD   2015-10-11 12:44:43 UTC (rev 248889)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gtksourceview3
-_pkgbasename=gtksourceview
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A text widget adding syntax highlighting and more to GNOME"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libxml2')
-makedepends=('intltool' 'gobject-introspection' 'glade' 'vala')
-url="http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver:0:4}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('54b111264e6985e26a878dec88ff94fd0a9ae0dc4cfcdf08f4a6b5f655d4b693')
-
-build() {
-  cd "$_pkgbasename-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --enable-glade-catalog
-  make
-}
-
-package() {
-  cd "$_pkgbasename-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gtksourceview3/repos/extra-x86_64/PKGBUILD (from rev 24, 
gtksourceview3/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-10-11 12:44:43 UTC (rev 248889)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gtksourceview3
+_pkgbasename=gtksourceview
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="A text widget adding syntax highlighting and more to GNOME"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk3' 'libxml2')
+makedepends=('intltool' 'gobject-introspection' 'glade' 'vala')
+url="http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver:0:4}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('7be95faf068b9f0ac7540cc1e8d607baa98a482850ef11a6471b53c9327aede6')
+
+build() {
+  cd "$_pkgbasename-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-glade-catalog
+  make
+}
+

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

2015-10-11 Thread Ike Devolder
Date: Sunday, October 11, 2015 @ 15:06:52
  Author: idevolder
Revision: 143643

upgpkg: doublecmd 0.6.6-1

Modified:
  doublecmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:38:44 UTC (rev 143642)
+++ PKGBUILD2015-10-11 13:06:52 UTC (rev 143643)
@@ -5,7 +5,7 @@
 
 pkgbase=doublecmd
 pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.6.5
+pkgver=0.6.6
 _helpver=0.6.0
 pkgrel=1
 url="http://doublecmd.sourceforge.net/;
@@ -78,6 +78,6 @@
cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
 }
 
-sha256sums=('db3ecdfc0bd857d314b021b5fd9361e613844346e86311405e1f1d9a7fa89b36'
+sha256sums=('40172d410b7f37608e702edcb36bdaf3b13ae65f065bf01bc99082c0b01f8610'
 'd50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
 '16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')


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

2015-10-11 Thread Ike Devolder
Date: Sunday, October 11, 2015 @ 15:07:03
  Author: idevolder
Revision: 143644

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

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

+
 /PKGBUILD  |  166 +++
 /doublecmd.install |   68 ++
 community-i686/PKGBUILD|   83 -
 community-i686/doublecmd.install   |   34 ---
 community-x86_64/PKGBUILD  |   83 -
 community-x86_64/doublecmd.install |   34 ---
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-11 13:06:52 UTC (rev 143643)
+++ community-i686/PKGBUILD 2015-10-11 13:07:03 UTC (rev 143644)
@@ -1,83 +0,0 @@
-# vim:set ft=sh:
-# $Id$
-# Maintainer: BlackIkeEagle 
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.6.5
-_helpver=0.6.0
-pkgrel=1
-url="http://doublecmd.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-install="$pkgbase.install"
-provides=("$pkgbase")
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
-   'lua51: scripting'
-   'p7zip: support for 7zip archives'
-   'libunrar: support for rar archives'
-)
-source=(
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
-   "http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
-)
-
-prepare() {
-   cd "$pkgbase-$pkgver"
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i install/linux/install.sh
-
-   cd "$srcdir"
-
-   cp -a "$pkgbase-$pkgver" "$pkgbase-gtk"
-   cp -a "$pkgbase-$pkgver" "$pkgbase-qt"
-}
-
-build() {
-   msg2 'build gtk'
-   gtkdir="$srcdir/$pkgbase-gtk"
-   cd "$gtkdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${gtkdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i 
build.sh
-   sed -e "s/%%SRCDIR%%/${gtkdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta gtk2
-
-   msg2 'build qt'
-   qtdir="$srcdir/$pkgbase-qt"
-   cd "$qtdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${qtdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i build.sh
-   sed -e "s/%%SRCDIR%%/${qtdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta qt
-
-}
-
-package_doublecmd-gtk2() {
-   pkgdesc="twin-panel (commander-style) file manager (GTK)"
-   depends=('gtk2')
-   conflicts=('doublecmd-qt')
-   cd "$srcdir/$pkgbase-gtk"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-package_doublecmd-qt() {
-   pkgdesc="twin-panel (commander-style) file manager (QT)"
-   depends=('qt4pas')
-   conflicts=('doublecmd-gtk2')
-   cd "$srcdir/$pkgbase-qt"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-sha256sums=('db3ecdfc0bd857d314b021b5fd9361e613844346e86311405e1f1d9a7fa89b36'
-'d50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
-'16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')

Copied: doublecmd/repos/community-i686/PKGBUILD (from rev 143643, 
doublecmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 13:07:03 UTC (rev 143644)
@@ -0,0 +1,83 @@
+# vim:set ft=sh:
+# $Id$
+# Maintainer: BlackIkeEagle 
+# Contributor: (sirocco AT ngs.ru)
+
+pkgbase=doublecmd
+pkgname=('doublecmd-gtk2' 'doublecmd-qt')
+pkgver=0.6.6
+_helpver=0.6.0
+pkgrel=1
+url="http://doublecmd.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+install="$pkgbase.install"
+provides=("$pkgbase")
+makedepends=('lazarus' 

[arch-commits] Commit in lib32-flex (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:22:50
  Author: alucryd
Revision: 143655

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-flex/repos/
  lib32-flex/repos/multilib-x86_64/
  lib32-flex/repos/multilib-x86_64/PKGBUILD
(from rev 143654, lib32-flex/trunk/PKGBUILD)

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

Copied: lib32-flex/repos/multilib-x86_64/PKGBUILD (from rev 143654, 
lib32-flex/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:22:50 UTC (rev 143655)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Denommus 
+# Contributor: Bill Fraser 
+# Contributor: Felipe Contreras 
+
+pkgname=lib32-flex
+pkgver=2.5.39
+pkgrel=1
+pkgdesc='A tool for generating text-scanning programs'
+arch=('x86_64')
+url='http://flex.sourceforge.net'
+license=('custom')
+depends=('flex' 'lib32-glibc')
+source=("http://downloads.sourceforge.net/sourceforge/flex/flex-${pkgver}.tar.bz2;)
+sha256sums=('add2b55f3bc38cb512b48fad7d72f43b11ef244487ff25fc00aabec1e32b617f')
+
+build() {
+  cd flex-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+  make
+}
+
+package() {
+  cd flex-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s flex "${pkgdir}"/usr/share/licenses/lib32-flex
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-libtirpc (4 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:22:40
  Author: alucryd
Revision: 143654

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libtirpc/repos/
  lib32-libtirpc/repos/multilib-x86_64/
  lib32-libtirpc/repos/multilib-x86_64/PKGBUILD
(from rev 143653, lib32-libtirpc/trunk/PKGBUILD)
  lib32-libtirpc/repos/multilib-x86_64/fix_missing_rpc_get_default_domain.patch
(from rev 143653, 
lib32-libtirpc/trunk/fix_missing_rpc_get_default_domain.patch)

--+
 PKGBUILD |   53 +
 fix_missing_rpc_get_default_domain.patch |   88 +
 2 files changed, 141 insertions(+)

Copied: lib32-libtirpc/repos/multilib-x86_64/PKGBUILD (from rev 143653, 
lib32-libtirpc/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:22:40 UTC (rev 143654)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+# Contributor: Franco Tortoriello 
+# Contributor: josephgbr 
+
+pkgname=lib32-libtirpc
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='Transport Independent RPC library (SunRPC replacement)'
+arch=('x86_64')
+url='http://libtirpc.sourceforge.net/'
+license=('BSD')
+depends=('lib32-krb5' 'libtirpc')
+makedepends=('gcc-multilib')
+source=("http://downloads.sourceforge.net/sourceforge/libtirpc/libtirpc-${pkgver}.tar.bz2;
+'fix_missing_rpc_get_default_domain.patch')
+sha256sums=('2008a379f37f2c5d5a87a568b06707422cc3e4f5da305f7fb71f3f4c6d473ffc'
+'fb731fc2d6617e97ef87c6cc5b4bc95b8153d4e0a85f9a5a4b64d3dc94741c05')
+
+prepare() {
+  cd libtirpc-${pkgver}
+
+  patch -Np1 -i ../fix_missing_rpc_get_default_domain.patch
+}
+
+build() {
+  cd libtirpc-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sysconfdir='/etc'
+  make
+}
+
+package() {
+  cd libtirpc-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libtirpc "${pkgdir}"/usr/share/licenses/${pkgname}
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
lib32-libtirpc/repos/multilib-x86_64/fix_missing_rpc_get_default_domain.patch 
(from rev 143653, lib32-libtirpc/trunk/fix_missing_rpc_get_default_domain.patch)
===
--- repos/multilib-x86_64/fix_missing_rpc_get_default_domain.patch  
(rev 0)
+++ repos/multilib-x86_64/fix_missing_rpc_get_default_domain.patch  
2015-10-11 15:22:40 UTC (rev 143654)
@@ -0,0 +1,88 @@
+diff -Naur a/src/Makefile.am b/src/Makefile.am
+--- a/src/Makefile.am  2015-06-16 17:35:08.0 +0200
 b/src/Makefile.am  2015-06-17 21:23:05.185276962 +0200
+@@ -69,7 +69,7 @@
+ endif
+ 
+ libtirpc_la_SOURCES += key_call.c key_prot_xdr.c getpublickey.c
+-libtirpc_la_SOURCES += netname.c netnamer.c rtime.c
++libtirpc_la_SOURCES += netname.c netnamer.c rpcdname.c rtime.c
+ 
+ CLEANFILES   = cscope.* *~
+ DISTCLEANFILES   = Makefile.in
+diff -Naur a/src/rpcdname.c b/src/rpcdname.c
+--- a/src/rpcdname.c   1970-01-01 01:00:00.0 +0100
 b/src/rpcdname.c   2015-06-17 21:23:05.186276982 +0200
+@@ -0,0 +1,72 @@
++/*
++ * Copyright (c) 2009, Sun Microsystems, Inc.
++ * All rights reserved.
++ *
++ * Redistribution and use in source and binary forms, with or without
++ * modification, are permitted provided that the following conditions are met:
++ * - Redistributions of source code must retain the above copyright notice,
++ *   this list of conditions and the following disclaimer.
++ * - Redistributions in binary form must reproduce the above copyright notice,
++ *   this list of conditions and the following disclaimer in the documentation
++ *   and/or other materials provided with the distribution.
++ * - Neither the name of Sun Microsystems, Inc. nor the names of its
++ *   contributors may be used to endorse or promote products derived
++ *   from this software without specific prior written permission.
++ *
++ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
++ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
++ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
++ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
++ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
++ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 

[arch-commits] Commit in lib32-pam (6 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:23:01
  Author: alucryd
Revision: 143656

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pam/repos/
  lib32-pam/repos/multilib-x86_64/
  lib32-pam/repos/multilib-x86_64/PKGBUILD
(from rev 143655, lib32-pam/trunk/PKGBUILD)
  lib32-pam/repos/multilib-x86_64/pam-1.1.8-cve-2013-7041.patch
(from rev 143655, lib32-pam/trunk/pam-1.1.8-cve-2013-7041.patch)
  lib32-pam/repos/multilib-x86_64/pam-1.1.8-cve-2014-2583.patch
(from rev 143655, lib32-pam/trunk/pam-1.1.8-cve-2014-2583.patch)
  lib32-pam/repos/multilib-x86_64/pam_unix2-glibc216.patch
(from rev 143655, lib32-pam/trunk/pam_unix2-glibc216.patch)

---+
 PKGBUILD  |   75 
 pam-1.1.8-cve-2013-7041.patch |   52 +++
 pam-1.1.8-cve-2014-2583.patch |   56 +
 pam_unix2-glibc216.patch  |   20 ++
 4 files changed, 203 insertions(+)

Copied: lib32-pam/repos/multilib-x86_64/PKGBUILD (from rev 143655, 
lib32-pam/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:23:01 UTC (rev 143656)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: josephgbr 
+# Contributor: Janax 
+# Contributor: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=lib32-pam
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='PAM (Pluggable Authentication Modules)'
+arch=('x86_64')
+url='http://linux-pam.org'
+license=('GPL2')
+depends=('lib32-cracklib' 'lib32-libtirpc' 'pam')
+makedepends=('gcc-multilib' 'lib32-flex')
+source=("http://linux-pam.org/library/Linux-PAM-${pkgver}.tar.bz2;
+'https://sources.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2'
+'pam_unix2-glibc216.patch')
+sha256sums=('342b1211c0d3b203a7df2540a5b03a428a087bd8a48c17e49ae268f992b334d9'
+'3315747699fece4e1cc5771885d243b3e017c4c4ca1326e86228d590a840e955'
+'6644c5cff46878c65bdc77977becbeda392675702264bfcc7c610a45a9982574')
+options=('!emptydirs')
+
+prepare () {
+  cd pam_unix2-2.9.1
+
+  patch -Np1 -i ../pam_unix2-glibc216.patch
+}
+
+build() {
+  cd Linux-PAM-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sbindir='/usr/bin' \
+--disable-db
+  make
+
+  cd ../pam_unix2-2.9.1
+
+  export CFLAGS="$CFLAGS -I"${srcdir}"/Linux-PAM-${pkgver}/libpam/include/"
+  export LDFLAGS="$LDFLAGS -L"${srcdir}"/Linux-PAM-${pkgver}/libpam/.libs/"
+
+  ./configure --prefix='/usr' \
+  --libdir='/usr/lib32' \
+  --sbindir='/usr/bin'
+  make
+}
+
+package() {
+  cd Linux-PAM-${pkgver}
+
+  make DESTDIR="${pkgdir}" SCONFIGDIR='/etc/security' install
+  rm -rf "${pkgdir}"/{etc,usr/{include,share,bin}}
+
+  cd ../pam_unix2-2.9.1
+
+  install -m 644 src/pam_unix2.so "${pkgdir}"/usr/lib32/security/
+
+  cd "${pkgdir}"/usr/lib32/security
+
+  ln -s pam_unix.so pam_unix_acct.so
+  ln -s pam_unix.so pam_unix_auth.so
+  ln -s pam_unix.so pam_unix_passwd.so
+  ln -s pam_unix.so pam_unix_session.so
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-pam/repos/multilib-x86_64/pam-1.1.8-cve-2013-7041.patch (from rev 
143655, lib32-pam/trunk/pam-1.1.8-cve-2013-7041.patch)
===
--- repos/multilib-x86_64/pam-1.1.8-cve-2013-7041.patch 
(rev 0)
+++ repos/multilib-x86_64/pam-1.1.8-cve-2013-7041.patch 2015-10-11 15:23:01 UTC 
(rev 143656)
@@ -0,0 +1,52 @@
+From 57a1e2b274d0a6376d92ada9926e5c5741e7da20 Mon Sep 17 00:00:00 2001
+From: "Dmitry V. Levin" 
+Date: Fri, 24 Jan 2014 22:18:32 +
+Subject: [PATCH] pam_userdb: fix password hash comparison
+
+Starting with commit Linux-PAM-0-77-28-g0b3e583 that introduced hashed
+passwords support in pam_userdb, hashes are compared case-insensitively.
+This bug leads to accepting hashes for completely different passwords in
+addition to those that should be accepted.
+
+Additionally, commit Linux-PAM-1_1_6-13-ge2a8187 that added support for
+modern password hashes with different lengths and settings, did not
+update the hash comparison accordingly, which leads to accepting
+computed hashes longer than stored hashes when the latter is a prefix
+of the former.
+
+* modules/pam_userdb/pam_userdb.c (user_lookup): Reject the computed
+hash whose length differs from the stored hash length.
+Compare computed and stored hashes case-sensitively.
+Fixes CVE-2013-7041.
+
+Bug-Debian: http://bugs.debian.org/731368
+---
+ modules/pam_userdb/pam_userdb.c | 9 ++---
+ 1 file changed, 6 insertions(+), 3 deletions(-)
+

[arch-commits] Commit in lib32-at-spi2-atk (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:21:45
  Author: alucryd
Revision: 143649

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-at-spi2-atk/repos/
  lib32-at-spi2-atk/repos/multilib-x86_64/
  lib32-at-spi2-atk/repos/multilib-x86_64/PKGBUILD
(from rev 143648, lib32-at-spi2-atk/trunk/PKGBUILD)

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

Copied: lib32-at-spi2-atk/repos/multilib-x86_64/PKGBUILD (from rev 143648, 
lib32-at-spi2-atk/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:21:45 UTC (rev 143649)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor:Ionut Biru  
+
+pkgname=lib32-at-spi2-atk
+pkgver=2.18.0
+pkgrel=1
+pkgdesc='A GTK+ module that bridges ATK to D-Bus at-spi'
+arch=('x86_64')
+url='https://wiki.gnome.org/Accessibility'
+license=('GPL2')
+depends=('at-spi2-atk' 'lib32-at-spi2-core' 'lib32-atk')
+makedepends=('gcc-multilib' 'intltool')
+source=("http://download.gnome.org/sources/at-spi2-atk/${pkgver%.*}/at-spi2-atk-${pkgver}.tar.xz;)
+sha256sums=('4a6db33453b6efd15fa7d84ef2a3421262a053f57f1df6e7a2536d02bacdf375')
+
+prepare() {
+  cd at-spi2-atk-${pkgver}
+
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf -fi
+}
+
+build() {
+  cd at-spi2-atk-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sysconfdir='/etc' \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd at-spi2-atk-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,lib32/gnome-settings-daemon-3.0,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-js17 (4 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:22:11
  Author: alucryd
Revision: 143652

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-js17/repos/
  lib32-js17/repos/multilib-x86_64/
  lib32-js17/repos/multilib-x86_64/PKGBUILD
(from rev 143651, lib32-js17/trunk/PKGBUILD)
  lib32-js17/repos/multilib-x86_64/js17-perl-milestone.patch
(from rev 143651, lib32-js17/trunk/js17-perl-milestone.patch)

---+
 PKGBUILD  |   60 
 js17-perl-milestone.patch |   22 
 2 files changed, 82 insertions(+)

Copied: lib32-js17/repos/multilib-x86_64/PKGBUILD (from rev 143651, 
lib32-js17/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:22:11 UTC (rev 143652)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-js17
+pkgver=17.0.0
+pkgrel=4
+pkgdesc='JavaScript interpreter and libraries (legacy)'
+arch=('x86_64')
+url='https://developer.mozilla.org/En/SpiderMonkey/17'
+license=('MPL')
+depends=('gcc-libs-multilib' 'js17' 'lib32-nspr' 'lib32-readline')
+makedepends=('gcc-multilib' 'lib32-libffi' 'python2' 'zip')
+source=("http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${pkgver}.tar.gz;
+'js17-perl-milestone.patch')
+sha256sums=('321e964fe9386785d3bf80870640f2fa1c683e32fe988eeb201b04471c172fba'
+'c77994e0a89a33b1ad06f39b20bc605ee882a82cd373778f12eaa410c8db645f')
+
+prepare() {
+  cd mozjs${pkgver}
+
+  patch -Np1 -i ../js17-perl-milestone.patch
+}
+
+build() {
+  cd mozjs${pkgver}/js/src
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export RANLIB='ranlib'
+  export AR='ar'
+  export AS='as'
+  export LD='ld'
+  export STRIP='strip'
+
+  unset CPPFLAGS
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sbindir='/usr/bin' \
+--target='i686-pc-linux-gnu' \
+--enable-{readline,threadsafe} \
+--with-nspr-cflags="$(pkg-config --cflags nspr)" \
+--with-nspr-libs="$(pkg-config --libs nspr)" \
+--with-system-ffi
+  make
+}
+
+package() {
+  cd mozjs${pkgver}/js/src
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{bin,include,share}}
+  find "${pkgdir}"/usr/lib32/pkgconfig -type f -exec chmod -x {} +
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-js17/repos/multilib-x86_64/js17-perl-milestone.patch (from rev 
143651, lib32-js17/trunk/js17-perl-milestone.patch)
===
--- repos/multilib-x86_64/js17-perl-milestone.patch 
(rev 0)
+++ repos/multilib-x86_64/js17-perl-milestone.patch 2015-10-11 15:22:11 UTC 
(rev 143652)
@@ -0,0 +1,22 @@
+diff --git a/js/src/config/milestone.pl b/js/src/config/milestone.pl
+--- a/js/src/config/milestone.pl
 b/js/src/config/milestone.pl
+@@ -50,17 +50,17 @@ if (!defined($OBJDIR)) { $OBJDIR = '.'; 
+ $MILESTONE_FILE  = "$TOPSRCDIR/config/milestone.txt";
+ @MILESTONE_PARTS = (0, 0, 0, 0);
+ 
+ #
+ # Grab milestone (top line of $MILESTONE_FILE that starts with a digit)
+ #
+ my $milestone = Moz::Milestone::getOfficialMilestone($MILESTONE_FILE);
+ 
+-if (defined(@TEMPLATE_FILE)) {
++if (@TEMPLATE_FILE) {
+   my $TFILE;
+ 
+   foreach $TFILE (@TEMPLATE_FILE) {
+ my $BUILT_FILE = "$OBJDIR/$TFILE";
+ $TFILE = "$SRCDIR/$TFILE.tmpl";
+ 
+ if (-e $TFILE) {
+ 


[arch-commits] Commit in lib32-libgusb (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:22:03
  Author: alucryd
Revision: 143651

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libgusb/repos/
  lib32-libgusb/repos/multilib-x86_64/
  lib32-libgusb/repos/multilib-x86_64/PKGBUILD
(from rev 143650, lib32-libgusb/trunk/PKGBUILD)

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

Copied: lib32-libgusb/repos/multilib-x86_64/PKGBUILD (from rev 143650, 
lib32-libgusb/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:22:03 UTC (rev 143651)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: josephgbr 
+
+pkgname=lib32-libgusb
+pkgver=0.2.7
+pkgrel=1
+pkgdesc='GLib wrapper around libusb1'
+arch=('x86_64')
+url='https://gitorious.org/gusb/'
+license=('LGPL2.1')
+depends=('lib32-glib2' 'lib32-libusb' 'libgusb')
+makedepends=('gcc-multilib' 'gobject-introspection' 'python2')
+source=("http://people.freedesktop.org/~hughsient/releases/libgusb-${pkgver}.tar.xz;)
+sha256sums=('0be9578f7875cecb6c163ad47eb39bc6bf497e501b08986c0d384748a054c3ee')
+
+build() {
+  cd libgusb-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static
+  make
+}
+
+package() {
+  cd libgusb-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-cracklib (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:22:32
  Author: alucryd
Revision: 143653

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-cracklib/repos/
  lib32-cracklib/repos/multilib-x86_64/
  lib32-cracklib/repos/multilib-x86_64/PKGBUILD
(from rev 143652, lib32-cracklib/trunk/PKGBUILD)

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

Copied: lib32-cracklib/repos/multilib-x86_64/PKGBUILD (from rev 143652, 
lib32-cracklib/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:22:32 UTC (rev 143653)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: josephgbr 
+# Contributor: Tobias Powalowski 
+# Contributor: Federico Quagliata 
+
+pkgname=lib32-cracklib
+pkgver=2.9.4
+pkgrel=1
+pkgdesc='Password Checking Library'
+arch=('x86_64')
+url='http://sourceforge.net/projects/cracklib'
+license=('GPL')
+depends=('cracklib' 'lib32-zlib')
+makedepends=('gcc-multilib')
+source=("http://downloads.sourceforge.net/sourceforge/cracklib/cracklib-${pkgver}.tar.gz;)
+sha256sums=('f2a866b4b9808344228ea6d68b69e3ba9a8a99210e23dfd718d4b95c60be8958')
+
+build() {
+  cd cracklib-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sbindir='/usr/bin' \
+--without-python
+  make
+}
+
+package() {
+  cd cracklib-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,bin,share}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-at-spi2-core (3 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:21:35
  Author: alucryd
Revision: 143648

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-at-spi2-core/repos/
  lib32-at-spi2-core/repos/multilib-x86_64/
  lib32-at-spi2-core/repos/multilib-x86_64/PKGBUILD
(from rev 143647, lib32-at-spi2-core/trunk/PKGBUILD)

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

Copied: lib32-at-spi2-core/repos/multilib-x86_64/PKGBUILD (from rev 143647, 
lib32-at-spi2-core/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:21:35 UTC (rev 143648)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:m Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-at-spi2-core
+pkgver=2.18.0
+pkgrel=1
+pkgdesc='Protocol definitions and daemon for D-Bus at-spi'
+arch=('x86_64')
+url='http://www.gnome.org'
+license=('GPL2')
+depends=('at-spi2-core' 'lib32-glib2' 'lib32-libxtst')
+makedepends=('gcc-multilib' 'gobject-introspection' 'intltool')
+source=("http://download.gnome.org/sources/at-spi2-core/${pkgver%.*}/at-spi2-core-${pkgver}.tar.xz;)
+sha256sums=('1aeec77db6eb8087049af39a07f55756c55319f739d2998030fe6f4ced03ca76')
+
+prepare() {
+  cd at-spi2-core-${pkgver}
+
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf -fi
+}
+
+build() {
+  cd at-spi2-core-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32/at-spi2-core' \
+--sysconfdir='/etc' \
+--disable-xevie
+  make
+}
+
+package() {
+  cd at-spi2-core-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-dconf (4 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:21:53
  Author: alucryd
Revision: 143650

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-dconf/repos/
  lib32-dconf/repos/multilib-x86_64/
  lib32-dconf/repos/multilib-x86_64/PKGBUILD
(from rev 143649, lib32-dconf/trunk/PKGBUILD)
  lib32-dconf/repos/multilib-x86_64/dconf.install
(from rev 143649, lib32-dconf/trunk/dconf.install)

---+
 PKGBUILD  |   49 +
 dconf.install |   13 +
 2 files changed, 62 insertions(+)

Copied: lib32-dconf/repos/multilib-x86_64/PKGBUILD (from rev 143649, 
lib32-dconf/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2015-10-11 15:21:53 UTC (rev 143650)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Maintainer: jtts 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-dconf
+pkgver=0.24.0
+pkgrel=1
+pkgdesc='A low-level configuration system'
+arch=('x86_64')
+url='http://live.gnome.org/dconf'
+license=('LGPL2.1')
+depends=('dconf' 'lib32-glib2' 'lib32-libdbus')
+makedepends=('docbook-xsl' 'gcc-multilib' 'intltool' 'python2' 'vala')
+install='dconf.install'
+source=("http://download.gnome.org/sources/dconf/${pkgver%.*}/dconf-${pkgver}.tar.xz;)
+sha256sums=('4373e0ced1f4d7d68d518038796c073696280e22957babb29feb0267c630fec2')
+
+prepare() {
+  cd dconf-${pkgver}
+
+  sed 's/ editor//g' -i Makefile.in
+}
+
+build() {
+  cd dconf-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32/dconf' \
+--disable-editor \
+--disable-gtk-doc-html \
+--disable-man
+  make
+}
+
+package() {
+  cd dconf-${pkgver}
+
+  make completiondir='/usr/share/bash-completion/completions' 
DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-dconf/repos/multilib-x86_64/dconf.install (from rev 143649, 
lib32-dconf/trunk/dconf.install)
===
--- repos/multilib-x86_64/dconf.install (rev 0)
+++ repos/multilib-x86_64/dconf.install 2015-10-11 15:21:53 UTC (rev 143650)
@@ -0,0 +1,13 @@
+post_install() {
+  gio-querymodules-32 /usr/lib/gio/modules
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:36:53
  Author: fyan
Revision: 143674

archrelease: copy trunk to community-any

Added:
  python-keyring/repos/community-any/PKGBUILD
(from rev 143673, python-keyring/trunk/PKGBUILD)
Deleted:
  python-keyring/repos/community-any/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 15:36:33 UTC (rev 143673)
+++ PKGBUILD2015-10-11 15:36:53 UTC (rev 143674)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgbase=python-keyring
-pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.4
-pkgrel=2
-pkgdesc="Store and access your passwords safely."
-arch=('any')
-url="http://pypi.python.org/pypi/keyring;
-license=('PSF' 'MIT')
-source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
-makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
-  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
-  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('ed60cc006c1bc629bf92e100cca952ea')
-
-prepare() {
-  cp -a keyring-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Not using ptr because we are not packaging keyczar
-
-  cd "$srcdir/keyring-$pkgver"
-  py.test
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  py.test2
-}
-
-package_python-keyring() {
-  depends=('python-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python-gobject: Gnome integration'
-'kdebindings-python: Kde integration'
-'python-crypto: CLI keyring'
-'python-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-keyring() {
-  depends=('python2-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python2-gobject: Gnome integration'
-'kdebindings-python2: Kde integration'
-'python2-crypto: CLI keyring'
-'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  mv "$pkgdir"/usr/bin/keyring{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-any/PKGBUILD (from rev 143673, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-11 15:36:53 UTC (rev 143674)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=5.5
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
+  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
+  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
+md5sums=('01c497ed8795a19d4590b327bcc386e1')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Not using ptr because we are not packaging keyczar
+
+  cd "$srcdir/keyring-$pkgver"
+  py.test
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  py.test2
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+'python-gobject: Gnome integration'
+'kdebindings-python: Kde integration'
+'python-crypto: CLI keyring'
+'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd "$srcdir/keyring-$pkgver"

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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:36:33
  Author: fyan
Revision: 143673

upgpkg: python-keyring 5.5-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 15:34:38 UTC (rev 143672)
+++ PKGBUILD2015-10-11 15:36:33 UTC (rev 143673)
@@ -8,8 +8,8 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.4
-pkgrel=2
+pkgver=5.5
+pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
 url="http://pypi.python.org/pypi/keyring;
@@ -19,7 +19,7 @@
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
   'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
   'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('ed60cc006c1bc629bf92e100cca952ea')
+md5sums=('01c497ed8795a19d4590b327bcc386e1')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}


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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:36:55
  Author: alucryd
Revision: 248884

db-move: moved ffmpeg from [testing] to [extra] (i686, x86_64)

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:36:54 UTC (rev 248883)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:55 UTC (rev 248884)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Maintainer:  Bartłomiej Piotrowski 
-# Maintainer:  Maxime Gauduin 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=2.8
-pkgrel=1
-epoch=1
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL3')
-depends=(
-  'alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame' 'libass'
-  'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh' 'libtheora'
-  'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg' 'opus'
-  'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
-  'libvorbis.so' 'libvorbisenc.so' 'libvpx.so' 'libx264.so' 'libx265.so'
-)
-makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'yasm')
-optdepends=('ladspa: LADSPA filters')
-provides=(
-  'libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
-  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
-  'libswscale.so'
-)
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
-md5sums=('5eb3839e23c9ca396fabd0ebbe293ea2'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-avisynth \
---enable-avresample \
---enable-fontconfig \
---enable-gnutls \
---enable-gpl \
---enable-ladspa \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-libschroedinger \
---enable-libsoxr \
---enable-libspeex \
---enable-libssh \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvorbis \
---enable-libvpx \
---enable-libwebp \
---enable-libx264 \
---enable-libx265 \
---enable-libxvid \
---enable-shared \
---enable-version3 \
---enable-x11grab \
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install install-man
-  install -Dm755 tools/qt-faststart "$pkgdir"/usr/bin/qt-faststart
-}

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 248883, 
ffmpeg/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:55 UTC (rev 248884)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer:  Maxime Gauduin 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=2.8
+pkgrel=2
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL3')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame' 'libass'
+  'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh' 'libtheora'
+  'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg' 'opus'
+  'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
+  'libvorbis.so' 'libvorbisenc.so' 'libvpx.so' 'libx264.so' 'libx265.so'
+)
+makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'yasm')
+optdepends=('ladspa: LADSPA filters')
+provides=(
+  'libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
+  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
+  'libswscale.so'
+)

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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:36:54
  Author: alucryd
Revision: 248883

db-move: moved x265 from [testing] to [extra] (i686, x86_64)

Added:
  x265/repos/extra-i686/PKGBUILD
(from rev 248882, x265/repos/testing-i686/PKGBUILD)
  x265/repos/extra-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch
(from rev 248882, 
x265/repos/testing-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch)
  x265/repos/extra-x86_64/PKGBUILD
(from rev 248882, x265/repos/testing-x86_64/PKGBUILD)
  x265/repos/extra-x86_64/x265-1.7-fix-slowness-with-gcc-5.1.patch
(from rev 248882, 
x265/repos/testing-x86_64/x265-1.7-fix-slowness-with-gcc-5.1.patch)
Deleted:
  x265/repos/extra-i686/PKGBUILD
  x265/repos/extra-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch
  x265/repos/extra-x86_64/PKGBUILD
  x265/repos/extra-x86_64/x265-1.7-fix-slowness-with-gcc-5.1.patch
  x265/repos/testing-i686/
  x265/repos/testing-x86_64/

---+
 /PKGBUILD |  170 
 /x265-1.7-fix-slowness-with-gcc-5.1.patch |   56 +
 extra-i686/PKGBUILD   |   35 ---
 extra-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch   |   28 --
 extra-x86_64/PKGBUILD |   35 ---
 extra-x86_64/x265-1.7-fix-slowness-with-gcc-5.1.patch |   28 --
 6 files changed, 226 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:14:39 UTC (rev 248882)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:54 UTC (rev 248883)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: kfgz 
-
-pkgname=x265
-pkgver=1.7
-pkgrel=2
-pkgdesc='Open Source H265/HEVC video encoder'
-arch=('i686' 'x86_64')
-url='https://bitbucket.org/multicoreware/x265'
-license=('GPL')
-depends=('gcc-libs')
-makedepends=('yasm' 'cmake')
-provides=('libx265.so')
-source=($pkgname-$pkgver.tar.bz2::$url/get/$pkgver.tar.bz2
-x265-1.7-fix-slowness-with-gcc-5.1.patch)
-md5sums=('d6020c277b05ab44f8222342aaa9c99f'
- '30c7fc491f22cbdec1ee17caab7d620a')
-
-prepare() {
-  cd multicoreware-x265-*
-  patch -p1 -i "$srcdir"/x265-1.7-fix-slowness-with-gcc-5.1.patch
-}
-
-build() {
-  cd multicoreware-x265-*/build/linux
-  [[ $CARCH == x86_64 ]] && LDFLAGS+=',-z,noexecstack'
-  cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr ../../source
-  make
-}
-
-package() {
-  cd multicoreware-x265-*/build/linux
-  make DESTDIR="$pkgdir" install
-}

Copied: x265/repos/extra-i686/PKGBUILD (from rev 248882, 
x265/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:54 UTC (rev 248883)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Maxime Gauduin 
+# Contributor: kfgz 
+
+pkgname=x265
+pkgver=1.8
+pkgrel=1
+pkgdesc='Open Source H265/HEVC video encoder'
+arch=('i686' 'x86_64')
+url='https://bitbucket.org/multicoreware/x265'
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('yasm' 'cmake')
+provides=('libx265.so')
+source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz;)
+md5sums=('8b7ef9bc0b5bd26965d05a4508effeed')
+
+prepare() {
+  cd x265_11047
+
+  for d in 8 $([[ $CARCH == 'x86_64' ]] && echo "10 12"); do
+if [[ -d build-$d ]]; then
+  rm -rf build-$d
+fi
+mkdir build-$d
+  done
+}
+
+build() {
+  if [[ $CARCH == x86_64 ]]; then
+
+cd x265_11047/build-12
+
+cmake ../source \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DHIGH_BIT_DEPTH='TRUE' \
+  -DMAIN12='TRUE' \
+  -DEXPORT_C_API='FALSE' \
+  -DENABLE_CLI='FALSE' \
+  -DENABLE_SHARED='FALSE'
+make
+
+cd ../build-10
+
+cmake ../source \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DHIGH_BIT_DEPTH='TRUE' \
+  -DEXPORT_C_API='FALSE' \
+  -DENABLE_CLI='FALSE' \
+  -DENABLE_SHARED='FALSE'
+make
+
+cd ../build-8
+
+ln -s ../build-10/libx265.a libx265_main10.a
+ln -s ../build-12/libx265.a libx265_main12.a
+
+cmake ../source \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DENABLE_SHARED='TRUE' \
+  -DEXTRA_LIB='x265_main10.a;x265_main12.a' \
+  -DEXTRA_LINK_FLAGS='-L.' \
+  -DLINKED_10BIT='TRUE' \
+  -DLINKED_12BIT='TRUE'
+make
+
+  else
+
+cd x265_11047/build-8
+
+cmake ../source \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DENABLE_SHARED='TRUE'
+
+  fi
+}
+
+package() {
+  cd x265_11047/build-8
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch
===
--- extra-i686/x265-1.7-fix-slowness-with-gcc-5.1.patch 2015-10-11 12:14:39 

[arch-commits] Commit in vlc/repos (14 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:36:57
  Author: alucryd
Revision: 248885

db-move: moved vlc from [testing] to [extra] (i686, x86_64)

Added:
  vlc/repos/extra-i686/PKGBUILD
(from rev 248884, vlc/repos/testing-i686/PKGBUILD)
  vlc/repos/extra-i686/lua53_compat.patch
(from rev 248884, vlc/repos/testing-i686/lua53_compat.patch)
  vlc/repos/extra-i686/vlc.install
(from rev 248884, vlc/repos/testing-i686/vlc.install)
  vlc/repos/extra-x86_64/PKGBUILD
(from rev 248884, vlc/repos/testing-x86_64/PKGBUILD)
  vlc/repos/extra-x86_64/lua53_compat.patch
(from rev 248884, vlc/repos/testing-x86_64/lua53_compat.patch)
  vlc/repos/extra-x86_64/vlc.install
(from rev 248884, vlc/repos/testing-x86_64/vlc.install)
Deleted:
  vlc/repos/extra-i686/PKGBUILD
  vlc/repos/extra-i686/lua53_compat.patch
  vlc/repos/extra-i686/vlc.install
  vlc/repos/extra-x86_64/PKGBUILD
  vlc/repos/extra-x86_64/lua53_compat.patch
  vlc/repos/extra-x86_64/vlc.install
  vlc/repos/testing-i686/
  vlc/repos/testing-x86_64/

-+
 /PKGBUILD   |  212 ++
 /lua53_compat.patch |   60 ++
 /vlc.install|   36 ++
 extra-i686/PKGBUILD |  106 ---
 extra-i686/lua53_compat.patch   |   30 -
 extra-i686/vlc.install  |   18 ---
 extra-x86_64/PKGBUILD   |  106 ---
 extra-x86_64/lua53_compat.patch |   30 -
 extra-x86_64/vlc.install|   18 ---
 9 files changed, 308 insertions(+), 308 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:36:55 UTC (rev 248884)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:57 UTC (rev 248885)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Sarah Hay 
-# Contributor: Martin Sandsmark 
-
-pkgname=vlc
-pkgver=2.2.1
-pkgrel=7
-pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player"
-arch=('i686' 'x86_64')
-url="http://www.videolan.org/vlc/;
-license=('LGPL2.1' 'GPL2')
-depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt4' 'libproxy'
- 'sdl_image' 'libdvdnav' 'libtiger' 'lua' 'libmatroska'
- 'zvbi' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp'
- 'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms' 'libtar'
- 'libxinerama')
-makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'kdelibs'
- 'libdc1394' 'libavc1394' 'lirc' 'libcaca' 'gtk2'
- 'librsvg' 'portaudio' 'libgme' 'xosd' 'projectm'
- 'twolame' 'aalib' 'libmtp' 'libdvdcss' 'gnome-vfs'
- 'libgoom2' 'vcdimager' 'opus' 'libssh2' 'mesa')
-optdepends=('avahi: for service discovery using bonjour protocol'
-'libnotify: for notification plugin'
-'gtk2: for notify plugin'
-'ncurses: for ncurses interface support'
-'libdvdcss: for decoding encrypted DVDs'
-'lirc: for lirc plugin'
-'libavc1394: for devices using the 1394ta AV/C'
-'libdc1394: for IEEE 1394 plugin'
-'kdelibs: KDE Solid hardware integration'
-'libva-vdpau-driver: vdpau back-end for nvidia'
-'libva-intel-driver: back-end for intel cards'
-'libbluray: for Blu-Ray support'
-'flac: for Free Lossless Audio Codec plugin'
-'portaudio: for portaudio support'
-'twolame: for TwoLAME mpeg2 encoder plugin'
-'projectm: for ProjectM visualisation plugin'
-'libcaca: for colored ASCII art video output'
-'libgme: for libgme plugin'
-'librsvg: for SVG plugin'
-'gnome-vfs: for GNOME Virtual File System support'
-'libgoom2: for libgoom plugin'
-'vcdimager: navigate VCD with libvcdinfo'
-'aalib: for ASCII art plugin'
-'libmtp: for MTP devices support'
-'smbclient: for SMB access plugin'
-'libcdio: for audio CD playback support'
-'ttf-freefont: for subtitle font '
-'ttf-dejavu: for subtitle font'
-'opus: for opus support'
-'libssh2: for sftp support'
-'lua-socket: for http interface')
-conflicts=('vlc-plugin')
-replaces=('vlc-plugin')
-backup=('usr/share/vlc/lua/http/.hosts'
-'usr/share/vlc/lua/http/dialogs/.hosts')
-options=('!emptydirs')
-install=vlc.install
-source=("http://download.videolan.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;
-"lua53_compat.patch")
-md5sums=('42273945758b521c408fabc7fd6d9946'
- '96d3b346d9149ffb1b430066dfb6249a')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c
-  sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp
-
-  patch -p1 < 

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:36:58
  Author: alucryd
Revision: 248886

db-move: moved gst-plugins-bad from [testing] to [extra] (i686, x86_64)

Added:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
(from rev 248885, gst-plugins-bad/repos/testing-i686/PKGBUILD)
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
(from rev 248885, gst-plugins-bad/repos/testing-x86_64/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
  gst-plugins-bad/repos/testing-i686/
  gst-plugins-bad/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:36:57 UTC (rev 248885)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:58 UTC (rev 248886)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Bad Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
- 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49')
-
-prepare() {
-  cd $pkgname-$pkgver
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Bad Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/; \
---with-gtk=3.0
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # don't have a camera for the camerabin test
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-plugins-bad/repos/extra-i686/PKGBUILD (from rev 248885, 
gst-plugins-bad/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:58 UTC (rev 248886)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-10-11 12:36:57 UTC (rev 248885)
+++ extra-x86_64/PKGBUILD   2015-10-11 12:36:58 UTC (rev 248886)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.6.0

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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 16:14:57
  Author: alucryd
Revision: 248892

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

Added:
  mkvtoolnix/repos/extra-i686/PKGBUILD
(from rev 248891, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/extra-i686/mkvtoolnix-gui.install
(from rev 248891, mkvtoolnix/trunk/mkvtoolnix-gui.install)
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 248891, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix-gui.install
(from rev 248891, mkvtoolnix/trunk/mkvtoolnix-gui.install)
Deleted:
  mkvtoolnix/repos/extra-i686/PKGBUILD
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install

-+
 /PKGBUILD   |  122 ++
 extra-i686/PKGBUILD |  102 
 extra-i686/mkvtoolnix-gui.install   |   15 
 extra-i686/mkvtoolnix.install   |   15 
 extra-x86_64/PKGBUILD   |  102 
 extra-x86_64/mkvtoolnix-gui.install |   15 
 extra-x86_64/mkvtoolnix.install |   15 
 7 files changed, 152 insertions(+), 234 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 14:14:38 UTC (rev 248891)
+++ extra-i686/PKGBUILD 2015-10-11 14:14:57 UTC (rev 248892)
@@ -1,102 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=8.4.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo' 'xdg-utils' 'boost' 'ruby')
-source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
-md5sums=('773eb42b7887bd20c4ce65cdf667976b')
-
-prepare() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Disable automagic curl dep used for online update checking
-  #sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS="" CURL_LIBS=""
-
-  export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-  export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-
-  # Sets number of threads for a parallel build
-  export DRAKETHREADS=4
-
-  autoreconf -vfi
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # XXX: Temporary define to build against boost 1.58
-  # https://github.com/mbunkus/mkvtoolnix/issues/1172
-  CXXFLAGS+=' -DBOOST_CODECVT_DO_LENGTH_CONST=const'
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --without-curl \
-  --disable-gui
-  ./drake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --without-curl
-
-  ./drake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - CLI 
version"
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  ./drake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-
-  rm -rf "${pkgdir}"/usr/bin/mmg
-  rm -rf "${pkgdir}"/usr/share/man/de/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/es/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/applications
-  rm -rf "${pkgdir}"/usr/share/icons
-  rm -rf "${pkgdir}"/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - wxGTK GUI"
-  depends=("mkvtoolnix-cli=${pkgver}" 'wxgtk' 'xdg-utils' 'desktop-file-utils')
-  install=mkvtoolnix.install
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  ./drake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkv*
-  install -Dm755 src/mkvinfo "${pkgdir}"/usr/bin/mkvinfo-gtk
-  #sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
"${pkgdir}"/usr/share/applications/mkvinfo.desktop
-
-  rm -rf "${pkgdir}"/usr/share/doc
-  rm -rf "${pkgdir}"/usr/share/locale
-  rm -rf "${pkgdir}"/usr/share/man/de/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/es/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 248891, 
mkvtoolnix/trunk/PKGBUILD)

[arch-commits] Commit in wine-staging/repos/multilib-x86_64 (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:58:02
  Author: fyan
Revision: 143682

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 143681, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 143681, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/multilib-x86_64/wine.install
(from rev 143681, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD
  wine-staging/repos/multilib-x86_64/wine.install

--+
 PKGBUILD |  386 -
 wine.install |   24 +--
 2 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
143681, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 15:52:20 UTC (rev 143681)
+++ PKGBUILD2015-10-11 15:58:02 UTC (rev 143682)
@@ -1,193 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.7.52
-pkgrel=2
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$pkgver.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('843245d4736db4ad1449f00d747a2f7912680c59'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  attrlib32-attr
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libldap lib32-libldap
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libpulselib32-libpulse
-  libva   lib32-libva
-  gtk3lib32-gtk3
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  ncurses lib32-ncurses
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libva   lib32-libva
-  gtk3lib32-gtk3
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  cd wine-patched-staging-$pkgver
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i configure*
-}
-
-build() {
-  cd "$srcdir"
-
-  # remove once https://bugs.winehq.org/show_bug.cgi?id=38653 is resolved
-  export CFLAGS="${CFLAGS/-O2/} -O0"
-  export CXXFLAGS="${CXXFLAGS/-O2/} -O0"
-
-  # Allow ccache to work
-  mv wine-patched-staging-$pkgver $pkgname
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  

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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:04:04
  Author: fyan
Revision: 143683

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

Added:
  haskell-cereal/repos/community-x86_64/
  haskell-cereal/repos/community-x86_64/PKGBUILD
(from rev 143682, haskell-cereal/trunk/PKGBUILD)
  haskell-cereal/repos/community-x86_64/haskell-cereal.install
(from rev 143682, haskell-cereal/trunk/haskell-cereal.install)

+
 PKGBUILD   |   43 +++
 haskell-cereal.install |   18 ++
 2 files changed, 61 insertions(+)

Copied: haskell-cereal/repos/community-x86_64/PKGBUILD (from rev 143682, 
haskell-cereal/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:04:04 UTC (rev 143683)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cereal
+pkgname=haskell-cereal
+pkgver=0.4.1.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df047216179ba3817134e32c73ef9e3b5dddbd4efff604f50ca0ca0c93753097')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-cereal/repos/community-x86_64/haskell-cereal.install (from rev 
143682, haskell-cereal/trunk/haskell-cereal.install)
===
--- community-x86_64/haskell-cereal.install (rev 0)
+++ community-x86_64/haskell-cereal.install 2015-10-11 16:04:04 UTC (rev 
143683)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cereal
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:04:44
  Author: fyan
Revision: 143685

archrelease: copy trunk to community-any

Added:
  python-keyring/repos/community-any/PKGBUILD
(from rev 143684, python-keyring/trunk/PKGBUILD)
Deleted:
  python-keyring/repos/community-any/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 16:04:22 UTC (rev 143684)
+++ PKGBUILD2015-10-11 16:04:44 UTC (rev 143685)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgbase=python-keyring
-pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.5.1
-pkgrel=1
-pkgdesc="Store and access your passwords safely."
-arch=('any')
-url="http://pypi.python.org/pypi/keyring;
-license=('PSF' 'MIT')
-source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
-makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
-  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
-  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('828dcf21200760faa0cc00e2c5b5b14c')
-
-prepare() {
-  cp -a keyring-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Not using ptr because we are not packaging keyczar
-
-  cd "$srcdir/keyring-$pkgver"
-  py.test
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  py.test2
-}
-
-package_python-keyring() {
-  depends=('python-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python-gobject: Gnome integration'
-'kdebindings-python: Kde integration'
-'python-crypto: CLI keyring'
-'python-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-keyring() {
-  depends=('python2-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-'python2-gobject: Gnome integration'
-'kdebindings-python2: Kde integration'
-'python2-crypto: CLI keyring'
-'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  mv "$pkgdir"/usr/bin/keyring{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-any/PKGBUILD (from rev 143684, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-11 16:04:44 UTC (rev 143685)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=5.6
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
+  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
+  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
+md5sums=('2e90c26dfabcf19414913123976f1acc')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Not using ptr because we are not packaging keyczar
+
+  cd "$srcdir/keyring-$pkgver"
+  py.test
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  py.test2
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+'python-gobject: Gnome integration'
+'kdebindings-python: Kde integration'
+'python-crypto: CLI keyring'
+'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd 

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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:04:22
  Author: fyan
Revision: 143684

upgpkg: python-keyring 5.6-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 16:04:04 UTC (rev 143683)
+++ PKGBUILD2015-10-11 16:04:22 UTC (rev 143684)
@@ -8,7 +8,7 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=5.5.1
+pkgver=5.6
 pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
@@ -19,7 +19,7 @@
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
   'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
   'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
-md5sums=('828dcf21200760faa0cc00e2c5b5b14c')
+md5sums=('2e90c26dfabcf19414913123976f1acc')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}


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

2015-10-11 Thread Andreas Radke
Date: Sunday, October 11, 2015 @ 14:14:19
  Author: andyrtr
Revision: 248881

prepare next release

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:06:33 UTC (rev 248880)
+++ PKGBUILD2015-10-11 12:14:19 UTC (rev 248881)
@@ -3,7 +3,7 @@
 
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
-pkgver=0.36.0
+pkgver=0.37.0
 pkgrel=1
 arch=(i686 x86_64)
 license=('GPL')
@@ -12,7 +12,7 @@
 url="http://poppler.freedesktop.org/;
 source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
 git://anongit.freedesktop.org/poppler/test)
-md5sums=('9f72a76e6ca899dd81b03537c4ce3680'
+md5sums=('c635e1742202cbbd9182cb0255d95652'
  'SKIP')
 
 build() {


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

2015-10-11 Thread Andreas Radke
Date: Sunday, October 11, 2015 @ 14:14:39
  Author: andyrtr
Revision: 248882

prepare next release

Modified:
  icu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 12:14:19 UTC (rev 248881)
+++ PKGBUILD2015-10-11 12:14:39 UTC (rev 248882)
@@ -3,7 +3,7 @@
 # Contributor: Art Gramlich 
 
 pkgname=icu
-pkgver=55.1
+pkgver=56.1
 pkgrel=1
 pkgdesc="International Components for Unicode library"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 
source=(#http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver/./_}-src.tgz

http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver//./_}-src.tgz
icu.8198.revert.icu5431.patch)
-md5sums=('e2d523df79d6cb7855c2fbe284f4db29'
+md5sums=('c4a2d71ff56aec5ebfab2a3f059be99d'
  'ebd5470fc969c75e52baf4af94a9ee82')
 
 prepare() {


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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:38:44
  Author: alucryd
Revision: 143642

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

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

+
 /PKGBUILD  |   74 +++
 /plank.install |   30 +++
 community-i686/PKGBUILD|   37 ---
 community-i686/plank.install   |   15 ---
 community-x86_64/PKGBUILD  |   37 ---
 community-x86_64/plank.install |   15 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-11 12:38:26 UTC (rev 143641)
+++ community-i686/PKGBUILD 2015-10-11 12:38:44 UTC (rev 143642)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-# Contributor: dcelasun 
-
-pkgname=plank
-pkgver=0.10.0
-pkgrel=1
-pkgdesc='Elegant, simple, clean dock'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/plank'
-license=('GPL3')
-depends=('atk' 'bamf' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
- 'libdbusmenu-glib' 'libdbusmenu-gtk3' 'libgee' 'libwnck3' 'libx11'
- 'libxfixes' 'libxi' 'pango')
-makedepends=('gnome-common' 'intltool' 'vala')
-install='plank.install'
-source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz;)
-sha256sums=('4023eaa59cca3ee35032c23c2b011e1cabac812b8828af9ca55e6aaa084ad203')
-
-build() {
-  cd plank-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---sysconfdir='/etc' \
---disable-apport
-  make
-}
-
-package() {
-  cd plank-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: plank/repos/community-i686/PKGBUILD (from rev 143641, 
plank/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 12:38:44 UTC (rev 143642)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+# Contributor: dcelasun 
+
+pkgname=plank
+pkgver=0.10.1
+pkgrel=1
+pkgdesc='Elegant, simple, clean dock'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/plank'
+license=('GPL3')
+depends=('atk' 'bamf' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3'
+ 'libdbusmenu-glib' 'libdbusmenu-gtk3' 'libgee' 'libwnck3' 'libx11'
+ 'libxfixes' 'libxi' 'pango')
+makedepends=('gnome-common' 'intltool' 'vala')
+install='plank.install'
+source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz;)
+sha256sums=('04cf4205fb7fce035bf537395fbfc3cf79aea9692fb4186345fe6a06ce2ebf36')
+
+build() {
+  cd plank-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--sysconfdir='/etc' \
+--disable-apport
+  make
+}
+
+package() {
+  cd plank-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/plank.install
===
--- community-i686/plank.install2015-10-11 12:38:26 UTC (rev 143641)
+++ community-i686/plank.install2015-10-11 12:38:44 UTC (rev 143642)
@@ -1,15 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: plank/repos/community-i686/plank.install (from rev 143641, 
plank/trunk/plank.install)
===
--- community-i686/plank.install(rev 0)
+++ community-i686/plank.install2015-10-11 12:38:44 UTC (rev 143642)
@@ -0,0 +1,15 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-11 12:38:26 UTC (rev 143641)
+++ community-x86_64/PKGBUILD   2015-10-11 12:38:44 UTC (rev 143642)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-# Contributor: 

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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:38:26
  Author: alucryd
Revision: 143641

upgpkg: plank 0.10.1-1

Modified:
  plank/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 10:54:46 UTC (rev 143640)
+++ PKGBUILD2015-10-11 12:38:26 UTC (rev 143641)
@@ -4,7 +4,7 @@
 # Contributor: dcelasun 
 
 pkgname=plank
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc='Elegant, simple, clean dock'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 makedepends=('gnome-common' 'intltool' 'vala')
 install='plank.install'
 
source=("https://launchpad.net/plank/1.0/${pkgver}/+download/plank-${pkgver}.tar.xz;)
-sha256sums=('4023eaa59cca3ee35032c23c2b011e1cabac812b8828af9ca55e6aaa084ad203')
+sha256sums=('04cf4205fb7fce035bf537395fbfc3cf79aea9692fb4186345fe6a06ce2ebf36')
 
 build() {
   cd plank-${pkgver}


[arch-commits] Commit in (68 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:20:49
  Author: alucryd
Revision: 143647

Add lib32-gtk3 and deps

Added:
  lib32-at-spi2-atk/
  lib32-at-spi2-atk/trunk/
  lib32-at-spi2-atk/trunk/PKGBUILD
  lib32-at-spi2-core/
  lib32-at-spi2-core/trunk/
  lib32-at-spi2-core/trunk/PKGBUILD
  lib32-colord/
  lib32-colord/trunk/
  lib32-colord/trunk/PKGBUILD
  lib32-cracklib/
  lib32-cracklib/trunk/
  lib32-cracklib/trunk/PKGBUILD
  lib32-dconf/
  lib32-dconf/trunk/
  lib32-dconf/trunk/PKGBUILD
  lib32-dconf/trunk/dconf.install
  lib32-flex/
  lib32-flex/trunk/
  lib32-flex/trunk/PKGBUILD
  lib32-glib-networking/
  lib32-glib-networking/trunk/
  lib32-glib-networking/trunk/PKGBUILD
  lib32-glib-networking/trunk/glib-networking.install
  lib32-gtk3/
  lib32-gtk3/trunk/
  lib32-gtk3/trunk/PKGBUILD
  lib32-gtk3/trunk/gtk3.install
  lib32-js17/
  lib32-js17/trunk/
  lib32-js17/trunk/PKGBUILD
  lib32-js17/trunk/js17-perl-milestone.patch
  lib32-json-glib/
  lib32-json-glib/trunk/
  lib32-json-glib/trunk/PKGBUILD
  lib32-libepoxy/
  lib32-libepoxy/trunk/
  lib32-libepoxy/trunk/PKGBUILD
  lib32-libgudev/
  lib32-libgudev/trunk/
  lib32-libgudev/trunk/PKGBUILD
  lib32-libgusb/
  lib32-libgusb/trunk/
  lib32-libgusb/trunk/PKGBUILD
  lib32-libproxy/
  lib32-libproxy/trunk/
  lib32-libproxy/trunk/PKGBUILD
  lib32-libsoup/
  lib32-libsoup/trunk/
  lib32-libsoup/trunk/PKGBUILD
  lib32-libtirpc/
  lib32-libtirpc/trunk/
  lib32-libtirpc/trunk/PKGBUILD
  lib32-libtirpc/trunk/fix_missing_rpc_get_default_domain.patch
  lib32-libxkbcommon/
  lib32-libxkbcommon/trunk/
  lib32-libxkbcommon/trunk/PKGBUILD
  lib32-pam/
  lib32-pam/trunk/
  lib32-pam/trunk/PKGBUILD
  lib32-pam/trunk/pam-1.1.8-cve-2013-7041.patch
  lib32-pam/trunk/pam-1.1.8-cve-2014-2583.patch
  lib32-pam/trunk/pam_unix2-glibc216.patch
  lib32-polkit/
  lib32-polkit/trunk/
  lib32-polkit/trunk/PKGBUILD
  lib32-rest/
  lib32-rest/trunk/
  lib32-rest/trunk/PKGBUILD

---+
 lib32-at-spi2-atk/trunk/PKGBUILD  |   47 +
 lib32-at-spi2-core/trunk/PKGBUILD |   48 +
 lib32-colord/trunk/PKGBUILD   |   51 +
 lib32-cracklib/trunk/PKGBUILD |   42 
 lib32-dconf/trunk/PKGBUILD|   49 +
 lib32-dconf/trunk/dconf.install   |   13 +
 lib32-flex/trunk/PKGBUILD |   41 
 lib32-glib-networking/trunk/PKGBUILD  |   42 
 lib32-glib-networking/trunk/glib-networking.install   |   13 +
 lib32-gtk3/trunk/PKGBUILD |   50 +
 lib32-gtk3/trunk/gtk3.install |   13 +
 lib32-js17/trunk/PKGBUILD |   60 ++
 lib32-js17/trunk/js17-perl-milestone.patch|   22 ++
 lib32-json-glib/trunk/PKGBUILD|   37 
 lib32-libepoxy/trunk/PKGBUILD |   39 
 lib32-libgudev/trunk/PKGBUILD |   42 
 lib32-libgusb/trunk/PKGBUILD  |   39 
 lib32-libproxy/trunk/PKGBUILD |   50 +
 lib32-libsoup/trunk/PKGBUILD  |   43 
 lib32-libtirpc/trunk/PKGBUILD |   53 ++
 lib32-libtirpc/trunk/fix_missing_rpc_get_default_domain.patch |   88 ++
 lib32-libxkbcommon/trunk/PKGBUILD |   64 +++
 lib32-pam/trunk/PKGBUILD  |   75 
 lib32-pam/trunk/pam-1.1.8-cve-2013-7041.patch |   52 +
 lib32-pam/trunk/pam-1.1.8-cve-2014-2583.patch |   56 ++
 lib32-pam/trunk/pam_unix2-glibc216.patch  |   20 ++
 lib32-polkit/trunk/PKGBUILD   |   49 +
 lib32-rest/trunk/PKGBUILD |   38 
 28 files changed, 1236 insertions(+)

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


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

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 17:26:24
  Author: alucryd
Revision: 143669

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 15:26:16 UTC (rev 143668)
+++ PKGBUILD2015-10-11 15:26:24 UTC (rev 143669)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Laurent Carlier 
-
-pkgname=lib32-libepoxy
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='A library for handling OpenGL function pointer management for you'
-arch=('i686' 'x86_64')
-url='https://github.com/anholt/libepoxy'
-license=('MIT')
-depends=('lib32-glibc')
-makedepends=('gcc-multilib' 'lib32-libgl' 'python' 'xorg-util-macros')
-source=("https://github.com/anholt/libepoxy/releases/download/v${pkgver}/libepoxy-${pkgver}.tar.bz2;)
-sha256sums=('1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64')
-
-build() {
-  cd libepoxy-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='/bin/false'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32'
-}
-
-package() {
-  cd libepoxy-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/include
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libepoxy "${pkgdir}"/usr/share/licenses/lib32-libepoxy
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libepoxy/repos/multilib-x86_64/PKGBUILD (from rev 143668, 
lib32-libepoxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-11 15:26:24 UTC (rev 143669)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Laurent Carlier 
+
+pkgname=lib32-libepoxy
+pkgver=1.3.1
+pkgrel=3
+pkgdesc='A library for handling OpenGL function pointer management for you'
+arch=('x86_64')
+url='https://github.com/anholt/libepoxy'
+license=('MIT')
+depends=('lib32-glibc')
+makedepends=('gcc-multilib' 'lib32-libgl' 'python' 'xorg-util-macros')
+source=("https://github.com/anholt/libepoxy/releases/download/v${pkgver}/libepoxy-${pkgver}.tar.bz2;)
+sha256sums=('1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64')
+
+build() {
+  cd libepoxy-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+}
+
+package() {
+  cd libepoxy-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/include
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libepoxy "${pkgdir}"/usr/share/licenses/lib32-libepoxy
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 17:33:50
  Author: fyan
Revision: 143670

addpkg: haskell-asn1-types 0.3.1-1

Added:
  haskell-asn1-types/
  haskell-asn1-types/repos/
  haskell-asn1-types/trunk/
  haskell-asn1-types/trunk/PKGBUILD
  haskell-asn1-types/trunk/haskell-asn1-types.install

+
 PKGBUILD   |   42 ++
 haskell-asn1-types.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-asn1-types/trunk/PKGBUILD
===
--- haskell-asn1-types/trunk/PKGBUILD   (rev 0)
+++ haskell-asn1-types/trunk/PKGBUILD   2015-10-11 15:33:50 UTC (rev 143670)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hourglass" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('4ae6d47503a0ebf40584ea9d733eb572ac2dd607556dff1211b25602b34f2ec6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-asn1-types/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-asn1-types/trunk/haskell-asn1-types.install
===
--- haskell-asn1-types/trunk/haskell-asn1-types.install 
(rev 0)
+++ haskell-asn1-types/trunk/haskell-asn1-types.install 2015-10-11 15:33:50 UTC 
(rev 143670)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-types
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-cereal/repos (7 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:05:20
  Author: fyan
Revision: 143686

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

Added:
  haskell-cereal/repos/community-i686/
  haskell-cereal/repos/community-i686/PKGBUILD
(from rev 143685, haskell-cereal/trunk/PKGBUILD)
  haskell-cereal/repos/community-i686/haskell-cereal.install
(from rev 143685, haskell-cereal/trunk/haskell-cereal.install)
  haskell-cereal/repos/community-x86_64/PKGBUILD
(from rev 143685, haskell-cereal/trunk/PKGBUILD)
  haskell-cereal/repos/community-x86_64/haskell-cereal.install
(from rev 143685, haskell-cereal/trunk/haskell-cereal.install)
Deleted:
  haskell-cereal/repos/community-x86_64/PKGBUILD
  haskell-cereal/repos/community-x86_64/haskell-cereal.install

-+
 /PKGBUILD   |   43 ++
 /haskell-cereal.install |   18 
 community-i686/PKGBUILD |   43 ++
 community-i686/haskell-cereal.install   |   18 
 community-x86_64/PKGBUILD   |   43 --
 community-x86_64/haskell-cereal.install |   18 
 6 files changed, 122 insertions(+), 61 deletions(-)

Copied: haskell-cereal/repos/community-i686/PKGBUILD (from rev 143685, 
haskell-cereal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:05:20 UTC (rev 143686)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cereal
+pkgname=haskell-cereal
+pkgver=0.4.1.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df047216179ba3817134e32c73ef9e3b5dddbd4efff604f50ca0ca0c93753097')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-cereal/repos/community-i686/haskell-cereal.install (from rev 
143685, haskell-cereal/trunk/haskell-cereal.install)
===
--- community-i686/haskell-cereal.install   (rev 0)
+++ community-i686/haskell-cereal.install   2015-10-11 16:05:20 UTC (rev 
143686)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cereal
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-11 16:04:44 UTC (rev 143685)
+++ community-x86_64/PKGBUILD   2015-10-11 16:05:20 UTC (rev 143686)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=cereal
-pkgname=haskell-cereal
-pkgver=0.4.1.1
-pkgrel=1
-pkgdesc="A binary serialization library"
-url="http://hackage.haskell.org/package/${_hkgname};
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=("ghc=7.10.2")
-options=('staticlibs')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install="${pkgname}.install"

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:14:27
  Author: fyan
Revision: 143688

addpkg: haskell-cryptonite 0.8-1

Added:
  haskell-cryptonite/
  haskell-cryptonite/repos/
  haskell-cryptonite/trunk/
  haskell-cryptonite/trunk/PKGBUILD
  haskell-cryptonite/trunk/haskell-cryptonite.install

+
 PKGBUILD   |   43 +++
 haskell-cryptonite.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-cryptonite/trunk/PKGBUILD
===
--- haskell-cryptonite/trunk/PKGBUILD   (rev 0)
+++ haskell-cryptonite/trunk/PKGBUILD   2015-10-11 16:14:27 UTC (rev 143688)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.8
+pkgrel=1
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6401745cab3b83e81b84c09336215f3f80f532b3cfd948c4c53e891aa9b69b07')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -finteger-gmp -f-support_pclmuldq 
-fsupport_rdrand -fsupport_aesni
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-cryptonite/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-cryptonite/trunk/haskell-cryptonite.install
===
--- haskell-cryptonite/trunk/haskell-cryptonite.install 
(rev 0)
+++ haskell-cryptonite/trunk/haskell-cryptonite.install 2015-10-11 16:14:27 UTC 
(rev 143688)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptonite
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-generic-trie/repos (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:33:01
  Author: fyan
Revision: 143693

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

Added:
  haskell-generic-trie/repos/community-i686/
  haskell-generic-trie/repos/community-i686/PKGBUILD
(from rev 143692, haskell-generic-trie/trunk/PKGBUILD)
  haskell-generic-trie/repos/community-i686/haskell-generic-trie.install
(from rev 143692, haskell-generic-trie/trunk/haskell-generic-trie.install)
  haskell-generic-trie/repos/community-x86_64/
  haskell-generic-trie/repos/community-x86_64/PKGBUILD
(from rev 143692, haskell-generic-trie/trunk/PKGBUILD)
  haskell-generic-trie/repos/community-x86_64/haskell-generic-trie.install
(from rev 143692, haskell-generic-trie/trunk/haskell-generic-trie.install)

---+
 community-i686/PKGBUILD   |   42 
 community-i686/haskell-generic-trie.install   |   18 ++
 community-x86_64/PKGBUILD |   42 
 community-x86_64/haskell-generic-trie.install |   18 ++
 4 files changed, 120 insertions(+)

Copied: haskell-generic-trie/repos/community-i686/PKGBUILD (from rev 143692, 
haskell-generic-trie/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:33:01 UTC (rev 143693)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=generic-trie
+pkgname=haskell-generic-trie
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('e773b951a1b308f1f5a78653af557c700be05f0c22b3a9da895e60c4b5cac425')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid -fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-generic-trie/repos/community-i686/haskell-generic-trie.install 
(from rev 143692, haskell-generic-trie/trunk/haskell-generic-trie.install)
===
--- community-i686/haskell-generic-trie.install (rev 0)
+++ community-i686/haskell-generic-trie.install 2015-10-11 16:33:01 UTC (rev 
143693)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-generic-trie
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-generic-trie/repos/community-x86_64/PKGBUILD (from rev 143692, 
haskell-generic-trie/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:33:01 UTC (rev 143693)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=generic-trie
+pkgname=haskell-generic-trie
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:32:29
  Author: fyan
Revision: 143692

addpkg: haskell-generic-trie 0.3.0.1-1

Added:
  haskell-generic-trie/
  haskell-generic-trie/repos/
  haskell-generic-trie/trunk/
  haskell-generic-trie/trunk/PKGBUILD
  haskell-generic-trie/trunk/haskell-generic-trie.install

--+
 PKGBUILD |   42 +
 haskell-generic-trie.install |   18 +
 2 files changed, 60 insertions(+)

Added: haskell-generic-trie/trunk/PKGBUILD
===
--- haskell-generic-trie/trunk/PKGBUILD (rev 0)
+++ haskell-generic-trie/trunk/PKGBUILD 2015-10-11 16:32:29 UTC (rev 143692)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=generic-trie
+pkgname=haskell-generic-trie
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('e773b951a1b308f1f5a78653af557c700be05f0c22b3a9da895e60c4b5cac425')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid -fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-generic-trie/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-generic-trie/trunk/haskell-generic-trie.install
===
--- haskell-generic-trie/trunk/haskell-generic-trie.install 
(rev 0)
+++ haskell-generic-trie/trunk/haskell-generic-trie.install 2015-10-11 
16:32:29 UTC (rev 143692)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-generic-trie
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:43:21
  Author: fyan
Revision: 143697

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

Added:
  haskell-xml/repos/community-i686/
  haskell-xml/repos/community-i686/PKGBUILD
(from rev 143696, haskell-xml/trunk/PKGBUILD)
  haskell-xml/repos/community-i686/haskell-xml.install
(from rev 143696, haskell-xml/trunk/haskell-xml.install)
  haskell-xml/repos/community-x86_64/
  haskell-xml/repos/community-x86_64/PKGBUILD
(from rev 143696, haskell-xml/trunk/PKGBUILD)
  haskell-xml/repos/community-x86_64/haskell-xml.install
(from rev 143696, haskell-xml/trunk/haskell-xml.install)

--+
 community-i686/PKGBUILD  |   42 +
 community-i686/haskell-xml.install   |   18 ++
 community-x86_64/PKGBUILD|   42 +
 community-x86_64/haskell-xml.install |   18 ++
 4 files changed, 120 insertions(+)

Copied: haskell-xml/repos/community-i686/PKGBUILD (from rev 143696, 
haskell-xml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:43:21 UTC (rev 143697)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml
+pkgname=haskell-xml
+pkgver=1.3.14
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" 'haskell-text')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-xml/repos/community-i686/haskell-xml.install (from rev 143696, 
haskell-xml/trunk/haskell-xml.install)
===
--- community-i686/haskell-xml.install  (rev 0)
+++ community-i686/haskell-xml.install  2015-10-11 16:43:21 UTC (rev 143697)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-xml
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-xml/repos/community-x86_64/PKGBUILD (from rev 143696, 
haskell-xml/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:43:21 UTC (rev 143697)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml
+pkgname=haskell-xml
+pkgver=1.3.14
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" 'haskell-text')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+   

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:42:48
  Author: fyan
Revision: 143696

addpkg: haskell-xml 1.3.14-1

Added:
  haskell-xml/
  haskell-xml/repos/
  haskell-xml/trunk/
  haskell-xml/trunk/PKGBUILD
  haskell-xml/trunk/haskell-xml.install

-+
 PKGBUILD|   42 ++
 haskell-xml.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-xml/trunk/PKGBUILD
===
--- haskell-xml/trunk/PKGBUILD  (rev 0)
+++ haskell-xml/trunk/PKGBUILD  2015-10-11 16:42:48 UTC (rev 143696)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml
+pkgname=haskell-xml
+pkgver=1.3.14
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" 'haskell-text')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-xml/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-xml/trunk/haskell-xml.install
===
--- haskell-xml/trunk/haskell-xml.install   (rev 0)
+++ haskell-xml/trunk/haskell-xml.install   2015-10-11 16:42:48 UTC (rev 
143696)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-xml
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:10:58
  Author: fyan
Revision: 143687

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 143686, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 143686, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/community-i686/wine.install
(from rev 143686, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD
  wine-staging/repos/community-i686/wine.install

--+
 PKGBUILD |  386 -
 wine.install |   24 +--
 2 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
143686, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-11 16:05:20 UTC (rev 143686)
+++ PKGBUILD2015-10-11 16:10:58 UTC (rev 143687)
@@ -1,193 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=1.7.52
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$pkgver.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('843245d4736db4ad1449f00d747a2f7912680c59'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  attrlib32-attr
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libldap lib32-libldap
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libpulselib32-libpulse
-  libva   lib32-libva
-  samba
-  opencl-headers
-)
-# gtk3lib32-gtk3
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  ncurses lib32-ncurses
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  libva   lib32-libva
-  cups
-  samba   dosbox
-)
-# gtk3lib32-gtk3
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  cd wine-patched-staging-$pkgver
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i configure*
-}
-
-build() {
-  cd "$srcdir"
-
-  # remove once https://bugs.winehq.org/show_bug.cgi?id=38653 is resolved
-  export CFLAGS="${CFLAGS/-O2/} -O0"
-  export CXXFLAGS="${CXXFLAGS/-O2/} -O0"
-
-  # Allow ccache to work
-  mv wine-patched-staging-$pkgver $pkgname
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir 

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:27:18
  Author: fyan
Revision: 143690

addpkg: haskell-asn1-parse 0.9.4-1

Added:
  haskell-asn1-parse/
  haskell-asn1-parse/repos/
  haskell-asn1-parse/trunk/
  haskell-asn1-parse/trunk/PKGBUILD
  haskell-asn1-parse/trunk/haskell-asn1-parse.install

+
 PKGBUILD   |   42 ++
 haskell-asn1-parse.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-asn1-parse/trunk/PKGBUILD
===
--- haskell-asn1-parse/trunk/PKGBUILD   (rev 0)
+++ haskell-asn1-parse/trunk/PKGBUILD   2015-10-11 16:27:18 UTC (rev 143690)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=1
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-encoding" "haskell-asn1-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-asn1-parse/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-asn1-parse/trunk/haskell-asn1-parse.install
===
--- haskell-asn1-parse/trunk/haskell-asn1-parse.install 
(rev 0)
+++ haskell-asn1-parse/trunk/haskell-asn1-parse.install 2015-10-11 16:27:18 UTC 
(rev 143690)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-parse
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-asn1-parse/repos (6 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:28:16
  Author: fyan
Revision: 143691

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

Added:
  haskell-asn1-parse/repos/community-i686/
  haskell-asn1-parse/repos/community-i686/PKGBUILD
(from rev 143690, haskell-asn1-parse/trunk/PKGBUILD)
  haskell-asn1-parse/repos/community-i686/haskell-asn1-parse.install
(from rev 143690, haskell-asn1-parse/trunk/haskell-asn1-parse.install)
  haskell-asn1-parse/repos/community-x86_64/
  haskell-asn1-parse/repos/community-x86_64/PKGBUILD
(from rev 143690, haskell-asn1-parse/trunk/PKGBUILD)
  haskell-asn1-parse/repos/community-x86_64/haskell-asn1-parse.install
(from rev 143690, haskell-asn1-parse/trunk/haskell-asn1-parse.install)

-+
 community-i686/PKGBUILD |   42 ++
 community-i686/haskell-asn1-parse.install   |   18 +++
 community-x86_64/PKGBUILD   |   42 ++
 community-x86_64/haskell-asn1-parse.install |   18 +++
 4 files changed, 120 insertions(+)

Copied: haskell-asn1-parse/repos/community-i686/PKGBUILD (from rev 143690, 
haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:28:16 UTC (rev 143691)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=1
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-encoding" "haskell-asn1-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-asn1-parse/repos/community-i686/haskell-asn1-parse.install 
(from rev 143690, haskell-asn1-parse/trunk/haskell-asn1-parse.install)
===
--- community-i686/haskell-asn1-parse.install   (rev 0)
+++ community-i686/haskell-asn1-parse.install   2015-10-11 16:28:16 UTC (rev 
143691)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-parse
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-asn1-parse/repos/community-x86_64/PKGBUILD (from rev 143690, 
haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:28:16 UTC (rev 143691)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=1
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-encoding" "haskell-asn1-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

[arch-commits] Commit in (5 files)

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:37:33
  Author: fyan
Revision: 143694

addpkg: haskell-graphscc 1.0.4-1

Added:
  haskell-graphscc/
  haskell-graphscc/repos/
  haskell-graphscc/trunk/
  haskell-graphscc/trunk/PKGBUILD
  haskell-graphscc/trunk/haskell-graphscc.install

--+
 PKGBUILD |   42 ++
 haskell-graphscc.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-graphscc/trunk/PKGBUILD
===
--- haskell-graphscc/trunk/PKGBUILD (rev 0)
+++ haskell-graphscc/trunk/PKGBUILD 2015-10-11 16:37:33 UTC (rev 143694)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=GraphSCC
+pkgname=haskell-graphscc
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('789d93e6188845f009779b1c800b043f524587a21d324be8594d09b0f8e86cf1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid -fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-graphscc/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-graphscc/trunk/haskell-graphscc.install
===
--- haskell-graphscc/trunk/haskell-graphscc.install 
(rev 0)
+++ haskell-graphscc/trunk/haskell-graphscc.install 2015-10-11 16:37:33 UTC 
(rev 143694)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-graphscc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:38:07
  Author: fyan
Revision: 143695

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

Added:
  haskell-graphscc/repos/community-i686/
  haskell-graphscc/repos/community-i686/PKGBUILD
(from rev 143694, haskell-graphscc/trunk/PKGBUILD)
  haskell-graphscc/repos/community-i686/haskell-graphscc.install
(from rev 143694, haskell-graphscc/trunk/haskell-graphscc.install)
  haskell-graphscc/repos/community-x86_64/
  haskell-graphscc/repos/community-x86_64/PKGBUILD
(from rev 143694, haskell-graphscc/trunk/PKGBUILD)
  haskell-graphscc/repos/community-x86_64/haskell-graphscc.install
(from rev 143694, haskell-graphscc/trunk/haskell-graphscc.install)

---+
 community-i686/PKGBUILD   |   42 
 community-i686/haskell-graphscc.install   |   18 
 community-x86_64/PKGBUILD |   42 
 community-x86_64/haskell-graphscc.install |   18 
 4 files changed, 120 insertions(+)

Copied: haskell-graphscc/repos/community-i686/PKGBUILD (from rev 143694, 
haskell-graphscc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:38:07 UTC (rev 143695)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=GraphSCC
+pkgname=haskell-graphscc
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('789d93e6188845f009779b1c800b043f524587a21d324be8594d09b0f8e86cf1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid -fsplit-base
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-graphscc/repos/community-i686/haskell-graphscc.install (from 
rev 143694, haskell-graphscc/trunk/haskell-graphscc.install)
===
--- community-i686/haskell-graphscc.install (rev 0)
+++ community-i686/haskell-graphscc.install 2015-10-11 16:38:07 UTC (rev 
143695)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-graphscc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-graphscc/repos/community-x86_64/PKGBUILD (from rev 143694, 
haskell-graphscc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:38:07 UTC (rev 143695)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=GraphSCC
+pkgname=haskell-graphscc
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('789d93e6188845f009779b1c800b043f524587a21d324be8594d09b0f8e86cf1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O 

[arch-commits] Commit in (8 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 20:18:13
  Author: arojas
Revision: 143698

Add generic build of atlas-lapack

Added:
  atlas-lapack-base/
  atlas-lapack-base/trunk/
  atlas-lapack-base/trunk/Makefile
  atlas-lapack-base/trunk/PKGBUILD
  atlas-lapack-base/trunk/atlas-lapack-base.install
  atlas-lapack-base/trunk/atlas-license.txt
  atlas-lapack-base/trunk/blas-license.txt
  atlas-lapack-base/trunk/disable-throttling-check.patch

+
 Makefile   |   24 +
 PKGBUILD   |   68 +++
 atlas-lapack-base.install  |9 +
 atlas-license.txt  |   29 
 blas-license.txt   |   20 +++
 disable-throttling-check.patch |   13 +++
 6 files changed, 163 insertions(+)

Added: atlas-lapack-base/trunk/Makefile
===
--- atlas-lapack-base/trunk/Makefile(rev 0)
+++ atlas-lapack-base/trunk/Makefile2015-10-11 18:18:13 UTC (rev 143698)
@@ -0,0 +1,24 @@
+include Make.inc
+
+all: libatlas.so libf77blas.so libcblas.so libblas.so liblapack.so
+
+
+libatlas.so: libatlas.a
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libatlas.a \
+  --no-whole-archive -lc $(LIBS)
+
+libf77blas.so : libf77blas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname libblas.so.3 -o $@ --whole-archive \
+  libf77blas.a --no-whole-archive $(F77SYSLIB) -L. -latlas
+
+libcblas.so : libcblas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libcblas.a \
+   -L. -latlas
+
+libblas.so: libf77blas.so
+   ln -s $< $@
+
+liblapack.so : liblapack.a libcblas.so libblas.so
+   ld $(LDFLAGS) -shared -soname liblapack.so.3 -o $@ --whole-archive \
+  liblapack.a --no-whole-archive $(F77SYSLIB) -L. -lcblas -lblas 
-lgcc_s
+

Added: atlas-lapack-base/trunk/PKGBUILD
===
--- atlas-lapack-base/trunk/PKGBUILD(rev 0)
+++ atlas-lapack-base/trunk/PKGBUILD2015-10-11 18:18:13 UTC (rev 143698)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giuseppe Borzi 
+# Contributor: mickele 
+# Contributor: iztok pizorn 
+# Contributor: olivier medoc 
+
+pkgname=atlas-lapack-base
+pkgver=3.10.2
+_lapackver=3.5.0
+pkgrel=1
+pkgdesc="Complete LAPACK and BLAS implementation using optimized ATLAS 
routines"
+url="http://math-atlas.sourceforge.net/;
+depends=(gcc-libs)
+makedepends=(gcc-fortran)
+arch=(i686 x86_64)
+conflicts=(blas cblas lapack)
+provides=(blas cblas 'lapack=$_lapackver' atlas-lapack)
+license=(custom:blas custom:lapack custom:atlas)
+options=(!makeflags)
+source=(http://www.netlib.org/lapack/lapack-$_lapackver.tgz 
http://downloads.sourceforge.net/math-atlas/atlas${pkgver}.tar.bz2 
blas-license.txt 
+atlas-license.txt Makefile disable-throttling-check.patch)
+noextract=(lapack-$_lapackver.tgz)
+install=$pkgname.install
+md5sums=('b1d3e3e425b2e44a06760ff173104bdf'
+ 'a4e21f343dec8f22e7415e339f09f6da'
+ 'e8e512ee7a2d550139dcd765f127816b'
+ '4903eb06072dfbf94710691ccb6660bf'
+ 'd598a27d392d41b00f8e440f1f8fc2a4'
+ '54f80b9a56f13f960017460c36b725ce')
+
+prepare() {
+  mkdir -p ATLAS/build
+
+# override throttling check (Fedora)
+  patch -p0 -i disable-throttling-check.patch
+}
+
+build() {
+  if [ "$CARCH" = "x86_64" ]; then
+ ARCHITECTURE_BUILD_OPTS="-b 64 -A x86SSE3" # for x86_64
+  else
+ ARCHITECTURE_BUILD_OPTS="-b 32 -A x86SSE2" # for i686
+  fi
+
+  cd ATLAS/build
+  ../configure --prefix=/usr/ $ARCHITECTURE_BUILD_OPTS -Fa alg -fPIC -Si 
latune 0 -t 0 \
+ --with-netlib-lapack-tarfile="$srcdir"/lapack-$_lapackver.tgz
+  make build
+
+# build shared libraries
+  cd lib
+  cp "$srcdir"/Makefile .
+  make
+}
+
+package() {
+  cd ATLAS/build
+
+  make DESTDIR="$pkgdir"/usr install
+  cp -d lib/*.so* "$pkgdir"/usr/lib
+  ln -sr "$pkgdir"/usr/lib/libblas.so{,.3}
+  ln -sr "$pkgdir"/usr/lib/liblapack.so{,.3}
+
+  install -Dm644 "$srcdir"/blas-license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/blas-license.txt
+  install -Dm644 "$srcdir"/ATLAS/build/src/lapack/reference/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/lapack-license.txt
+  install -Dm644 "$srcdir"/atlas-license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/atlas-license.txt
+}


Property changes on: atlas-lapack-base/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: atlas-lapack-base/trunk/atlas-lapack-base.install
===
--- atlas-lapack-base/trunk/atlas-lapack-base.install   
(rev 0)
+++ atlas-lapack-base/trunk/atlas-lapack-base.install   2015-10-11 18:18:13 UTC 
(rev 143698)
@@ -0,0 +1,9 @@

[arch-commits] Commit in atlas-lapack-base (15 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 20:19:06
  Author: arojas
Revision: 143699

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

Added:
  atlas-lapack-base/repos/
  atlas-lapack-base/repos/community-i686/
  atlas-lapack-base/repos/community-i686/Makefile
(from rev 143698, atlas-lapack-base/trunk/Makefile)
  atlas-lapack-base/repos/community-i686/PKGBUILD
(from rev 143698, atlas-lapack-base/trunk/PKGBUILD)
  atlas-lapack-base/repos/community-i686/atlas-lapack-base.install
(from rev 143698, atlas-lapack-base/trunk/atlas-lapack-base.install)
  atlas-lapack-base/repos/community-i686/atlas-license.txt
(from rev 143698, atlas-lapack-base/trunk/atlas-license.txt)
  atlas-lapack-base/repos/community-i686/blas-license.txt
(from rev 143698, atlas-lapack-base/trunk/blas-license.txt)
  atlas-lapack-base/repos/community-i686/disable-throttling-check.patch
(from rev 143698, atlas-lapack-base/trunk/disable-throttling-check.patch)
  atlas-lapack-base/repos/community-x86_64/
  atlas-lapack-base/repos/community-x86_64/Makefile
(from rev 143698, atlas-lapack-base/trunk/Makefile)
  atlas-lapack-base/repos/community-x86_64/PKGBUILD
(from rev 143698, atlas-lapack-base/trunk/PKGBUILD)
  atlas-lapack-base/repos/community-x86_64/atlas-lapack-base.install
(from rev 143698, atlas-lapack-base/trunk/atlas-lapack-base.install)
  atlas-lapack-base/repos/community-x86_64/atlas-license.txt
(from rev 143698, atlas-lapack-base/trunk/atlas-license.txt)
  atlas-lapack-base/repos/community-x86_64/blas-license.txt
(from rev 143698, atlas-lapack-base/trunk/blas-license.txt)
  atlas-lapack-base/repos/community-x86_64/disable-throttling-check.patch
(from rev 143698, atlas-lapack-base/trunk/disable-throttling-check.patch)

-+
 community-i686/Makefile |   24 +++
 community-i686/PKGBUILD |   68 ++
 community-i686/atlas-lapack-base.install|9 ++
 community-i686/atlas-license.txt|   29 +
 community-i686/blas-license.txt |   20 ++
 community-i686/disable-throttling-check.patch   |   13 
 community-x86_64/Makefile   |   24 +++
 community-x86_64/PKGBUILD   |   68 ++
 community-x86_64/atlas-lapack-base.install  |9 ++
 community-x86_64/atlas-license.txt  |   29 +
 community-x86_64/blas-license.txt   |   20 ++
 community-x86_64/disable-throttling-check.patch |   13 
 12 files changed, 326 insertions(+)

Copied: atlas-lapack-base/repos/community-i686/Makefile (from rev 143698, 
atlas-lapack-base/trunk/Makefile)
===
--- repos/community-i686/Makefile   (rev 0)
+++ repos/community-i686/Makefile   2015-10-11 18:19:06 UTC (rev 143699)
@@ -0,0 +1,24 @@
+include Make.inc
+
+all: libatlas.so libf77blas.so libcblas.so libblas.so liblapack.so
+
+
+libatlas.so: libatlas.a
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libatlas.a \
+  --no-whole-archive -lc $(LIBS)
+
+libf77blas.so : libf77blas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname libblas.so.3 -o $@ --whole-archive \
+  libf77blas.a --no-whole-archive $(F77SYSLIB) -L. -latlas
+
+libcblas.so : libcblas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libcblas.a \
+   -L. -latlas
+
+libblas.so: libf77blas.so
+   ln -s $< $@
+
+liblapack.so : liblapack.a libcblas.so libblas.so
+   ld $(LDFLAGS) -shared -soname liblapack.so.3 -o $@ --whole-archive \
+  liblapack.a --no-whole-archive $(F77SYSLIB) -L. -lcblas -lblas 
-lgcc_s
+

Copied: atlas-lapack-base/repos/community-i686/PKGBUILD (from rev 143698, 
atlas-lapack-base/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-10-11 18:19:06 UTC (rev 143699)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giuseppe Borzi 
+# Contributor: mickele 
+# Contributor: iztok pizorn 
+# Contributor: olivier medoc 
+
+pkgname=atlas-lapack-base
+pkgver=3.10.2
+_lapackver=3.5.0
+pkgrel=1
+pkgdesc="Complete LAPACK and BLAS implementation using optimized ATLAS 
routines"
+url="http://math-atlas.sourceforge.net/;
+depends=(gcc-libs)
+makedepends=(gcc-fortran)
+arch=(i686 x86_64)
+conflicts=(blas cblas lapack)
+provides=(blas cblas 'lapack=$_lapackver' atlas-lapack)
+license=(custom:blas custom:lapack custom:atlas)
+options=(!makeflags)
+source=(http://www.netlib.org/lapack/lapack-$_lapackver.tgz 
http://downloads.sourceforge.net/math-atlas/atlas${pkgver}.tar.bz2 
blas-license.txt 
+atlas-license.txt Makefile disable-throttling-check.patch)

[arch-commits] Commit in sagemath/trunk (5 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 21:15:19
  Author: arojas
Revision: 143700

Update to 6.9, switch to atlas-lapack

Modified:
  sagemath/trunk/PKGBUILD
  sagemath/trunk/env.patch
  sagemath/trunk/package.patch
Deleted:
  sagemath/trunk/cython-0.23.patch
  sagemath/trunk/ipython-4.patch

---+
 PKGBUILD  |   26 +-
 cython-0.23.patch |   16 
 env.patch |7 ++-
 ipython-4.patch   |   35 ---
 package.patch |2 +-
 5 files changed, 16 insertions(+), 70 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 18:19:06 UTC (rev 143699)
+++ PKGBUILD2015-10-11 19:15:19 UTC (rev 143700)
@@ -8,13 +8,13 @@
 # Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
 
 pkgname=sagemath
-pkgver=6.8
-pkgrel=5
+pkgver=6.9
+pkgrel=1
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(i686 x86_64)
 url="http://www.sagemath.org;
 license=(GPL)
-depends=(ipython2 ppl mpfi palp polybori singular libcliquer maxima-ecl gfan 
sympow tachyon python2-rpy2
+depends=(ipython2 atlas-lapack ppl mpfi palp brial singular libcliquer 
maxima-ecl gfan sympow tachyon python2-rpy2
   python2-matplotlib python2-scipy python2-sympy python2-networkx libgap gap 
flintqs lcalc lrcalc
   eclib gmp-ecm zn_poly gd python2-cvxopt pynac linbox gsl rubiks pari-galdata 
pari-seadata-small planarity rankwidth
   sage-data-combinatorial_designs sage-data-elliptic_curves sage-data-graphs 
sage-data-polytopes_db sage-data-conway_polynomials)
@@ -22,7 +22,7 @@
   'sagemath-doc: Documentation and inline help' 'ipython2-notebook: Jupyter 
notebook interface' 'mathjax: Jupyter notebook interface'
   'coin-or-cbc: COIN backend for numerical computations' 'nauty: for 
generating some classes of graphs'
   'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
-  'modular_decomposition: modular decomposition of graphs'
+  'modular_decomposition: modular decomposition of graphs' 'ffmpeg: to export 
animations to video'
   'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes' 'imagemagick: to show animations'
   'coxeter3: Coxeter groups implementation' 'cryptominisat: SAT solver' 'arb: 
floating-point ball arithmetic')
 makedepends=(cython2 boost ratpoints symmetrica fflas-ffpack python2-jinja 
coin-or-cbc
@@ -34,21 +34,19 @@
 # "http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2; 
 "http://mirrors.mit.edu/sage/spkg/upstream/pexpect/pexpect-2.0.tar.bz2; 
'kernel.json'
 'anal.h' 'package.patch' 'env.patch' 'paths.patch' 'clean.patch' 
'skip-check.patch' 
-'pexpect-env.patch' 'pexpect-del.patch' 'disable-fes.patch' 
'cython-0.23.patch' 'ipython-4.patch')
-md5sums=('943780ef4460e38f28fefe95e3138981'
+'pexpect-env.patch' 'pexpect-del.patch' 'disable-fes.patch')
+md5sums=('847ad447eaef17b2bc81bb4fae69c190'
  'd9a3e113ed147dcee8f89962a8dccd43'
  '4cee4f96bcd877587e7efc40c20adba7'
  'a906a180d198186a39820b0a2f9a9c63'
- 'f72e544032b1a3f952b7ddafc3a49d63'
- '843a6cc3b17a1850604593813321418e'
+ '9ba81f717ffd4e20b8b2f2a318307488'
+ '5ebdb6e6ac541f040a39f8d3fd9c8ee1'
  'fd8e3e07f5b7318e6a7200a3c64f5bc2'
  '23e972753be1e5d0f761a7f82a95cebf'
  '5947a420a0b1483f0cbc74c76895789b'
  'a83a3b1bc7fcb7cbf752a83a8311fc42'
  'f333939ea6c41377b66407c81016cee4'
- '4eb23a3c7363258bc9ba764d6e5512ba'
- '1b8dfa047115180aa0afbeaf19d97762'
- '41aa997ad9f00afdc3357b37fc70f0e6')
+ '4eb23a3c7363258bc9ba764d6e5512ba')
 
 prepare(){
   cd sage-$pkgver
@@ -64,8 +62,6 @@
   patch -p0 -i ../env.patch
 # fix paths in python imports
   patch -p0 -i ../paths.patch
-# fix cython linking
-  sed -e "s| atlas(),||" -i src/sage/misc/cython.py
 # don't try to remove installed files
   patch -p0 -i ../clean.patch
 # skip checking build status
@@ -79,8 +75,6 @@
   sed -e 's|graph.hh|bliss/graph.hh|' -i src/sage/graphs/bliss.pyx
 # fix opening docs from Jupyter notebook
   sed -e "s|SageKernelSpec.identifier()|'SageMath'|g" -i 
src/sage/repl/ipython_kernel/kernel.py
-# fix IPython 4 compatibility
-  patch -p0 -i ../ipython-4.patch
 
 # Upstream patches  
 # fix build against libfes 0.2 http://trac.sagemath.org/ticket/15209
@@ -87,8 +81,6 @@
 #  patch -p0 -i "$srcdir"/fes02.patch
 # disable fes module, fails to compile
   patch -p0 -i ../disable-fes.patch
-# fix build with cython 0.23
-  patch -p1 -i "$srcdir"/cython-0.23.patch
 
 # use python2
   sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -e 's|exec 
python|exec python2|' -i src/bin/*

Deleted: cython-0.23.patch
===
--- 

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

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 21:16:36
  Author: arojas
Revision: 143701

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

Added:
  sagemath/repos/community-staging-i686/
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 143700, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/anal.h
(from rev 143700, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-i686/clean.patch
(from rev 143700, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-i686/disable-fes.patch
(from rev 143700, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 143700, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/kernel.json
(from rev 143700, sagemath/trunk/kernel.json)
  sagemath/repos/community-staging-i686/package.patch
(from rev 143700, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/paths.patch
(from rev 143700, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-i686/pexpect-del.patch
(from rev 143700, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-i686/pexpect-env.patch
(from rev 143700, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 143700, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 143700, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/anal.h
(from rev 143700, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-x86_64/clean.patch
(from rev 143700, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-x86_64/disable-fes.patch
(from rev 143700, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 143700, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/kernel.json
(from rev 143700, sagemath/trunk/kernel.json)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 143700, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/paths.patch
(from rev 143700, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-x86_64/pexpect-del.patch
(from rev 143700, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-x86_64/pexpect-env.patch
(from rev 143700, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 143700, sagemath/trunk/skip-check.patch)

+
 community-staging-i686/PKGBUILD|  165 +++
 community-staging-i686/anal.h  |   65 ++
 community-staging-i686/clean.patch |   24 +++
 community-staging-i686/disable-fes.patch   |   19 +++
 community-staging-i686/env.patch   |  137 ++
 community-staging-i686/kernel.json |1 
 community-staging-i686/package.patch   |   11 +
 community-staging-i686/paths.patch |   37 ++
 community-staging-i686/pexpect-del.patch   |   15 ++
 community-staging-i686/pexpect-env.patch   |   32 +
 community-staging-i686/skip-check.patch|   21 +++
 community-staging-x86_64/PKGBUILD  |  165 +++
 community-staging-x86_64/anal.h|   65 ++
 community-staging-x86_64/clean.patch   |   24 +++
 community-staging-x86_64/disable-fes.patch |   19 +++
 community-staging-x86_64/env.patch |  137 ++
 community-staging-x86_64/kernel.json   |1 
 community-staging-x86_64/package.patch |   11 +
 community-staging-x86_64/paths.patch   |   37 ++
 community-staging-x86_64/pexpect-del.patch |   15 ++
 community-staging-x86_64/pexpect-env.patch |   32 +
 community-staging-x86_64/skip-check.patch  |   21 +++
 22 files changed, 1054 insertions(+)

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


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

2015-10-11 Thread Felix Yan
Date: Sunday, October 11, 2015 @ 18:16:05
  Author: fyan
Revision: 143689

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

Added:
  haskell-cryptonite/repos/community-i686/
  haskell-cryptonite/repos/community-i686/PKGBUILD
(from rev 143688, haskell-cryptonite/trunk/PKGBUILD)
  haskell-cryptonite/repos/community-i686/haskell-cryptonite.install
(from rev 143688, haskell-cryptonite/trunk/haskell-cryptonite.install)
  haskell-cryptonite/repos/community-x86_64/
  haskell-cryptonite/repos/community-x86_64/PKGBUILD
(from rev 143688, haskell-cryptonite/trunk/PKGBUILD)
  haskell-cryptonite/repos/community-x86_64/haskell-cryptonite.install
(from rev 143688, haskell-cryptonite/trunk/haskell-cryptonite.install)

-+
 community-i686/PKGBUILD |   43 ++
 community-i686/haskell-cryptonite.install   |   18 ++
 community-x86_64/PKGBUILD   |   43 ++
 community-x86_64/haskell-cryptonite.install |   18 ++
 4 files changed, 122 insertions(+)

Copied: haskell-cryptonite/repos/community-i686/PKGBUILD (from rev 143688, 
haskell-cryptonite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-11 16:16:05 UTC (rev 143689)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.8
+pkgrel=1
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6401745cab3b83e81b84c09336215f3f80f532b3cfd948c4c53e891aa9b69b07')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -finteger-gmp -f-support_pclmuldq 
-fsupport_rdrand -fsupport_aesni
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-cryptonite/repos/community-i686/haskell-cryptonite.install 
(from rev 143688, haskell-cryptonite/trunk/haskell-cryptonite.install)
===
--- community-i686/haskell-cryptonite.install   (rev 0)
+++ community-i686/haskell-cryptonite.install   2015-10-11 16:16:05 UTC (rev 
143689)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptonite
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-cryptonite/repos/community-x86_64/PKGBUILD (from rev 143688, 
haskell-cryptonite/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-11 16:16:05 UTC (rev 143689)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.8
+pkgrel=1
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

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

2015-10-11 Thread Gaetan Bisson
Date: Monday, October 12, 2015 @ 01:07:03
  Author: bisson
Revision: 248899

upstream update

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 22:16:07 UTC (rev 248898)
+++ PKGBUILD2015-10-11 23:07:03 UTC (rev 248899)
@@ -4,8 +4,8 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=postfix
-pkgver=3.0.2
-pkgrel=2
+pkgver=3.0.3
+pkgrel=1
 url='http://www.postfix.org/'
 pkgdesc='Fast, easy to administer, secure mail server'
 license=('custom')
@@ -15,7 +15,7 @@
 
source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
 'aliases.patch'
 'service')
-sha1sums=('9d75ca3c207441a38a79a2c8ceaa398c2b9cdc4e'
+sha1sums=('7885ac3d98bc5635d639e94f3b18b1f09446d654'
   '5fc3de6c7df1e5851a0a379e825148868808318b'
   'dd12885d367bebaf0fc9d2e9823a7f82086b6ee9')
 


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

2015-10-11 Thread Gaetan Bisson
Date: Monday, October 12, 2015 @ 01:07:53
  Author: bisson
Revision: 248900

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

Added:
  postfix/repos/extra-i686/PKGBUILD
(from rev 248899, postfix/trunk/PKGBUILD)
  postfix/repos/extra-i686/aliases.patch
(from rev 248899, postfix/trunk/aliases.patch)
  postfix/repos/extra-i686/install
(from rev 248899, postfix/trunk/install)
  postfix/repos/extra-i686/service
(from rev 248899, postfix/trunk/service)
  postfix/repos/extra-x86_64/PKGBUILD
(from rev 248899, postfix/trunk/PKGBUILD)
  postfix/repos/extra-x86_64/aliases.patch
(from rev 248899, postfix/trunk/aliases.patch)
  postfix/repos/extra-x86_64/install
(from rev 248899, postfix/trunk/install)
  postfix/repos/extra-x86_64/service
(from rev 248899, postfix/trunk/service)
Deleted:
  postfix/repos/extra-i686/PKGBUILD
  postfix/repos/extra-i686/aliases.patch
  postfix/repos/extra-i686/install
  postfix/repos/extra-i686/service
  postfix/repos/extra-x86_64/PKGBUILD
  postfix/repos/extra-x86_64/aliases.patch
  postfix/repos/extra-x86_64/install
  postfix/repos/extra-x86_64/service

+
 /PKGBUILD  |  202 +++
 /aliases.patch |   36 +++
 /install   |   48 ++
 /service   |   28 +
 extra-i686/PKGBUILD|  101 -
 extra-i686/aliases.patch   |   18 ---
 extra-i686/install |   24 -
 extra-i686/service |   14 --
 extra-x86_64/PKGBUILD  |  101 -
 extra-x86_64/aliases.patch |   18 ---
 extra-x86_64/install   |   24 -
 extra-x86_64/service   |   14 --
 12 files changed, 314 insertions(+), 314 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 23:07:03 UTC (rev 248899)
+++ extra-i686/PKGBUILD 2015-10-11 23:07:53 UTC (rev 248900)
@@ -1,101 +0,0 @@
-# $Id$
-# Contributor: Jeff Brodnax 
-# Contributor: Paul Mattal 
-# Maintainer: Gaetan Bisson 
-
-pkgname=postfix
-pkgver=3.0.2
-pkgrel=2
-url='http://www.postfix.org/'
-pkgdesc='Fast, easy to administer, secure mail server'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'pcre' 'icu' 'libsasl' 'libldap' 'db'
- 'libmariadbclient' 'postgresql-libs' 'sqlite' 'tinycdb')
-source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
-'aliases.patch'
-'service')
-sha1sums=('9d75ca3c207441a38a79a2c8ceaa398c2b9cdc4e'
-  '5fc3de6c7df1e5851a0a379e825148868808318b'
-  'dd12885d367bebaf0fc9d2e9823a7f82086b6ee9')
-
-backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual})
-
-conflicts=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-provides=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-replaces=('postfix-tools')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   CCARGS='
--DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl
--DHAS_LDAP
--DUSE_TLS
--DHAS_MYSQL -I/usr/include/mysql
--DHAS_PGSQL -I/usr/include/postgresql
--DHAS_SQLITE
--DHAS_CDB
--DDEF_COMMAND_DIR=\"/usr/bin\"
--DDEF_DAEMON_DIR=\"/usr/lib/postfix/bin\"
--DDEF_SENDMAIL_PATH=\"/usr/bin/sendmail\"
--DDEF_README_DIR=\"/usr/share/doc/postfix\"
--DDEF_MANPAGE_DIR=\"/usr/share/man\"
-'
-   AUXLIBS='
--lsasl2
--lldap -llber
--lssl -lcrypto
--lmysqlclient -lz -lm
--lpq
--lsqlite3 -lpthread
--lcdb
-'
-   make makefiles \
-   DEBUG='' \
-   pie=yes \
-   shared=yes \
-   CCARGS="${CCARGS//$'\n'/}" \
-   AUXLIBS="${AUXLIBS//$'\n'/}" \
-   OPT="${CFLAGS} ${LDFLAGS}" \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/postfix-${pkgver}"
-
-   sed 's:bin/postconf -dhx:bin/postconf -c conf -dhx:g' -i postfix-install
-   LD_LIBRARY_PATH=lib:$LD_LIBRARY_PATH \
-   sh postfix-install -non-interactive install_root="${pkgdir}"
-
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-
-   for name in posttls-finger {smtp,qmqp}-{sink,source}; do
-   install -Dm644 "man/man1/${name}.1" 
"${pkgdir}/usr/share/man/man1/${name}.1"
-   install -Dm755 "bin/${name}" "${pkgdir}/usr/bin/${name}"
-   done
-
-   # now set permissions right to appease the pacman gods
-   sed -r \
-   -e 

[arch-commits] Commit in glibc/trunk (PKGBUILD glibc-2.22-roundup.patch)

2015-10-11 Thread Allan McRae
Date: Monday, October 12, 2015 @ 01:14:59
  Author: allan
Revision: 248901

upgpkg: glibc 2.22-4

pull upstream patchset

Modified:
  glibc/trunk/PKGBUILD
  glibc/trunk/glibc-2.22-roundup.patch

--+
 PKGBUILD |6 
 glibc-2.22-roundup.patch |  439 -
 2 files changed, 438 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-11 23:07:53 UTC (rev 248900)
+++ PKGBUILD2015-10-11 23:14:59 UTC (rev 248901)
@@ -8,7 +8,7 @@
 
 pkgname=glibc
 pkgver=2.22
-pkgrel=3
+pkgrel=4
 pkgdesc="GNU C Library"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/libc;
@@ -27,7 +27,7 @@
 locale-gen)
 md5sums=('e51e02bf552a0a1fbbdc948fb2f5e83c'
  'SKIP'
- 'b6b7a0e8d6e6520e40e3164ae773631d'
+ '8476d7f2bceaacde30ea2b9d4afb4bd1'
  '07ac979b6ab5eeb778d55f041529d623'
  '476e9113489f93b348b21e144b6a8fcf')
 validpgpkeys=('F37CDAB708E65EA183FD1AF625EF0A436C2A4AFF')  # Carlos O'Donell
@@ -35,7 +35,7 @@
 prepare() {
   cd ${srcdir}/glibc-${pkgver}
 
-  # glibc-2.21..01b07c70
+  # glibc-2.21..g2b529a8
   patch -p1 -i $srcdir/glibc-2.22-roundup.patch
 
   mkdir ${srcdir}/glibc-build

Modified: glibc-2.22-roundup.patch
===
--- glibc-2.22-roundup.patch2015-10-11 23:07:53 UTC (rev 248900)
+++ glibc-2.22-roundup.patch2015-10-11 23:14:59 UTC (rev 248901)
@@ -1,8 +1,64 @@
 diff --git a/ChangeLog b/ChangeLog
-index cb9124e..d0d2cbd 100644
+index cb9124e..491d5c7 100644
 --- a/ChangeLog
 +++ b/ChangeLog
-@@ -1,3 +1,74 @@
+@@ -1,3 +1,130 @@
++2015-10-09  Carlos O'Donell  
++
++  [BZ #18589]
++  * string/bug-strcoll2.c: Adjust copyright, and remove contributed by.
++  * string/Makefile ($(objpfx)bug-strcoll2.out): Depend on
++  $(gen-locales).
++
++2015-10-08  Carlos O'Donell  
++
++  [BZ #18589]
++  * string/Makefile (tests): Add bug-strcoll2.
++  (LOCALES): Add cs_CZ.UTF-8.
++
++2015-09-28  Martin Sebor  
++
++  [BZ #18969]
++  * string/Makefile (LOCALES): Define.
++  (gen-locales.mk): Include.
++  (test-strcasecmp.out, test-strncasecmp.out, tst-strxfrm.out)
++  (tst-strxfrm2.out): Add deppendency on $(gen-locales).
++  * string/tst-strxfrm2.c (do_test): Print the name of the locale
++  on setlocale failure.
++
++2015-10-08  Carlos O'Donell  
++
++  [BZ #18589]
++  * string/bug-strcoll2.c: New file.
++  * locale/categories.def: Revert commit
++  f13c2a8dff2329c6692a80176262ceaaf8a6f74e.
++  * locale/langinfo.h: Likewise.
++  * locale/localeinfo.h: Likewise.
++  * locale/C-collate.c: Likewise.
++  * programs/ld-collate.c (collate_output): Likewise.
++  * string/strcoll_l.c (STRDIFF): Likewise.
++  (STRCOLL): Likewise.
++  * wcsmbs/wcscoll_l.c: Likewise.
++
++2015-09-15  Roland McGrath  
++
++  * misc/sys/param.h [!MAXHOSTNAMELEN && HOST_NAME_MAX]
++  (MAXHOSTNAMELEN): Define it to HOST_NAME_MAX.
++
++2015-09-11  Roland McGrath  
++
++  * sysdeps/nacl/Makefile [$(subdir) = misc] (sysdep_headers):
++  Use 'override' keyword to freeze the value here, preventing
++  the addition of sys/mtio.h by sysdeps/gnu/Makefile.
++
++2015-09-04  Roland McGrath  
++
++  [BZ #18921]
++  * sysdeps/posix/opendir.c (need_isdir_precheck) [O_DIRECTORY]:
++  Fix inverted sense of test of 'o_directory_works' value.
++  Reported by Pádraig Brady , diagnosed by
++  Bernhard Voelker .
++
 +2015-08-31  Brett Neumeier 
 +
 +  [BZ #18870]
@@ -78,7 +134,7 @@
  
* version.h (RELEASE): Set to "stable".
 diff --git a/NEWS b/NEWS
-index 4c31de7..ce0255a 100644
+index 4c31de7..9b10bff 100644
 --- a/NEWS
 +++ b/NEWS
 @@ -5,6 +5,12 @@ See the end for copying conditions.
@@ -89,7 +145,7 @@
 +
 +* The following bugs are resolved with this release:
 +
-+  18778, 18781, 18787, 18796, 18870, 18887.
++  18589, 18778, 18781, 18787, 18796, 18870, 18887, 18921, 18969.
 +
  Version 2.22
  
@@ -286,6 +342,97 @@
test_ftello ();
  
return 0;
+diff --git a/locale/C-collate.c b/locale/C-collate.c
+index d7f3c55..06dfdfa 100644
+--- a/locale/C-collate.c
 b/locale/C-collate.c
+@@ -144,8 +144,6 @@ const struct __locale_data _nl_C_LC_COLLATE 
attribute_hidden =
+ /* _NL_COLLATE_COLLSEQWC */
+ { .string = (const char *) collseqwc },
+ /* _NL_COLLATE_CODESET */
+-{ .string = _nl_C_codeset },
+-/* _NL_COLLATE_ENCODING_TYPE */
+-{ .word = __cet_8bit }
++{ .string = _nl_C_codeset }
+   }
+ };
+diff --git a/locale/categories.def b/locale/categories.def
+index 045489d..a8dda53 100644
+--- a/locale/categories.def
 

  1   2   >