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

2011-10-28 Thread Tobias Powalowski
Date: Saturday, October 29, 2011 @ 02:28:43
  Author: tpowa
Revision: 141309

add check function

Modified:
  lzo2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-29 06:26:33 UTC (rev 141308)
+++ PKGBUILD2011-10-29 06:28:43 UTC (rev 141309)
@@ -3,7 +3,7 @@
 # Maintainer: dorphell 
 pkgname=lzo2
 pkgver=2.06
-pkgrel=1
+pkgrel=2
 pkgdesc="Portable lossless data compression library"
 arch=('i686' 'x86_64')
 url="http://www.oberhumer.com/opensource/lzo";
@@ -21,9 +21,15 @@
 
   # build minilzo
   gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
-  gcc -g -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 
minilzo/minilzo.o
+  gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 
minilzo/minilzo.o
 }
 
+check() {
+  cd "${srcdir}/lzo-${pkgver}"
+  make test # Larger test
+  make check
+}
+
 package() {
   cd "${srcdir}/lzo-${pkgver}"
   make DESTDIR=${pkgdir} install



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

2011-10-28 Thread Tobias Powalowski
Date: Saturday, October 29, 2011 @ 02:26:33
  Author: tpowa
Revision: 141308

function cleanup and add signature

Modified:
  gnupg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-29 06:24:10 UTC (rev 141307)
+++ PKGBUILD2011-10-29 06:26:33 UTC (rev 141308)
@@ -12,19 +12,25 @@
 license=('GPL')
 url="http://www.gnupg.org/";
 install=${pkgname}.install
-source=(ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-$pkgver.tar.bz2)
+source=(ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-$pkgver.tar.bz2{,.sig})
+sha1sums=('5ec2f718760cc3121970a140aeea004b64545c46'
+  'c1b15a6c204434081e2bd8249dde233b6c88c4d0')
 
 build() {
   cd ${srcdir}/gnupg-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg2 #$EXTRAOPTS
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg2
   make
 }
 
+check() {
+  cd ${srcdir}/gnupg-$pkgver
+  make check
+}
+
 package() {
   cd ${srcdir}/gnupg-$pkgver
   make DESTDIR=${pkgdir} install
   # move conflicting files
   mv ${pkgdir}/usr/share/gnupg{,2}
-  rm -f ${pkgdir}/usr/share/info/dir
 }
 md5sums=('2f37e0722666a0fedbe4d9f9227ac4d7')



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

2011-10-28 Thread Tobias Powalowski
Date: Saturday, October 29, 2011 @ 02:24:10
  Author: tpowa
Revision: 141307

add sig file and function cleanup

Modified:
  gpgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-29 06:21:18 UTC (rev 141306)
+++ PKGBUILD2011-10-29 06:24:10 UTC (rev 141307)
@@ -13,18 +13,23 @@
 depends=('libgpg-error' 'pth' 'gnupg' 'gnupg2')
 install=${pkgname}.install
 options=('!libtool' '!emptydirs')
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('7d19a95a2239da13764dad7f97541be884ec5a37'
+  '93316a81a8f903c5b604716b6937884ea7b0917a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make || return 1
+  ./configure --prefix=/usr --disable-static
+  make
 }
 
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install || return 1
-  rm ${pkgdir}/usr/share/info/dir
-  gzip ${pkgdir}/usr/share/info/*
+  make DESTDIR=${pkgdir} install
 }
 md5sums=('90afa8436ce2b2683c001c824bd22601')



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

2011-10-28 Thread Tobias Powalowski
Date: Saturday, October 29, 2011 @ 02:21:18
  Author: tpowa
Revision: 141306

add package function

Modified:
  dirmngr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 15:25:26 UTC (rev 141305)
+++ PKGBUILD2011-10-29 06:21:18 UTC (rev 141306)
@@ -16,6 +16,10 @@
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr  --libexecdir=/usr/lib
   make 
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }
 md5sums=('f2570f0248f5947daac200e85291b328')



[arch-commits] Commit in texlive-bin/repos/extra-x86_64 (12 files)

2011-10-28 Thread Rémy Oudompheng
Date: Friday, October 28, 2011 @ 11:25:26
  Author: remy
Revision: 141305

archrelease: copy trunk to extra-x86_64

Added:
  texlive-bin/repos/extra-x86_64/09-texlive-fonts.conf
(from rev 141304, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/extra-x86_64/PKGBUILD
(from rev 141304, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/extra-x86_64/archlinux-build.patch
(from rev 141304, texlive-bin/trunk/archlinux-build.patch)
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
(from rev 141304, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/extra-x86_64/texlive.install
(from rev 141304, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/extra-x86_64/texmf.cnf
(from rev 141304, texlive-bin/trunk/texmf.cnf)
Deleted:
  texlive-bin/repos/extra-x86_64/09-texlive-fonts.conf
  texlive-bin/repos/extra-x86_64/PKGBUILD
  texlive-bin/repos/extra-x86_64/archlinux-build.patch
  texlive-bin/repos/extra-x86_64/fix-fontforge-encoding.patch
  texlive-bin/repos/extra-x86_64/texlive.install
  texlive-bin/repos/extra-x86_64/texmf.cnf

--+
 09-texlive-fonts.conf|   18 
 PKGBUILD |  676 ++--
 archlinux-build.patch|   80 +-
 fix-fontforge-encoding.patch |   24 
 texlive.install  |   36 -
 texmf.cnf| 1352 -
 6 files changed, 1093 insertions(+), 1093 deletions(-)

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


[arch-commits] Commit in texlive-bin/repos/extra-i686 (12 files)

2011-10-28 Thread Rémy Oudompheng
Date: Friday, October 28, 2011 @ 11:25:08
  Author: remy
Revision: 141304

archrelease: copy trunk to extra-i686

Added:
  texlive-bin/repos/extra-i686/09-texlive-fonts.conf
(from rev 141303, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/extra-i686/PKGBUILD
(from rev 141303, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/extra-i686/archlinux-build.patch
(from rev 141303, texlive-bin/trunk/archlinux-build.patch)
  texlive-bin/repos/extra-i686/fix-fontforge-encoding.patch
(from rev 141303, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/extra-i686/texlive.install
(from rev 141303, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/extra-i686/texmf.cnf
(from rev 141303, texlive-bin/trunk/texmf.cnf)
Deleted:
  texlive-bin/repos/extra-i686/09-texlive-fonts.conf
  texlive-bin/repos/extra-i686/PKGBUILD
  texlive-bin/repos/extra-i686/archlinux-build.patch
  texlive-bin/repos/extra-i686/fix-fontforge-encoding.patch
  texlive-bin/repos/extra-i686/texlive.install
  texlive-bin/repos/extra-i686/texmf.cnf

--+
 09-texlive-fonts.conf|   18 
 PKGBUILD |  676 ++--
 archlinux-build.patch|   80 +-
 fix-fontforge-encoding.patch |   24 
 texlive.install  |   36 -
 texmf.cnf| 1352 -
 6 files changed, 1093 insertions(+), 1093 deletions(-)

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


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

2011-10-28 Thread Rémy Oudompheng
Date: Friday, October 28, 2011 @ 11:14:43
  Author: remy
Revision: 141303

upgpkg: texlive-bin 2011.1-3

Rebuild without libgraphite dependency.

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 15:04:01 UTC (rev 141302)
+++ PKGBUILD2011-10-28 15:14:43 UTC (rev 141303)
@@ -4,11 +4,11 @@
 pkgname=texlive-bin
 pkgver=2011.1
 _luatex_ver=0.70.1
-pkgrel=2
+pkgrel=3
 pkgdesc="TeX Live binaries"
 license=('GPL')
 arch=('i686' 'x86_64')
-depends=('t1lib' 'gd' 'libgraphite' 'poppler' 'libsigsegv' 'zziplib')
+depends=('t1lib' 'gd' 'poppler' 'libsigsegv' 'zziplib')
 makedepends=('perl' 'clisp' 'ffcall')
 optdepends=('ed: for texconfig')
 provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
@@ -70,7 +70,7 @@
 --disable-ptex \
 --enable-luatex  \
 --without-system-ptexenc \
---with-system-graphite \
+--without-system-graphite \
 --without-system-icu \
 --without-system-kpathsea \
 --with-system-freetype2 \
@@ -131,7 +131,7 @@
  --with-system-poppler \
  --with-system-xpdf \
  --with-system-freetype2 \
- --with-system-graphite \
+ --without-system-graphite \
  --with-freetype2-libdir=/usr/lib \
  --with-freetype2-include=/usr/include/freetype2 \
  --with-xdvi-x-toolkit=xaw \



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

2011-10-28 Thread Evangelos Foutras
Date: Friday, October 28, 2011 @ 11:04:01
  Author: foutrelis
Revision: 141302

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

Added:
  llvm/repos/testing-i686/
  llvm/repos/testing-i686/PKGBUILD
(from rev 141301, llvm/trunk/PKGBUILD)
  llvm/repos/testing-i686/bug-9869-operator-h-c++0x.patch
(from rev 141301, llvm/trunk/bug-9869-operator-h-c++0x.patch)
  llvm/repos/testing-i686/cindexer-clang-path.patch
(from rev 141301, llvm/trunk/cindexer-clang-path.patch)
  llvm/repos/testing-i686/clang-plugin-loader-registry.patch
(from rev 141301, llvm/trunk/clang-plugin-loader-registry.patch)
  llvm/repos/testing-i686/clang-pure64.patch
(from rev 141301, llvm/trunk/clang-pure64.patch)
  llvm/repos/testing-i686/clang-toolchains-gcc-versions.patch
(from rev 141301, llvm/trunk/clang-toolchains-gcc-versions.patch)
  llvm/repos/testing-i686/enable-lto.patch
(from rev 141301, llvm/trunk/enable-lto.patch)
  llvm/repos/testing-x86_64/
  llvm/repos/testing-x86_64/PKGBUILD
(from rev 141301, llvm/trunk/PKGBUILD)
  llvm/repos/testing-x86_64/bug-9869-operator-h-c++0x.patch
(from rev 141301, llvm/trunk/bug-9869-operator-h-c++0x.patch)
  llvm/repos/testing-x86_64/cindexer-clang-path.patch
(from rev 141301, llvm/trunk/cindexer-clang-path.patch)
  llvm/repos/testing-x86_64/clang-plugin-loader-registry.patch
(from rev 141301, llvm/trunk/clang-plugin-loader-registry.patch)
  llvm/repos/testing-x86_64/clang-pure64.patch
(from rev 141301, llvm/trunk/clang-pure64.patch)
  llvm/repos/testing-x86_64/clang-toolchains-gcc-versions.patch
(from rev 141301, llvm/trunk/clang-toolchains-gcc-versions.patch)
  llvm/repos/testing-x86_64/enable-lto.patch
(from rev 141301, llvm/trunk/enable-lto.patch)

+
 testing-i686/PKGBUILD  |  231 +++
 testing-i686/bug-9869-operator-h-c++0x.patch   |   57 
 testing-i686/cindexer-clang-path.patch |   10 
 testing-i686/clang-plugin-loader-registry.patch|   11 
 testing-i686/clang-pure64.patch|   38 +++
 testing-i686/clang-toolchains-gcc-versions.patch   |   12 
 testing-i686/enable-lto.patch  |   36 ++
 testing-x86_64/PKGBUILD|  231 +++
 testing-x86_64/bug-9869-operator-h-c++0x.patch |   57 
 testing-x86_64/cindexer-clang-path.patch   |   10 
 testing-x86_64/clang-plugin-loader-registry.patch  |   11 
 testing-x86_64/clang-pure64.patch  |   38 +++
 testing-x86_64/clang-toolchains-gcc-versions.patch |   12 
 testing-x86_64/enable-lto.patch|   36 ++
 14 files changed, 790 insertions(+)

Copied: llvm/repos/testing-i686/PKGBUILD (from rev 141301, llvm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-10-28 15:04:01 UTC (rev 141302)
@@ -0,0 +1,231 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: Sebastian Nowicki 
+# Contributor: Devin Cofer 
+# Contributor: Tobias Kieslich 
+# Contributor: Geoffroy Carrier 
+# Contributor: Tomas Lindquist Olsen 
+# Contributor: Roberto Alsina 
+# Contributor: Gerardo Exequiel Pozzi 
+
+pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
+pkgver=2.9
+_gcc_ver=4.6.2
+pkgrel=7
+arch=('i686' 'x86_64')
+url="http://llvm.org/";
+license=('custom:University of Illinois/NCSA Open Source License')
+makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=$_gcc_ver")
+source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tgz
+http://llvm.org/releases/$pkgver/clang-$pkgver.tgz
+ftp://ftp.archlinux.org/other/community/clang/gcc-headers-4.5.2.tar.xz
+clang-plugin-loader-registry.patch
+cindexer-clang-path.patch
+clang-toolchains-gcc-versions.patch
+clang-pure64.patch
+enable-lto.patch
+bug-9869-operator-h-c++0x.patch)
+sha256sums=('661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779'
+'70c41f3f782a71cbaa7bc8d6ea29fce4263ad3e8558dfecc6dc11cdef17909df'
+'12cf0bfb128cd8bd2a308c3c03cf0e607aa47bd87d9a58b422b96bd387e476c1'
+'a0a4494f2a692789670be37fd390906dcaa37b1824f740bdaaea21182f2f3a9c'
+'3074df5322900e087377a8e03a02115463ccc0011c25917c2f06df11facd9b92'
+'7c05788c02697f0cd05f7c74fe65b460530c0748851313eb950c5d4d17a8115a'
+'5bba4964d0d832c9e97308beb45244ff6ed4e16ed3f9f771babe571f1b82fa33'
+'1a308679edf3078b8f0c33c94d4e6d0c0db6d3baad91babce08bf5370aa052ef'
+'1c37346b0f412556dc979fd510585f3e20d2d45319ec095dbdec37a582d590c7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # At the present, clang must reside inside the LLVM source code tree to build
+  # See http://llvm.org/bugs/show_bug.cgi?id=4840
+  rm -rf tools/clang
+  cp 

[arch-commits] Commit in llvm/trunk (PKGBUILD clang-toolchains-gcc-versions.patch)

2011-10-28 Thread Evangelos Foutras
Date: Friday, October 28, 2011 @ 11:03:12
  Author: foutrelis
Revision: 141301

upgpkg: llvm 2.9-7

GCC 4.6.2 rebuild.

Modified:
  llvm/trunk/PKGBUILD
  llvm/trunk/clang-toolchains-gcc-versions.patch

-+
 PKGBUILD|   22 +++---
 clang-toolchains-gcc-versions.patch |2 +-
 2 files changed, 12 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 13:49:24 UTC (rev 141300)
+++ PKGBUILD2011-10-28 15:03:12 UTC (rev 141301)
@@ -11,8 +11,8 @@
 
 pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
 pkgver=2.9
-_gcc_ver=4.6.1
-pkgrel=6
+_gcc_ver=4.6.2
+pkgrel=7
 arch=('i686' 'x86_64')
 url="http://llvm.org/";
 license=('custom:University of Illinois/NCSA Open Source License')
@@ -26,15 +26,15 @@
 clang-pure64.patch
 enable-lto.patch
 bug-9869-operator-h-c++0x.patch)
-md5sums=('793138412d2af2c7c7f54615f8943771'
- '634de18d04b7a4ded19ec4c17d23cfca'
- '70e23a3dc2b38ecb2bb4d2c48f47295d'
- '02c23b4aaca3445b8bf39fddb2f9906e'
- '87a7162dbe99e9ffce6c40bd09f5f4f0'
- '016d70145d52255c9a46fedde51634e2'
- '225ee6b531f8327f34f344a18cb4ec81'
- '8f7582d7440e4a8342c3aea9ec714fb4'
- '047cac563a557463d7ec6bd87d953f5e')
+sha256sums=('661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779'
+'70c41f3f782a71cbaa7bc8d6ea29fce4263ad3e8558dfecc6dc11cdef17909df'
+'12cf0bfb128cd8bd2a308c3c03cf0e607aa47bd87d9a58b422b96bd387e476c1'
+'a0a4494f2a692789670be37fd390906dcaa37b1824f740bdaaea21182f2f3a9c'
+'3074df5322900e087377a8e03a02115463ccc0011c25917c2f06df11facd9b92'
+'7c05788c02697f0cd05f7c74fe65b460530c0748851313eb950c5d4d17a8115a'
+'5bba4964d0d832c9e97308beb45244ff6ed4e16ed3f9f771babe571f1b82fa33'
+'1a308679edf3078b8f0c33c94d4e6d0c0db6d3baad91babce08bf5370aa052ef'
+'1c37346b0f412556dc979fd510585f3e20d2d45319ec095dbdec37a582d590c7')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"

Modified: clang-toolchains-gcc-versions.patch
===
--- clang-toolchains-gcc-versions.patch 2011-10-28 13:49:24 UTC (rev 141300)
+++ clang-toolchains-gcc-versions.patch 2011-10-28 15:03:12 UTC (rev 141301)
@@ -6,7 +6,7 @@
}
  
 -  const char* GccVersions[] = {"4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4",
-+  const char* GccVersions[] = {"4.6.1", "4.5.2", "4.5.1", "4.5", "4.4.5", 
"4.4.4",
++  const char* GccVersions[] = {"4.6.2", "4.5.2", "4.5.1", "4.5", "4.4.5", 
"4.4.4",
 "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2",
 "4.3", "4.2.4", "4.2.3", "4.2.2", "4.2.1",
 "4.2"};



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

2011-10-28 Thread andyrtr
Date: Friday, October 28, 2011 @ 09:49:24
  Author: andyrtr
Revision: 141300

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

Added:
  gnutls/repos/extra-i686/PKGBUILD
(from rev 141299, gnutls/trunk/PKGBUILD)
  gnutls/repos/extra-i686/gnutls.install
(from rev 141299, gnutls/trunk/gnutls.install)
  gnutls/repos/extra-x86_64/PKGBUILD
(from rev 141299, gnutls/trunk/PKGBUILD)
  gnutls/repos/extra-x86_64/gnutls.install
(from rev 141299, gnutls/trunk/gnutls.install)
Deleted:
  gnutls/repos/extra-i686/PKGBUILD
  gnutls/repos/extra-i686/addGNU-stack.diff
  gnutls/repos/extra-i686/gnutls.install
  gnutls/repos/extra-x86_64/PKGBUILD
  gnutls/repos/extra-x86_64/addGNU-stack.diff
  gnutls/repos/extra-x86_64/gnutls.install

+
 extra-i686/PKGBUILD|   83 ++-
 extra-i686/addGNU-stack.diff   |   13 --
 extra-i686/gnutls.install  |   40 +-
 extra-x86_64/PKGBUILD  |   83 ++-
 extra-x86_64/addGNU-stack.diff |   13 --
 extra-x86_64/gnutls.install|   40 +-
 6 files changed, 120 insertions(+), 152 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-28 13:41:02 UTC (rev 141299)
+++ extra-i686/PKGBUILD 2011-10-28 13:49:24 UTC (rev 141300)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnutls
-pkgver=3.0.4
-pkgrel=2
-pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
-url="http://www.gnu.org/software/gnutls/";
-install=gnutls.install
-options=('!libtool' '!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit')
-makedepends=('valgrind')
-source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz
-   addGNU-stack.diff)
-md5sums=('748d537027978abcb7dd33ec396dc511'
- '19b92429e8d1639cfc4dfad0883298cb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/addGNU-stack.diff
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile \
-   --disable-valgrind-tests # breaks make check. errors have been reported 
upstream
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check # passes all  || /bin/true
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
-  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-i686/PKGBUILD (from rev 141299, 
gnutls/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-28 13:49:24 UTC (rev 141300)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnutls
+pkgver=3.0.5
+pkgrel=1
+pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="http://www.gnu.org/software/gnutls/";
+install=gnutls.install
+options=('!libtool' '!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit')
+makedepends=('valgrind')
+source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz)
+md5sums=('c2d4e6344974545c228a1df2147bf334')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile \
+   --disable-valgrind-tests # breaks make check. errors have been reported 
upstream
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check # passes all  || /bin/true
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
+  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
+}

Deleted: extra-i686/addGNU-stack.diff
===
--- extra-i686/addGNU-stack.diff2011-10-28 13:41:02 UTC (rev 141299)
+++ extra-i686/addGNU-stack.diff2011-10-28 13:49:24 UTC (rev 141300)
@@ -1,13 +0,0 @@
-Description: Prevent executable stack
-Author: Andreas Metzler 
-
 gnutls28-3.0.4.orig/lib/accelerated/x86/asm/padlock-common.s
-+++ gnutls28-3.0.4/lib/accelerated/x86/asm/padlock-common.s
-@@ -38,3 +38,7 @@ is_padlock_nano:
-   xorl%eax,%eax
- ret
- .size is_padlock_nano,.-is_padlock_nano
-+
-+#if defined(__linux__) && def

[arch-commits] Commit in gnutls/trunk (PKGBUILD addGNU-stack.diff)

2011-10-28 Thread andyrtr
Date: Friday, October 28, 2011 @ 09:41:02
  Author: andyrtr
Revision: 141299

upgpkg: gnutls 3.0.5-1

upstream update 3.0.5; sovles FS#26560

Modified:
  gnutls/trunk/PKGBUILD
Deleted:
  gnutls/trunk/addGNU-stack.diff

---+
 PKGBUILD  |   11 ---
 addGNU-stack.diff |   13 -
 2 files changed, 4 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 12:53:34 UTC (rev 141298)
+++ PKGBUILD2011-10-28 13:41:02 UTC (rev 141299)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnutls
-pkgver=3.0.4
-pkgrel=2
+pkgver=3.0.5
+pkgrel=1
 pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
 arch=('i686' 'x86_64')
 license=('GPL3' 'LGPL')
@@ -12,14 +12,11 @@
 options=('!libtool' '!zipman')
 depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit')
 makedepends=('valgrind')
-source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz
-   addGNU-stack.diff)
-md5sums=('748d537027978abcb7dd33ec396dc511'
- '19b92429e8d1639cfc4dfad0883298cb')
+source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz)
+md5sums=('c2d4e6344974545c228a1df2147bf334')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i ${srcdir}/addGNU-stack.diff
   ./configure --prefix=/usr \
--with-zlib \
--disable-static \

Deleted: addGNU-stack.diff
===
--- addGNU-stack.diff   2011-10-28 12:53:34 UTC (rev 141298)
+++ addGNU-stack.diff   2011-10-28 13:41:02 UTC (rev 141299)
@@ -1,13 +0,0 @@
-Description: Prevent executable stack
-Author: Andreas Metzler 
-
 gnutls28-3.0.4.orig/lib/accelerated/x86/asm/padlock-common.s
-+++ gnutls28-3.0.4/lib/accelerated/x86/asm/padlock-common.s
-@@ -38,3 +38,7 @@ is_padlock_nano:
-   xorl%eax,%eax
- ret
- .size is_padlock_nano,.-is_padlock_nano
-+
-+#if defined(__linux__) && defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif



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

2011-10-28 Thread andyrtr
Date: Friday, October 28, 2011 @ 08:53:34
  Author: andyrtr
Revision: 141298

prepare next release

Modified:
  libreoffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 10:57:26 UTC (rev 141297)
+++ PKGBUILD2011-10-28 12:53:34 UTC (rev 141298)
@@ -35,9 +35,9 @@
'libreoffice-extension-validator'
'libreoffice-extension-watch-window'
'libreoffice-extension-wiki-publisher')
-_LOver=3.4.3.2
-pkgver=3.4.3
-pkgrel=4
+_LOver=3.4.4.1
+pkgver=3.4.4
+pkgrel=1
 arch=('i686' 'x86_64')
 #_LO_tree="3.4"
 _OFFICEUPD="340"
@@ -52,15 +52,15 @@
  # the depends from libreoffice main pkg
  "curl>=7.20.0" "hunspell>=1.2.8" "python2>=2.7" 'libwpd>=0.9.2' 
'libwps' 'libxaw' "neon>=0.28.6"
  'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 
"icu>=4.6" 'libxslt'
- 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
#'libgraphite' 
+ 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite' 
  'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 
'gtk2' 'orbit2' # keep gtk2 for install script
 'ttf-dejavu') # to satisfy regression tests
 # translate-toolkit - todo move them to extra to allow 
--with-system-foo builds
 # http://download.documentfoundation.org/mirrors/all.html
 # http://wiki.documentfoundation.org/Mirrors
 
-_mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver}";
-#_mirror="http://dev-builds.libreoffice.org/pre-releases/src";
+#_mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver}";
+_mirror="http://dev-builds.libreoffice.org/pre-releases/src";
 _additional_source_url="http://hg.services.openoffice.org/binaries";
 
source=(${_mirror}/${pkgbase}-{artwork,base,bootstrap,calc,components,extensions,extras,filters,help,impress,libs-core,libs-extern,libs-extern-sys,libs-gui,postprocess,sdk,testing,ure,writer}-${_LOver}.tar.bz2
 #,translations

${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
@@ -91,7 +91,6 @@

http://download.go-oo.org/extern/b4cae0700aa1c2aef7eb7f345365e6f1-translate-toolkit-1.8.1.tar.bz2

http://download.go-oo.org/src/90401bca927835b6fbae4a707ed187c8-nlpsolver-0.9.tar.bz2

http://download.go-oo.org/src/f02578f5218f217a9f20e9c30e119c6a-boost_1_44_0.tar.bz2
-   
http://download.go-oo.org/src/0625a7d661f899a8ce263fc8a9879108-graphite2-0.9.2.tgz

http://download.go-oo.org/src/451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt

http://ooo.itc.hu/oxygenoffice/download/libreoffice/7e7efc5d4a03126bb9ae3ae9aa2c4e87-Barcode_1.3.1.0.oxt

http://ooo.itc.hu/oxygenoffice/download/libreoffice/41c9b65ad60af4b3255bbecdfef11736-Diagram_1.1.0.0.oxt
@@ -149,27 +148,26 @@
dbaafd21de055e582d92d7d32fe9da13-gdocs_2.3.1.oxt
b7b2d0e04e142f26dd96119c80757d1f-oooblogger_0.1.oxt
90401bca927835b6fbae4a707ed187c8-nlpsolver-0.9.tar.bz2
-   f02578f5218f217a9f20e9c30e119c6a-boost_1_44_0.tar.bz2
-   0625a7d661f899a8ce263fc8a9879108-graphite2-0.9.2.tgz)
-md5sums=('7c2e73f1197d169519f86efe422e5df9'
- '823956297a7e0b7603c585c49bd9fd4e'
- '465b3be0e30f88e1139c45d2e2217927'
- 'a1d5af5be5eb522c8a24feacbb0161fa'
- '8b972e130dfe62eb41d1d71d72de4b76'
- 'a6b22494e3a65a3b242ecb896aa7ab48'
- 'b7d86f8baee5b31af210cc81785e5676'
- 'de6c062d334daab99cf0592aa3568215'
- 'df46914d540ef0126cd746d09c68ca2a'
- '8f308250c397ddc6fdb1aae13e102927'
- '1fd00a0fcfd4a5d1956c3f6a0990d1ce'
- '86914ac8bc30ea721b708b2f2faa3111'
- '1452229e57ac3c4191e798eac4c0a7e0'
- 'bb46bdb682689629d432cdbf5f3f42c2'
- 'bec7f633562762debdf810690002e688'
- '87061613efece1c253906a90cd4dc01f'
- '308284d7d1d1bd6860d128b26e24390b'
- 'fa8b36365a2b2fb110c44886d7069774'
- 'da8a40cac4bd9d4f6f326e0e3b1b7e2a'
+   f02578f5218f217a9f20e9c30e119c6a-boost_1_44_0.tar.bz2)
+md5sums=('e72c2e635a7d135b023a7f6bb5702d68'
+ 'ceff417262fb7126d88ae007e062e3ce'
+ '1e7cd7836b147101802c8f89fee67675'
+ '798d86647c1422f45f6a99db06d952d0'
+ 'd84cef6e948ffe9c1f4a582b16aa6f46'
+ '9b262687c3c481a918dd467498b1ce03'
+ 'cba7df43d55f3953c30c1512e778af4a'
+ 'a34f96560113028a355970f244a97549'
+ '69045f52959bd9138b4093500999bb16'
+ 'ad97b25733c69031aa42dab00d259072'
+ 'f63a8327eae9f9ff4baf2bf7fb0e8efb'
+ 'b584e72576a403145f73f5922811bd6c'
+ '8cb22a69c9c4f51fb1346ad70d91e68e'
+ 'c53c3e6aa4ac01dbeb62f0cd2c56955f'
+ '6657a26fb60a4a01138d3e29bc89e1d8'
+ 'e2078a9cad3ff446508e5acbb1a14e58'
+ '2dbcf245ca4ed3a

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 06:57:26
  Author: tpowa
Revision: 141297

db-move: moved pam from [testing] to [core] (x86_64)

Added:
  pam/repos/core-x86_64/PKGBUILD
(from rev 141295, pam/repos/testing-x86_64/PKGBUILD)
  pam/repos/core-x86_64/other
(from rev 141295, pam/repos/testing-x86_64/other)
  pam/repos/core-x86_64/pam.install
(from rev 141295, pam/repos/testing-x86_64/pam.install)
Deleted:
  pam/repos/core-x86_64/PKGBUILD
  pam/repos/core-x86_64/other
  pam/repos/core-x86_64/pam.install
  pam/repos/testing-x86_64/

-+
 PKGBUILD|  116 ++
 other   |   10 ++---
 pam.install |   24 ++--
 3 files changed, 77 insertions(+), 73 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-10-28 10:57:25 UTC (rev 141296)
+++ core-x86_64/PKGBUILD2011-10-28 10:57:26 UTC (rev 141297)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=pam
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="PAM (Pluggable Authentication Modules) library"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.kernel.org/pub/linux/libs/pam/";
-depends=('glibc' 'db' 'cracklib' 'libtirpc')
-makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
-backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/pam.d/other etc/default/passwd etc/environment)
-source=(http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
-ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.6.tar.bz2
-other)
-options=('!libtool' '!emptydirs')
-md5sums=('e9af5fb27bb22edb55d077e2888b3ebc'
- 'e2788389a6c59224110a45fcff30e02b'
- '6e6c8719e5989d976a14610f340bd33a')
-
-build() {
-  cd $srcdir/Linux-PAM-$pkgver
-  ./configure --sysconfdir=/etc DESTDIR=$pkgdir --libdir=/lib
-  make
-}
-
-package() {
-  cd $srcdir/Linux-PAM-$pkgver
-  make INSTALL=/bin/install DESTDIR=$pkgdir install
-  install -D -m644 ../other $pkgdir/etc/pam.d/other
-  # build pam_unix2 module
-  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
-  cd $srcdir/pam_unix2-2.6
-  ./configure
-  make
-  make DESTDIR=$pkgdir install
-  # add the realtime permissions for audio users
-  sed -i 's|# End of file||' $pkgdir/etc/security/limits.conf
-  cat >>$pkgdir/etc/security/limits.conf <<_EOT
-*   -   rtprio  0
-*   -   nice0
-@audio  -   rtprio  65
-@audio  -   nice   -10
-@audio  -   memlock 4
-_EOT
-  # fix some missing symlinks from old pam for compatibility
-  cd $pkgdir/lib/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
-  # set unix_chkpwd uid
-  chmod +s $pkgdir/sbin/unix_chkpwd
-}

Copied: pam/repos/core-x86_64/PKGBUILD (from rev 141295, 
pam/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-10-28 10:57:26 UTC (rev 141297)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=pam
+pkgver=1.1.5
+pkgrel=1
+pkgdesc="PAM (Pluggable Authentication Modules) library"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.kernel.org/pub/linux/libs/pam/";
+depends=('glibc' 'db' 'cracklib' 'libtirpc')
+makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
+backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/pam.d/other etc/default/passwd etc/environment)
+source=(https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$pkgver.tar.bz2
+
#http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
+ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.6.tar.bz2
+other)
+options=('!libtool' '!emptydirs')
+md5sums=('927ee5585bdec5256c75117e9348aa47'
+ 'e2788389a6c59224110a45fcff30e02b'
+ '6e6c8719e5989d976a14610f340bd33a')
+
+build() {
+  cd $srcdir/Linux-PAM-$pkgver
+  ./configure --sysconfdir=/etc DESTDIR=$pkgdir --libdir=/lib
+  make
+}
+
+package() {
+  cd $srcdir/Linux-PAM-$pkgver
+  make INSTALL=/bin/install DESTDIR=$pkgdir install
+  install -D -m644 ../other $pkgdir/etc/pam.d/other
+  # build pam_unix2 module
+  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
+  cd $srcdir/pam_unix2-2.6
+  ./configure
+  make
+  make DESTDIR=$pkgdir install
+  # add the realtime permissions for audio users
+  sed -i 's|# End of file||' $pkgdir/etc/security/limits.conf
+  cat >>$pkgdir/etc/security/limits.conf <<_EOT
+*   -   rtprio  0
+*   -   nice0
+@a

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 06:57:25
  Author: tpowa
Revision: 141296

db-move: moved pam from [testing] to [core] (i686)

Added:
  pam/repos/core-i686/PKGBUILD
(from rev 141295, pam/repos/testing-i686/PKGBUILD)
  pam/repos/core-i686/other
(from rev 141295, pam/repos/testing-i686/other)
  pam/repos/core-i686/pam.install
(from rev 141295, pam/repos/testing-i686/pam.install)
Deleted:
  pam/repos/core-i686/PKGBUILD
  pam/repos/core-i686/other
  pam/repos/core-i686/pam.install
  pam/repos/testing-i686/

-+
 PKGBUILD|  116 ++
 other   |   10 ++---
 pam.install |   24 ++--
 3 files changed, 77 insertions(+), 73 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-10-28 08:03:30 UTC (rev 141295)
+++ core-i686/PKGBUILD  2011-10-28 10:57:25 UTC (rev 141296)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=pam
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="PAM (Pluggable Authentication Modules) library"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.kernel.org/pub/linux/libs/pam/";
-depends=('glibc' 'db' 'cracklib' 'libtirpc')
-makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
-backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/pam.d/other etc/default/passwd etc/environment)
-source=(http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
-ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.6.tar.bz2
-other)
-options=('!libtool' '!emptydirs')
-md5sums=('e9af5fb27bb22edb55d077e2888b3ebc'
- 'e2788389a6c59224110a45fcff30e02b'
- '6e6c8719e5989d976a14610f340bd33a')
-
-build() {
-  cd $srcdir/Linux-PAM-$pkgver
-  ./configure --sysconfdir=/etc DESTDIR=$pkgdir --libdir=/lib
-  make
-}
-
-package() {
-  cd $srcdir/Linux-PAM-$pkgver
-  make INSTALL=/bin/install DESTDIR=$pkgdir install
-  install -D -m644 ../other $pkgdir/etc/pam.d/other
-  # build pam_unix2 module
-  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
-  cd $srcdir/pam_unix2-2.6
-  ./configure
-  make
-  make DESTDIR=$pkgdir install
-  # add the realtime permissions for audio users
-  sed -i 's|# End of file||' $pkgdir/etc/security/limits.conf
-  cat >>$pkgdir/etc/security/limits.conf <<_EOT
-*   -   rtprio  0
-*   -   nice0
-@audio  -   rtprio  65
-@audio  -   nice   -10
-@audio  -   memlock 4
-_EOT
-  # fix some missing symlinks from old pam for compatibility
-  cd $pkgdir/lib/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
-  # set unix_chkpwd uid
-  chmod +s $pkgdir/sbin/unix_chkpwd
-}

Copied: pam/repos/core-i686/PKGBUILD (from rev 141295, 
pam/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-10-28 10:57:25 UTC (rev 141296)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=pam
+pkgver=1.1.5
+pkgrel=1
+pkgdesc="PAM (Pluggable Authentication Modules) library"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.kernel.org/pub/linux/libs/pam/";
+depends=('glibc' 'db' 'cracklib' 'libtirpc')
+makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
+backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/pam.d/other etc/default/passwd etc/environment)
+source=(https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$pkgver.tar.bz2
+
#http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
+ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.6.tar.bz2
+other)
+options=('!libtool' '!emptydirs')
+md5sums=('927ee5585bdec5256c75117e9348aa47'
+ 'e2788389a6c59224110a45fcff30e02b'
+ '6e6c8719e5989d976a14610f340bd33a')
+
+build() {
+  cd $srcdir/Linux-PAM-$pkgver
+  ./configure --sysconfdir=/etc DESTDIR=$pkgdir --libdir=/lib
+  make
+}
+
+package() {
+  cd $srcdir/Linux-PAM-$pkgver
+  make INSTALL=/bin/install DESTDIR=$pkgdir install
+  install -D -m644 ../other $pkgdir/etc/pam.d/other
+  # build pam_unix2 module
+  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
+  cd $srcdir/pam_unix2-2.6
+  ./configure
+  make
+  make DESTDIR=$pkgdir install
+  # add the realtime permissions for audio users
+  sed -i 's|# End of file||' $pkgdir/etc/security/limits.conf
+  cat >>$pkgdir/etc/security/limits.conf <<_EOT
+*   -   rtprio  0
+*   -   nice0
+@audio  -   rtprio  65
+@audio  - 

[arch-commits] Commit in qemu-kvm/repos (7 files)

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:29
  Author: tpowa
Revision: 141294

db-move: moved qemu-kvm from [testing] to [extra] (i686)

Added:
  qemu-kvm/repos/extra-i686/65-kvm.rules
(from rev 141289, qemu-kvm/repos/testing-i686/65-kvm.rules)
  qemu-kvm/repos/extra-i686/PKGBUILD
(from rev 141289, qemu-kvm/repos/testing-i686/PKGBUILD)
  qemu-kvm/repos/extra-i686/qemu-kvm.install
(from rev 141289, qemu-kvm/repos/testing-i686/qemu-kvm.install)
Deleted:
  qemu-kvm/repos/extra-i686/65-kvm.rules
  qemu-kvm/repos/extra-i686/PKGBUILD
  qemu-kvm/repos/extra-i686/qemu-kvm.install
  qemu-kvm/repos/testing-i686/

--+
 65-kvm.rules |2 
 PKGBUILD |  116 ++---
 qemu-kvm.install |   32 +++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: extra-i686/65-kvm.rules
===
--- extra-i686/65-kvm.rules 2011-10-28 08:03:28 UTC (rev 141293)
+++ extra-i686/65-kvm.rules 2011-10-28 08:03:29 UTC (rev 141294)
@@ -1 +0,0 @@
-KERNEL=="kvm", GROUP="kvm", MODE="0660"

Copied: qemu-kvm/repos/extra-i686/65-kvm.rules (from rev 141289, 
qemu-kvm/repos/testing-i686/65-kvm.rules)
===
--- extra-i686/65-kvm.rules (rev 0)
+++ extra-i686/65-kvm.rules 2011-10-28 08:03:29 UTC (rev 141294)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-28 08:03:28 UTC (rev 141293)
+++ extra-i686/PKGBUILD 2011-10-28 08:03:29 UTC (rev 141294)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=qemu-kvm
-pkgver=0.15.0
-pkgrel=2
-pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation."
-arch=(i686 x86_64)
-license=('GPL2' 'LGPL2.1')
-url="http://www.linux-kvm.org";
-depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
-makedepends=('texi2html' 'perl' 'python2')
-backup=('etc/qemu/target-x86_64.conf')
-install=qemu-kvm.install
-conflicts=('qemu')
-provides=('qemu')
-replaces=('kvm')
-source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
-65-kvm.rules)
-options=(!strip)
-
-build()
-{
-cd ${srcdir}/${pkgname}-${pkgver}
-# fix esound building
-./configure --prefix=/usr \
---python=/usr/bin/python2 \
---sysconfdir=/etc \
---audio-drv-list=alsa,sdl,oss \
---audio-card-list=ac97,sb16,es1370,hda \
---enable-docs
-make
-}
-package()
-{
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-# symbolic link for backwards compatibility
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu-kvm
-# symbolic link for to qemu binary for emulator apps
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu
-# symbolic link for to qemu binary for emulator apps
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/kvm
-# fix man page
-mv ${pkgdir}/usr/share/man/man1/qemu.1 \
- ${pkgdir}/usr/share/man/man1/qemu-kvm.1
-# install udev rules
-install -D -m644 ${srcdir}/65-kvm.rules \
- ${pkgdir}/lib/udev/rules.d/65-kvm.rules
-# strip scripts directory
-find ${pkgdir}/usr/bin  -type f -perm -u+w 2>/dev/null | while read binary 
; do
-  case "$(file -bi "$binary")" in
-*application/x-executable*) # Binaries
-/usr/bin/strip $STRIP_BINARIES "$binary";;
-  esac
-done
-}
-md5sums=('b45b0deebba4ce47dcaaab3807f6ed47'
- 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: qemu-kvm/repos/extra-i686/PKGBUILD (from rev 141289, 
qemu-kvm/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-28 08:03:29 UTC (rev 141294)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=qemu-kvm
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation."
+arch=(i686 x86_64)
+license=('GPL2' 'LGPL2.1')
+url="http://www.linux-kvm.org";
+depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
+makedepends=('texi2html' 'perl' 'python2')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu-kvm.install
+conflicts=('qemu')
+provides=('qemu')
+replaces=('kvm')
+source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
+65-kvm.rules)
+options=(!strip)
+
+build()
+{
+cd ${srcdir}/${pkgname}-${pkgver}
+# fix esound building
+./configure --prefix=/usr \
+   

[arch-commits] Commit in qemu-kvm/repos (7 files)

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:30
  Author: tpowa
Revision: 141295

db-move: moved qemu-kvm from [testing] to [extra] (x86_64)

Added:
  qemu-kvm/repos/extra-x86_64/65-kvm.rules
(from rev 141289, qemu-kvm/repos/testing-x86_64/65-kvm.rules)
  qemu-kvm/repos/extra-x86_64/PKGBUILD
(from rev 141289, qemu-kvm/repos/testing-x86_64/PKGBUILD)
  qemu-kvm/repos/extra-x86_64/qemu-kvm.install
(from rev 141289, qemu-kvm/repos/testing-x86_64/qemu-kvm.install)
Deleted:
  qemu-kvm/repos/extra-x86_64/65-kvm.rules
  qemu-kvm/repos/extra-x86_64/PKGBUILD
  qemu-kvm/repos/extra-x86_64/qemu-kvm.install
  qemu-kvm/repos/testing-x86_64/

--+
 65-kvm.rules |2 
 PKGBUILD |  116 ++---
 qemu-kvm.install |   32 +++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: extra-x86_64/65-kvm.rules
===
--- extra-x86_64/65-kvm.rules   2011-10-28 08:03:29 UTC (rev 141294)
+++ extra-x86_64/65-kvm.rules   2011-10-28 08:03:30 UTC (rev 141295)
@@ -1 +0,0 @@
-KERNEL=="kvm", GROUP="kvm", MODE="0660"

Copied: qemu-kvm/repos/extra-x86_64/65-kvm.rules (from rev 141289, 
qemu-kvm/repos/testing-x86_64/65-kvm.rules)
===
--- extra-x86_64/65-kvm.rules   (rev 0)
+++ extra-x86_64/65-kvm.rules   2011-10-28 08:03:30 UTC (rev 141295)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-28 08:03:29 UTC (rev 141294)
+++ extra-x86_64/PKGBUILD   2011-10-28 08:03:30 UTC (rev 141295)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=qemu-kvm
-pkgver=0.15.0
-pkgrel=2
-pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation."
-arch=(i686 x86_64)
-license=('GPL2' 'LGPL2.1')
-url="http://www.linux-kvm.org";
-depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
-makedepends=('texi2html' 'perl' 'python2')
-backup=('etc/qemu/target-x86_64.conf')
-install=qemu-kvm.install
-conflicts=('qemu')
-provides=('qemu')
-replaces=('kvm')
-source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
-65-kvm.rules)
-options=(!strip)
-
-build()
-{
-cd ${srcdir}/${pkgname}-${pkgver}
-# fix esound building
-./configure --prefix=/usr \
---python=/usr/bin/python2 \
---sysconfdir=/etc \
---audio-drv-list=alsa,sdl,oss \
---audio-card-list=ac97,sb16,es1370,hda \
---enable-docs
-make
-}
-package()
-{
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-# symbolic link for backwards compatibility
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu-kvm
-# symbolic link for to qemu binary for emulator apps
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu
-# symbolic link for to qemu binary for emulator apps
-ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/kvm
-# fix man page
-mv ${pkgdir}/usr/share/man/man1/qemu.1 \
- ${pkgdir}/usr/share/man/man1/qemu-kvm.1
-# install udev rules
-install -D -m644 ${srcdir}/65-kvm.rules \
- ${pkgdir}/lib/udev/rules.d/65-kvm.rules
-# strip scripts directory
-find ${pkgdir}/usr/bin  -type f -perm -u+w 2>/dev/null | while read binary 
; do
-  case "$(file -bi "$binary")" in
-*application/x-executable*) # Binaries
-/usr/bin/strip $STRIP_BINARIES "$binary";;
-  esac
-done
-}
-md5sums=('b45b0deebba4ce47dcaaab3807f6ed47'
- 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: qemu-kvm/repos/extra-x86_64/PKGBUILD (from rev 141289, 
qemu-kvm/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-28 08:03:30 UTC (rev 141295)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=qemu-kvm
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation."
+arch=(i686 x86_64)
+license=('GPL2' 'LGPL2.1')
+url="http://www.linux-kvm.org";
+depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
+makedepends=('texi2html' 'perl' 'python2')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu-kvm.install
+conflicts=('qemu')
+provides=('qemu')
+replaces=('kvm')
+source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
+65-kvm.rules)
+options=(!strip)
+
+build()
+{
+cd ${srcdir}/${pkgname}-${pkgver}
+#

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:28
  Author: tpowa
Revision: 141293

db-move: moved qemu from [testing] to [extra] (x86_64)

Added:
  qemu/repos/extra-x86_64/65-kvm.rules
(from rev 141289, qemu/repos/testing-x86_64/65-kvm.rules)
  qemu/repos/extra-x86_64/PKGBUILD
(from rev 141289, qemu/repos/testing-x86_64/PKGBUILD)
  qemu/repos/extra-x86_64/qemu.install
(from rev 141289, qemu/repos/testing-x86_64/qemu.install)
Deleted:
  qemu/repos/extra-x86_64/65-kvm.rules
  qemu/repos/extra-x86_64/PKGBUILD
  qemu/repos/extra-x86_64/qemu.install
  qemu/repos/testing-x86_64/

--+
 65-kvm.rules |2 -
 PKGBUILD |   88 -
 qemu.install |   48 +++
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: extra-x86_64/65-kvm.rules
===
--- extra-x86_64/65-kvm.rules   2011-10-28 08:03:27 UTC (rev 141292)
+++ extra-x86_64/65-kvm.rules   2011-10-28 08:03:28 UTC (rev 141293)
@@ -1 +0,0 @@
-KERNEL=="kvm", GROUP="kvm", MODE="0660"

Copied: qemu/repos/extra-x86_64/65-kvm.rules (from rev 141289, 
qemu/repos/testing-x86_64/65-kvm.rules)
===
--- extra-x86_64/65-kvm.rules   (rev 0)
+++ extra-x86_64/65-kvm.rules   2011-10-28 08:03:28 UTC (rev 141293)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-28 08:03:27 UTC (rev 141292)
+++ extra-x86_64/PKGBUILD   2011-10-28 08:03:28 UTC (rev 141293)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=qemu
-pkgver=0.15.0
-pkgrel=2
-pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url="http://wiki.qemu.org/Index.html";
-makedepends=('texi2html' 'perl' 'python2')
-depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl')
-backup=('etc/qemu/target-x86_64.conf')
-install=qemu.install
-source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
-65-kvm.rules)
-options=(!strip)
-
-build()
-{
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i -e 's/lib64/lib/g' x86_64.ld
-  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl \
-  --python=/usr/bin/python2 \
-  --audio-card-list=ac97,sb16,es1370,hda \
-  --enable-docs
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 ${srcdir}/65-kvm.rules \
-   ${pkgdir}/lib/udev/rules.d/65-kvm.rules
-  # strip scripts directory
-find ${pkgdir}/usr/src/linux-${_kernver}/scripts  -type f -perm -u+w 
2>/dev/null | while read binary ; do
-  case "$(file -bi "$binary")" in
-*application/x-executable*) # Binaries
-/usr/bin/strip $STRIP_BINARIES "$binary";;
-  esac
-done
-
-}
-md5sums=('dbc55b014bcd21b98e347f6a90f7fb6d'
- 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: qemu/repos/extra-x86_64/PKGBUILD (from rev 141289, 
qemu/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-28 08:03:28 UTC (rev 141293)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=qemu
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
+arch=('i686' 'x86_64')
+license=('GPL2' 'LGPL2.1')
+url="http://wiki.qemu.org/Index.html";
+makedepends=('texi2html' 'perl' 'python2')
+depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu.install
+source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
+65-kvm.rules)
+options=(!strip)
+
+build()
+{
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i -e 's/lib64/lib/g' x86_64.ld
+  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl \
+  --python=/usr/bin/python2 \
+  --audio-card-list=ac97,sb16,es1370,hda \
+  --enable-docs
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/65-kvm.rules \
+   ${pkgdir}/lib/udev/rules.d/65-kvm.rules
+  # strip scripts directory
+find ${pkgdir}/usr/src/linux-${_kernver}/scripts  -type f -perm -u+w 
2>/dev/null | while read binary ; do
+  case "$(file -bi "$binary")" in
+*application/x-executable*) # Binaries
+/usr/bin/

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:24
  Author: tpowa
Revision: 141291

db-move: moved samba from [testing] to [extra] (x86_64)

Added:
  samba/repos/extra-x86_64/PKGBUILD
(from rev 141289, samba/repos/testing-x86_64/PKGBUILD)
  samba/repos/extra-x86_64/fix-ipv6-mount.patch
(from rev 141289, samba/repos/testing-x86_64/fix-ipv6-mount.patch)
  samba/repos/extra-x86_64/samba
(from rev 141289, samba/repos/testing-x86_64/samba)
  samba/repos/extra-x86_64/samba.conf.d
(from rev 141289, samba/repos/testing-x86_64/samba.conf.d)
  samba/repos/extra-x86_64/samba.logrotate
(from rev 141289, samba/repos/testing-x86_64/samba.logrotate)
  samba/repos/extra-x86_64/samba.pam
(from rev 141289, samba/repos/testing-x86_64/samba.pam)
  samba/repos/extra-x86_64/swat.xinetd
(from rev 141289, samba/repos/testing-x86_64/swat.xinetd)
Deleted:
  samba/repos/extra-x86_64/PKGBUILD
  samba/repos/extra-x86_64/fix-ipv6-mount.patch
  samba/repos/extra-x86_64/samba
  samba/repos/extra-x86_64/samba.conf.d
  samba/repos/extra-x86_64/samba.logrotate
  samba/repos/extra-x86_64/samba.pam
  samba/repos/extra-x86_64/swat.xinetd
  samba/repos/testing-x86_64/

--+
 PKGBUILD |  292 -
 fix-ipv6-mount.patch |   22 +--
 samba|  114 +--
 samba.conf.d |   14 +-
 samba.logrotate  |   18 +--
 samba.pam|6 -
 swat.xinetd  |   20 +--
 7 files changed, 243 insertions(+), 243 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-28 08:03:23 UTC (rev 141290)
+++ extra-x86_64/PKGBUILD   2011-10-28 08:03:24 UTC (rev 141291)
@@ -1,146 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-pkgbase=samba
-pkgname=('smbclient' 'samba')
-pkgver=3.6.0
-# We use the 'A' to fake out pacman's version comparators.  Samba chooses
-# to append 'a','b',etc to their subsequent releases, which pamcan
-# misconstrues as alpha, beta, etc.  Bad samba!
-_realver=3.6.0
-pkgrel=8
-arch=(i686 x86_64)
-url="http://www.samba.org";
-license=('GPL3')
-makedepends=('db' 'popt' 'libcups' 'acl' 'libldap' 'libcap' 'krb5' 'pam' 
'gamin' 'gnutls>=2.4.1' 'talloc' 'tdb')
-source=(http://us1.samba.org/samba/ftp/stable/${pkgbase}-${_realver}.tar.gz
-samba samba.logrotate
-swat.xinetd
-samba.pam
-samba.conf.d
-fix-ipv6-mount.patch)
-### UNINSTALL dmapi package before building!!!
-
-build() {
-  cd ${srcdir}/${pkgbase}-${_realver}/source3
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib/ \
-  --localstatedir=/var \
-  --with-configdir=/etc/samba \
-  --with-lockdir=/var/cache/samba \
-  --with-piddir=/var/run/samba \
-  --with-fhs \
-  --with-pam \
-  --with-pam_smbpass \
-  --with-pammodulesdir=/lib/security \
-  --with-dnsupdate \
-  --with-automount \
-  --with-quotas \
-  --with-ads \
-  --with-acl-support \
-  --with-cifsmount \
-  --with-libsmbclient \
-  --with-syslog \
-  --enable-external-libtalloc \
-  --disable-dnssd \
-  --disable-avahi \
-  
--with-shared-modules=idmap_ad,idmap_adex,idmap_rid,idmap_hash,idmap_tdb2 \
-  --enable-external-libtdb
-  make
-}
-
-package_smbclient () {
-pkgdesc="Tools to access a server's filespace and printers via SMB"
-depends=('readline' 'popt' 'libldap' 'cifs-utils' 'libcap' 'krb5' 'db' 
'e2fsprogs' 'tdb' 'talloc')
-  cd ${srcdir}/${pkgbase}-${_realver}/source3
-  mkdir -p ${pkgdir}/usr/bin ${pkgdir}/usr/lib
-  install -m755 
bin/{smbclient,rpcclient,smbspool,smbtree,smbcacls,smbcquotas,smbget,net,nmblookup}
 ${pkgdir}/usr/bin/
-  for i in libnetapi* libwbclient* libsmbclient*;do
-  cp  -a bin/${i}*.so* ${pkgdir}/usr/lib/
-  done
-  install -m755 script/smbtar ${pkgdir}/usr/bin/
-  mkdir -p ${pkgdir}/usr/lib/cups/backend
-  ln -sf /usr/bin/smbspool ${pkgdir}/usr/lib/cups/backend/smb
-  mkdir -p ${pkgdir}/usr/include
-  install -m644 include/libsmbclient.h ${pkgdir}/usr/include/
-  install -m644 lib/netapi/netapi.h ${pkgdir}/usr/include/
-  mkdir -p ${pkgdir}/usr/share/man/man{1,7}
-  for man in rpcclient smbcacls smbclient smbcquotas smbget \
-  smbtree smbtar nmblookup; do
-  install -m644 ../docs/manpages/${man}.1 ${pkgdir}/usr/share/man/man1/
-  done
-  install -m644 ../docs/manpages/libsmbclient.7 ${pkgdir}/usr/share/man/man7/
-}
-
-package_samba () {
-pkgdesc="Tools to access a server's filespace and printers via SMB"
-backup=(etc/logrotate.d/samba
-etc/pam.d/samba
-etc/samba/smb.conf
-etc/xinetd.d/swat
-etc/conf.d/samba)
-depends=('db' 'popt' 'libcups' 'acl' 'libldap' "smbclient>=$pkgver" 'libcap' 
'krb5' '

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:27
  Author: tpowa
Revision: 141292

db-move: moved qemu from [testing] to [extra] (i686)

Added:
  qemu/repos/extra-i686/65-kvm.rules
(from rev 141289, qemu/repos/testing-i686/65-kvm.rules)
  qemu/repos/extra-i686/PKGBUILD
(from rev 141289, qemu/repos/testing-i686/PKGBUILD)
  qemu/repos/extra-i686/qemu.install
(from rev 141289, qemu/repos/testing-i686/qemu.install)
Deleted:
  qemu/repos/extra-i686/65-kvm.rules
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-i686/qemu.install
  qemu/repos/testing-i686/

--+
 65-kvm.rules |2 -
 PKGBUILD |   88 -
 qemu.install |   48 +++
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: extra-i686/65-kvm.rules
===
--- extra-i686/65-kvm.rules 2011-10-28 08:03:24 UTC (rev 141291)
+++ extra-i686/65-kvm.rules 2011-10-28 08:03:27 UTC (rev 141292)
@@ -1 +0,0 @@
-KERNEL=="kvm", GROUP="kvm", MODE="0660"

Copied: qemu/repos/extra-i686/65-kvm.rules (from rev 141289, 
qemu/repos/testing-i686/65-kvm.rules)
===
--- extra-i686/65-kvm.rules (rev 0)
+++ extra-i686/65-kvm.rules 2011-10-28 08:03:27 UTC (rev 141292)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-28 08:03:24 UTC (rev 141291)
+++ extra-i686/PKGBUILD 2011-10-28 08:03:27 UTC (rev 141292)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=qemu
-pkgver=0.15.0
-pkgrel=2
-pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url="http://wiki.qemu.org/Index.html";
-makedepends=('texi2html' 'perl' 'python2')
-depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl')
-backup=('etc/qemu/target-x86_64.conf')
-install=qemu.install
-source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
-65-kvm.rules)
-options=(!strip)
-
-build()
-{
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i -e 's/lib64/lib/g' x86_64.ld
-  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl \
-  --python=/usr/bin/python2 \
-  --audio-card-list=ac97,sb16,es1370,hda \
-  --enable-docs
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 ${srcdir}/65-kvm.rules \
-   ${pkgdir}/lib/udev/rules.d/65-kvm.rules
-  # strip scripts directory
-find ${pkgdir}/usr/src/linux-${_kernver}/scripts  -type f -perm -u+w 
2>/dev/null | while read binary ; do
-  case "$(file -bi "$binary")" in
-*application/x-executable*) # Binaries
-/usr/bin/strip $STRIP_BINARIES "$binary";;
-  esac
-done
-
-}
-md5sums=('dbc55b014bcd21b98e347f6a90f7fb6d'
- 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: qemu/repos/extra-i686/PKGBUILD (from rev 141289, 
qemu/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-28 08:03:27 UTC (rev 141292)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=qemu
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
+arch=('i686' 'x86_64')
+license=('GPL2' 'LGPL2.1')
+url="http://wiki.qemu.org/Index.html";
+makedepends=('texi2html' 'perl' 'python2')
+depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu.install
+source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
+65-kvm.rules)
+options=(!strip)
+
+build()
+{
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i -e 's/lib64/lib/g' x86_64.ld
+  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl \
+  --python=/usr/bin/python2 \
+  --audio-card-list=ac97,sb16,es1370,hda \
+  --enable-docs
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/65-kvm.rules \
+   ${pkgdir}/lib/udev/rules.d/65-kvm.rules
+  # strip scripts directory
+find ${pkgdir}/usr/src/linux-${_kernver}/scripts  -type f -perm -u+w 
2>/dev/null | while read binary ; do
+  case "$(file -bi "$binary")" in
+*application/x-executable*) # Binaries
+/usr/bin/strip $STRIP_BINARIES "$binary";;
+  esac
+done
+
+}
+md5s

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

2011-10-28 Thread Tobias Powalowski
Date: Friday, October 28, 2011 @ 04:03:23
  Author: tpowa
Revision: 141290

db-move: moved samba from [testing] to [extra] (i686)

Added:
  samba/repos/extra-i686/PKGBUILD
(from rev 141289, samba/repos/testing-i686/PKGBUILD)
  samba/repos/extra-i686/fix-ipv6-mount.patch
(from rev 141289, samba/repos/testing-i686/fix-ipv6-mount.patch)
  samba/repos/extra-i686/samba
(from rev 141289, samba/repos/testing-i686/samba)
  samba/repos/extra-i686/samba.conf.d
(from rev 141289, samba/repos/testing-i686/samba.conf.d)
  samba/repos/extra-i686/samba.logrotate
(from rev 141289, samba/repos/testing-i686/samba.logrotate)
  samba/repos/extra-i686/samba.pam
(from rev 141289, samba/repos/testing-i686/samba.pam)
  samba/repos/extra-i686/swat.xinetd
(from rev 141289, samba/repos/testing-i686/swat.xinetd)
Deleted:
  samba/repos/extra-i686/PKGBUILD
  samba/repos/extra-i686/fix-ipv6-mount.patch
  samba/repos/extra-i686/samba
  samba/repos/extra-i686/samba.conf.d
  samba/repos/extra-i686/samba.logrotate
  samba/repos/extra-i686/samba.pam
  samba/repos/extra-i686/swat.xinetd
  samba/repos/testing-i686/

--+
 PKGBUILD |  292 -
 fix-ipv6-mount.patch |   22 +--
 samba|  114 +--
 samba.conf.d |   14 +-
 samba.logrotate  |   18 +--
 samba.pam|6 -
 swat.xinetd  |   20 +--
 7 files changed, 243 insertions(+), 243 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-28 07:37:23 UTC (rev 141289)
+++ extra-i686/PKGBUILD 2011-10-28 08:03:23 UTC (rev 141290)
@@ -1,146 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-pkgbase=samba
-pkgname=('smbclient' 'samba')
-pkgver=3.6.0
-# We use the 'A' to fake out pacman's version comparators.  Samba chooses
-# to append 'a','b',etc to their subsequent releases, which pamcan
-# misconstrues as alpha, beta, etc.  Bad samba!
-_realver=3.6.0
-pkgrel=8
-arch=(i686 x86_64)
-url="http://www.samba.org";
-license=('GPL3')
-makedepends=('db' 'popt' 'libcups' 'acl' 'libldap' 'libcap' 'krb5' 'pam' 
'gamin' 'gnutls>=2.4.1' 'talloc' 'tdb')
-source=(http://us1.samba.org/samba/ftp/stable/${pkgbase}-${_realver}.tar.gz
-samba samba.logrotate
-swat.xinetd
-samba.pam
-samba.conf.d
-fix-ipv6-mount.patch)
-### UNINSTALL dmapi package before building!!!
-
-build() {
-  cd ${srcdir}/${pkgbase}-${_realver}/source3
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib/ \
-  --localstatedir=/var \
-  --with-configdir=/etc/samba \
-  --with-lockdir=/var/cache/samba \
-  --with-piddir=/var/run/samba \
-  --with-fhs \
-  --with-pam \
-  --with-pam_smbpass \
-  --with-pammodulesdir=/lib/security \
-  --with-dnsupdate \
-  --with-automount \
-  --with-quotas \
-  --with-ads \
-  --with-acl-support \
-  --with-cifsmount \
-  --with-libsmbclient \
-  --with-syslog \
-  --enable-external-libtalloc \
-  --disable-dnssd \
-  --disable-avahi \
-  
--with-shared-modules=idmap_ad,idmap_adex,idmap_rid,idmap_hash,idmap_tdb2 \
-  --enable-external-libtdb
-  make
-}
-
-package_smbclient () {
-pkgdesc="Tools to access a server's filespace and printers via SMB"
-depends=('readline' 'popt' 'libldap' 'cifs-utils' 'libcap' 'krb5' 'db' 
'e2fsprogs' 'tdb' 'talloc')
-  cd ${srcdir}/${pkgbase}-${_realver}/source3
-  mkdir -p ${pkgdir}/usr/bin ${pkgdir}/usr/lib
-  install -m755 
bin/{smbclient,rpcclient,smbspool,smbtree,smbcacls,smbcquotas,smbget,net,nmblookup}
 ${pkgdir}/usr/bin/
-  for i in libnetapi* libwbclient* libsmbclient*;do
-  cp  -a bin/${i}*.so* ${pkgdir}/usr/lib/
-  done
-  install -m755 script/smbtar ${pkgdir}/usr/bin/
-  mkdir -p ${pkgdir}/usr/lib/cups/backend
-  ln -sf /usr/bin/smbspool ${pkgdir}/usr/lib/cups/backend/smb
-  mkdir -p ${pkgdir}/usr/include
-  install -m644 include/libsmbclient.h ${pkgdir}/usr/include/
-  install -m644 lib/netapi/netapi.h ${pkgdir}/usr/include/
-  mkdir -p ${pkgdir}/usr/share/man/man{1,7}
-  for man in rpcclient smbcacls smbclient smbcquotas smbget \
-  smbtree smbtar nmblookup; do
-  install -m644 ../docs/manpages/${man}.1 ${pkgdir}/usr/share/man/man1/
-  done
-  install -m644 ../docs/manpages/libsmbclient.7 ${pkgdir}/usr/share/man/man7/
-}
-
-package_samba () {
-pkgdesc="Tools to access a server's filespace and printers via SMB"
-backup=(etc/logrotate.d/samba
-etc/pam.d/samba
-etc/samba/smb.conf
-etc/xinetd.d/swat
-etc/conf.d/samba)
-depends=('db' 'popt' 'libcups' 'acl' 'libldap' "smbclient>=$pkgver" 'libcap' 
'krb5' 'pam' 'gamin' 'gnutls' 'e2fsprogs' 'tdb' 'talloc')
-  cd ${srcdir

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

2011-10-28 Thread Ionut Biru
Date: Friday, October 28, 2011 @ 03:37:23
  Author: ibiru
Revision: 141289

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

Added:
  clutter-gst/repos/extra-i686/PKGBUILD
(from rev 141288, clutter-gst/trunk/PKGBUILD)
  clutter-gst/repos/extra-x86_64/PKGBUILD
(from rev 141288, clutter-gst/trunk/PKGBUILD)
Deleted:
  clutter-gst/repos/extra-i686/PKGBUILD
  clutter-gst/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-28 07:23:00 UTC (rev 141288)
+++ extra-i686/PKGBUILD 2011-10-28 07:37:23 UTC (rev 141289)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-pkgname=clutter-gst
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="GStreamer bindings for clutter"
-arch=('i686' 'x86_64')
-url="http://www.clutter-project.org/";
-license=('LGPL')
-depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
-makedepends=('gobject-introspection' 'gtk-doc')
-options=('!libtool')
-source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('48f623a08a6793ab688ef6b899a2d889ef68053718ba44aac7997a1f9f619e7e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clutter-gst/repos/extra-i686/PKGBUILD (from rev 141288, 
clutter-gst/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-28 07:37:23 UTC (rev 141289)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgname=clutter-gst
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="GStreamer bindings for clutter"
+arch=('i686' 'x86_64')
+url="http://www.clutter-project.org/";
+license=('LGPL')
+depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
+makedepends=('gobject-introspection' 'gtk-doc')
+options=('!libtool')
+source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9fdcf8d8531d4d78342e7ac901d1768c7a8f78124f74dd6be8e51961169b8fb5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-28 07:23:00 UTC (rev 141288)
+++ extra-x86_64/PKGBUILD   2011-10-28 07:37:23 UTC (rev 141289)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-pkgname=clutter-gst
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="GStreamer bindings for clutter"
-arch=('i686' 'x86_64')
-url="http://www.clutter-project.org/";
-license=('LGPL')
-depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
-makedepends=('gobject-introspection' 'gtk-doc')
-options=('!libtool')
-source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('48f623a08a6793ab688ef6b899a2d889ef68053718ba44aac7997a1f9f619e7e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clutter-gst/repos/extra-x86_64/PKGBUILD (from rev 141288, 
clutter-gst/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-28 07:37:23 UTC (rev 141289)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgname=clutter-gst
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="GStreamer bindings for clutter"
+arch=('i686' 'x86_64')
+url="http://www.clutter-project.org/";
+license=('LGPL')
+depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
+makedepends=('gobject-introspection' 'gtk-doc')
+options=('!libtool')
+source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9fdcf8d8531d4d78342e7ac901d1768c7a8f78124f74dd6be8e51961169b8fb5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2011-10-28 Thread Ionut Biru
Date: Friday, October 28, 2011 @ 03:23:00
  Author: ibiru
Revision: 141288

update to 1.4.4

Modified:
  clutter-gst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-28 05:35:50 UTC (rev 141287)
+++ PKGBUILD2011-10-28 07:23:00 UTC (rev 141288)
@@ -1,7 +1,8 @@
 # $Id$
 # Maintainer: Jan "heftig" Steffens 
+
 pkgname=clutter-gst
-pkgver=1.4.2
+pkgver=1.4.4
 pkgrel=1
 pkgdesc="GStreamer bindings for clutter"
 arch=('i686' 'x86_64')
@@ -11,7 +12,7 @@
 makedepends=('gobject-introspection' 'gtk-doc')
 options=('!libtool')
 
source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('48f623a08a6793ab688ef6b899a2d889ef68053718ba44aac7997a1f9f619e7e')
+sha256sums=('9fdcf8d8531d4d78342e7ac901d1768c7a8f78124f74dd6be8e51961169b8fb5')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"