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

2013-07-18 Thread Tobias Powalowski
Date: Thursday, July 18, 2013 @ 09:06:20
  Author: tpowa
Revision: 190825

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

Added:
  refind-efi/repos/extra-i686/PKGBUILD
(from rev 190824, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-i686/refind-efi.install
(from rev 190824, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-i686/refind_linux.conf
(from rev 190824, refind-efi/trunk/refind_linux.conf)
  refind-efi/repos/extra-x86_64/PKGBUILD
(from rev 190824, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-x86_64/refind-efi.install
(from rev 190824, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-x86_64/refind_linux.conf
(from rev 190824, refind-efi/trunk/refind_linux.conf)
Deleted:
  refind-efi/repos/extra-i686/PKGBUILD
  refind-efi/repos/extra-i686/refind-efi.install
  refind-efi/repos/extra-i686/refind_linux.conf
  refind-efi/repos/extra-x86_64/PKGBUILD
  refind-efi/repos/extra-x86_64/refind-efi.install
  refind-efi/repos/extra-x86_64/refind_linux.conf

-+
 /PKGBUILD   |  500 ++
 /refind-efi.install |   64 
 /refind_linux.conf  |   10 
 extra-i686/PKGBUILD |  237 --
 extra-i686/refind-efi.install   |   31 --
 extra-i686/refind_linux.conf|5 
 extra-x86_64/PKGBUILD   |  237 --
 extra-x86_64/refind-efi.install |   31 --
 extra-x86_64/refind_linux.conf  |5 
 9 files changed, 574 insertions(+), 546 deletions(-)

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


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

2013-07-18 Thread Tobias Powalowski
Date: Thursday, July 18, 2013 @ 09:06:05
  Author: tpowa
Revision: 190824

upgpkg: refind-efi 0.7.1-3

#36151 fix upstream scripts with symlinks

Modified:
  refind-efi/trunk/PKGBUILD
  refind-efi/trunk/refind-efi.install

+
 PKGBUILD   |   43 ---
 refind-efi.install |7 ---
 2 files changed, 32 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-17 23:37:25 UTC (rev 190823)
+++ PKGBUILD2013-07-18 07:06:05 UTC (rev 190824)
@@ -17,7 +17,7 @@
 
 pkgname=refind-efi
 pkgver=0.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Rod Smith's fork of rEFIt UEFI Boot Manager - built with Tianocore 
UDK libs
 url=http://www.rodsbooks.com/refind/index.html;
 arch=('x86_64' 'i686')
@@ -63,10 +63,10 @@
 
 _prepare_tianocore_sources() {

-   _setup_env_vars
-   
msg Delete old UDK BUILD dir
rm -rf ${_UDK_DIR}/ || true
+   
+   msg Create UDK BUILD dir
mkdir -p ${_UDK_DIR}/

for _DIR_ in BaseTools MdePkg MdeModulePkg IntelFrameworkPkg 
IntelFrameworkModulePkg ; do
@@ -104,10 +104,10 @@
sed s|TOOL_CHAIN_TAG= MYTOOLS|TOOL_CHAIN_TAG= 
${_COMPILER}|g -i ${EDK_TOOLS_PATH}/Conf/target.template || true

msg Fix UDK Target ARCH for rEFInd
-   sed s|X64|${_TIANO_ARCH}|g -i ${_UDK_DIR}/Conf/target.txt || true
-   sed s|IA32|${_TIANO_ARCH}|g -i ${_UDK_DIR}/Conf/target.txt || true
+   sed s|X64|${_TIANO_ARCH}|g -i 
${EDK_TOOLS_PATH}/Conf/target.template || true
+   sed s|IA32|${_TIANO_ARCH}|g -i 
${EDK_TOOLS_PATH}/Conf/target.template || true

-   chmod +x ${_UDK_DIR}/BaseTools/BuildEnv
+   chmod 0755 ${_UDK_DIR}/BaseTools/BuildEnv

 }
 
@@ -124,6 +124,8 @@
 
 prepare() {

+   _setup_env_vars
+   
msg Prepare Tianocore Sources
_prepare_tianocore_sources

@@ -192,18 +194,15 @@

msg Install rEFInd helper scripts
install -d ${pkgdir}/usr/bin/
-   install -D -m0644 ${srcdir}/refind-${pkgver}/install.sh 
${pkgdir}/usr/bin/refind-install
-   install -D -m0644 ${srcdir}/refind-${pkgver}/mkrlconf.sh 
${pkgdir}/usr/bin/refind-mkrlconf
-   install -D -m0644 ${srcdir}/refind-${pkgver}/mvrefind.sh 
${pkgdir}/usr/bin/refind-mvrefind
+   install -D -m0755 ${srcdir}/refind-${pkgver}/install.sh 
${pkgdir}/usr/bin/refind-install
+   install -D -m0755 ${srcdir}/refind-${pkgver}/mkrlconf.sh 
${pkgdir}/usr/bin/refind-mkrlconf
+   install -D -m0755 ${srcdir}/refind-${pkgver}/mvrefind.sh 
${pkgdir}/usr/bin/refind-mvrefind
install -D -m0755 ${srcdir}/refind-${pkgver}/fonts/mkfont.sh 
${pkgdir}/usr/bin/refind-mkfont

-   sed 's|#!/bin/bash|#!/usr/bin/env bash|g' -i 
${pkgdir}/usr/bin/refind-* || true
+   msg Install the rEFInd sample config files
+   install -D -m0644 ${srcdir}/refind-${pkgver}/refind.conf-sample 
${pkgdir}/usr/lib/refind/refind.conf-sample
+   install -D -m0644 ${srcdir}/refind_linux.conf 
${pkgdir}/usr/lib/refind/refind_linux.conf-sample

-   msg 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
-   
msg Install the rEFInd docs
install -d ${pkgdir}/usr/share/doc/refind/html/
install -d ${pkgdir}/usr/share/doc/refind/Styles/
@@ -234,4 +233,18 @@
install -d ${pkgdir}/usr/share/licenses/refind/
install -D -m0644 ${srcdir}/refind-${pkgver}/LICENSE.txt 
${pkgdir}/usr/share/licenses/refind/LICENSE

+   msg Use '#!/usr/bin/env bash' in all scripts
+   sed 's|#!/bin/bash|#!/usr/bin/env bash|g' -i 
${pkgdir}/usr/bin/refind-* || true
+   
+   msg Point refind dir paths to /usr/lib/refind/ in refind-install 
script
+   sed 's|^ThisDir=.*|ThisDir=/usr/lib/refind/|g' -i 
${pkgdir}/usr/bin/refind-install
+   sed 's|^RefindDir=.*|RefindDir=/usr/lib/refind/|g' -i 
${pkgdir}/usr/bin/refind-install
+   sed 's|^ThisScript=.*|ThisScript=/usr/bin/refind-install|g' -i 
${pkgdir}/usr/bin/refind-install
+   
+   msg Setup SYMLINKS to refind dirs for the sake of refind-install 
script
+   ln -s /usr/share/refind/fonts ${pkgdir}/usr/lib/refind/fonts
+   ln -s /usr/share/refind/icons ${pkgdir}/usr/lib/refind/icons
+   ln -s /usr/share/refind/keys ${pkgdir}/usr/lib/refind/keys
+   ln -s /usr/share/doc/refind ${pkgdir}/usr/lib/refind/docs
+   
 }

Modified: refind-efi.install
===
--- refind-efi.install  2013-07-17 23:37:25 UTC (rev 190823)
+++ refind-efi.install  2013-07-18 07:06:05 UTC (rev 190824)
@@ -2,15 +2,16 @@
   

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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 09:22:34
  Author: bisson
Revision: 190826

remove obsolete comment

Modified:
  ntp/trunk/PKGBUILD
  ntp/trunk/ntp.conf

--+
 PKGBUILD |4 ++--
 ntp.conf |3 ---
 2 files changed, 2 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 07:06:20 UTC (rev 190825)
+++ PKGBUILD2013-07-18 07:22:34 UTC (rev 190826)
@@ -5,7 +5,7 @@
 pkgname=ntp
 pkgver=4.2.6.p5
 _realver=4.2.6p5
-pkgrel=14
+pkgrel=15
 pkgdesc='Network Time Protocol reference implementation'
 url='http://www.ntp.org/'
 license=('custom')
@@ -18,7 +18,7 @@
 'ntpd.service'
 'ntpdate.service')
 sha1sums=('4a5353a4791b6f4315a66c28d504ec6c7926b192'
-  'f6a2292c26a201d9305669e99463fb54e5603b3f'
+  'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
   'ffbabfaab90f1ba4dc769c84fbbfe89c5c01ee95'
   '0cb9dbd285e2e8ac51ff47dee08af69e12a09855'
 )

Modified: ntp.conf
===
--- ntp.conf2013-07-18 07:06:20 UTC (rev 190825)
+++ ntp.conf2013-07-18 07:22:34 UTC (rev 190826)
@@ -17,6 +17,3 @@
 
 # Location of drift file
 driftfile /var/lib/ntp/ntp.drift
-
-# NOTE: If you run dhcpcd and have lines like 'restrict' and 'fudge' appearing
-# here, be sure to add '-Y -N' to the dhcpcd_ethX variables in /etc/conf.d/net



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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 09:23:31
  Author: bisson
Revision: 190827

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

Added:
  ntp/repos/extra-i686/PKGBUILD
(from rev 190826, ntp/trunk/PKGBUILD)
  ntp/repos/extra-i686/install
(from rev 190826, ntp/trunk/install)
  ntp/repos/extra-i686/ntp.conf
(from rev 190826, ntp/trunk/ntp.conf)
  ntp/repos/extra-i686/ntpd.service
(from rev 190826, ntp/trunk/ntpd.service)
  ntp/repos/extra-i686/ntpdate
(from rev 190826, ntp/trunk/ntpdate)
  ntp/repos/extra-i686/ntpdate.service
(from rev 190826, ntp/trunk/ntpdate.service)
  ntp/repos/extra-x86_64/PKGBUILD
(from rev 190826, ntp/trunk/PKGBUILD)
  ntp/repos/extra-x86_64/install
(from rev 190826, ntp/trunk/install)
  ntp/repos/extra-x86_64/ntp.conf
(from rev 190826, ntp/trunk/ntp.conf)
  ntp/repos/extra-x86_64/ntpd.service
(from rev 190826, ntp/trunk/ntpd.service)
  ntp/repos/extra-x86_64/ntpdate
(from rev 190826, ntp/trunk/ntpdate)
  ntp/repos/extra-x86_64/ntpdate.service
(from rev 190826, ntp/trunk/ntpdate.service)
Deleted:
  ntp/repos/extra-i686/PKGBUILD
  ntp/repos/extra-i686/install
  ntp/repos/extra-i686/ntp.conf
  ntp/repos/extra-i686/ntpd
  ntp/repos/extra-i686/ntpd.conf
  ntp/repos/extra-i686/ntpd.service
  ntp/repos/extra-i686/ntpdate
  ntp/repos/extra-i686/ntpdate.service
  ntp/repos/extra-x86_64/PKGBUILD
  ntp/repos/extra-x86_64/install
  ntp/repos/extra-x86_64/ntp.conf
  ntp/repos/extra-x86_64/ntpd
  ntp/repos/extra-x86_64/ntpd.conf
  ntp/repos/extra-x86_64/ntpd.service
  ntp/repos/extra-x86_64/ntpdate
  ntp/repos/extra-x86_64/ntpdate.service

--+
 /PKGBUILD|  120 +
 /install |   74 +
 /ntp.conf|   38 
 /ntpd.service|   26 
 /ntpdate |   58 +++
 /ntpdate.service |   24 
 extra-i686/PKGBUILD  |   69 ---
 extra-i686/install   |   37 
 extra-i686/ntp.conf  |   22 ---
 extra-i686/ntpd  |   47 
 extra-i686/ntpd.conf |5 -
 extra-i686/ntpd.service  |   13 
 extra-i686/ntpdate   |   29 -
 extra-i686/ntpdate.service   |   12 
 extra-x86_64/PKGBUILD|   69 ---
 extra-x86_64/install |   37 
 extra-x86_64/ntp.conf|   22 ---
 extra-x86_64/ntpd|   47 
 extra-x86_64/ntpd.conf   |5 -
 extra-x86_64/ntpd.service|   13 
 extra-x86_64/ntpdate |   29 -
 extra-x86_64/ntpdate.service |   12 
 22 files changed, 340 insertions(+), 468 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 07:22:34 UTC (rev 190826)
+++ extra-i686/PKGBUILD 2013-07-18 07:23:31 UTC (rev 190827)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-
-pkgname=ntp
-pkgver=4.2.6.p5
-_realver=4.2.6p5
-pkgrel=14
-pkgdesc='Network Time Protocol reference implementation'
-url='http://www.ntp.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-makedepends=('perl-html-parser')
-depends=('openssl' 'libcap' 'libedit')
-backup=('etc/ntp.conf' 'etc/conf.d/ntpd.conf')
-source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${_realver}.tar.gz;
-'ntpd'
-'ntpdate'
-'ntp.conf'
-'ntpd.conf'
-'ntpd.service'
-'ntpdate.service')
-sha1sums=('4a5353a4791b6f4315a66c28d504ec6c7926b192'
-  '4e324e625c1f080b5c028be5092aa71adbf9bd99'
-  '01394b8a952f5edc85d19df8335eeac3980320f4'
-  'f6a2292c26a201d9305669e99463fb54e5603b3f'
-  '4537d1f58b299d463db5048129cb264511474b0b'
-  'ffbabfaab90f1ba4dc769c84fbbfe89c5c01ee95'
-  '0cb9dbd285e2e8ac51ff47dee08af69e12a09855'
-)
-
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${_realver}
-
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --enable-linuxcaps \
-   --enable-ntp-signd \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${_realver}
-
-   make DESTDIR=${pkgdir} install
-
-   rmdir ${pkgdir}/usr/{lib,sbin}
-   install -d -o 87 ${pkgdir}/var/lib/ntp
-   install -Dm755 ../ntpd ${pkgdir}/etc/rc.d/ntpd
-   install -Dm755 ../ntpdate ${pkgdir}/etc/rc.d/ntpdate
-   install -Dm644 ../ntp.conf ${pkgdir}/etc/ntp.conf
-   install -Dm644 ../ntpd.conf ${pkgdir}/etc/conf.d/ntpd.conf
-   install -Dm644 ../ntpd.service 
${pkgdir}/usr/lib/systemd/system/ntpd.service
-   install -Dm644 ../ntpdate.service 
${pkgdir}/usr/lib/systemd/system/ntpdate.service
-   install -Dm644 COPYRIGHT 

[arch-commits] Commit in (libtxc_dxtn)

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 11:00:13
  Author: lcarlier
Revision: 94256

moved to extra

Deleted:
  libtxc_dxtn/



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

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 11:33:44
  Author: lcarlier
Revision: 94257

upgpkg: lib32-mesa 9.1.5-1

upstream update 9.1.5, add dependency on lib32-libtxc_dxtn

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 09:00:13 UTC (rev 94256)
+++ PKGBUILD2013-07-18 09:33:44 UTC (rev 94257)
@@ -4,7 +4,7 @@
 
 pkgbase=lib32-mesa
 pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
-pkgver=9.1.4
+pkgver=9.1.5
 pkgrel=1
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'lib32-libxxf86vm' 'lib32-libxdamage'
@@ -13,7 +13,7 @@
 license=('custom')
 options=('!libtool')
 source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
-md5sums=('a2c4e25d0e27918bc67f61bae04d0cb8')
+md5sums=('4ed2af5943141a85a21869053a2fc2eb')
 
 build() {
   export CC=gcc -m32
@@ -55,7 +55,7 @@
 
 package_lib32-ati-dri() {
   pkgdesc=Mesa drivers for AMD/ATI Radeon (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'ati-dri')
+  depends=(lib32-mesa-libgl=${pkgver} 'lib32-libtxc_dxtn' 'ati-dri')
   conflicts=('xf86-video-ati6.9.0-6')
 
   install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
@@ -70,7 +70,7 @@
 
 package_lib32-intel-dri() {
   pkgdesc=Mesa DRI drivers for Intel (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'intel-dri')
+  depends=(lib32-mesa-libgl=${pkgver} 'lib32-libtxc_dxtn' 'intel-dri')
 
   install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
   mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
@@ -81,7 +81,7 @@
 
 package_lib32-nouveau-dri() {
   pkgdesc=Mesa drivers for Nouveau (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'nouveau-dri')
+  depends=(lib32-mesa-libgl=${pkgver} 'lib32-libtxc_dxtn' 'nouveau-dri')
 
   install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
   mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/



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

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 11:33:52
  Author: lcarlier
Revision: 94258

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  256 ++---
 1 file changed, 128 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 09:33:44 UTC (rev 94257)
+++ PKGBUILD2013-07-18 09:33:52 UTC (rev 94258)
@@ -1,128 +0,0 @@
-# $Id$
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-
-pkgbase=lib32-mesa
-pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
-pkgver=9.1.4
-pkgrel=1
-arch=('x86_64')
-makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'lib32-libxxf86vm' 'lib32-libxdamage'
- 'gcc-multilib' 'lib32-llvm-amdgpu-snapshot' 'lib32-systemd')
-url=http://mesa3d.sourceforge.net;
-license=('custom')
-options=('!libtool')
-source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
-md5sums=('a2c4e25d0e27918bc67f61bae04d0cb8')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-  export LLVM_CONFIG=/usr/bin/llvm-config32
-
-  cd ${srcdir}/?esa-*
-
-  # our automake is far too new for their build system :)
-  autoreconf -vfi
-
-  ./configure --enable-32-bit \
---libdir=/usr/lib32 \
---prefix=/usr \
---sysconfdir=/etc \
---with-dri-driverdir=/usr/lib32/xorg/modules/dri \
---with-gallium-drivers=r300,r600,radeonsi,nouveau,swrast \
---with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
---with-llvm-shared-libs \
---enable-gallium-llvm \
---enable-egl \
---enable-gallium-egl \
---with-egl-platforms=x11,drm \
---enable-shared-glapi \
---enable-gbm \
---enable-glx-tls \
---enable-dri \
---enable-glx \
---enable-osmesa \
---enable-gles1 \
---enable-gles2 \
---enable-texture-float
-  make
-
-  mkdir $srcdir/fakeinstall
-  make DESTDIR=${srcdir}/fakeinstall install
-}
-
-package_lib32-ati-dri() {
-  pkgdesc=Mesa drivers for AMD/ATI Radeon (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'ati-dri')
-  conflicts=('xf86-video-ati6.9.0-6')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so
 ${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_{r300,r600,radeonsi}* 
${pkgdir}/usr/lib32/gallium-pipe/
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/ati-dri
-  ln -s ati-dri $pkgdir/usr/share/licenses/ati-dri/lib32-ati-dri
-}
-
-package_lib32-intel-dri() {
-  pkgdesc=Mesa DRI drivers for Intel (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'intel-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/intel-dri
-  ln -s intel-dri $pkgdir/usr/share/licenses/intel-dri/lib32-intel-dri
-}
-
-package_lib32-nouveau-dri() {
-  pkgdesc=Mesa drivers for Nouveau (32-bit)
-  depends=(lib32-mesa-libgl=${pkgver} 'nouveau-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v ${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_nouveau* 
${pkgdir}/usr/lib32/gallium-pipe/
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/nouveau-dri
-  ln -s nouveau-dri $pkgdir/usr/share/licenses/nouveau-dri/lib32-nouveau-dri
-}
-
-package_lib32-mesa() {
-  pkgdesc=an open-source implementation of the OpenGL specification (32-bit)
-  depends=('lib32-libdrm' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-systemd' 'lib32-llvm-amdgpu-lib-snapshot' 'mesa')
-  optdepends=('opengl-man-pages: for the OpenGL API man pages')
-  provides=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-  conflicts=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-  replaces=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-
-  mv -v ${srcdir}/fakeinstall/* ${pkgdir}
-  mv ${pkgdir}/usr/lib32/libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1.2.0
-  rm ${pkgdir}/usr/lib32/libGL.so{,.1}
-  rm -r ${pkgdir}/etc
-  rm -r ${pkgdir}/usr/include
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/mesa
-  ln -s mesa $pkgdir/usr/share/licenses/mesa/lib32-mesa
-}
-
-package_lib32-mesa-libgl() {
-  

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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 11:55:31
  Author: bisson
Revision: 190830

remove deprecated backup array

Modified:
  x11vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 09:55:22 UTC (rev 190829)
+++ PKGBUILD2013-07-18 09:55:31 UTC (rev 190830)
@@ -4,14 +4,13 @@
 
 pkgname=x11vnc
 pkgver=0.9.13
-pkgrel=3
+pkgrel=4
 pkgdesc='VNC server for real X displays'
 url='http://www.karlrunge.com/x11vnc/'
 arch=('i686' 'x86_64')
 license=('GPL2')
+optdepends=('tk: for GUI support')
 depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
-optdepends=('tk: for GUI support')
-backup=('etc/conf.d/x11vnc')
 
source=(http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
 'service')
 sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'



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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 11:55:01
  Author: bisson
Revision: 190828

make dbus a hard dependency: already pulled by [base] and libavahi-client.so 
anyway

Modified:
  avahi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 07:23:31 UTC (rev 190827)
+++ PKGBUILD2013-07-18 09:55:01 UTC (rev 190828)
@@ -4,15 +4,14 @@
 
 pkgname=avahi
 pkgver=0.6.31
-pkgrel=9
+pkgrel=10
 pkgdesc='Multicast/unicast DNS-SD framework'
 url='http://www.avahi.org/'
 license=('LGPL')
 arch=('i686' 'x86_64')
 options=('!libtool' '!emptydirs')
-depends=('expat' 'libdaemon' 'glib2' 'libcap' 'gdbm')
-optdepends=('dbus: communicating with client applications'
-'gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+depends=('expat' 'libdaemon' 'glib2' 'libcap' 'gdbm' 'dbus')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
 'gtk2: gtk2 bindings'
 'qt3: qt3 bindings'
 'qt4: qt4 bindings'
@@ -39,6 +38,7 @@
 
 prepare() {
cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/^Libs:/s:$: -ldbus-1:' -i avahi-client.pc.in
sed 's:netdev:network:g' -i avahi-daemon/avahi-dbus.conf
sed 's:/sbin/resolvconf:/usr/sbin/resolvconf:g' -i */*.action
 }



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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 11:55:22
  Author: bisson
Revision: 190829

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

Added:
  avahi/repos/testing-i686/
  avahi/repos/testing-i686/PKGBUILD
(from rev 190828, avahi/trunk/PKGBUILD)
  avahi/repos/testing-i686/install
(from rev 190828, avahi/trunk/install)
  avahi/repos/testing-x86_64/
  avahi/repos/testing-x86_64/PKGBUILD
(from rev 190828, avahi/trunk/PKGBUILD)
  avahi/repos/testing-x86_64/install
(from rev 190828, avahi/trunk/install)

-+
 testing-i686/PKGBUILD   |   78 ++
 testing-i686/install|   22 
 testing-x86_64/PKGBUILD |   78 ++
 testing-x86_64/install  |   22 
 4 files changed, 200 insertions(+)

Copied: avahi/repos/testing-i686/PKGBUILD (from rev 190828, 
avahi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-18 09:55:22 UTC (rev 190829)
@@ -0,0 +1,78 @@
+# $Id$
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.31
+pkgrel=10
+pkgdesc='Multicast/unicast DNS-SD framework'
+url='http://www.avahi.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+options=('!libtool' '!emptydirs')
+depends=('expat' 'libdaemon' 'glib2' 'libcap' 'gdbm' 'dbus')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt3: qt3 bindings'
+'qt4: qt4 bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'twisted: avahi-bookmarks'
+'mono: mono bindings'
+'python2-dbus: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+makedepends=('qt3' 'qt4' 'pygtk' 'mono' 'intltool' 'python2-dbus'
+ 'gtk-sharp-2' 'gobject-introspection' 'gtk3' 'xmltoman')
+backup=('etc/avahi/hosts'
+'etc/avahi/avahi-daemon.conf'
+'etc/avahi/services/ssh.service'
+'etc/avahi/services/sftp-ssh.service'
+'usr/lib/avahi/service-types.db'
+'usr/share/avahi/service-types')
+source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;)
+sha1sums=('7e05bd78572c9088b03b1207a0ad5aba38490684')
+
+conflicts=('howl' 'mdnsresponder')
+provides=('howl' 'mdnsresponder')
+
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed '/^Libs:/s:$: -ldbus-1:' -i avahi-client.pc.in
+   sed 's:netdev:network:g' -i avahi-daemon/avahi-dbus.conf
+   sed 's:/sbin/resolvconf:/usr/sbin/resolvconf:g' -i */*.action
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   export MOC_QT3=/usr/bin/moc-qt3
+   export MOC_QT4=/usr/bin/moc-qt4
+   export PYTHON=/usr/bin/python2
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --disable-static \
+   --disable-monodoc \
+   --enable-compat-libdns_sd \
+   --enable-compat-howl \
+   --with-distro=archlinux \
+   --with-avahi-priv-access-group=network \
+   --with-autoipd-user=avahi \
+   --with-autoipd-group=avahi \
+   --with-systemdsystemunitdir=/usr/lib/systemd/system \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   rm -fr ${pkgdir}/etc/rc.d
+
+   # howl and mdnsresponder compatability
+   cd ${pkgdir}/usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h 
dns_sd.h; ln -s avahi-compat-howl howl
+   cd ${pkgdir}/usr/lib/pkgconfig; ln -s avahi-compat-howl.pc howl.pc
+}

Copied: avahi/repos/testing-i686/install (from rev 190828, avahi/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2013-07-18 09:55:22 UTC (rev 190829)
@@ -0,0 +1,22 @@
+post_install() {
+   getent group avahi /dev/null || groupadd -r -g 84 avahi /dev/null
+   getent passwd avahi /dev/null || useradd -r -u 84 -g avahi -d / -s 
/bin/false -c avahi avahi /dev/null
+
+   cat EOF
+== The following daemons may be added to DAEMONS in /etc/rc.conf:
+== avahi-daemon: the mdns responder, you probably want this.
+==   dbus needs to be running when you start it.
+== avahi-dnsconfd: daemon used for peer-to-peer automatic dns
+== configuration on dhcp-less networks.
+
+== To use some of the client applications you will have to install python.
+== In addition, pygtk is required for the graphical ones and
+== twisted for avahi-bookmarks.
+EOF
+}
+
+post_remove() {
+   getent passwd avahi /dev/null  userdel avahi /dev/null
+   getent 

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

2013-07-18 Thread Gaetan Bisson
Date: Thursday, July 18, 2013 @ 11:55:53
  Author: bisson
Revision: 190831

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

Added:
  x11vnc/repos/testing-i686/
  x11vnc/repos/testing-i686/PKGBUILD
(from rev 190830, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/testing-i686/service
(from rev 190830, x11vnc/trunk/service)
  x11vnc/repos/testing-x86_64/
  x11vnc/repos/testing-x86_64/PKGBUILD
(from rev 190830, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/testing-x86_64/service
(from rev 190830, x11vnc/trunk/service)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-i686/service|7 +++
 testing-x86_64/PKGBUILD |   30 ++
 testing-x86_64/service  |7 +++
 4 files changed, 74 insertions(+)

Copied: x11vnc/repos/testing-i686/PKGBUILD (from rev 190830, 
x11vnc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-18 09:55:53 UTC (rev 190831)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=4
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=(http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -Dm644 ../service 
${pkgdir}/usr/lib/systemd/system/x11vnc.service
+   rm -fr ${pkgdir}/usr/include/rfb # provided by libvncserver
+}

Copied: x11vnc/repos/testing-i686/service (from rev 190830, 
x11vnc/trunk/service)
===
--- testing-i686/service(rev 0)
+++ testing-i686/service2013-07-18 09:55:53 UTC (rev 190831)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/testing-x86_64/PKGBUILD (from rev 190830, 
x11vnc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-07-18 09:55:53 UTC (rev 190831)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=4
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=(http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -Dm644 ../service 
${pkgdir}/usr/lib/systemd/system/x11vnc.service
+   rm -fr ${pkgdir}/usr/include/rfb # provided by libvncserver
+}

Copied: x11vnc/repos/testing-x86_64/service (from rev 190830, 
x11vnc/trunk/service)
===
--- testing-x86_64/service  (rev 0)
+++ testing-x86_64/service  2013-07-18 09:55:53 UTC (rev 190831)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc



[arch-commits] Commit in icedtea-web-java7/repos (community-i686 community-x86_64)

2013-07-18 Thread Allan McRae
Date: Thursday, July 18, 2013 @ 13:10:50
  Author: allan
Revision: 190832

FIX THIS WHEN IT HAPPENS

Deleted:
  icedtea-web-java7/repos/community-i686/
  icedtea-web-java7/repos/community-x86_64/



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 13:12:21
  Author: arodseth
Revision: 94260

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

Added:
  algol68g/repos/community-i686/PKGBUILD
(from rev 94259, algol68g/trunk/PKGBUILD)
  algol68g/repos/community-i686/plotutils.patch
(from rev 94259, algol68g/trunk/plotutils.patch)
  algol68g/repos/community-x86_64/PKGBUILD
(from rev 94259, algol68g/trunk/PKGBUILD)
  algol68g/repos/community-x86_64/plotutils.patch
(from rev 94259, algol68g/trunk/plotutils.patch)

--+
 community-i686/PKGBUILD  |   41 +
 community-i686/plotutils.patch   |   20 ++
 community-x86_64/PKGBUILD|   41 +
 community-x86_64/plotutils.patch |   20 ++
 4 files changed, 122 insertions(+)

Copied: algol68g/repos/community-i686/PKGBUILD (from rev 94259, 
algol68g/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 11:12:21 UTC (rev 94260)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: karolina.lindqv...@kramnet.se
+
+pkgname=algol68g
+pkgver=2.7
+pkgrel=1
+pkgdesc='Algol 68 Genie, an Algol 68 compiler-interpreter'
+arch=('x86_64' 'i686')
+url='http://www.xs4all.nl/~jmvdveer/algol.html'
+license=('GPL')
+depends=('gsl' 'plotutils')
+optdepends=('postgresql-libs: for postgresql support')
+source=(http://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+   'plotutils.patch'
+   'http://www.xs4all.nl/~jmvdveer/a68gdoc.pdf')
+sha256sums=('ebcf029ae65ceafca87090cc470dd37f86ac0bdb1529cd4dd7a92454d224d325'
+'50afcc7812d117e5f0a2f5240c9cd58f8bfcc04b3da0634b9aa0ab06183ed0aa'
+'8cbfb480cb5dfb20f79c2391d7111fc8b727c3e9e02008ab4c0cde9acb62e7d3')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i ../plotutils.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir docdir=/usr/share/doc/$pkgname install
+  install $srcdir/a68gdoc.pdf $pkgdir/usr/share/doc/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:

Copied: algol68g/repos/community-i686/plotutils.patch (from rev 94259, 
algol68g/trunk/plotutils.patch)
===
--- community-i686/plotutils.patch  (rev 0)
+++ community-i686/plotutils.patch  2013-07-18 11:12:21 UTC (rev 94260)
@@ -0,0 +1,20 @@
+--- ./source/plotutils.c.orig  2012-04-05 00:44:52.0 +0200
 ./source/plotutils.c   2012-04-28 05:27:04.0 +0200
+@@ -1018,7 +1018,7 @@
+ X_COORD (DEVICE (f)) = 0;
+ Y_COORD (DEVICE (f)) = 0;
+ return (PLOTTER (DEVICE (f)));
+-  } else if (!strcmp (device_type, gif)) {
++  } else if (!strcmp (device_type, gif) || !strcmp (device_type, png)) {
+ /*+
+ | Supported plotter type - pseudo GIF |
+ +*/
+@@ -1059,7 +1059,7 @@
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), BITMAPSIZE, size);
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), BG_COLOR, (void *) 
black);
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), GIF_ANIMATION, 
(void *) no);
+-PLOTTER (DEVICE (f)) = pl_newpl_r (gif, NULL, STREAM (DEVICE (f)), 
stderr, PLOTTER_PARAMS (DEVICE (f)));
++PLOTTER (DEVICE (f)) = pl_newpl_r (device_type, NULL, STREAM (DEVICE 
(f)), stderr, PLOTTER_PARAMS (DEVICE (f)));
+ if (PLOTTER (DEVICE (f)) == NULL) {
+   diagnostic_node (A68_RUNTIME_ERROR, p, ERROR_DEVICE_CANNOT_OPEN);
+   exit_genie (p, A68_RUNTIME_ERROR);

Copied: algol68g/repos/community-x86_64/PKGBUILD (from rev 94259, 
algol68g/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-18 11:12:21 UTC (rev 94260)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: karolina.lindqv...@kramnet.se
+
+pkgname=algol68g
+pkgver=2.7
+pkgrel=1
+pkgdesc='Algol 68 Genie, an Algol 68 compiler-interpreter'
+arch=('x86_64' 'i686')
+url='http://www.xs4all.nl/~jmvdveer/algol.html'
+license=('GPL')
+depends=('gsl' 'plotutils')
+optdepends=('postgresql-libs: for postgresql support')
+source=(http://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+   'plotutils.patch'
+   'http://www.xs4all.nl/~jmvdveer/a68gdoc.pdf')
+sha256sums=('ebcf029ae65ceafca87090cc470dd37f86ac0bdb1529cd4dd7a92454d224d325'
+'50afcc7812d117e5f0a2f5240c9cd58f8bfcc04b3da0634b9aa0ab06183ed0aa'
+'8cbfb480cb5dfb20f79c2391d7111fc8b727c3e9e02008ab4c0cde9acb62e7d3')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i ../plotutils.patch

[arch-commits] Commit in (7 files)

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 13:12:04
  Author: arodseth
Revision: 94259

Classic compiler

Added:
  algol68g/
  algol68g/repos/
  algol68g/repos/community-i686/
  algol68g/repos/community-x86_64/
  algol68g/trunk/
  algol68g/trunk/PKGBUILD
  algol68g/trunk/plotutils.patch

-+
 PKGBUILD|   41 +
 plotutils.patch |   20 
 2 files changed, 61 insertions(+)

Added: algol68g/trunk/PKGBUILD
===
--- algol68g/trunk/PKGBUILD (rev 0)
+++ algol68g/trunk/PKGBUILD 2013-07-18 11:12:04 UTC (rev 94259)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: karolina.lindqv...@kramnet.se
+
+pkgname=algol68g
+pkgver=2.7
+pkgrel=1
+pkgdesc='Algol 68 Genie, an Algol 68 compiler-interpreter'
+arch=('x86_64' 'i686')
+url='http://www.xs4all.nl/~jmvdveer/algol.html'
+license=('GPL')
+depends=('gsl' 'plotutils')
+optdepends=('postgresql-libs: for postgresql support')
+source=(http://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+   'plotutils.patch'
+   'http://www.xs4all.nl/~jmvdveer/a68gdoc.pdf')
+sha256sums=('ebcf029ae65ceafca87090cc470dd37f86ac0bdb1529cd4dd7a92454d224d325'
+'50afcc7812d117e5f0a2f5240c9cd58f8bfcc04b3da0634b9aa0ab06183ed0aa'
+'8cbfb480cb5dfb20f79c2391d7111fc8b727c3e9e02008ab4c0cde9acb62e7d3')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i ../plotutils.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir docdir=/usr/share/doc/$pkgname install
+  install $srcdir/a68gdoc.pdf $pkgdir/usr/share/doc/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: algol68g/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: algol68g/trunk/plotutils.patch
===
--- algol68g/trunk/plotutils.patch  (rev 0)
+++ algol68g/trunk/plotutils.patch  2013-07-18 11:12:04 UTC (rev 94259)
@@ -0,0 +1,20 @@
+--- ./source/plotutils.c.orig  2012-04-05 00:44:52.0 +0200
 ./source/plotutils.c   2012-04-28 05:27:04.0 +0200
+@@ -1018,7 +1018,7 @@
+ X_COORD (DEVICE (f)) = 0;
+ Y_COORD (DEVICE (f)) = 0;
+ return (PLOTTER (DEVICE (f)));
+-  } else if (!strcmp (device_type, gif)) {
++  } else if (!strcmp (device_type, gif) || !strcmp (device_type, png)) {
+ /*+
+ | Supported plotter type - pseudo GIF |
+ +*/
+@@ -1059,7 +1059,7 @@
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), BITMAPSIZE, size);
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), BG_COLOR, (void *) 
black);
+ (void) pl_setplparam (PLOTTER_PARAMS (DEVICE (f)), GIF_ANIMATION, 
(void *) no);
+-PLOTTER (DEVICE (f)) = pl_newpl_r (gif, NULL, STREAM (DEVICE (f)), 
stderr, PLOTTER_PARAMS (DEVICE (f)));
++PLOTTER (DEVICE (f)) = pl_newpl_r (device_type, NULL, STREAM (DEVICE 
(f)), stderr, PLOTTER_PARAMS (DEVICE (f)));
+ if (PLOTTER (DEVICE (f)) == NULL) {
+   diagnostic_node (A68_RUNTIME_ERROR, p, ERROR_DEVICE_CANNOT_OPEN);
+   exit_genie (p, A68_RUNTIME_ERROR);



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

2013-07-18 Thread Evangelos Foutras
Date: Thursday, July 18, 2013 @ 13:59:08
  Author: foutrelis
Revision: 94261

upgpkg: mplayer-vaapi 36265-1

New upstream release.

Modified:
  mplayer-vaapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 11:12:21 UTC (rev 94260)
+++ PKGBUILD2013-07-18 11:59:08 UTC (rev 94261)
@@ -4,8 +4,8 @@
 # Contributor: Hugo Doria h...@archlinux.org
 
 pkgname=mplayer-vaapi
-pkgver=35107
-pkgrel=9
+pkgver=36265
+pkgrel=1
 pkgdesc=A movie player, compiled with vaapi support
 arch=('i686' 'x86_64')
 url=http://gitorious.org/vaapi/mplayer;
@@ -20,14 +20,15 @@
 provides=(mplayer=$pkgver)
 conflicts=('mplayer')
 backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
-source=(http://pkgbuild.com/~foutrelis/mplayer-vaapi-$pkgver.tar.xz
+source=(http://pkgbuild.com/~foutrelis/sources/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
 cdio-includes.patch
 tweak-desktop-file.patch
 demux-gif.patch
 subreader-fix-srt-parsing.patch)
 options=('!buildflags' '!emptydirs')
 install=mplayer-vaapi.install
-sha256sums=('a6c645625cc2cd6ca48764db302c926049f831e757857ece351b37b674e05e56'
+sha256sums=('5747c28c30c15d1000fb655a8abaa4b22483746d0e82775b27466948ae0c549a'
+'SKIP'
 '72e6c654f9733953ad2466d0ea1a52f23e753791d8232d90f13293eb1b358720'
 '5a09fb462729a4e573568f9e8c1f57dbe7f69c0b68cfa4f6d70b3e52c450d93b'
 '6774f57c027474388497606edfccbb33509cc78b573cdc322dd0955764c6f9c2'
@@ -35,7 +36,7 @@
 
 
 prepare() {
-  cd $srcdir/mplayer-vaapi-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
   patch -Np0 -i $srcdir/cdio-includes.patch
   patch -d etc -Np0 -i $srcdir/tweak-desktop-file.patch
@@ -48,7 +49,7 @@
 }
 
 build() {
-  cd $srcdir/mplayer-vaapi-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
   ./configure \
 --prefix=/usr \
@@ -78,7 +79,7 @@
 }
 
 package() {
-  cd $srcdir/mplayer-vaapi-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
   make DESTDIR=$pkgdir install-mplayer install-mplayer-man
   install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
$pkgdir/etc/mplayer/



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

2013-07-18 Thread Evangelos Foutras
Date: Thursday, July 18, 2013 @ 13:59:27
  Author: foutrelis
Revision: 94262

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

Added:
  mplayer-vaapi/repos/community-i686/PKGBUILD
(from rev 94261, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-i686/cdio-includes.patch
(from rev 94261, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-i686/demux-gif.patch
(from rev 94261, mplayer-vaapi/trunk/demux-gif.patch)
  mplayer-vaapi/repos/community-i686/mplayer-vaapi.install
(from rev 94261, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-i686/subreader-fix-srt-parsing.patch
(from rev 94261, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-i686/tweak-desktop-file.patch
(from rev 94261, mplayer-vaapi/trunk/tweak-desktop-file.patch)
  mplayer-vaapi/repos/community-x86_64/PKGBUILD
(from rev 94261, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-x86_64/cdio-includes.patch
(from rev 94261, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-x86_64/demux-gif.patch
(from rev 94261, mplayer-vaapi/trunk/demux-gif.patch)
  mplayer-vaapi/repos/community-x86_64/mplayer-vaapi.install
(from rev 94261, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-x86_64/subreader-fix-srt-parsing.patch
(from rev 94261, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-x86_64/tweak-desktop-file.patch
(from rev 94261, mplayer-vaapi/trunk/tweak-desktop-file.patch)
Deleted:
  mplayer-vaapi/repos/community-i686/PKGBUILD
  mplayer-vaapi/repos/community-i686/cdio-includes.patch
  mplayer-vaapi/repos/community-i686/demux-gif.patch
  mplayer-vaapi/repos/community-i686/mplayer-vaapi.install
  mplayer-vaapi/repos/community-i686/subreader-fix-srt-parsing.patch
  mplayer-vaapi/repos/community-i686/tweak-desktop-file.patch
  mplayer-vaapi/repos/community-x86_64/PKGBUILD
  mplayer-vaapi/repos/community-x86_64/cdio-includes.patch
  mplayer-vaapi/repos/community-x86_64/demux-gif.patch
  mplayer-vaapi/repos/community-x86_64/mplayer-vaapi.install
  mplayer-vaapi/repos/community-x86_64/subreader-fix-srt-parsing.patch
  mplayer-vaapi/repos/community-x86_64/tweak-desktop-file.patch

--+
 /PKGBUILD|  186 +
 /cdio-includes.patch |   86 +
 /demux-gif.patch |   38 
 /mplayer-vaapi.install   |   22 ++
 /subreader-fix-srt-parsing.patch |   80 +
 /tweak-desktop-file.patch|   28 +++
 community-i686/PKGBUILD  |   92 --
 community-i686/cdio-includes.patch   |   43 
 community-i686/demux-gif.patch   |   19 --
 community-i686/mplayer-vaapi.install |   11 -
 community-i686/subreader-fix-srt-parsing.patch   |   40 
 community-i686/tweak-desktop-file.patch  |   14 -
 community-x86_64/PKGBUILD|   92 --
 community-x86_64/cdio-includes.patch |   43 
 community-x86_64/demux-gif.patch |   19 --
 community-x86_64/mplayer-vaapi.install   |   11 -
 community-x86_64/subreader-fix-srt-parsing.patch |   40 
 community-x86_64/tweak-desktop-file.patch|   14 -
 18 files changed, 440 insertions(+), 438 deletions(-)

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


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

2013-07-18 Thread Evangelos Foutras
Date: Thursday, July 18, 2013 @ 14:09:29
  Author: foutrelis
Revision: 94263

upgpkg: mplayer-vaapi 36265-2

libx264.so.133 rebuild.

Modified:
  mplayer-vaapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 11:59:27 UTC (rev 94262)
+++ PKGBUILD2013-07-18 12:09:29 UTC (rev 94263)
@@ -5,7 +5,7 @@
 
 pkgname=mplayer-vaapi
 pkgver=36265
-pkgrel=1
+pkgrel=2
 pkgdesc=A movie player, compiled with vaapi support
 arch=('i686' 'x86_64')
 url=http://gitorious.org/vaapi/mplayer;



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

2013-07-18 Thread Evangelos Foutras
Date: Thursday, July 18, 2013 @ 14:09:44
  Author: foutrelis
Revision: 94264

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

Added:
  mplayer-vaapi/repos/community-staging-i686/PKGBUILD
(from rev 94263, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-staging-i686/cdio-includes.patch
(from rev 94263, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-staging-i686/demux-gif.patch
(from rev 94263, mplayer-vaapi/trunk/demux-gif.patch)
  mplayer-vaapi/repos/community-staging-i686/mplayer-vaapi.install
(from rev 94263, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-staging-i686/subreader-fix-srt-parsing.patch
(from rev 94263, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-staging-i686/tweak-desktop-file.patch
(from rev 94263, mplayer-vaapi/trunk/tweak-desktop-file.patch)
  mplayer-vaapi/repos/community-staging-x86_64/PKGBUILD
(from rev 94263, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-staging-x86_64/cdio-includes.patch
(from rev 94263, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-staging-x86_64/demux-gif.patch
(from rev 94263, mplayer-vaapi/trunk/demux-gif.patch)
  mplayer-vaapi/repos/community-staging-x86_64/mplayer-vaapi.install
(from rev 94263, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-staging-x86_64/subreader-fix-srt-parsing.patch
(from rev 94263, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-staging-x86_64/tweak-desktop-file.patch
(from rev 94263, mplayer-vaapi/trunk/tweak-desktop-file.patch)
Deleted:
  mplayer-vaapi/repos/community-staging-i686/PKGBUILD
  mplayer-vaapi/repos/community-staging-i686/cdio-includes.patch
  mplayer-vaapi/repos/community-staging-i686/demux-gif.patch
  mplayer-vaapi/repos/community-staging-i686/mplayer-vaapi.install
  mplayer-vaapi/repos/community-staging-i686/subreader-fix-srt-parsing.patch
  mplayer-vaapi/repos/community-staging-i686/tweak-desktop-file.patch
  mplayer-vaapi/repos/community-staging-x86_64/PKGBUILD
  mplayer-vaapi/repos/community-staging-x86_64/cdio-includes.patch
  mplayer-vaapi/repos/community-staging-x86_64/demux-gif.patch
  mplayer-vaapi/repos/community-staging-x86_64/mplayer-vaapi.install
  mplayer-vaapi/repos/community-staging-x86_64/subreader-fix-srt-parsing.patch
  mplayer-vaapi/repos/community-staging-x86_64/tweak-desktop-file.patch

--+
 /PKGBUILD|  186 +
 /cdio-includes.patch |   86 ++
 /demux-gif.patch |   38 ++
 /mplayer-vaapi.install   |   22 +
 /subreader-fix-srt-parsing.patch |   80 +
 /tweak-desktop-file.patch|   28 +
 community-staging-i686/PKGBUILD  |   92 --
 community-staging-i686/cdio-includes.patch   |   43 ---
 community-staging-i686/demux-gif.patch   |   19 -
 community-staging-i686/mplayer-vaapi.install |   11 
 community-staging-i686/subreader-fix-srt-parsing.patch   |   40 --
 community-staging-i686/tweak-desktop-file.patch  |   14 
 community-staging-x86_64/PKGBUILD|   92 --
 community-staging-x86_64/cdio-includes.patch |   43 ---
 community-staging-x86_64/demux-gif.patch |   19 -
 community-staging-x86_64/mplayer-vaapi.install   |   11 
 community-staging-x86_64/subreader-fix-srt-parsing.patch |   40 --
 community-staging-x86_64/tweak-desktop-file.patch|   14 
 18 files changed, 440 insertions(+), 438 deletions(-)

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


[arch-commits] Commit in (4 files)

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 14:10:53
  Author: lcarlier
Revision: 190833

moved from community as an (opt)dependency of mesa

Added:
  libtxc_dxtn/
  libtxc_dxtn/repos/
  libtxc_dxtn/trunk/
  libtxc_dxtn/trunk/PKGBUILD

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

Added: libtxc_dxtn/trunk/PKGBUILD
===
--- libtxc_dxtn/trunk/PKGBUILD  (rev 0)
+++ libtxc_dxtn/trunk/PKGBUILD  2013-07-18 12:10:53 UTC (rev 190833)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 91926 2013-05-29 16:38:22Z lcarlier $
+# Maintainer: Laurent Carlier lordhea...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgname=libtxc_dxtn
+pkgver=1.0.1
+pkgrel=5
+arch=(i686 x86_64)
+pkgdesc=S3 Texture Compression (S3TC) library for Mesa
+url=http://dri.freedesktop.org/wiki/S3TC;
+license=(custom:BSD)
+depends=(mesa)
+options=(!libtool)
+source=(http://people.freedesktop.org/~cbrill/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('7105107f07ac49753f4b61ba9d0c79c5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # License
+  mkdir -p $pkgdir/usr/share/licenses/$pkgname
+  sed -n '5,22{s|^ \* \?||;p}' txc_dxtn.h \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 14:20:00
  Author: lcarlier
Revision: 190834

upgpkg: libtxc_dxtn 1.0.1-5

Moved from community

Modified:
  libtxc_dxtn/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 12:10:53 UTC (rev 190833)
+++ PKGBUILD2013-07-18 12:20:00 UTC (rev 190834)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 91926 2013-05-29 16:38:22Z lcarlier $
+# $Id$
 # Maintainer: Laurent Carlier lordhea...@gmail.com
 # Contributor: Jan heftig Steffens jan.steff...@gmail.com
 


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


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

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 14:20:11
  Author: lcarlier
Revision: 190835

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

Added:
  libtxc_dxtn/repos/extra-i686/
  libtxc_dxtn/repos/extra-i686/PKGBUILD
(from rev 190834, libtxc_dxtn/trunk/PKGBUILD)
  libtxc_dxtn/repos/extra-x86_64/
  libtxc_dxtn/repos/extra-x86_64/PKGBUILD
(from rev 190834, libtxc_dxtn/trunk/PKGBUILD)

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

Copied: libtxc_dxtn/repos/extra-i686/PKGBUILD (from rev 190834, 
libtxc_dxtn/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-18 12:20:11 UTC (rev 190835)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Laurent Carlier lordhea...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgname=libtxc_dxtn
+pkgver=1.0.1
+pkgrel=5
+arch=(i686 x86_64)
+pkgdesc=S3 Texture Compression (S3TC) library for Mesa
+url=http://dri.freedesktop.org/wiki/S3TC;
+license=(custom:BSD)
+depends=(mesa)
+options=(!libtool)
+source=(http://people.freedesktop.org/~cbrill/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('7105107f07ac49753f4b61ba9d0c79c5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # License
+  mkdir -p $pkgdir/usr/share/licenses/$pkgname
+  sed -n '5,22{s|^ \* \?||;p}' txc_dxtn.h \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: libtxc_dxtn/repos/extra-x86_64/PKGBUILD (from rev 190834, 
libtxc_dxtn/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-18 12:20:11 UTC (rev 190835)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Laurent Carlier lordhea...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgname=libtxc_dxtn
+pkgver=1.0.1
+pkgrel=5
+arch=(i686 x86_64)
+pkgdesc=S3 Texture Compression (S3TC) library for Mesa
+url=http://dri.freedesktop.org/wiki/S3TC;
+license=(custom:BSD)
+depends=(mesa)
+options=(!libtool)
+source=(http://people.freedesktop.org/~cbrill/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('7105107f07ac49753f4b61ba9d0c79c5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # License
+  mkdir -p $pkgdir/usr/share/licenses/$pkgname
+  sed -n '5,22{s|^ \* \?||;p}' txc_dxtn.h \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 14:47:47
  Author: lcarlier
Revision: 190837

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

Added:
  mesa/repos/extra-i686/LICENSE
(from rev 190836, mesa/trunk/LICENSE)
  mesa/repos/extra-i686/PKGBUILD
(from rev 190836, mesa/trunk/PKGBUILD)
  mesa/repos/extra-x86_64/LICENSE
(from rev 190836, mesa/trunk/LICENSE)
  mesa/repos/extra-x86_64/PKGBUILD
(from rev 190836, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/extra-i686/LICENSE
  mesa/repos/extra-i686/PKGBUILD
  mesa/repos/extra-i686/git_fixes.patch
  mesa/repos/extra-x86_64/LICENSE
  mesa/repos/extra-x86_64/PKGBUILD
  mesa/repos/extra-x86_64/git_fixes.patch

--+
 /LICENSE |  164 ++
 /PKGBUILD|  304 ++
 extra-i686/LICENSE   |   82 ---
 extra-i686/PKGBUILD  |  156 -
 extra-i686/git_fixes.patch   |  476 -
 extra-x86_64/LICENSE |   82 ---
 extra-x86_64/PKGBUILD|  156 -
 extra-x86_64/git_fixes.patch |  476 -
 8 files changed, 468 insertions(+), 1428 deletions(-)

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


[arch-commits] Commit in mesa/trunk (PKGBUILD git_fixes.patch)

2013-07-18 Thread Laurent Carlier
Date: Thursday, July 18, 2013 @ 14:47:35
  Author: lcarlier
Revision: 190836

upgpkg: mesa 9.1.5-1

upstream update 9.1.5

Modified:
  mesa/trunk/PKGBUILD
Deleted:
  mesa/trunk/git_fixes.patch

-+
 PKGBUILD|   16 -
 git_fixes.patch |  476 --
 2 files changed, 6 insertions(+), 486 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 12:20:11 UTC (rev 190835)
+++ PKGBUILD2013-07-18 12:47:35 UTC (rev 190836)
@@ -4,8 +4,8 @@
 
 pkgbase=mesa
 pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl')
-pkgver=9.1.4
-pkgrel=5
+pkgver=9.1.5
+pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'libxxf86vm' 'libxdamage'
  'libvdpau' 'wayland' 'llvm-amdgpu-snapshot' 'systemd')
@@ -13,17 +13,10 @@
 license=('custom')
 options=('!libtool')
 source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2
-git_fixes.patch
 LICENSE)
-md5sums=('a2c4e25d0e27918bc67f61bae04d0cb8'
- '8ec30e1bd7abe5e8e540df4fa618540f'
+md5sums=('4ed2af5943141a85a21869053a2fc2eb'
  '5c65a0fe315dd347e09b1f2826a1df5a')
 
-prepare() {
-cd ?esa-*
-patch -Np1 -i ../git_fixes.patch
-}
-
 build() {
 cd ${srcdir}/?esa-*
 
@@ -61,6 +54,7 @@
 package_ati-dri() {
   pkgdesc=Mesa drivers for AMD/ATI Radeon
   depends=(mesa-libgl=${pkgver})
+  optdepends=('libtxc_dxtn: S3 Texture Compressed support')
   conflicts=('xf86-video-ati6.9.0-6')
 
   install -m755 -d ${pkgdir}/usr/lib/vdpau/
@@ -78,6 +72,7 @@
 
 package_intel-dri() {
   pkgdesc=Mesa drivers for Intel
+  optdepends=('libtxc_dxtn: S3 Texture Compressed support')
   depends=(mesa-libgl=${pkgver})
 
   install -m755 -d ${pkgdir}/usr/lib/xorg/modules/dri
@@ -89,6 +84,7 @@
 
 package_nouveau-dri() {
   pkgdesc=Mesa drivers for Nouveau
+  optdepends=('libtxc_dxtn: S3 Texture Compressed support')
   depends=(mesa-libgl=${pkgver})
 
   # vdpau driver is problematic, so remove it (FS#36004)

Deleted: git_fixes.patch
===
--- git_fixes.patch 2013-07-18 12:20:11 UTC (rev 190835)
+++ git_fixes.patch 2013-07-18 12:47:35 UTC (rev 190836)
@@ -1,476 +0,0 @@
-From 6194644a49f841488e23ce021e7817ec02927eef Mon Sep 17 00:00:00 2001
-From: Ian Romanick ian.d.roman...@intel.com
-Date: Mon, 01 Jul 2013 21:31:03 +
-Subject: docs: Add 9.1.4 release md5sums
-
-Signed-off-by: Ian Romanick ian.d.roman...@intel.com

-diff --git a/docs/relnotes-9.1.4.html b/docs/relnotes-9.1.4.html
-index 48e421b..fa6fe67 100644
 a/docs/relnotes-9.1.4.html
-+++ b/docs/relnotes-9.1.4.html
-@@ -30,7 +30,9 @@ because GL_ARB_compatibility is not supported.
- 
- h2MD5 checksums/h2
- pre
--TBD
-+a2c4e25d0e27918bc67f61bae04d0cb8  MesaLib-9.1.4.tar.bz2
-+8c7e9ce5b05cb2223f0587396dd9dc08  MesaLib-9.1.4.tar.gz
-+020459c5793d4279bdcb2daa1f7dd9f6  MesaLib-9.1.4.zip
- /pre
- 
- h2New features/h2
---
-cgit v0.9.0.2-2-gbebe
-
-From e94a89de4deeabd0f8347795385b2f098aa35365 Mon Sep 17 00:00:00 2001
-From: Vinson Lee v...@freedesktop.org
-Date: Fri, 01 Feb 2013 07:28:41 +
-Subject: swrast: Fix memory leak.
-
-Fixes resource leak defect reported by Coverity.
-
-Signed-off-by: Vinson Lee v...@freedesktop.org
-Reviewed-by: Brian Paul bri...@vmware.com
-(cherry picked from commit 985e710c0d1f4f3bbd18448f04e611bd57ae9100)

-diff --git a/src/mesa/drivers/dri/swrast/swrast.c 
b/src/mesa/drivers/dri/swrast/swrast.c
-index 9638271..b380de3 100644
 a/src/mesa/drivers/dri/swrast/swrast.c
-+++ b/src/mesa/drivers/dri/swrast/swrast.c
-@@ -363,6 +363,7 @@ swrast_new_renderbuffer(const struct gl_config *visual, 
__DRIdrawable *dPriv,
-   xrb-bpp = 8;
-   break;
- default:
-+  free(xrb);
-   return NULL;
- }
- 
---
-cgit v0.9.0.2-2-gbebe
-
-From ab159327a7dc2dd41f9887d053d4abb3de69d195 Mon Sep 17 00:00:00 2001
-From: Ian Romanick ian.d.roman...@intel.com
-Date: Mon, 10 Jun 2013 17:33:59 +
-Subject: glsl: Add a gl_shader_program parameter to 
_mesa_uniform_{merge,split}_location_offset
-
-This will be used in the next commit.
-
-NOTE: This is a candidate for stable release branches.
-
-Signed-off-by: Ian Romanick ian.d.roman...@intel.com
-Reviewed-by: Brian Paul bri...@vmware.com
-Reviewed-and-tested-by: Chad Versace chad.vers...@linux.intel.com
-(cherry picked from commit 5097f358419c067a71e96e39764b3bb0a716bdbb)

-diff --git a/src/mesa/main/uniform_query.cpp b/src/mesa/main/uniform_query.cpp
-index b8335fe..fbbe577 100644
 a/src/mesa/main/uniform_query.cpp
-+++ b/src/mesa/main/uniform_query.cpp
-@@ -234,7 +234,7 @@ validate_uniform_parameters(struct gl_context *ctx,
-   return false;
-}
- 
--   _mesa_uniform_split_location_offset(location, loc, array_index);
-+   _mesa_uniform_split_location_offset(shProg, location, loc, array_index);
- 
-

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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:14:21
  Author: arodseth
Revision: 94265

upgpkg: chicken 4.8.0.4-1

Modified:
  chicken/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 12:09:44 UTC (rev 94264)
+++ PKGBUILD2013-07-18 13:14:21 UTC (rev 94265)
@@ -24,7 +24,7 @@
 package() {
   cd $pkgname-$pkgver
   
-  make PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
+  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:14:30
  Author: arodseth
Revision: 94266

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-18 13:14:21 UTC (rev 94265)
+++ community-i686/PKGBUILD 2013-07-18 13:14:30 UTC (rev 94266)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Vesa Kaihlavirta ve...@iki.fi
-# Contributor: da...@pako.st
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-pkgname=chicken
-pkgver=4.8.0.3
-pkgrel=1
-pkgdesc='Compiler for R5RS scheme, featuring handy extensions'
-arch=('x86_64' 'i686')
-url='http://call-cc.org/'
-license=('BSD')
-depends=('gcc')
-source=(http://code.call-cc.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.gz;)
-sha256sums=('6a1414e6f35586e47d7f4470eaf1779a4f73dec664b14bebf8763dd804b399c3')
-
-build() {
-  cd $pkgname-$pkgver
-
-  make -j1 PLATFORM=linux PREFIX=/usr
-}
-
-package() {
-  cd $pkgname-$pkgver
-  
-  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: chicken/repos/community-i686/PKGBUILD (from rev 94265, 
chicken/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 13:14:30 UTC (rev 94266)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: da...@pako.st
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=chicken
+pkgver=4.8.0.4
+pkgrel=1
+pkgdesc='Compiler for R5RS scheme, featuring handy extensions'
+arch=('x86_64' 'i686')
+url='http://call-cc.org/'
+license=('BSD')
+depends=('gcc')
+source=(http://code.call-cc.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.gz;)
+sha256sums=('cd6c4b05f76a6ac82ff32e8dbd53f7517a283bda32003c6b3baa0c6b24990fb2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make -j1 PLATFORM=linux PREFIX=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  
+  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-18 13:14:21 UTC (rev 94265)
+++ community-x86_64/PKGBUILD   2013-07-18 13:14:30 UTC (rev 94266)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Vesa Kaihlavirta ve...@iki.fi
-# Contributor: da...@pako.st
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-pkgname=chicken
-pkgver=4.8.0.3
-pkgrel=1
-pkgdesc='Compiler for R5RS scheme, featuring handy extensions'
-arch=('x86_64' 'i686')
-url='http://call-cc.org/'
-license=('BSD')
-depends=('gcc')
-source=(http://code.call-cc.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.gz;)
-sha256sums=('6a1414e6f35586e47d7f4470eaf1779a4f73dec664b14bebf8763dd804b399c3')
-
-build() {
-  cd $pkgname-$pkgver
-
-  make -j1 PLATFORM=linux PREFIX=/usr
-}
-
-package() {
-  cd $pkgname-$pkgver
-  
-  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: chicken/repos/community-x86_64/PKGBUILD (from rev 94265, 
chicken/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-18 13:14:30 UTC (rev 94266)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: da...@pako.st
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=chicken
+pkgver=4.8.0.4
+pkgrel=1
+pkgdesc='Compiler for R5RS scheme, featuring handy extensions'
+arch=('x86_64' 'i686')
+url='http://call-cc.org/'
+license=('BSD')
+depends=('gcc')
+source=(http://code.call-cc.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.gz;)
+sha256sums=('cd6c4b05f76a6ac82ff32e8dbd53f7517a283bda32003c6b3baa0c6b24990fb2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make -j1 PLATFORM=linux PREFIX=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  
+  make -j1 PLATFORM=linux 

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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:44:00
  Author: arodseth
Revision: 94267

Running 'clojure' as well as 'clj' is now possible.

Modified:
  clojure/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 13:14:30 UTC (rev 94266)
+++ PKGBUILD2013-07-18 13:44:00 UTC (rev 94267)
@@ -6,7 +6,7 @@
 
 pkgname=clojure
 pkgver=1.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='LISP dialect for the JVM'
 url='http://www.clojure.org/'
 arch=('any')
@@ -25,6 +25,7 @@
   cd $srcdir
 
   install -Dm755 clj.sh $pkgdir/usr/bin/clj
+  install -Dm755 clj.sh $pkgdir/usr/bin/clojure
   install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
   install -Dm644 $pkgname-$pkgver/$pkgname-$pkgver.jar \
 $pkgdir/usr/share/$pkgname/$pkgname.jar



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:44:10
  Author: arodseth
Revision: 94268

archrelease: copy trunk to community-any

Added:
  clojure/repos/community-any/PKGBUILD
(from rev 94267, clojure/trunk/PKGBUILD)
  clojure/repos/community-any/clj.sh
(from rev 94267, clojure/trunk/clj.sh)
  clojure/repos/community-any/clojure.install
(from rev 94267, clojure/trunk/clojure.install)
  clojure/repos/community-any/clojure.sh
(from rev 94267, clojure/trunk/clojure.sh)
Deleted:
  clojure/repos/community-any/PKGBUILD
  clojure/repos/community-any/clj.sh
  clojure/repos/community-any/clojure.install
  clojure/repos/community-any/clojure.sh

-+
 PKGBUILD|   67 ++---
 clj.sh  |  276 +++---
 clojure.install |   10 -
 clojure.sh  |2 
 4 files changed, 178 insertions(+), 177 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 13:44:00 UTC (rev 94267)
+++ PKGBUILD2013-07-18 13:44:10 UTC (rev 94268)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Chris O'Donnell christopher.p.odonn...@gmail.com
-# Contributor: Sam May sam@gmail.com
-
-pkgname=clojure
-pkgver=1.5.1
-pkgrel=1
-pkgdesc='LISP dialect for the JVM'
-url='http://www.clojure.org/'
-arch=('any')
-license=('CPL')
-depends=('java-environment' 'sh')
-optdepends=('rlwrap: friendlier shell with readline support')
-install=clojure.install
-source=(http://repo1.maven.org/maven2/org/$pkgname/$pkgname/$pkgver/clojure-$pkgver.zip;
-'clj.sh'
-$pkgname.sh)
-sha256sums=('fe7b32ca36c1a5451fe6fe0ea8ad25f7bc04beeb63e171e10464efd64c94f1e1'
-'0d0f9e7db77f4b5f507ee18e140c29138b7bff5c4ca9d0b963dfd657c6e3c157'
-'b3fa6257dad10fb39851e87563269b80b2473623126595d9c279bbd90e97f052')
-
-package() {
-  cd $srcdir
-
-  install -Dm755 clj.sh $pkgdir/usr/bin/clj
-  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
-  install -Dm644 $pkgname-$pkgver/$pkgname-$pkgver.jar \
-$pkgdir/usr/share/$pkgname/$pkgname.jar
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clojure/repos/community-any/PKGBUILD (from rev 94267, 
clojure/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-18 13:44:10 UTC (rev 94268)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Chris O'Donnell christopher.p.odonn...@gmail.com
+# Contributor: Sam May sam@gmail.com
+
+pkgname=clojure
+pkgver=1.5.1
+pkgrel=2
+pkgdesc='LISP dialect for the JVM'
+url='http://www.clojure.org/'
+arch=('any')
+license=('CPL')
+depends=('java-environment' 'sh')
+optdepends=('rlwrap: friendlier shell with readline support')
+install=clojure.install
+source=(http://repo1.maven.org/maven2/org/$pkgname/$pkgname/$pkgver/clojure-$pkgver.zip;
+'clj.sh'
+$pkgname.sh)
+sha256sums=('fe7b32ca36c1a5451fe6fe0ea8ad25f7bc04beeb63e171e10464efd64c94f1e1'
+'0d0f9e7db77f4b5f507ee18e140c29138b7bff5c4ca9d0b963dfd657c6e3c157'
+'b3fa6257dad10fb39851e87563269b80b2473623126595d9c279bbd90e97f052')
+
+package() {
+  cd $srcdir
+
+  install -Dm755 clj.sh $pkgdir/usr/bin/clj
+  install -Dm755 clj.sh $pkgdir/usr/bin/clojure
+  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
+  install -Dm644 $pkgname-$pkgver/$pkgname-$pkgver.jar \
+$pkgdir/usr/share/$pkgname/$pkgname.jar
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: clj.sh
===
--- clj.sh  2013-07-18 13:44:00 UTC (rev 94267)
+++ clj.sh  2013-07-18 13:44:10 UTC (rev 94268)
@@ -1,138 +0,0 @@
-#!/bin/sh
-#
-# A launcher script for Clojure programs. These environment variables can be
-# used to configure the script:
-#
-#   CLOJURE_HOME
-#   The root directory where Clojure is installed.
-#   CLOJURE_JAVA
-#   The name of the java executable used to run Clojure.
-#   CLOJURE_JAVA_OPTS
-#   Additional options to be passed to the java executable.
-#   CLOJURE_CLASSPATH
-#   A path to be added to Clojure's classpath.
-#   CLOJURE_LIBRARY_PATH
-#   A path to be searched for native code such as DLL's or JNI
-#   libraries. This gets added to the Java options as
-#   -Djava.library.path=$CLOJURE_LIBRARY_PATH.
-#   CLOJURE_LIB
-#   This directory, and any jars inside it, will be automatically
-#   added to Clojure's classpath.
-#
-#   CLOJURE_JLINE
-#This should be the path to Jline jar.
-# TODO:
-#   make CLOJURE_LIB a path instead of a single directory
-#   allow for adding to CLOJURE_LIB from the command line
-
-usage=\
-usage: clojure [options] [file1 [file2] ...]
-
-Options:
-  --help, -h  show this message
-  --java-cmd, -J  the Java 

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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:50:20
  Author: arodseth
Revision: 94269

upgpkg: jenkins-ci 1.523-1

Modified:
  jenkins-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 13:44:10 UTC (rev 94268)
+++ PKGBUILD2013-07-18 13:50:20 UTC (rev 94269)
@@ -4,7 +4,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins-ci
-pkgver=1.522
+pkgver=1.523
 pkgrel=1
 pkgdesc='Extendable continuous integration server'
 arch=('any')
@@ -22,7 +22,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha256sums=('e227c291191b2554267b4b338ea34ef86a9aa42096928e42bebdf6e90cf3e314'
+sha256sums=('238e65730388fba2b881e791d4452bd39dbd2cacc29469496cde9cc754827354'
 '13b6e06de1dedff96bdb8e43f6830bbd954dc58df9d4ed5583693d2a6f8427f4'
 '23b748ae4c418bd1b98e33dd6bb55ad0d578803aecd26176998b759689b82e73'
 '0ccff16308b01b02f2699ea64a73b8dce1e1990ee1c656aa8d6119dee510262e'



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 15:50:33
  Author: arodseth
Revision: 94270

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 13:50:20 UTC (rev 94269)
+++ PKGBUILD2013-07-18 13:50:33 UTC (rev 94270)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Marcel Huber marcelhuberfoo at gmail dott com
-# Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
-
-pkgname=jenkins-ci
-pkgver=1.522
-pkgrel=1
-pkgdesc='Extendable continuous integration server'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins')
-conflicts=('jenkins')
-replaces=('jenkins')
-backup=('etc/conf.d/jenkins')

[arch-commits] Commit in (6 files)

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 17:10:15
  Author: arodseth
Revision: 94271

Added iverilog, 54 votes in AUR

Added:
  iverilog/
  iverilog/repos/
  iverilog/repos/community-i686/
  iverilog/repos/community-x86_64/
  iverilog/trunk/
  iverilog/trunk/PKGBUILD

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

Added: iverilog/trunk/PKGBUILD
===
--- iverilog/trunk/PKGBUILD (rev 0)
+++ iverilog/trunk/PKGBUILD 2013-07-18 15:10:15 UTC (rev 94271)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jared Casper jaredcas...@gmail.com
+# Contributor: Paulo Matias matias archlinux-br org
+
+pkgname=iverilog
+pkgver=0.9.6
+pkgrel=1
+pkgdesc='Icarus Verilog compiler and simulation tool'
+arch=('x86_64' 'i686')
+url='http://iverilog.icarus.com/'
+license=('GPL')
+depends=('zlib' 'bzip2' 'gcc-libs' 'sh')
+makedepends=('readline')
+source=(ftp://ftp.icarus.com/pub/eda/verilog/v0.9/verilog-$pkgver.tar.gz;)
+sha256sums=('a77d847198c571ba2bfd55b99162c3b6')
+
+build() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  make -j1 prefix=$pkgdir/usr install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 17:45:34
  Author: arodseth
Revision: 94272

upgpkg: iverilog 0.9.6-1

Modified:
  iverilog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 15:10:15 UTC (rev 94271)
+++ PKGBUILD2013-07-18 15:45:34 UTC (rev 94272)
@@ -10,10 +10,10 @@
 arch=('x86_64' 'i686')
 url='http://iverilog.icarus.com/'
 license=('GPL')
-depends=('zlib' 'bzip2' 'gcc-libs' 'sh')
-makedepends=('readline')
+makedepends=('readline' 'gperf')
+depends=('bzip2' 'sh' 'gcc-libs' 'zlib')
 source=(ftp://ftp.icarus.com/pub/eda/verilog/v0.9/verilog-$pkgver.tar.gz;)
-sha256sums=('a77d847198c571ba2bfd55b99162c3b6')
+sha256sums=('25304d5d58d6411fcd1ab94992a505215eea5a6bbd9779c2be2d9d19f38cd54a')
 
 build() {
   cd $srcdir/${pkgname/i}-$pkgver



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 17:45:42
  Author: arodseth
Revision: 94273

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

Added:
  iverilog/repos/community-i686/PKGBUILD
(from rev 94272, iverilog/trunk/PKGBUILD)
  iverilog/repos/community-x86_64/PKGBUILD
(from rev 94272, iverilog/trunk/PKGBUILD)

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

Copied: iverilog/repos/community-i686/PKGBUILD (from rev 94272, 
iverilog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 15:45:42 UTC (rev 94273)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jared Casper jaredcas...@gmail.com
+# Contributor: Paulo Matias matias archlinux-br org
+
+pkgname=iverilog
+pkgver=0.9.6
+pkgrel=1
+pkgdesc='Icarus Verilog compiler and simulation tool'
+arch=('x86_64' 'i686')
+url='http://iverilog.icarus.com/'
+license=('GPL')
+makedepends=('readline' 'gperf')
+depends=('bzip2' 'sh' 'gcc-libs' 'zlib')
+source=(ftp://ftp.icarus.com/pub/eda/verilog/v0.9/verilog-$pkgver.tar.gz;)
+sha256sums=('25304d5d58d6411fcd1ab94992a505215eea5a6bbd9779c2be2d9d19f38cd54a')
+
+build() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  make -j1 prefix=$pkgdir/usr install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iverilog/repos/community-x86_64/PKGBUILD (from rev 94272, 
iverilog/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-18 15:45:42 UTC (rev 94273)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jared Casper jaredcas...@gmail.com
+# Contributor: Paulo Matias matias archlinux-br org
+
+pkgname=iverilog
+pkgver=0.9.6
+pkgrel=1
+pkgdesc='Icarus Verilog compiler and simulation tool'
+arch=('x86_64' 'i686')
+url='http://iverilog.icarus.com/'
+license=('GPL')
+makedepends=('readline' 'gperf')
+depends=('bzip2' 'sh' 'gcc-libs' 'zlib')
+source=(ftp://ftp.icarus.com/pub/eda/verilog/v0.9/verilog-$pkgver.tar.gz;)
+sha256sums=('25304d5d58d6411fcd1ab94992a505215eea5a6bbd9779c2be2d9d19f38cd54a')
+
+build() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/${pkgname/i}-$pkgver
+
+  make -j1 prefix=$pkgdir/usr install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in arm-elf-binutils/trunk (PKGBUILD)

2013-07-18 Thread Sergej Pupykin
Date: Thursday, July 18, 2013 @ 18:00:54
  Author: spupykin
Revision: 94274

Modified:
  arm-elf-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 15:45:42 UTC (rev 94273)
+++ PKGBUILD2013-07-18 16:00:54 UTC (rev 94274)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=arm-elf-binutils
-pkgver=2.23
+pkgver=2.23.2
 pkgrel=1
 _xprefix=/usr
 pkgdesc=A set of programs to assemble and manipulate binary and object files
@@ -12,8 +12,19 @@
 url=http://sources.redhat.com/binutils;
 depends=('glibc' 'zlib')
 source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz)
-md5sums=('ed58f50d8920c3f1d9cb110d5c972c27')
+md5sums=('cda9dcc08c86ff2fd3f27e4adb250f6f')
 
+prepare() {
+  cd $srcdir/binutils-${pkgver}
+  sed -i 's|-Wall|-Wall -O2|g' libiberty/configure
+  sed -i 's|$CC -E|$CC -E -O2|g' libiberty/configure
+#  sed -i '1,1i#include stdlib.h' include/hashtab.h
+#  sed -i '1,1i#include limits.h' libiberty/fibheap.c
+#  sed -i '1,1i#include sys/stat.h' libiberty/getpwd.c
+#  sed -i '1,1i#include fcntl.h' libiberty/pex-unix.c
+#  sed -i '1,1i#include unistd.h' libiberty/pex-{common.h,unix.c}
+}
+
 build() {
   cd $srcdir/binutils-${pkgver}
 



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

2013-07-18 Thread Sergej Pupykin
Date: Thursday, July 18, 2013 @ 18:46:03
  Author: spupykin
Revision: 94275

upgpkg: passenger 4.0.7-2

upd

Modified:
  passenger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 16:00:54 UTC (rev 94274)
+++ PKGBUILD2013-07-18 16:46:03 UTC (rev 94275)
@@ -3,7 +3,7 @@
 
 pkgname=passenger
 pkgver=4.0.7
-pkgrel=1
+pkgrel=2
 pkgdesc=mod_rails passenger
 arch=('i686' 'x86_64')
 url=http://www.modrails.com;
@@ -32,5 +32,5 @@
   cp -R * $pkgdir/usr/lib/passenger/
 
   mkdir -p $pkgdir/usr/lib/httpd/modules
-  ln -sf /usr/lib/passenger/libout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
+  ln -sf /usr/lib/passenger/buildout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
 }



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

2013-07-18 Thread Sergej Pupykin
Date: Thursday, July 18, 2013 @ 18:46:21
  Author: spupykin
Revision: 94276

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

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

+
 /PKGBUILD  |   72 +++
 /passenger.install |   64 +++
 community-i686/PKGBUILD|   36 -
 community-i686/passenger.install   |   32 ---
 community-x86_64/PKGBUILD  |   36 -
 community-x86_64/passenger.install |   32 ---
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-18 16:46:03 UTC (rev 94275)
+++ community-i686/PKGBUILD 2013-07-18 16:46:21 UTC (rev 94276)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=passenger
-pkgver=4.0.7
-pkgrel=1
-pkgdesc=mod_rails passenger
-arch=('i686' 'x86_64')
-url=http://www.modrails.com;
-#http://rubyforge.org/frs/?group_id=5873
-license=('GPL')
-depends=('ruby' 'ruby-rack' 'curl')
-makedepends=('apache')
-install=passenger.install
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('07f892d34164bfcc883a46d8b730b8e5')
-
-build(){
-  cd $srcdir/passenger-release-$pkgver
-
-#  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
-
-  ./bin/passenger-install-apache2-module -a
-  rake nginx
-}
-
-package() {
-  cd $srcdir/passenger-release-$pkgver
-
-  mkdir -p $pkgdir/usr/lib/passenger/
-  cp -R * $pkgdir/usr/lib/passenger/
-
-  mkdir -p $pkgdir/usr/lib/httpd/modules
-  ln -sf /usr/lib/passenger/libout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
-}

Copied: passenger/repos/community-i686/PKGBUILD (from rev 94275, 
passenger/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 16:46:21 UTC (rev 94276)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=passenger
+pkgver=4.0.7
+pkgrel=2
+pkgdesc=mod_rails passenger
+arch=('i686' 'x86_64')
+url=http://www.modrails.com;
+#http://rubyforge.org/frs/?group_id=5873
+license=('GPL')
+depends=('ruby' 'ruby-rack' 'curl')
+makedepends=('apache')
+install=passenger.install
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
+md5sums=('07f892d34164bfcc883a46d8b730b8e5')
+
+build(){
+  cd $srcdir/passenger-release-$pkgver
+
+#  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
+
+  ./bin/passenger-install-apache2-module -a
+  rake nginx
+}
+
+package() {
+  cd $srcdir/passenger-release-$pkgver
+
+  mkdir -p $pkgdir/usr/lib/passenger/
+  cp -R * $pkgdir/usr/lib/passenger/
+
+  mkdir -p $pkgdir/usr/lib/httpd/modules
+  ln -sf /usr/lib/passenger/buildout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
+}

Deleted: community-i686/passenger.install
===
--- community-i686/passenger.install2013-07-18 16:46:03 UTC (rev 94275)
+++ community-i686/passenger.install2013-07-18 16:46:21 UTC (rev 94276)
@@ -1,32 +0,0 @@
-post_install() {
-   echo Please edit your Apache configuration file, and add these lines:
-   echo 
-   echo LoadModule passenger_module 
/usr/lib/httpd/modules/mod_passenger.so
-   echo PassengerRoot /usr/lib/passenger
-   echo PassengerRuby /usr/bin/ruby
-   echo 
-   echo After you restart Apache, you are ready to deploy any number of 
Ruby on Rails
-   echo applications on Apache, without any further Ruby on 
Rails-specific
-   echo configuration!
-   echo 
-   echo 
-   echo Deploying a Ruby on Rails application: an example
-   echo 
-   echo Suppose you have a Ruby on Rails application in /somewhere. Add a 
virtual host
-   echo to your Apache configuration file, and set its DocumentRoot to
-   echo /somewhere/public, like this:
-   echo 
-   echo VirtualHost *:80
-   echo   ServerName www.yourhost.com
-  

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

2013-07-18 Thread Jelle van der Waa
Date: Thursday, July 18, 2013 @ 18:50:52
  Author: jelle
Revision: 94277

db-move: moved mupen64plus from [community-testing] to [community] (i686, 
x86_64)

Added:
  mupen64plus/repos/community-i686/PKGBUILD
(from rev 94276, mupen64plus/repos/community-testing-i686/PKGBUILD)
  mupen64plus/repos/community-x86_64/PKGBUILD
(from rev 94276, mupen64plus/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  mupen64plus/repos/community-i686/PKGBUILD
  mupen64plus/repos/community-testing-i686/
  mupen64plus/repos/community-testing-x86_64/
  mupen64plus/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-18 16:46:21 UTC (rev 94276)
+++ community-i686/PKGBUILD 2013-07-18 16:50:52 UTC (rev 94277)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Laurent Carlier lordhea...@gmail.com
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Zephyr
-
-pkgname=mupen64plus
-pkgver=1.99.5
-pkgrel=6
-pkgdesc='Nintendo64 Emulator'
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/mupen64plus/'
-license=('GPL')
-depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2')
-makedepends=('mesa')
-source=(http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz;)
-md5sums=('93772a6d6fc6a63353462deae8a6db71')
-
-build() {
-  cd mupen64plus-bundle-src-${pkgver}
-
-  sh m64p_build.sh
-}
-
-package() {
-  cd mupen64plus-bundle-src-$pkgver
-  
-  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
-  ./m64p_install.sh DESTDIR=$pkgdir PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
-}
-
-# vim: ts=2:sw=2:et

Copied: mupen64plus/repos/community-i686/PKGBUILD (from rev 94276, 
mupen64plus/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 16:50:52 UTC (rev 94277)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Laurent Carlier lordhea...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Zephyr
+
+pkgname=mupen64plus
+pkgver=2.0
+pkgrel=1
+pkgdesc='Nintendo64 Emulator'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/mupen64plus/'
+license=('GPL')
+depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2' 'boost-libs')
+makedepends=('mesa' 'boost')
+source=(http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz;)
+md5sums=('f855b4233faa9616b780c364fc4a9a9a')
+
+build() {
+  cd mupen64plus-bundle-src-${pkgver}
+
+  sh m64p_build.sh
+}
+
+package() {
+  cd mupen64plus-bundle-src-$pkgver
+  
+  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
+  ./m64p_install.sh DESTDIR=$pkgdir PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
+}
+
+# vim: ts=2:sw=2:et

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-18 16:46:21 UTC (rev 94276)
+++ community-x86_64/PKGBUILD   2013-07-18 16:50:52 UTC (rev 94277)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Laurent Carlier lordhea...@gmail.com
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Zephyr
-
-pkgname=mupen64plus
-pkgver=1.99.5
-pkgrel=6
-pkgdesc='Nintendo64 Emulator'
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/mupen64plus/'
-license=('GPL')
-depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2')
-makedepends=('mesa')
-source=(http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz;)
-md5sums=('93772a6d6fc6a63353462deae8a6db71')
-
-build() {
-  cd mupen64plus-bundle-src-${pkgver}
-
-  sh m64p_build.sh
-}
-
-package() {
-  cd mupen64plus-bundle-src-$pkgver
-  
-  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
-  ./m64p_install.sh DESTDIR=$pkgdir PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
-}
-
-# vim: ts=2:sw=2:et

Copied: mupen64plus/repos/community-x86_64/PKGBUILD (from rev 94276, 
mupen64plus/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-18 16:50:52 UTC (rev 94277)
@@ -0,0 +1,33 @@
+# $Id$
+# 

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

2013-07-18 Thread Bartłomiej Piotrowski
Date: Thursday, July 18, 2013 @ 19:45:57
  Author: bpiotrowski
Revision: 190839

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

Added:
  mariadb/repos/extra-i686/PKGBUILD
(from rev 190838, mariadb/trunk/PKGBUILD)
  mariadb/repos/extra-i686/mariadb-post.sh
(from rev 190838, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/extra-i686/mariadb-tmpfile.conf
(from rev 190838, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/extra-i686/mariadb.install
(from rev 190838, mariadb/trunk/mariadb.install)
  mariadb/repos/extra-i686/mariadb.service
(from rev 190838, mariadb/trunk/mariadb.service)
  mariadb/repos/extra-x86_64/PKGBUILD
(from rev 190838, mariadb/trunk/PKGBUILD)
  mariadb/repos/extra-x86_64/mariadb-post.sh
(from rev 190838, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/extra-x86_64/mariadb-tmpfile.conf
(from rev 190838, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/extra-x86_64/mariadb.install
(from rev 190838, mariadb/trunk/mariadb.install)
  mariadb/repos/extra-x86_64/mariadb.service
(from rev 190838, mariadb/trunk/mariadb.service)
Deleted:
  mariadb/repos/extra-i686/PKGBUILD
  mariadb/repos/extra-i686/mariadb-post.sh
  mariadb/repos/extra-i686/mariadb-tmpfile.conf
  mariadb/repos/extra-i686/mariadb.install
  mariadb/repos/extra-i686/mariadb.service
  mariadb/repos/extra-x86_64/PKGBUILD
  mariadb/repos/extra-x86_64/mariadb-post.sh
  mariadb/repos/extra-x86_64/mariadb-tmpfile.conf
  mariadb/repos/extra-x86_64/mariadb.install
  mariadb/repos/extra-x86_64/mariadb.service

---+
 /PKGBUILD |  274 
 /mariadb-post.sh  |   16 ++
 /mariadb-tmpfile.conf |2 
 /mariadb.install  |   94 
 /mariadb.service  |   32 
 extra-i686/PKGBUILD   |  137 --
 extra-i686/mariadb-post.sh|8 -
 extra-i686/mariadb-tmpfile.conf   |1 
 extra-i686/mariadb.install|   47 --
 extra-i686/mariadb.service|   16 --
 extra-x86_64/PKGBUILD |  137 --
 extra-x86_64/mariadb-post.sh  |8 -
 extra-x86_64/mariadb-tmpfile.conf |1 
 extra-x86_64/mariadb.install  |   47 --
 extra-x86_64/mariadb.service  |   16 --
 15 files changed, 418 insertions(+), 418 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 17:45:36 UTC (rev 190838)
+++ extra-i686/PKGBUILD 2013-07-18 17:45:57 UTC (rev 190839)
@@ -1,137 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-
-pkgbase=mariadb
-pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb')
-pkgver=5.5.31
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mariadb.org/'
-makedepends=('cmake' 'openssl' 'zlib')
-options=('!libtool')
-source=(http://mirrors.supportex.net/$pkgbase/$pkgbase-$pkgver/kvm-tarbake-jaunty-x86/$pkgbase-$pkgver.tar.gz
-mariadb.service
-mariadb-post.sh
-mariadb-tmpfile.conf)
-sha256sums=('70b28e5dca7e9213fd092a669f74a537e7c88e0f670e32628907ce3ebcef2d28'
-'a6cf5446159fff16598d0d787dd3a3c30a53a656a5f876ddb608bc60e234d334'
-'368f9fd2454d80eb32abb8f29f703d1cf9553353fb9e1ae4529c4b851cb8c5dd'
-'2af318c52ae0fe5428e8a9245d1b0fc3bc5ce153842d1563329ceb1edfa83ddd')
-
-build() {
-  cd $srcdir
-  mkdir build
-  cd build
-
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONFDIR=/etc/mysql \
--DMYSQL_DATADIR=/var/lib/mysql \
--DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
--DDEFAULT_CHARSET=utf8 \
--DDEFAULT_COLLATION=utf8_general_ci \
--DENABLED_LOCAL_INFILE=ON \
--DINSTALL_INFODIR=share/mysql/docs \
--DINSTALL_MANDIR=share/man \
--DINSTALL_PLUGINDIR=/usr/lib/mysql/plugin \
--DINSTALL_SCRIPTDIR=bin \
--DINSTALL_INCLUDEDIR=include/mysql \
--DINSTALL_DOCREADMEDIR=share/mysql \
--DINSTALL_SUPPORTFILESDIR=share/mysql \
--DINSTALL_MYSQLSHAREDIR=share/mysql \
--DINSTALL_DOCDIR=share/mysql/docs \
--DINSTALL_SHAREDIR=share/mysql \
--DWITH_READLINE=ON \
--DWITH_ZLIB=system \
--DWITH_SSL=system \
--DWITH_LIBWRAP=OFF \
--DWITH_EXTRA_CHARSETS=complex \
--DWITH_EMBEDDED_SERVER=ON \
--DWITH_ARCHIVE_STORAGE_ENGINE=1 \
--DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
--DWITH_INNOBASE_STORAGE_ENGINE=1 \
--DWITH_PARTITION_STORAGE_ENGINE=1 \
--DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
--DWITHOUT_FEDERATED_STORAGE_ENGINE=1 \
--DWITHOUT_PBXT_STORAGE_ENGINE=1 \
--DCMAKE_C_FLAGS=-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 
-fomit-frame-pointer \
--DCMAKE_CXX_FLAGS=-fPIC ${CXXFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 
-felide-constructors -fno-rtti \
--DWITH_MYSQLD_LDFLAGS=${LDFLAGS}
-
-
-  make
-}
-
-package_libmariadbclient() {
-  

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

2013-07-18 Thread Bartłomiej Piotrowski
Date: Thursday, July 18, 2013 @ 19:45:36
  Author: bpiotrowski
Revision: 190838

upgpkg: mariadb 5.5.32-1

- upstream release

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 12:47:47 UTC (rev 190837)
+++ PKGBUILD2013-07-18 17:45:36 UTC (rev 190838)
@@ -3,7 +3,7 @@
 
 pkgbase=mariadb
 pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb')
-pkgver=5.5.31
+pkgver=5.5.32
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,7 +14,7 @@
 mariadb.service
 mariadb-post.sh
 mariadb-tmpfile.conf)
-sha256sums=('70b28e5dca7e9213fd092a669f74a537e7c88e0f670e32628907ce3ebcef2d28'
+sha256sums=('cc76d143c60d9f24b551adaf80f694ef9beb4a6a9032c115a06f7b5c5d0ee468'
 'a6cf5446159fff16598d0d787dd3a3c30a53a656a5f876ddb608bc60e234d334'
 '368f9fd2454d80eb32abb8f29f703d1cf9553353fb9e1ae4529c4b851cb8c5dd'
 '2af318c52ae0fe5428e8a9245d1b0fc3bc5ce153842d1563329ceb1edfa83ddd')



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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 20:46:08
  Author: jgc
Revision: 190840

upgpkg: apr 1.4.8-1

Modified:
  apr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 17:45:57 UTC (rev 190839)
+++ PKGBUILD2013-07-18 18:46:08 UTC (rev 190840)
@@ -4,7 +4,7 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=apr
-pkgver=1.4.6
+pkgver=1.4.8
 pkgrel=1
 pkgdesc=The Apache Portable Runtime
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=('!libtool')
 license=('APACHE')
 source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
-md5sums=('ffee70a111fd07372982b0550bbb14b7')
+md5sums=('ce2ab01a0c3cdb71cf0a6326b8654f41')
 
 build() {
   cd ${srcdir}/apr-${pkgver}



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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 20:46:16
  Author: jgc
Revision: 190841

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 18:46:08 UTC (rev 190840)
+++ extra-i686/PKGBUILD 2013-07-18 18:46:16 UTC (rev 190841)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=apr
-pkgver=1.4.6
-pkgrel=1
-pkgdesc=The Apache Portable Runtime
-arch=('i686' 'x86_64')
-url=http://apr.apache.org/;
-depends=('util-linux')
-options=('!libtool')
-license=('APACHE')
-source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
-md5sums=('ffee70a111fd07372982b0550bbb14b7')
-
-build() {
-  cd ${srcdir}/apr-${pkgver}
-  ./configure --prefix=/usr --includedir=/usr/include/apr-1 \
---with-installbuilddir=/usr/share/apr-1/build \
---enable-nonportable-atomics \
---with-devrandom=/dev/urandom
-  make
-}
-
-check() {
-  cd ${srcdir}/apr-${pkgver}
-  make -j1 check
-}
-
-package() {
-  cd ${srcdir}/apr-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: apr/repos/extra-i686/PKGBUILD (from rev 190840, apr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-18 18:46:16 UTC (rev 190841)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apr
+pkgver=1.4.8
+pkgrel=1
+pkgdesc=The Apache Portable Runtime
+arch=('i686' 'x86_64')
+url=http://apr.apache.org/;
+depends=('util-linux')
+options=('!libtool')
+license=('APACHE')
+source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
+md5sums=('ce2ab01a0c3cdb71cf0a6326b8654f41')
+
+build() {
+  cd ${srcdir}/apr-${pkgver}
+  ./configure --prefix=/usr --includedir=/usr/include/apr-1 \
+--with-installbuilddir=/usr/share/apr-1/build \
+--enable-nonportable-atomics \
+--with-devrandom=/dev/urandom
+  make
+}
+
+check() {
+  cd ${srcdir}/apr-${pkgver}
+  make -j1 check
+}
+
+package() {
+  cd ${srcdir}/apr-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-18 18:46:08 UTC (rev 190840)
+++ extra-x86_64/PKGBUILD   2013-07-18 18:46:16 UTC (rev 190841)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=apr
-pkgver=1.4.6
-pkgrel=1
-pkgdesc=The Apache Portable Runtime
-arch=('i686' 'x86_64')
-url=http://apr.apache.org/;
-depends=('util-linux')
-options=('!libtool')
-license=('APACHE')
-source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
-md5sums=('ffee70a111fd07372982b0550bbb14b7')
-
-build() {
-  cd ${srcdir}/apr-${pkgver}
-  ./configure --prefix=/usr --includedir=/usr/include/apr-1 \
---with-installbuilddir=/usr/share/apr-1/build \
---enable-nonportable-atomics \
---with-devrandom=/dev/urandom
-  make
-}
-
-check() {
-  cd ${srcdir}/apr-${pkgver}
-  make -j1 check
-}
-
-package() {
-  cd ${srcdir}/apr-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: apr/repos/extra-x86_64/PKGBUILD (from rev 190840, apr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-18 18:46:16 UTC (rev 190841)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=apr
+pkgver=1.4.8
+pkgrel=1
+pkgdesc=The Apache Portable Runtime
+arch=('i686' 'x86_64')
+url=http://apr.apache.org/;
+depends=('util-linux')
+options=('!libtool')
+license=('APACHE')
+source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
+md5sums=('ce2ab01a0c3cdb71cf0a6326b8654f41')
+
+build() {
+  cd ${srcdir}/apr-${pkgver}
+  ./configure --prefix=/usr --includedir=/usr/include/apr-1 \
+--with-installbuilddir=/usr/share/apr-1/build \
+--enable-nonportable-atomics \
+--with-devrandom=/dev/urandom
+  make
+}
+
+check() {
+  cd ${srcdir}/apr-${pkgver}
+  

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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 21:18:57
  Author: jgc
Revision: 190842

upgpkg: apache 2.2.25-1

Probably the last apache 2.2.x we'll ship

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 18:46:16 UTC (rev 190841)
+++ PKGBUILD2013-07-18 19:18:57 UTC (rev 190842)
@@ -4,8 +4,8 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=apache
-pkgver=2.2.24
-pkgrel=3
+pkgver=2.2.25
+pkgrel=1
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('i686' 'x86_64')
 options=('!libtool')
@@ -38,7 +38,7 @@
 httpd.logrotate
 httpd.service
 arch.layout)
-md5sums=('91bd1484aca13a7095d6432be37fc7ae'
+md5sums=('9ebe3070c0bb4311f21a0cd0e34f0045'
  'SKIP'
  'f1d9d41360908ceb2374da55ae99197a'
  'cdfa04985a0efa850976aef01c2a0c40'



[arch-commits] Commit in apache/repos (32 files)

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 21:19:10
  Author: jgc
Revision: 190843

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

Added:
  apache/repos/extra-i686/PKGBUILD
(from rev 190842, apache/trunk/PKGBUILD)
  apache/repos/extra-i686/apache.conf.d
(from rev 190842, apache/trunk/apache.conf.d)
  apache/repos/extra-i686/apache.install
(from rev 190842, apache/trunk/apache.install)
  apache/repos/extra-i686/apache.tmpfiles.conf
(from rev 190842, apache/trunk/apache.tmpfiles.conf)
  apache/repos/extra-i686/apachectl-confd.patch
(from rev 190842, apache/trunk/apachectl-confd.patch)
  apache/repos/extra-i686/arch.layout
(from rev 190842, apache/trunk/arch.layout)
  apache/repos/extra-i686/httpd.logrotate
(from rev 190842, apache/trunk/httpd.logrotate)
  apache/repos/extra-i686/httpd.service
(from rev 190842, apache/trunk/httpd.service)
  apache/repos/extra-x86_64/PKGBUILD
(from rev 190842, apache/trunk/PKGBUILD)
  apache/repos/extra-x86_64/apache.conf.d
(from rev 190842, apache/trunk/apache.conf.d)
  apache/repos/extra-x86_64/apache.install
(from rev 190842, apache/trunk/apache.install)
  apache/repos/extra-x86_64/apache.tmpfiles.conf
(from rev 190842, apache/trunk/apache.tmpfiles.conf)
  apache/repos/extra-x86_64/apachectl-confd.patch
(from rev 190842, apache/trunk/apachectl-confd.patch)
  apache/repos/extra-x86_64/arch.layout
(from rev 190842, apache/trunk/arch.layout)
  apache/repos/extra-x86_64/httpd.logrotate
(from rev 190842, apache/trunk/httpd.logrotate)
  apache/repos/extra-x86_64/httpd.service
(from rev 190842, apache/trunk/httpd.service)
Deleted:
  apache/repos/extra-i686/PKGBUILD
  apache/repos/extra-i686/apache.conf.d
  apache/repos/extra-i686/apache.install
  apache/repos/extra-i686/apache.tmpfiles.conf
  apache/repos/extra-i686/apachectl-confd.patch
  apache/repos/extra-i686/arch.layout
  apache/repos/extra-i686/httpd.logrotate
  apache/repos/extra-i686/httpd.service
  apache/repos/extra-x86_64/PKGBUILD
  apache/repos/extra-x86_64/apache.conf.d
  apache/repos/extra-x86_64/apache.install
  apache/repos/extra-x86_64/apache.tmpfiles.conf
  apache/repos/extra-x86_64/apachectl-confd.patch
  apache/repos/extra-x86_64/arch.layout
  apache/repos/extra-x86_64/httpd.logrotate
  apache/repos/extra-x86_64/httpd.service

+
 /PKGBUILD  |  336 +++
 /apache.conf.d |   30 +++
 /apache.install|   14 +
 /apache.tmpfiles.conf  |2 
 /apachectl-confd.patch |   30 +++
 /arch.layout   |   44 
 /httpd.logrotate   |   12 +
 /httpd.service |   30 +++
 extra-i686/PKGBUILD|  168 -
 extra-i686/apache.conf.d   |   15 -
 extra-i686/apache.install  |7 
 extra-i686/apache.tmpfiles.conf|1 
 extra-i686/apachectl-confd.patch   |   15 -
 extra-i686/arch.layout |   22 --
 extra-i686/httpd.logrotate |6 
 extra-i686/httpd.service   |   15 -
 extra-x86_64/PKGBUILD  |  168 -
 extra-x86_64/apache.conf.d |   15 -
 extra-x86_64/apache.install|7 
 extra-x86_64/apache.tmpfiles.conf  |1 
 extra-x86_64/apachectl-confd.patch |   15 -
 extra-x86_64/arch.layout   |   22 --
 extra-x86_64/httpd.logrotate   |6 
 extra-x86_64/httpd.service |   15 -
 24 files changed, 498 insertions(+), 498 deletions(-)

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


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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 21:27:48
  Author: arodseth
Revision: 94278

upgpkg: golangide 19-1

Modified:
  golangide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 16:50:52 UTC (rev 94277)
+++ PKGBUILD2013-07-18 19:27:48 UTC (rev 94278)
@@ -4,7 +4,7 @@
 # Contributor: Matteo matteo@gmail.com
 
 pkgname=golangide
-pkgver=18.2
+pkgver=19
 pkgrel=1
 pkgdesc='IDE for editing and building projects written in the Go programming 
language (now LiteIDE X)'
 license=('LGPL')
@@ -16,7 +16,7 @@
 
source=($pkgname.zip::https://github.com/visualfc/liteide/archive/x$pkgver.zip;
 'golangide.png'
 'golangide.sh')
-sha256sums=('0436914bfb6bb829d4e3dd33e0ae48798d82e83e78507c51423aba09e936b191'
+sha256sums=('182694341940878cf5df4f083a750659bffc97eb4ae517410e157bebc14f97df'
 '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
 '93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
 



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 21:28:01
  Author: arodseth
Revision: 94279

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

Added:
  golangide/repos/community-i686/PKGBUILD
(from rev 94278, golangide/trunk/PKGBUILD)
  golangide/repos/community-i686/golangide.png
(from rev 94278, golangide/trunk/golangide.png)
  golangide/repos/community-i686/golangide.sh
(from rev 94278, golangide/trunk/golangide.sh)
  golangide/repos/community-x86_64/PKGBUILD
(from rev 94278, golangide/trunk/PKGBUILD)
  golangide/repos/community-x86_64/golangide.png
(from rev 94278, golangide/trunk/golangide.png)
  golangide/repos/community-x86_64/golangide.sh
(from rev 94278, golangide/trunk/golangide.sh)
Deleted:
  golangide/repos/community-i686/PKGBUILD
  golangide/repos/community-i686/golangide.png
  golangide/repos/community-i686/golangide.sh
  golangide/repos/community-x86_64/PKGBUILD
  golangide/repos/community-x86_64/golangide.png
  golangide/repos/community-x86_64/golangide.sh

---+
 /PKGBUILD |  174 
 /golangide.sh |   14 +++
 community-i686/PKGBUILD   |   87 
 community-i686/golangide.sh   |7 -
 community-x86_64/PKGBUILD |   87 
 community-x86_64/golangide.sh |7 -
 6 files changed, 188 insertions(+), 188 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-18 19:27:48 UTC (rev 94278)
+++ community-i686/PKGBUILD 2013-07-18 19:28:01 UTC (rev 94279)
@@ -1,87 +0,0 @@
-#$Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: spambanane happy.ho...@gmx.de
-# Contributor: Matteo matteo@gmail.com
-
-pkgname=golangide
-pkgver=18.2
-pkgrel=1
-pkgdesc='IDE for editing and building projects written in the Go programming 
language (now LiteIDE X)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'libpng12' 'glib2' 'qt5-base' 'qt5-webkit')
-makedepends=('gendesk')
-options=('!strip')
-source=($pkgname.zip::https://github.com/visualfc/liteide/archive/x$pkgver.zip;
-'golangide.png'
-'golangide.sh')
-sha256sums=('0436914bfb6bb829d4e3dd33e0ae48798d82e83e78507c51423aba09e936b191'
-'47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
-'93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
-
-prepare() {
-  cd $srcdir
-
-  gendesk -n --name 'Golang IDE' --pkgname $pkgname --pkgdesc $pkgdesc
-  cd liteide-x$pkgver/build
-  chmod +x build_linux.sh
-}
-
-build() {
-  cd $srcdir/liteide-x$pkgver/build
-
-  msg2 'Compiling...'
-  QTDIR=/usr ./build_linux.sh
-
-  # Fixing insecure RPATH, need to test if this is still needed
-  msg2 'Fixing...'
-  cd ../liteidex
-  find . -name *.so -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-}
-
-package() {
-  cd $srcdir/liteide-x$pkgver/build/liteide
-
-  msg2 'Creating directories...'
-  mkdir -p \
-$pkgdir/usr/lib/liteide \
-$pkgdir/usr/share/liteide \
-$pkgdir/usr/share/doc/$pkgname
-
-  msg2 'Packaging executables...'
-  for binary in goastview goapi goexec godocview liteide; do
-install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
-  done
-  install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
-
-  cd $srcdir/liteide-x$pkgver/liteidex
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* os_deploy/* $pkgdir/usr/share/liteide
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* $pkgdir/usr/lib/liteide
-  cp -r liteide/bin/libliteapp.* $pkgdir/usr/lib/
-  chmod -x $pkgdir/usr/lib/liteide/plugins/*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 LGPL_EXCEPTION.TXT \
-$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 $pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  msg2 'Cleaning up...'
-  rm -rf $pkgdir/usr/share/$pkgname/doc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: golangide/repos/community-i686/PKGBUILD (from rev 94278, 
golangide/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 19:28:01 UTC (rev 94279)
@@ -0,0 +1,87 @@
+#$Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: spambanane happy.ho...@gmx.de
+# Contributor: Matteo matteo@gmail.com
+
+pkgname=golangide
+pkgver=19
+pkgrel=1
+pkgdesc='IDE for editing and building projects written in the Go programming 
language (now LiteIDE X)'

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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 21:38:43
  Author: arodseth
Revision: 94281

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 19:38:36 UTC (rev 94280)
+++ PKGBUILD2013-07-18 19:38:43 UTC (rev 94281)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
-# Contributor: Arvid Ephraim Picciani a...@exys.org
-# Contributor: Michael Krauss hippodri...@gmx.net
-
-pkgname=python-pyparsing
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='General parsing module for Python'
-arch=('any')
-url='http://pyparsing.wikispaces.com'
-license=('MIT')
-makedepends=('python')
-source=(http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz;)
-sha256sums=('79f9a468b7faad54122369b333e09a7cb80e9b68af4401bf0d19c1e7af646d0e')
-
-package() {
-  cd $srcdir/pyparsing-$pkgver
-  rm -rf build
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyparsing/repos/community-any/PKGBUILD (from rev 94280, 
python-pyparsing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-18 19:38:43 UTC (rev 94281)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
+# Contributor: Arvid Ephraim Picciani a...@exys.org
+# Contributor: Michael Krauss hippodri...@gmx.net
+
+pkgname=python-pyparsing
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='General parsing module for Python'
+arch=('any')
+url='http://pyparsing.wikispaces.com'
+license=('MIT')
+makedepends=('python')
+source=(http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz;)
+sha256sums=('0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4')
+
+package() {
+  cd $srcdir/pyparsing-$pkgver
+
+  rm -rf build
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 21:38:36
  Author: arodseth
Revision: 94280

upgpkg: python-pyparsing 2.0.1-1

Modified:
  python-pyparsing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 19:28:01 UTC (rev 94279)
+++ PKGBUILD2013-07-18 19:38:36 UTC (rev 94280)
@@ -6,7 +6,7 @@
 # Contributor: Michael Krauss hippodri...@gmx.net
 
 pkgname=python-pyparsing
-pkgver=2.0.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc='General parsing module for Python'
 arch=('any')
@@ -14,10 +14,11 @@
 license=('MIT')
 makedepends=('python')
 source=(http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz;)
-sha256sums=('79f9a468b7faad54122369b333e09a7cb80e9b68af4401bf0d19c1e7af646d0e')
+sha256sums=('0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4')
 
 package() {
   cd $srcdir/pyparsing-$pkgver
+
   rm -rf build
   python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE



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

2013-07-18 Thread Jelle van der Waa
Date: Thursday, July 18, 2013 @ 21:46:41
  Author: jelle
Revision: 94282

upgpkg: python2-eyed3 0.7.2-1

Modified:
  python2-eyed3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 19:38:43 UTC (rev 94281)
+++ PKGBUILD2013-07-18 19:46:41 UTC (rev 94282)
@@ -4,28 +4,30 @@
 #Contributor: cdhotfire cdhotf...@gmail.com
 
 pkgname=python2-eyed3
-pkgver=0.7.1
-pkgrel=2
+pkgver=0.7.2
+pkgrel=1
 pkgdesc=A Python module and program for processing information about mp3 
files
 arch=(any)
 url=http://eyed3.nicfit.net/;
 license=('GPL')
 depends=('python2')
 makedepends=('python2-distribute')
-source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz 
fix_setting_tcmp_frame.patch)
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz 
http://pkgbuild.com/~jelle/paver-minilib.zip)
 options=(!emptydirs)
 replaces=('python-eyed3')
 provides=('python-eyed3')
-md5sums=('05fc6031fef62146c1aca188d13a62a6'
- '3b207f52fda00cb178e7b351fc80bdfb')
+md5sums=('e659838e5c4656c440637548353eb7ba'
+ '0e1e58f4a2b7183b3eba825fbcc5d2df')
 
+
 build() {
   cd $srcdir/eyeD3-$pkgver
-  patch -Np1 -i $srcdir/fix_setting_tcmp_frame.patch 
+  cp $srcdir/paver-minilib.zip .
   python2 setup.py build
 }
 package() {
   cd $srcdir/eyeD3-$pkgver
+  cp $srcdir/paver-minilib.zip .
   python2 setup.py install --root=${pkgdir} --optimize=1 
   sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
 } 



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

2013-07-18 Thread Jelle van der Waa
Date: Thursday, July 18, 2013 @ 21:47:16
  Author: jelle
Revision: 94283

archrelease: copy trunk to community-any

Added:
  python2-eyed3/repos/community-any/PKGBUILD
(from rev 94282, python2-eyed3/trunk/PKGBUILD)
  python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch
(from rev 94282, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
Deleted:
  python2-eyed3/repos/community-any/PKGBUILD
  python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch

--+
 PKGBUILD |   64 +
 fix_setting_tcmp_frame.patch |   42 +-
 2 files changed, 54 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 19:46:41 UTC (rev 94282)
+++ PKGBUILD2013-07-18 19:47:16 UTC (rev 94283)
@@ -1,31 +0,0 @@
-#$Id$
-#Maintainer: Aaron Griffin aa...@archlinux.org
-#Contributor: Federico Quagliata (quaqo) qu...@despammed.com
-#Contributor: cdhotfire cdhotf...@gmail.com
-
-pkgname=python2-eyed3
-pkgver=0.7.1
-pkgrel=2
-pkgdesc=A Python module and program for processing information about mp3 
files
-arch=(any)
-url=http://eyed3.nicfit.net/;
-license=('GPL')
-depends=('python2')
-makedepends=('python2-distribute')
-source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz 
fix_setting_tcmp_frame.patch)
-options=(!emptydirs)
-replaces=('python-eyed3')
-provides=('python-eyed3')
-md5sums=('05fc6031fef62146c1aca188d13a62a6'
- '3b207f52fda00cb178e7b351fc80bdfb')
-
-build() {
-  cd $srcdir/eyeD3-$pkgver
-  patch -Np1 -i $srcdir/fix_setting_tcmp_frame.patch 
-  python2 setup.py build
-}
-package() {
-  cd $srcdir/eyeD3-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1 
-  sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
-} 

Copied: python2-eyed3/repos/community-any/PKGBUILD (from rev 94282, 
python2-eyed3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-18 19:47:16 UTC (rev 94283)
@@ -0,0 +1,33 @@
+#$Id$
+#Maintainer: Aaron Griffin aa...@archlinux.org
+#Contributor: Federico Quagliata (quaqo) qu...@despammed.com
+#Contributor: cdhotfire cdhotf...@gmail.com
+
+pkgname=python2-eyed3
+pkgver=0.7.2
+pkgrel=1
+pkgdesc=A Python module and program for processing information about mp3 
files
+arch=(any)
+url=http://eyed3.nicfit.net/;
+license=('GPL')
+depends=('python2')
+makedepends=('python2-distribute')
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz 
http://pkgbuild.com/~jelle/paver-minilib.zip)
+options=(!emptydirs)
+replaces=('python-eyed3')
+provides=('python-eyed3')
+md5sums=('e659838e5c4656c440637548353eb7ba'
+ '0e1e58f4a2b7183b3eba825fbcc5d2df')
+
+
+build() {
+  cd $srcdir/eyeD3-$pkgver
+  cp $srcdir/paver-minilib.zip .
+  python2 setup.py build
+}
+package() {
+  cd $srcdir/eyeD3-$pkgver
+  cp $srcdir/paver-minilib.zip .
+  python2 setup.py install --root=${pkgdir} --optimize=1 
+  sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
+} 

Deleted: fix_setting_tcmp_frame.patch
===
--- fix_setting_tcmp_frame.patch2013-07-18 19:46:41 UTC (rev 94282)
+++ fix_setting_tcmp_frame.patch2013-07-18 19:47:16 UTC (rev 94283)
@@ -1,21 +0,0 @@
-# HG changeset patch
-# User Travis Shirk tra...@pobox.com
-# Date 1366683753 21600
-# Branch stable
-# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
-# Parent  e2ebd8a246ecca8340bbc4ac858c7a946524571f
-Fix for setting of non standard text frames. Fixes #26
-
-diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r 
bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
 a/src/eyed3/id3/frames.py  Wed Mar 13 21:28:01 2013 -0600
-+++ b/src/eyed3/id3/frames.py  Mon Apr 22 20:22:33 2013 -0600
-@@ -1364,7 +1364,8 @@
- the same Id is already in the list it's value is changed, otherwise
- the frame is added.
- '''
--assert(fid[0] == T and fid in list(ID3_FRAMES.keys()))
-+assert(fid[0] == T and (fid in ID3_FRAMES or
-+  fid in NONSTANDARD_ID3_FRAMES))
- 
- if fid in self:
- self[fid][0].text = text

Copied: python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch (from 
rev 94282, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
===
--- fix_setting_tcmp_frame.patch(rev 0)
+++ fix_setting_tcmp_frame.patch2013-07-18 19:47:16 UTC (rev 94283)
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User Travis Shirk tra...@pobox.com
+# Date 1366683753 21600
+# Branch stable
+# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
+# Parent  e2ebd8a246ecca8340bbc4ac858c7a946524571f
+Fix for setting of non standard text frames. Fixes #26
+
+diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f 

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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:08:06
  Author: jgc
Revision: 190844

upgpkg: gdm 3.8.3.1-1

Modified:
  gdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 19:19:10 UTC (rev 190843)
+++ PKGBUILD2013-07-18 20:08:06 UTC (rev 190844)
@@ -4,7 +4,7 @@
 
 pkgbase=gdm
 pkgname=(gdm libgdm)
-pkgver=3.8.3
+pkgver=3.8.3.1
 pkgrel=1
 pkgdesc=Gnome Display Manager
 arch=(i686 x86_64)
@@ -16,13 +16,15 @@
 checkdepends=('check')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz
 fix_external_program_directories.patch)
-sha256sums=('1d0ed61ac2b184c62acb0d09a5b7c03793b5793599dbb6888d7fe8d1fb6e8da2'
+sha256sums=('a8c8a32803e32c5d087c75c6be8160cfe4d15843953f07b599d653bac471320e'
 'a878680734e35c1d66252cbcfe678c3961b5ff0fa16302f8796a5e7e65ffe4a2')
 
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i $srcdir/fix_external_program_directories.patch
+}
 build() {
   cd $pkgbase-$pkgver
-  patch -Np1 -i $srcdir/fix_external_program_directories.patch
-
   ./configure \
 --prefix=/usr \
 --sbindir=/usr/bin \



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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:08:14
  Author: jgc
Revision: 190845

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

Added:
  gdm/repos/extra-i686/PKGBUILD
(from rev 190844, gdm/trunk/PKGBUILD)
  gdm/repos/extra-i686/fix_external_program_directories.patch
(from rev 190844, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-i686/gdm.install
(from rev 190844, gdm/trunk/gdm.install)
  gdm/repos/extra-x86_64/PKGBUILD
(from rev 190844, gdm/trunk/PKGBUILD)
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
(from rev 190844, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-x86_64/gdm.install
(from rev 190844, gdm/trunk/gdm.install)
Deleted:
  gdm/repos/extra-i686/PKGBUILD
  gdm/repos/extra-i686/fix_external_program_directories.patch
  gdm/repos/extra-i686/gdm.install
  gdm/repos/extra-x86_64/PKGBUILD
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
  gdm/repos/extra-x86_64/gdm.install

-+
 /PKGBUILD   |  162 ++
 /fix_external_program_directories.patch |   24 ++
 /gdm.install|   60 ++
 extra-i686/PKGBUILD |   79 
 extra-i686/fix_external_program_directories.patch   |   12 -
 extra-i686/gdm.install  |   30 ---
 extra-x86_64/PKGBUILD   |   79 
 extra-x86_64/fix_external_program_directories.patch |   12 -
 extra-x86_64/gdm.install|   30 ---
 9 files changed, 246 insertions(+), 242 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 20:08:06 UTC (rev 190844)
+++ extra-i686/PKGBUILD 2013-07-18 20:08:14 UTC (rev 190845)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=gdm
-pkgname=(gdm libgdm)
-pkgver=3.8.3
-pkgrel=1
-pkgdesc=Gnome Display Manager
-arch=(i686 x86_64)
-license=(GPL)
-url=http://www.gnome.org;
-options=('!libtool')
-depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server)
-makedepends=(itstool intltool gnome-doc-utils gobject-introspection)
-checkdepends=('check')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz
-fix_external_program_directories.patch)
-sha256sums=('1d0ed61ac2b184c62acb0d09a5b7c03793b5793599dbb6888d7fe8d1fb6e8da2'
-'a878680734e35c1d66252cbcfe678c3961b5ff0fa16302f8796a5e7e65ffe4a2')
-
-build() {
-  cd $pkgbase-$pkgver
-  patch -Np1 -i $srcdir/fix_external_program_directories.patch
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib/gdm \
---localstatedir=/var \
---disable-static \
---disable-schemas-compile \
---with-at-spi-registryd-directory=/usr/lib/at-spi2-core \
---with-check-accelerated-directory=/usr/lib/gnome-session \
---with-authentication-agent-directory=/usr/lib/polkit-gnome \
---without-tcp-wrappers \
---without-console-kit \
---with-systemd \
---with-default-pam-config=exherbo
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
-
-  make
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  make check
-}
-
-package_gdm() {
-  depends+=(libgdm)
-  optdepends=('fprintd: fingerprint authentication')
-  backup=(etc/pam.d/gdm-autologin etc/pam.d/gdm-fingerprint 
etc/pam.d/gdm-launch-environment
-  etc/pam.d/gdm-password etc/pam.d/gdm-smartcard etc/gdm/custom.conf
-  etc/gdm/Xsession
-  etc/gdm/PostSession/Default etc/gdm/PreSession/Default)
-  groups=(gnome)
-  install=gdm.install
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=$pkgdir install
-
-  chmod 1770 $pkgdir/var/log/gdm
-  chmod 700 $pkgdir/var/lib/gdm/.config/dconf
-  rm -r $pkgdir/var/run $pkgdir/var/gdm
-
-### Split libgdm
-  make -C gui/libgdm DESTDIR=$pkgdir uninstall
-}
-
-package_libgdm() {
-  pkgdesc=GDM support library
-  depends=(systemd)
-
-  cd $pkgbase-$pkgver
-  make -C gui/libgdm DESTDIR=$pkgdir install
-}

Copied: gdm/repos/extra-i686/PKGBUILD (from rev 190844, gdm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-18 20:08:14 UTC (rev 190845)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=gdm
+pkgname=(gdm libgdm)
+pkgver=3.8.3.1
+pkgrel=1
+pkgdesc=Gnome Display Manager
+arch=(i686 x86_64)
+license=(GPL)

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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:16:52
  Author: jgc
Revision: 190846

upgpkg: goffice 0.10.4-1

Modified:
  goffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 20:08:14 UTC (rev 190845)
+++ PKGBUILD2013-07-18 20:16:52 UTC (rev 190846)
@@ -2,7 +2,7 @@
 # Maintainer: Aaron Griffin aa...@archlinux.org
 
 pkgname=goffice
-pkgver=0.10.3
+pkgver=0.10.4
 pkgrel=1
 pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
 depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd0048b25f7687eede9b0a8d712922113995db74a095bf43ad150d01b236bf2')
+sha256sums=('30cb91693abff241e1b14b741ac23bc588f428b4524b12e3fecd1ea3f0bc67ba')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:16:59
  Author: jgc
Revision: 190847

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 20:16:52 UTC (rev 190846)
+++ extra-i686/PKGBUILD 2013-07-18 20:16:59 UTC (rev 190847)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-
-pkgname=goffice
-pkgver=0.10.3
-pkgrel=1
-pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
-arch=('i686' 'x86_64')
-url=http://www.gnome.org;
-license=('GPL')
-options=('!libtool')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd0048b25f7687eede9b0a8d712922113995db74a095bf43ad150d01b236bf2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: goffice/repos/extra-i686/PKGBUILD (from rev 190846, 
goffice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-18 20:16:59 UTC (rev 190847)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Aaron Griffin aa...@archlinux.org
+
+pkgname=goffice
+pkgver=0.10.4
+pkgrel=1
+pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL')
+options=('!libtool')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('30cb91693abff241e1b14b741ac23bc588f428b4524b12e3fecd1ea3f0bc67ba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-introspection
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-18 20:16:52 UTC (rev 190846)
+++ extra-x86_64/PKGBUILD   2013-07-18 20:16:59 UTC (rev 190847)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-
-pkgname=goffice
-pkgver=0.10.3
-pkgrel=1
-pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
-arch=('i686' 'x86_64')
-url=http://www.gnome.org;
-license=('GPL')
-options=('!libtool')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd0048b25f7687eede9b0a8d712922113995db74a095bf43ad150d01b236bf2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: goffice/repos/extra-x86_64/PKGBUILD (from rev 190846, 
goffice/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-18 20:16:59 UTC (rev 190847)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Aaron Griffin aa...@archlinux.org
+
+pkgname=goffice
+pkgver=0.10.4
+pkgrel=1
+pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL')
+options=('!libtool')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('30cb91693abff241e1b14b741ac23bc588f428b4524b12e3fecd1ea3f0bc67ba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  

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

2013-07-18 Thread Florian Pritz
Date: Thursday, July 18, 2013 @ 22:22:58
  Author: bluewind
Revision: 94284

upgpkg: wine 1.6-1

upstream update

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 19:47:16 UTC (rev 94283)
+++ PKGBUILD2013-07-18 20:22:58 UTC (rev 94284)
@@ -5,14 +5,14 @@
 # Contributor: Giovanni Scafora giova...@archlinux.org
 
 pkgname=wine
-pkgver=1.6rc5
+pkgver=1.6
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
 
 
source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
 30-win32-aliases.conf)
-md5sums=('43d11b6ea064e3594060dd5a527971c6'
+md5sums=('47cf1e121d395e9c8ca1a4ab88f1e658'
  'SKIP'
  '1ff4e467f59409272088d92173a0f801')
 



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

2013-07-18 Thread Florian Pritz
Date: Thursday, July 18, 2013 @ 22:23:03
  Author: bluewind
Revision: 94285

archrelease: copy trunk to multilib-x86_64

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

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  354 
 wine.install  |   24 +--
 3 files changed, 209 insertions(+), 209 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2013-07-18 20:22:58 UTC (rev 94284)
+++ 30-win32-aliases.conf   2013-07-18 20:23:03 UTC (rev 94285)
@@ -1,20 +0,0 @@
-?xml version=1.0?
-!DOCTYPE fontconfig SYSTEM fonts.dtd
-fontconfig
-  alias binding=same
-familyMS Shell Dlg/family
-acceptfamilyMicrosoft Sans Serif/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-  alias binding=same
-familyMS Shell Dlg 2/family
-acceptfamilyTahoma/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-
-  alias binding=same
-familyMS Sans Serif/family
-preferfamilyMicrosoft Sans Serif/family/prefer
-defaultfamilysans-serif/family/default
-  /alias
-/fontconfig

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 94284, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2013-07-18 20:23:03 UTC (rev 94285)
@@ -0,0 +1,20 @@
+?xml version=1.0?
+!DOCTYPE fontconfig SYSTEM fonts.dtd
+fontconfig
+  alias binding=same
+familyMS Shell Dlg/family
+acceptfamilyMicrosoft Sans Serif/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+  alias binding=same
+familyMS Shell Dlg 2/family
+acceptfamilyTahoma/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+
+  alias binding=same
+familyMS Sans Serif/family
+preferfamilyMicrosoft Sans Serif/family/prefer
+defaultfamilysans-serif/family/default
+  /alias
+/fontconfig

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 20:22:58 UTC (rev 94284)
+++ PKGBUILD2013-07-18 20:23:03 UTC (rev 94285)
@@ -1,177 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-
-pkgname=wine
-pkgver=1.6rc5
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-md5sums=('43d11b6ea064e3594060dd5a527971c6'
- 'SKIP'
- '1ff4e467f59409272088d92173a0f801')
-
-pkgdesc=A compatibility layer for running Windows programs
-url=http://www.winehq.com;
-arch=(i686 x86_64)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc=4.5.0-2'  'gcc-multilib=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libxml2 lib32-libxml2
-  libldap lib32-libldap
-  lcmslib32-lcms
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  oss
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  lcmslib32-lcms
-  libxml2 lib32-libxml2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama 

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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:27:22
  Author: jgc
Revision: 190848

upgpkg: gnumeric 1.12.4-1

Modified:
  gnumeric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 20:16:59 UTC (rev 190847)
+++ PKGBUILD2013-07-18 20:27:22 UTC (rev 190848)
@@ -3,7 +3,7 @@
 # Contributor: Kritoke typeoli...@yahoo.com
 
 pkgname=gnumeric
-pkgver=1.12.3
+pkgver=1.12.4
 pkgrel=1
 pkgdesc=A GNOME Spreadsheet Program
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
 revert-warnings.patch)
-sha256sums=('b332e6785077a2e7febf26a6ccac73e9ae1813c365bc3bf851fb27a5477713a6'
+sha256sums=('562e17d8b56f4587e33f54adff89a65ede6e6e0c57bcd561589453d8edae80bd'
 'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
 
 prepare() {



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

2013-07-18 Thread Jan de Groot
Date: Thursday, July 18, 2013 @ 22:27:30
  Author: jgc
Revision: 190849

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

Added:
  gnumeric/repos/extra-i686/PKGBUILD
(from rev 190848, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-i686/gnumeric.install
(from rev 190848, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-i686/revert-warnings.patch
(from rev 190848, gnumeric/trunk/revert-warnings.patch)
  gnumeric/repos/extra-x86_64/PKGBUILD
(from rev 190848, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-x86_64/gnumeric.install
(from rev 190848, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-x86_64/revert-warnings.patch
(from rev 190848, gnumeric/trunk/revert-warnings.patch)
Deleted:
  gnumeric/repos/extra-i686/PKGBUILD
  gnumeric/repos/extra-i686/gnumeric.install
  gnumeric/repos/extra-i686/revert-warnings.patch
  gnumeric/repos/extra-x86_64/PKGBUILD
  gnumeric/repos/extra-x86_64/gnumeric.install
  gnumeric/repos/extra-x86_64/revert-warnings.patch

+
 /PKGBUILD  |   94 +++
 /gnumeric.install  |   38 ++
 /revert-warnings.patch |   22 
 extra-i686/PKGBUILD|   47 -
 extra-i686/gnumeric.install|   19 ---
 extra-i686/revert-warnings.patch   |   11 
 extra-x86_64/PKGBUILD  |   47 -
 extra-x86_64/gnumeric.install  |   19 ---
 extra-x86_64/revert-warnings.patch |   11 
 9 files changed, 154 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-18 20:27:22 UTC (rev 190848)
+++ extra-i686/PKGBUILD 2013-07-18 20:27:30 UTC (rev 190849)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger e...@archlinux.org
-# Contributor: Kritoke typeoli...@yahoo.com
-
-pkgname=gnumeric
-pkgver=1.12.3
-pkgrel=1
-pkgdesc=A GNOME Spreadsheet Program
-arch=('i686' 'x86_64')
-url=http://www.gnome.org/projects/gnumeric/;
-license=('GPL')
-depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils'
- 'gobject-introspection')
-optdepends=('python2-gobject: for python plugin support'
-'perl: for perl plugin support'
-'psiconv: for Psion 5 file support'
-'yelp: for viewing the help manual')
-install=gnumeric.install
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
-revert-warnings.patch)
-sha256sums=('b332e6785077a2e7febf26a6ccac73e9ae1813c365bc3bf851fb27a5477713a6'
-'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  patch -Np0 -i ../revert-warnings.patch
-
-  # Remove invalid mime type. (FS#26338)
-  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
-
-  autoreconf -fi
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile --enable-introspection
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gnumeric/repos/extra-i686/PKGBUILD (from rev 190848, 
gnumeric/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-18 20:27:30 UTC (rev 190849)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Eric Belanger e...@archlinux.org
+# Contributor: Kritoke typeoli...@yahoo.com
+
+pkgname=gnumeric
+pkgver=1.12.4
+pkgrel=1
+pkgdesc=A GNOME Spreadsheet Program
+arch=('i686' 'x86_64')
+url=http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils'
+ 'gobject-introspection')
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+install=gnumeric.install
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+revert-warnings.patch)
+sha256sums=('562e17d8b56f4587e33f54adff89a65ede6e6e0c57bcd561589453d8edae80bd'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  patch -Np0 -i ../revert-warnings.patch
+
+  # Remove invalid mime type. (FS#26338)
+  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
+
+  autoreconf -fi
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+

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

2013-07-18 Thread Florian Pritz
Date: Thursday, July 18, 2013 @ 22:35:12
  Author: bluewind
Revision: 94286

archrelease: copy trunk to community-i686

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

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  354 
 wine.install  |   24 +--
 3 files changed, 209 insertions(+), 209 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2013-07-18 20:23:03 UTC (rev 94285)
+++ 30-win32-aliases.conf   2013-07-18 20:35:12 UTC (rev 94286)
@@ -1,20 +0,0 @@
-?xml version=1.0?
-!DOCTYPE fontconfig SYSTEM fonts.dtd
-fontconfig
-  alias binding=same
-familyMS Shell Dlg/family
-acceptfamilyMicrosoft Sans Serif/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-  alias binding=same
-familyMS Shell Dlg 2/family
-acceptfamilyTahoma/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-
-  alias binding=same
-familyMS Sans Serif/family
-preferfamilyMicrosoft Sans Serif/family/prefer
-defaultfamilysans-serif/family/default
-  /alias
-/fontconfig

Copied: wine/repos/community-i686/30-win32-aliases.conf (from rev 94285, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2013-07-18 20:35:12 UTC (rev 94286)
@@ -0,0 +1,20 @@
+?xml version=1.0?
+!DOCTYPE fontconfig SYSTEM fonts.dtd
+fontconfig
+  alias binding=same
+familyMS Shell Dlg/family
+acceptfamilyMicrosoft Sans Serif/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+  alias binding=same
+familyMS Shell Dlg 2/family
+acceptfamilyTahoma/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+
+  alias binding=same
+familyMS Sans Serif/family
+preferfamilyMicrosoft Sans Serif/family/prefer
+defaultfamilysans-serif/family/default
+  /alias
+/fontconfig

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 20:23:03 UTC (rev 94285)
+++ PKGBUILD2013-07-18 20:35:12 UTC (rev 94286)
@@ -1,177 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-
-pkgname=wine
-pkgver=1.6rc5
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-md5sums=('43d11b6ea064e3594060dd5a527971c6'
- 'SKIP'
- '1ff4e467f59409272088d92173a0f801')
-
-pkgdesc=A compatibility layer for running Windows programs
-url=http://www.winehq.com;
-arch=(i686 x86_64)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc=4.5.0-2'  'gcc-multilib=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libxml2 lib32-libxml2
-  libldap lib32-libldap
-  lcmslib32-lcms
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  oss
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  lcmslib32-lcms
-  libxml2 lib32-libxml2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  

[arch-commits] Commit in (7 files)

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 23:34:45
  Author: arodseth
Revision: 94287

Added gauche. 18 votes in AUR.

Added:
  gauche/
  gauche/repos/
  gauche/repos/community-i686/
  gauche/repos/community-x86_64/
  gauche/trunk/
  gauche/trunk/PKGBUILD
  gauche/trunk/gauche.install

+
 PKGBUILD   |   33 +
 gauche.install |   21 +
 2 files changed, 54 insertions(+)

Added: gauche/trunk/PKGBUILD
===
--- gauche/trunk/PKGBUILD   (rev 0)
+++ gauche/trunk/PKGBUILD   2013-07-18 21:34:45 UTC (rev 94287)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Motohiro Ueki ueki@gmail.com
+# Contributor: nkoizu nko...@gmail.com
+
+pkgname=gauche
+pkgver=0.9.3.3
+pkgrel=1
+url='http://practical-scheme.net/gauche/'
+pkgdesc='R5RS Scheme implementation (provides gosh)'
+depends=('gdbm' 'zlib' 'slib')
+license=('BSD')
+arch=('x86_64' 'i686')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz;)
+sha256sums=('3d8b70075faa0f7a24f8d112cc102ee3e1066680cdd19d324d59f33fab79caac')
+
+build() {
+  cd $srcdir/Gauche-$pkgver
+
+  ./configure --prefix=/usr --enable-multibyte=utf-8 \
+--enable-threads=pthreads
+  make
+}
+package() {
+  cd $srcdir/Gauche-$pkgver
+
+  make DESTDIR=$pkgdir install-pkg install-doc
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: gauche/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gauche/trunk/gauche.install
===
--- gauche/trunk/gauche.install (rev 0)
+++ gauche/trunk/gauche.install 2013-07-18 21:34:45 UTC (rev 94287)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(gauche-refe.info gauche-refj.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+  /usr/bin/gosh -ftest -uslib -Erequire 'new-catalog -Eexit;
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 23:59:38
  Author: arodseth
Revision: 94288

upgpkg: gauche 0.9.3.3-1

Modified:
  gauche/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 21:34:45 UTC (rev 94287)
+++ PKGBUILD2013-07-18 21:59:38 UTC (rev 94288)
@@ -21,13 +21,14 @@
 
   ./configure --prefix=/usr --enable-multibyte=utf-8 \
 --enable-threads=pthreads
-  make
+  make -j1
 }
+
 package() {
   cd $srcdir/Gauche-$pkgver
 
-  make DESTDIR=$pkgdir install-pkg install-doc
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  make -j1 DESTDIR=$pkgdir install-pkg install-doc
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-07-18 Thread Alexander Rødseth
Date: Thursday, July 18, 2013 @ 23:59:48
  Author: arodseth
Revision: 94289

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

Added:
  gauche/repos/community-i686/PKGBUILD
(from rev 94288, gauche/trunk/PKGBUILD)
  gauche/repos/community-i686/gauche.install
(from rev 94288, gauche/trunk/gauche.install)
  gauche/repos/community-x86_64/PKGBUILD
(from rev 94288, gauche/trunk/PKGBUILD)
  gauche/repos/community-x86_64/gauche.install
(from rev 94288, gauche/trunk/gauche.install)

-+
 community-i686/PKGBUILD |   34 ++
 community-i686/gauche.install   |   21 +
 community-x86_64/PKGBUILD   |   34 ++
 community-x86_64/gauche.install |   21 +
 4 files changed, 110 insertions(+)

Copied: gauche/repos/community-i686/PKGBUILD (from rev 94288, 
gauche/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-18 21:59:48 UTC (rev 94289)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Motohiro Ueki ueki@gmail.com
+# Contributor: nkoizu nko...@gmail.com
+
+pkgname=gauche
+pkgver=0.9.3.3
+pkgrel=1
+url='http://practical-scheme.net/gauche/'
+pkgdesc='R5RS Scheme implementation (provides gosh)'
+depends=('gdbm' 'zlib' 'slib')
+license=('BSD')
+arch=('x86_64' 'i686')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz;)
+sha256sums=('3d8b70075faa0f7a24f8d112cc102ee3e1066680cdd19d324d59f33fab79caac')
+
+build() {
+  cd $srcdir/Gauche-$pkgver
+
+  ./configure --prefix=/usr --enable-multibyte=utf-8 \
+--enable-threads=pthreads
+  make -j1
+}
+
+package() {
+  cd $srcdir/Gauche-$pkgver
+
+  make -j1 DESTDIR=$pkgdir install-pkg install-doc
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gauche/repos/community-i686/gauche.install (from rev 94288, 
gauche/trunk/gauche.install)
===
--- community-i686/gauche.install   (rev 0)
+++ community-i686/gauche.install   2013-07-18 21:59:48 UTC (rev 94289)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(gauche-refe.info gauche-refj.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+  /usr/bin/gosh -ftest -uslib -Erequire 'new-catalog -Eexit;
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: gauche/repos/community-x86_64/PKGBUILD (from rev 94288, 
gauche/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-18 21:59:48 UTC (rev 94289)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Motohiro Ueki ueki@gmail.com
+# Contributor: nkoizu nko...@gmail.com
+
+pkgname=gauche
+pkgver=0.9.3.3
+pkgrel=1
+url='http://practical-scheme.net/gauche/'
+pkgdesc='R5RS Scheme implementation (provides gosh)'
+depends=('gdbm' 'zlib' 'slib')
+license=('BSD')
+arch=('x86_64' 'i686')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz;)
+sha256sums=('3d8b70075faa0f7a24f8d112cc102ee3e1066680cdd19d324d59f33fab79caac')
+
+build() {
+  cd $srcdir/Gauche-$pkgver
+
+  ./configure --prefix=/usr --enable-multibyte=utf-8 \
+--enable-threads=pthreads
+  make -j1
+}
+
+package() {
+  cd $srcdir/Gauche-$pkgver
+
+  make -j1 DESTDIR=$pkgdir install-pkg install-doc
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gauche/repos/community-x86_64/gauche.install (from rev 94288, 
gauche/trunk/gauche.install)
===
--- community-x86_64/gauche.install (rev 0)
+++ community-x86_64/gauche.install 2013-07-18 21:59:48 UTC (rev 94289)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(gauche-refe.info gauche-refj.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+  /usr/bin/gosh -ftest -uslib -Erequire 'new-catalog -Eexit;
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:38
  Author: svenstaro
Revision: 190853

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  nepomuk-core/repos/kde-unstable-i686/PKGBUILD
(from rev 190852, nepomuk-core/kde-unstable/PKGBUILD)
  nepomuk-core/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190852, nepomuk-core/kde-unstable/PKGBUILD)
Deleted:
  nepomuk-core/repos/kde-unstable-i686/PKGBUILD
  nepomuk-core/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:19:32 UTC (rev 190852)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:19:38 UTC (rev 190853)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f6dee1e4f10daf7a15d74dec9a4f11ea3ef8fa97')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/kde-unstable-i686/PKGBUILD (from rev 190852, 
nepomuk-core/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:19:38 UTC (rev 190853)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f6dee1e4f10daf7a15d74dec9a4f11ea3ef8fa97')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:19:32 UTC (rev 190852)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:19:38 UTC (rev 190853)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f6dee1e4f10daf7a15d74dec9a4f11ea3ef8fa97')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/kde-unstable-x86_64/PKGBUILD (from rev 190852, 
nepomuk-core/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:19:38 UTC (rev 190853)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:28
  Author: svenstaro
Revision: 190851

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdelibs/repos/kde-unstable-i686/PKGBUILD
(from rev 190850, kdelibs/kde-unstable/PKGBUILD)
  kdelibs/repos/kde-unstable-i686/archlinux-menu.patch
(from rev 190850, kdelibs/kde-unstable/archlinux-menu.patch)
  kdelibs/repos/kde-unstable-i686/kde-applications-menu.patch
(from rev 190850, kdelibs/kde-unstable/kde-applications-menu.patch)
  kdelibs/repos/kde-unstable-i686/kdelibs.install
(from rev 190850, kdelibs/kde-unstable/kdelibs.install)
  kdelibs/repos/kde-unstable-i686/qt4.patch
(from rev 190850, kdelibs/kde-unstable/qt4.patch)
  kdelibs/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190850, kdelibs/kde-unstable/PKGBUILD)
  kdelibs/repos/kde-unstable-x86_64/archlinux-menu.patch
(from rev 190850, kdelibs/kde-unstable/archlinux-menu.patch)
  kdelibs/repos/kde-unstable-x86_64/kde-applications-menu.patch
(from rev 190850, kdelibs/kde-unstable/kde-applications-menu.patch)
  kdelibs/repos/kde-unstable-x86_64/kdelibs.install
(from rev 190850, kdelibs/kde-unstable/kdelibs.install)
  kdelibs/repos/kde-unstable-x86_64/qt4.patch
(from rev 190850, kdelibs/kde-unstable/qt4.patch)
Deleted:
  kdelibs/repos/kde-unstable-i686/PKGBUILD
  kdelibs/repos/kde-unstable-i686/archlinux-menu.patch
  kdelibs/repos/kde-unstable-i686/kde-applications-menu.patch
  kdelibs/repos/kde-unstable-i686/kdelibs.install
  kdelibs/repos/kde-unstable-i686/qt4.patch
  kdelibs/repos/kde-unstable-x86_64/PKGBUILD
  kdelibs/repos/kde-unstable-x86_64/archlinux-menu.patch
  kdelibs/repos/kde-unstable-x86_64/kde-applications-menu.patch
  kdelibs/repos/kde-unstable-x86_64/kdelibs.install
  kdelibs/repos/kde-unstable-x86_64/qt4.patch

-+
 /PKGBUILD   |  124 ++
 /archlinux-menu.patch   |   44 +++
 /kde-applications-menu.patch|   44 +++
 /kdelibs.install|   26 
 /qt4.patch  |   22 +++
 kde-unstable-i686/PKGBUILD  |   62 ---
 kde-unstable-i686/archlinux-menu.patch  |   22 ---
 kde-unstable-i686/kde-applications-menu.patch   |   22 ---
 kde-unstable-i686/kdelibs.install   |   13 --
 kde-unstable-i686/qt4.patch |   11 -
 kde-unstable-x86_64/PKGBUILD|   62 ---
 kde-unstable-x86_64/archlinux-menu.patch|   22 ---
 kde-unstable-x86_64/kde-applications-menu.patch |   22 ---
 kde-unstable-x86_64/kdelibs.install |   13 --
 kde-unstable-x86_64/qt4.patch   |   11 -
 15 files changed, 260 insertions(+), 260 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:19:16 UTC (rev 190850)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:19:28 UTC (rev 190851)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdelibs
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=KDE Core Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('9cedda99b4a11b8d06ca5ae627e9bdf9136503e6'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ${srcdir}/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ${srcdir}/archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i ${srcdir}/qt4.patch
-}
-
-build() {
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-  

[arch-commits] Commit in nepomuk-core/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:32
  Author: svenstaro
Revision: 190852

upgpkg: nepomuk-core 4.10.95-2

rebuild

Modified:
  nepomuk-core/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:19:28 UTC (rev 190851)
+++ PKGBUILD2013-07-18 22:19:32 UTC (rev 190852)
@@ -3,7 +3,7 @@
 
 pkgname=nepomuk-core
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
 url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdelibs/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:16
  Author: svenstaro
Revision: 190850

upgpkg: kdelibs 4.10.95-2

rebuild

Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 20:27:30 UTC (rev 190849)
+++ PKGBUILD2013-07-18 22:19:16 UTC (rev 190850)
@@ -4,7 +4,7 @@
 
 pkgname=kdelibs
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=KDE Core Libraries
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs'



[arch-commits] Commit in kdepimlibs/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:39
  Author: svenstaro
Revision: 190854

upgpkg: kdepimlibs 4.10.95-2

rebuild

Modified:
  kdepimlibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:19:38 UTC (rev 190853)
+++ PKGBUILD2013-07-18 22:19:39 UTC (rev 190854)
@@ -4,7 +4,7 @@
 
 pkgname=kdepimlibs
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=KDE PIM Libraries
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdepimlibs'



[arch-commits] Commit in oxygen-icons/repos/kde-unstable-any (PKGBUILD PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:53
  Author: svenstaro
Revision: 190857

archrelease: copy kde-unstable to kde-unstable-any

Added:
  oxygen-icons/repos/kde-unstable-any/PKGBUILD
(from rev 190856, oxygen-icons/kde-unstable/PKGBUILD)
Deleted:
  oxygen-icons/repos/kde-unstable-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 22:19:47 UTC (rev 190856)
+++ PKGBUILD2013-07-18 22:19:53 UTC (rev 190857)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=oxygen-icons
-pkgname=('oxygen-icons'
- 'oxygen-icons-svg')
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=The Oxygen Icon Theme
-arch=('any')
-url='http://www.oxygen-icons.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ca2195357719000913c6967a7a380665c0cce672')
-
-build() {
-   cd $srcdir
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package_oxygen-icons() {
-   cd $srcdir/build
-   make DESTDIR=$pkgdir install
-}
-
-package_oxygen-icons-svg() {
-   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
-   cd $srcdir/${pkgbase}-${pkgver}
-   find scalable -type f ! -name '*.sh' -exec \
-   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
-}

Copied: oxygen-icons/repos/kde-unstable-any/PKGBUILD (from rev 190856, 
oxygen-icons/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-18 22:19:53 UTC (rev 190857)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=The Oxygen Icon Theme
+arch=('any')
+url='http://www.oxygen-icons.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ca2195357719000913c6967a7a380665c0cce672')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_oxygen-icons() {
+   cd $srcdir/build
+   make DESTDIR=$pkgdir install
+}
+
+package_oxygen-icons-svg() {
+   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
+   cd $srcdir/${pkgbase}-${pkgver}
+   find scalable -type f ! -name '*.sh' -exec \
+   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
+}



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:42
  Author: svenstaro
Revision: 190863

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdepim-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 190862, kdepim-runtime/kde-unstable/PKGBUILD)
  kdepim-runtime/repos/kde-unstable-i686/kdepim-runtime.install
(from rev 190862, kdepim-runtime/kde-unstable/kdepim-runtime.install)
  kdepim-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190862, kdepim-runtime/kde-unstable/PKGBUILD)
  kdepim-runtime/repos/kde-unstable-x86_64/kdepim-runtime.install
(from rev 190862, kdepim-runtime/kde-unstable/kdepim-runtime.install)
Deleted:
  kdepim-runtime/repos/kde-unstable-i686/PKGBUILD
  kdepim-runtime/repos/kde-unstable-i686/kdepim-runtime.install
  kdepim-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdepim-runtime/repos/kde-unstable-x86_64/kdepim-runtime.install

+
 /PKGBUILD  |   68 +++
 /kdepim-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD |   34 -
 kde-unstable-i686/kdepim-runtime.install   |   13 -
 kde-unstable-x86_64/PKGBUILD   |   34 -
 kde-unstable-x86_64/kdepim-runtime.install |   13 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:37 UTC (rev 190862)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:42 UTC (rev 190863)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepim-runtime
-pkgver=4.10.95
-pkgrel=1
-pkgdesc='Extends the functionality of kdepim'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepim-runtime'
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
-makedepends=('cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('c7501e246741aa53c8e9ba70bd5685249df5293b')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=${pkgdir} install
-}

Copied: kdepim-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 190862, 
kdepim-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:42 UTC (rev 190863)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepim-runtime
+pkgver=4.10.95
+pkgrel=2
+pkgdesc='Extends the functionality of kdepim'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepim-runtime'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c7501e246741aa53c8e9ba70bd5685249df5293b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-i686/kdepim-runtime.install
===
--- kde-unstable-i686/kdepim-runtime.install2013-07-18 22:20:37 UTC (rev 
190862)
+++ kde-unstable-i686/kdepim-runtime.install2013-07-18 22:20:42 UTC (rev 
190863)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-   update-mime-database usr/share/mime  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdepim-runtime/repos/kde-unstable-i686/kdepim-runtime.install (from rev 
190862, kdepim-runtime/kde-unstable/kdepim-runtime.install)
===
--- kde-unstable-i686/kdepim-runtime.install(rev 0)
+++ kde-unstable-i686/kdepim-runtime.install2013-07-18 22:20:42 UTC (rev 
190863)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}

[arch-commits] Commit in kdepim-runtime/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:37
  Author: svenstaro
Revision: 190862

upgpkg: kdepim-runtime 4.10.95-2

rebuild

Modified:
  kdepim-runtime/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:20:33 UTC (rev 190861)
+++ PKGBUILD2013-07-18 22:20:37 UTC (rev 190862)
@@ -4,7 +4,7 @@
 
 pkgname=kdepim-runtime
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc='Extends the functionality of kdepim'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdepim-runtime'



[arch-commits] Commit in kdebindings-smokegen/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:44
  Author: svenstaro
Revision: 190864

upgpkg: kdebindings-smokegen 4.10.95-2

rebuild

Modified:
  kdebindings-smokegen/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:20:42 UTC (rev 190863)
+++ PKGBUILD2013-07-18 22:20:44 UTC (rev 190864)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-smokegen
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=A general purpose C++ parser with a plugin infrastructure
 url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdebase-runtime/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:28
  Author: svenstaro
Revision: 190860

upgpkg: kdebase-runtime 4.10.95-2

rebuild

Modified:
  kdebase-runtime/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:20:26 UTC (rev 190859)
+++ PKGBUILD2013-07-18 22:20:28 UTC (rev 190860)
@@ -4,7 +4,7 @@
 
 pkgname=kdebase-runtime
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Plugins and applications necessary for the running of KDE 
applications
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-runtime'



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:26
  Author: svenstaro
Revision: 190859

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kactivities/repos/kde-unstable-i686/PKGBUILD
(from rev 190858, kactivities/kde-unstable/PKGBUILD)
  kactivities/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190858, kactivities/kde-unstable/PKGBUILD)
Deleted:
  kactivities/repos/kde-unstable-i686/PKGBUILD
  kactivities/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:20 UTC (rev 190858)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:26 UTC (rev 190859)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.10.95
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f2898db6b9d4ec74c703c3e351b05b70fefea2d4')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kactivities/repos/kde-unstable-i686/PKGBUILD (from rev 190858, 
kactivities/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:26 UTC (rev 190859)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.10.95
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f2898db6b9d4ec74c703c3e351b05b70fefea2d4')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:20 UTC (rev 190858)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:26 UTC (rev 190859)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.10.95
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f2898db6b9d4ec74c703c3e351b05b70fefea2d4')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kactivities/repos/kde-unstable-x86_64/PKGBUILD (from rev 190858, 
kactivities/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:26 UTC (rev 190859)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.10.95
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f2898db6b9d4ec74c703c3e351b05b70fefea2d4')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:45
  Author: svenstaro
Revision: 190855

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdepimlibs/repos/kde-unstable-i686/PKGBUILD
(from rev 190854, kdepimlibs/kde-unstable/PKGBUILD)
  kdepimlibs/repos/kde-unstable-i686/kdepimlibs.install
(from rev 190854, kdepimlibs/kde-unstable/kdepimlibs.install)
  kdepimlibs/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190854, kdepimlibs/kde-unstable/PKGBUILD)
  kdepimlibs/repos/kde-unstable-x86_64/kdepimlibs.install
(from rev 190854, kdepimlibs/kde-unstable/kdepimlibs.install)
Deleted:
  kdepimlibs/repos/kde-unstable-i686/PKGBUILD
  kdepimlibs/repos/kde-unstable-i686/kdepimlibs.install
  kdepimlibs/repos/kde-unstable-x86_64/PKGBUILD
  kdepimlibs/repos/kde-unstable-x86_64/kdepimlibs.install

+
 /PKGBUILD  |   64 +++
 /kdepimlibs.install|   22 ++
 kde-unstable-i686/PKGBUILD |   32 ---
 kde-unstable-i686/kdepimlibs.install   |   11 -
 kde-unstable-x86_64/PKGBUILD   |   32 ---
 kde-unstable-x86_64/kdepimlibs.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:19:39 UTC (rev 190854)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:19:45 UTC (rev 190855)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepimlibs
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=KDE PIM Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepimlibs'
-license=('GPL' 'LGPL')
-depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
-makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
-install='kdepimlibs.install'
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('4bbf4b8e557a25ee39e67de3f1154629580f9062')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdepimlibs/repos/kde-unstable-i686/PKGBUILD (from rev 190854, 
kdepimlibs/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:19:45 UTC (rev 190855)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepimlibs
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=KDE PIM Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepimlibs'
+license=('GPL' 'LGPL')
+depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
+install='kdepimlibs.install'
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('4bbf4b8e557a25ee39e67de3f1154629580f9062')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-i686/kdepimlibs.install
===
--- kde-unstable-i686/kdepimlibs.install2013-07-18 22:19:39 UTC (rev 
190854)
+++ kde-unstable-i686/kdepimlibs.install2013-07-18 22:19:45 UTC (rev 
190855)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}
\ No newline at end of file

Copied: kdepimlibs/repos/kde-unstable-i686/kdepimlibs.install (from rev 190854, 
kdepimlibs/kde-unstable/kdepimlibs.install)
===
--- kde-unstable-i686/kdepimlibs.install(rev 0)
+++ kde-unstable-i686/kdepimlibs.install2013-07-18 22:19:45 UTC (rev 
190855)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
\ No newline at end of file

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:19:39 UTC (rev 190854)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:19:45 UTC (rev 190855)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 

[arch-commits] Commit in oxygen-icons/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:19:47
  Author: svenstaro
Revision: 190856

upgpkg: oxygen-icons 4.10.95-2

rebuild

Modified:
  oxygen-icons/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:19:45 UTC (rev 190855)
+++ PKGBUILD2013-07-18 22:19:47 UTC (rev 190856)
@@ -6,7 +6,7 @@
 pkgname=('oxygen-icons'
  'oxygen-icons-svg')
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=The Oxygen Icon Theme
 arch=('any')
 url='http://www.oxygen-icons.org/'



[arch-commits] Commit in kactivities/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:20
  Author: svenstaro
Revision: 190858

upgpkg: kactivities 4.10.95-2

rebuild

Modified:
  kactivities/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:19:53 UTC (rev 190857)
+++ PKGBUILD2013-07-18 22:20:20 UTC (rev 190858)
@@ -3,7 +3,7 @@
 
 pkgname=kactivities
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc='API for using and interacting with the Activity Manager'
 url='https://projects.kde.org/projects/kde/kdelibs/kactivities'



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:33
  Author: svenstaro
Revision: 190861

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 190860, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 190860, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190860, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 190860, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |   92 ++
 /kdebase-runtime.install|   26 +++
 kde-unstable-i686/PKGBUILD  |   46 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   46 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:28 UTC (rev 190860)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:33 UTC (rev 190861)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('cdc9d25ffa4e6758a1f2c37105df0dd5c4e531db')
-
-prepare() {
-mkdir build
-}
-
-build() {
-   cd build
-   cmake ../kde-runtime-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-   rm -f ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-   ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 190860, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:33 UTC (rev 190861)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('cdc9d25ffa4e6758a1f2c37105df0dd5c4e531db')
+
+prepare() {
+mkdir build
+}
+
+build() {
+   cd build
+   cmake ../kde-runtime-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0
+   make
+}
+
+package() {
+ 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:50
  Author: svenstaro
Revision: 190865

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-smokegen/repos/kde-unstable-i686/PKGBUILD
(from rev 190864, kdebindings-smokegen/kde-unstable/PKGBUILD)
  kdebindings-smokegen/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190864, kdebindings-smokegen/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-smokegen/repos/kde-unstable-i686/PKGBUILD
  kdebindings-smokegen/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   62 +
 kde-unstable-i686/PKGBUILD   |   31 
 kde-unstable-x86_64/PKGBUILD |   31 
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:44 UTC (rev 190864)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:50 UTC (rev 190865)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokegen
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=A general purpose C++ parser with a plugin infrastructure
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('95d8c622da7bdbebdc9555a538456d86f2f6d2af')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokegen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokegen/repos/kde-unstable-i686/PKGBUILD (from rev 190864, 
kdebindings-smokegen/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:50 UTC (rev 190865)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('95d8c622da7bdbebdc9555a538456d86f2f6d2af')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokegen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:44 UTC (rev 190864)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:50 UTC (rev 190865)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokegen
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=A general purpose C++ parser with a plugin infrastructure
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('95d8c622da7bdbebdc9555a538456d86f2f6d2af')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokegen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokegen/repos/kde-unstable-x86_64/PKGBUILD (from rev 
190864, kdebindings-smokegen/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:50 UTC (rev 190865)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:12
  Author: svenstaro
Revision: 190871

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 190870, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190870, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:06 UTC (rev 190870)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:12 UTC (rev 190871)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.95
-pkgrel=1
-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-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 190870, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:12 UTC (rev 190871)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.95
+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-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:24
  Author: svenstaro
Revision: 190873

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdesdk-kate/repos/kde-unstable-i686/PKGBUILD
(from rev 190872, kdesdk-kate/kde-unstable/PKGBUILD)
  kdesdk-kate/repos/kde-unstable-i686/kdebase-katepart.install
(from rev 190872, kdesdk-kate/kde-unstable/kdebase-katepart.install)
  kdesdk-kate/repos/kde-unstable-i686/kdebase-kwrite.install
(from rev 190872, kdesdk-kate/kde-unstable/kdebase-kwrite.install)
  kdesdk-kate/repos/kde-unstable-i686/kdesdk-kate.install
(from rev 190872, kdesdk-kate/kde-unstable/kdesdk-kate.install)
  kdesdk-kate/repos/kde-unstable-i686/pkgbuild-syntax-highlight.patch
(from rev 190872, kdesdk-kate/kde-unstable/pkgbuild-syntax-highlight.patch)
  kdesdk-kate/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190872, kdesdk-kate/kde-unstable/PKGBUILD)
  kdesdk-kate/repos/kde-unstable-x86_64/kdebase-katepart.install
(from rev 190872, kdesdk-kate/kde-unstable/kdebase-katepart.install)
  kdesdk-kate/repos/kde-unstable-x86_64/kdebase-kwrite.install
(from rev 190872, kdesdk-kate/kde-unstable/kdebase-kwrite.install)
  kdesdk-kate/repos/kde-unstable-x86_64/kdesdk-kate.install
(from rev 190872, kdesdk-kate/kde-unstable/kdesdk-kate.install)
  kdesdk-kate/repos/kde-unstable-x86_64/pkgbuild-syntax-highlight.patch
(from rev 190872, kdesdk-kate/kde-unstable/pkgbuild-syntax-highlight.patch)
Deleted:
  kdesdk-kate/repos/kde-unstable-i686/PKGBUILD
  kdesdk-kate/repos/kde-unstable-i686/kdebase-katepart.install
  kdesdk-kate/repos/kde-unstable-i686/kdebase-kwrite.install
  kdesdk-kate/repos/kde-unstable-i686/kdesdk-kate.install
  kdesdk-kate/repos/kde-unstable-i686/pkgbuild-syntax-highlight.patch
  kdesdk-kate/repos/kde-unstable-x86_64/PKGBUILD
  kdesdk-kate/repos/kde-unstable-x86_64/kdebase-katepart.install
  kdesdk-kate/repos/kde-unstable-x86_64/kdebase-kwrite.install
  kdesdk-kate/repos/kde-unstable-x86_64/kdesdk-kate.install
  kdesdk-kate/repos/kde-unstable-x86_64/pkgbuild-syntax-highlight.patch

-+
 /PKGBUILD   |  148 ++
 /kdebase-katepart.install   |   22 ++
 /kdebase-kwrite.install |   24 ++
 /kdesdk-kate.install|   26 +++
 /pkgbuild-syntax-highlight.patch|   22 ++
 kde-unstable-i686/PKGBUILD  |   74 -
 kde-unstable-i686/kdebase-katepart.install  |   11 -
 kde-unstable-i686/kdebase-kwrite.install|   12 -
 kde-unstable-i686/kdesdk-kate.install   |   13 -
 kde-unstable-i686/pkgbuild-syntax-highlight.patch   |   11 -
 kde-unstable-x86_64/PKGBUILD|   74 -
 kde-unstable-x86_64/kdebase-katepart.install|   11 -
 kde-unstable-x86_64/kdebase-kwrite.install  |   12 -
 kde-unstable-x86_64/kdesdk-kate.install |   13 -
 kde-unstable-x86_64/pkgbuild-syntax-highlight.patch |   11 -
 15 files changed, 242 insertions(+), 242 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:16 UTC (rev 190872)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:24 UTC (rev 190873)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdesdk-kate
-pkgname=('kdebase-katepart'
- 'kdebase-kwrite'
- 'kdesdk-kate')
-pkgver=4.10.95
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python')
-source=(http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.xz;
-'pkgbuild-syntax-highlight.patch')
-sha1sums=('60978753cf500b09a7727d09c80b166a6b0483f0'
-  '80c324c9db81c07a02374e7a092d75e0bdd6b4ea')
-
-prepare() {
-  cd kate-${pkgver}
-  patch -p1 -i ${srcdir}/pkgbuild-syntax-highlight.patch
-}
-
-build() {
-  mkdir build
-  cd build
-  cmake ../kate-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_kdebase-katepart() {
-  pkgdesc=A fast and feature-rich text editor component
-  depends=('kdelibs')
-  url=http://kate-editor.org/about-katepart/;
-  install='kdebase-katepart.install'
-
-  cd build/part
-  make DESTDIR=${pkgdir} install
-  
-  cd ../../build/addons
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebase-kwrite() {
-  pkgdesc=Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart')
-  groups=('kde' 'kdebase')
-  url=http://www.kde.org/applications/utilities/kwrite/;
-  install='kdebase-kwrite.install'
-
-  cd build/kwrite
-  make DESTDIR=${pkgdir} install
-
-  cd ../../build/doc/kwrite
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdesdk-kate() {
-  pkgdesc=Advanced Text Editor
-  depends=('kdebase-runtime' 

[arch-commits] Commit in kdegraphics-okular/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:59
  Author: svenstaro
Revision: 190868

upgpkg: kdegraphics-okular 4.10.95-2

rebuild

Modified:
  kdegraphics-okular/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:20:57 UTC (rev 190867)
+++ PKGBUILD2013-07-18 22:20:59 UTC (rev 190868)
@@ -3,7 +3,7 @@
 
 pkgname=kdegraphics-okular
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc='Document Viewer'
 arch=('i686' 'x86_64')
 url=http://kde.org/applications/graphics/okular/;



[arch-commits] Commit in kdesdk-kate/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:16
  Author: svenstaro
Revision: 190872

upgpkg: kdesdk-kate 4.10.95-2

rebuild

Modified:
  kdesdk-kate/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:12 UTC (rev 190871)
+++ PKGBUILD2013-07-18 22:21:16 UTC (rev 190872)
@@ -6,7 +6,7 @@
  'kdebase-kwrite'
  'kdesdk-kate')
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python')



[arch-commits] Commit in kdebindings-python/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:06
  Author: svenstaro
Revision: 190870

upgpkg: kdebindings-python 4.10.95-2

rebuild

Modified:
  kdebindings-python/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:04 UTC (rev 190869)
+++ PKGBUILD2013-07-18 22:21:06 UTC (rev 190870)
@@ -6,7 +6,7 @@
  'kdebindings-python2'
  'kdebindings-python-common')
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')



[arch-commits] Commit in kdebindings-qtruby/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:49
  Author: svenstaro
Revision: 190880

upgpkg: kdebindings-qtruby 4.10.95-2

rebuild

Modified:
  kdebindings-qtruby/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:47 UTC (rev 190879)
+++ PKGBUILD2013-07-18 22:21:49 UTC (rev 190880)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-qtruby
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Ruby bindings for the Qt libraries
 url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdebindings-qyoto/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:41
  Author: svenstaro
Revision: 190878

upgpkg: kdebindings-qyoto 4.10.95-2

rebuild

Modified:
  kdebindings-qyoto/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:39 UTC (rev 190877)
+++ PKGBUILD2013-07-18 22:21:41 UTC (rev 190878)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-qyoto
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=.NET/Mono bindings for the Qt libraries
 url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdebindings-smokekde/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:26
  Author: svenstaro
Revision: 190874

upgpkg: kdebindings-smokekde 4.10.95-2

rebuild

Modified:
  kdebindings-smokekde/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:24 UTC (rev 190873)
+++ PKGBUILD2013-07-18 22:21:26 UTC (rev 190874)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-smokekde
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Language independent library for KDE bindings
 url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdebindings-smokeqt/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:52
  Author: svenstaro
Revision: 190866

upgpkg: kdebindings-smokeqt 4.10.95-2

rebuild

Modified:
  kdebindings-smokeqt/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:20:50 UTC (rev 190865)
+++ PKGBUILD2013-07-18 22:20:52 UTC (rev 190866)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-smokeqt
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Language independent library for Qt bindings
 url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
 arch=('i686' 'x86_64')



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:47
  Author: svenstaro
Revision: 190879

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-qyoto/repos/kde-unstable-i686/PKGBUILD
(from rev 190878, kdebindings-qyoto/kde-unstable/PKGBUILD)
  kdebindings-qyoto/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190878, kdebindings-qyoto/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-qyoto/repos/kde-unstable-i686/PKGBUILD
  kdebindings-qyoto/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   62 +
 kde-unstable-i686/PKGBUILD   |   31 
 kde-unstable-x86_64/PKGBUILD |   31 
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:41 UTC (rev 190878)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:47 UTC (rev 190879)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qyoto
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=.NET/Mono bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'mono')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-csharp')
-source=(http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
-sha1sums=('9f4a80d73f749ec984f17c10afe2a884e182dc43')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qyoto-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qyoto/repos/kde-unstable-i686/PKGBUILD (from rev 190878, 
kdebindings-qyoto/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:47 UTC (rev 190879)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qyoto
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=.NET/Mono bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'mono')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-csharp')
+source=(http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
+sha1sums=('9f4a80d73f749ec984f17c10afe2a884e182dc43')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../qyoto-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:41 UTC (rev 190878)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:47 UTC (rev 190879)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qyoto
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=.NET/Mono bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'mono')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-csharp')
-source=(http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
-sha1sums=('9f4a80d73f749ec984f17c10afe2a884e182dc43')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qyoto-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qyoto/repos/kde-unstable-x86_64/PKGBUILD (from rev 190878, 
kdebindings-qyoto/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:47 UTC (rev 190879)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qyoto
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=.NET/Mono bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'mono')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-csharp')

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:04
  Author: svenstaro
Revision: 190869

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdegraphics-okular/repos/kde-unstable-i686/PKGBUILD
(from rev 190868, kdegraphics-okular/kde-unstable/PKGBUILD)
  kdegraphics-okular/repos/kde-unstable-i686/kdegraphics-okular.install
(from rev 190868, 
kdegraphics-okular/kde-unstable/kdegraphics-okular.install)
  kdegraphics-okular/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190868, kdegraphics-okular/kde-unstable/PKGBUILD)
  kdegraphics-okular/repos/kde-unstable-x86_64/kdegraphics-okular.install
(from rev 190868, 
kdegraphics-okular/kde-unstable/kdegraphics-okular.install)
Deleted:
  kdegraphics-okular/repos/kde-unstable-i686/PKGBUILD
  kdegraphics-okular/repos/kde-unstable-i686/kdegraphics-okular.install
  kdegraphics-okular/repos/kde-unstable-x86_64/PKGBUILD
  kdegraphics-okular/repos/kde-unstable-x86_64/kdegraphics-okular.install

+
 /PKGBUILD  |   70 +++
 /kdegraphics-okular.install|   24 +++
 kde-unstable-i686/PKGBUILD |   35 ---
 kde-unstable-i686/kdegraphics-okular.install   |   12 ---
 kde-unstable-x86_64/PKGBUILD   |   35 ---
 kde-unstable-x86_64/kdegraphics-okular.install |   12 ---
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:59 UTC (rev 190868)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:04 UTC (rev 190869)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdegraphics-okular
-pkgver=4.10.95
-pkgrel=1
-pkgdesc='Document Viewer'
-arch=('i686' 'x86_64')
-url=http://kde.org/applications/graphics/okular/;
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdegraphics')
-depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre'
- 'ebook-tools' 'libspectre')
-makedepends=('cmake' 'automoc4')
-optdepends=('kdegraphics-mobipocket: mobipocket support')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/okular-${pkgver}.tar.xz;)
-sha1sums=('2aeac3053904bc3f9f1e7d6805a353aab66a911c')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../okular-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_ActiveApp=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdegraphics-okular/repos/kde-unstable-i686/PKGBUILD (from rev 190868, 
kdegraphics-okular/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:04 UTC (rev 190869)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-okular
+pkgver=4.10.95
+pkgrel=2
+pkgdesc='Document Viewer'
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/graphics/okular/;
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre'
+ 'ebook-tools' 'libspectre')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdegraphics-mobipocket: mobipocket support')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/okular-${pkgver}.tar.xz;)
+sha1sums=('2aeac3053904bc3f9f1e7d6805a353aab66a911c')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../okular-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_ActiveApp=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-i686/kdegraphics-okular.install
===
--- kde-unstable-i686/kdegraphics-okular.install2013-07-18 22:20:59 UTC 
(rev 190868)
+++ kde-unstable-i686/kdegraphics-okular.install2013-07-18 22:21:04 UTC 
(rev 190869)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegraphics-okular/repos/kde-unstable-i686/kdegraphics-okular.install 
(from rev 190868, kdegraphics-okular/kde-unstable/kdegraphics-okular.install)
===
--- kde-unstable-i686/kdegraphics-okular.install
(rev 0)
+++ kde-unstable-i686/kdegraphics-okular.install2013-07-18 22:21:04 UTC 
(rev 190869)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:32
  Author: svenstaro
Revision: 190875

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD
(from rev 190874, kdebindings-smokekde/kde-unstable/PKGBUILD)
  kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190874, kdebindings-smokekde/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD
  kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   72 +
 kde-unstable-i686/PKGBUILD   |   36 
 kde-unstable-x86_64/PKGBUILD |   36 
 3 files changed, 72 insertions(+), 72 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:26 UTC (rev 190874)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:32 UTC (rev 190875)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokekde
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Language independent library for KDE bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
-sha1sums=('43e4c3b301784d8986dded50bd1b2810d9797d8c')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD (from rev 190874, 
kdebindings-smokekde/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:32 UTC (rev 190875)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokekde
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Language independent library for KDE bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
+ 'mesa')
+optdepends=('kdesdk-kate: Kate bindings'
+'kdegraphics-okular: Okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
+sha1sums=('43e4c3b301784d8986dded50bd1b2810d9797d8c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../smokekde-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:26 UTC (rev 190874)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:32 UTC (rev 190875)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokekde
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Language independent library for KDE bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
-sha1sums=('43e4c3b301784d8986dded50bd1b2810d9797d8c')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD (from rev 
190874, 

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:55
  Author: svenstaro
Revision: 190881

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-qtruby/repos/kde-unstable-i686/PKGBUILD
(from rev 190880, kdebindings-qtruby/kde-unstable/PKGBUILD)
  kdebindings-qtruby/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190880, kdebindings-qtruby/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-qtruby/repos/kde-unstable-i686/PKGBUILD
  kdebindings-qtruby/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:49 UTC (rev 190880)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:55 UTC (rev 190881)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qtruby
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Ruby bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'ruby')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('d73c747899f2229b9763eafd525147545e50d0a9')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qtruby-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qtruby/repos/kde-unstable-i686/PKGBUILD (from rev 190880, 
kdebindings-qtruby/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:55 UTC (rev 190881)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qtruby
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Ruby bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'ruby')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
+sha1sums=('d73c747899f2229b9763eafd525147545e50d0a9')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../qtruby-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:49 UTC (rev 190880)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:55 UTC (rev 190881)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qtruby
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Ruby bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'ruby')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('d73c747899f2229b9763eafd525147545e50d0a9')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qtruby-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qtruby/repos/kde-unstable-x86_64/PKGBUILD (from rev 190880, 
kdebindings-qtruby/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:55 UTC (rev 190881)
@@ -0,0 +1,33 @@
+# $Id$

[arch-commits] Commit in kdebindings-perlqt/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:34
  Author: svenstaro
Revision: 190876

upgpkg: kdebindings-perlqt 4.10.95-2

rebuild

Modified:
  kdebindings-perlqt/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:32 UTC (rev 190875)
+++ PKGBUILD2013-07-18 22:21:34 UTC (rev 190876)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-perlqt
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Perl bindings for the Qt libraries
 url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
 arch=('i686' 'x86_64')



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:39
  Author: svenstaro
Revision: 190877

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-perlqt/repos/kde-unstable-i686/PKGBUILD
(from rev 190876, kdebindings-perlqt/kde-unstable/PKGBUILD)
  kdebindings-perlqt/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190876, kdebindings-perlqt/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-perlqt/repos/kde-unstable-i686/PKGBUILD
  kdebindings-perlqt/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   62 +
 kde-unstable-i686/PKGBUILD   |   31 
 kde-unstable-x86_64/PKGBUILD |   31 
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:34 UTC (rev 190876)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:39 UTC (rev 190877)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-perlqt
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Perl bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'perl-list-moreutils')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-source=(http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('f9bc674921c1852fe80ccff79e2d2aabd97927dd')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../perlqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-perlqt/repos/kde-unstable-i686/PKGBUILD (from rev 190876, 
kdebindings-perlqt/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:39 UTC (rev 190877)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+source=(http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('f9bc674921c1852fe80ccff79e2d2aabd97927dd')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:34 UTC (rev 190876)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:39 UTC (rev 190877)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-perlqt
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Perl bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'perl-list-moreutils')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-source=(http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('f9bc674921c1852fe80ccff79e2d2aabd97927dd')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../perlqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-perlqt/repos/kde-unstable-x86_64/PKGBUILD (from rev 190876, 
kdebindings-perlqt/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:21:39 UTC (rev 190877)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:20:57
  Author: svenstaro
Revision: 190867

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-smokeqt/repos/kde-unstable-i686/PKGBUILD
(from rev 190866, kdebindings-smokeqt/kde-unstable/PKGBUILD)
  kdebindings-smokeqt/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190866, kdebindings-smokeqt/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-smokeqt/repos/kde-unstable-i686/PKGBUILD
  kdebindings-smokeqt/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:20:52 UTC (rev 190866)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:57 UTC (rev 190867)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokeqt
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Language independent library for Qt bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'mesa')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('91d392058cb525a1b9e0f29c5860016354dc22de')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokeqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Qwt5=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokeqt/repos/kde-unstable-i686/PKGBUILD (from rev 190866, 
kdebindings-smokeqt/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:20:57 UTC (rev 190867)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'mesa')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
+sha1sums=('91d392058cb525a1b9e0f29c5860016354dc22de')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokeqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Qwt5=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:52 UTC (rev 190866)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:57 UTC (rev 190867)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokeqt
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Language independent library for Qt bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'mesa')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('91d392058cb525a1b9e0f29c5860016354dc22de')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokeqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Qwt5=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokeqt/repos/kde-unstable-x86_64/PKGBUILD (from rev 
190866, kdebindings-smokeqt/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:20:57 UTC (rev 190867)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')

[arch-commits] Commit in kde-base-artwork/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:56
  Author: svenstaro
Revision: 190882

upgpkg: kde-base-artwork 4.10.95-2

rebuild

Modified:
  kde-base-artwork/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:55 UTC (rev 190881)
+++ PKGBUILD2013-07-18 22:21:56 UTC (rev 190882)
@@ -3,7 +3,7 @@
 
 pkgname=kde-base-artwork
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=KDE KSplash theme
 arch=('any')
 url='http://www.kde.org/'



[arch-commits] Commit in kdebase-workspace/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:02
  Author: svenstaro
Revision: 190884

upgpkg: kdebase-workspace 4.10.95-2

rebuild

Modified:
  kdebase-workspace/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:22:00 UTC (rev 190883)
+++ PKGBUILD2013-07-18 22:22:02 UTC (rev 190884)
@@ -5,7 +5,7 @@
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Provides the interface and basic tools for the KDE workspace
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-workspace'



[arch-commits] Commit in kde-base-artwork/repos/kde-unstable-any (PKGBUILD PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:00
  Author: svenstaro
Revision: 190883

archrelease: copy kde-unstable to kde-unstable-any

Added:
  kde-base-artwork/repos/kde-unstable-any/PKGBUILD
(from rev 190882, kde-base-artwork/kde-unstable/PKGBUILD)
Deleted:
  kde-base-artwork/repos/kde-unstable-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-18 22:21:56 UTC (rev 190882)
+++ PKGBUILD2013-07-18 22:22:00 UTC (rev 190883)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kde-base-artwork
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=KDE KSplash theme
-arch=('any')
-url='http://www.kde.org/'
-license=('LGPL')
-makedepends=('kdelibs' 'cmake' 'automoc4')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('b7e22625f0753f416cf490756fd0aa32e3902c2c')
-
-build() {
-   cd $srcdir
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd $srcdir/build
-   make DESTDIR=$pkgdir install
-}

Copied: kde-base-artwork/repos/kde-unstable-any/PKGBUILD (from rev 190882, 
kde-base-artwork/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-18 22:22:00 UTC (rev 190883)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kde-base-artwork
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=KDE KSplash theme
+arch=('any')
+url='http://www.kde.org/'
+license=('LGPL')
+makedepends=('kdelibs' 'cmake' 'automoc4')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('b7e22625f0753f416cf490756fd0aa32e3902c2c')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd $srcdir/build
+   make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in kdebase-workspace/repos (40 files)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:17
  Author: svenstaro
Revision: 190885

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebase-workspace/repos/kde-unstable-i686/PKGBUILD
(from rev 190884, kdebase-workspace/kde-unstable/PKGBUILD)
  kdebase-workspace/repos/kde-unstable-i686/etc-scripts.patch
(from rev 190884, kdebase-workspace/kde-unstable/etc-scripts.patch)
  kdebase-workspace/repos/kde-unstable-i686/kde-np.pam
(from rev 190884, kdebase-workspace/kde-unstable/kde-np.pam)
  kdebase-workspace/repos/kde-unstable-i686/kde.pam
(from rev 190884, kdebase-workspace/kde-unstable/kde.pam)
  kdebase-workspace/repos/kde-unstable-i686/kdebase-workspace.install
(from rev 190884, kdebase-workspace/kde-unstable/kdebase-workspace.install)
  kdebase-workspace/repos/kde-unstable-i686/kdm-xinitrd.patch
(from rev 190884, kdebase-workspace/kde-unstable/kdm-xinitrd.patch)
  kdebase-workspace/repos/kde-unstable-i686/kdm.logrotate
(from rev 190884, kdebase-workspace/kde-unstable/kdm.logrotate)
  kdebase-workspace/repos/kde-unstable-i686/kdm.service
(from rev 190884, kdebase-workspace/kde-unstable/kdm.service)
  kdebase-workspace/repos/kde-unstable-i686/kscreensaver.pam
(from rev 190884, kdebase-workspace/kde-unstable/kscreensaver.pam)
  kdebase-workspace/repos/kde-unstable-i686/terminate-server.patch
(from rev 190884, kdebase-workspace/kde-unstable/terminate-server.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190884, kdebase-workspace/kde-unstable/PKGBUILD)
  kdebase-workspace/repos/kde-unstable-x86_64/etc-scripts.patch
(from rev 190884, kdebase-workspace/kde-unstable/etc-scripts.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/kde-np.pam
(from rev 190884, kdebase-workspace/kde-unstable/kde-np.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/kde.pam
(from rev 190884, kdebase-workspace/kde-unstable/kde.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/kdebase-workspace.install
(from rev 190884, kdebase-workspace/kde-unstable/kdebase-workspace.install)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm-xinitrd.patch
(from rev 190884, kdebase-workspace/kde-unstable/kdm-xinitrd.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.logrotate
(from rev 190884, kdebase-workspace/kde-unstable/kdm.logrotate)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.service
(from rev 190884, kdebase-workspace/kde-unstable/kdm.service)
  kdebase-workspace/repos/kde-unstable-x86_64/kscreensaver.pam
(from rev 190884, kdebase-workspace/kde-unstable/kscreensaver.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/terminate-server.patch
(from rev 190884, kdebase-workspace/kde-unstable/terminate-server.patch)
Deleted:
  kdebase-workspace/repos/kde-unstable-i686/PKGBUILD
  kdebase-workspace/repos/kde-unstable-i686/etc-scripts.patch
  kdebase-workspace/repos/kde-unstable-i686/kde-np.pam
  kdebase-workspace/repos/kde-unstable-i686/kde.pam
  kdebase-workspace/repos/kde-unstable-i686/kdebase-workspace.install
  kdebase-workspace/repos/kde-unstable-i686/kdm-xinitrd.patch
  kdebase-workspace/repos/kde-unstable-i686/kdm.logrotate
  kdebase-workspace/repos/kde-unstable-i686/kdm.service
  kdebase-workspace/repos/kde-unstable-i686/kscreensaver.pam
  kdebase-workspace/repos/kde-unstable-i686/terminate-server.patch
  kdebase-workspace/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-workspace/repos/kde-unstable-x86_64/etc-scripts.patch
  kdebase-workspace/repos/kde-unstable-x86_64/kde-np.pam
  kdebase-workspace/repos/kde-unstable-x86_64/kde.pam
  kdebase-workspace/repos/kde-unstable-x86_64/kdebase-workspace.install
  kdebase-workspace/repos/kde-unstable-x86_64/kdm-xinitrd.patch
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.logrotate
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.service
  kdebase-workspace/repos/kde-unstable-x86_64/kscreensaver.pam
  kdebase-workspace/repos/kde-unstable-x86_64/terminate-server.patch

---+
 /PKGBUILD |  170 
 /etc-scripts.patch|   22 +++
 /kde-np.pam   |   24 +++
 /kde.pam  |   16 ++
 /kdebase-workspace.install|   62 
 /kdm-xinitrd.patch|   36 +
 /kdm.logrotate|   12 +
 /kdm.service  |   18 ++
 /kscreensaver.pam |2 
 /terminate-server.patch   |   22 +++
 kde-unstable-i686/PKGBUILD|   85 
 kde-unstable-i686/etc-scripts.patch   |   11 -
 kde-unstable-i686/kde-np.pam  |   12 -
 kde-unstable-i686/kde.pam |8 -
 kde-unstable-i686/kdebase-workspace.install   |   31 
 kde-unstable-i686/kdm-xinitrd.patch   |   18 --
 

[arch-commits] Commit in libkdcraw/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:57
  Author: svenstaro
Revision: 190894

upgpkg: libkdcraw 4.10.95-2

rebuild

Modified:
  libkdcraw/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:22:53 UTC (rev 190893)
+++ PKGBUILD2013-07-18 22:22:57 UTC (rev 190894)
@@ -3,7 +3,7 @@
 
 pkgname=libkdcraw
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=A C++ interface used to decode RAW picture
 url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
 arch=('i686' 'x86_64')



[arch-commits] Commit in kdeedu-marble/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:47
  Author: svenstaro
Revision: 190892

upgpkg: kdeedu-marble 4.10.95-2

rebuild

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:22:46 UTC (rev 190891)
+++ PKGBUILD2013-07-18 22:22:47 UTC (rev 190892)
@@ -3,7 +3,7 @@
 
 pkgname=kdeedu-marble
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in nepomuk-widgets/kde-unstable (PKGBUILD)

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:23
  Author: svenstaro
Revision: 190886

upgpkg: nepomuk-widgets 4.10.95-2

rebuild

Modified:
  nepomuk-widgets/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:22:17 UTC (rev 190885)
+++ PKGBUILD2013-07-18 22:22:23 UTC (rev 190886)
@@ -3,7 +3,7 @@
 
 pkgname=nepomuk-widgets
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=The Library containing the Nepomuk Widgets
 url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
 arch=('i686' 'x86_64')



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:53
  Author: svenstaro
Revision: 190893

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdeedu-marble/repos/kde-unstable-i686/PKGBUILD
(from rev 190892, kdeedu-marble/kde-unstable/PKGBUILD)
  kdeedu-marble/repos/kde-unstable-i686/kdeedu-marble.install
(from rev 190892, kdeedu-marble/kde-unstable/kdeedu-marble.install)
  kdeedu-marble/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190892, kdeedu-marble/kde-unstable/PKGBUILD)
  kdeedu-marble/repos/kde-unstable-x86_64/kdeedu-marble.install
(from rev 190892, kdeedu-marble/kde-unstable/kdeedu-marble.install)
Deleted:
  kdeedu-marble/repos/kde-unstable-i686/PKGBUILD
  kdeedu-marble/repos/kde-unstable-i686/kdeedu-marble.install
  kdeedu-marble/repos/kde-unstable-x86_64/PKGBUILD
  kdeedu-marble/repos/kde-unstable-x86_64/kdeedu-marble.install

---+
 /PKGBUILD |   64 
 /kdeedu-marble.install|   26 +++
 kde-unstable-i686/PKGBUILD|   32 --
 kde-unstable-i686/kdeedu-marble.install   |   13 -
 kde-unstable-x86_64/PKGBUILD  |   32 --
 kde-unstable-x86_64/kdeedu-marble.install |   13 -
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:22:47 UTC (rev 190892)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:22:53 UTC (rev 190893)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-marble
-pkgver=4.10.95
-pkgrel=1
-pkgdesc=Desktop Globe
-url=http://kde.org/applications/education/marble/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'gpsd')
-optdepends=('gpsd: gps support')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('5f118e29cefdf89365d5e6be86d9eeefd9bb2ca3')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../marble-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-marble/repos/kde-unstable-i686/PKGBUILD (from rev 190892, 
kdeedu-marble/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:22:53 UTC (rev 190893)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-marble
+pkgver=4.10.95
+pkgrel=2
+pkgdesc=Desktop Globe
+url=http://kde.org/applications/education/marble/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'gpsd')
+optdepends=('gpsd: gps support')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
+sha1sums=('5f118e29cefdf89365d5e6be86d9eeefd9bb2ca3')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../marble-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: kde-unstable-i686/kdeedu-marble.install
===
--- kde-unstable-i686/kdeedu-marble.install 2013-07-18 22:22:47 UTC (rev 
190892)
+++ kde-unstable-i686/kdeedu-marble.install 2013-07-18 22:22:53 UTC (rev 
190893)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-marble/repos/kde-unstable-i686/kdeedu-marble.install (from rev 
190892, kdeedu-marble/kde-unstable/kdeedu-marble.install)
===
--- kde-unstable-i686/kdeedu-marble.install (rev 0)
+++ kde-unstable-i686/kdeedu-marble.install 2013-07-18 22:22:53 UTC (rev 
190893)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2013-07-18 22:22:47 UTC (rev 190892)
+++ kde-unstable-x86_64/PKGBUILD2013-07-18 22:22:53 UTC (rev 190893)
@@ -1,32 +0,0 @@

  1   2   3   4   5   >