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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:18:44
  Author: tpowa
Revision: 168454

upgpkg: gummiboot-efi 6-2

rebuild against latest gnu-efi-libs, bump to latest git snapshot, fix md5sum

Modified:
  gummiboot-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 05:21:57 UTC (rev 168453)
+++ PKGBUILD2012-10-12 06:18:44 UTC (rev 168454)
@@ -5,7 +5,7 @@
 
 pkgname=gummiboot-efi
 pkgver=6
-pkgrel=1
+pkgrel=2
 pkgdesc=Simple text-mode UEFI Boot Manager
 url=http://freedesktop.org/wiki/Software/gummiboot;
 arch=('any')
@@ -17,7 +17,7 @@
 provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
 replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
 options=('!strip')
-source=(http://cgit.freedesktop.org/gummiboot/snapshot/gummiboot-${pkgver}.tar.gz;
+source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
 'loader.conf'
 'arch.conf')
 
@@ -55,6 +55,6 @@
install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf  
 }
-md5sums=('5f7f4e6f6ee6f914ac250d4f3a5f05dc'
+md5sums=('a4c924c508470f1f781162012ebb7602'
  '6ea803e5179d623716e3be0b636de658'
  '0229e197d5beb226aa93efcf5dbacd41')



[arch-commits] Commit in gummiboot-efi/repos/extra-any (6 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:19:05
  Author: tpowa
Revision: 168455

archrelease: copy trunk to extra-any

Added:
  gummiboot-efi/repos/extra-any/PKGBUILD
(from rev 168454, gummiboot-efi/trunk/PKGBUILD)
  gummiboot-efi/repos/extra-any/arch.conf
(from rev 168454, gummiboot-efi/trunk/arch.conf)
  gummiboot-efi/repos/extra-any/loader.conf
(from rev 168454, gummiboot-efi/trunk/loader.conf)
Deleted:
  gummiboot-efi/repos/extra-any/PKGBUILD
  gummiboot-efi/repos/extra-any/arch.conf
  gummiboot-efi/repos/extra-any/loader.conf

-+
 PKGBUILD|  120 +-
 arch.conf   |   14 +++---
 loader.conf |4 -
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:18:44 UTC (rev 168454)
+++ PKGBUILD2012-10-12 06:19:05 UTC (rev 168455)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-# Contributor:  Mantas Mikulėnas graw...@gmail.com
-
-pkgname=gummiboot-efi
-pkgver=6
-pkgrel=1
-pkgdesc=Simple text-mode UEFI Boot Manager
-url=http://freedesktop.org/wiki/Software/gummiboot;
-arch=('any')
-license=('GPL2')
-makedepends=('gnu-efi-libs')
-depends=('dosfstools' 'efibootmgr')
-optdepends=('mactel-boot: For bless command in Apple Mac systems')
-conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-options=('!strip')
-source=(http://cgit.freedesktop.org/gummiboot/snapshot/gummiboot-${pkgver}.tar.gz;
-'loader.conf'
-'arch.conf')
-
-
-build() {  
-   if [[ ${CARCH} != x86_64 ]]; then
-   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
-   exit 1
-   fi
-   
-   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
-   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|LIBDIR=|LIBDIR?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|CFLAGS =|CFLAGS +=|g'  -i 
${srcdir}/gummiboot-${pkgver}/Makefile
-   
-   ## Compile gummiboot for x86_64 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-x86_64
-   cd ${srcdir}/gummiboot-${pkgver}-x86_64/
-   CFLAGS=-m64 ARCH=x86_64 LIBDIR=/usr/lib make
-   
-   ## Compile gummiboot for i386 aka IA32 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-i386
-   cd ${srcdir}/gummiboot-${pkgver}-i386/
-   CFLAGS=-m32 ARCH=ia32 LIBDIR=/usr/lib32 make  
-}
-
-package() {
-   install -d ${pkgdir}/usr/lib/gummiboot/loader/entries/
-   
-   ## Install gummiboot UEFI applications
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-x86_64/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootx64.efi
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-i386/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootia32.efi
-   
-   ## Install gummiboot example configuration files
-   install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
-   install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf  
-}
-md5sums=('5f7f4e6f6ee6f914ac250d4f3a5f05dc'
- '6ea803e5179d623716e3be0b636de658'
- '0229e197d5beb226aa93efcf5dbacd41')

Copied: gummiboot-efi/repos/extra-any/PKGBUILD (from rev 168454, 
gummiboot-efi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-12 06:19:05 UTC (rev 168455)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
+# Contributor:  Mantas Mikulėnas graw...@gmail.com
+
+pkgname=gummiboot-efi
+pkgver=6
+pkgrel=2
+pkgdesc=Simple text-mode UEFI Boot Manager
+url=http://freedesktop.org/wiki/Software/gummiboot;
+arch=('any')
+license=('GPL2')
+makedepends=('gnu-efi-libs')
+depends=('dosfstools' 'efibootmgr')
+optdepends=('mactel-boot: For bless command in Apple Mac systems')
+conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+options=('!strip')
+source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
+'loader.conf'
+'arch.conf')
+
+
+build() {  
+   if [[ ${CARCH} != x86_64 ]]; then
+   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
+   exit 1
+   fi
+   
+   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
+   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
+   sed 

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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:20:27
  Author: tpowa
Revision: 168456

upgpkg: efilinux-efi 1.0-2

rebuild against latest gnu-efi-libs

Modified:
  efilinux-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 06:19:05 UTC (rev 168455)
+++ PKGBUILD2012-10-12 06:20:27 UTC (rev 168456)
@@ -2,7 +2,7 @@
 
 pkgname=efilinux-efi
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Reference Implementation of a Linux Bootloader for UEFI Firmwares
 url=https://github.com/mfleming/efilinux;
 arch=('any')



[arch-commits] Commit in efilinux-efi/repos/extra-any (6 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:20:49
  Author: tpowa
Revision: 168457

archrelease: copy trunk to extra-any

Added:
  efilinux-efi/repos/extra-any/PKGBUILD
(from rev 168456, efilinux-efi/trunk/PKGBUILD)
  efilinux-efi/repos/extra-any/efilinux-1.0-to-aa925098a5887.patch
(from rev 168456, efilinux-efi/trunk/efilinux-1.0-to-aa925098a5887.patch)
  efilinux-efi/repos/extra-any/efilinux-efi.install
(from rev 168456, efilinux-efi/trunk/efilinux-efi.install)
Deleted:
  efilinux-efi/repos/extra-any/PKGBUILD
  efilinux-efi/repos/extra-any/efilinux-1.0-to-aa925098a5887.patch
  efilinux-efi/repos/extra-any/efilinux-efi.install

-+
 PKGBUILD|   96 +-
 efilinux-1.0-to-aa925098a5887.patch | 1208 +-
 efilinux-efi.install|   46 -
 3 files changed, 675 insertions(+), 675 deletions(-)

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


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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:29:52
  Author: tpowa
Revision: 168458

upgpkg: refind-efi 0.4.6-1

rebuild against latest gnu-efi-libs, bump to latest version

Modified:
  refind-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 06:20:49 UTC (rev 168457)
+++ PKGBUILD2012-10-12 06:29:52 UTC (rev 168458)
@@ -3,7 +3,7 @@
 # Contributor: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
 
 pkgname=refind-efi
-pkgver=0.4.5
+pkgver=0.4.6
 pkgrel=1
 pkgdesc=Rod Smith's fork of rEFIt UEFI Boot Manager
 url=http://www.rodsbooks.com/refind/index.html;
@@ -20,9 +20,6 @@
 source=(http://downloads.sourceforge.net/refind/refind-src-${pkgver}.zip;
 'refind_include_more_shell_paths.patch'
 'refind_linux.conf')
-sha1sums=('4c8f9809c9a25b787300eeda13a60288611c028f'
-  '7cdf178ddb1de20e1ec816b24de1769b39da0063'
-  '3d53eb615c3363d45feb95b9bfbf1d5491bf1c24')
 
 build() {  
if [[ ${CARCH} != x86_64 ]]; then
@@ -40,11 +37,11 @@

cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-x86_64
cd ${srcdir}/refind-${pkgver}-x86_64/
-   ARCH=x86_64 make
+   ARCH=x86_64 make gnuefi

cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-i386
cd ${srcdir}/refind-${pkgver}-i386/
-   ARCH=ia32 make
+   ARCH=ia32 make gnuefi
 }
 
 package() {
@@ -75,3 +72,6 @@
install -d ${pkgdir}/usr/share/licenses/refind/
install -D -m0644 ${srcdir}/refind-${pkgver}/LICENSE.txt 
${pkgdir}/usr/share/licenses/refind/LICENSE
 }
+md5sums=('14728e08d8e7956acf9dfc214b26c7cf'
+ '8da259d08ea1dc0a3a4c572913e453f9'
+ 'a83e45b10d5efbca1c93a63851728712')



[arch-commits] Commit in refind-efi/repos/extra-any (8 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:30:16
  Author: tpowa
Revision: 168459

archrelease: copy trunk to extra-any

Added:
  refind-efi/repos/extra-any/PKGBUILD
(from rev 168458, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-any/refind-efi.install
(from rev 168458, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-any/refind_include_more_shell_paths.patch
(from rev 168458, refind-efi/trunk/refind_include_more_shell_paths.patch)
  refind-efi/repos/extra-any/refind_linux.conf
(from rev 168458, refind-efi/trunk/refind_linux.conf)
Deleted:
  refind-efi/repos/extra-any/PKGBUILD
  refind-efi/repos/extra-any/refind-efi.install
  refind-efi/repos/extra-any/refind_include_more_shell_paths.patch
  refind-efi/repos/extra-any/refind_linux.conf

---+
 PKGBUILD  |  154 
 refind-efi.install|   52 +-
 refind_include_more_shell_paths.patch |   42 
 refind_linux.conf |   10 +-
 4 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:29:52 UTC (rev 168458)
+++ PKGBUILD2012-10-12 06:30:16 UTC (rev 168459)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Contributor: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-
-pkgname=refind-efi
-pkgver=0.4.5
-pkgrel=1
-pkgdesc=Rod Smith's fork of rEFIt UEFI Boot Manager
-url=http://www.rodsbooks.com/refind/index.html;
-arch=('any')
-license=('GPL3' 'custom')
-makedepends=('gnu-efi-libs=3.0q')
-depends=('dosfstools' 'efibootmgr')
-optdepends=('mactel-boot: For bless command in Apple Mac systems')
-conflicts=('refind-efi-x86_64' 'refind-efi-i386')
-provides=('refind-efi-x86_64' 'refind-efi-i386')
-replaces=('refind-efi-x86_64' 'refind-efi-i386')
-options=('!strip' 'docs')
-install=${pkgname}.install
-source=(http://downloads.sourceforge.net/refind/refind-src-${pkgver}.zip;
-'refind_include_more_shell_paths.patch'
-'refind_linux.conf')
-sha1sums=('4c8f9809c9a25b787300eeda13a60288611c028f'
-  '7cdf178ddb1de20e1ec816b24de1769b39da0063'
-  '3d53eb615c3363d45feb95b9bfbf1d5491bf1c24')
-
-build() {  
-   if [[ ${CARCH} != x86_64 ]]; then
-   msg refind-efi can be built only in an x86_64 system. Exiting.
-   exit 1
-   fi
-   
-   cd ${srcdir}/refind-${pkgver}/
-   patch -Np1 -i ${srcdir}/refind_include_more_shell_paths.patch
-   
-   sed 's|/usr/local/include/efi|/usr/include/efi|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|/usr/local/lib|/usr/lib|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|ARCH:=|ARCH?=|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|ARCH=|ARCH?=|g' -i 
${srcdir}/refind-${pkgver}/refind/Makefile
-   
-   cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-x86_64
-   cd ${srcdir}/refind-${pkgver}-x86_64/
-   ARCH=x86_64 make
-   
-   cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-i386
-   cd ${srcdir}/refind-${pkgver}-i386/
-   ARCH=ia32 make
-}
-
-package() {
-   ## install the rEFInd UEFI applications
-   install -d ${pkgdir}/usr/lib/refind/
-   install -D -m0644 
${srcdir}/refind-${pkgver}-x86_64/refind/refind_x64.efi 
${pkgdir}/usr/lib/refind/refindx64.efi
-   install -D -m0644 
${srcdir}/refind-${pkgver}-i386/refind/refind_ia32.efi 
${pkgdir}/usr/lib/refind/refindia32.efi
-   
-   ## install the rEFInd config file
-   install -d ${pkgdir}/usr/lib/refind/config/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/refind.conf-sample 
${pkgdir}/usr/lib/refind/config/refind.conf
-   install -D -m0644 ${srcdir}/refind_linux.conf 
${pkgdir}/usr/lib/refind/config/refind_linux.conf
-   
-   ## install the rEFInd icons
-   install -d ${pkgdir}/usr/share/refind/icons/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/icons/* 
${pkgdir}/usr/share/refind/icons/
-   
-   ## install the rEFInd docs
-   install -d ${pkgdir}/usr/share/refind/docs/html/
-   install -d ${pkgdir}/usr/share/refind/docs/Styles/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/docs/refind/* 
${pkgdir}/usr/share/refind/docs/html/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/docs/Styles/* 
${pkgdir}/usr/share/refind/docs/Styles/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/README.txt 
${pkgdir}/usr/share/refind/docs/README
-   install -D -m0644 ${srcdir}/refind-${pkgver}/NEWS.txt 
${pkgdir}/usr/share/refind/docs/NEWS
-   rm -f ${pkgdir}/usr/share/refind/docs/html/.DS_Store
-   
-   ## install the rEFIt license file, since rEFInd is a fork of rEFIt
-   install -d ${pkgdir}/usr/share/licenses/refind/
-   install 

[arch-commits] Commit in gnu-efi-libs/repos (7 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:35:15
  Author: tpowa
Revision: 168460

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

Added:
  gnu-efi-libs/repos/extra-i686/PKGBUILD
(from rev 168459, gnu-efi-libs/trunk/PKGBUILD)
  gnu-efi-libs/repos/extra-i686/gnu-efi-libs-x86_64-call-fix.patch
(from rev 168459, gnu-efi-libs/trunk/gnu-efi-libs-x86_64-call-fix.patch)
  gnu-efi-libs/repos/extra-x86_64/PKGBUILD
(from rev 168459, gnu-efi-libs/trunk/PKGBUILD)
  gnu-efi-libs/repos/extra-x86_64/gnu-efi-libs-x86_64-call-fix.patch
(from rev 168459, gnu-efi-libs/trunk/gnu-efi-libs-x86_64-call-fix.patch)
Deleted:
  gnu-efi-libs/repos/extra-i686/PKGBUILD
  gnu-efi-libs/repos/extra-i686/gnu-efi-libs-x86_64-call-fix.patch
  gnu-efi-libs/repos/extra-x86_64/gnu-efi-libs-x86_64-call-fix.patch

-+
 extra-i686/PKGBUILD |  158 ++---
 extra-i686/gnu-efi-libs-x86_64-call-fix.patch   |  654 +++---
 extra-x86_64/PKGBUILD   |   79 ++
 extra-x86_64/gnu-efi-libs-x86_64-call-fix.patch |  654 +++---
 4 files changed, 812 insertions(+), 733 deletions(-)

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


[arch-commits] Commit in kdebindings-python/repos/staging-i686 (4 files)

2012-10-12 Thread Eric Bélanger
Date: Friday, October 12, 2012 @ 02:36:12
  Author: eric
Revision: 168461

archrelease: copy trunk to staging-i686

Added:
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 168460, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-i686/pyqt495.patch
(from rev 168460, kdebindings-python/trunk/pyqt495.patch)
Deleted:
  kdebindings-python/repos/staging-i686/PKGBUILD
  kdebindings-python/repos/staging-i686/pyqt495.patch

---+
 PKGBUILD  |  150 ++--
 pyqt495.patch |  190 
 2 files changed, 170 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:35:15 UTC (rev 168460)
+++ PKGBUILD2012-10-12 06:36:12 UTC (rev 168461)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.9.2
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;
-'pyqt495.patch')
-sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11'
-  '17b699b9096d10e118ef49fbe5e4cd5687e676a5')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd pykde4-${pkgver}
-  patch -p1 -i ${srcdir}/pyqt495.patch
-  cd ../ 
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 168460, 
kdebindings-python/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-12 06:36:12 UTC (rev 168461)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.2
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;
+'pyqt495.patch')
+sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11'
+  '0935c32e55806873f2d088613594559285da7e9c')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd pykde4-${pkgver}
+  patch -p1 -i ${srcdir}/pyqt495.patch
+  cd ../ 
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd 

[arch-commits] Commit in kdebindings-python/repos/staging-x86_64 (4 files)

2012-10-12 Thread Eric Bélanger
Date: Friday, October 12, 2012 @ 02:36:34
  Author: eric
Revision: 168462

archrelease: copy trunk to staging-x86_64

Added:
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 168461, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/pyqt495.patch
(from rev 168461, kdebindings-python/trunk/pyqt495.patch)
Deleted:
  kdebindings-python/repos/staging-x86_64/PKGBUILD
  kdebindings-python/repos/staging-x86_64/pyqt495.patch

---+
 PKGBUILD  |  150 ++--
 pyqt495.patch |  190 
 2 files changed, 170 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:36:12 UTC (rev 168461)
+++ PKGBUILD2012-10-12 06:36:34 UTC (rev 168462)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.9.2
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;
-'pyqt495.patch')
-sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11'
-  '17b699b9096d10e118ef49fbe5e4cd5687e676a5')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd pykde4-${pkgver}
-  patch -p1 -i ${srcdir}/pyqt495.patch
-  cd ../ 
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 168461, 
kdebindings-python/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-12 06:36:34 UTC (rev 168462)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.2
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;
+'pyqt495.patch')
+sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11'
+  '0935c32e55806873f2d088613594559285da7e9c')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd pykde4-${pkgver}
+  patch -p1 -i ${srcdir}/pyqt495.patch
+  cd ../ 
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd 

[arch-commits] Commit in gummiboot-efi/repos/extra-any (6 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:37:55
  Author: tpowa
Revision: 168463

archrelease: copy trunk to extra-any

Added:
  gummiboot-efi/repos/extra-any/PKGBUILD
(from rev 168462, gummiboot-efi/trunk/PKGBUILD)
  gummiboot-efi/repos/extra-any/arch.conf
(from rev 168462, gummiboot-efi/trunk/arch.conf)
  gummiboot-efi/repos/extra-any/loader.conf
(from rev 168462, gummiboot-efi/trunk/loader.conf)
Deleted:
  gummiboot-efi/repos/extra-any/PKGBUILD
  gummiboot-efi/repos/extra-any/arch.conf
  gummiboot-efi/repos/extra-any/loader.conf

-+
 PKGBUILD|  120 +-
 arch.conf   |   14 +++---
 loader.conf |4 -
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:36:34 UTC (rev 168462)
+++ PKGBUILD2012-10-12 06:37:55 UTC (rev 168463)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-# Contributor:  Mantas Mikulėnas graw...@gmail.com
-
-pkgname=gummiboot-efi
-pkgver=6
-pkgrel=2
-pkgdesc=Simple text-mode UEFI Boot Manager
-url=http://freedesktop.org/wiki/Software/gummiboot;
-arch=('any')
-license=('GPL2')
-makedepends=('gnu-efi-libs')
-depends=('dosfstools' 'efibootmgr')
-optdepends=('mactel-boot: For bless command in Apple Mac systems')
-conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-options=('!strip')
-source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
-'loader.conf'
-'arch.conf')
-
-
-build() {  
-   if [[ ${CARCH} != x86_64 ]]; then
-   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
-   exit 1
-   fi
-   
-   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
-   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|LIBDIR=|LIBDIR?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|CFLAGS =|CFLAGS +=|g'  -i 
${srcdir}/gummiboot-${pkgver}/Makefile
-   
-   ## Compile gummiboot for x86_64 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-x86_64
-   cd ${srcdir}/gummiboot-${pkgver}-x86_64/
-   CFLAGS=-m64 ARCH=x86_64 LIBDIR=/usr/lib make
-   
-   ## Compile gummiboot for i386 aka IA32 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-i386
-   cd ${srcdir}/gummiboot-${pkgver}-i386/
-   CFLAGS=-m32 ARCH=ia32 LIBDIR=/usr/lib32 make  
-}
-
-package() {
-   install -d ${pkgdir}/usr/lib/gummiboot/loader/entries/
-   
-   ## Install gummiboot UEFI applications
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-x86_64/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootx64.efi
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-i386/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootia32.efi
-   
-   ## Install gummiboot example configuration files
-   install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
-   install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf  
-}
-md5sums=('a4c924c508470f1f781162012ebb7602'
- '6ea803e5179d623716e3be0b636de658'
- '0229e197d5beb226aa93efcf5dbacd41')

Copied: gummiboot-efi/repos/extra-any/PKGBUILD (from rev 168462, 
gummiboot-efi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-12 06:37:55 UTC (rev 168463)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
+# Contributor:  Mantas Mikulėnas graw...@gmail.com
+
+pkgname=gummiboot-efi
+pkgver=6
+pkgrel=2
+pkgdesc=Simple text-mode UEFI Boot Manager
+url=http://freedesktop.org/wiki/Software/gummiboot;
+arch=('any')
+license=('GPL2')
+makedepends=('gnu-efi-libs')
+depends=('dosfstools' 'efibootmgr')
+optdepends=('mactel-boot: For bless command in Apple Mac systems')
+conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+options=('!strip')
+source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
+'loader.conf'
+'arch.conf')
+
+
+build() {  
+   if [[ ${CARCH} != x86_64 ]]; then
+   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
+   exit 1
+   fi
+   
+   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
+   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
+   sed 

[arch-commits] Commit in refind-efi/repos/extra-any (8 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:38:56
  Author: tpowa
Revision: 168464

archrelease: copy trunk to extra-any

Added:
  refind-efi/repos/extra-any/PKGBUILD
(from rev 168463, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-any/refind-efi.install
(from rev 168463, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-any/refind_include_more_shell_paths.patch
(from rev 168463, refind-efi/trunk/refind_include_more_shell_paths.patch)
  refind-efi/repos/extra-any/refind_linux.conf
(from rev 168463, refind-efi/trunk/refind_linux.conf)
Deleted:
  refind-efi/repos/extra-any/PKGBUILD
  refind-efi/repos/extra-any/refind-efi.install
  refind-efi/repos/extra-any/refind_include_more_shell_paths.patch
  refind-efi/repos/extra-any/refind_linux.conf

---+
 PKGBUILD  |  154 
 refind-efi.install|   52 +-
 refind_include_more_shell_paths.patch |   42 
 refind_linux.conf |   10 +-
 4 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 06:37:55 UTC (rev 168463)
+++ PKGBUILD2012-10-12 06:38:56 UTC (rev 168464)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Contributor: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-
-pkgname=refind-efi
-pkgver=0.4.6
-pkgrel=1
-pkgdesc=Rod Smith's fork of rEFIt UEFI Boot Manager
-url=http://www.rodsbooks.com/refind/index.html;
-arch=('any')
-license=('GPL3' 'custom')
-makedepends=('gnu-efi-libs=3.0q')
-depends=('dosfstools' 'efibootmgr')
-optdepends=('mactel-boot: For bless command in Apple Mac systems')
-conflicts=('refind-efi-x86_64' 'refind-efi-i386')
-provides=('refind-efi-x86_64' 'refind-efi-i386')
-replaces=('refind-efi-x86_64' 'refind-efi-i386')
-options=('!strip' 'docs')
-install=${pkgname}.install
-source=(http://downloads.sourceforge.net/refind/refind-src-${pkgver}.zip;
-'refind_include_more_shell_paths.patch'
-'refind_linux.conf')
-
-build() {  
-   if [[ ${CARCH} != x86_64 ]]; then
-   msg refind-efi can be built only in an x86_64 system. Exiting.
-   exit 1
-   fi
-   
-   cd ${srcdir}/refind-${pkgver}/
-   patch -Np1 -i ${srcdir}/refind_include_more_shell_paths.patch
-   
-   sed 's|/usr/local/include/efi|/usr/include/efi|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|/usr/local/lib|/usr/lib|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|ARCH:=|ARCH?=|g' -i 
${srcdir}/refind-${pkgver}/Make.common
-   sed 's|ARCH=|ARCH?=|g' -i 
${srcdir}/refind-${pkgver}/refind/Makefile
-   
-   cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-x86_64
-   cd ${srcdir}/refind-${pkgver}-x86_64/
-   ARCH=x86_64 make gnuefi
-   
-   cp -r ${srcdir}/refind-${pkgver} ${srcdir}/refind-${pkgver}-i386
-   cd ${srcdir}/refind-${pkgver}-i386/
-   ARCH=ia32 make gnuefi
-}
-
-package() {
-   ## install the rEFInd UEFI applications
-   install -d ${pkgdir}/usr/lib/refind/
-   install -D -m0644 
${srcdir}/refind-${pkgver}-x86_64/refind/refind_x64.efi 
${pkgdir}/usr/lib/refind/refindx64.efi
-   install -D -m0644 
${srcdir}/refind-${pkgver}-i386/refind/refind_ia32.efi 
${pkgdir}/usr/lib/refind/refindia32.efi
-   
-   ## install the rEFInd config file
-   install -d ${pkgdir}/usr/lib/refind/config/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/refind.conf-sample 
${pkgdir}/usr/lib/refind/config/refind.conf
-   install -D -m0644 ${srcdir}/refind_linux.conf 
${pkgdir}/usr/lib/refind/config/refind_linux.conf
-   
-   ## install the rEFInd icons
-   install -d ${pkgdir}/usr/share/refind/icons/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/icons/* 
${pkgdir}/usr/share/refind/icons/
-   
-   ## install the rEFInd docs
-   install -d ${pkgdir}/usr/share/refind/docs/html/
-   install -d ${pkgdir}/usr/share/refind/docs/Styles/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/docs/refind/* 
${pkgdir}/usr/share/refind/docs/html/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/docs/Styles/* 
${pkgdir}/usr/share/refind/docs/Styles/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/README.txt 
${pkgdir}/usr/share/refind/docs/README
-   install -D -m0644 ${srcdir}/refind-${pkgver}/NEWS.txt 
${pkgdir}/usr/share/refind/docs/NEWS
-   rm -f ${pkgdir}/usr/share/refind/docs/html/.DS_Store
-   
-   ## install the rEFIt license file, since rEFInd is a fork of rEFIt
-   install -d ${pkgdir}/usr/share/licenses/refind/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/LICENSE.txt 
${pkgdir}/usr/share/licenses/refind/LICENSE
-}
-md5sums=('14728e08d8e7956acf9dfc214b26c7cf'
-

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

2012-10-12 Thread Andrea Scarpino
Date: Friday, October 12, 2012 @ 02:39:46
  Author: andrea
Revision: 168465

upgpkg: kdegraphics-kamera 4.9.2-2

Only the lib is needed

Modified:
  kdegraphics-kamera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 06:38:56 UTC (rev 168464)
+++ PKGBUILD2012-10-12 06:39:46 UTC (rev 168465)
@@ -3,13 +3,13 @@
 
 pkgname=kdegraphics-kamera
 pkgver=4.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Configure Kamera
 url=http://kde.org/applications/graphics/kamera/;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegraphics')
-depends=('kdebase-runtime' 'gphoto2')
+depends=('kdebase-runtime' 'libgphoto2')
 makedepends=('cmake' 'automoc4')
 source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
 sha1sums=('5b5b68b8996fdb1cb6541704c03d36cf506e8827')



[arch-commits] Commit in efilinux-efi/repos/extra-any (6 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 02:40:17
  Author: tpowa
Revision: 168466

archrelease: copy trunk to extra-any

Added:
  efilinux-efi/repos/extra-any/PKGBUILD
(from rev 168465, efilinux-efi/trunk/PKGBUILD)
  efilinux-efi/repos/extra-any/efilinux-1.0-to-aa925098a5887.patch
(from rev 168465, efilinux-efi/trunk/efilinux-1.0-to-aa925098a5887.patch)
  efilinux-efi/repos/extra-any/efilinux-efi.install
(from rev 168465, efilinux-efi/trunk/efilinux-efi.install)
Deleted:
  efilinux-efi/repos/extra-any/PKGBUILD
  efilinux-efi/repos/extra-any/efilinux-1.0-to-aa925098a5887.patch
  efilinux-efi/repos/extra-any/efilinux-efi.install

-+
 PKGBUILD|   96 +-
 efilinux-1.0-to-aa925098a5887.patch | 1208 +-
 efilinux-efi.install|   46 -
 3 files changed, 675 insertions(+), 675 deletions(-)

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


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

2012-10-12 Thread Andrea Scarpino
Date: Friday, October 12, 2012 @ 02:40:18
  Author: andrea
Revision: 168467

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

Added:
  kdegraphics-kamera/repos/extra-i686/PKGBUILD
(from rev 168465, kdegraphics-kamera/trunk/PKGBUILD)
  kdegraphics-kamera/repos/extra-x86_64/PKGBUILD
(from rev 168465, kdegraphics-kamera/trunk/PKGBUILD)
Deleted:
  kdegraphics-kamera/repos/extra-i686/PKGBUILD
  kdegraphics-kamera/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 06:40:17 UTC (rev 168466)
+++ extra-i686/PKGBUILD 2012-10-12 06:40:18 UTC (rev 168467)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdegraphics-kamera
-pkgver=4.9.2
-pkgrel=1
-pkgdesc=Configure Kamera
-url=http://kde.org/applications/graphics/kamera/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdegraphics')
-depends=('kdebase-runtime' 'gphoto2')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
-sha1sums=('5b5b68b8996fdb1cb6541704c03d36cf506e8827')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kamera-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdegraphics-kamera/repos/extra-i686/PKGBUILD (from rev 168465, 
kdegraphics-kamera/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-12 06:40:18 UTC (rev 168467)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-kamera
+pkgver=4.9.2
+pkgrel=2
+pkgdesc=Configure Kamera
+url=http://kde.org/applications/graphics/kamera/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libgphoto2')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
+sha1sums=('5b5b68b8996fdb1cb6541704c03d36cf506e8827')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kamera-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-12 06:40:17 UTC (rev 168466)
+++ extra-x86_64/PKGBUILD   2012-10-12 06:40:18 UTC (rev 168467)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdegraphics-kamera
-pkgver=4.9.2
-pkgrel=1
-pkgdesc=Configure Kamera
-url=http://kde.org/applications/graphics/kamera/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdegraphics')
-depends=('kdebase-runtime' 'gphoto2')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
-sha1sums=('5b5b68b8996fdb1cb6541704c03d36cf506e8827')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kamera-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdegraphics-kamera/repos/extra-x86_64/PKGBUILD (from rev 168465, 
kdegraphics-kamera/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-12 06:40:18 UTC (rev 168467)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-kamera
+pkgver=4.9.2
+pkgrel=2
+pkgdesc=Configure Kamera
+url=http://kde.org/applications/graphics/kamera/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libgphoto2')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
+sha1sums=('5b5b68b8996fdb1cb6541704c03d36cf506e8827')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kamera-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2012-10-12 Thread Guillaume Alaux
Date: Friday, October 12, 2012 @ 03:19:31
  Author: guillaume
Revision: 168468

Upstream release - sources

Modified:
  tomcat7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 06:40:18 UTC (rev 168467)
+++ PKGBUILD2012-10-12 07:19:31 UTC (rev 168468)
@@ -1,7 +1,7 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgbase=tomcat7
 pkgname=('java-servlet3.0-tomcat' 'java-jsp2.2-tomcat' 'tomcat7')
-pkgver=7.0.30
+pkgver=7.0.32
 pkgrel=1
 arch=('any')
 url='http://tomcat.apache.org/'
@@ -14,8 +14,8 @@
 tomcat7.install
 systemd.tomcat7.service)
 
-md5sums=('18c61cc4a7b559ad34d34d6f4229ac28'
- '48c19559f28aa6f189bcb0b2c2e563cb'
+md5sums=('daf3de124ec09702560931e87219deb6'
+ '5c2576600ceb3c93a712820c7c16fa70'
  '5219c0d3a25f274ec956d3291b83b320'
  '361a41c02930a4e43245ab7379a617e9'
  '6c5b4ed6d71b227f305b751c349fa31b'



[arch-commits] Commit in tomcat7/repos/extra-any (10 files)

2012-10-12 Thread Guillaume Alaux
Date: Friday, October 12, 2012 @ 03:20:49
  Author: guillaume
Revision: 168469

archrelease: copy trunk to extra-any

Added:
  tomcat7/repos/extra-any/PKGBUILD
(from rev 168468, tomcat7/trunk/PKGBUILD)
  tomcat7/repos/extra-any/systemd.tomcat7.service
(from rev 168468, tomcat7/trunk/systemd.tomcat7.service)
  tomcat7/repos/extra-any/tomcat7
(from rev 168468, tomcat7/trunk/tomcat7)
  tomcat7/repos/extra-any/tomcat7.conf.d
(from rev 168468, tomcat7/trunk/tomcat7.conf.d)
  tomcat7/repos/extra-any/tomcat7.install
(from rev 168468, tomcat7/trunk/tomcat7.install)
Deleted:
  tomcat7/repos/extra-any/PKGBUILD
  tomcat7/repos/extra-any/systemd.tomcat7.service
  tomcat7/repos/extra-any/tomcat7
  tomcat7/repos/extra-any/tomcat7.conf.d
  tomcat7/repos/extra-any/tomcat7.install

-+
 PKGBUILD|  282 +++---
 systemd.tomcat7.service |   70 +--
 tomcat7 |  154 -
 tomcat7.conf.d  |   38 +++---
 tomcat7.install |   54 
 5 files changed, 299 insertions(+), 299 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 07:19:31 UTC (rev 168468)
+++ PKGBUILD2012-10-12 07:20:49 UTC (rev 168469)
@@ -1,141 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgbase=tomcat7
-pkgname=('java-servlet3.0-tomcat' 'java-jsp2.2-tomcat' 'tomcat7')
-pkgver=7.0.30
-pkgrel=1
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-makedepends=('java-environment' 'apache-ant=1.8' 'java-commons-daemon' 
'eclipse-ecj')
-source=(http://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/src/apache-tomcat-${pkgver}-src.tar.gz
-
http://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
-tomcat7.conf.d
-tomcat7
-tomcat7.install
-systemd.tomcat7.service)
-
-md5sums=('18c61cc4a7b559ad34d34d6f4229ac28'
- '48c19559f28aa6f189bcb0b2c2e563cb'
- '5219c0d3a25f274ec956d3291b83b320'
- '361a41c02930a4e43245ab7379a617e9'
- '6c5b4ed6d71b227f305b751c349fa31b'
- '1e2fba29b10f29541d0f5811ede9cb76')
-
-_servletver=3.0
-_jspver=2.2
-
-build() {
-  cd ${srcdir}/apache-tomcat-${pkgver}-src
-
-  . /etc/profile.d/apache-ant.sh
-
-  ant deploy \
--Dbase.path=${srcdir}/DOWN_LIBS \
--Dcommons-daemon.jar=/usr/share/java/commons-daemon.jar \
--Djdt.jar=/usr/share/java/eclipse-ecj.jar \
--Dno.build.dbcp=true
-}
-
-#TODO add test ant test
-
-package_java-servlet3.0-tomcat() {
-  pkgdesc=Servlet 3.0 java library implementation by Apache Tomcat
-  depends=('java-environment=5')
-
-  cd ${srcdir}/apache-tomcat-${pkgver}-src/output/build/lib
-
-  install -dm755 ${pkgdir}/usr/share/java/servlet${_servletver}-tomcat
-  install -m644 servlet-api.jar \
-
${pkgdir}/usr/share/java/servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar
-  ln -s servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar \
-${pkgdir}/usr/share/java/servlet-api.jar
-}
-
-package_java-jsp2.2-tomcat() {
-  pkgdesc=JSP 2.2 java library implementation by Apache Tomcat
-  depends=('java-environment=5')
-
-  cd ${srcdir}/apache-tomcat-${pkgver}-src/output/build/lib
-
-  install -dm755 ${pkgdir}/usr/share/java/jsp${_jspver}-tomcat
-  for j in el-api jsp-api; do
-install -m644 ${j}.jar \
-  
${pkgdir}/usr/share/java/jsp${_jspver}-tomcat/${j}-${_jspver}.jar
-ln -s jsp${_jspver}-tomcat/${j}-${_jspver}.jar 
${pkgdir}/usr/share/java/${j}.jar
-  done
-}
-
-package_tomcat7() {
-  pkgdesc=Servlet-3.0/JSP-2.2 Container
-  depends=('java-runtime=6' 'java-jsvc' 'eclipse-ecj'
-   java-servlet3.0-tomcat=${pkgver} java-jsp2.2-tomcat=${pkgver})
-  optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-  backup=(etc/tomcat7/catalina.policy
-  etc/tomcat7/catalina.properties
-  etc/tomcat7/context.xml
-  etc/tomcat7/logging.properties
-  etc/tomcat7/server.xml
-  etc/tomcat7/tomcat-users.xml
-  etc/tomcat7/web.xml
-  etc/conf.d/tomcat7)
-  install=tomcat7.install
-
-  cd ${srcdir}/apache-tomcat-${pkgver}-src/output/build
-
-  # Tomcat general files
-  install -dm755 ${pkgdir}/usr/share/{,java/}${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  cp -r bin ${pkgdir}/usr/share/${pkgname}
-
-  # eclipse-ecj is packaged on its own
-  rm lib/eclipse-ecj.jar
-  install -m644 lib/* ${pkgdir}/usr/share/java/${pkgname}
-  ln -s ../eclipse-ecj.jar ${pkgdir}/usr/share/java/${pkgname}/eclipse-ecj.jar
-
-  # Provided by previous packages
-  rm ${pkgdir}/usr/share/java/${pkgname}/servlet-api.jar
-  ln -s 
/usr/share/java/servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar \
-

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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 05:18:35
  Author: tpowa
Revision: 168470

upgpkg: pam 1.1.6-1

update to 1.1.6, update pam_unix2 2.9.1

Added:
  pam/trunk/pam_namespace-build-1.1.6.patch
  pam/trunk/pam_unix2-glibc216.patch
Modified:
  pam/trunk/PKGBUILD
Deleted:
  pam/trunk/pam-glibc-2.16.patch

-+
 PKGBUILD|   27 ++-
 pam-glibc-2.16.patch|   10 --
 pam_namespace-build-1.1.6.patch |   11 +++
 pam_unix2-glibc216.patch|   20 
 4 files changed, 45 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 07:20:49 UTC (rev 168469)
+++ PKGBUILD2012-10-12 09:18:35 UTC (rev 168470)
@@ -3,8 +3,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=pam
-pkgver=1.1.5
-pkgrel=5
+pkgver=1.1.6
+pkgrel=1
 pkgdesc=PAM (Pluggable Authentication Modules) library
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -14,30 +14,34 @@
 
backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 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
-   pam-glibc-2.16.patch)
+ftp://ftp.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
+pam_unix2-glibc216.patch
+pam_namespace-build-1.1.6.patch)
 options=('!libtool' '!emptydirs')
-md5sums=('927ee5585bdec5256c75117e9348aa47'
- 'e2788389a6c59224110a45fcff30e02b')
+md5sums=('7b73e58b7ce79ffa321d408de06db2c4'
+ 'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
+ 'dac109f68e04a4df37575fda6001ea17'
+ '440a510164ba5eb69bf41e129746ff44')
 
 build() {
   cd $srcdir/Linux-PAM-$pkgver
-  patch -Np1 -i ../pam-glibc-2.16.patch
   ./configure --libdir=/usr/lib
+  patch -Np0 -i ../pam_namespace-build-1.1.6.patch
   make
 
-  cd $srcdir/pam_unix2-2.6
+  cd $srcdir/pam_unix2-2.9.1
+  patch -Np1 -i ../pam_unix2-glibc216.patch
   ./configure --libdir=/usr/lib
   make
 }
 
 package() {
   cd $srcdir/Linux-PAM-$pkgver
-  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
 
   # build pam_unix2 module
   # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
-  cd $srcdir/pam_unix2-2.6
+  cd $srcdir/pam_unix2-2.9.1
   make DESTDIR=$pkgdir install
 
   # add the realtime permissions for audio users
@@ -60,6 +64,3 @@
   # set unix_chkpwd uid
   chmod +s $pkgdir/sbin/unix_chkpwd
 }
-md5sums=('927ee5585bdec5256c75117e9348aa47'
- 'e2788389a6c59224110a45fcff30e02b'
- '469023948632df30d2cb2015b77aa0fe')

Deleted: pam-glibc-2.16.patch
===
--- pam-glibc-2.16.patch2012-10-12 07:20:49 UTC (rev 168469)
+++ pam-glibc-2.16.patch2012-10-12 09:18:35 UTC (rev 168470)
@@ -1,10 +0,0 @@
 a/modules/pam_unix/pam_unix_acct.c 2011-06-21 11:04:56.0 +0200
-+++ b/modules/pam_unix/pam_unix_acct.c 2012-07-05 16:04:35.643727485 +0200
-@@ -41,6 +41,7 @@
- #include string.h
- #include unistd.h
- #include sys/types.h
-+#include sys/resource.h
- #include syslog.h
- #include pwd.h
- #include shadow.h

Added: pam_namespace-build-1.1.6.patch
===
--- pam_namespace-build-1.1.6.patch (rev 0)
+++ pam_namespace-build-1.1.6.patch 2012-10-12 09:18:35 UTC (rev 168470)
@@ -0,0 +1,11 @@
+--- modules/pam_namespace/Makefile~2012-10-12 10:59:13.557550706 +0200
 modules/pam_namespace/Makefile 2012-10-12 10:59:13.564217270 +0200
+@@ -869,7 +869,7 @@
+ 
+ 
+ install-data-local:
+-  mkdir -p $(namespaceddir)
++  mkdir -p $(DESTDIR)$(namespaceddir)
+ README: pam_namespace.8.xml namespace.conf.5.xml
+ -include $(top_srcdir)/Make.xml.rules
+ 

Added: pam_unix2-glibc216.patch
===
--- pam_unix2-glibc216.patch(rev 0)
+++ pam_unix2-glibc216.patch2012-10-12 09:18:35 UTC (rev 168470)
@@ -0,0 +1,20 @@
+Index: pam_unix2-2.9.1/src/read-files.c
+===
+--- pam_unix2-2.9.1.orig/src/read-files.c
 pam_unix2-2.9.1/src/read-files.c
+@@ -30,8 +30,14 @@
+ #include errno.h
+ #include fcntl.h
+ #include nss.h
+-#include bits/libc-lock.h
++#include pthread.h
+ #define __libc_lock_t pthread_mutex_t
++#define __libc_lock_define_initialized(CLASS,NAME) \
++  CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER;
++#define __libc_lock_lock(NAME) \
++  pthread_mutex_lock, ((NAME))
++#define __libc_lock_unlock(NAME) \
++  pthread_mutex_unlock, ((NAME))
+ 
+ #include read-files.h
+ 



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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 05:19:17
  Author: tpowa
Revision: 168471

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

Added:
  pam/repos/testing-i686/
  pam/repos/testing-i686/PKGBUILD
(from rev 168470, pam/trunk/PKGBUILD)
  pam/repos/testing-i686/other
(from rev 168470, pam/trunk/other)
  pam/repos/testing-i686/pam.install
(from rev 168470, pam/trunk/pam.install)
  pam/repos/testing-i686/pam_namespace-build-1.1.6.patch
(from rev 168470, pam/trunk/pam_namespace-build-1.1.6.patch)
  pam/repos/testing-i686/pam_unix2-glibc216.patch
(from rev 168470, pam/trunk/pam_unix2-glibc216.patch)
  pam/repos/testing-x86_64/
  pam/repos/testing-x86_64/PKGBUILD
(from rev 168470, pam/trunk/PKGBUILD)
  pam/repos/testing-x86_64/other
(from rev 168470, pam/trunk/other)
  pam/repos/testing-x86_64/pam.install
(from rev 168470, pam/trunk/pam.install)
  pam/repos/testing-x86_64/pam_namespace-build-1.1.6.patch
(from rev 168470, pam/trunk/pam_namespace-build-1.1.6.patch)
  pam/repos/testing-x86_64/pam_unix2-glibc216.patch
(from rev 168470, pam/trunk/pam_unix2-glibc216.patch)

+
 testing-i686/PKGBUILD  |   66 +++
 testing-i686/other |5 +
 testing-i686/pam.install   |   12 
 testing-i686/pam_namespace-build-1.1.6.patch   |   11 +++
 testing-i686/pam_unix2-glibc216.patch  |   20 ++
 testing-x86_64/PKGBUILD|   66 +++
 testing-x86_64/other   |5 +
 testing-x86_64/pam.install |   12 
 testing-x86_64/pam_namespace-build-1.1.6.patch |   11 +++
 testing-x86_64/pam_unix2-glibc216.patch|   20 ++
 10 files changed, 228 insertions(+)

Copied: pam/repos/testing-i686/PKGBUILD (from rev 168470, pam/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 09:19:17 UTC (rev 168471)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=pam
+pkgver=1.1.6
+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' 'pambase')
+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/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.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
+pam_unix2-glibc216.patch
+pam_namespace-build-1.1.6.patch)
+options=('!libtool' '!emptydirs')
+md5sums=('7b73e58b7ce79ffa321d408de06db2c4'
+ 'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
+ 'dac109f68e04a4df37575fda6001ea17'
+ '440a510164ba5eb69bf41e129746ff44')
+
+build() {
+  cd $srcdir/Linux-PAM-$pkgver
+  ./configure --libdir=/usr/lib
+  patch -Np0 -i ../pam_namespace-build-1.1.6.patch
+  make
+
+  cd $srcdir/pam_unix2-2.9.1
+  patch -Np1 -i ../pam_unix2-glibc216.patch
+  ./configure --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $srcdir/Linux-PAM-$pkgver
+  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
+
+  # build pam_unix2 module
+  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
+  cd $srcdir/pam_unix2-2.9.1
+  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/usr/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/testing-i686/other (from rev 168470, pam/trunk/other)
===
--- testing-i686/other  (rev 0)
+++ testing-i686/other  2012-10-12 09:19:17 UTC (rev 168471)
@@ -0,0 +1,5 @@
+#%PAM-1.0
+auth   requiredpam_unix.so
+accountrequiredpam_unix.so
+password   requiredpam_unix.so
+sessionrequiredpam_unix.so

Copied: pam/repos/testing-i686/pam.install (from rev 168470, 

[arch-commits] Commit in linux-lts/repos (34 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 08:14:38
  Author: tpowa
Revision: 168472

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

Added:
  linux-lts/repos/core-i686/PKGBUILD
(from rev 168471, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 168471, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 168471, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 168471, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 168471, linux-lts/repos/testing-i686/ext4-options.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 168471, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 168471, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 168471, linux-lts/repos/testing-i686/linux-lts.preset)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 168471, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 168471, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 168471, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 168471, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 168471, linux-lts/repos/testing-x86_64/ext4-options.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 168471, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 168471, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 168471, linux-lts/repos/testing-x86_64/linux-lts.preset)
Deleted:
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-x86_64/

---+
 core-i686/PKGBUILD|  615 -
 core-i686/change-default-console-loglevel.patch   |   24 
 core-i686/config  |11314 ++--
 core-i686/config.x86_64   |10790 +--
 core-i686/ext4-options.patch  |   98 
 core-i686/i915-fix-ghost-tv-output.patch  |   52 
 core-i686/linux-lts.install   |  130 
 core-i686/linux-lts.preset|   28 
 core-x86_64/PKGBUILD  |  615 -
 core-x86_64/change-default-console-loglevel.patch |   24 
 core-x86_64/config|11314 ++--
 core-x86_64/config.x86_64 |10790 +--
 core-x86_64/ext4-options.patch|   98 
 core-x86_64/i915-fix-ghost-tv-output.patch|   52 
 core-x86_64/linux-lts.install |  130 
 core-x86_64/linux-lts.preset  |   28 
 16 files changed, 23052 insertions(+), 23050 deletions(-)

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


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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 08:32:33
  Author: tpowa
Revision: 168473

upgpkg: gummiboot-efi 7-1

bump to latest version

Modified:
  gummiboot-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 12:14:38 UTC (rev 168472)
+++ PKGBUILD2012-10-12 12:32:33 UTC (rev 168473)
@@ -4,8 +4,8 @@
 # Contributor:  Mantas Mikulėnas graw...@gmail.com
 
 pkgname=gummiboot-efi
-pkgver=6
-pkgrel=2
+pkgver=7
+pkgrel=1
 pkgdesc=Simple text-mode UEFI Boot Manager
 url=http://freedesktop.org/wiki/Software/gummiboot;
 arch=('any')
@@ -55,6 +55,6 @@
install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf  
 }
-md5sums=('a4c924c508470f1f781162012ebb7602'
+md5sums=('cb84091758932810bcebb98d7b752c04'
  '6ea803e5179d623716e3be0b636de658'
  '0229e197d5beb226aa93efcf5dbacd41')



[arch-commits] Commit in gummiboot-efi/repos/extra-any (6 files)

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 08:32:54
  Author: tpowa
Revision: 168474

archrelease: copy trunk to extra-any

Added:
  gummiboot-efi/repos/extra-any/PKGBUILD
(from rev 168473, gummiboot-efi/trunk/PKGBUILD)
  gummiboot-efi/repos/extra-any/arch.conf
(from rev 168473, gummiboot-efi/trunk/arch.conf)
  gummiboot-efi/repos/extra-any/loader.conf
(from rev 168473, gummiboot-efi/trunk/loader.conf)
Deleted:
  gummiboot-efi/repos/extra-any/PKGBUILD
  gummiboot-efi/repos/extra-any/arch.conf
  gummiboot-efi/repos/extra-any/loader.conf

-+
 PKGBUILD|  120 +-
 arch.conf   |   14 +++---
 loader.conf |4 -
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-12 12:32:33 UTC (rev 168473)
+++ PKGBUILD2012-10-12 12:32:54 UTC (rev 168474)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-# Contributor:  Mantas Mikulėnas graw...@gmail.com
-
-pkgname=gummiboot-efi
-pkgver=6
-pkgrel=2
-pkgdesc=Simple text-mode UEFI Boot Manager
-url=http://freedesktop.org/wiki/Software/gummiboot;
-arch=('any')
-license=('GPL2')
-makedepends=('gnu-efi-libs')
-depends=('dosfstools' 'efibootmgr')
-optdepends=('mactel-boot: For bless command in Apple Mac systems')
-conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
-options=('!strip')
-source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
-'loader.conf'
-'arch.conf')
-
-
-build() {  
-   if [[ ${CARCH} != x86_64 ]]; then
-   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
-   exit 1
-   fi
-   
-   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
-   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|LIBDIR=|LIBDIR?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
-   sed 's|CFLAGS =|CFLAGS +=|g'  -i 
${srcdir}/gummiboot-${pkgver}/Makefile
-   
-   ## Compile gummiboot for x86_64 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-x86_64
-   cd ${srcdir}/gummiboot-${pkgver}-x86_64/
-   CFLAGS=-m64 ARCH=x86_64 LIBDIR=/usr/lib make
-   
-   ## Compile gummiboot for i386 aka IA32 UEFI
-   cp -r ${srcdir}/gummiboot-${pkgver} 
${srcdir}/gummiboot-${pkgver}-i386
-   cd ${srcdir}/gummiboot-${pkgver}-i386/
-   CFLAGS=-m32 ARCH=ia32 LIBDIR=/usr/lib32 make  
-}
-
-package() {
-   install -d ${pkgdir}/usr/lib/gummiboot/loader/entries/
-   
-   ## Install gummiboot UEFI applications
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-x86_64/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootx64.efi
-   install -D -m0644 ${srcdir}/gummiboot-${pkgver}-i386/gummiboot.efi 
${pkgdir}/usr/lib/gummiboot/gummibootia32.efi
-   
-   ## Install gummiboot example configuration files
-   install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
-   install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf  
-}
-md5sums=('a4c924c508470f1f781162012ebb7602'
- '6ea803e5179d623716e3be0b636de658'
- '0229e197d5beb226aa93efcf5dbacd41')

Copied: gummiboot-efi/repos/extra-any/PKGBUILD (from rev 168473, 
gummiboot-efi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-12 12:32:54 UTC (rev 168474)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Maintainer: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
+# Contributor:  Mantas Mikulėnas graw...@gmail.com
+
+pkgname=gummiboot-efi
+pkgver=7
+pkgrel=1
+pkgdesc=Simple text-mode UEFI Boot Manager
+url=http://freedesktop.org/wiki/Software/gummiboot;
+arch=('any')
+license=('GPL2')
+makedepends=('gnu-efi-libs')
+depends=('dosfstools' 'efibootmgr')
+optdepends=('mactel-boot: For bless command in Apple Mac systems')
+conflicts=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+provides=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+replaces=('gummiboot-efi-x86_64' 'gummiboot-efi-i386')
+options=('!strip')
+source=(ftp://ftp.archlinux.org/other/gummiboot-efi/gummiboot-${pkgver}.tar.gz;
+'loader.conf'
+'arch.conf')
+
+
+build() {  
+   if [[ ${CARCH} != x86_64 ]]; then
+   msg gummiboot-efi can be built only in an x86_64 system. 
Exiting.
+   exit 1
+   fi
+   
+   ## Fix Makefiles to enable compile for both x86_64 and i386 UEFI
+   sed 's|ARCH=|ARCH?=|g' -i ${srcdir}/gummiboot-${pkgver}/Makefile
+   sed 

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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 08:47:26
  Author: tpowa
Revision: 168475

upgpkg: openexr 1.7.1-1

bump to latest version

Modified:
  openexr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 12:32:54 UTC (rev 168474)
+++ PKGBUILD2012-10-12 12:47:26 UTC (rev 168475)
@@ -2,18 +2,16 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=openexr
-pkgver=1.7.0
-pkgrel=2
+pkgver=1.7.1
+pkgrel=1
 pkgdesc=An high dynamic-range image file format library
 url=http://www.openexr.com/;
 arch=('i686' 'x86_64')
 license=('BSD')
 depends=('zlib' 'ilmbase')
 options=('!libtool')
-source=(http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+source=(https://github.com/downloads/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'gcc43.patch')
-md5sums=('27113284f7d26a58f853c346e0851d7a'
- 'd91fae759053a70bcedcf02eb33ca4a2')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -27,3 +25,6 @@
   make DESTDIR=${pkgdir} install
   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
+
+md5sums=('a9e0369dfd68941c50cdaa93e9d7a8d1'
+ 'd91fae759053a70bcedcf02eb33ca4a2')



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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 08:47:54
  Author: tpowa
Revision: 168476

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

Added:
  openexr/repos/extra-i686/PKGBUILD
(from rev 168475, openexr/trunk/PKGBUILD)
  openexr/repos/extra-i686/gcc43.patch
(from rev 168475, openexr/trunk/gcc43.patch)
  openexr/repos/extra-x86_64/PKGBUILD
(from rev 168475, openexr/trunk/PKGBUILD)
  openexr/repos/extra-x86_64/gcc43.patch
(from rev 168475, openexr/trunk/gcc43.patch)
Deleted:
  openexr/repos/extra-i686/PKGBUILD
  openexr/repos/extra-i686/gcc43.patch
  openexr/repos/extra-x86_64/PKGBUILD
  openexr/repos/extra-x86_64/gcc43.patch

--+
 extra-i686/PKGBUILD  |   59 ++---
 extra-i686/gcc43.patch   |   22 
 extra-x86_64/PKGBUILD|   59 ++---
 extra-x86_64/gcc43.patch |   22 
 4 files changed, 82 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 12:47:26 UTC (rev 168475)
+++ extra-i686/PKGBUILD 2012-10-12 12:47:54 UTC (rev 168476)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=openexr
-pkgver=1.7.0
-pkgrel=2
-pkgdesc=An high dynamic-range image file format library
-url=http://www.openexr.com/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=(http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gcc43.patch')
-md5sums=('27113284f7d26a58f853c346e0851d7a'
- 'd91fae759053a70bcedcf02eb33ca4a2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p0 -i ${srcdir}/gcc43.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: openexr/repos/extra-i686/PKGBUILD (from rev 168475, 
openexr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-12 12:47:54 UTC (rev 168476)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=openexr
+pkgver=1.7.1
+pkgrel=1
+pkgdesc=An high dynamic-range image file format library
+url=http://www.openexr.com/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('zlib' 'ilmbase')
+options=('!libtool')
+source=(https://github.com/downloads/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'gcc43.patch')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/gcc43.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+md5sums=('a9e0369dfd68941c50cdaa93e9d7a8d1'
+ 'd91fae759053a70bcedcf02eb33ca4a2')

Deleted: extra-i686/gcc43.patch
===
--- extra-i686/gcc43.patch  2012-10-12 12:47:26 UTC (rev 168475)
+++ extra-i686/gcc43.patch  2012-10-12 12:47:54 UTC (rev 168476)
@@ -1,11 +0,0 @@
 exrenvmap/blurImage.cpp
-+++ exrenvmap/blurImage.cpp
-@@ -39,6 +39,8 @@
- //
- 
//-
- 
-+#include cstring
-+
- #include blurImage.h
- 
- #include resizeImage.h

Copied: openexr/repos/extra-i686/gcc43.patch (from rev 168475, 
openexr/trunk/gcc43.patch)
===
--- extra-i686/gcc43.patch  (rev 0)
+++ extra-i686/gcc43.patch  2012-10-12 12:47:54 UTC (rev 168476)
@@ -0,0 +1,11 @@
+--- exrenvmap/blurImage.cpp
 exrenvmap/blurImage.cpp
+@@ -39,6 +39,8 @@
+ //
+ 
//-
+ 
++#include cstring
++
+ #include blurImage.h
+ 
+ #include resizeImage.h

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-12 12:47:26 UTC (rev 168475)
+++ extra-x86_64/PKGBUILD   2012-10-12 12:47:54 UTC (rev 168476)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=openexr
-pkgver=1.7.0
-pkgrel=2
-pkgdesc=An high dynamic-range image file format library
-url=http://www.openexr.com/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=(http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gcc43.patch')
-md5sums=('27113284f7d26a58f853c346e0851d7a'
- 'd91fae759053a70bcedcf02eb33ca4a2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p0 -i ${srcdir}/gcc43.patch
-  ./configure --prefix=/usr
-  make
-}

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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 09:05:48
  Author: tpowa
Revision: 168477

upgpkg: facile 1.1-15

rebuild against new ocaml

Modified:
  facile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 12:47:54 UTC (rev 168476)
+++ PKGBUILD2012-10-12 13:05:48 UTC (rev 168477)
@@ -3,7 +3,7 @@
 
 pkgname=facile
 pkgver=1.1
-pkgrel=14
+pkgrel=15
 pkgdesc=A Functional Constraint Library
 arch=(i686 x86_64)
 url=http://www.recherche.enac.fr/opti/facile/;



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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 09:06:17
  Author: tpowa
Revision: 168478

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

Added:
  facile/repos/extra-i686/PKGBUILD
(from rev 168477, facile/trunk/PKGBUILD)
  facile/repos/extra-i686/ocaml-facile-ocaml-4.patch
(from rev 168477, facile/trunk/ocaml-facile-ocaml-4.patch)
  facile/repos/extra-x86_64/PKGBUILD
(from rev 168477, facile/trunk/PKGBUILD)
  facile/repos/extra-x86_64/ocaml-facile-ocaml-4.patch
(from rev 168477, facile/trunk/ocaml-facile-ocaml-4.patch)
Deleted:
  facile/repos/extra-i686/PKGBUILD
  facile/repos/extra-i686/ocaml-facile-ocaml-4.patch
  facile/repos/extra-x86_64/PKGBUILD
  facile/repos/extra-x86_64/ocaml-facile-ocaml-4.patch

-+
 extra-i686/PKGBUILD |   58 +++---
 extra-i686/ocaml-facile-ocaml-4.patch   |   50 -
 extra-x86_64/PKGBUILD   |   58 +++---
 extra-x86_64/ocaml-facile-ocaml-4.patch |   50 -
 4 files changed, 108 insertions(+), 108 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 13:05:48 UTC (rev 168477)
+++ extra-i686/PKGBUILD 2012-10-12 13:06:17 UTC (rev 168478)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=facile
-pkgver=1.1
-pkgrel=14
-pkgdesc=A Functional Constraint Library
-arch=(i686 x86_64)
-url=http://www.recherche.enac.fr/opti/facile/;
-license=LGPL
-makedepends=('ocaml')
-depends=()
-source=(http://www.recherche.enac.fr/opti/facile/distrib/$pkgname-$pkgver.tar.gz
-ocaml-facile-ocaml-4.patch)
-
-md5sums=('ab673e1fc0859a42bcb639a02c2d7e9e')
-
-build() {
-  cd $startdir/src/$pkgname-$pkgver
-  # fix ocaml4
-  patch -Np1 -i ../ocaml-facile-ocaml-4.patch
-  ./configure
-  make || return 1
-  mkdir -p $startdir/pkg/usr/lib/ocaml/facile
-  cd src
-  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
$startdir/pkg/usr/lib/ocaml/facile
-}
-md5sums=('ab673e1fc0859a42bcb639a02c2d7e9e'
- '1ffc2f08c9f1db8ef0d444ec06f82b79')

Copied: facile/repos/extra-i686/PKGBUILD (from rev 168477, 
facile/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-12 13:06:17 UTC (rev 168478)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=facile
+pkgver=1.1
+pkgrel=15
+pkgdesc=A Functional Constraint Library
+arch=(i686 x86_64)
+url=http://www.recherche.enac.fr/opti/facile/;
+license=LGPL
+makedepends=('ocaml')
+depends=()
+source=(http://www.recherche.enac.fr/opti/facile/distrib/$pkgname-$pkgver.tar.gz
+ocaml-facile-ocaml-4.patch)
+
+md5sums=('ab673e1fc0859a42bcb639a02c2d7e9e')
+
+build() {
+  cd $startdir/src/$pkgname-$pkgver
+  # fix ocaml4
+  patch -Np1 -i ../ocaml-facile-ocaml-4.patch
+  ./configure
+  make || return 1
+  mkdir -p $startdir/pkg/usr/lib/ocaml/facile
+  cd src
+  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
$startdir/pkg/usr/lib/ocaml/facile
+}
+md5sums=('ab673e1fc0859a42bcb639a02c2d7e9e'
+ '1ffc2f08c9f1db8ef0d444ec06f82b79')

Deleted: extra-i686/ocaml-facile-ocaml-4.patch
===
--- extra-i686/ocaml-facile-ocaml-4.patch   2012-10-12 13:05:48 UTC (rev 
168477)
+++ extra-i686/ocaml-facile-ocaml-4.patch   2012-10-12 13:06:17 UTC (rev 
168478)
@@ -1,25 +0,0 @@
-diff -ur facile-1.1.old/src/facile.mli facile-1.1/src/facile.mli
 facile-1.1.old/src/facile.mli  2004-09-08 10:51:02.0 +0100
-+++ facile-1.1/src/facile.mli  2012-06-10 21:06:41.553916954 +0100
-@@ -127,7 +127,7 @@
-   module Hashtbl :
- sig
-   type ('a, 'b) t
--  val create : int - ('a, 'b) t
-+  val create : ?random:bool - int - ('a, 'b) t
-   val get : ('a, 'b) t - ('a, 'b) Hashtbl.t
-   val add : ('a, 'b) t - 'a - 'b - unit
-   val find : ('a, 'b) t - 'a - 'b
-Binary files facile-1.1.old/src/fcl_data.cmi and facile-1.1/src/fcl_data.cmi 
differ
-diff -ur facile-1.1.old/src/fcl_data.mli facile-1.1/src/fcl_data.mli
 facile-1.1.old/src/fcl_data.mli2004-09-08 10:51:02.0 +0100
-+++ facile-1.1/src/fcl_data.mli2012-06-10 21:06:25.841590828 +0100
-@@ -23,7 +23,7 @@
- 
- module Hashtbl : sig
-   type ('a, 'b) t
--  val create : int - ('a, 'b) t
-+  val create : ?random:bool - int - ('a, 'b) t
-   val get : ('a, 'b) t - ('a, 'b) Hashtbl.t
-   val add : ('a, 'b) t - 'a - 'b - unit
-   val find : ('a, 'b) t - 'a - 'b

Copied: facile/repos/extra-i686/ocaml-facile-ocaml-4.patch (from rev 168477, 
facile/trunk/ocaml-facile-ocaml-4.patch)
===
--- extra-i686/ocaml-facile-ocaml-4.patch   (rev 

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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 09:07:46
  Author: tpowa
Revision: 168479

upgpkg: ocaml 4.00.1-1

bump to latest version

Modified:
  ocaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 13:06:17 UTC (rev 168478)
+++ PKGBUILD2012-10-12 13:07:46 UTC (rev 168479)
@@ -3,8 +3,8 @@
 
 pkgbase='ocaml'
 pkgname=('ocaml' 'ocaml-compiler-libs')
-pkgver=4.00.0
-pkgrel=2
+pkgver=4.00.1
+pkgrel=1
 pkgdesc=A functional language with OO extensions
 arch=('i686' 'x86_64')
 license=('LGPL2' 'custom: QPL-1.0')
@@ -54,4 +54,4 @@
   install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/
 }
-md5sums=('fa11560a45793bd9fa45c1295a6f4a91')
+md5sums=('91124a8eb12a57f1e56c02fe3db0f9e7')



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

2012-10-12 Thread Tobias Powalowski
Date: Friday, October 12, 2012 @ 09:08:15
  Author: tpowa
Revision: 168480

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

Added:
  ocaml/repos/extra-i686/PKGBUILD
(from rev 168479, ocaml/trunk/PKGBUILD)
  ocaml/repos/extra-i686/fix-ocaml-binutils-2.21.patch
(from rev 168479, ocaml/trunk/fix-ocaml-binutils-2.21.patch)
  ocaml/repos/extra-x86_64/PKGBUILD
(from rev 168479, ocaml/trunk/PKGBUILD)
  ocaml/repos/extra-x86_64/fix-ocaml-binutils-2.21.patch
(from rev 168479, ocaml/trunk/fix-ocaml-binutils-2.21.patch)
Deleted:
  ocaml/repos/extra-i686/PKGBUILD
  ocaml/repos/extra-i686/fix-ocaml-binutils-2.21.patch
  ocaml/repos/extra-x86_64/PKGBUILD
  ocaml/repos/extra-x86_64/fix-ocaml-binutils-2.21.patch

+
 extra-i686/PKGBUILD|  114 +++
 extra-i686/fix-ocaml-binutils-2.21.patch   |  132 +--
 extra-x86_64/PKGBUILD  |  114 +++
 extra-x86_64/fix-ocaml-binutils-2.21.patch |  132 +--
 4 files changed, 246 insertions(+), 246 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 13:07:46 UTC (rev 168479)
+++ extra-i686/PKGBUILD 2012-10-12 13:08:15 UTC (rev 168480)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgbase='ocaml'
-pkgname=('ocaml' 'ocaml-compiler-libs')
-pkgver=4.00.0
-pkgrel=2
-pkgdesc=A functional language with OO extensions
-arch=('i686' 'x86_64')
-license=('LGPL2' 'custom: QPL-1.0')
-url=http://caml.inria.fr/;
-depends=('gdbm')
-makedepends=('tk' 'ncurses=5.6-7' 'libx11')
-optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
-source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz)
-options=('!makeflags' '!emptydirs')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure -prefix /usr 
-  make world.opt
-}
-
-package_ocaml() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make PREFIX=${pkgdir}/usr MANDIR=${pkgdir}/usr/share/man install
-   
-  # Save 10MB with this one, makepkg only strips debug symbols.
-  #find ${pkgdir}/usr/lib -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
-
-  # install license
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/
-}
-
-package_ocaml-compiler-libs() {
-pkgdesc=Several modules used internally by the OCaml compiler
-license=('custom: QPL-1.0')
-depends=('ocaml')
-optdepends=()
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # Install compiler libraries
-  local compiler_libs=${pkgdir}/usr/lib/ocaml/compiler-libs
-  mkdir -p $compiler_libs/{parsing,typing,utils}
-  cp parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} $compiler_libs/parsing
-  cp typing/*.{cmi,cmo,cmx,ml,mli,o} $compiler_libs/typing
-  cp utils/*.{cmi,cmo,cmx,ml,mli,o} $compiler_libs/utils
-  # duplicated by installation
-  rm -f $compiler_libs/typing/outcometree.{cmi,mli}
-
-  # install license
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/
-}
-md5sums=('fa11560a45793bd9fa45c1295a6f4a91')

Copied: ocaml/repos/extra-i686/PKGBUILD (from rev 168479, ocaml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-12 13:08:15 UTC (rev 168480)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgbase='ocaml'
+pkgname=('ocaml' 'ocaml-compiler-libs')
+pkgver=4.00.1
+pkgrel=1
+pkgdesc=A functional language with OO extensions
+arch=('i686' 'x86_64')
+license=('LGPL2' 'custom: QPL-1.0')
+url=http://caml.inria.fr/;
+depends=('gdbm')
+makedepends=('tk' 'ncurses=5.6-7' 'libx11')
+optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
+source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz)
+options=('!makeflags' '!emptydirs')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure -prefix /usr 
+  make world.opt
+}
+
+package_ocaml() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make PREFIX=${pkgdir}/usr MANDIR=${pkgdir}/usr/share/man install
+   
+  # Save 10MB with this one, makepkg only strips debug symbols.
+  #find ${pkgdir}/usr/lib -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
+
+  # install license
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/
+}
+
+package_ocaml-compiler-libs() {
+pkgdesc=Several modules used internally by the OCaml compiler
+license=('custom: QPL-1.0')
+depends=('ocaml')
+optdepends=()
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  # Install compiler libraries
+  local compiler_libs=${pkgdir}/usr/lib/ocaml/compiler-libs
+  mkdir -p $compiler_libs/{parsing,typing,utils}
+  cp 

[arch-commits] Commit in celestia/trunk (PKGBUILD gcc-4.7-fixes.diff)

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 12:52:59
  Author: andyrtr
Revision: 168481

upgpkg: celestia 1.6.1-3

mesa - glu rebuild; add a gcc4.7 build fix

Added:
  celestia/trunk/gcc-4.7-fixes.diff
Modified:
  celestia/trunk/PKGBUILD

+
 PKGBUILD   |   11 +++
 gcc-4.7-fixes.diff |   10 ++
 2 files changed, 17 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 13:08:15 UTC (rev 168480)
+++ PKGBUILD2012-10-12 16:52:59 UTC (rev 168481)
@@ -4,21 +4,23 @@
 
 pkgname=celestia
 pkgver=1.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Real-time space simulation
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.shatters.net/celestia/;
-depends=('gtk2' 'libtheora' 'lua' 'gtkglext' 'glut' 'libxmu' 'mesa' 'libjpeg')
+depends=('gtk2' 'libtheora' 'lua' 'gtkglext' 'glut' 'libxmu' 'glu' 'libjpeg')
 options=('!makeflags')
 
source=(http://downloads.sourceforge.net/sourceforge/celestia/${pkgname}-${pkgver}.tar.gz;
 'celestia-1.6.1-gcc46.patch' 
 'celestia-1.6.1-libpng15.patch'
-'celestia-1.6.1-linking.patch')
+'celestia-1.6.1-linking.patch'
+'gcc-4.7-fixes.diff')
 sha1sums=('1f0fdf4525a8b9d6c708e1f6383babed670d18e7'
   '7c08ca391603806d788cb8f3342acedafc924eef'
   '46ecc4e10b24191384bc848c206652498843adf0'
-  '534c8eee18d13a868c91f0b870ebecc05f3e7ae1')
+  '534c8eee18d13a868c91f0b870ebecc05f3e7ae1'
+  '582f9eed93eca02a16350f02c29e2ea6f69aa869')
 
 build() {
 cd ${srcdir}/${pkgname}-${pkgver}
@@ -27,6 +29,7 @@
 patch -Np0 -i ${srcdir}/celestia-1.6.1-gcc46.patch
 patch -Np0 -i ${srcdir}/celestia-1.6.1-libpng15.patch
 patch -Np1 -i ${srcdir}/celestia-1.6.1-linking.patch
+patch -Np1 -i ${srcdir}/gcc-4.7-fixes.diff
 
 # This version of Celestia has a bug in the font rendering and requires 
-fsigned-char 
 export CFLAGS=$CFLAGS -fsigned-char

Added: gcc-4.7-fixes.diff
===
--- gcc-4.7-fixes.diff  (rev 0)
+++ gcc-4.7-fixes.diff  2012-10-12 16:52:59 UTC (rev 168481)
@@ -0,0 +1,10 @@
+--- a/src/celmath/intersect.h
 b/src/celmath/intersect.h
+@@ -15,6 +15,7 @@
+ #include ray.h
+ #include sphere.h
+ #include ellipsoid.h
++#include mathlib.h
+ 
+ 
+ templateclass T bool testIntersection(const Ray3T ray,



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 12:54:10
  Author: andyrtr
Revision: 168482

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

Added:
  celestia/repos/testing-i686/
  celestia/repos/testing-i686/PKGBUILD
(from rev 168481, celestia/trunk/PKGBUILD)
  celestia/repos/testing-i686/celestia-1.5.1-gcc44.patch
(from rev 168481, celestia/trunk/celestia-1.5.1-gcc44.patch)
  celestia/repos/testing-i686/celestia-1.6.1-gcc46.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-gcc46.patch)
  celestia/repos/testing-i686/celestia-1.6.1-gentoo.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-gentoo.patch)
  celestia/repos/testing-i686/celestia-1.6.1-libpng15.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-libpng15.patch)
  celestia/repos/testing-i686/celestia-1.6.1-linking.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-linking.patch)
  celestia/repos/testing-i686/gcc-4.7-fixes.diff
(from rev 168481, celestia/trunk/gcc-4.7-fixes.diff)
  celestia/repos/testing-x86_64/
  celestia/repos/testing-x86_64/PKGBUILD
(from rev 168481, celestia/trunk/PKGBUILD)
  celestia/repos/testing-x86_64/celestia-1.5.1-gcc44.patch
(from rev 168481, celestia/trunk/celestia-1.5.1-gcc44.patch)
  celestia/repos/testing-x86_64/celestia-1.6.1-gcc46.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-gcc46.patch)
  celestia/repos/testing-x86_64/celestia-1.6.1-gentoo.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-gentoo.patch)
  celestia/repos/testing-x86_64/celestia-1.6.1-libpng15.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-libpng15.patch)
  celestia/repos/testing-x86_64/celestia-1.6.1-linking.patch
(from rev 168481, celestia/trunk/celestia-1.6.1-linking.patch)
  celestia/repos/testing-x86_64/gcc-4.7-fixes.diff
(from rev 168481, celestia/trunk/gcc-4.7-fixes.diff)

--+
 testing-i686/PKGBUILD|   53 
 testing-i686/celestia-1.5.1-gcc44.patch  |   20 +
 testing-i686/celestia-1.6.1-gcc46.patch  |   13 ++
 testing-i686/celestia-1.6.1-gentoo.patch |   23 ++
 testing-i686/celestia-1.6.1-libpng15.patch   |   14 ++
 testing-i686/celestia-1.6.1-linking.patch|   54 +
 testing-i686/gcc-4.7-fixes.diff  |   10 
 testing-x86_64/PKGBUILD  |   53 
 testing-x86_64/celestia-1.5.1-gcc44.patch|   20 +
 testing-x86_64/celestia-1.6.1-gcc46.patch|   13 ++
 testing-x86_64/celestia-1.6.1-gentoo.patch   |   23 ++
 testing-x86_64/celestia-1.6.1-libpng15.patch |   14 ++
 testing-x86_64/celestia-1.6.1-linking.patch  |   54 +
 testing-x86_64/gcc-4.7-fixes.diff|   10 
 14 files changed, 374 insertions(+)

Copied: celestia/repos/testing-i686/PKGBUILD (from rev 168481, 
celestia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 16:54:10 UTC (rev 168482)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor : Damir Perisa damir.per...@bluewin.ch
+
+pkgname=celestia
+pkgver=1.6.1
+pkgrel=3
+pkgdesc=Real-time space simulation
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.shatters.net/celestia/;
+depends=('gtk2' 'libtheora' 'lua' 'gtkglext' 'glut' 'libxmu' 'glu' 'libjpeg')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/celestia/${pkgname}-${pkgver}.tar.gz;
+'celestia-1.6.1-gcc46.patch' 
+'celestia-1.6.1-libpng15.patch'
+'celestia-1.6.1-linking.patch'
+'gcc-4.7-fixes.diff')
+sha1sums=('1f0fdf4525a8b9d6c708e1f6383babed670d18e7'
+  '7c08ca391603806d788cb8f3342acedafc924eef'
+  '46ecc4e10b24191384bc848c206652498843adf0'
+  '534c8eee18d13a868c91f0b870ebecc05f3e7ae1'
+  '582f9eed93eca02a16350f02c29e2ea6f69aa869')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+# build patch
+patch -Np0 -i ${srcdir}/celestia-1.6.1-gcc46.patch
+patch -Np0 -i ${srcdir}/celestia-1.6.1-libpng15.patch
+patch -Np1 -i ${srcdir}/celestia-1.6.1-linking.patch
+patch -Np1 -i ${srcdir}/gcc-4.7-fixes.diff
+
+# This version of Celestia has a bug in the font rendering and requires 
-fsigned-char 
+export CFLAGS=$CFLAGS -fsigned-char
+export CXXFLAGS=$CXXFLAGS -fsigned-char
+
+autoreconf
+./configure --prefix=/usr \
+--with-lua=/usr \
+   --datadir=/usr/share \
+--with-gtk \
+--disable-rpath \
+--with-lua
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make DESTDIR=${pkgdir} install
+}
+

Copied: celestia/repos/testing-i686/celestia-1.5.1-gcc44.patch (from rev 
168481, celestia/trunk/celestia-1.5.1-gcc44.patch)

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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 12:59:09
  Author: andyrtr
Revision: 168483

upgpkg: gtkglext 1.2.0-8

mesa - glu rebuild

Modified:
  gtkglext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 16:54:10 UTC (rev 168482)
+++ PKGBUILD2012-10-12 16:59:09 UTC (rev 168483)
@@ -4,12 +4,13 @@
 
 pkgname=gtkglext
 pkgver=1.2.0
-pkgrel=7
+pkgrel=8
 pkgdesc=opengl extensions for gtk2
 arch=('i686' 'x86_64')
 url=http://gtkglext.sourceforge.net/;
 license=('LGPL')
-depends=('gtk2' 'mesa' 'libxmu')
+depends=('gtk2' 'glu' 'libxmu')
+makedepends=('mesa')
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/sourceforge/gtkglext/${pkgname}-${pkgver}.tar.bz2;
'gtk2.20.patch')



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 12:59:46
  Author: andyrtr
Revision: 168484

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

Added:
  gtkglext/repos/testing-i686/
  gtkglext/repos/testing-i686/PKGBUILD
(from rev 168483, gtkglext/trunk/PKGBUILD)
  gtkglext/repos/testing-i686/gtk2.20.patch
(from rev 168483, gtkglext/trunk/gtk2.20.patch)
  gtkglext/repos/testing-x86_64/
  gtkglext/repos/testing-x86_64/PKGBUILD
(from rev 168483, gtkglext/trunk/PKGBUILD)
  gtkglext/repos/testing-x86_64/gtk2.20.patch
(from rev 168483, gtkglext/trunk/gtk2.20.patch)

--+
 testing-i686/PKGBUILD|   36 +++
 testing-i686/gtk2.20.patch   |   77 +
 testing-x86_64/PKGBUILD  |   36 +++
 testing-x86_64/gtk2.20.patch |   77 +
 4 files changed, 226 insertions(+)

Copied: gtkglext/repos/testing-i686/PKGBUILD (from rev 168483, 
gtkglext/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 16:59:46 UTC (rev 168484)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer:
+# Contributor: Ben b...@benmazer.net
+
+pkgname=gtkglext
+pkgver=1.2.0
+pkgrel=8
+pkgdesc=opengl extensions for gtk2
+arch=('i686' 'x86_64')
+url=http://gtkglext.sourceforge.net/;
+license=('LGPL')
+depends=('gtk2' 'glu' 'libxmu')
+makedepends=('mesa')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/gtkglext/${pkgname}-${pkgver}.tar.bz2;
+   'gtk2.20.patch')
+md5sums=('ed7ba24ce06a8630c07f2d0ee5f04ab4'
+ 'e5a87ec3f2d0e616c6f32f90c3f7237f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  patch -Np1 -i ${srcdir}/gtk2.20.patch
+  sed '/AC_PATH_XTRA/d' -i configure.in
+
+  autoreconf --force --install
+  ./configure --prefix=/usr \
+  --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: gtkglext/repos/testing-i686/gtk2.20.patch (from rev 168483, 
gtkglext/trunk/gtk2.20.patch)
===
--- testing-i686/gtk2.20.patch  (rev 0)
+++ testing-i686/gtk2.20.patch  2012-10-12 16:59:46 UTC (rev 168484)
@@ -0,0 +1,77 @@
+diff -Nur gtkglext-1.2.0.orig/gtk/gtkglwidget.c 
gtkglext-1.2.0/gtk/gtkglwidget.c
+--- gtkglext-1.2.0.orig/gtk/gtkglwidget.c  2004-02-20 11:38:36.0 
+0200
 gtkglext-1.2.0/gtk/gtkglwidget.c   2010-04-20 19:29:42.941917275 +0300
+@@ -127,7 +127,7 @@
+* Synchronize OpenGL and window resizing request streams.
+*/
+ 
+-  if (GTK_WIDGET_REALIZED (widget)  private-is_realized)
++  if (gtk_widget_get_realized (widget)  private-is_realized)
+ {
+   gldrawable = gdk_window_get_gl_drawable (widget-window);
+   gdk_gl_drawable_wait_gdk (gldrawable);
+@@ -154,7 +154,7 @@
+* Remove OpenGL-capability from widget-window.
+*/
+ 
+-  if (GTK_WIDGET_REALIZED (widget))
++  if (gtk_widget_get_realized (widget))
+ gdk_window_unset_gl_capability (widget-window);
+ 
+   private-is_realized = FALSE;
+@@ -174,7 +174,7 @@
+*/
+ 
+   toplevel = gtk_widget_get_toplevel (widget);
+-  if (GTK_WIDGET_TOPLEVEL (toplevel)  !GTK_WIDGET_REALIZED (toplevel))
++  if (gtk_widget_is_toplevel (toplevel)  !gtk_widget_get_realized 
(toplevel))
+ {
+   GTK_GL_NOTE (MISC,
+ g_message ( - Install colormap to the top-level window.));
+@@ -194,7 +194,7 @@
+* Set a background of None on window to avoid AIX X server crash.
+*/
+ 
+-  if (GTK_WIDGET_REALIZED (widget))
++  if (gtk_widget_get_realized (widget))
+ {
+   GTK_GL_NOTE (MISC,
+ g_message ( - window-bg_pixmap = %p,
+@@ -250,8 +250,8 @@
+   GTK_GL_NOTE_FUNC ();
+ 
+   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
+-  g_return_val_if_fail (!GTK_WIDGET_NO_WINDOW (widget), FALSE);
+-  g_return_val_if_fail (!GTK_WIDGET_REALIZED (widget), FALSE);
++  g_return_val_if_fail (gtk_widget_get_has_window (widget), FALSE);
++  g_return_val_if_fail (!gtk_widget_get_realized (widget), FALSE);
+   g_return_val_if_fail (GDK_IS_GL_CONFIG (glconfig), FALSE);
+ 
+   /* 
+@@ -432,7 +432,7 @@
+   GTK_GL_NOTE_FUNC ();
+ 
+   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
+-  g_return_val_if_fail (GTK_WIDGET_REALIZED (widget), NULL);
++  g_return_val_if_fail (gtk_widget_get_realized (widget), NULL);
+ 
+   gldrawable = gdk_window_get_gl_drawable (widget-window);
+   if (gldrawable == NULL)
+@@ -474,7 +474,7 @@
+   GLWidgetPrivate *private;
+ 
+   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
+-  g_return_val_if_fail (GTK_WIDGET_REALIZED (widget), NULL);
++  g_return_val_if_fail (gtk_widget_get_realized (widget), NULL);
+ 
+   private = g_object_get_qdata (G_OBJECT (widget), quark_gl_private);
+   if (private == NULL)
+@@ -501,7 +501,7 @@
+ gtk_widget_get_gl_window 

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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:13:35
  Author: andyrtr
Revision: 168485

upgpkg: gtkglextmm 1.2.0-9

mesa - glu rebuild

Modified:
  gtkglextmm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 16:59:46 UTC (rev 168484)
+++ PKGBUILD2012-10-12 17:13:35 UTC (rev 168485)
@@ -5,12 +5,12 @@
 
 pkgname=gtkglextmm
 pkgver=1.2.0
-pkgrel=8
+pkgrel=9
 pkgdesc=Cpp C++ bindings for gtkglext
 arch=('i686' 'x86_64')
 url=http://gtkglext.sourceforge.net/;
 depends=('gtkmm' 'gtkglext')
-makedepends=('pkgconfig')
+makedepends=('mesa')
 options=('!libtool')
 license=('GPL')
 
source=(http://downloads.sourceforge.net/sourceforge/gtkglext/${pkgname}-${pkgver}.tar.bz2;



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:14:06
  Author: andyrtr
Revision: 168486

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

Added:
  gtkglextmm/repos/testing-i686/
  gtkglextmm/repos/testing-i686/PKGBUILD
(from rev 168485, gtkglextmm/trunk/PKGBUILD)
  gtkglextmm/repos/testing-i686/gdkspanfunc.patch
(from rev 168485, gtkglextmm/trunk/gdkspanfunc.patch)
  gtkglextmm/repos/testing-x86_64/
  gtkglextmm/repos/testing-x86_64/PKGBUILD
(from rev 168485, gtkglextmm/trunk/PKGBUILD)
  gtkglextmm/repos/testing-x86_64/gdkspanfunc.patch
(from rev 168485, gtkglextmm/trunk/gdkspanfunc.patch)

--+
 testing-i686/PKGBUILD|   40 +
 testing-i686/gdkspanfunc.patch   |   13 
 testing-x86_64/PKGBUILD  |   40 +
 testing-x86_64/gdkspanfunc.patch |   13 
 4 files changed, 106 insertions(+)

Copied: gtkglextmm/repos/testing-i686/PKGBUILD (from rev 168485, 
gtkglextmm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 17:14:06 UTC (rev 168486)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Bastien Bouclet bastien.bouc...@gmail.com
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=gtkglextmm
+pkgver=1.2.0
+pkgrel=9
+pkgdesc=Cpp C++ bindings for gtkglext
+arch=('i686' 'x86_64')
+url=http://gtkglext.sourceforge.net/;
+depends=('gtkmm' 'gtkglext')
+makedepends=('mesa')
+options=('!libtool')
+license=('GPL')
+source=(http://downloads.sourceforge.net/sourceforge/gtkglext/${pkgname}-${pkgver}.tar.bz2;
+'gdkspanfunc.patch')
+md5sums=('27c05f4d45c5fd07b6fb0f044add3056'
+ 'd7c8ea33c748a6857ee629c16b2d9bff')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#24706
+  patch -Np1 -i ${srcdir}/gdkspanfunc.patch
+
+  # automake 1.8 fix
+  sed -i s|\(AC_DEFUN(\)\(AC_.*_MULTIHEAD\)|\1[\2]| m4macros/gtkglextmm.m4
+
+  ./configure --prefix=/usr \
+  --disable-gtkglext-test \
+  --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: gtkglextmm/repos/testing-i686/gdkspanfunc.patch (from rev 168485, 
gtkglextmm/trunk/gdkspanfunc.patch)
===
--- testing-i686/gdkspanfunc.patch  (rev 0)
+++ testing-i686/gdkspanfunc.patch  2012-10-12 17:14:06 UTC (rev 168486)
@@ -0,0 +1,13 @@
+--- a/gtkglext/gtkmm/gl/widget.cc  2004-05-18 03:01:50.0 -0300
 b/gtkglext/gtkmm/gl/widget.cc  2011-06-12 17:57:13.075541070 -0300
+@@ -17,9 +17,8 @@
+  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA.
+  */
+ 
+-#include gtk/gtkglwidget.h
+-
+ #include widget.h
++#include gtk/gtkglwidget.h
+ 
+ namespace Gtk
+ {

Copied: gtkglextmm/repos/testing-x86_64/PKGBUILD (from rev 168485, 
gtkglextmm/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-12 17:14:06 UTC (rev 168486)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Bastien Bouclet bastien.bouc...@gmail.com
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=gtkglextmm
+pkgver=1.2.0
+pkgrel=9
+pkgdesc=Cpp C++ bindings for gtkglext
+arch=('i686' 'x86_64')
+url=http://gtkglext.sourceforge.net/;
+depends=('gtkmm' 'gtkglext')
+makedepends=('mesa')
+options=('!libtool')
+license=('GPL')
+source=(http://downloads.sourceforge.net/sourceforge/gtkglext/${pkgname}-${pkgver}.tar.bz2;
+'gdkspanfunc.patch')
+md5sums=('27c05f4d45c5fd07b6fb0f044add3056'
+ 'd7c8ea33c748a6857ee629c16b2d9bff')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#24706
+  patch -Np1 -i ${srcdir}/gdkspanfunc.patch
+
+  # automake 1.8 fix
+  sed -i s|\(AC_DEFUN(\)\(AC_.*_MULTIHEAD\)|\1[\2]| m4macros/gtkglextmm.m4
+
+  ./configure --prefix=/usr \
+  --disable-gtkglext-test \
+  --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: gtkglextmm/repos/testing-x86_64/gdkspanfunc.patch (from rev 168485, 
gtkglextmm/trunk/gdkspanfunc.patch)
===
--- testing-x86_64/gdkspanfunc.patch(rev 0)
+++ testing-x86_64/gdkspanfunc.patch2012-10-12 17:14:06 UTC (rev 168486)
@@ -0,0 +1,13 @@
+--- a/gtkglext/gtkmm/gl/widget.cc  2004-05-18 03:01:50.0 -0300
 b/gtkglext/gtkmm/gl/widget.cc  2011-06-12 17:57:13.075541070 -0300
+@@ -17,9 +17,8 @@
+  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA.
+  */
+ 
+-#include 

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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:37:22
  Author: andyrtr
Revision: 168487

upgpkg: libvisual-plugins 0.4.0-7

mesa - glu rebuild

Modified:
  libvisual-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 17:14:06 UTC (rev 168486)
+++ PKGBUILD2012-10-12 17:37:22 UTC (rev 168487)
@@ -3,13 +3,13 @@
 
 pkgname=libvisual-plugins
 pkgver=0.4.0
-pkgrel=6
+pkgrel=7
 pkgdesc=plugins for libvisual
 arch=(i686 x86_64)
 license=('GPL')
 url=http://www.localhost.nl/~synap/libvisual/;
-depends=('libvisual' 'gtk2' 'mesa' 'alsa-lib' 'jack')
-makedepends=('pkgconfig' 'namcap')
+depends=('libvisual' 'gtk2' 'glu' 'alsa-lib' 'jack')
+makedepends=('mesa')
 options=(!libtool)
 
source=(http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-plugins-${pkgver}.tar.gz
 02_64-bit_JESS_fix.patch



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:38:33
  Author: andyrtr
Revision: 168488

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

Added:
  libvisual-plugins/repos/testing-i686/
  libvisual-plugins/repos/testing-i686/02_64-bit_JESS_fix.patch
(from rev 168487, libvisual-plugins/trunk/02_64-bit_JESS_fix.patch)
  libvisual-plugins/repos/testing-i686/03_build_against_gl_fixes.patch
(from rev 168487, libvisual-plugins/trunk/03_build_against_gl_fixes.patch)
  libvisual-plugins/repos/testing-i686/04_lv_analyzer_build_fix.patch
(from rev 168487, libvisual-plugins/trunk/04_lv_analyzer_build_fix.patch)
  libvisual-plugins/repos/testing-i686/050_all_automagic.patch
(from rev 168487, libvisual-plugins/trunk/050_all_automagic.patch)
  libvisual-plugins/repos/testing-i686/05_fix_po.patch
(from rev 168487, libvisual-plugins/trunk/05_fix_po.patch)
  libvisual-plugins/repos/testing-i686/60_no-const-vispluginfo-in-nastyfft.patch
(from rev 168487, 
libvisual-plugins/trunk/60_no-const-vispluginfo-in-nastyfft.patch)
  libvisual-plugins/repos/testing-i686/PKGBUILD
(from rev 168487, libvisual-plugins/trunk/PKGBUILD)
  libvisual-plugins/repos/testing-x86_64/
  libvisual-plugins/repos/testing-x86_64/02_64-bit_JESS_fix.patch
(from rev 168487, libvisual-plugins/trunk/02_64-bit_JESS_fix.patch)
  libvisual-plugins/repos/testing-x86_64/03_build_against_gl_fixes.patch
(from rev 168487, libvisual-plugins/trunk/03_build_against_gl_fixes.patch)
  libvisual-plugins/repos/testing-x86_64/04_lv_analyzer_build_fix.patch
(from rev 168487, libvisual-plugins/trunk/04_lv_analyzer_build_fix.patch)
  libvisual-plugins/repos/testing-x86_64/050_all_automagic.patch
(from rev 168487, libvisual-plugins/trunk/050_all_automagic.patch)
  libvisual-plugins/repos/testing-x86_64/05_fix_po.patch
(from rev 168487, libvisual-plugins/trunk/05_fix_po.patch)
  
libvisual-plugins/repos/testing-x86_64/60_no-const-vispluginfo-in-nastyfft.patch
(from rev 168487, 
libvisual-plugins/trunk/60_no-const-vispluginfo-in-nastyfft.patch)
  libvisual-plugins/repos/testing-x86_64/PKGBUILD
(from rev 168487, libvisual-plugins/trunk/PKGBUILD)

--+
 testing-i686/02_64-bit_JESS_fix.patch|   58 ++
 testing-i686/03_build_against_gl_fixes.patch |  372 +
 testing-i686/04_lv_analyzer_build_fix.patch  |   12 
 testing-i686/050_all_automagic.patch |   50 +
 testing-i686/05_fix_po.patch |  127 
 testing-i686/60_no-const-vispluginfo-in-nastyfft.patch   |   18 
 testing-i686/PKGBUILD|   51 +
 testing-x86_64/02_64-bit_JESS_fix.patch  |   58 ++
 testing-x86_64/03_build_against_gl_fixes.patch   |  372 +
 testing-x86_64/04_lv_analyzer_build_fix.patch|   12 
 testing-x86_64/050_all_automagic.patch   |   50 +
 testing-x86_64/05_fix_po.patch   |  127 
 testing-x86_64/60_no-const-vispluginfo-in-nastyfft.patch |   18 
 testing-x86_64/PKGBUILD  |   51 +
 14 files changed, 1376 insertions(+)

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


[arch-commits] Commit in subversion/repos (34 files)

2012-10-12 Thread Stéphane Gaudreault
Date: Friday, October 12, 2012 @ 13:51:02
  Author: stephane
Revision: 168489

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

Added:
  subversion/repos/extra-i686/PKGBUILD
(from rev 168488, subversion/repos/testing-i686/PKGBUILD)
  subversion/repos/extra-i686/subversion-1.7.6-kwallet-gcc47.patch
(from rev 168488, 
subversion/repos/testing-i686/subversion-1.7.6-kwallet-gcc47.patch)
  subversion/repos/extra-i686/subversion.rpath.fix.patch
(from rev 168488, subversion/repos/testing-i686/subversion.rpath.fix.patch)
  subversion/repos/extra-i686/svn
(from rev 168488, subversion/repos/testing-i686/svn)
  subversion/repos/extra-i686/svnserve
(from rev 168488, subversion/repos/testing-i686/svnserve)
  subversion/repos/extra-i686/svnserve.conf
(from rev 168488, subversion/repos/testing-i686/svnserve.conf)
  subversion/repos/extra-i686/svnserve.service
(from rev 168488, subversion/repos/testing-i686/svnserve.service)
  subversion/repos/extra-i686/svnserve.tmpfiles
(from rev 168488, subversion/repos/testing-i686/svnserve.tmpfiles)
  subversion/repos/extra-x86_64/PKGBUILD
(from rev 168488, subversion/repos/testing-x86_64/PKGBUILD)
  subversion/repos/extra-x86_64/subversion-1.7.6-kwallet-gcc47.patch
(from rev 168488, 
subversion/repos/testing-x86_64/subversion-1.7.6-kwallet-gcc47.patch)
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
(from rev 168488, 
subversion/repos/testing-x86_64/subversion.rpath.fix.patch)
  subversion/repos/extra-x86_64/svn
(from rev 168488, subversion/repos/testing-x86_64/svn)
  subversion/repos/extra-x86_64/svnserve
(from rev 168488, subversion/repos/testing-x86_64/svnserve)
  subversion/repos/extra-x86_64/svnserve.conf
(from rev 168488, subversion/repos/testing-x86_64/svnserve.conf)
  subversion/repos/extra-x86_64/svnserve.service
(from rev 168488, subversion/repos/testing-x86_64/svnserve.service)
  subversion/repos/extra-x86_64/svnserve.tmpfiles
(from rev 168488, subversion/repos/testing-x86_64/svnserve.tmpfiles)
Deleted:
  subversion/repos/extra-i686/PKGBUILD
  subversion/repos/extra-i686/subversion-1.7.6-kwallet-gcc47.patch
  subversion/repos/extra-i686/subversion.rpath.fix.patch
  subversion/repos/extra-i686/svn
  subversion/repos/extra-i686/svnserve
  subversion/repos/extra-i686/svnserve.conf
  subversion/repos/extra-i686/svnserve.service
  subversion/repos/extra-i686/svnserve.tmpfiles
  subversion/repos/extra-x86_64/PKGBUILD
  subversion/repos/extra-x86_64/subversion-1.7.6-kwallet-gcc47.patch
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
  subversion/repos/extra-x86_64/svn
  subversion/repos/extra-x86_64/svnserve
  subversion/repos/extra-x86_64/svnserve.conf
  subversion/repos/extra-x86_64/svnserve.service
  subversion/repos/extra-x86_64/svnserve.tmpfiles
  subversion/repos/testing-i686/
  subversion/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  198 ++--
 extra-i686/subversion-1.7.6-kwallet-gcc47.patch   |  112 +--
 extra-i686/subversion.rpath.fix.patch |   20 +-
 extra-i686/svn|   22 +-
 extra-i686/svnserve   |   84 
 extra-i686/svnserve.conf  |   14 -
 extra-i686/svnserve.service   |   22 +-
 extra-i686/svnserve.tmpfiles  |2 
 extra-x86_64/PKGBUILD |  198 ++--
 extra-x86_64/subversion-1.7.6-kwallet-gcc47.patch |  112 +--
 extra-x86_64/subversion.rpath.fix.patch   |   20 +-
 extra-x86_64/svn  |   22 +-
 extra-x86_64/svnserve |   84 
 extra-x86_64/svnserve.conf|   14 -
 extra-x86_64/svnserve.service |   22 +-
 extra-x86_64/svnserve.tmpfiles|2 
 16 files changed, 474 insertions(+), 474 deletions(-)

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


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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:56:44
  Author: andyrtr
Revision: 168490

upgpkg: qtiplot 0.9.8.9-2

mesa - glu rebuild

Modified:
  qtiplot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 17:51:02 UTC (rev 168489)
+++ PKGBUILD2012-10-12 17:56:44 UTC (rev 168490)
@@ -5,15 +5,15 @@
 
 pkgname=qtiplot
 pkgver=0.9.8.9
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://soft.proindependent.com/qtiplot.html;
 pkgdesc=Data analysis and scientific plotting - free clone of Origin
-depends=('muparser' 'gsl' 'python2-pyqt' 'boost-libs' 'shared-mime-info' 
'mesa' 'liborigin2' 'qt-assistant-compat' 'tamu-anova')
+depends=('muparser' 'gsl' 'python2-pyqt' 'boost-libs' 'shared-mime-info' 'glu' 
'liborigin2' 'qt-assistant-compat' 'tamu-anova')
 # build against qwtplot3d provided in the package ...
 # build against qwt provided in the package ...
 # as systemwide one doesn't provide all needed functions
-makedepends=('pkg-config' 'boost')
+makedepends=('pkg-config' 'boost' 'mesa')
 license=('GPL2')
 install=${pkgname}.install
 source=(http://download.berlios.de/qtiplot/qtiplot-${pkgver}.tar.bz2



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 13:58:46
  Author: andyrtr
Revision: 168491

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

Added:
  qtiplot/repos/testing-i686/
  qtiplot/repos/testing-i686/PKGBUILD
(from rev 168490, qtiplot/trunk/PKGBUILD)
  qtiplot/repos/testing-i686/build.conf.archlinux
(from rev 168490, qtiplot/trunk/build.conf.archlinux)
  qtiplot/repos/testing-i686/qtiplot-0.9.8.6-gold.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-gold.patch)
  qtiplot/repos/testing-i686/qtiplot-0.9.8.6-kde.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-kde.patch)
  qtiplot/repos/testing-i686/qtiplot-0.9.8.6-tamuanova.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-tamuanova.patch)
  qtiplot/repos/testing-i686/qtiplot.desktop
(from rev 168490, qtiplot/trunk/qtiplot.desktop)
  qtiplot/repos/testing-i686/qtiplot.install
(from rev 168490, qtiplot/trunk/qtiplot.install)
  qtiplot/repos/testing-i686/qtiplot.png
(from rev 168490, qtiplot/trunk/qtiplot.png)
  qtiplot/repos/testing-i686/qtiplot.xml
(from rev 168490, qtiplot/trunk/qtiplot.xml)
  qtiplot/repos/testing-i686/qwtplot3d-libpng15.patch
(from rev 168490, qtiplot/trunk/qwtplot3d-libpng15.patch)
  qtiplot/repos/testing-i686/qwtplot3d-qt-4.8.0.patch
(from rev 168490, qtiplot/trunk/qwtplot3d-qt-4.8.0.patch)
  qtiplot/repos/testing-i686/qwtplot3d_gcc.patch
(from rev 168490, qtiplot/trunk/qwtplot3d_gcc.patch)
  qtiplot/repos/testing-i686/sip.patch
(from rev 168490, qtiplot/trunk/sip.patch)
  qtiplot/repos/testing-x86_64/
  qtiplot/repos/testing-x86_64/PKGBUILD
(from rev 168490, qtiplot/trunk/PKGBUILD)
  qtiplot/repos/testing-x86_64/build.conf.archlinux
(from rev 168490, qtiplot/trunk/build.conf.archlinux)
  qtiplot/repos/testing-x86_64/qtiplot-0.9.8.6-gold.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-gold.patch)
  qtiplot/repos/testing-x86_64/qtiplot-0.9.8.6-kde.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-kde.patch)
  qtiplot/repos/testing-x86_64/qtiplot-0.9.8.6-tamuanova.patch
(from rev 168490, qtiplot/trunk/qtiplot-0.9.8.6-tamuanova.patch)
  qtiplot/repos/testing-x86_64/qtiplot.desktop
(from rev 168490, qtiplot/trunk/qtiplot.desktop)
  qtiplot/repos/testing-x86_64/qtiplot.install
(from rev 168490, qtiplot/trunk/qtiplot.install)
  qtiplot/repos/testing-x86_64/qtiplot.png
(from rev 168490, qtiplot/trunk/qtiplot.png)
  qtiplot/repos/testing-x86_64/qtiplot.xml
(from rev 168490, qtiplot/trunk/qtiplot.xml)
  qtiplot/repos/testing-x86_64/qwtplot3d-libpng15.patch
(from rev 168490, qtiplot/trunk/qwtplot3d-libpng15.patch)
  qtiplot/repos/testing-x86_64/qwtplot3d-qt-4.8.0.patch
(from rev 168490, qtiplot/trunk/qwtplot3d-qt-4.8.0.patch)
  qtiplot/repos/testing-x86_64/qwtplot3d_gcc.patch
(from rev 168490, qtiplot/trunk/qwtplot3d_gcc.patch)
  qtiplot/repos/testing-x86_64/sip.patch
(from rev 168490, qtiplot/trunk/sip.patch)

+
 testing-i686/PKGBUILD  |   94 +++
 testing-i686/build.conf.archlinux  |   32 +++
 testing-i686/qtiplot-0.9.8.6-gold.patch|   15 +++
 testing-i686/qtiplot-0.9.8.6-kde.patch |   15 +++
 testing-i686/qtiplot-0.9.8.6-tamuanova.patch   |   26 ++
 testing-i686/qtiplot.desktop   |   13 +++
 testing-i686/qtiplot.install   |   12 ++
 testing-i686/qtiplot.xml   |   17 
 testing-i686/qwtplot3d-libpng15.patch  |   10 ++
 testing-i686/qwtplot3d-qt-4.8.0.patch  |   34 
 testing-i686/qwtplot3d_gcc.patch   |9 ++
 testing-i686/sip.patch |   13 +++
 testing-x86_64/PKGBUILD|   94 +++
 testing-x86_64/build.conf.archlinux|   32 +++
 testing-x86_64/qtiplot-0.9.8.6-gold.patch  |   15 +++
 testing-x86_64/qtiplot-0.9.8.6-kde.patch   |   15 +++
 testing-x86_64/qtiplot-0.9.8.6-tamuanova.patch |   26 ++
 testing-x86_64/qtiplot.desktop |   13 +++
 testing-x86_64/qtiplot.install |   12 ++
 testing-x86_64/qtiplot.xml |   17 
 testing-x86_64/qwtplot3d-libpng15.patch|   10 ++
 testing-x86_64/qwtplot3d-qt-4.8.0.patch|   34 
 testing-x86_64/qwtplot3d_gcc.patch |9 ++
 testing-x86_64/sip.patch   |   13 +++
 24 files changed, 580 insertions(+)

Copied: qtiplot/repos/testing-i686/PKGBUILD (from rev 168490, 
qtiplot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 17:58:46 UTC (rev 168491)
@@ -0,0 +1,94 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir damir.archlinux.org
+# Contributor: Gergely Imreh imr...@gmail.com
+
+pkgname=qtiplot

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

2012-10-12 Thread Thomas Bächler
Date: Friday, October 12, 2012 @ 15:08:28
  Author: thomas
Revision: 168492

upgpkg: sysvinit 2.88-9: rebuild for base group changes

Modified:
  sysvinit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 17:58:46 UTC (rev 168491)
+++ PKGBUILD2012-10-12 19:08:28 UTC (rev 168492)
@@ -4,7 +4,7 @@
 pkgbase=sysvinit
 pkgname=('sysvinit-tools' 'sysvinit')
 pkgver=2.88
-pkgrel=8
+pkgrel=9
 arch=('i686' 'x86_64')
 url=http://savannah.nongnu.org/projects/sysvinit;
 license=('GPL')



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

2012-10-12 Thread Thomas Bächler
Date: Friday, October 12, 2012 @ 15:09:19
  Author: thomas
Revision: 168493

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

Added:
  sysvinit/repos/testing-i686/
  sysvinit/repos/testing-i686/0001-simplify-writelog.patch
(from rev 168492, sysvinit/trunk/0001-simplify-writelog.patch)
  sysvinit/repos/testing-i686/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 168492, 
sysvinit/trunk/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/testing-i686/PKGBUILD
(from rev 168492, sysvinit/trunk/PKGBUILD)
  sysvinit/repos/testing-i686/sysvinit.install
(from rev 168492, sysvinit/trunk/sysvinit.install)
  sysvinit/repos/testing-x86_64/
  sysvinit/repos/testing-x86_64/0001-simplify-writelog.patch
(from rev 168492, sysvinit/trunk/0001-simplify-writelog.patch)
  
sysvinit/repos/testing-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 168492, 
sysvinit/trunk/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/testing-x86_64/PKGBUILD
(from rev 168492, sysvinit/trunk/PKGBUILD)
  sysvinit/repos/testing-x86_64/sysvinit.install
(from rev 168492, sysvinit/trunk/sysvinit.install)

--+
 testing-i686/0001-simplify-writelog.patch|  126 
++
 testing-i686/0002-remove-ansi-escape-codes-from-log-file.patch   |   80 ++
 testing-i686/PKGBUILD|   61 
 testing-i686/sysvinit.install|3 
 testing-x86_64/0001-simplify-writelog.patch  |  126 
++
 testing-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch |   80 ++
 testing-x86_64/PKGBUILD  |   61 
 testing-x86_64/sysvinit.install  |3 
 8 files changed, 540 insertions(+)

Copied: sysvinit/repos/testing-i686/0001-simplify-writelog.patch (from rev 
168492, sysvinit/trunk/0001-simplify-writelog.patch)
===
--- testing-i686/0001-simplify-writelog.patch   (rev 0)
+++ testing-i686/0001-simplify-writelog.patch   2012-10-12 19:09:19 UTC (rev 
168493)
@@ -0,0 +1,126 @@
+From 5577552eb1344ddd661893564b1e628f8edcf13d Mon Sep 17 00:00:00 2001
+From: Florian Pritz bluew...@xinu.at
+Date: Fri, 15 Jun 2012 16:41:52 +0200
+Subject: [PATCH 1/2] simplify writelog()
+
+All we do is prepend the date and remove \r. We don't handle color
+codes, but the user can just cat the log file in a terminal and it will
+interpret the codes correctly.
+
+Signed-off-by: Florian Pritz bluew...@xinu.at
+---
+ bootlogd.c |   76 +---
+ 1 file changed, 21 insertions(+), 55 deletions(-)
+
+diff --git a/bootlogd.c b/bootlogd.c
+index 570d382..e36e261 100644
+--- a/bootlogd.c
 b/bootlogd.c
+@@ -68,11 +68,6 @@ int didnl = 1;
+ int createlogfile = 0;
+ int syncalot = 0;
+ 
+-struct line {
+-  char buf[256];
+-  int pos;
+-} line;
+-
+ /*
+  *Console devices as listed on the kernel command line and
+  *the mapping to actual devices in /dev
+@@ -351,63 +346,34 @@ int consolename(char *res, int rlen)
+  */
+ void writelog(FILE *fp, unsigned char *ptr, int len)
+ {
+-  time_t  t;
+-  char*s;
+-  chartmp[8];
+-  int olen = len;
+-  int dosync = 0;
+-  int tlen;
+-
+-  while (len  0) {
+-  tmp[0] = 0;
+-  if (didnl) {
++  int dosync = 0;
++  int i;
++  static int first_run = 1;
++
++  for (i = 0; i  len; i++) {
++  int ignore = 0;
++
++  /* prepend date to every line */
++  if (*(ptr-1) == '\n' || first_run) {
++  time_t t;
++  char *s;
+   time(t);
+   s = ctime(t);
+   fprintf(fp, %.24s: , s);
+-  didnl = 0;
++  dosync = 1;
++  first_run = 0;
+   }
+-  switch (*ptr) {
+-  case 27: /* ESC */
+-  strcpy(tmp, ^[);
+-  break;
+-  case '\r':
+-  line.pos = 0;
+-  break;
+-  case 8: /* ^H */
+-  if (line.pos  0) line.pos--;
+-  break;
+-  case '\n':
+-  didnl = 1;
+-  dosync = 1;
+-  break;
+-  case '\t':
+-  line.pos += (line.pos / 8 + 1) * 8;
+-  if (line.pos = (int)sizeof(line.buf))
+-  

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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 15:14:03
  Author: andyrtr
Revision: 168494

upgpkg: stellarium 0.11.4-2

mesa - glu rebuild

Modified:
  stellarium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 19:09:19 UTC (rev 168493)
+++ PKGBUILD2012-10-12 19:14:03 UTC (rev 168494)
@@ -4,13 +4,13 @@
 
 pkgname=stellarium
 pkgver=0.11.4
-pkgrel=1
+pkgrel=2
 pkgdesc=A stellarium with great graphics and a nice database of sky-objects
 arch=(i686 x86_64)
 url=http://stellarium.free.fr/;
 license=('GPL2')
-depends=('libpng' 'mesa' 'libgl' 'freetype2' 'qt' 'openssl')
-makedepends=('cmake' 'boost')
+depends=('libpng' 'glu' 'libgl' 'freetype2' 'qt' 'openssl')
+makedepends=('cmake' 'boost' 'mesa')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
stellarium.desktop
 stellarium.png)



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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 15:14:51
  Author: andyrtr
Revision: 168495

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

Added:
  stellarium/repos/testing-i686/
  stellarium/repos/testing-i686/PKGBUILD
(from rev 168494, stellarium/trunk/PKGBUILD)
  stellarium/repos/testing-i686/libpng14.patch
(from rev 168494, stellarium/trunk/libpng14.patch)
  stellarium/repos/testing-i686/stellarium.desktop
(from rev 168494, stellarium/trunk/stellarium.desktop)
  stellarium/repos/testing-i686/stellarium.png
(from rev 168494, stellarium/trunk/stellarium.png)
  stellarium/repos/testing-x86_64/
  stellarium/repos/testing-x86_64/PKGBUILD
(from rev 168494, stellarium/trunk/PKGBUILD)
  stellarium/repos/testing-x86_64/libpng14.patch
(from rev 168494, stellarium/trunk/libpng14.patch)
  stellarium/repos/testing-x86_64/stellarium.desktop
(from rev 168494, stellarium/trunk/stellarium.desktop)
  stellarium/repos/testing-x86_64/stellarium.png
(from rev 168494, stellarium/trunk/stellarium.png)

---+
 testing-i686/PKGBUILD |   38 
 testing-i686/libpng14.patch   |   21 +++
 testing-i686/stellarium.desktop   |9 
 testing-x86_64/PKGBUILD   |   38 
 testing-x86_64/libpng14.patch |   21 +++
 testing-x86_64/stellarium.desktop |9 
 6 files changed, 136 insertions(+)

Copied: stellarium/repos/testing-i686/PKGBUILD (from rev 168494, 
stellarium/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 19:14:51 UTC (rev 168495)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+
+pkgname=stellarium
+pkgver=0.11.4
+pkgrel=2
+pkgdesc=A stellarium with great graphics and a nice database of sky-objects
+arch=(i686 x86_64)
+url=http://stellarium.free.fr/;
+license=('GPL2')
+depends=('libpng' 'glu' 'libgl' 'freetype2' 'qt' 'openssl')
+makedepends=('cmake' 'boost' 'mesa')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+   stellarium.desktop
+stellarium.png)
+sha1sums=('5b8bfd71b4c3eabbc1db64b71221eeebe6785dbf'
+  'c9cc79212542238227b5bd6af99f60fe056f4ab2'
+  'b890d3b6c4dcfcfcc696514202af11b2a50c0fea')
+   
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+ 
+  make DESTDIR=${pkgdir} install
+
+  # install desktop file  pixmap
+  install -Dm644 ${srcdir}/stellarium.desktop \
+   ${pkgdir}/usr/share/applications/stellarium.desktop
+  install -Dm644 ${srcdir}/stellarium.png \
+   ${pkgdir}/usr/share/pixmaps/stellarium.png
+}

Copied: stellarium/repos/testing-i686/libpng14.patch (from rev 168494, 
stellarium/trunk/libpng14.patch)
===
--- testing-i686/libpng14.patch (rev 0)
+++ testing-i686/libpng14.patch 2012-10-12 19:14:51 UTC (rev 168495)
@@ -0,0 +1,21 @@
+diff -Naur stellarium-0.10.2-orig/src/core/StelTextureMgr.cpp 
stellarium-0.10.2/src/core/StelTextureMgr.cpp
+--- stellarium-0.10.2-orig/src/core/StelTextureMgr.cpp 2010-01-21 
17:04:57.0 -0500
 stellarium-0.10.2/src/core/StelTextureMgr.cpp  2010-01-21 
17:06:55.0 -0500
+@@ -513,7 +513,7 @@
+   fread (magic, 1, sizeof (magic), fp);
+ 
+   /* check for valid magic number */
+-  if (!png_check_sig (magic, sizeof (magic)))
++  if (png_sig_cmp (magic, 0, sizeof (magic)))
+   {
+   qWarning()  error: \  filename  \ is not a valid PNG 
image!;
+   fclose (fp);
+@@ -576,7 +576,7 @@
+   /* convert 1-2-4 bits grayscale images to 8 bits
+  grayscale. */
+   if (color_type == PNG_COLOR_TYPE_GRAY  bit_depth  8)
+-  png_set_gray_1_2_4_to_8 (png_ptr);
++  png_set_expand_gray_1_2_4_to_8 (png_ptr);
+ 
+   if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
+   png_set_tRNS_to_alpha (png_ptr);

Copied: stellarium/repos/testing-i686/stellarium.desktop (from rev 168494, 
stellarium/trunk/stellarium.desktop)
===
--- testing-i686/stellarium.desktop (rev 0)
+++ testing-i686/stellarium.desktop 2012-10-12 19:14:51 UTC (rev 168495)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Stellarium nightsky renderer
+GenericName=Nightsky renderer
+Comment=A real-time nightsky renderer
+Categories=Education;Science;Astronomy;
+Icon=stellarium
+Exec=stellarium
+Terminal=false
+Type=Application

Copied: stellarium/repos/testing-i686/stellarium.png (from rev 168494, 
stellarium/trunk/stellarium.png)

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

2012-10-12 Thread Thomas Bächler
Date: Friday, October 12, 2012 @ 15:15:57
  Author: thomas
Revision: 168496

upgpkg: systemd 194-3: rebuild for base group change

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 19:14:51 UTC (rev 168495)
+++ PKGBUILD2012-10-12 19:15:57 UTC (rev 168496)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'systemd-sysvcompat')
 pkgver=194
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/systemd;
 license=('GPL2' 'LGPL2.1' 'MIT')



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

2012-10-12 Thread Thomas Bächler
Date: Friday, October 12, 2012 @ 15:16:37
  Author: thomas
Revision: 168497

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/0001-Reinstate-TIMEOUT-handling.patch
(from rev 168496, systemd/trunk/0001-Reinstate-TIMEOUT-handling.patch)
  systemd/repos/testing-i686/PKGBUILD
(from rev 168496, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 168496, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-timestamp
(from rev 168496, systemd/trunk/initcpio-install-timestamp)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 168496, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/systemd.install
(from rev 168496, systemd/trunk/systemd.install)
  systemd/repos/testing-i686/use-split-usr-path.patch
(from rev 168496, systemd/trunk/use-split-usr-path.patch)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Reinstate-TIMEOUT-handling.patch
(from rev 168496, systemd/trunk/0001-Reinstate-TIMEOUT-handling.patch)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 168496, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 168496, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-timestamp
(from rev 168496, systemd/trunk/initcpio-install-timestamp)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 168496, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/systemd.install
(from rev 168496, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/use-split-usr-path.patch
(from rev 168496, systemd/trunk/use-split-usr-path.patch)

--+
 testing-i686/0001-Reinstate-TIMEOUT-handling.patch   |  124 +
 testing-i686/PKGBUILD|  152 +
 testing-i686/initcpio-hook-udev  |   20 ++
 testing-i686/initcpio-install-timestamp  |   14 +
 testing-i686/initcpio-install-udev   |   28 +++
 testing-i686/systemd.install |   29 +++
 testing-i686/use-split-usr-path.patch|   14 +
 testing-x86_64/0001-Reinstate-TIMEOUT-handling.patch |  124 +
 testing-x86_64/PKGBUILD  |  152 +
 testing-x86_64/initcpio-hook-udev|   20 ++
 testing-x86_64/initcpio-install-timestamp|   14 +
 testing-x86_64/initcpio-install-udev |   28 +++
 testing-x86_64/systemd.install   |   29 +++
 testing-x86_64/use-split-usr-path.patch  |   14 +
 14 files changed, 762 insertions(+)

Copied: systemd/repos/testing-i686/0001-Reinstate-TIMEOUT-handling.patch (from 
rev 168496, systemd/trunk/0001-Reinstate-TIMEOUT-handling.patch)
===
--- testing-i686/0001-Reinstate-TIMEOUT-handling.patch  
(rev 0)
+++ testing-i686/0001-Reinstate-TIMEOUT-handling.patch  2012-10-12 19:16:37 UTC 
(rev 168497)
@@ -0,0 +1,124 @@
+From 2127f99fb43d2ef950e95329ce40bdd5da8b015c Mon Sep 17 00:00:00 2001
+From: Dave Reisner dreis...@archlinux.org
+Date: Fri, 25 May 2012 19:43:24 -0400
+Subject: [PATCH] Reinstate TIMEOUT= handling
+
+This is mostly to deal with ipw2?00 drivers which have yet to be fixed
+in the kernel.
+---
+ src/libudev/libudev-device.c  |   19 +++
+ src/libudev/libudev-private.h |1 +
+ src/udev/udevd.c  |   13 ++---
+ 3 files changed, 30 insertions(+), 3 deletions(-)
+
+diff --git a/src/libudev/libudev-device.c b/src/libudev/libudev-device.c
+index a8277d1..5966189 100644
+--- a/src/libudev/libudev-device.c
 b/src/libudev/libudev-device.c
+@@ -68,6 +68,7 @@ struct udev_device {
+ struct udev_list tags_list;
+ unsigned long long int seqnum;
+ unsigned long long int usec_initialized;
++int timeout;
+ int devlink_priority;
+ int refcount;
+ dev_t devnum;
+@@ -89,6 +90,21 @@ struct udev_device {
+ bool db_persist;
+ };
+ 
++int udev_device_get_timeout(struct udev_device *udev_device)
++{
++return udev_device-timeout;
++}
++
++static int udev_device_set_timeout(struct udev_device *udev_device, int 
timeout)
++{
++char num[32];
++
++udev_device-timeout = timeout;
++snprintf(num, sizeof(num), %u, timeout);
++udev_device_add_property(udev_device, TIMEOUT, num);
++return 0;
++}
++
+ /**
+  * udev_device_get_seqnum:
+  * @udev_device: udev device
+@@ -362,6 +378,8 @@ void udev_device_add_property_from_string_parse(struct 
udev_device *udev_device,
+ 
+ util_strscpyl(path, sizeof(path), TEST_PREFIX /sys, 
property[8], NULL);
+ udev_device_set_syspath(udev_device, path);
++

[arch-commits] Commit in firefox/repos (30 files)

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 15:21:03
  Author: heftig
Revision: 168498

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 168497, firefox/repos/testing-i686/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 168497, firefox/repos/testing-i686/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox.desktop
(from rev 168497, firefox/repos/testing-i686/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 168497, firefox/repos/testing-i686/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 168497, firefox/repos/testing-i686/mozconfig)
  firefox/repos/extra-i686/shared-libs.patch
(from rev 168497, firefox/repos/testing-i686/shared-libs.patch)
  firefox/repos/extra-i686/vendor.js
(from rev 168497, firefox/repos/testing-i686/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 168497, firefox/repos/testing-x86_64/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 168497, firefox/repos/testing-x86_64/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 168497, firefox/repos/testing-x86_64/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 168497, firefox/repos/testing-x86_64/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 168497, firefox/repos/testing-x86_64/mozconfig)
  firefox/repos/extra-x86_64/shared-libs.patch
(from rev 168497, firefox/repos/testing-x86_64/shared-libs.patch)
  firefox/repos/extra-x86_64/vendor.js
(from rev 168497, firefox/repos/testing-x86_64/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/shared-libs.patch
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/shared-libs.patch
  firefox/repos/extra-x86_64/vendor.js
  firefox/repos/testing-i686/
  firefox/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|  164 -
 extra-i686/firefox-install-dir.patch   |   58 
 extra-i686/firefox.desktop |  202 ++-
 extra-i686/firefox.install |   26 +--
 extra-i686/mozconfig   |   76 +--
 extra-i686/shared-libs.patch   |   24 +--
 extra-i686/vendor.js   |   18 +-
 extra-x86_64/PKGBUILD  |  164 -
 extra-x86_64/firefox-install-dir.patch |   58 
 extra-x86_64/firefox.desktop   |  202 ++-
 extra-x86_64/firefox.install   |   26 +--
 extra-x86_64/mozconfig |   76 +--
 extra-x86_64/shared-libs.patch |   24 +--
 extra-x86_64/vendor.js |   18 +-
 14 files changed, 610 insertions(+), 526 deletions(-)

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


[arch-commits] Commit in firefox-i18n/repos (5 files)

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 15:21:10
  Author: heftig
Revision: 168499

db-move: moved firefox-i18n from [testing] to [extra] (any)

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 168497, firefox-i18n/repos/testing-any/PKGBUILD)
  firefox-i18n/repos/extra-any/firefox-i18n.install
(from rev 168497, firefox-i18n/repos/testing-any/firefox-i18n.install)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD
  firefox-i18n/repos/extra-any/firefox-i18n.install
  firefox-i18n/repos/testing-any/

--+
 PKGBUILD | 1814 -
 firefox-i18n.install |   16 
 2 files changed, 915 insertions(+), 915 deletions(-)

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


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

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 15:21:24
  Author: heftig
Revision: 168500

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 168497, thunderbird/repos/testing-i686/PKGBUILD)
  thunderbird/repos/extra-i686/mozconfig
(from rev 168497, thunderbird/repos/testing-i686/mozconfig)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 168497, 
thunderbird/repos/testing-i686/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 168497, thunderbird/repos/testing-i686/thunderbird.desktop)
  thunderbird/repos/extra-i686/thunderbird.install
(from rev 168497, thunderbird/repos/testing-i686/thunderbird.install)
  thunderbird/repos/extra-i686/vendor.js
(from rev 168497, thunderbird/repos/testing-i686/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 168497, thunderbird/repos/testing-x86_64/PKGBUILD)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 168497, thunderbird/repos/testing-x86_64/mozconfig)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 168497, 
thunderbird/repos/testing-x86_64/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 168497, thunderbird/repos/testing-x86_64/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/thunderbird.install
(from rev 168497, thunderbird/repos/testing-x86_64/thunderbird.install)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 168497, thunderbird/repos/testing-x86_64/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/thunderbird.install
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/thunderbird.install
  thunderbird/repos/extra-x86_64/vendor.js
  thunderbird/repos/testing-i686/
  thunderbird/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|  124 +--
 extra-i686/mozconfig   |   80 -
 extra-i686/thunderbird-install-dir.patch   |   86 +-
 extra-i686/thunderbird.desktop |   26 ++---
 extra-i686/thunderbird.install |   24 ++---
 extra-i686/vendor.js   |   18 +--
 extra-x86_64/PKGBUILD  |  124 +--
 extra-x86_64/mozconfig |   80 -
 extra-x86_64/thunderbird-install-dir.patch |   86 +-
 extra-x86_64/thunderbird.desktop   |   26 ++---
 extra-x86_64/thunderbird.install   |   24 ++---
 extra-x86_64/vendor.js |   18 +--
 12 files changed, 360 insertions(+), 356 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 19:21:10 UTC (rev 168499)
+++ extra-i686/PKGBUILD 2012-10-12 19:21:24 UTC (rev 168500)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Anders Bostrom anders.bost...@home.se
-
-pkgname=thunderbird
-pkgver=15.0.1
-pkgrel=1
-pkgdesc=Standalone Mail/News reader
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL')
-url=http://www.mozilla.org/thunderbird/;
-depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 
'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
-makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
-optdepends=('libcanberra: for sound support')
-install=thunderbird.install
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2
-mozconfig
-thunderbird.desktop
-thunderbird-install-dir.patch
-vendor.js)
-options=(!emptydirs)
-md5sums=('c84b83502892a34ecfe2d7a0fa58034f'
- '41511a6bcdd04cf56706218e4670e631'
- 'af3e5b344d2edf1c7d61bb0a5a96de9a'
- 'aea906acf72c43dd82ead2fabcc1c6db'
- '5a53179d14ae9631b7afe5e4d0fc0b25')
-
-build() {
-  cd comm-release
-  patch -Np1 -i $srcdir/thunderbird-install-dir.patch
-
-  cp $srcdir/mozconfig .mozconfig
-
-  export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/thunderbird
-  export PYTHON=/usr/bin/python2
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS=$MAKEFLAGS
-}
-
-package() {
-  cd comm-release
-  make -j1 -f client.mk DESTDIR=$pkgdir install
-
-  install -Dm644 

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

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 15:21:30
  Author: heftig
Revision: 168501

db-move: moved thunderbird-i18n from [testing] to [extra] (any)

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 168497, thunderbird-i18n/repos/testing-any/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD
  thunderbird-i18n/repos/testing-any/

--+
 PKGBUILD |  302 ++---
 1 file changed, 151 insertions(+), 151 deletions(-)

Deleted: extra-any/PKGBUILD
===
--- extra-any/PKGBUILD  2012-10-12 19:21:24 UTC (rev 168500)
+++ extra-any/PKGBUILD  2012-10-12 19:21:30 UTC (rev 168501)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgbase=thunderbird-i18n
-pkgver=15.0.1
-pkgrel=1
-pkgdesc=Language pack for Thunderbird
-arch=('any')
-url=http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=(thunderbird=$pkgver)
-
-_languages=(
-  'ar Arabic'
-  'astAsturian'
-  'be Belarusian'
-  'bg Bulgarian'
-  'bn-BD  Bengali (Bangladesh)'
-  'br Breton'
-  'ca Catalan'
-  'cs Czech'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en-GB  English (United Kingdom)'
-  'en-US  English (United States)'
-  'es-AR  Spanish (Argentina)'
-  'es-ES  Spanish (Spain)'
-  'et Estonian'
-  'eu Basque'
-  'fi Finnish'
-  'fr French'
-  'fy-NL  Frisian (Netherlands)'
-  'ga-IE  Irish'
-  'gd Gaelic'
-  'gl Galician'
-  'he Hebrew'
-  'hr Croatian'
-  'hu Hungarian'
-  'hy-AM  Armenian'
-  'id Indonesian'
-  'is Icelandic'
-  'it Italian'
-  'ja Japanese'
-  'ko Korean'
-  'lt Lithuanian'
-  'nb-NO  Norwegian (Bokmal)'
-  'nl Dutch'
-  'nn-NO  Norwegian (Nynorsk)'
-  'pa-IN  Punjabi'
-  'pl Polish'
-  'pt-BR  Brazilian Portuguese'
-  'pt-PT  Portuguese'
-  'rm Romansh'
-  'ro Romanian'
-  'ru Russian'
-  'si Sinhalese'
-  'sk Slovak'
-  'sq Albanian'
-  'sl Slovenian'
-  'sr Serbian'
-  'sv-SE  Swedish'
-  'ta-LK  Tamil (Sri Lanka)'
-  'tr Turkish'
-  'uk Ukrainian'
-  'vi Vietnamese'
-  'zh-CN  Chinese (simplified)'
-  'zh-TW  Chinese (traditional)'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=(thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-# Don't extract anything
-#noextract=(${source[@]##*/})
-
-_package() {
-  pkgdesc=$2 language pack for Thunderbird
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi
-}
-
-md5sums=('1204c8ee565e0440b8bfc287aeed47c2'
- '157b18d0905319f03ae6b6324b6a6296'
- '7d9f0d4463c38021e4b43f6e8cd4cea8'
- 'e328e922833e77a101efd5ed85b2ca74'
- 'b2db2755e3e7aa4e336a3d2d940b2d3d'
- '096aff1bd74e987ac0bbab6456f90a16'
- '0923559a3f870e873c3b96c88f7adb66'
- 'c18ba1c70a7098d3eb509058d7df6ab4'
- '08086033510e1d4565c99214ae52d162'
- '1da6ea552c58f0e3a384f47beaafbe61'
- 'e2dedb97f06848bfb57fe4870bb348b3'
- 'd42f2f15ffc3900ff0f8b1d415d42289'
- 'd1a87bc6141556c6cfeda1c5577a6033'
- '81e85573cf6495fffbdfe4f5ae634b2c'
- '3e4524287f6b48ade05ced7d6e1c89f7'
- '57e57b874f94918ff5874986b7baa7d8'
- 'd37968cab165e97095cb8dcc7a617761'
- 'ce18a22f00570e83033461eeb3af674e'
- '8bee27541bcd81e677d23ea987d633fc'
- 'f2dab20962d84c31aa255d1a5dee9f94'
- '54993614857e4f5ac13367477701f6f3'
- '19607f38a999d1b2f57c4e3c30cf1ab4'
- '96e7a1328e4a7b59dafaccdaec92a1a9'
- '12e44ca37ae4aafe5808fb3f8f9605a2'
- '65e93aa3678f20bba83983a7155a9cc3'
- '9a0b21b65c34eab40819886723898f4a'
- '769d74bf9a3d44b4116c5b8133c95942'
- 'eb887bcc7616447770472cd25a4ea42e'
- '431953bc4b889ce28487da4d3f4a'
- '05715540e7d014bd334a2bc962ebb8ec'
- 'fcf51a765a5257a57ca0d434cbc25236'
- '256db899931e58b6c00f6d218b21df63'
- '6f7f2b5fb8408c89fb17270d8c0c8d95'
- 'a023ff346c896c67f2457c81a37143cd'
- 'dc8069e6cd6fa272ccaff44945acf9e9'
- '60ce5b7a085278f969bf340c7dcd9283'
- 'd37dc4e914130e34109fca23772559a1'
- '0e73e5ac2424ea49d46e1e86da960fd4'
- '6abcc0ee49dc85c192b9ccfd8b17a81d'
- '85bf0eee5b6d90d5f88d7f0cb52f7371'
- '4b586c235942ed62baaf5b758bbab593'
- 'e4707084a3eec33b85a04e2bc2503745'
- '2d32ae74ae79a2bdad60ddbdc97d91d7'
- '7c41880568aae279af60439c4233e2e5'
- 

[arch-commits] Commit in octave/trunk (PKGBUILD buildfix.diff octave-gethelp.patch)

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 17:19:26
  Author: andyrtr
Revision: 168502

upgpkg: octave 3.6.2-2

mesa - glu rebuild; add some buildfixes

Added:
  octave/trunk/buildfix.diff
  octave/trunk/octave-gethelp.patch
Modified:
  octave/trunk/PKGBUILD

--+
 PKGBUILD |   24 ++---
 buildfix.diff|   85 +
 octave-gethelp.patch |   13 +++
 3 files changed, 116 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-12 19:21:30 UTC (rev 168501)
+++ PKGBUILD2012-10-12 21:19:26 UTC (rev 168502)
@@ -5,28 +5,40 @@
 
 pkgname=octave
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A high-level language, primarily intended for numerical computations.
 arch=('i686' 'x86_64')
 url=http://www.octave.org;
 license=('GPL')
-depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk' 'suitesparse') 
+depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk' 'suitesparse')
 makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'suitesparse' 
'texlive-core')
 optdepends=('texinfo: for help-support in octave'
 'gnuplot: alternative plotting')
-source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;)
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;
+buildfix.diff
+octave-gethelp.patch)
 options=('!emptydirs')
 install=octave.install
-sha1sums=('145fef0122268086727a60e1c33e29d56fd546d7')
-   
+sha1sums=('145fef0122268086727a60e1c33e29d56fd546d7'
+  'a7cdba1e05fbdd182facdd804aeec3772921'
+  'd39d54763ac86114029f8bc5d60763d2adce27bb')
+
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
+  # patch by Gentoo 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.4.3-gets.patch?view=log
+  patch -Np0 -i ${srcdir}/buildfix.diff
+  # 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.4.3-help.patch?view=log
+  patch -Np0 -i ${srcdir}/octave-gethelp.patch
+
+  autoreconf -vfi
+
   # http://www.nabble.com/Random-rounding-errors-td16010966.html
   FFLAGS=-O -ffloat-store \
 
   ./configure --prefix=/usr --libexecdir=/usr/lib \
-  --enable-shared --disable-static
+  --enable-shared --disable-static \
+  --with-umfpack=-lumfpack -lsuitesparseconfig # 
https://mailman.cae.wisc.edu/pipermail/help-octave/2012-September/053991.html
 
   LANG=C make
 }

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2012-10-12 21:19:26 UTC (rev 168502)
@@ -0,0 +1,85 @@
+--- libgnu/stdio.in.h.origs2012-05-24 12:46:13.0 -0600
 libgnu/stdio.in.h  2012-05-24 16:29:54.813734894 -0600
+@@ -1,12 +1,10 @@
+-/* -*- buffer-read-only: t -*- vi: set ro: */
+-/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+ /* A GNU-like stdio.h.
+ 
+Copyright (C) 2004, 2007-2012 Free Software Foundation, Inc.
+ 
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+-   the Free Software Foundation; either version 3, or (at your option)
++   the Free Software Foundation; either version 2, or (at your option)
+any later version.
+ 
+This program is distributed in the hope that it will be useful,
+@@ -15,8 +13,7 @@
+GNU General Public License for more details.
+ 
+You should have received a copy of the GNU General Public License
+-   along with this program; if not, write to the Free Software Foundation,
+-   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
++   along with this program; if not, see http://www.gnu.org/licenses/.  */
+ 
+ #if __GNUC__ = 3
+ @PRAGMA_SYSTEM_HEADER@
+@@ -55,7 +52,8 @@
+ #include stddef.h
+ 
+ /* Get off_t and ssize_t.  Needed on many systems, including glibc 2.8
+-   and eglibc 2.11.2.  */
++   and eglibc 2.11.2.
++   May also define off_t to a 64-bit type on native Windows.  */
+ #include sys/types.h
+ 
+ /* The __attribute__ feature is available in gcc versions 2.5 and later.
+@@ -701,22 +699,11 @@ _GL_WARN_ON_USE (getline, getline is un
+ # endif
+ #endif
+ 
+-#if @GNULIB_GETS@
+-# if @REPLACE_STDIO_READ_FUNCS@  @GNULIB_STDIO_H_NONBLOCKING@
+-#  if !(defined __cplusplus  defined GNULIB_NAMESPACE)
+-#   undef gets
+-#   define gets rpl_gets
+-#  endif
+-_GL_FUNCDECL_RPL (gets, char *, (char *s) _GL_ARG_NONNULL ((1)));
+-_GL_CXXALIAS_RPL (gets, char *, (char *s));
+-# else
+-_GL_CXXALIAS_SYS (gets, char *, (char *s));
+-#  undef gets
+-# endif
+-_GL_CXXALIASWARN (gets);
+ /* It is very rare that the developer ever has full control of stdin,
+-   so any use of gets warrants an unconditional warning.  Assume it is
+-   always declared, since it is required by C89.  */
++   

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

2012-10-12 Thread andyrtr
Date: Friday, October 12, 2012 @ 17:20:37
  Author: andyrtr
Revision: 168503

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

Added:
  octave/repos/testing-i686/
  octave/repos/testing-i686/PKGBUILD
(from rev 168502, octave/trunk/PKGBUILD)
  octave/repos/testing-i686/buildfix.diff
(from rev 168502, octave/trunk/buildfix.diff)
  octave/repos/testing-i686/curlfix.patch
(from rev 168502, octave/trunk/curlfix.patch)
  octave/repos/testing-i686/imread.patch
(from rev 168502, octave/trunk/imread.patch)
  octave/repos/testing-i686/octave-3.4.0-gcc46.patch
(from rev 168502, octave/trunk/octave-3.4.0-gcc46.patch)
  octave/repos/testing-i686/octave-gethelp.patch
(from rev 168502, octave/trunk/octave-gethelp.patch)
  octave/repos/testing-i686/octave.install
(from rev 168502, octave/trunk/octave.install)
  octave/repos/testing-x86_64/
  octave/repos/testing-x86_64/PKGBUILD
(from rev 168502, octave/trunk/PKGBUILD)
  octave/repos/testing-x86_64/buildfix.diff
(from rev 168502, octave/trunk/buildfix.diff)
  octave/repos/testing-x86_64/curlfix.patch
(from rev 168502, octave/trunk/curlfix.patch)
  octave/repos/testing-x86_64/imread.patch
(from rev 168502, octave/trunk/imread.patch)
  octave/repos/testing-x86_64/octave-3.4.0-gcc46.patch
(from rev 168502, octave/trunk/octave-3.4.0-gcc46.patch)
  octave/repos/testing-x86_64/octave-gethelp.patch
(from rev 168502, octave/trunk/octave-gethelp.patch)
  octave/repos/testing-x86_64/octave.install
(from rev 168502, octave/trunk/octave.install)

-+
 testing-i686/PKGBUILD   |   54 +++
 testing-i686/buildfix.diff  |   85 ++
 testing-i686/curlfix.patch  |   10 +++
 testing-i686/imread.patch   |   29 ++
 testing-i686/octave-3.4.0-gcc46.patch   |   24 
 testing-i686/octave-gethelp.patch   |   13 
 testing-i686/octave.install |   18 ++
 testing-x86_64/PKGBUILD |   54 +++
 testing-x86_64/buildfix.diff|   85 ++
 testing-x86_64/curlfix.patch|   10 +++
 testing-x86_64/imread.patch |   29 ++
 testing-x86_64/octave-3.4.0-gcc46.patch |   24 
 testing-x86_64/octave-gethelp.patch |   13 
 testing-x86_64/octave.install   |   18 ++
 14 files changed, 466 insertions(+)

Copied: octave/repos/testing-i686/PKGBUILD (from rev 168502, 
octave/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-12 21:20:37 UTC (rev 168503)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor : shining shiningxc.at.gmail.com
+# Contributor : cyberdune cyberd...@gmail.com
+
+pkgname=octave
+pkgver=3.6.2
+pkgrel=2
+pkgdesc=A high-level language, primarily intended for numerical computations.
+arch=('i686' 'x86_64')
+url=http://www.octave.org;
+license=('GPL')
+depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk' 'suitesparse')
+makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'suitesparse' 
'texlive-core')
+optdepends=('texinfo: for help-support in octave'
+'gnuplot: alternative plotting')
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;
+buildfix.diff
+octave-gethelp.patch)
+options=('!emptydirs')
+install=octave.install
+sha1sums=('145fef0122268086727a60e1c33e29d56fd546d7'
+  'a7cdba1e05fbdd182facdd804aeec3772921'
+  'd39d54763ac86114029f8bc5d60763d2adce27bb')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # patch by Gentoo 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.4.3-gets.patch?view=log
+  patch -Np0 -i ${srcdir}/buildfix.diff
+  # 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.4.3-help.patch?view=log
+  patch -Np0 -i ${srcdir}/octave-gethelp.patch
+
+  autoreconf -vfi
+
+  # http://www.nabble.com/Random-rounding-errors-td16010966.html
+  FFLAGS=-O -ffloat-store \
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+  --enable-shared --disable-static \
+  --with-umfpack=-lumfpack -lsuitesparseconfig # 
https://mailman.cae.wisc.edu/pipermail/help-octave/2012-September/053991.html
+
+  LANG=C make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  # add octave library path to ld.so.conf.d
+  install -d ${pkgdir}/etc/ld.so.conf.d
+  echo /usr/lib/${pkgname}/${pkgver}  
${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf
+}

Copied: octave/repos/testing-i686/buildfix.diff (from rev 168502, 
octave/trunk/buildfix.diff)
===
--- testing-i686/buildfix.diff  

[arch-commits] Commit in gnome-games/repos (extra-i686/PKGBUILD extra-x86_64/PKGBUILD)

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 20:05:01
  Author: heftig
Revision: 168504

GLU rebuild

Modified:
  gnome-games/repos/extra-i686/PKGBUILD
  gnome-games/repos/extra-x86_64/PKGBUILD

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

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 21:20:37 UTC (rev 168503)
+++ extra-i686/PKGBUILD 2012-10-13 00:05:01 UTC (rev 168504)
@@ -4,11 +4,11 @@
 
 pkgname=gnome-games
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
+depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
 makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
 options=('!emptydirs' '!libtool')
 install=gnome-games.install

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-12 21:20:37 UTC (rev 168503)
+++ extra-x86_64/PKGBUILD   2012-10-13 00:05:01 UTC (rev 168504)
@@ -4,11 +4,11 @@
 
 pkgname=gnome-games
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
+depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
 makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
 options=('!emptydirs' '!libtool')
 install=gnome-games.install



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

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 20:06:42
  Author: heftig
Revision: 168505

whoops, belong to testing

Added:
  gnome-games/repos/testing-i686/
  gnome-games/repos/testing-i686/PKGBUILD
(from rev 168504, gnome-games/repos/extra-i686/PKGBUILD)
  gnome-games/repos/testing-x86_64/
  gnome-games/repos/testing-x86_64/PKGBUILD
(from rev 168504, gnome-games/repos/extra-x86_64/PKGBUILD)
Modified:
  gnome-games/repos/extra-i686/PKGBUILD
  gnome-games/repos/extra-x86_64/PKGBUILD
Deleted:
  gnome-games/repos/testing-i686/PKGBUILD
  gnome-games/repos/testing-x86_64/PKGBUILD

-+
 extra-i686/PKGBUILD |4 +-
 extra-x86_64/PKGBUILD   |4 +-
 testing-i686/PKGBUILD   |   74 +++---
 testing-x86_64/PKGBUILD |   74 +++---
 4 files changed, 78 insertions(+), 78 deletions(-)

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 00:05:01 UTC (rev 168504)
+++ extra-i686/PKGBUILD 2012-10-13 00:06:42 UTC (rev 168505)
@@ -4,11 +4,11 @@
 
 pkgname=gnome-games
 pkgver=3.4.2
-pkgrel=2
+pkgrel=1
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
+depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
 makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
 options=('!emptydirs' '!libtool')
 install=gnome-games.install

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-13 00:05:01 UTC (rev 168504)
+++ extra-x86_64/PKGBUILD   2012-10-13 00:06:42 UTC (rev 168505)
@@ -4,11 +4,11 @@
 
 pkgname=gnome-games
 pkgver=3.4.2
-pkgrel=2
+pkgrel=1
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
+depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
 makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
 options=('!emptydirs' '!libtool')
 install=gnome-games.install

Deleted: testing-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-12 21:20:37 UTC (rev 168503)
+++ testing-i686/PKGBUILD   2012-10-13 00:06:42 UTC (rev 168505)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=gnome-games
-pkgver=3.4.2
-pkgrel=1
-pkgdesc=Some Games for GNOME
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
-makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
-options=('!emptydirs' '!libtool')
-install=gnome-games.install
-url=http://www.gnome.org;
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('25676285fad33a39da7fc26b5b1dc751c7981ae778b8fe82e8b7c0a367e5117c')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --disable-schemas-compile \
-  --with-scores-user=root --with-scores-group=games \
-  --enable-introspection=yes
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # Remove all scores, we generate them from postinstall
-  rm -rf $pkgdir/var
-
-  sed -i 's_#! /usr/bin/env python_#!/usr/bin/env python2_' 
$pkgdir/usr/bin/gnome-sudoku
-}

Copied: gnome-games/repos/testing-i686/PKGBUILD (from rev 168504, 
gnome-games/repos/extra-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-13 00:06:42 UTC (rev 168505)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-games
+pkgver=3.4.2
+pkgrel=2
+pkgdesc=Some Games for GNOME
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
+options=('!emptydirs' '!libtool')
+install=gnome-games.install
+url=http://www.gnome.org;
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('25676285fad33a39da7fc26b5b1dc751c7981ae778b8fe82e8b7c0a367e5117c')
+
+build() {
+  cd $pkgname-$pkgver
+  

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

2012-10-12 Thread Jan Steffens
Date: Friday, October 12, 2012 @ 20:30:55
  Author: heftig
Revision: 168506

glchess uses glut

Modified:
  gnome-games/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 00:06:42 UTC (rev 168505)
+++ PKGBUILD2012-10-13 00:30:55 UTC (rev 168506)
@@ -8,7 +8,7 @@
 pkgdesc=Some Games for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 
'librsvg' 'python2-gobject' 'dconf')
+depends=('desktop-file-utils' 'glu' 'libcanberra' 'clutter-gtk' 
'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf')
 makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'vala')
 options=('!emptydirs' '!libtool')
 install=gnome-games.install



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

2012-10-12 Thread Thomas Dziedzic
Date: Friday, October 12, 2012 @ 23:02:56
  Author: tdziedzic
Revision: 168507

upgpkg: ruby 1.9.3_p286-1

bump

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 00:30:55 UTC (rev 168506)
+++ PKGBUILD2012-10-13 03:02:56 UTC (rev 168507)
@@ -3,22 +3,14 @@
 # Contributor: John Proctor jproc...@prium.net
 # Contributor: Jeramy Rutley jrut...@gmail.com
 
-pkgname=ruby
-pkgver=1.9.3_p194
-pkgrel=2
-pkgdesc='An object-oriented language for quick and easy programming'
+pkgname=('ruby' 'ruby-docs')
+pkgver=1.9.3_p286
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.ruby-lang.org/en/'
 license=('BSD' 'custom')
-backup=('etc/gemrc')
-provides=('rubygems' 'rake')
-conflicts=('rake')
-depends=('openssl' 'libffi' 'libyaml')
-makedepends=('tk')
-optdepends=('tk: for Ruby/TK'
-'ruby-docs: Ruby documentation')
+makedepends=('openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml')
 options=('!emptydirs' '!makeflags')
-install='ruby.install'
 
source=(ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2;
 'gemrc')
 md5sums=('2278eff4cfed3cbc0653bc73085caa34'
@@ -32,8 +24,7 @@
 --sysconfdir=/etc \
 --enable-shared \
 --enable-pthread \
---disable-rpath \
---disable-install-doc
+--disable-rpath
 
   make
 }
@@ -44,7 +35,16 @@
   make test
 }
 
-package() {
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=('openssl' 'libffi' 'libyaml')
+  optdepends=('tk: for Ruby/TK'
+  'ruby-docs: Ruby documentation')
+  provides=('rubygems' 'rake')
+  conflicts=('rake')
+  backup=('etc/gemrc')
+  install='ruby.install'
+
   cd ruby-${pkgver//_/-}
 
   make DESTDIR=${pkgdir} install-nodoc
@@ -54,3 +54,16 @@
   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby/LICENSE
   install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby/BSDL
 }
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver//_/-}
+
+  make DESTDIR=${pkgdir} install-doc install-capi
+
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby-docs/LICENSE
+  install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby-docs/BSDL
+}
+md5sums=('e76848a86606a4fd5dcf14fc4b4e755e'
+ '6fb8e7a09955e0f64be3158fb4a27e7a')



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

2012-10-12 Thread Thomas Dziedzic
Date: Friday, October 12, 2012 @ 23:03:32
  Author: tdziedzic
Revision: 168508

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

Added:
  ruby/repos/testing-i686/
  ruby/repos/testing-i686/PKGBUILD
(from rev 168507, ruby/trunk/PKGBUILD)
  ruby/repos/testing-i686/gemrc
(from rev 168507, ruby/trunk/gemrc)
  ruby/repos/testing-i686/ruby.install
(from rev 168507, ruby/trunk/ruby.install)
  ruby/repos/testing-x86_64/
  ruby/repos/testing-x86_64/PKGBUILD
(from rev 168507, ruby/trunk/PKGBUILD)
  ruby/repos/testing-x86_64/gemrc
(from rev 168507, ruby/trunk/gemrc)
  ruby/repos/testing-x86_64/ruby.install
(from rev 168507, ruby/trunk/ruby.install)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-i686/gemrc  |5 +++
 testing-i686/ruby.install   |   22 +
 testing-x86_64/PKGBUILD |   69 ++
 testing-x86_64/gemrc|5 +++
 testing-x86_64/ruby.install |   22 +
 6 files changed, 192 insertions(+)

Copied: ruby/repos/testing-i686/PKGBUILD (from rev 168507, ruby/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-13 03:03:32 UTC (rev 168508)
@@ -0,0 +1,69 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Jeramy Rutley jrut...@gmail.com
+
+pkgname=('ruby' 'ruby-docs')
+pkgver=1.9.3_p286
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.ruby-lang.org/en/'
+license=('BSD' 'custom')
+makedepends=('openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml')
+options=('!emptydirs' '!makeflags')
+source=(ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2;
+'gemrc')
+md5sums=('2278eff4cfed3cbc0653bc73085caa34'
+ '6fb8e7a09955e0f64be3158fb4a27e7a')
+
+build() {
+  cd ruby-${pkgver//_/-}
+
+  PKG_CONFIG=/usr/bin/pkg-config ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-shared \
+--enable-pthread \
+--disable-rpath
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver//_/-}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=('openssl' 'libffi' 'libyaml')
+  optdepends=('tk: for Ruby/TK'
+  'ruby-docs: Ruby documentation')
+  provides=('rubygems' 'rake')
+  conflicts=('rake')
+  backup=('etc/gemrc')
+  install='ruby.install'
+
+  cd ruby-${pkgver//_/-}
+
+  make DESTDIR=${pkgdir} install-nodoc
+
+  install -D -m644 ${srcdir}/gemrc ${pkgdir}/etc/gemrc
+
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby/LICENSE
+  install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby/BSDL
+}
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver//_/-}
+
+  make DESTDIR=${pkgdir} install-doc install-capi
+
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby-docs/LICENSE
+  install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby-docs/BSDL
+}
+md5sums=('e76848a86606a4fd5dcf14fc4b4e755e'
+ '6fb8e7a09955e0f64be3158fb4a27e7a')

Copied: ruby/repos/testing-i686/gemrc (from rev 168507, ruby/trunk/gemrc)
===
--- testing-i686/gemrc  (rev 0)
+++ testing-i686/gemrc  2012-10-13 03:03:32 UTC (rev 168508)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
+#pacman installed gems and gem installed gems
+gem: --user-install

Copied: ruby/repos/testing-i686/ruby.install (from rev 168507, 
ruby/trunk/ruby.install)
===
--- testing-i686/ruby.install   (rev 0)
+++ testing-i686/ruby.install   2012-10-13 03:03:32 UTC (rev 168508)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+print_gem_default_target() {
+  echo 'The default location of gem installs is $HOME/.gem/ruby'
+  echo 'Add the following line to your PATH if you plan to install using gem'
+  echo '$(ruby -rubygems -e puts Gem.user_dir)/bin'
+  echo 'If you want to install to the system wide location, you must either:'
+  echo 'edit /etc/gemrc or run gem with the --no-user-install flag.'
+}
+
+# arg 1:  the new package version
+post_install() {
+  print_gem_default_target
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [ $(vercmp $2 1.9.3_p125-4) -lt 0 ]; then
+print_gem_default_target
+  fi
+}

Copied: ruby/repos/testing-x86_64/PKGBUILD (from rev 168507, 
ruby/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ 

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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:13:23
  Author: allan
Revision: 168509

upgpkg: cinepaint 1.3-4

openexr-1.7.1 rebuild

Modified:
  cinepaint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 03:03:32 UTC (rev 168508)
+++ PKGBUILD2012-10-13 05:13:23 UTC (rev 168509)
@@ -4,7 +4,7 @@
 
 pkgname=cinepaint
 pkgver=1.3
-pkgrel=3
+pkgrel=4
 pkgdesc=Sophisticated graphics manipulation programm supporting  8bit 
pictures
 arch=('i686' 'x86_64')
 license=('LGPL' 'GPL' 'MIT')



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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:14:52
  Author: allan
Revision: 168510

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

Added:
  cinepaint/repos/extra-i686/LICENSE
(from rev 168509, cinepaint/trunk/LICENSE)
  cinepaint/repos/extra-i686/PKGBUILD
(from rev 168509, cinepaint/trunk/PKGBUILD)
  cinepaint/repos/extra-i686/cinepaint-libpng15.patch
(from rev 168509, cinepaint/trunk/cinepaint-libpng15.patch)
  cinepaint/repos/extra-i686/cinepaint-missing-include.patch
(from rev 168509, cinepaint/trunk/cinepaint-missing-include.patch)
  cinepaint/repos/extra-i686/cinepaint.install
(from rev 168509, cinepaint/trunk/cinepaint.install)
  cinepaint/repos/extra-x86_64/LICENSE
(from rev 168509, cinepaint/trunk/LICENSE)
  cinepaint/repos/extra-x86_64/PKGBUILD
(from rev 168509, cinepaint/trunk/PKGBUILD)
  cinepaint/repos/extra-x86_64/cinepaint-libpng15.patch
(from rev 168509, cinepaint/trunk/cinepaint-libpng15.patch)
  cinepaint/repos/extra-x86_64/cinepaint-missing-include.patch
(from rev 168509, cinepaint/trunk/cinepaint-missing-include.patch)
  cinepaint/repos/extra-x86_64/cinepaint.install
(from rev 168509, cinepaint/trunk/cinepaint.install)
Deleted:
  cinepaint/repos/extra-i686/LICENSE
  cinepaint/repos/extra-i686/PKGBUILD
  cinepaint/repos/extra-i686/cinepaint-libpng15.patch
  cinepaint/repos/extra-i686/cinepaint-missing-include.patch
  cinepaint/repos/extra-i686/cinepaint.install
  cinepaint/repos/extra-x86_64/LICENSE
  cinepaint/repos/extra-x86_64/PKGBUILD
  cinepaint/repos/extra-x86_64/cinepaint-libpng15.patch
  cinepaint/repos/extra-x86_64/cinepaint-missing-include.patch
  cinepaint/repos/extra-x86_64/cinepaint.install

--+
 extra-i686/LICENSE   |   50 -
 extra-i686/PKGBUILD  |  102 +-
 extra-i686/cinepaint-libpng15.patch  |  904 -
 extra-i686/cinepaint-missing-include.patch   |   22 
 extra-i686/cinepaint.install |   22 
 extra-x86_64/LICENSE |   50 -
 extra-x86_64/PKGBUILD|  102 +-
 extra-x86_64/cinepaint-libpng15.patch|  904 -
 extra-x86_64/cinepaint-missing-include.patch |   22 
 extra-x86_64/cinepaint.install   |   22 
 10 files changed, 1100 insertions(+), 1100 deletions(-)

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


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

2012-10-12 Thread Eric Bélanger
Date: Saturday, October 13, 2012 @ 01:22:32
  Author: eric
Revision: 168511

upgpkg: fyre 1.0.1-5

Rebuild against openexr 1.7.1

Modified:
  fyre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 05:14:52 UTC (rev 168510)
+++ PKGBUILD2012-10-13 05:22:32 UTC (rev 168511)
@@ -3,7 +3,7 @@
 
 pkgname=fyre
 pkgver=1.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Rendering of the Peter de Jong map
 arch=('i686' 'x86_64')
 url=http://fyre.navi.cx/;



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

2012-10-12 Thread Eric Bélanger
Date: Saturday, October 13, 2012 @ 01:22:49
  Author: eric
Revision: 168512

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

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

---+
 extra-i686/PKGBUILD   |   52 ++--
 extra-i686/fyre.install   |   26 +++---
 extra-x86_64/PKGBUILD |   52 ++--
 extra-x86_64/fyre.install |   26 +++---
 4 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 05:22:32 UTC (rev 168511)
+++ extra-i686/PKGBUILD 2012-10-13 05:22:49 UTC (rev 168512)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=fyre
-pkgver=1.0.1
-pkgrel=4
-pkgdesc=Rendering of the Peter de Jong map
-arch=('i686' 'x86_64')
-url=http://fyre.navi.cx/;
-license=('GPL')
-depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=fyre.install
-source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
-sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make update_xdgmime=/bin/false update_fdodesktop=/bin/false 
gtk_update_icon_cache=/bin/false \
-prefix=${pkgdir}/usr install
-}

Copied: fyre/repos/extra-i686/PKGBUILD (from rev 168511, fyre/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 05:22:49 UTC (rev 168512)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=fyre
+pkgver=1.0.1
+pkgrel=5
+pkgdesc=Rendering of the Peter de Jong map
+arch=('i686' 'x86_64')
+url=http://fyre.navi.cx/;
+license=('GPL')
+depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
+install=fyre.install
+source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
+sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make update_xdgmime=/bin/false update_fdodesktop=/bin/false 
gtk_update_icon_cache=/bin/false \
+prefix=${pkgdir}/usr install
+}

Deleted: extra-i686/fyre.install
===
--- extra-i686/fyre.install 2012-10-13 05:22:32 UTC (rev 168511)
+++ extra-i686/fyre.install 2012-10-13 05:22:49 UTC (rev 168512)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-mime-database usr/share/mime  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: fyre/repos/extra-i686/fyre.install (from rev 168511, 
fyre/trunk/fyre.install)
===
--- extra-i686/fyre.install (rev 0)
+++ extra-i686/fyre.install 2012-10-13 05:22:49 UTC (rev 168512)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-mime-database usr/share/mime  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-13 05:22:32 UTC (rev 168511)
+++ extra-x86_64/PKGBUILD   2012-10-13 05:22:49 UTC (rev 168512)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=fyre
-pkgver=1.0.1
-pkgrel=4
-pkgdesc=Rendering of the Peter de Jong map
-arch=('i686' 'x86_64')
-url=http://fyre.navi.cx/;
-license=('GPL')
-depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=fyre.install
-source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
-sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make update_xdgmime=/bin/false update_fdodesktop=/bin/false 
gtk_update_icon_cache=/bin/false \
-prefix=${pkgdir}/usr install
-}

Copied: 

[arch-commits] Commit in linux/trunk (PKGBUILD linux.install)

2012-10-12 Thread Tobias Powalowski
Date: Saturday, October 13, 2012 @ 01:25:37
  Author: tpowa
Revision: 168513

upgpkg: linux 3.6.2-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/linux.install

---+
 PKGBUILD  |8 
 linux.install |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 05:22:49 UTC (rev 168512)
+++ PKGBUILD2012-10-13 05:25:37 UTC (rev 168513)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.6
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -20,9 +20,9 @@
 'linux.preset'
 'change-default-console-loglevel.patch')
 md5sums=('1a1760420eac802c541a20ab51a093d1'
- '775f1389a934512341726f9b4aeaf661'
- '8dd3f284cb944dc5b334ddadcfac0e08'
- 'e9c94795caa1792571973e0781324f1b'
+ 'ad1020c82a71ee1ef2416a0d12e724df'
+ '443f285744cb96401f9a631f542b9248'
+ '2793e97a9e98c501afd3e18d2e3b9762'
  'eb14dcfd80c00852ef81ded6e826826a'
  '9d3c56a4b999c8bfbd4018089a62f662')
 

Modified: linux.install
===
--- linux.install   2012-10-13 05:22:49 UTC (rev 168512)
+++ linux.install   2012-10-13 05:25:37 UTC (rev 168513)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=
-KERNEL_VERSION=3.6.1-1-ARCH
+KERNEL_VERSION=3.6.2-1-ARCH
 
 # set a sane PATH to ensure that critical utils like depmod will be found
 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'



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

2012-10-12 Thread Tobias Powalowski
Date: Saturday, October 13, 2012 @ 01:26:40
  Author: tpowa
Revision: 168514

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

Added:
  linux/repos/testing-i686/PKGBUILD
(from rev 168513, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 168513, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 168513, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 168513, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 168513, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 168513, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 168513, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 168513, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 168513, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 168513, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 168513, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 168513, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/alsa-powersave-3.5.x.patch
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/i915-i2c-crash-3.5.x.patch
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-i686/watchdog-3.5.x.patch
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/alsa-powersave-3.5.x.patch
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/i915-i2c-crash-3.5.x.patch
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset
  linux/repos/testing-x86_64/watchdog-3.5.x.patch

--+
 testing-i686/PKGBUILD|  618 
 testing-i686/alsa-powersave-3.5.x.patch  |   29 
 testing-i686/change-default-console-loglevel.patch   |   24 
 testing-i686/config  |12057 -
 testing-i686/config.x86_64   |11599 
 testing-i686/i915-i2c-crash-3.5.x.patch  |   47 
 testing-i686/linux.install   |  130 
 testing-i686/linux.preset|   28 
 testing-i686/watchdog-3.5.x.patch|   60 
 testing-x86_64/PKGBUILD  |  618 
 testing-x86_64/alsa-powersave-3.5.x.patch|   29 
 testing-x86_64/change-default-console-loglevel.patch |   24 
 testing-x86_64/config|12057 -
 testing-x86_64/config.x86_64 |11599 
 testing-x86_64/i915-i2c-crash-3.5.x.patch|   47 
 testing-x86_64/linux.install |  130 
 testing-x86_64/linux.preset  |   28 
 testing-x86_64/watchdog-3.5.x.patch  |   60 
 18 files changed, 24454 insertions(+), 24730 deletions(-)

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


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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:27:44
  Author: allan
Revision: 168515

upgpkg: enblend-enfuse 4.0-7

openexr-1.7.1 rebuild

Modified:
  enblend-enfuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 05:26:40 UTC (rev 168514)
+++ PKGBUILD2012-10-13 05:27:44 UTC (rev 168515)
@@ -4,7 +4,7 @@
 
 pkgname=enblend-enfuse
 pkgver=4.0
-pkgrel=6
+pkgrel=7
 pkgdesc=Intelligent blend tool for overlapping picture
 arch=(i686 x86_64)
 license=('GPL')



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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:28:59
  Author: allan
Revision: 168516

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

Added:
  enblend-enfuse/repos/extra-i686/PKGBUILD
(from rev 168515, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/extra-i686/enblend-4.0-libpng15.patch
(from rev 168515, enblend-enfuse/trunk/enblend-4.0-libpng15.patch)
  enblend-enfuse/repos/extra-i686/enblend-enfuse.install
(from rev 168515, enblend-enfuse/trunk/enblend-enfuse.install)
  enblend-enfuse/repos/extra-i686/libpng-1.4.patch
(from rev 168515, enblend-enfuse/trunk/libpng-1.4.patch)
  enblend-enfuse/repos/extra-x86_64/PKGBUILD
(from rev 168515, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/extra-x86_64/enblend-4.0-libpng15.patch
(from rev 168515, enblend-enfuse/trunk/enblend-4.0-libpng15.patch)
  enblend-enfuse/repos/extra-x86_64/enblend-enfuse.install
(from rev 168515, enblend-enfuse/trunk/enblend-enfuse.install)
  enblend-enfuse/repos/extra-x86_64/libpng-1.4.patch
(from rev 168515, enblend-enfuse/trunk/libpng-1.4.patch)
Deleted:
  enblend-enfuse/repos/extra-i686/PKGBUILD
  enblend-enfuse/repos/extra-i686/enblend-4.0-libpng15.patch
  enblend-enfuse/repos/extra-i686/enblend-enfuse.install
  enblend-enfuse/repos/extra-i686/libpng-1.4.patch
  enblend-enfuse/repos/extra-x86_64/PKGBUILD
  enblend-enfuse/repos/extra-x86_64/enblend-4.0-libpng15.patch
  enblend-enfuse/repos/extra-x86_64/enblend-enfuse.install
  enblend-enfuse/repos/extra-x86_64/libpng-1.4.patch

-+
 extra-i686/PKGBUILD |   78 ++---
 extra-i686/enblend-4.0-libpng15.patch   |  440 +++---
 extra-i686/enblend-enfuse.install   |   44 +--
 extra-i686/libpng-1.4.patch |   28 -
 extra-x86_64/PKGBUILD   |   78 ++---
 extra-x86_64/enblend-4.0-libpng15.patch |  440 +++---
 extra-x86_64/enblend-enfuse.install |   44 +--
 extra-x86_64/libpng-1.4.patch   |   28 -
 8 files changed, 590 insertions(+), 590 deletions(-)

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


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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:41:29
  Author: allan
Revision: 168517

upgpkg: gegl 0.2.0-4

openexr-1.7.1 rebuild

Modified:
  gegl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 05:28:59 UTC (rev 168516)
+++ PKGBUILD2012-10-13 05:41:29 UTC (rev 168517)
@@ -3,7 +3,7 @@
 
 pkgname=gegl
 pkgver=0.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc=Graph based image processing framework
 arch=('i686' 'x86_64')
 url=http://www.gegl.org/;



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

2012-10-12 Thread Allan McRae
Date: Saturday, October 13, 2012 @ 01:42:21
  Author: allan
Revision: 168518

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

Added:
  gegl/repos/extra-i686/PKGBUILD
(from rev 168517, gegl/trunk/PKGBUILD)
  gegl/repos/extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
(from rev 168517, gegl/trunk/gegl-0.2.0-ffmpeg-0.11.diff)
  gegl/repos/extra-x86_64/PKGBUILD
(from rev 168517, gegl/trunk/PKGBUILD)
  gegl/repos/extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff
(from rev 168517, gegl/trunk/gegl-0.2.0-ffmpeg-0.11.diff)
Deleted:
  gegl/repos/extra-i686/PKGBUILD
  gegl/repos/extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
  gegl/repos/extra-x86_64/PKGBUILD
  gegl/repos/extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff

--+
 extra-i686/PKGBUILD  |   76 ++---
 extra-i686/gegl-0.2.0-ffmpeg-0.11.diff   |   24 -
 extra-x86_64/PKGBUILD|   76 ++---
 extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff |   24 -
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 05:41:29 UTC (rev 168517)
+++ extra-i686/PKGBUILD 2012-10-13 05:42:21 UTC (rev 168518)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann dan...@archlinux.org
-
-pkgname=gegl
-pkgver=0.2.0
-pkgrel=3
-pkgdesc=Graph based image processing framework
-arch=('i686' 'x86_64')
-url=http://www.gegl.org/;
-license=('GPL3' 'LGPL3')
-depends=('babl' 'gtk2')
-makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 
'exiv2')
-optdepends=('openexr: for using the openexr plugin' \
-'ffmpeg: for using the ffmpeg plugin' \
-'librsvg: for using the svg plugin' \
-'jasper: for using the jasper plugin')
-options=('!libtool')
-source=(ftp://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 gegl-0.2.0-ffmpeg-0.11.diff)
-sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
-  'c10fd988c634fcf0948cc91a51d6528f6f1704ba')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1  ${srcdir}/gegl-0.2.0-ffmpeg-0.11.diff
-  ./configure  --prefix=/usr  --with-sdl --with-openexr --with-librsvg \
---with-libavformat --with-jasper --disable-docs
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gegl/repos/extra-i686/PKGBUILD (from rev 168517, gegl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 05:42:21 UTC (rev 168518)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+
+pkgname=gegl
+pkgver=0.2.0
+pkgrel=4
+pkgdesc=Graph based image processing framework
+arch=('i686' 'x86_64')
+url=http://www.gegl.org/;
+license=('GPL3' 'LGPL3')
+depends=('babl' 'gtk2')
+makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 
'exiv2')
+optdepends=('openexr: for using the openexr plugin' \
+'ffmpeg: for using the ffmpeg plugin' \
+'librsvg: for using the svg plugin' \
+'jasper: for using the jasper plugin')
+options=('!libtool')
+source=(ftp://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 gegl-0.2.0-ffmpeg-0.11.diff)
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
+  'c10fd988c634fcf0948cc91a51d6528f6f1704ba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1  ${srcdir}/gegl-0.2.0-ffmpeg-0.11.diff
+  ./configure  --prefix=/usr  --with-sdl --with-openexr --with-librsvg \
+--with-libavformat --with-jasper --disable-docs
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
===
--- extra-i686/gegl-0.2.0-ffmpeg-0.11.diff  2012-10-13 05:41:29 UTC (rev 
168517)
+++ extra-i686/gegl-0.2.0-ffmpeg-0.11.diff  2012-10-13 05:42:21 UTC (rev 
168518)
@@ -1,12 +0,0 @@
-diff -Naur gegl-0.2.0/operations/external/ff-load.c 
gegl-0.2.0-1/operations/external/ff-load.c
 gegl-0.2.0/operations/external/ff-load.c   2012-04-01 13:17:57.0 
+0200
-+++ gegl-0.2.0-1/operations/external/ff-load.c 2012-07-11 12:42:05.174756560 
+0200
-@@ -271,7 +271,7 @@
-   gint err;
- 
-   ff_cleanup (o);
--  err = av_open_input_file (p-ic, o-path, NULL, 0, NULL);
-+err = avformat_open_input (p-ic, o-path, NULL, NULL);
-   if (err  0)
- {
-   print_error (o-path, err);

Copied: gegl/repos/extra-i686/gegl-0.2.0-ffmpeg-0.11.diff (from rev 168517, 
gegl/trunk/gegl-0.2.0-ffmpeg-0.11.diff)
===

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

2012-10-12 Thread Eric Bélanger
Date: Saturday, October 13, 2012 @ 01:48:18
  Author: eric
Revision: 168519

upgpkg: imagemagick 6.7.9.8-2

Rebuild against openexr 1.7.1

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-13 05:42:21 UTC (rev 168518)
+++ PKGBUILD2012-10-13 05:48:18 UTC (rev 168519)
@@ -4,7 +4,7 @@
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
 pkgver=6.7.9.8
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.imagemagick.org/;
 license=('custom')



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

2012-10-12 Thread Eric Bélanger
Date: Saturday, October 13, 2012 @ 01:48:33
  Author: eric
Revision: 168520

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 168519, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 168519, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 168519, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 168519, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 extra-i686/PKGBUILD |  164 +-
 extra-i686/perlmagick.rpath.patch   |   20 ++--
 extra-x86_64/PKGBUILD   |  164 +-
 extra-x86_64/perlmagick.rpath.patch |   20 ++--
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 05:48:18 UTC (rev 168519)
+++ extra-i686/PKGBUILD 2012-10-13 05:48:33 UTC (rev 168520)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.7.9.8
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr')
-source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
-perlmagick.rpath.patch)
-sha1sums=('dc61335f931ea637e7bd2e711b520d221bfe464c'
-  '23405f80904b1de94ebd7bd6fe2a332471b8c283')
-
-build() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i ../perlmagick.rpath.patch
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules --disable-static \
---disable-openmp --with-wmf --with-openexr --with-xml --with-lcms2 
--with-jp2 \
---with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options=INSTALLDIRS=vendor --with-lqr 
--with-rsvg \
---without-gvc --without-djvu --without-autotrace --without-webp \
---without-jbig --without-fpx --without-dps --without-fftw
-  make
-}
-
-check() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc=An image viewing/manipulation program
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr')
-  optdepends=('ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'jasper: for JPEG-2000 support' 
-  'libpng: for PNG support')
-  backup=('etc/ImageMagick/coder.xml'
-  'etc/ImageMagick/colors.xml'
-  'etc/ImageMagick/delegates.xml'
-  'etc/ImageMagick/log.xml'
-  'etc/ImageMagick/magic.xml'
-  'etc/ImageMagick/mime.xml'
-  'etc/ImageMagick/policy.xml'
-  'etc/ImageMagick/quantization-table.xml'
-  'etc/ImageMagick/thresholds.xml'
-  'etc/ImageMagick/type.xml'
-  'etc/ImageMagick/type-dejavu.xml'
-  'etc/ImageMagick/type-ghostscript.xml'
-  'etc/ImageMagick/type-windows.xml')
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install
-  chmod 755 ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Image/Magick/Magick.so 
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick/NOTICE
-
-#Cleaning
-  find ${pkgdir} -name '*.bs' -delete
-  rm -f ${pkgdir}/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc=The ImageMagick documentation (utilities manuals and libraries API)
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install-data-html
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE
-}

Copied: imagemagick/repos/extra-i686/PKGBUILD (from rev 168519, 
imagemagick/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 05:48:33 UTC (rev 168520)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgbase=imagemagick
+pkgname=('imagemagick' 'imagemagick-doc')
+pkgver=6.7.9.8
+pkgrel=2
+arch=('i686'