[arch-commits] Commit in pkgstats/trunk (PKGBUILD pkgstats.sh)

2012-07-27 Thread Pierre Schmitz
Date: Friday, July 27, 2012 @ 02:29:16
  Author: pierre
Revision: 164186

upgpkg: pkgstats 2.2-1

* send a list of currently loaded kernel modules

Modified:
  pkgstats/trunk/PKGBUILD
  pkgstats/trunk/pkgstats.sh

-+
 PKGBUILD|8 
 pkgstats.sh |   10 +-
 2 files changed, 13 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 04:44:49 UTC (rev 164185)
+++ PKGBUILD2012-07-27 06:29:16 UTC (rev 164186)
@@ -2,16 +2,16 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=pkgstats
-pkgver=2.1
-pkgrel=5
+pkgver=2.2
+pkgrel=1
 pkgdesc='submits a list of installed packages to the Arch Linux project'
 arch=('any')
 url='https://www.archlinux.de'
 license=('GPL')
-depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron')
+depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk')
 source=('pkgstats.sh' 'pkgstats.cron')
 install='pkgstats.install'
-md5sums=('f63f0619b6ecd76f41de11561bf2fb1e'
+md5sums=('93ab636b7a02d89ecd852e28c7e2a07c'
  'e86e6b9778303367f2e31f5c311da685')
 
 package() {

Modified: pkgstats.sh
===
--- pkgstats.sh 2012-07-27 04:44:49 UTC (rev 164185)
+++ pkgstats.sh 2012-07-27 06:29:16 UTC (rev 164186)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-pkgstatsver='2.1'
+pkgstatsver='2.2'
 showonly=false
 quiet=false
 option='-q -s -S -4'
@@ -35,6 +35,10 @@
 ${quiet} || echo 'Collecting data...'
 pkglist=$(mktemp --tmpdir pkglist.XX)
 pacman -Qq  ${pkglist}
+moduleslist=$(mktemp --tmpdir modules.XX)
+if [[ -f /proc/modules ]]; then
+   cat /proc/modules | awk '{ print $1 }'  ${moduleslist}
+fi
 arch=$(uname -m)
 mirror=$(pacman -Sddp extra/pkgstats 2/dev/null | sed -E 
's#(.*/)extra/os/.*#\1#;s#(.*://).*@#\1#')
 
@@ -42,6 +46,9 @@
echo 'packages='
cat  ${pkglist}
echo ''
+   echo 'modules='
+   cat ${moduleslist}
+   echo ''
echo arch=${arch}
echo pkgstatsver=${pkgstatsver}
echo mirror=${mirror}
@@ -51,6 +58,7 @@
curl ${option} -H 'Expect: ' \
-A pkgstats/${pkgstatsver} \
--data-urlencode packages@${pkglist} \
+   --data-urlencode modules@${moduleslist} \
--data-urlencode arch=${arch} \
--data-urlencode mirror=${mirror} \
--data-urlencode quiet=${quiet} \



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

2012-07-27 Thread Pierre Schmitz
Date: Friday, July 27, 2012 @ 02:29:43
  Author: pierre
Revision: 164187

archrelease: copy trunk to testing-any

Added:
  pkgstats/repos/testing-any/
  pkgstats/repos/testing-any/PKGBUILD
(from rev 164186, pkgstats/trunk/PKGBUILD)
  pkgstats/repos/testing-any/pkgstats.cron
(from rev 164186, pkgstats/trunk/pkgstats.cron)
  pkgstats/repos/testing-any/pkgstats.install
(from rev 164186, pkgstats/trunk/pkgstats.install)
  pkgstats/repos/testing-any/pkgstats.sh
(from rev 164186, pkgstats/trunk/pkgstats.sh)

--+
 PKGBUILD |   20 +++
 pkgstats.cron|2 +
 pkgstats.install |   10 +++
 pkgstats.sh  |   69 +
 4 files changed, 101 insertions(+)

Copied: pkgstats/repos/testing-any/PKGBUILD (from rev 164186, 
pkgstats/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-07-27 06:29:43 UTC (rev 164187)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=pkgstats
+pkgver=2.2
+pkgrel=1
+pkgdesc='submits a list of installed packages to the Arch Linux project'
+arch=('any')
+url='https://www.archlinux.de'
+license=('GPL')
+depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk')
+source=('pkgstats.sh' 'pkgstats.cron')
+install='pkgstats.install'
+md5sums=('93ab636b7a02d89ecd852e28c7e2a07c'
+ 'e86e6b9778303367f2e31f5c311da685')
+
+package() {
+   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
+   install -D -m744 ${srcdir}/pkgstats.cron 
${pkgdir}/etc/cron.weekly/pkgstats
+}

Copied: pkgstats/repos/testing-any/pkgstats.cron (from rev 164186, 
pkgstats/trunk/pkgstats.cron)
===
--- testing-any/pkgstats.cron   (rev 0)
+++ testing-any/pkgstats.cron   2012-07-27 06:29:43 UTC (rev 164187)
@@ -0,0 +1,2 @@
+#!/bin/sh
+su -s /bin/bash -c '/usr/bin/pkgstats -q' nobody

Copied: pkgstats/repos/testing-any/pkgstats.install (from rev 164186, 
pkgstats/trunk/pkgstats.install)
===
--- testing-any/pkgstats.install(rev 0)
+++ testing-any/pkgstats.install2012-07-27 06:29:43 UTC (rev 164187)
@@ -0,0 +1,10 @@
+post_upgrade() {
+   if [ $(vercmp $2 2.1-4) -lt 0 ]; then
+   post_install
+   fi
+}
+
+post_install() {
+   echo Note: A weekly cronjob was installed to /etc/cron.weekly/pkgstats
+   echo   For more information see 
https://bbs.archlinux.org/viewtopic.php?id=105431;
+}

Copied: pkgstats/repos/testing-any/pkgstats.sh (from rev 164186, 
pkgstats/trunk/pkgstats.sh)
===
--- testing-any/pkgstats.sh (rev 0)
+++ testing-any/pkgstats.sh 2012-07-27 06:29:43 UTC (rev 164187)
@@ -0,0 +1,69 @@
+#!/bin/bash
+
+pkgstatsver='2.2'
+showonly=false
+quiet=false
+option='-q -s -S -4'
+
+usage() {
+   echo usage: ${0} [option]
+   echo 'options:'
+   echo '  -v  show the version of pkgstats'
+   echo '  -d  enable debug mode'
+   echo '  -h  show this help'
+   echo '  -s  show what information would be sent'
+   echo '  (but do not send anything)'
+   echo '  -q  be quiet except on errors'
+   echo ''
+   echo 'pkgstats sends a list of all installed packages,'
+   echo 'the architecture and the mirror you are using'
+   echo 'to the Arch Linux project.'
+   echo ''
+   echo 'Statistics are available at 
https://www.archlinux.de/?page=Statistics'
+}
+
+while getopts 'vdhsq' parameter; do
+   case ${parameter} in
+   v)  echo pkgstats, version ${pkgstatsver}; exit 0;;
+   d)  option=${option} --trace-ascii -;;
+   s)  showonly=true;;
+   q)  quiet=true;;
+   *)  usage; exit 1;;
+   esac
+done
+
+${quiet} || echo 'Collecting data...'
+pkglist=$(mktemp --tmpdir pkglist.XX)
+pacman -Qq  ${pkglist}
+moduleslist=$(mktemp --tmpdir modules.XX)
+if [[ -f /proc/modules ]]; then
+   cat /proc/modules | awk '{ print $1 }'  ${moduleslist}
+fi
+arch=$(uname -m)
+mirror=$(pacman -Sddp extra/pkgstats 2/dev/null | sed -E 
's#(.*/)extra/os/.*#\1#;s#(.*://).*@#\1#')
+
+if ${showonly}; then
+   echo 'packages='
+   cat  ${pkglist}
+   echo ''
+   echo 'modules='
+   cat ${moduleslist}
+   echo ''
+   echo arch=${arch}
+   echo pkgstatsver=${pkgstatsver}
+   echo mirror=${mirror}
+   echo quiet=${quiet}
+else
+   ${quiet} || echo 'Submitting data...'
+   curl ${option} -H 'Expect: ' \
+   -A pkgstats/${pkgstatsver} \
+   --data-urlencode packages@${pkglist} \
+   

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

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 03:25:04
  Author: andrea
Revision: 164188

Those have been removed

Modified:
  kdeplasma-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 06:29:43 UTC (rev 164187)
+++ PKGBUILD2012-07-27 07:25:04 UTC (rev 164188)
@@ -56,13 +56,11 @@
  'kdeplasma-addons-containments'
  'kdeplasma-addons-libs'
  'kdeplasma-addons-runners-audioplayercontrol'
- 'kdeplasma-addons-runners-bing'
  'kdeplasma-addons-runners-browserhistory'
  'kdeplasma-addons-runners-characters'
  'kdeplasma-addons-runners-contacts'
  'kdeplasma-addons-runners-converter'
  'kdeplasma-addons-runners-datetime'
- 'kdeplasma-addons-runners-duckduckgo'
  'kdeplasma-addons-runners-events'
  'kdeplasma-addons-runners-katesessions'
  'kdeplasma-addons-runners-konquerorsessions'
@@ -319,7 +317,7 @@
 
 package_kdeplasma-addons-applets-microblog() {
pkgdesc='Update and view your microblog status.'
-   depends=('kdeplasma-addons-libs' 'qoauth' 'qca-ossl' 'qjson')
+   depends=('kdeplasma-addons-libs' 'qoauth' 'qca-ossl')
cd $srcdir/build/applets/microblog
make DESTDIR=$pkgdir install
 }
@@ -495,13 +493,6 @@
make DESTDIR=$pkgdir install
 }
 
-package_kdeplasma-addons-runners-bing() {
-   pkgdesc='Matches Bing queries'
-   depends=('kdebase-workspace')
-   cd $srcdir/build/runners/bing
-   make DESTDIR=$pkgdir install
-}
-
 package_kdeplasma-addons-runners-browserhistory() {
pkgdesc='Searches in Konqueror´s history'
depends=('kdebase-workspace')
@@ -537,13 +528,6 @@
make DESTDIR=$pkgdir install
 }
 
-package_kdeplasma-addons-runners-duckduckgo() {
-   pkgdesc='Matches DuckDuckGo queries'
-   depends=('kdebase-workspace')
-   cd $srcdir/build/runners/duckduckgo
-   make DESTDIR=$pkgdir install
-}
-
 package_kdeplasma-addons-runners-events() {
pkgdesc='Calendar Events runner'
depends=('kdebase-workspace')
@@ -595,7 +579,7 @@
 
 package_kdeplasma-addons-runners-youtube() {
pkgdesc='Matches YouTube queries'
-   depends=('kdebase-workspace')
+   depends=('kdebase-workspace' 'qjson')
 install='kdeplasma-addons.install'
cd $srcdir/build/runners/youtube
make DESTDIR=$pkgdir install



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

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 03:27:09
  Author: andrea
Revision: 164189

Those have been removed

Modified:
  kde-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 07:25:04 UTC (rev 164188)
+++ PKGBUILD2012-07-27 07:27:09 UTC (rev 164189)
@@ -19,7 +19,7 @@
  'kde-meta-kdeutils'
  'kde-meta-kdewebdev')
 pkgver=4.9
-pkgrel=2
+pkgrel=3
 arch=('any')
 url='http://www.archlinux.org/'
 license=('GPL')
@@ -269,13 +269,11 @@
 'kdeplasma-addons-applets-webslice'
 'kdeplasma-addons-containments'
 'kdeplasma-addons-runners-audioplayercontrol'
-'kdeplasma-addons-runners-bing'
 'kdeplasma-addons-runners-browserhistory'
 'kdeplasma-addons-runners-characters'
 'kdeplasma-addons-runners-contacts'
 'kdeplasma-addons-runners-converter'
 'kdeplasma-addons-runners-datetime'
-'kdeplasma-addons-runners-duckduckgo'
 'kdeplasma-addons-runners-events'
 'kdeplasma-addons-runners-katesessions'
 'kdeplasma-addons-runners-konquerorsessions'



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

2012-07-27 Thread Giovanni Scafora
Date: Friday, July 27, 2012 @ 05:30:25
  Author: giovanni
Revision: 164190

upgpkg: live-media 2012.07.26-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 07:27:09 UTC (rev 164189)
+++ PKGBUILD2012-07-27 09:30:25 UTC (rev 164190)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN gcn...@gmail.com
 
 pkgname=live-media
-pkgver=2012.07.18
+pkgver=2012.07.26
 pkgrel=1
 pkgdesc=A set of C++ libraries for multimedia streaming
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 url=http://live555.com/liveMedia;
 depends=('gcc-libs')
 source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('71e6624ed5114b8f9199500c01bef569')
+md5sums=('18374e9f6681f62ab7c987ca0029d494')
 
 build() {
   cd ${srcdir}/live



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

2012-07-27 Thread Giovanni Scafora
Date: Friday, July 27, 2012 @ 05:30:54
  Author: giovanni
Revision: 164191

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 164190, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 164190, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 09:30:25 UTC (rev 164190)
+++ extra-i686/PKGBUILD 2012-07-27 09:30:54 UTC (rev 164191)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.07.18
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('71e6624ed5114b8f9199500c01bef569')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 164190, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 09:30:54 UTC (rev 164191)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Gilles CHAUVIN gcn...@gmail.com
+
+pkgname=live-media
+pkgver=2012.07.26
+pkgrel=1
+pkgdesc=A set of C++ libraries for multimedia streaming
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://live555.com/liveMedia;
+depends=('gcc-libs')
+source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+md5sums=('18374e9f6681f62ab7c987ca0029d494')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
+  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a ${pkgdir}/usr/lib
+install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} ${pkgdir}/usr/bin
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 09:30:25 UTC (rev 164190)
+++ extra-x86_64/PKGBUILD   2012-07-27 09:30:54 UTC (rev 164191)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.07.18
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('71e6624ed5114b8f9199500c01bef569')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install 

[arch-commits] Commit in telepathy-kde-common-internals/repos (6 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 05:35:05
  Author: andrea
Revision: 164192

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

Added:
  telepathy-kde-common-internals/repos/staging-i686/
  telepathy-kde-common-internals/repos/staging-i686/PKGBUILD
(from rev 164191, telepathy-kde-common-internals/trunk/PKGBUILD)
  
telepathy-kde-common-internals/repos/staging-i686/telepathy-kde-common-internals.install
(from rev 164191, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)
  telepathy-kde-common-internals/repos/staging-x86_64/
  telepathy-kde-common-internals/repos/staging-x86_64/PKGBUILD
(from rev 164191, telepathy-kde-common-internals/trunk/PKGBUILD)
  
telepathy-kde-common-internals/repos/staging-x86_64/telepathy-kde-common-internals.install
(from rev 164191, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)

---+
 staging-i686/PKGBUILD |   32 
 staging-i686/telepathy-kde-common-internals.install   |   11 +
 staging-x86_64/PKGBUILD   |   32 
 staging-x86_64/telepathy-kde-common-internals.install |   11 +
 4 files changed, 86 insertions(+)

Copied: telepathy-kde-common-internals/repos/staging-i686/PKGBUILD (from rev 
164191, telepathy-kde-common-internals/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-27 09:35:05 UTC (rev 164192)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Common components for KDE-Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('9acb65efa371ba4f23063bc83ea7a488ac73e4b7')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: 
telepathy-kde-common-internals/repos/staging-i686/telepathy-kde-common-internals.install
 (from rev 164191, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)
===
--- staging-i686/telepathy-kde-common-internals.install 
(rev 0)
+++ staging-i686/telepathy-kde-common-internals.install 2012-07-27 09:35:05 UTC 
(rev 164192)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}
\ No newline at end of file

Copied: telepathy-kde-common-internals/repos/staging-x86_64/PKGBUILD (from rev 
164191, telepathy-kde-common-internals/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-07-27 09:35:05 UTC (rev 164192)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Common components for KDE-Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('9acb65efa371ba4f23063bc83ea7a488ac73e4b7')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: 
telepathy-kde-common-internals/repos/staging-x86_64/telepathy-kde-common-internals.install
 (from rev 164191, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)
===
--- staging-x86_64/telepathy-kde-common-internals.install   
(rev 0)
+++ staging-x86_64/telepathy-kde-common-internals.install   2012-07-27 
09:35:05 UTC (rev 164192)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_update() {
+post_install
+}
+

[arch-commits] Commit in kdebindings-korundum/trunk (PKGBUILD ruby19.patch)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 06:56:48
  Author: andrea
Revision: 164193

Proper patch

Modified:
  kdebindings-korundum/trunk/PKGBUILD
  kdebindings-korundum/trunk/ruby19.patch

--+
 PKGBUILD |3 +--
 ruby19.patch |   18 +-
 2 files changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 09:35:05 UTC (rev 164192)
+++ PKGBUILD2012-07-27 10:56:48 UTC (rev 164193)
@@ -13,11 +13,10 @@
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
 conflicts=('kdebindings-ruby')
-options=('!makeflags')
 
source=(http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.xz;
 'ruby19.patch')
 sha1sums=('7c97b549bb6958223fc0b28f657fec09bb95b7e5'
-  '73299f56a891d8a5475ac07dd485619859312f70')
+  'c074f027bac3b9bffe70a2c2304a6a7be12be034')
 
 build() {
   cd ${srcdir}/korundum-${pkgver}

Modified: ruby19.patch
===
--- ruby19.patch2012-07-27 09:35:05 UTC (rev 164192)
+++ ruby19.patch2012-07-27 10:56:48 UTC (rev 164193)
@@ -1,30 +1,30 @@
-diff -up korundum-4.8.0/src/krubypluginfactory.cpp.ruby19 
korundum-4.8.0/src/krubypluginfactory.cpp
 korundum-4.8.0/src/krubypluginfactory.cpp.ruby19   2011-07-27 
13:37:29.0 -0500
-+++ korundum-4.8.0/src/krubypluginfactory.cpp  2012-02-17 08:30:38.785635819 
-0600
-@@ -39,7 +39,7 @@
+--- korundum-4.9.0/src/krubypluginfactory.cpp~ 2012-07-27 10:44:19.544464612 
+
 korundum-4.9.0/src/krubypluginfactory.cpp  2012-07-27 10:53:15.247374749 
+
+@@ -39,7 +39,6 @@
  extern C {
  extern VALUE rb_load_path;
  extern VALUE qt_internal_module;
 -void Init_prelude(void);
-+// void Init_prelude(void);
  }
  
  //
-@@ -165,7 +165,7 @@ QObject *KRubyPluginFactory::create(cons
+@@ -165,7 +164,8 @@
  #if RUBY_VERSION = 0x10900
  VALUE gem = rb_define_module(Gem);
  rb_const_set(gem, rb_intern(Enable), Qtrue);
 -Init_prelude(); 
-+//Init_prelude(); 
++char *opts[] = { ruby, -e; };
++ruby_options(2, opts);
  #endif
  
  ruby_incpush(QFile::encodeName(program.path()));
-@@ -342,7 +342,7 @@ int kdemain(int argc, char **argv)
+@@ -342,7 +342,8 @@
  #if RUBY_VERSION = 0x10900
  VALUE gem = rb_define_module(Gem);
  rb_const_set(gem, rb_intern(Enable), Qtrue);
 -Init_prelude(); 
-+//Init_prelude(); 
++char *opts[] = { ruby, -e; };
++ruby_options(2, opts);
  #endif
  
  ruby_incpush(QFile::encodeName(program.path()));



[arch-commits] Commit in xf86-input-mouse/trunk (PKGBUILD)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 10:21:55
  Author: andyrtr
Revision: 164194

upgpkg: xf86-input-mouse 1.8.0-1

upstream update 1.8.0

Modified:
  xf86-input-mouse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 10:56:48 UTC (rev 164193)
+++ PKGBUILD2012-07-27 14:21:55 UTC (rev 164194)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-input-mouse
-pkgver=1.7.2
+pkgver=1.8.0
 pkgrel=1
 pkgdesc=X.org mouse input driver
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('0da6390c6f3d7d636110a52f08193739929ae4ae')
+sha256sums=('075fdc392e69b7aefae9f032785bb28e74fa45e865d2cfd67cdd6482580e3fdf')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in xf86-input-mouse/repos (4 files)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 10:22:36
  Author: andyrtr
Revision: 164195

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

Added:
  xf86-input-mouse/repos/extra-i686/PKGBUILD
(from rev 164194, xf86-input-mouse/trunk/PKGBUILD)
  xf86-input-mouse/repos/extra-x86_64/PKGBUILD
(from rev 164194, xf86-input-mouse/trunk/PKGBUILD)
Deleted:
  xf86-input-mouse/repos/extra-i686/PKGBUILD
  xf86-input-mouse/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:21:55 UTC (rev 164194)
+++ extra-i686/PKGBUILD 2012-07-27 14:22:36 UTC (rev 164195)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-mouse
-pkgver=1.7.2
-pkgrel=1
-pkgdesc=X.org mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel=1.11.99.902')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('0da6390c6f3d7d636110a52f08193739929ae4ae')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-mouse/repos/extra-i686/PKGBUILD (from rev 164194, 
xf86-input-mouse/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:22:36 UTC (rev 164195)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-mouse
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=X.org mouse input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('075fdc392e69b7aefae9f032785bb28e74fa45e865d2cfd67cdd6482580e3fdf')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:21:55 UTC (rev 164194)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:22:36 UTC (rev 164195)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-mouse
-pkgver=1.7.2
-pkgrel=1
-pkgdesc=X.org mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel=1.11.99.902')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('0da6390c6f3d7d636110a52f08193739929ae4ae')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-mouse/repos/extra-x86_64/PKGBUILD (from rev 164194, 
xf86-input-mouse/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:22:36 UTC (rev 164195)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-mouse
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=X.org mouse input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('075fdc392e69b7aefae9f032785bb28e74fa45e865d2cfd67cdd6482580e3fdf')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -d -m755 

[arch-commits] Commit in systemd/trunk (PKGBUILD use-split-usr-path.patch)

2012-07-27 Thread Ionut Biru
Date: Friday, July 27, 2012 @ 10:26:01
  Author: ibiru
Revision: 164196

use split user path

Added:
  systemd/trunk/use-split-usr-path.patch
Modified:
  systemd/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 use-split-usr-path.patch |   14 ++
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 14:22:36 UTC (rev 164195)
+++ PKGBUILD2012-07-27 14:26:01 UTC (rev 164196)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-tools' 'systemd-sysvcompat')
 pkgver=187
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/systemd;
 license=('GPL2' 'LGPL2.1' 'MIT')
@@ -16,19 +16,22 @@
 'initcpio-install-udev'
 'initcpio-install-timestamp'
 '0001-Reinstate-TIMEOUT-handling.patch'
-'locale.sh')
+'locale.sh'
+'use-split-usr-path.patch')
 md5sums=('26606e3c84448800ef0b3ffd57e6e8b6'
  'e99e9189aa2f6084ac28b8ddf605aeb8'
  '59e91c4d7a69b7bf12c86a9982e37ced'
  'df69615503ad293c9ddf9d8b7755282d'
  '5543be25f205f853a21fa5ee68e03f0d'
- 'f15956945052bb911e5df81cf5e7e5dc')
+ 'f15956945052bb911e5df81cf5e7e5dc'
+ '482dba45a783f06c2239f1355f4ce72f')
 
 build() {
   cd $pkgname-$pkgver
 
   # still waiting on ipw2x00 to get fixed...
   patch -Np1 $srcdir/0001-Reinstate-TIMEOUT-handling.patch
+  patch -Np1  $srcdir/use-split-usr-path.patch
 
   ./configure \
   --libexecdir=/usr/lib \

Added: use-split-usr-path.patch
===
--- use-split-usr-path.patch(rev 0)
+++ use-split-usr-path.patch2012-07-27 14:26:01 UTC (rev 164196)
@@ -0,0 +1,14 @@
+--- a/src/core/main.c  2012-07-17 19:46:24.0 -0400
 b/src/core/main.c  2012-07-27 10:04:13.0 -0400
+@@ -1379,11 +1379,7 @@
+ 
+ /* Set up PATH unless it is already set */
+ setenv(PATH,
+-#ifdef HAVE_SPLIT_USR
+/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin,
+-#else
+-   /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin,
+-#endif
+arg_running_as == MANAGER_SYSTEM);
+ 
+ if (arg_running_as == MANAGER_SYSTEM) {



[arch-commits] Commit in xf86-video-intel/trunk (3 files)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 10:26:50
  Author: andyrtr
Revision: 164197

upgpkg: xf86-video-intel 2.20.2-1

upstream update 2.20.2

Modified:
  xf86-video-intel/trunk/PKGBUILD
Deleted:
  xf86-video-intel/trunk/gmux_backlight.diff
  xf86-video-intel/trunk/sna_backlight_fixes.diff

--+
 PKGBUILD |   15 +++-
 gmux_backlight.diff  |   10 
 sna_backlight_fixes.diff |   54 -
 3 files changed, 4 insertions(+), 75 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 14:26:01 UTC (rev 164196)
+++ PKGBUILD2012-07-27 14:26:50 UTC (rev 164197)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-intel
-pkgver=2.20.1
-pkgrel=3
+pkgver=2.20.2
+pkgrel=1
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -17,18 +17,11 @@
 conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-gmux_backlight.diff
-sna_backlight_fixes.diff)
-sha256sums=('de340a527dfa26bba6f79b423c2fe2b1d70657e46fa3fb468613c047443ff424'
-'87383122dae69512f86039e9d72110bd6bf4cf717756a31b34862c200277b31b'
-'a4a6bc1c4a6b79c80c56764eed8ab318a587ed554d5d9a381cc7238ab884ec04')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  # https://bugs.freedesktop.org/show_bug.cgi?id=52423
-  patch -Np1 -i ${srcdir}/gmux_backlight.diff
-  patch -Np1 -i ${srcdir}/sna_backlight_fixes.diff
   ./configure --prefix=/usr \
 --enable-dri
   make

Deleted: gmux_backlight.diff
===
--- gmux_backlight.diff 2012-07-27 14:26:01 UTC (rev 164196)
+++ gmux_backlight.diff 2012-07-27 14:26:50 UTC (rev 164197)
@@ -1,10 +0,0 @@
 xf86-video-intel-2.20.0.orig/src/intel_display.c   2012-07-15 
21:02:49.0 +1000
-+++ xf86-video-intel-2.20.0/src/intel_display.c2012-07-24 
11:53:42.762165514 +1000
-@@ -127,6 +127,7 @@
-  * List of available kernel interfaces in priority order
-  */
- static const char *backlight_interfaces[] = {
-+  gmux_backlight,
-   asus-laptop,
-   asus-nb-wmi,
-   eeepc,

Deleted: sna_backlight_fixes.diff
===
--- sna_backlight_fixes.diff2012-07-27 14:26:01 UTC (rev 164196)
+++ sna_backlight_fixes.diff2012-07-27 14:26:50 UTC (rev 164197)
@@ -1,54 +0,0 @@
-From 0ab6d7a50d37cf4454577cb8c333d4b8683aa054 Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Wed, 25 Jul 2012 11:20:36 +
-Subject: sna: Prefer platform backlight devices over firmware
-
-This is in contrast to libbacklight but closer to our original code as
-we prefer a known custom backlight controller over the ACPI interfaces.
-As only the ACPI interfaces are marked as firmware, and the custom
-backlight controllers as platform, we therefore need to prefer platform
-backlight devices.
-
-Reported-by: Austin Lund austin.l...@gmail.com
-References: https://bugs.freedesktop.org/show_bug.cgi?id=52423
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

-diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
-index b31f08d..ebecd21 100644
 a/src/sna/sna_display.c
-+++ b/src/sna/sna_display.c
-@@ -282,8 +282,8 @@ sna_output_backlight_get_max(xf86OutputPtr output)
- }
- 
- enum {
--  FIRMWARE,
-   PLATFORM,
-+  FIRMWARE,
-   RAW,
-   NAMED,
- };
---
-cgit v0.9.0.2-2-gbebe
-From 484b072072c8297a87940c9e32097923f0a77c8f Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Wed, 25 Jul 2012 11:22:47 +
-Subject: sna: Add 'gmux_backlight' to list of known devices for backwards 
compatability
-
-Reported-by: Austin Lund austin.l...@gmail.com
-References: https://bugs.freedesktop.org/show_bug.cgi?id=52423
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

-diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
-index ebecd21..a908596 100644
 a/src/sna/sna_display.c
-+++ b/src/sna/sna_display.c
-@@ -292,6 +292,7 @@ static void
- sna_output_backlight_init(xf86OutputPtr output)
- {
-   static const char *known_interfaces[] = {
-+  gmux_backlight,
-   asus-laptop,
-   asus-nb-wmi,
-   eeepc,
---
-cgit v0.9.0.2-2-gbebe



[arch-commits] Commit in xf86-video-intel/repos (12 files)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 10:27:24
  Author: andyrtr
Revision: 164198

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

Added:
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 164197, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
(from rev 164197, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 164197, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
(from rev 164197, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/extra-i686/gmux_backlight.diff
  xf86-video-intel/repos/extra-i686/sna_backlight_fixes.diff
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
  xf86-video-intel/repos/extra-x86_64/gmux_backlight.diff
  xf86-video-intel/repos/extra-x86_64/sna_backlight_fixes.diff
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install

---+
 extra-i686/PKGBUILD   |   77 ++--
 extra-i686/gmux_backlight.diff|   10 
 extra-i686/sna_backlight_fixes.diff   |   54 --
 extra-i686/xf86-video-intel.install   |   16 +++---
 extra-x86_64/PKGBUILD |   77 ++--
 extra-x86_64/gmux_backlight.diff  |   10 
 extra-x86_64/sna_backlight_fixes.diff |   54 --
 extra-x86_64/xf86-video-intel.install |   16 +++---
 8 files changed, 86 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:26:50 UTC (rev 164197)
+++ extra-i686/PKGBUILD 2012-07-27 14:27:24 UTC (rev 164198)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-intel
-pkgver=2.20.1
-pkgrel=3
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-install=$pkgname.install
-pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
-depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util=0.3.9' 
'libxfixes' 'systemd-tools')
-makedepends=('xorg-server-devel=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-gmux_backlight.diff
-sna_backlight_fixes.diff)
-sha256sums=('de340a527dfa26bba6f79b423c2fe2b1d70657e46fa3fb468613c047443ff424'
-'87383122dae69512f86039e9d72110bd6bf4cf717756a31b34862c200277b31b'
-'a4a6bc1c4a6b79c80c56764eed8ab318a587ed554d5d9a381cc7238ab884ec04')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # https://bugs.freedesktop.org/show_bug.cgi?id=52423
-  patch -Np1 -i ${srcdir}/gmux_backlight.diff
-  patch -Np1 -i ${srcdir}/sna_backlight_fixes.diff
-  ./configure --prefix=/usr \
---enable-dri
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-intel/repos/extra-i686/PKGBUILD (from rev 164197, 
xf86-video-intel/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:27:24 UTC (rev 164198)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-intel
+pkgver=2.20.2
+pkgrel=1
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+install=$pkgname.install
+pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
+depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util=0.3.9' 
'libxfixes' 'systemd-tools')
+makedepends=('xorg-server-devel=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--enable-dri
+  make
+}
+

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

2012-07-27 Thread Ionut Biru
Date: Friday, July 27, 2012 @ 10:28:17
  Author: ibiru
Revision: 164199

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

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

--+
 testing-i686/0001-Reinstate-TIMEOUT-handling.patch   |  248 +-
 testing-i686/PKGBUILD|  419 -
 testing-i686/initcpio-hook-udev  |   40 -
 testing-i686/initcpio-install-timestamp  |   28 -
 testing-i686/initcpio-install-udev   |   56 +-
 testing-i686/locale.sh   |  120 ++--
 testing-i686/systemd-tools.install   |   70 +-
 testing-i686/systemd.install |   74 +--
 testing-i686/use-split-usr-path.patch|   14 
 testing-x86_64/0001-Reinstate-TIMEOUT-handling.patch |  248 +-
 testing-x86_64/PKGBUILD  |  419 -
 testing-x86_64/initcpio-hook-udev|   40 -
 testing-x86_64/initcpio-install-timestamp|   28 -
 testing-x86_64/initcpio-install-udev |   56 +-
 testing-x86_64/locale.sh |  120 ++--
 testing-x86_64/systemd-tools.install |   70 +-
 testing-x86_64/systemd.install   |   74 +--
 testing-x86_64/use-split-usr-path.patch  |   14 
 18 files changed, 1086 insertions(+), 1052 deletions(-)

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


[arch-commits] Commit in telepathy-kde-accounts-kcm/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:43:53
  Author: andrea
Revision: 164200

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

Added:
  telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD
(from rev 164199, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
  telepathy-kde-accounts-kcm/repos/extra-x86_64/PKGBUILD
(from rev 164199, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
Deleted:
  telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD
  telepathy-kde-accounts-kcm/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:28:17 UTC (rev 164199)
+++ extra-i686/PKGBUILD 2012-07-27 14:43:53 UTC (rev 164200)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KCM Module for configuring Telepathy Instant Messaging Accounts
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
-'telepathy-haze: all protocols supported by libpurple')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-accounts-kcm-plugins')
-replaces=('telepathy-kde-accounts-kcm-plugins')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('fa48134361f955704700d211fdd3489ca58dc9c5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD (from rev 164199, 
telepathy-kde-accounts-kcm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:43:53 UTC (rev 164200)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=KCM Module for configuring Telepathy Instant Messaging Accounts
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
+'telepathy-haze: all protocols supported by libpurple')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-accounts-kcm-plugins')
+replaces=('telepathy-kde-accounts-kcm-plugins')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('e549047634dfd6366def2be143b06e01bee8c159')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:28:17 UTC (rev 164199)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:43:53 UTC (rev 164200)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KCM Module for configuring Telepathy Instant Messaging Accounts
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
-'telepathy-haze: all protocols supported by libpurple')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-accounts-kcm-plugins')
-replaces=('telepathy-kde-accounts-kcm-plugins')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('fa48134361f955704700d211fdd3489ca58dc9c5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} 

[arch-commits] Commit in telepathy-kde-approver/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:44:27
  Author: andrea
Revision: 164201

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

Added:
  telepathy-kde-approver/repos/extra-i686/PKGBUILD
(from rev 164200, telepathy-kde-approver/trunk/PKGBUILD)
  telepathy-kde-approver/repos/extra-x86_64/PKGBUILD
(from rev 164200, telepathy-kde-approver/trunk/PKGBUILD)
Deleted:
  telepathy-kde-approver/repos/extra-i686/PKGBUILD
  telepathy-kde-approver/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:43:53 UTC (rev 164200)
+++ extra-i686/PKGBUILD 2012-07-27 14:44:27 UTC (rev 164201)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-approver
-_pkgname=ktp-approver
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KDE Channel Approver for Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('d672826fac18817ec115aa0c52831e2c7761cade')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-approver/repos/extra-i686/PKGBUILD (from rev 164200, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:44:27 UTC (rev 164201)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=KDE Channel Approver for Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('04563bda017dacfb8a1e2c8f0e39adb47269fd47')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:43:53 UTC (rev 164200)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:44:27 UTC (rev 164201)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-approver
-_pkgname=ktp-approver
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KDE Channel Approver for Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('d672826fac18817ec115aa0c52831e2c7761cade')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-approver/repos/extra-x86_64/PKGBUILD (from rev 164200, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:44:27 UTC (rev 164201)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=KDE Channel Approver for Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')

[arch-commits] Commit in telepathy-kde-auth-handler/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:45:01
  Author: andrea
Revision: 164202

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

Added:
  telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD
(from rev 164201, telepathy-kde-auth-handler/trunk/PKGBUILD)
  telepathy-kde-auth-handler/repos/extra-x86_64/PKGBUILD
(from rev 164201, telepathy-kde-auth-handler/trunk/PKGBUILD)
Deleted:
  telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD
  telepathy-kde-auth-handler/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:44:27 UTC (rev 164201)
+++ extra-i686/PKGBUILD 2012-07-27 14:45:01 UTC (rev 164202)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-auth-handler
-_pkgname=ktp-auth-handler
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'qjson')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('a0158322f96a1f0356fdb9f1713af19ac4e45b8e')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD (from rev 164201, 
telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:45:01 UTC (rev 164202)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qjson')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('534ac05deacac0e9fb8a281813d6316b08ce8933')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:44:27 UTC (rev 164201)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:45:01 UTC (rev 164202)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-auth-handler
-_pkgname=ktp-auth-handler
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'qjson')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('a0158322f96a1f0356fdb9f1713af19ac4e45b8e')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-auth-handler/repos/extra-x86_64/PKGBUILD (from rev 
164201, telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:45:01 UTC (rev 164202)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qjson')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')

[arch-commits] Commit in telepathy-kde-call-ui/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:45:34
  Author: andrea
Revision: 164203

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

Added:
  telepathy-kde-call-ui/repos/extra-i686/PKGBUILD
(from rev 164202, telepathy-kde-call-ui/trunk/PKGBUILD)
  telepathy-kde-call-ui/repos/extra-x86_64/PKGBUILD
(from rev 164202, telepathy-kde-call-ui/trunk/PKGBUILD)
Deleted:
  telepathy-kde-call-ui/repos/extra-i686/PKGBUILD
  telepathy-kde-call-ui/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:45:01 UTC (rev 164202)
+++ extra-i686/PKGBUILD 2012-07-27 14:45:34 UTC (rev 164203)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-call-ui
-_pkgname=ktp-call-ui
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Voice/Video Call UI for Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'qt-gstreamer')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('be6bcaecde4091cad41520f203c559b614416bc6')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-call-ui/repos/extra-i686/PKGBUILD (from rev 164202, 
telepathy-kde-call-ui/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:45:34 UTC (rev 164203)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-call-ui
+_pkgname=ktp-call-ui
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Voice/Video Call UI for Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qt-gstreamer')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('e6cadf3bb6820ff015e49801a3b0196827dd9ab3')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:45:01 UTC (rev 164202)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:45:34 UTC (rev 164203)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-call-ui
-_pkgname=ktp-call-ui
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Voice/Video Call UI for Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'qt-gstreamer')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('be6bcaecde4091cad41520f203c559b614416bc6')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-call-ui/repos/extra-x86_64/PKGBUILD (from rev 164202, 
telepathy-kde-call-ui/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:45:34 UTC (rev 164203)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-call-ui
+_pkgname=ktp-call-ui
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Voice/Video Call UI for Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qt-gstreamer')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('e6cadf3bb6820ff015e49801a3b0196827dd9ab3')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+

[arch-commits] Commit in telepathy-kde-contact-applet/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:46:08
  Author: andrea
Revision: 164204

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

Added:
  telepathy-kde-contact-applet/repos/extra-i686/PKGBUILD
(from rev 164203, telepathy-kde-contact-applet/trunk/PKGBUILD)
  telepathy-kde-contact-applet/repos/extra-x86_64/PKGBUILD
(from rev 164203, telepathy-kde-contact-applet/trunk/PKGBUILD)
Deleted:
  telepathy-kde-contact-applet/repos/extra-i686/PKGBUILD
  telepathy-kde-contact-applet/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:45:34 UTC (rev 164203)
+++ extra-i686/PKGBUILD 2012-07-27 14:46:08 UTC (rev 164204)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-contact-applet
-_pkgname=ktp-contact-applet
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=The KDE-Telepathy contact plasmoid
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'kdebase-workspace')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('bffa7ed930519c574d25a59917219fa1735b6a2e')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-contact-applet/repos/extra-i686/PKGBUILD (from rev 
164203, telepathy-kde-contact-applet/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:46:08 UTC (rev 164204)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-contact-applet
+_pkgname=ktp-contact-applet
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=The KDE-Telepathy contact plasmoid
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('7cb95c4a9dd3a8b5ebe8775f3d846d4d4a31af60')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:45:34 UTC (rev 164203)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:46:08 UTC (rev 164204)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-contact-applet
-_pkgname=ktp-contact-applet
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=The KDE-Telepathy contact plasmoid
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'kdebase-workspace')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('bffa7ed930519c574d25a59917219fa1735b6a2e')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-contact-applet/repos/extra-x86_64/PKGBUILD (from rev 
164203, telepathy-kde-contact-applet/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:46:08 UTC (rev 164204)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-contact-applet
+_pkgname=ktp-contact-applet
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=The KDE-Telepathy contact plasmoid
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)

[arch-commits] Commit in telepathy-kde-contact-list/repos (8 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:46:38
  Author: andrea
Revision: 164205

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

Added:
  telepathy-kde-contact-list/repos/extra-i686/PKGBUILD
(from rev 164204, telepathy-kde-contact-list/trunk/PKGBUILD)
  telepathy-kde-contact-list/repos/extra-i686/telepathy-kde-contact-list.install
(from rev 164204, 
telepathy-kde-contact-list/trunk/telepathy-kde-contact-list.install)
  telepathy-kde-contact-list/repos/extra-x86_64/PKGBUILD
(from rev 164204, telepathy-kde-contact-list/trunk/PKGBUILD)
  
telepathy-kde-contact-list/repos/extra-x86_64/telepathy-kde-contact-list.install
(from rev 164204, 
telepathy-kde-contact-list/trunk/telepathy-kde-contact-list.install)
Deleted:
  telepathy-kde-contact-list/repos/extra-i686/PKGBUILD
  telepathy-kde-contact-list/repos/extra-i686/telepathy-kde-contact-list.install
  telepathy-kde-contact-list/repos/extra-x86_64/PKGBUILD
  
telepathy-kde-contact-list/repos/extra-x86_64/telepathy-kde-contact-list.install

-+
 extra-i686/PKGBUILD |   66 +++---
 extra-i686/telepathy-kde-contact-list.install   |   22 +++
 extra-x86_64/PKGBUILD   |   66 +++---
 extra-x86_64/telepathy-kde-contact-list.install |   22 +++
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:46:08 UTC (rev 164204)
+++ extra-i686/PKGBUILD 2012-07-27 14:46:38 UTC (rev 164205)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-contact-list
-_pkgname=ktp-contact-list
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Telepathy contact list application
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('a9f059f434adec33f57e2a77444d704ae8563bc2')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-contact-list/repos/extra-i686/PKGBUILD (from rev 164204, 
telepathy-kde-contact-list/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:46:38 UTC (rev 164205)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Telepathy contact list application
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('d9d062316f9eaff49f2fcad1ba2bbdf59dc8cc07')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/telepathy-kde-contact-list.install
===
--- extra-i686/telepathy-kde-contact-list.install   2012-07-27 14:46:08 UTC 
(rev 164204)
+++ extra-i686/telepathy-kde-contact-list.install   2012-07-27 14:46:38 UTC 
(rev 164205)
@@ -1,11 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: 
telepathy-kde-contact-list/repos/extra-i686/telepathy-kde-contact-list.install 
(from rev 164204, 
telepathy-kde-contact-list/trunk/telepathy-kde-contact-list.install)
===
--- extra-i686/telepathy-kde-contact-list.install   
(rev 0)
+++ extra-i686/telepathy-kde-contact-list.install   2012-07-27 14:46:38 UTC 
(rev 164205)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- 

[arch-commits] Commit in telepathy-kde-contact-runner/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:47:49
  Author: andrea
Revision: 164206

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

Added:
  telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD
(from rev 164205, telepathy-kde-contact-runner/trunk/PKGBUILD)
  telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD
(from rev 164205, telepathy-kde-contact-runner/trunk/PKGBUILD)
Deleted:
  telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD
  telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:46:38 UTC (rev 164205)
+++ extra-i686/PKGBUILD 2012-07-27 14:47:49 UTC (rev 164206)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-contact-runner
-_pkgname=ktp-contact-runner
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KRunner plugin for KDE Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('fe7f7d37740b732f8618b1e6129d4e7f30998b43')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD (from rev 
164205, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:47:49 UTC (rev 164206)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=KRunner plugin for KDE Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('388ebb2933114b7e0844bf6a8e71e5b7fdab3680')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:46:38 UTC (rev 164205)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:47:49 UTC (rev 164206)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-contact-runner
-_pkgname=ktp-contact-runner
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=KRunner plugin for KDE Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('fe7f7d37740b732f8618b1e6129d4e7f30998b43')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD (from rev 
164205, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:47:49 UTC (rev 164206)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=KRunner plugin for KDE Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('388ebb2933114b7e0844bf6a8e71e5b7fdab3680')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake 

[arch-commits] Commit in telepathy-kde-filetransfer-handler/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:49:01
  Author: andrea
Revision: 164207

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

Added:
  telepathy-kde-filetransfer-handler/repos/extra-i686/PKGBUILD
(from rev 164206, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
  telepathy-kde-filetransfer-handler/repos/extra-x86_64/PKGBUILD
(from rev 164206, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
Deleted:
  telepathy-kde-filetransfer-handler/repos/extra-i686/PKGBUILD
  telepathy-kde-filetransfer-handler/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:47:49 UTC (rev 164206)
+++ extra-i686/PKGBUILD 2012-07-27 14:49:01 UTC (rev 164207)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-filetransfer-handler
-_pkgname=ktp-filetransfer-handler
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Telepathy file transfer handler
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('f318849c4e8a171bff97defc19b7a94f2ee13512')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-filetransfer-handler/repos/extra-i686/PKGBUILD (from rev 
164206, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:49:01 UTC (rev 164207)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Telepathy file transfer handler
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('bb618e3fc36b321bfe5aaa7a0f8531b4c7fe25c2')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:47:49 UTC (rev 164206)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:49:01 UTC (rev 164207)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-filetransfer-handler
-_pkgname=ktp-filetransfer-handler
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Telepathy file transfer handler
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('f318849c4e8a171bff97defc19b7a94f2ee13512')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-filetransfer-handler/repos/extra-x86_64/PKGBUILD (from 
rev 164206, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:49:01 UTC (rev 164207)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Telepathy file transfer handler
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)

[arch-commits] Commit in telepathy-kde-integration-module/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:50:11
  Author: andrea
Revision: 164208

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

Added:
  telepathy-kde-integration-module/repos/extra-i686/PKGBUILD
(from rev 164207, telepathy-kde-integration-module/trunk/PKGBUILD)
  telepathy-kde-integration-module/repos/extra-x86_64/PKGBUILD
(from rev 164207, telepathy-kde-integration-module/trunk/PKGBUILD)
Deleted:
  telepathy-kde-integration-module/repos/extra-i686/PKGBUILD
  telepathy-kde-integration-module/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:49:01 UTC (rev 164207)
+++ extra-i686/PKGBUILD 2012-07-27 14:50:11 UTC (rev 164208)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-integration-module
-_pkgname=ktp-kded-integration-module
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('552d02b237ac167aef4707fd599dfb69cd944a72')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-integration-module/repos/extra-i686/PKGBUILD (from rev 
164207, telepathy-kde-integration-module/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:50:11 UTC (rev 164208)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-integration-module
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('a4bfe983db21ea7d56436d0426138215eb77b279')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:49:01 UTC (rev 164207)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:50:11 UTC (rev 164208)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-integration-module
-_pkgname=ktp-kded-integration-module
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('552d02b237ac167aef4707fd599dfb69cd944a72')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-integration-module/repos/extra-x86_64/PKGBUILD (from rev 
164207, telepathy-kde-integration-module/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:50:11 UTC (rev 164208)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-integration-module
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away 

[arch-commits] Commit in telepathy-kde-presence-applet/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:52:00
  Author: andrea
Revision: 164209

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

Added:
  telepathy-kde-presence-applet/repos/extra-i686/PKGBUILD
(from rev 164208, telepathy-kde-presence-applet/trunk/PKGBUILD)
  telepathy-kde-presence-applet/repos/extra-x86_64/PKGBUILD
(from rev 164208, telepathy-kde-presence-applet/trunk/PKGBUILD)
Deleted:
  telepathy-kde-presence-applet/repos/extra-i686/PKGBUILD
  telepathy-kde-presence-applet/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:50:11 UTC (rev 164208)
+++ extra-i686/PKGBUILD 2012-07-27 14:52:00 UTC (rev 164209)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-presence-applet
-_pkgname=ktp-presence-applet
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Plasma applet for managing your Telepathy account presence
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('beb12d534492da288cdda1826b43ba5bcd549fee')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-presence-applet/repos/extra-i686/PKGBUILD (from rev 
164208, telepathy-kde-presence-applet/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:52:00 UTC (rev 164209)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-presence-applet
+_pkgname=ktp-presence-applet
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Plasma applet for managing your Telepathy account presence
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('392758b5ced3eea0f315c9dabacc1f3e421a8171')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:50:11 UTC (rev 164208)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:52:00 UTC (rev 164209)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-presence-applet
-_pkgname=ktp-presence-applet
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Plasma applet for managing your Telepathy account presence
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('beb12d534492da288cdda1826b43ba5bcd549fee')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-presence-applet/repos/extra-x86_64/PKGBUILD (from rev 
164208, telepathy-kde-presence-applet/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:52:00 UTC (rev 164209)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-presence-applet
+_pkgname=ktp-presence-applet
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Plasma applet for managing your Telepathy account presence
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')

[arch-commits] Commit in iptables/repos (64 files)

2012-07-27 Thread Ionut Biru
Date: Friday, July 27, 2012 @ 10:54:09
  Author: ibiru
Revision: 164210

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

Added:
  iptables/repos/core-i686/0503-extension_cppflags.patch
(from rev 164209, iptables/repos/testing-i686/0503-extension_cppflags.patch)
  iptables/repos/core-i686/PKGBUILD
(from rev 164209, iptables/repos/testing-i686/PKGBUILD)
  iptables/repos/core-i686/empty-filter.rules
(from rev 164209, iptables/repos/testing-i686/empty-filter.rules)
  iptables/repos/core-i686/empty-mangle.rules
(from rev 164209, iptables/repos/testing-i686/empty-mangle.rules)
  iptables/repos/core-i686/empty-nat.rules
(from rev 164209, iptables/repos/testing-i686/empty-nat.rules)
  iptables/repos/core-i686/empty-raw.rules
(from rev 164209, iptables/repos/testing-i686/empty-raw.rules)
  iptables/repos/core-i686/empty-security.rules
(from rev 164209, iptables/repos/testing-i686/empty-security.rules)
  iptables/repos/core-i686/empty.rules
(from rev 164209, iptables/repos/testing-i686/empty.rules)
  iptables/repos/core-i686/ip6tables
(from rev 164209, iptables/repos/testing-i686/ip6tables)
  iptables/repos/core-i686/ip6tables.service
(from rev 164209, iptables/repos/testing-i686/ip6tables.service)
  iptables/repos/core-i686/iptables
(from rev 164209, iptables/repos/testing-i686/iptables)
  iptables/repos/core-i686/iptables-1.4.12-fixresore.patch
(from rev 164209, 
iptables/repos/testing-i686/iptables-1.4.12-fixresore.patch)
  iptables/repos/core-i686/iptables-flush
(from rev 164209, iptables/repos/testing-i686/iptables-flush)
  iptables/repos/core-i686/iptables.conf.d
(from rev 164209, iptables/repos/testing-i686/iptables.conf.d)
  iptables/repos/core-i686/iptables.service
(from rev 164209, iptables/repos/testing-i686/iptables.service)
  iptables/repos/core-i686/simple_firewall.rules
(from rev 164209, iptables/repos/testing-i686/simple_firewall.rules)
  iptables/repos/core-x86_64/0503-extension_cppflags.patch
(from rev 164209, 
iptables/repos/testing-x86_64/0503-extension_cppflags.patch)
  iptables/repos/core-x86_64/PKGBUILD
(from rev 164209, iptables/repos/testing-x86_64/PKGBUILD)
  iptables/repos/core-x86_64/empty-filter.rules
(from rev 164209, iptables/repos/testing-x86_64/empty-filter.rules)
  iptables/repos/core-x86_64/empty-mangle.rules
(from rev 164209, iptables/repos/testing-x86_64/empty-mangle.rules)
  iptables/repos/core-x86_64/empty-nat.rules
(from rev 164209, iptables/repos/testing-x86_64/empty-nat.rules)
  iptables/repos/core-x86_64/empty-raw.rules
(from rev 164209, iptables/repos/testing-x86_64/empty-raw.rules)
  iptables/repos/core-x86_64/empty-security.rules
(from rev 164209, iptables/repos/testing-x86_64/empty-security.rules)
  iptables/repos/core-x86_64/empty.rules
(from rev 164209, iptables/repos/testing-x86_64/empty.rules)
  iptables/repos/core-x86_64/ip6tables
(from rev 164209, iptables/repos/testing-x86_64/ip6tables)
  iptables/repos/core-x86_64/ip6tables.service
(from rev 164209, iptables/repos/testing-x86_64/ip6tables.service)
  iptables/repos/core-x86_64/iptables
(from rev 164209, iptables/repos/testing-x86_64/iptables)
  iptables/repos/core-x86_64/iptables-1.4.12-fixresore.patch
(from rev 164209, 
iptables/repos/testing-x86_64/iptables-1.4.12-fixresore.patch)
  iptables/repos/core-x86_64/iptables-flush
(from rev 164209, iptables/repos/testing-x86_64/iptables-flush)
  iptables/repos/core-x86_64/iptables.conf.d
(from rev 164209, iptables/repos/testing-x86_64/iptables.conf.d)
  iptables/repos/core-x86_64/iptables.service
(from rev 164209, iptables/repos/testing-x86_64/iptables.service)
  iptables/repos/core-x86_64/simple_firewall.rules
(from rev 164209, iptables/repos/testing-x86_64/simple_firewall.rules)
Deleted:
  iptables/repos/core-i686/0503-extension_cppflags.patch
  iptables/repos/core-i686/PKGBUILD
  iptables/repos/core-i686/empty-filter.rules
  iptables/repos/core-i686/empty-mangle.rules
  iptables/repos/core-i686/empty-nat.rules
  iptables/repos/core-i686/empty-raw.rules
  iptables/repos/core-i686/empty-security.rules
  iptables/repos/core-i686/empty.rules
  iptables/repos/core-i686/ip6tables
  iptables/repos/core-i686/ip6tables.service
  iptables/repos/core-i686/iptables
  iptables/repos/core-i686/iptables-flush
  iptables/repos/core-i686/iptables.conf.d
  iptables/repos/core-i686/iptables.service
  iptables/repos/core-i686/simple_firewall.rules
  iptables/repos/core-x86_64/0503-extension_cppflags.patch
  iptables/repos/core-x86_64/PKGBUILD
  iptables/repos/core-x86_64/empty-filter.rules
  iptables/repos/core-x86_64/empty-mangle.rules
  iptables/repos/core-x86_64/empty-nat.rules
  iptables/repos/core-x86_64/empty-raw.rules
  iptables/repos/core-x86_64/empty-security.rules
  iptables/repos/core-x86_64/empty.rules
  iptables/repos/core-x86_64/ip6tables
  iptables/repos/core-x86_64/ip6tables.service
  iptables/repos/core-x86_64/iptables

[arch-commits] Commit in telepathy-kde-send-file/repos (6 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:56:56
  Author: andrea
Revision: 164211

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

Added:
  telepathy-kde-send-file/repos/extra-i686/PKGBUILD
(from rev 164209, telepathy-kde-send-file/trunk/PKGBUILD)
  telepathy-kde-send-file/repos/extra-i686/telepathy-kde-send-file.install
(from rev 164209, 
telepathy-kde-send-file/trunk/telepathy-kde-send-file.install)
Deleted:
  telepathy-kde-send-file/repos/extra-i686/PKGBUILD
  telepathy-kde-send-file/repos/extra-i686/telepathy-kde-send-file.install
  telepathy-kde-send-file/repos/extra-x86_64/PKGBUILD
  telepathy-kde-send-file/repos/extra-x86_64/telepathy-kde-send-file.install

--+
 extra-i686/PKGBUILD  |   64 -
 extra-i686/telepathy-kde-send-file.install   |   22 
 extra-x86_64/PKGBUILD|   32 
 extra-x86_64/telepathy-kde-send-file.install |   11 
 4 files changed, 43 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:54:09 UTC (rev 164210)
+++ extra-i686/PKGBUILD 2012-07-27 14:56:56 UTC (rev 164211)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-send-file
-_pkgname=ktp-send-file
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=A File manager plugin to launch a file transfer job with a specified 
contact
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('c72f5a9e26ba24b6558a8dab6d0ec2694aa55afc')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-send-file/repos/extra-i686/PKGBUILD (from rev 164209, 
telepathy-kde-send-file/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:56:56 UTC (rev 164211)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=A File manager plugin to launch a file transfer job with a specified 
contact
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('23aa731d15dff440da587dec359e7298ec0a0895')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/telepathy-kde-send-file.install
===
--- extra-i686/telepathy-kde-send-file.install  2012-07-27 14:54:09 UTC (rev 
164210)
+++ extra-i686/telepathy-kde-send-file.install  2012-07-27 14:56:56 UTC (rev 
164211)
@@ -1,11 +0,0 @@
-post_install() {
-update-desktop-database -q
-}
-
-post_update() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: 
telepathy-kde-send-file/repos/extra-i686/telepathy-kde-send-file.install (from 
rev 164209, telepathy-kde-send-file/trunk/telepathy-kde-send-file.install)
===
--- extra-i686/telepathy-kde-send-file.install  (rev 0)
+++ extra-i686/telepathy-kde-send-file.install  2012-07-27 14:56:56 UTC (rev 
164211)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:54:09 UTC (rev 164210)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:56:56 UTC (rev 164211)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-send-file
-_pkgname=ktp-send-file
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=A File manager plugin to launch a file transfer job with a specified 
contact
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;

[arch-commits] Commit in telepathy-kde-text-ui/repos (4 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:57:33
  Author: andrea
Revision: 164212

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

Added:
  telepathy-kde-text-ui/repos/extra-i686/PKGBUILD
(from rev 164211, telepathy-kde-text-ui/trunk/PKGBUILD)
  telepathy-kde-text-ui/repos/extra-x86_64/PKGBUILD
(from rev 164211, telepathy-kde-text-ui/trunk/PKGBUILD)
Deleted:
  telepathy-kde-text-ui/repos/extra-i686/PKGBUILD
  telepathy-kde-text-ui/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:56:56 UTC (rev 164211)
+++ extra-i686/PKGBUILD 2012-07-27 14:57:33 UTC (rev 164212)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-text-ui
-_pkgname=ktp-text-ui
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Telepathy handler for Text Chats
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-contact-list' 'telepathy-logger-qt')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('4ddf762b928d7e5f1139cdcced27a866c5369312')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-text-ui/repos/extra-i686/PKGBUILD (from rev 164211, 
telepathy-kde-text-ui/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:57:33 UTC (rev 164212)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Telepathy handler for Text Chats
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-contact-list' 'telepathy-logger-qt')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('8e32e8708d7283714ad6e999caf07388472bba38')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 14:56:56 UTC (rev 164211)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:57:33 UTC (rev 164212)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Laurent Carlier lordhea...@gmail.com
-
-pkgname=telepathy-kde-text-ui
-_pkgname=ktp-text-ui
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Telepathy handler for Text Chats
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('telepathy-kde-contact-list' 'telepathy-logger-qt')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('4ddf762b928d7e5f1139cdcced27a866c5369312')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-text-ui/repos/extra-x86_64/PKGBUILD (from rev 164211, 
telepathy-kde-text-ui/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-07-27 14:57:33 UTC (rev 164212)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Laurent Carlier lordhea...@gmail.com
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Telepathy handler for Text Chats
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-contact-list' 'telepathy-logger-qt')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')

[arch-commits] Commit in telepathy-kde-common-internals/repos (10 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 10:57:48
  Author: andrea
Revision: 164213

db-move: moved telepathy-kde-common-internals from [staging] to [extra] ( i686, 
 x86_64)

Added:
  telepathy-kde-common-internals/repos/extra-i686/PKGBUILD
(from rev 164212, 
telepathy-kde-common-internals/repos/staging-i686/PKGBUILD)
  
telepathy-kde-common-internals/repos/extra-i686/telepathy-kde-common-internals.install
(from rev 164212, 
telepathy-kde-common-internals/repos/staging-i686/telepathy-kde-common-internals.install)
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
(from rev 164212, 
telepathy-kde-common-internals/repos/staging-x86_64/PKGBUILD)
  
telepathy-kde-common-internals/repos/extra-x86_64/telepathy-kde-common-internals.install
(from rev 164212, 
telepathy-kde-common-internals/repos/staging-x86_64/telepathy-kde-common-internals.install)
Deleted:
  telepathy-kde-common-internals/repos/extra-i686/PKGBUILD
  
telepathy-kde-common-internals/repos/extra-i686/telepathy-kde-common-internals.install
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
  
telepathy-kde-common-internals/repos/extra-x86_64/telepathy-kde-common-internals.install
  telepathy-kde-common-internals/repos/staging-i686/
  telepathy-kde-common-internals/repos/staging-x86_64/

-+
 extra-i686/PKGBUILD |   64 +-
 extra-i686/telepathy-kde-common-internals.install   |   22 +++---
 extra-x86_64/PKGBUILD   |   64 +-
 extra-x86_64/telepathy-kde-common-internals.install |   22 +++---
 4 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 14:57:33 UTC (rev 164212)
+++ extra-i686/PKGBUILD 2012-07-27 14:57:48 UTC (rev 164213)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=telepathy-kde-common-internals
-_pkgname=ktp-common-internals
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=Common components for KDE-Telepathy
-arch=('i686' 'x86_64')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('db3bdbd93a27c77a1e593e84252cf2950ca773e6')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-kde-common-internals/repos/extra-i686/PKGBUILD (from rev 
164212, telepathy-kde-common-internals/repos/staging-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 14:57:48 UTC (rev 164213)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=Common components for KDE-Telepathy
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('9acb65efa371ba4f23063bc83ea7a488ac73e4b7')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/telepathy-kde-common-internals.install
===
--- extra-i686/telepathy-kde-common-internals.install   2012-07-27 14:57:33 UTC 
(rev 164212)
+++ extra-i686/telepathy-kde-common-internals.install   2012-07-27 14:57:48 UTC 
(rev 164213)
@@ -1,11 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_update() {
-post_install
-}
-
-post_remove() {
-post_install
-}
\ No newline at end of file

Copied: 
telepathy-kde-common-internals/repos/extra-i686/telepathy-kde-common-internals.install
 (from rev 164212, 
telepathy-kde-common-internals/repos/staging-i686/telepathy-kde-common-internals.install)
===
--- extra-i686/telepathy-kde-common-internals.install   
(rev 0)
+++ extra-i686/telepathy-kde-common-internals.install   2012-07-27 14:57:48 UTC 
(rev 164213)

[arch-commits] Commit in pkgstats/trunk (PKGBUILD pkgstats.sh)

2012-07-27 Thread Pierre Schmitz
Date: Friday, July 27, 2012 @ 11:07:02
  Author: pierre
Revision: 164214

upgpkg: pkgstats 2.3-1

send the actual cpu architecture as well

Modified:
  pkgstats/trunk/PKGBUILD
  pkgstats/trunk/pkgstats.sh

-+
 PKGBUILD|6 +++---
 pkgstats.sh |   15 +--
 2 files changed, 16 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 14:57:48 UTC (rev 164213)
+++ PKGBUILD2012-07-27 15:07:02 UTC (rev 164214)
@@ -2,16 +2,16 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=pkgstats
-pkgver=2.2
+pkgver=2.3
 pkgrel=1
 pkgdesc='submits a list of installed packages to the Arch Linux project'
 arch=('any')
 url='https://www.archlinux.de'
 license=('GPL')
-depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk')
+depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk' 'grep')
 source=('pkgstats.sh' 'pkgstats.cron')
 install='pkgstats.install'
-md5sums=('93ab636b7a02d89ecd852e28c7e2a07c'
+md5sums=('f894fc13082459bf16070ab54ef2501b'
  'e86e6b9778303367f2e31f5c311da685')
 
 package() {

Modified: pkgstats.sh
===
--- pkgstats.sh 2012-07-27 14:57:48 UTC (rev 164213)
+++ pkgstats.sh 2012-07-27 15:07:02 UTC (rev 164214)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-pkgstatsver='2.2'
+pkgstatsver='2.3'
 showonly=false
 quiet=false
 option='-q -s -S -4'
@@ -37,9 +37,18 @@
 pacman -Qq  ${pkglist}
 moduleslist=$(mktemp --tmpdir modules.XX)
 if [[ -f /proc/modules ]]; then
-   cat /proc/modules | awk '{ print $1 }'  ${moduleslist}
+   awk '{ print $1 }' /proc/modules  ${moduleslist}
 fi
 arch=$(uname -m)
+if [[ -f /proc/cpuinfo ]]; then
+   if grep -qE '^flags\s*:.*\slm\s' /proc/cpuinfo; then
+   cpuarch='x86_64'
+   else
+   cpuarch='i686'
+   fi
+else
+   cpuarch=''
+fi
 mirror=$(pacman -Sddp extra/pkgstats 2/dev/null | sed -E 
's#(.*/)extra/os/.*#\1#;s#(.*://).*@#\1#')
 
 if ${showonly}; then
@@ -50,6 +59,7 @@
cat ${moduleslist}
echo ''
echo arch=${arch}
+   echo cpuarch=${cpuarch}
echo pkgstatsver=${pkgstatsver}
echo mirror=${mirror}
echo quiet=${quiet}
@@ -60,6 +70,7 @@
--data-urlencode packages@${pkglist} \
--data-urlencode modules@${moduleslist} \
--data-urlencode arch=${arch} \
+   --data-urlencode cpuarch=${cpuarch} \
--data-urlencode mirror=${mirror} \
--data-urlencode quiet=${quiet} \
'https://www.archlinux.de/?page=PostPackageList' \



[arch-commits] Commit in pkgstats/repos/testing-any (8 files)

2012-07-27 Thread Pierre Schmitz
Date: Friday, July 27, 2012 @ 11:07:26
  Author: pierre
Revision: 164215

archrelease: copy trunk to testing-any

Added:
  pkgstats/repos/testing-any/PKGBUILD
(from rev 164214, pkgstats/trunk/PKGBUILD)
  pkgstats/repos/testing-any/pkgstats.cron
(from rev 164214, pkgstats/trunk/pkgstats.cron)
  pkgstats/repos/testing-any/pkgstats.install
(from rev 164214, pkgstats/trunk/pkgstats.install)
  pkgstats/repos/testing-any/pkgstats.sh
(from rev 164214, pkgstats/trunk/pkgstats.sh)
Deleted:
  pkgstats/repos/testing-any/PKGBUILD
  pkgstats/repos/testing-any/pkgstats.cron
  pkgstats/repos/testing-any/pkgstats.install
  pkgstats/repos/testing-any/pkgstats.sh

--+
 PKGBUILD |   40 +++---
 pkgstats.cron|4 -
 pkgstats.install |   20 +++
 pkgstats.sh  |  149 -
 4 files changed, 112 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-27 15:07:02 UTC (rev 164214)
+++ PKGBUILD2012-07-27 15:07:26 UTC (rev 164215)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=pkgstats
-pkgver=2.2
-pkgrel=1
-pkgdesc='submits a list of installed packages to the Arch Linux project'
-arch=('any')
-url='https://www.archlinux.de'
-license=('GPL')
-depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk')
-source=('pkgstats.sh' 'pkgstats.cron')
-install='pkgstats.install'
-md5sums=('93ab636b7a02d89ecd852e28c7e2a07c'
- 'e86e6b9778303367f2e31f5c311da685')
-
-package() {
-   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
-   install -D -m744 ${srcdir}/pkgstats.cron 
${pkgdir}/etc/cron.weekly/pkgstats
-}

Copied: pkgstats/repos/testing-any/PKGBUILD (from rev 164214, 
pkgstats/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-27 15:07:26 UTC (rev 164215)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=pkgstats
+pkgver=2.3
+pkgrel=1
+pkgdesc='submits a list of installed packages to the Arch Linux project'
+arch=('any')
+url='https://www.archlinux.de'
+license=('GPL')
+depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk' 'grep')
+source=('pkgstats.sh' 'pkgstats.cron')
+install='pkgstats.install'
+md5sums=('f894fc13082459bf16070ab54ef2501b'
+ 'e86e6b9778303367f2e31f5c311da685')
+
+package() {
+   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
+   install -D -m744 ${srcdir}/pkgstats.cron 
${pkgdir}/etc/cron.weekly/pkgstats
+}

Deleted: pkgstats.cron
===
--- pkgstats.cron   2012-07-27 15:07:02 UTC (rev 164214)
+++ pkgstats.cron   2012-07-27 15:07:26 UTC (rev 164215)
@@ -1,2 +0,0 @@
-#!/bin/sh
-su -s /bin/bash -c '/usr/bin/pkgstats -q' nobody

Copied: pkgstats/repos/testing-any/pkgstats.cron (from rev 164214, 
pkgstats/trunk/pkgstats.cron)
===
--- pkgstats.cron   (rev 0)
+++ pkgstats.cron   2012-07-27 15:07:26 UTC (rev 164215)
@@ -0,0 +1,2 @@
+#!/bin/sh
+su -s /bin/bash -c '/usr/bin/pkgstats -q' nobody

Deleted: pkgstats.install
===
--- pkgstats.install2012-07-27 15:07:02 UTC (rev 164214)
+++ pkgstats.install2012-07-27 15:07:26 UTC (rev 164215)
@@ -1,10 +0,0 @@
-post_upgrade() {
-   if [ $(vercmp $2 2.1-4) -lt 0 ]; then
-   post_install
-   fi
-}
-
-post_install() {
-   echo Note: A weekly cronjob was installed to /etc/cron.weekly/pkgstats
-   echo   For more information see 
https://bbs.archlinux.org/viewtopic.php?id=105431;
-}

Copied: pkgstats/repos/testing-any/pkgstats.install (from rev 164214, 
pkgstats/trunk/pkgstats.install)
===
--- pkgstats.install(rev 0)
+++ pkgstats.install2012-07-27 15:07:26 UTC (rev 164215)
@@ -0,0 +1,10 @@
+post_upgrade() {
+   if [ $(vercmp $2 2.1-4) -lt 0 ]; then
+   post_install
+   fi
+}
+
+post_install() {
+   echo Note: A weekly cronjob was installed to /etc/cron.weekly/pkgstats
+   echo   For more information see 
https://bbs.archlinux.org/viewtopic.php?id=105431;
+}

Deleted: pkgstats.sh
===
--- pkgstats.sh 2012-07-27 15:07:02 UTC (rev 164214)
+++ pkgstats.sh 2012-07-27 15:07:26 UTC (rev 164215)
@@ -1,69 +0,0 @@
-#!/bin/bash
-
-pkgstatsver='2.2'
-showonly=false
-quiet=false
-option='-q -s -S -4'
-
-usage() {
-   echo usage: ${0} [option]
-   echo 'options:'
-   echo '  -v  show the version of pkgstats'
-   echo '  -d  enable debug mode'
-   echo '  -h  show this 

[arch-commits] Commit in telepathy-kde-send-file/repos/extra-x86_64 (2 files)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 11:10:20
  Author: andrea
Revision: 164216

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-kde-send-file/repos/extra-x86_64/PKGBUILD
(from rev 164215, telepathy-kde-send-file/trunk/PKGBUILD)
  telepathy-kde-send-file/repos/extra-x86_64/telepathy-kde-send-file.install
(from rev 164215, 
telepathy-kde-send-file/trunk/telepathy-kde-send-file.install)

-+
 PKGBUILD|   32 
 telepathy-kde-send-file.install |   11 +++
 2 files changed, 43 insertions(+)

Copied: telepathy-kde-send-file/repos/extra-x86_64/PKGBUILD (from rev 164215, 
telepathy-kde-send-file/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-27 15:10:20 UTC (rev 164216)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=A File manager plugin to launch a file transfer job with a specified 
contact
+arch=('i686' 'x86_64')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('23aa731d15dff440da587dec359e7298ec0a0895')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: 
telepathy-kde-send-file/repos/extra-x86_64/telepathy-kde-send-file.install 
(from rev 164215, telepathy-kde-send-file/trunk/telepathy-kde-send-file.install)
===
--- telepathy-kde-send-file.install (rev 0)
+++ telepathy-kde-send-file.install 2012-07-27 15:10:20 UTC (rev 164216)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}



[arch-commits] Commit in kde-telepathy-meta/repos/extra-any (PKGBUILD PKGBUILD)

2012-07-27 Thread Andrea Scarpino
Date: Friday, July 27, 2012 @ 11:13:04
  Author: andrea
Revision: 164217

archrelease: copy trunk to extra-any

Added:
  kde-telepathy-meta/repos/extra-any/PKGBUILD
(from rev 164216, kde-telepathy-meta/trunk/PKGBUILD)
Deleted:
  kde-telepathy-meta/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-27 15:10:20 UTC (rev 164216)
+++ PKGBUILD2012-07-27 15:13:04 UTC (rev 164217)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kde-telepathy-meta
-epoch=1
-pkgver=0.4.0
-pkgrel=1
-arch=('any')
-url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
-license=('GPL')
-pkgdesc=KDE-Telepathy meta package
-depends=('telepathy-kde-accounts-kcm'
- 'telepathy-kde-approver'
- 'telepathy-kde-auth-handler'
- 'telepathy-kde-call-ui'
- 'telepathy-kde-contact-applet'
- 'telepathy-kde-contact-runner'
- 'telepathy-kde-contact-list'
- 'telepathy-kde-filetransfer-handler'
- 'telepathy-kde-integration-module'
- 'telepathy-kde-presence-applet'
- 'telepathy-kde-send-file'
- 'telepathy-kde-text-ui')

Copied: kde-telepathy-meta/repos/extra-any/PKGBUILD (from rev 164216, 
kde-telepathy-meta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-27 15:13:04 UTC (rev 164217)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kde-telepathy-meta
+epoch=1
+pkgver=0.4.1
+pkgrel=1
+arch=('any')
+url=http://community.kde.org/Real-Time_Communication_and_Collaboration;
+license=('GPL')
+pkgdesc=KDE-Telepathy meta package
+depends=('telepathy-kde-accounts-kcm'
+ 'telepathy-kde-approver'
+ 'telepathy-kde-auth-handler'
+ 'telepathy-kde-call-ui'
+ 'telepathy-kde-contact-applet'
+ 'telepathy-kde-contact-runner'
+ 'telepathy-kde-contact-list'
+ 'telepathy-kde-filetransfer-handler'
+ 'telepathy-kde-integration-module'
+ 'telepathy-kde-presence-applet'
+ 'telepathy-kde-send-file'
+ 'telepathy-kde-text-ui')



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

2012-07-27 Thread Tobias Powalowski
Date: Friday, July 27, 2012 @ 14:11:45
  Author: tpowa
Revision: 164218

remove patches merged upstream

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 15:13:04 UTC (rev 164217)
+++ PKGBUILD2012-07-27 18:11:45 UTC (rev 164218)
@@ -8,7 +8,7 @@
 _kernelname=${pkgname#linux}
 _basekernel=3.5
 pkgver=${_basekernel}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
 license=('GPL2')
@@ -20,16 +20,12 @@
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
 ${pkgname}.preset
-'fix-acerhdf-1810T-bios.patch'
-'change-default-console-loglevel.patch'
-'i915-fix-ghost-tv-output.patch')
+'change-default-console-loglevel.patch')
 md5sums=('24153eaaa81dedc9481ada8cd9c3b83d'
  'a2facfc8fe8ba073f64d125694cda469'
  '05d00f104528ced0a3bd9bd6ca9733b9'
  'eb14dcfd80c00852ef81ded6e826826a'
- '38c1fd4a1f303f1f6c38e7f082727e2f'
- '9d3c56a4b999c8bfbd4018089a62f662'
- '263725f20c0b9eb9c353040792d644e5')
+ '9d3c56a4b999c8bfbd4018089a62f662')
 
 build() {
   cd ${srcdir}/linux-${_basekernel}
@@ -40,20 +36,6 @@
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
 
-  # Some chips detect a ghost TV output
-  # mailing list discussion: 
http://lists.freedesktop.org/archives/intel-gfx/2011-April/010371.html
-  # Arch Linux bug report: FS#19234
-  #
-  # It is unclear why this patch wasn't merged upstream, it was accepted,
-  # then dropped because the reasoning was unclear. However, it is clearly
-  # needed.
-  patch -Np1 -i ${srcdir}/i915-fix-ghost-tv-output.patch
-
-  # Patch submitted upstream, waiting for inclusion:
-  # https://lkml.org/lkml/2012/2/19/51
-  # add support for latest bios of Acer 1810T acerhdf module
-  patch -Np1 -i ${srcdir}/fix-acerhdf-1810T-bios.patch
-
   # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
   # remove this when a Kconfig knob is made available by upstream
   # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)



[arch-commits] Commit in libktorrent/trunk (PKGBUILD magnet.patch)

2012-07-27 Thread Ronald van Haren
Date: Friday, July 27, 2012 @ 14:34:30
  Author: ronald
Revision: 164219

upgpkg: libktorrent 1.2.1-2

add upstream magnet link patch for FS#30524

Added:
  libktorrent/trunk/magnet.patch
Modified:
  libktorrent/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++-
 magnet.patch |  226 +
 2 files changed, 236 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 18:11:45 UTC (rev 164218)
+++ PKGBUILD2012-07-27 18:34:30 UTC (rev 164219)
@@ -4,18 +4,25 @@
 
 pkgname=libktorrent
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A BitTorrent protocol implementation
 arch=('i686' 'x86_64')
 url=http://ktorrent.org/;
 license=('GPL2')
 depends=('kdelibs')
 makedepends=('automoc4' 'cmake' 'boost' 'doxygen')
-source=(http://ktorrent.org/downloads/4.2.1/${pkgname}-${pkgver}-2.tar.bz2;)
-sha1sums=('857e4227c4bba685755d66581d881f893f6311ae')
+source=(http://ktorrent.org/downloads/4.2.1/${pkgname}-${pkgver}-2.tar.bz2;
+   magnet.patch)
+sha1sums=('857e4227c4bba685755d66581d881f893f6311ae'
+  'f0156489364e5590b0b539cfe2abc929c1922ef8')
 
 build() {
   cd ${srcdir}
+
+  pushd ${pkgname}-${pkgver}-2
+  patch -Np1 -i ${srcdir}/magnet.patch
+  popd
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver}-2 \

Added: magnet.patch
===
--- magnet.patch(rev 0)
+++ magnet.patch2012-07-27 18:34:30 UTC (rev 164219)
@@ -0,0 +1,226 @@
+commit 5107e4b7a050d7533f44801f5f5f5694203fd3b5
+Author: Joris Guisson joris.guis...@gmail.com
+Date:   Wed Jul 11 20:16:43 2012 +0200
+
+Make sure all trackers are used of a magnet link
+
+BUG: 302997
+BUG: 303269
+
+diff --git a/src/magnet/magnetlink.cpp b/src/magnet/magnetlink.cpp
+index 525bfa5..43168dc 100644
+--- a/src/magnet/magnetlink.cpp
 b/src/magnet/magnetlink.cpp
+@@ -19,13 +19,14 @@
+  ***/
+ 
+ #include magnetlink.h
++#include QUrl
+ #include QStringList
+ #include util/log.h
+ #include util/error.h
+ 
+ namespace bt
+ {
+-  
++
+   MagnetLink::MagnetLink()
+   {
+   }
+@@ -44,7 +45,7 @@ namespace bt
+   {
+   parse(mlink);
+   }
+-  
++
+   MagnetLink::~MagnetLink()
+   {
+   }
+@@ -64,83 +65,114 @@ namespace bt
+   {
+   return info_hash == mlink.infoHash();
+   }
+-  
++
++  static KUrl::List GetTrackers(const KUrl  url)
++  {
++  KUrl::List result;
++  const QString encoded_query = 
QString::fromLatin1(url.encodedQuery());
++  const QString item = QLatin1String(tr=);
++  if(encoded_query.length() = 1)
++  return result;
++
++  const QStringList items = 
encoded_query.split(QString(QLatin1Char('')), QString::SkipEmptyParts);
++  const int len = item.length();
++  for(QStringList::ConstIterator it = items.begin(); it != 
items.end(); ++it)
++  {
++  if((*it).startsWith(item))
++  {
++  if((*it).length()  len)
++  {
++  QString str = (*it).mid(len);
++  str.replace(QLatin1Char('+'), 
QLatin1Char(' '));   // + in queries means space.
++  
result.push_back(QUrl::fromPercentEncoding(str.toLatin1()));
++  }
++  }
++  }
++
++  return result;
++  }
++
+   void MagnetLink::parse(const QString mlink)
+   {
+   KUrl url(mlink);
+-  if (url.protocol() != magnet)
++  if(url.protocol() != magnet)
+   {
+-  Out(SYS_GEN|LOG_NOTICE)  Invalid protocol of magnet 
link 
+-   mlink  endl;
++  Out(SYS_GEN | LOG_NOTICE)  Invalid protocol of 
magnet link 
++ mlink  endl;
+   return;
+   }
+-  
++
+   torrent_url = url.queryItem(to);
+   
//magnet://description-of-content.btih.HASH(-HASH)*.dht/path/file?x.pt=x.to=
+ 
+   // TODO automatically select these files and prefetches from 
here
+   path = url.queryItem(pt);
+-  if ( path.isEmpty()  url.hasPath()  url.path() != / ) {
++  if(path.isEmpty()  url.hasPath()  url.path() != /)
++  {
+   // TODO find out why RemoveTrailingSlash does not work
+   path = 
url.path(KUrl::RemoveTrailingSlash).remove(QRegExp(^/));
+   }
+ 
+   QString xt = url.queryItem(xt);
+-  if 

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

2012-07-27 Thread Ronald van Haren
Date: Friday, July 27, 2012 @ 14:35:04
  Author: ronald
Revision: 164220

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

Added:
  libktorrent/repos/extra-i686/PKGBUILD
(from rev 164219, libktorrent/trunk/PKGBUILD)
  libktorrent/repos/extra-i686/magnet.patch
(from rev 164219, libktorrent/trunk/magnet.patch)
  libktorrent/repos/extra-x86_64/PKGBUILD
(from rev 164219, libktorrent/trunk/PKGBUILD)
  libktorrent/repos/extra-x86_64/magnet.patch
(from rev 164219, libktorrent/trunk/magnet.patch)
Deleted:
  libktorrent/repos/extra-i686/PKGBUILD
  libktorrent/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   67 +++--
 extra-i686/magnet.patch   |  226 
 extra-x86_64/PKGBUILD |   67 +++--
 extra-x86_64/magnet.patch |  226 
 4 files changed, 526 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 18:34:30 UTC (rev 164219)
+++ extra-i686/PKGBUILD 2012-07-27 18:35:04 UTC (rev 164220)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libktorrent
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=A BitTorrent protocol implementation
-arch=('i686' 'x86_64')
-url=http://ktorrent.org/;
-license=('GPL2')
-depends=('kdelibs')
-makedepends=('automoc4' 'cmake' 'boost' 'doxygen')
-source=(http://ktorrent.org/downloads/4.2.1/${pkgname}-${pkgver}-2.tar.bz2;)
-sha1sums=('857e4227c4bba685755d66581d881f893f6311ae')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver}-2 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libktorrent/repos/extra-i686/PKGBUILD (from rev 164219, 
libktorrent/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 18:35:04 UTC (rev 164220)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libktorrent
+pkgver=1.2.1
+pkgrel=2
+pkgdesc=A BitTorrent protocol implementation
+arch=('i686' 'x86_64')
+url=http://ktorrent.org/;
+license=('GPL2')
+depends=('kdelibs')
+makedepends=('automoc4' 'cmake' 'boost' 'doxygen')
+source=(http://ktorrent.org/downloads/4.2.1/${pkgname}-${pkgver}-2.tar.bz2;
+   magnet.patch)
+sha1sums=('857e4227c4bba685755d66581d881f893f6311ae'
+  'f0156489364e5590b0b539cfe2abc929c1922ef8')
+
+build() {
+  cd ${srcdir}
+
+  pushd ${pkgname}-${pkgver}-2
+  patch -Np1 -i ${srcdir}/magnet.patch
+  popd
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver}-2 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: libktorrent/repos/extra-i686/magnet.patch (from rev 164219, 
libktorrent/trunk/magnet.patch)
===
--- extra-i686/magnet.patch (rev 0)
+++ extra-i686/magnet.patch 2012-07-27 18:35:04 UTC (rev 164220)
@@ -0,0 +1,226 @@
+commit 5107e4b7a050d7533f44801f5f5f5694203fd3b5
+Author: Joris Guisson joris.guis...@gmail.com
+Date:   Wed Jul 11 20:16:43 2012 +0200
+
+Make sure all trackers are used of a magnet link
+
+BUG: 302997
+BUG: 303269
+
+diff --git a/src/magnet/magnetlink.cpp b/src/magnet/magnetlink.cpp
+index 525bfa5..43168dc 100644
+--- a/src/magnet/magnetlink.cpp
 b/src/magnet/magnetlink.cpp
+@@ -19,13 +19,14 @@
+  ***/
+ 
+ #include magnetlink.h
++#include QUrl
+ #include QStringList
+ #include util/log.h
+ #include util/error.h
+ 
+ namespace bt
+ {
+-  
++
+   MagnetLink::MagnetLink()
+   {
+   }
+@@ -44,7 +45,7 @@ namespace bt
+   {
+   parse(mlink);
+   }
+-  
++
+   MagnetLink::~MagnetLink()
+   {
+   }
+@@ -64,83 +65,114 @@ namespace bt
+   {
+   return info_hash == mlink.infoHash();
+   }
+-  
++
++  static KUrl::List GetTrackers(const KUrl  url)
++  {
++  KUrl::List result;
++  const QString encoded_query = 
QString::fromLatin1(url.encodedQuery());
++  const QString item = QLatin1String(tr=);
++  if(encoded_query.length() = 1)
++  return result;
++
++  const QStringList items = 
encoded_query.split(QString(QLatin1Char('')), QString::SkipEmptyParts);
++  const int len = item.length();
++  for(QStringList::ConstIterator it = items.begin(); it != 
items.end(); ++it)
++  {
++   

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD fix_gen4.diff)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 15:12:21
  Author: andyrtr
Revision: 164221

upgpkg: xf86-video-intel 2.20.2-2

fix some crashes; FS#30881

Added:
  xf86-video-intel/trunk/fix_gen4.diff
Modified:
  xf86-video-intel/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++-
 fix_gen4.diff |  142 
 2 files changed, 148 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 18:35:04 UTC (rev 164220)
+++ PKGBUILD2012-07-27 19:12:21 UTC (rev 164221)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.20.2
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -17,11 +17,14 @@
 conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+fix_gen4.diff)
+sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9'
+'0c5b98e4980c8108aee12b1e46a78c23029034439dcd277f8ae1264ca3fff8a4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/fix_gen4.diff
   ./configure --prefix=/usr \
 --enable-dri
   make

Added: fix_gen4.diff
===
--- fix_gen4.diff   (rev 0)
+++ fix_gen4.diff   2012-07-27 19:12:21 UTC (rev 164221)
@@ -0,0 +1,142 @@
+From 73ddd8b0decee444a57f10a11f05deebba686649 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Fri, 27 Jul 2012 11:43:00 +
+Subject: sna/gen4: Further refinement to the GT allocation
+
+Still hunting for why gen4 fails utterly.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+diff --git a/src/sna/gen4_render.c b/src/sna/gen4_render.c
+index 25229e1..1a860bd 100644
+--- a/src/sna/gen4_render.c
 b/src/sna/gen4_render.c
+@@ -79,8 +79,8 @@
+ #define URB_CS_ENTRY_SIZE 1
+ #define URB_CS_ENTRIES  0
+ 
+-#define URB_VS_ENTRY_SIZE 1   // each 512-bit row
+-#define URB_VS_ENTRIES  32// we needs at least 8 entries
++#define URB_VS_ENTRY_SIZE 1
++#define URB_VS_ENTRIES  32
+ 
+ #define URB_GS_ENTRY_SIZE 0
+ #define URB_GS_ENTRIES  0
+@@ -89,25 +89,24 @@
+ #define URB_CLIP_ENTRIES  0
+ 
+ #define URB_SF_ENTRY_SIZE 2
+-#define URB_SF_ENTRIES  8
++#define URB_SF_ENTRIES  64
+ 
+ /*
+  * this program computes dA/dx and dA/dy for the texture coordinates along
+  * with the base texture coordinate. It was extracted from the Mesa driver
+  */
+ 
+-#define SF_KERNEL_NUM_GRF  16
+-
+-#define PS_KERNEL_NUM_GRF   32
++#define SF_KERNEL_NUM_GRF 16
++#define PS_KERNEL_NUM_GRF 32
+ 
+ static const struct gt_info {
+   uint32_t max_sf_threads;
+   uint32_t max_wm_threads;
+   uint32_t urb_size;
+ } gen4_gt_info = {
+-  16, 32, 256,
++  24, 32, 256,
+ }, g4x_gt_info = {
+-  32, 50, 384,
++  24, 50, 384,
+ };
+ 
+ static const uint32_t sf_kernel[][4] = {
+@@ -1455,10 +1454,10 @@ gen4_emit_state(struct sna *sna,
+   const struct sna_composite_op *op,
+   uint16_t wm_binding_table)
+ {
++  gen4_emit_drawing_rectangle(sna, op);
+   gen4_emit_binding_table(sna, wm_binding_table);
+   gen4_emit_pipelined_pointers(sna, op, op-op, op-u.gen4.wm_kernel);
+   gen4_emit_vertex_elements(sna, op);
+-  gen4_emit_drawing_rectangle(sna, op);
+ 
+   if (kgem_bo_is_dirty(op-src.bo) || kgem_bo_is_dirty(op-mask.bo)) {
+   DBG((%s: flushing dirty (%d, %d)\n, __FUNCTION__,
+--
+cgit v0.9.0.2-2-gbebe
+From fb385745a2347f8966765567e78229d67ddc8d60 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Fri, 27 Jul 2012 12:24:04 +
+Subject: sna/gen4: Move the common vertex_offset==0 check into the flush()
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+diff --git a/src/sna/gen4_render.c b/src/sna/gen4_render.c
+index 1a860bd..58d4422 100644
+--- a/src/sna/gen4_render.c
 b/src/sna/gen4_render.c
+@@ -338,7 +338,8 @@ static void gen4_magic_ca_pass(struct sna *sna,
+ 
+ static void gen4_vertex_flush(struct sna *sna)
+ {
+-  assert(sna-render_state.gen4.vertex_offset);
++  if (sna-render_state.gen4.vertex_offset == 0)
++  return;
+ 
+   DBG((%s[%x] = %d\n, __FUNCTION__,
+4*sna-render_state.gen4.vertex_offset,
+@@ -359,8 +360,7 @@ static int gen4_vertex_finish(struct sna *sna)
+ 
+   bo = sna-render.vbo;
+   if (bo) {
+-  if (sna-render_state.gen4.vertex_offset)
+-  gen4_vertex_flush(sna);
++ 

[arch-commits] Commit in xf86-video-intel/repos (2 files)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 15:13:03
  Author: andyrtr
Revision: 164222

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

Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-27 19:12:21 UTC (rev 164221)
+++ extra-i686/PKGBUILD 2012-07-27 19:13:03 UTC (rev 164222)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-intel
-pkgver=2.20.2
-pkgrel=1
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-install=$pkgname.install
-pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
-depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util=0.3.9' 
'libxfixes' 'systemd-tools')
-makedepends=('xorg-server-devel=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---enable-dri
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-27 19:12:21 UTC (rev 164221)
+++ extra-x86_64/PKGBUILD   2012-07-27 19:13:03 UTC (rev 164222)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-intel
-pkgver=2.20.2
-pkgrel=1
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-install=$pkgname.install
-pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
-depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util=0.3.9' 
'libxfixes' 'systemd-tools')
-makedepends=('xorg-server-devel=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---enable-dri
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}



[arch-commits] Commit in xf86-video-intel/repos (8 files)

2012-07-27 Thread andyrtr
Date: Friday, July 27, 2012 @ 15:15:17
  Author: andyrtr
Revision: 164223

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

Added:
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 164222, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-i686/fix_gen4.diff
(from rev 164222, xf86-video-intel/trunk/fix_gen4.diff)
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
(from rev 164222, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 164222, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-x86_64/fix_gen4.diff
(from rev 164222, xf86-video-intel/trunk/fix_gen4.diff)
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
(from rev 164222, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install

---+
 extra-i686/PKGBUILD   |   38 
 extra-i686/fix_gen4.diff  |  142 
 extra-i686/xf86-video-intel.install   |   16 +--
 extra-x86_64/PKGBUILD |   38 
 extra-x86_64/fix_gen4.diff|  142 
 extra-x86_64/xf86-video-intel.install |   16 +--
 6 files changed, 376 insertions(+), 16 deletions(-)

Copied: xf86-video-intel/repos/extra-i686/PKGBUILD (from rev 164222, 
xf86-video-intel/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-27 19:15:17 UTC (rev 164223)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-intel
+pkgver=2.20.2
+pkgrel=2
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+install=$pkgname.install
+pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
+depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util=0.3.9' 
'libxfixes' 'systemd-tools')
+makedepends=('xorg-server-devel=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xorg-server1.12.0' 
'xf86-video-i810' 'xf86-video-intel-legacy')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+fix_gen4.diff)
+sha256sums=('4c30cce0b5f7b427d76898c439f2c9fd31a8b45babd8ef82ec4c0004ae0a26a9'
+'0c5b98e4980c8108aee12b1e46a78c23029034439dcd277f8ae1264ca3fff8a4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/fix_gen4.diff
+  ./configure --prefix=/usr \
+--enable-dri
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-intel/repos/extra-i686/fix_gen4.diff (from rev 164222, 
xf86-video-intel/trunk/fix_gen4.diff)
===
--- extra-i686/fix_gen4.diff(rev 0)
+++ extra-i686/fix_gen4.diff2012-07-27 19:15:17 UTC (rev 164223)
@@ -0,0 +1,142 @@
+From 73ddd8b0decee444a57f10a11f05deebba686649 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Fri, 27 Jul 2012 11:43:00 +
+Subject: sna/gen4: Further refinement to the GT allocation
+
+Still hunting for why gen4 fails utterly.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+diff --git a/src/sna/gen4_render.c b/src/sna/gen4_render.c
+index 25229e1..1a860bd 100644
+--- a/src/sna/gen4_render.c
 b/src/sna/gen4_render.c
+@@ -79,8 +79,8 @@
+ #define URB_CS_ENTRY_SIZE 1
+ #define URB_CS_ENTRIES  0
+ 
+-#define URB_VS_ENTRY_SIZE 1   // each 512-bit row
+-#define URB_VS_ENTRIES  32// we needs at least 8 entries
++#define URB_VS_ENTRY_SIZE 1
++#define URB_VS_ENTRIES  32
+ 
+ #define URB_GS_ENTRY_SIZE 0
+ #define URB_GS_ENTRIES  0
+@@ -89,25 +89,24 @@
+ #define URB_CLIP_ENTRIES  0
+ 
+ #define URB_SF_ENTRY_SIZE 2
+-#define URB_SF_ENTRIES  8
++#define URB_SF_ENTRIES  64
+ 
+ /*
+  * this program computes dA/dx and dA/dy for the texture coordinates along
+  * with the base texture coordinate. It was extracted from the Mesa driver
+  */
+ 
+-#define SF_KERNEL_NUM_GRF  16
+-
+-#define PS_KERNEL_NUM_GRF   32
++#define SF_KERNEL_NUM_GRF 16
++#define PS_KERNEL_NUM_GRF 32
+ 
+ static const struct gt_info {
+   uint32_t max_sf_threads;
+   uint32_t max_wm_threads;
+   uint32_t urb_size;
+ } gen4_gt_info = {
+-  

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

2012-07-27 Thread Dave Reisner
Date: Friday, July 27, 2012 @ 16:04:40
  Author: dreisner
Revision: 164224

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

Added:
  btrfs-progs/repos/core-i686/70-btrfs.rules
(from rev 164223, btrfs-progs/repos/testing-i686/70-btrfs.rules)
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 164223, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 164223, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 164223, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/70-btrfs.rules
(from rev 164223, btrfs-progs/repos/testing-x86_64/70-btrfs.rules)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 164223, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 164223, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 164223, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-i686/PKGBUILD
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-x86_64/

+
 core-i686/70-btrfs.rules   |1 
 core-i686/PKGBUILD |   87 ++-
 core-i686/initcpio-hook-btrfs  |   17 --
 core-i686/initcpio-install-btrfs   |   32 ++--
 core-x86_64/70-btrfs.rules |1 
 core-x86_64/PKGBUILD   |   87 ++-
 core-x86_64/initcpio-hook-btrfs|   17 --
 core-x86_64/initcpio-install-btrfs |   32 ++--
 8 files changed, 148 insertions(+), 126 deletions(-)

Copied: btrfs-progs/repos/core-i686/70-btrfs.rules (from rev 164223, 
btrfs-progs/repos/testing-i686/70-btrfs.rules)
===
--- core-i686/70-btrfs.rules(rev 0)
+++ core-i686/70-btrfs.rules2012-07-27 20:04:40 UTC (rev 164224)
@@ -0,0 +1 @@
+ACTION!=remove, SUBSYSTEM==block, ENV{ID_FS_TYPE}==btrfs, 
RUN+=/usr/bin/btrfs device scan /dev/%k

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-07-27 19:15:17 UTC (rev 164223)
+++ core-i686/PKGBUILD  2012-07-27 20:04:40 UTC (rev 164224)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-pkgname=btrfs-progs
-pkgver=0.19.20120328
-pkgrel=3
-pkgdesc=btrfs filesystem utilities
-arch=(i686 x86_64)
-depends=('glibc' 'e2fsprogs')
-url=http://btrfs.wiki.kernel.org/;
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz
-initcpio-install-btrfs
-initcpio-hook-btrfs)
-md5sums=('f4504e73cf9254779b78d5b2318ac570'
- '3eae9bf1541e297fa72aa40ebf7320c6'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make CFLAGS=$CFLAGS
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make prefix=$pkgdir/usr install
-   # fix manpage
-   mkdir -p $pkgdir/usr/share/
-   mv $pkgdir/usr/man $pkgdir/usr/share/man
-   mkdir -p ${pkgdir}/sbin
-   ln -sf /usr/bin/btrfs ${pkgdir}/sbin/btrfs
-
-   # install mkinitcpio hooks
-   install -Dm644 $srcdir/initcpio-install-btrfs \
- $pkgdir/usr/lib/initcpio/install/btrfs
-   install -Dm644 $srcdir/initcpio-hook-btrfs \
- $pkgdir/usr/lib/initcpio/hooks/btrfs
-}

Copied: btrfs-progs/repos/core-i686/PKGBUILD (from rev 164223, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-07-27 20:04:40 UTC (rev 164224)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+pkgname=btrfs-progs
+pkgver=0.19.20120328
+pkgrel=4
+pkgdesc=btrfs filesystem utilities
+arch=(i686 x86_64)
+depends=('glibc' 'e2fsprogs')
+url=http://btrfs.wiki.kernel.org/;
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz
+70-btrfs.rules
+initcpio-install-btrfs
+initcpio-hook-btrfs)
+md5sums=('f4504e73cf9254779b78d5b2318ac570'
+ '345c62c8b267082361729ca5b647518f'
+ 'e5186ec3fe8a809b7473470128d1c4ab'
+ '9fb35142755b477a96cb7292f3d64839')
+
+build() {
+   cd 

[arch-commits] Commit in filesystem/repos (41 files)

2012-07-27 Thread Tom Gundersen
Date: Friday, July 27, 2012 @ 18:02:26
  Author: tomegun
Revision: 164225

db-move: moved filesystem from [testing] to [core] ( any)

Added:
  filesystem/repos/core-any/PKGBUILD
(from rev 164224, filesystem/repos/testing-any/PKGBUILD)
  filesystem/repos/core-any/crypttab
(from rev 164224, filesystem/repos/testing-any/crypttab)
  filesystem/repos/core-any/filesystem.install
(from rev 164224, filesystem/repos/testing-any/filesystem.install)
  filesystem/repos/core-any/fstab
(from rev 164224, filesystem/repos/testing-any/fstab)
  filesystem/repos/core-any/group
(from rev 164224, filesystem/repos/testing-any/group)
  filesystem/repos/core-any/gshadow
(from rev 164224, filesystem/repos/testing-any/gshadow)
  filesystem/repos/core-any/host.conf
(from rev 164224, filesystem/repos/testing-any/host.conf)
  filesystem/repos/core-any/hosts
(from rev 164224, filesystem/repos/testing-any/hosts)
  filesystem/repos/core-any/issue
(from rev 164224, filesystem/repos/testing-any/issue)
  filesystem/repos/core-any/ld.so.conf
(from rev 164224, filesystem/repos/testing-any/ld.so.conf)
  filesystem/repos/core-any/modprobe.d.usb-load-ehci-first
(from rev 164224, 
filesystem/repos/testing-any/modprobe.d.usb-load-ehci-first)
  filesystem/repos/core-any/motd
(from rev 164224, filesystem/repos/testing-any/motd)
  filesystem/repos/core-any/nsswitch.conf
(from rev 164224, filesystem/repos/testing-any/nsswitch.conf)
  filesystem/repos/core-any/os-release
(from rev 164224, filesystem/repos/testing-any/os-release)
  filesystem/repos/core-any/passwd
(from rev 164224, filesystem/repos/testing-any/passwd)
  filesystem/repos/core-any/profile
(from rev 164224, filesystem/repos/testing-any/profile)
  filesystem/repos/core-any/resolv.conf
(from rev 164224, filesystem/repos/testing-any/resolv.conf)
  filesystem/repos/core-any/securetty
(from rev 164224, filesystem/repos/testing-any/securetty)
  filesystem/repos/core-any/shadow
(from rev 164224, filesystem/repos/testing-any/shadow)
  filesystem/repos/core-any/shells
(from rev 164224, filesystem/repos/testing-any/shells)
Deleted:
  filesystem/repos/core-any/PKGBUILD
  filesystem/repos/core-any/crypttab
  filesystem/repos/core-any/filesystem.install
  filesystem/repos/core-any/fstab
  filesystem/repos/core-any/group
  filesystem/repos/core-any/gshadow
  filesystem/repos/core-any/host.conf
  filesystem/repos/core-any/hosts
  filesystem/repos/core-any/issue
  filesystem/repos/core-any/ld.so.conf
  filesystem/repos/core-any/modprobe.d.usb-load-ehci-first
  filesystem/repos/core-any/motd
  filesystem/repos/core-any/nsswitch.conf
  filesystem/repos/core-any/os-release
  filesystem/repos/core-any/passwd
  filesystem/repos/core-any/profile
  filesystem/repos/core-any/resolv.conf
  filesystem/repos/core-any/securetty
  filesystem/repos/core-any/shadow
  filesystem/repos/core-any/shells
  filesystem/repos/testing-any/

+
 PKGBUILD   |  192 +++
 crypttab   |   50 +++---
 filesystem.install |  120 
 fstab  |   10 +-
 group  |   64 ++---
 gshadow|   64 ++---
 host.conf  |   16 +--
 hosts  |   18 +--
 issue  |4 
 ld.so.conf |   14 +-
 modprobe.d.usb-load-ehci-first |4 
 nsswitch.conf  |   38 +++
 os-release |   16 +--
 passwd |   14 +-
 profile|   54 +-
 resolv.conf|   16 +--
 securetty  |   30 +++---
 shadow |   14 +-
 shells |   16 +--
 19 files changed, 369 insertions(+), 385 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-07-27 20:04:40 UTC (rev 164224)
+++ core-any/PKGBUILD   2012-07-27 22:02:26 UTC (rev 164225)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-
-pkgname=filesystem
-pkgver=2012.6
-pkgrel=4
-pkgdesc='Base filesystem'
-arch=('any')
-license=('GPL')
-url='http://www.archlinux.org'
-groups=('base')
-install='filesystem.install'
-depends=('iana-etc' 'bash' 'coreutils')
-backup=('etc/fstab' 'etc/crypttab' 'etc/group' 'etc/hosts' 'etc/ld.so.conf' 
'etc/passwd'
-'etc/shadow' 'etc/gshadow' 'etc/resolv.conf' 'etc/motd' 
'etc/nsswitch.conf'
-'etc/shells' 'etc/host.conf' 'etc/securetty' 'etc/profile' 'etc/issue')
-source=('group' 'issue' 'nsswitch.conf' 'securetty' 'host.conf' 'ld.so.conf'
-'passwd' 'shadow' 'fstab' 'crypttab' 'hosts' 'motd' 'os-release' 
'resolv.conf'
-'shells' 'gshadow' 'profile' 'modprobe.d.usb-load-ehci-first')
-
-package() {
-   cd ${pkgdir}
-
- 

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

2012-07-27 Thread Tom Gundersen
Date: Friday, July 27, 2012 @ 18:02:29
  Author: tomegun
Revision: 164226

db-move: moved initscripts from [testing] to [core] ( any)

Added:
  initscripts/repos/core-any/PKGBUILD
(from rev 164224, initscripts/repos/testing-any/PKGBUILD)
  initscripts/repos/core-any/initscripts.install
(from rev 164224, initscripts/repos/testing-any/initscripts.install)
Deleted:
  
initscripts/repos/core-any/0001-remove-run-nologin-before-leaving-rc.multi.patch
  initscripts/repos/core-any/PKGBUILD
  initscripts/repos/core-any/initscripts.install
  initscripts/repos/core-any/wireless.conf.d
  initscripts/repos/testing-any/

---+
 0001-remove-run-nologin-before-leaving-rc.multi.patch |   29 ---
 PKGBUILD  |   66 ++--
 initscripts.install   |   38 -
 wireless.conf.d   |   12 --
 4 files changed, 47 insertions(+), 98 deletions(-)

Deleted: core-any/0001-remove-run-nologin-before-leaving-rc.multi.patch
===
--- core-any/0001-remove-run-nologin-before-leaving-rc.multi.patch  
2012-07-27 22:02:26 UTC (rev 164225)
+++ core-any/0001-remove-run-nologin-before-leaving-rc.multi.patch  
2012-07-27 22:02:29 UTC (rev 164226)
@@ -1,29 +0,0 @@
-From 55bd14c586f0f64b8ee5515161be1aa1098d3226 Mon Sep 17 00:00:00 2001
-From: Dave Reisner dreis...@archlinux.org
-Date: Tue, 3 Jul 2012 22:28:05 -0400
-Subject: [initscripts][PATCH] remove /run/nologin before leaving rc.multi
-To: arch-proje...@archlinux.org
-
-systemd-186 writes this file when running systemd-tmpfiles, but
-initscripts never removes it. This disallows all non-root logins.
-
-Reported-by: Dan McGee d...@archlinux.org
-Signed-off-by: Dave Reisner dreis...@archlinux.org

- rc.multi | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/rc.multi b/rc.multi
-index daf2372..7d4acaa 100755
 a/rc.multi
-+++ b/rc.multi
-@@ -31,4 +31,6 @@ run_hook multi_end
- 
- bootlogd_stop
- 
-+rm -f /run/nologin
-+
- # vim: set ts=2 sw=2 noet:
--- 
-1.7.11.1
-

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-07-27 22:02:26 UTC (rev 164225)
+++ core-any/PKGBUILD   2012-07-27 22:02:29 UTC (rev 164226)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Thomas Bächler tho...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-
-pkgname=initscripts
-pkgver=2012.06.3
-pkgrel=2
-pkgdesc=System initialization/bootup scripts
-arch=('any')
-url=http://www.archlinux.org;
-license=('GPL2')
-groups=('base')
-backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
-depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 
'findutils' 'sysvinit')
-optdepends=('bridge-utils: Network bridging support'
-'dhcpcd: DHCP network configuration'
-'net-tools: legacy network support'
-'wireless_tools: Wireless networking')
-makedepends=(asciidoc)
-install=initscripts.install
-source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
-0001-remove-run-nologin-before-leaving-rc.multi.patch
-'wireless.conf.d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 $srcdir/0001-remove-run-nologin-before-leaving-rc.multi.patch
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
-}
-md5sums=('34493c768b587ac59c6ee7e14f275c1d'
- 'ba32b9d723c20b38487669fb3c00d3d5'
- '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/core-any/PKGBUILD (from rev 164224, 
initscripts/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-07-27 22:02:29 UTC (rev 164226)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.07.5
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
+depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 
'findutils' 'sysvinit')
+optdepends=('dhcpcd: DHCP network configuration'
+'bridge-utils: Legacy network bridging support'
+'net-tools: Legacy network support'
+'wireless_tools: Legacy wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;)
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}

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

2012-07-27 Thread Dave Reisner
Date: Friday, July 27, 2012 @ 18:55:51
  Author: dreisner
Revision: 164227

upgpkg: curl 7.27.0-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-27 22:02:29 UTC (rev 164226)
+++ PKGBUILD2012-07-27 22:55:51 UTC (rev 164227)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=curl
-pkgver=7.26.0
+pkgver=7.27.0
 pkgrel=1
 pkgdesc=An URL retrival utility and library
 arch=('i686' 'x86_64')
@@ -16,8 +16,8 @@
 options=('!libtool')
 source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
 curlbuild.h)
-md5sums=('3fa4d5236f2a36ca5c3af6715e837691'
- '61b594830d5acba3c99e4af0ba39a14e'
+md5sums=('f0e48fdb635b5939e02a9291b89e5336'
+ 'b5d6d54f97adcaf5c871174e5460f081'
  '751bd433ede935c8fae727377625a8ae')
 
 ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')



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

2012-07-27 Thread Dave Reisner
Date: Friday, July 27, 2012 @ 18:56:01
  Author: dreisner
Revision: 164228

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 164227, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 164227, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 164227, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 164227, curl/trunk/curlbuild.h)

+
 testing-i686/PKGBUILD  |   64 +++
 testing-i686/curlbuild.h   |9 ++
 testing-x86_64/PKGBUILD|   64 +++
 testing-x86_64/curlbuild.h |9 ++
 4 files changed, 146 insertions(+)

Copied: curl/repos/testing-i686/PKGBUILD (from rev 164227, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-07-27 22:56:01 UTC (rev 164228)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.27.0
+pkgrel=1
+pkgdesc=An URL retrival utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+options=('!libtool')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('f0e48fdb635b5939e02a9291b89e5336'
+ 'b5d6d54f97adcaf5c871174e5460f081'
+ '751bd433ede935c8fae727377625a8ae')
+
+ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
+case $ptrsize in
+  8) _curlbuild=curlbuild-64.h ;;
+  4) _curlbuild=curlbuild-32.h ;;
+  *) error unknown pointer size for architecture: %s bytes $ptrsize
+exit 1
+;;
+esac
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-dependency-tracking \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --without-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # license
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  # devel
+  install -Dm644 docs/libcurl/libcurl.m4 $pkgdir/usr/share/aclocal/libcurl.m4
+  mv $pkgdir/usr/include/curl/curlbuild.h 
$pkgdir/usr/include/curl/$_curlbuild
+  install -m644 $srcdir/curlbuild.h $pkgdir/usr/include/curl/curlbuild.h
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 164227, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2012-07-27 22:56:01 UTC (rev 164228)
@@ -0,0 +1,9 @@
+#include bits/wordsize.h
+
+#if __WORDSIZE == 32
+#include curlbuild-32.h
+#elif __WORDSIZE == 64
+#include curlbuild-64.h
+#else
+#error Unknown word size
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 164227, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-07-27 22:56:01 UTC (rev 164228)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.27.0
+pkgrel=1
+pkgdesc=An URL retrival utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+options=('!libtool')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('f0e48fdb635b5939e02a9291b89e5336'
+ 'b5d6d54f97adcaf5c871174e5460f081'
+ '751bd433ede935c8fae727377625a8ae')
+
+ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
+case $ptrsize in
+  8) _curlbuild=curlbuild-64.h ;;
+  4) _curlbuild=curlbuild-32.h ;;
+  *) error unknown pointer size for architecture: %s bytes $ptrsize
+exit 1
+;;
+esac
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-dependency-tracking \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  

[arch-commits] Commit in calligra/repos/extra-i686 (26 files)

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 21:30:36
  Author: eric
Revision: 164229

archrelease: copy trunk to extra-i686

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 164228, calligra/trunk/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 164228, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 164228, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 164228, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 164228, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 164228, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 164228, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 164228, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 164228, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 164228, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-i686/calligra-tools.install
(from rev 164228, calligra/trunk/calligra-tools.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 164228, calligra/trunk/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 164228, calligra/trunk/calligra.install)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-tools.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install

+
 PKGBUILD   |  528 +--
 calligra-braindump.install |   24 -
 calligra-filters.install   |   22 -
 calligra-flow.install  |   24 -
 calligra-karbon.install|   24 -
 calligra-kexi.install  |   22 -
 calligra-krita.install |   26 +-
 calligra-plan.install  |   24 -
 calligra-sheets.install|   24 -
 calligra-stage.install |   24 -
 calligra-tools.install |   24 -
 calligra-words.install |   24 -
 calligra.install   |   22 -
 13 files changed, 406 insertions(+), 406 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-27 22:56:01 UTC (rev 164228)
+++ PKGBUILD2012-07-28 01:30:36 UTC (rev 164229)
@@ -1,264 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=calligra
-pkgname=('calligra-filters'
- 'calligra-interfaces'
- 'calligra-libs'
- 'calligra-plugins'
- 'calligra-pics'
- 'calligra-servicetypes'
- 'calligra-templates'
- 'calligra-tools'
- 'calligra-karbon'
- 'calligra-kexi'
- 'calligra-kounavail'
- 'calligra-plan'
- 'calligra-stage'
- 'calligra-krita'
- 'calligra-sheets'
- 'calligra-words'
- 'calligra-handbook'
- 'calligra-braindump'
- 'calligra-flow')
-pkgver=2.4.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.calligra-suite.org/'
-license=('FDL1.2' 'GPL2' 'LGPL')
-makedepends=('cmake' 'automoc4' 'boost ' 'eigen2'
- 'kdepimlibs' 'libpqxx' 'freetds' 'xbase'
- 'kdegraphics-okular' 'gsl' 'kdeedu-marble'
- 'libwpd' 'libwpg' 'pstoedit' 'glew'
- 'fftw' 'opengtl' 'lcms2' 'libkdcraw' 'wv2')
-groups=('calligra')
-source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('469d639f17e3d6a186baabd899147e39')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_active=OFF \
--DBUILD_mobile=OFF \
--DIHAVEPATCHEDQT=1
-  make
-}
-
-package_calligra-filters() {
-  pkgdesc=Filters for the Calligra office suite
-  optdepends=('libwpg: Corel WordPerfect Graphics image importer')
-  conflicts=('koffice-filters')
-  replaces=('koffice-filters')
-  install=calligra-filters.install
-
-  cd ${srcdir}/build/filters
-  make DESTDIR=${pkgdir} install
-}
-
-package_calligra-interfaces() {
-  pkgdesc=Interfaces for the Calligra office suite
-  depends=('calligra-libs')
-  conflicts=('koffice-interfaces')
-  

[arch-commits] Commit in calligra/repos/extra-x86_64 (26 files)

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 21:31:18
  Author: eric
Revision: 164230

archrelease: copy trunk to extra-x86_64

Added:
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 164229, calligra/trunk/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 164229, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 164229, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 164229, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 164229, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 164229, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 164229, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 164229, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 164229, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 164229, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-tools.install
(from rev 164229, calligra/trunk/calligra-tools.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 164229, calligra/trunk/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 164229, calligra/trunk/calligra.install)
Deleted:
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  calligra/repos/extra-x86_64/calligra-plan.install
  calligra/repos/extra-x86_64/calligra-sheets.install
  calligra/repos/extra-x86_64/calligra-stage.install
  calligra/repos/extra-x86_64/calligra-tools.install
  calligra/repos/extra-x86_64/calligra-words.install
  calligra/repos/extra-x86_64/calligra.install

+
 PKGBUILD   |  528 +--
 calligra-braindump.install |   24 -
 calligra-filters.install   |   22 -
 calligra-flow.install  |   24 -
 calligra-karbon.install|   24 -
 calligra-kexi.install  |   22 -
 calligra-krita.install |   26 +-
 calligra-plan.install  |   24 -
 calligra-sheets.install|   24 -
 calligra-stage.install |   24 -
 calligra-tools.install |   24 -
 calligra-words.install |   24 -
 calligra.install   |   22 -
 13 files changed, 406 insertions(+), 406 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-28 01:30:36 UTC (rev 164229)
+++ PKGBUILD2012-07-28 01:31:18 UTC (rev 164230)
@@ -1,264 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=calligra
-pkgname=('calligra-filters'
- 'calligra-interfaces'
- 'calligra-libs'
- 'calligra-plugins'
- 'calligra-pics'
- 'calligra-servicetypes'
- 'calligra-templates'
- 'calligra-tools'
- 'calligra-karbon'
- 'calligra-kexi'
- 'calligra-kounavail'
- 'calligra-plan'
- 'calligra-stage'
- 'calligra-krita'
- 'calligra-sheets'
- 'calligra-words'
- 'calligra-handbook'
- 'calligra-braindump'
- 'calligra-flow')
-pkgver=2.4.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.calligra-suite.org/'
-license=('FDL1.2' 'GPL2' 'LGPL')
-makedepends=('cmake' 'automoc4' 'boost ' 'eigen2'
- 'kdepimlibs' 'libpqxx' 'freetds' 'xbase'
- 'kdegraphics-okular' 'gsl' 'kdeedu-marble'
- 'libwpd' 'libwpg' 'pstoedit' 'glew'
- 'fftw' 'opengtl' 'lcms2' 'libkdcraw' 'wv2')
-groups=('calligra')
-source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('469d639f17e3d6a186baabd899147e39')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_active=OFF \
--DBUILD_mobile=OFF \
--DIHAVEPATCHEDQT=1
-  make
-}
-
-package_calligra-filters() {
-  pkgdesc=Filters for the Calligra office suite
-  optdepends=('libwpg: Corel WordPerfect Graphics image importer')
-  conflicts=('koffice-filters')
-  replaces=('koffice-filters')
-  install=calligra-filters.install
-
-  cd ${srcdir}/build/filters
-  make DESTDIR=${pkgdir} install
-}
-
-package_calligra-interfaces() {
-  pkgdesc=Interfaces for the Calligra office suite
-  depends=('calligra-libs')
-  

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

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 21:50:12
  Author: eric
Revision: 164231

Update makedepends

Modified:
  iw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-28 01:31:18 UTC (rev 164230)
+++ PKGBUILD2012-07-28 01:50:12 UTC (rev 164231)
@@ -9,7 +9,7 @@
 url=http://wireless.kernel.org/en/users/Documentation/iw;
 license=(GPL)
 depends=(libnl)
-makedepends=(kernel-headers)
+makedepends=(linux-api-headers)
 source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
 sha256sums=('989b5677588e32de6eda97bf978810b366a7620f78f26f9cc61c15bdb434218a')
 



[arch-commits] Commit in iw/repos/core-i686 (PKGBUILD PKGBUILD)

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 21:50:58
  Author: eric
Revision: 164232

archrelease: copy trunk to core-i686

Added:
  iw/repos/core-i686/PKGBUILD
(from rev 164231, iw/trunk/PKGBUILD)
Deleted:
  iw/repos/core-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-28 01:50:12 UTC (rev 164231)
+++ PKGBUILD2012-07-28 01:50:58 UTC (rev 164232)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=iw
-pkgver=3.4
-pkgrel=1
-pkgdesc=nl80211 based CLI configuration utility for wireless devices
-arch=(i686 x86_64)
-url=http://wireless.kernel.org/en/users/Documentation/iw;
-license=(GPL)
-depends=(libnl)
-makedepends=(kernel-headers)
-source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('989b5677588e32de6eda97bf978810b366a7620f78f26f9cc61c15bdb434218a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: iw/repos/core-i686/PKGBUILD (from rev 164231, iw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-28 01:50:58 UTC (rev 164232)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=iw
+pkgver=3.4
+pkgrel=1
+pkgdesc=nl80211 based CLI configuration utility for wireless devices
+arch=(i686 x86_64)
+url=http://wireless.kernel.org/en/users/Documentation/iw;
+license=(GPL)
+depends=(libnl)
+makedepends=(linux-api-headers)
+source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('989b5677588e32de6eda97bf978810b366a7620f78f26f9cc61c15bdb434218a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in iw/repos/core-x86_64 (PKGBUILD PKGBUILD)

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 21:51:21
  Author: eric
Revision: 164233

archrelease: copy trunk to core-x86_64

Added:
  iw/repos/core-x86_64/PKGBUILD
(from rev 164232, iw/trunk/PKGBUILD)
Deleted:
  iw/repos/core-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2012-07-28 01:50:58 UTC (rev 164232)
+++ PKGBUILD2012-07-28 01:51:21 UTC (rev 164233)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=iw
-pkgver=3.4
-pkgrel=1
-pkgdesc=nl80211 based CLI configuration utility for wireless devices
-arch=(i686 x86_64)
-url=http://wireless.kernel.org/en/users/Documentation/iw;
-license=(GPL)
-depends=(libnl)
-makedepends=(kernel-headers)
-source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('989b5677588e32de6eda97bf978810b366a7620f78f26f9cc61c15bdb434218a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: iw/repos/core-x86_64/PKGBUILD (from rev 164232, iw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-07-28 01:51:21 UTC (rev 164233)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=iw
+pkgver=3.4
+pkgrel=1
+pkgdesc=nl80211 based CLI configuration utility for wireless devices
+arch=(i686 x86_64)
+url=http://wireless.kernel.org/en/users/Documentation/iw;
+license=(GPL)
+depends=(libnl)
+makedepends=(linux-api-headers)
+source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('989b5677588e32de6eda97bf978810b366a7620f78f26f9cc61c15bdb434218a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 23:11:48
  Author: eric
Revision: 164234

upgpkg: glew 1.8.0-1

Upstream update

Modified:
  glew/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-28 01:51:21 UTC (rev 164233)
+++ PKGBUILD2012-07-28 03:11:48 UTC (rev 164234)
@@ -3,15 +3,15 @@
 # Contributor: SleepyDog
 
 pkgname=glew
-pkgver=1.7.0
-pkgrel=2
+pkgver=1.8.0
+pkgrel=1
 pkgdesc=The OpenGL Extension Wrangler Library
 arch=('i686' 'x86_64')
 url=http://glew.sourceforge.net;
 license=('BSD' 'MIT' 'GPL')
 depends=('libxmu' 'libxi' 'mesa')
 source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
-sha1sums=('9266f2360c1687a96f2ea06419671d370b2928d1')
+sha1sums=('641c6bb3f924ec786e1e6cf2b1b230f594e0f0e4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-07-27 Thread Eric Bélanger
Date: Friday, July 27, 2012 @ 23:12:10
  Author: eric
Revision: 164235

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

Added:
  glew/repos/staging-i686/
  glew/repos/staging-i686/PKGBUILD
(from rev 164234, glew/trunk/PKGBUILD)
  glew/repos/staging-x86_64/
  glew/repos/staging-x86_64/PKGBUILD
(from rev 164234, glew/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   29 +
 staging-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: glew/repos/staging-i686/PKGBUILD (from rev 164234, glew/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-28 03:12:10 UTC (rev 164235)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=The OpenGL Extension Wrangler Library
+arch=('i686' 'x86_64')
+url=http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'mesa')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('641c6bb3f924ec786e1e6cf2b1b230f594e0f0e4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make GLEW_DEST=${pkgdir}/usr install.all
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  rm ${pkgdir}/usr/lib/{libGLEW,libGLEWmx}.a
+  chmod 0755 ${pkgdir}/usr/lib/libGLEW*.so.${pkgver}
+}

Copied: glew/repos/staging-x86_64/PKGBUILD (from rev 164234, 
glew/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-07-28 03:12:10 UTC (rev 164235)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=The OpenGL Extension Wrangler Library
+arch=('i686' 'x86_64')
+url=http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'mesa')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('641c6bb3f924ec786e1e6cf2b1b230f594e0f0e4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make GLEW_DEST=${pkgdir}/usr install.all
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  rm ${pkgdir}/usr/lib/{libGLEW,libGLEWmx}.a
+  chmod 0755 ${pkgdir}/usr/lib/libGLEW*.so.${pkgver}
+}



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

2012-07-27 Thread Stéphane Gaudreault
Date: Friday, July 27, 2012 @ 23:14:23
  Author: stephane
Revision: 164236

upgpkg: python-numpy 1.6.2-1

upstream update

Modified:
  python-numpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-28 03:12:10 UTC (rev 164235)
+++ PKGBUILD2012-07-28 03:14:23 UTC (rev 164236)
@@ -5,7 +5,7 @@
 
 pkgbase=python-numpy
 pkgname=('python2-numpy' 'python-numpy')
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc=Scientific tools for Python
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://numpy.scipy.org/;
 makedepends=('lapack' 'python' 'python2' 'python-distribute' 
'python2-distribute' 'gcc-fortran' 'python-nose')
 source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz)
-md5sums=('2bce18c08fc4fce461656f0f4dd9103e')
+md5sums=('95ed6c9dcc94af1fc1642ea2a33c1bba')
 
 build() {
   cd ${srcdir}



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

2012-07-27 Thread Stéphane Gaudreault
Date: Friday, July 27, 2012 @ 23:14:33
  Author: stephane
Revision: 164237

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

Added:
  python-numpy/repos/extra-i686/PKGBUILD
(from rev 164236, python-numpy/trunk/PKGBUILD)
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 164236, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-i686/PKGBUILD
  python-numpy/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-28 03:14:23 UTC (rev 164236)
+++ extra-i686/PKGBUILD 2012-07-28 03:14:33 UTC (rev 164237)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
-
-pkgbase=python-numpy
-pkgname=('python2-numpy' 'python-numpy')
-pkgver=1.6.1
-pkgrel=1
-pkgdesc=Scientific tools for Python
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://numpy.scipy.org/;
-makedepends=('lapack' 'python' 'python2' 'python-distribute' 
'python2-distribute' 'gcc-fortran' 'python-nose')
-source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz)
-md5sums=('2bce18c08fc4fce461656f0f4dd9103e')
-
-build() {
-  cd ${srcdir}
-  cp -a numpy-${pkgver} numpy-py2-${pkgver}
-
-  export Atlas=None
-  export LDFLAGS=$LDFLAGS -shared
-
-  echo Building Python2
-  cd ${srcdir}/numpy-py2-${pkgver}
-  python2 setup.py config_fc --fcompiler=gnu95 build
-
-  echo Building Python3
-  cd ${srcdir}/numpy-${pkgver}
-  python setup.py config_fc --fcompiler=gnu95 build
-}
-
-package_python2-numpy() {
-  depends=('lapack' 'python2')
-  optdepends=('python-nose: testsuite')
-
-  cd ${srcdir}/numpy-py2-${pkgver}
-  python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root=${pkgdir} --optimize=1
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/python2-numpy
-  install -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/python2-numpy/
-
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
- -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
- -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
- $(find ${pkgdir} -name '*.py')
-}
-
-package_python-numpy() {
-  depends=('lapack' 'python')
-  provides=(python3-numpy=${pkgver})
-  replaces=('python3-numpy')
-  conflicts=('python3-numpy')
-
-  cd ${srcdir}/numpy-${pkgver}
-  python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root=${pkgdir} --optimize=1
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/python3-numpy
-  install -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/python3-numpy/
-}

Copied: python-numpy/repos/extra-i686/PKGBUILD (from rev 164236, 
python-numpy/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-28 03:14:33 UTC (rev 164237)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
+
+pkgbase=python-numpy
+pkgname=('python2-numpy' 'python-numpy')
+pkgver=1.6.2
+pkgrel=1
+pkgdesc=Scientific tools for Python
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://numpy.scipy.org/;
+makedepends=('lapack' 'python' 'python2' 'python-distribute' 
'python2-distribute' 'gcc-fortran' 'python-nose')
+source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz)
+md5sums=('95ed6c9dcc94af1fc1642ea2a33c1bba')
+
+build() {
+  cd ${srcdir}
+  cp -a numpy-${pkgver} numpy-py2-${pkgver}
+
+  export Atlas=None
+  export LDFLAGS=$LDFLAGS -shared
+
+  echo Building Python2
+  cd ${srcdir}/numpy-py2-${pkgver}
+  python2 setup.py config_fc --fcompiler=gnu95 build
+
+  echo Building Python3
+  cd ${srcdir}/numpy-${pkgver}
+  python setup.py config_fc --fcompiler=gnu95 build
+}
+
+package_python2-numpy() {
+  depends=('lapack' 'python2')
+  optdepends=('python-nose: testsuite')
+
+  cd ${srcdir}/numpy-py2-${pkgver}
+  python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root=${pkgdir} --optimize=1
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/python2-numpy
+  install -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/python2-numpy/
+
+  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+ -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+ -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+ $(find ${pkgdir} -name '*.py')
+}
+
+package_python-numpy() {
+  depends=('lapack' 'python')
+  provides=(python3-numpy=${pkgver})
+  replaces=('python3-numpy')
+  conflicts=('python3-numpy')
+
+  cd 

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

2012-07-27 Thread Gaetan Bisson
Date: Saturday, July 28, 2012 @ 00:19:31
  Author: bisson
Revision: 164238

rebuild for glew-1.8.0

Modified:
  bzflag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-28 03:14:33 UTC (rev 164237)
+++ PKGBUILD2012-07-28 04:19:31 UTC (rev 164238)
@@ -5,7 +5,7 @@
 
 pkgname=bzflag
 pkgver=2.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Multiplayer 3D tank battle game'
 url='http://bzflag.org/'
 license=('LGPL')



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

2012-07-27 Thread Gaetan Bisson
Date: Saturday, July 28, 2012 @ 00:20:09
  Author: bisson
Revision: 164239

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

Added:
  bzflag/repos/staging-i686/
  bzflag/repos/staging-i686/PKGBUILD
(from rev 164238, bzflag/trunk/PKGBUILD)
  bzflag/repos/staging-x86_64/
  bzflag/repos/staging-x86_64/PKGBUILD
(from rev 164238, bzflag/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: bzflag/repos/staging-i686/PKGBUILD (from rev 164238, 
bzflag/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-28 04:20:09 UTC (rev 164239)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Kevin Piche ke...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=bzflag
+pkgver=2.4.0
+pkgrel=4
+pkgdesc='Multiplayer 3D tank battle game'
+url='http://bzflag.org/'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+depends=('curl' 'glew' 'mesa' 'sdl')
+source=(http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2;)
+sha1sums=('af469d63af7143479176ea0ac91ce2eaa6e4561f')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr
+   make
+
+   cd misc
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 misc/bzflag.desktop 
${pkgdir}/usr/share/applications/bzflag.desktop
+   install -Dm644 data/bzflag-48x48.png 
${pkgdir}/usr/share/pixmaps/bzflag-48x48.png
+}

Copied: bzflag/repos/staging-x86_64/PKGBUILD (from rev 164238, 
bzflag/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-07-28 04:20:09 UTC (rev 164239)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Kevin Piche ke...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=bzflag
+pkgver=2.4.0
+pkgrel=4
+pkgdesc='Multiplayer 3D tank battle game'
+url='http://bzflag.org/'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+depends=('curl' 'glew' 'mesa' 'sdl')
+source=(http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2;)
+sha1sums=('af469d63af7143479176ea0ac91ce2eaa6e4561f')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr
+   make
+
+   cd misc
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 misc/bzflag.desktop 
${pkgdir}/usr/share/applications/bzflag.desktop
+   install -Dm644 data/bzflag-48x48.png 
${pkgdir}/usr/share/pixmaps/bzflag-48x48.png
+}



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

2012-07-27 Thread Eric Bélanger
Date: Saturday, July 28, 2012 @ 00:44:08
  Author: eric
Revision: 164240

upgpkg: enblend-enfuse 4.0-6

Rebuilt against glew 1.8, Add boost-libs depends

Modified:
  enblend-enfuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-28 04:20:09 UTC (rev 164239)
+++ PKGBUILD2012-07-28 04:44:08 UTC (rev 164240)
@@ -4,12 +4,12 @@
 
 pkgname=enblend-enfuse
 pkgver=4.0
-pkgrel=5
+pkgrel=6
 pkgdesc=Intelligent blend tool for overlapping picture
 arch=(i686 x86_64)
 license=('GPL')
 url=http://enblend.sourceforge.net;
-depends=('openexr' 'glew=1.5' 'libxmi' 'freeglut' 'lcms' 'libpng')
+depends=('openexr' 'glew' 'libxmi' 'freeglut' 'lcms' 'libpng' 'boost-libs')
 makedepends=('boost')
 replaces=('enblend')
 conflicts=('enblend')
@@ -27,7 +27,7 @@
   sed -i 's/info.arith_code = TRUE/info.arith_code = FALSE/' 
src/vigra_impex/jpeg.cxx
   patch -p1 -i ../libpng-1.4.patch
   patch -p0 -i ../enblend-4.0-libpng15.patch
-  ./configure --prefix=/usr
+  LIBS=-lboost_system ./configure --prefix=/usr
   make
 }
 



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

2012-07-27 Thread Eric Bélanger
Date: Saturday, July 28, 2012 @ 00:44:32
  Author: eric
Revision: 164241

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

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

---+
 staging-i686/PKGBUILD |   39 
 staging-i686/enblend-4.0-libpng15.patch   |  220 
 staging-i686/enblend-enfuse.install   |   22 ++
 staging-i686/libpng-1.4.patch |   14 +
 staging-x86_64/PKGBUILD   |   39 
 staging-x86_64/enblend-4.0-libpng15.patch |  220 
 staging-x86_64/enblend-enfuse.install |   22 ++
 staging-x86_64/libpng-1.4.patch   |   14 +
 8 files changed, 590 insertions(+)

Copied: enblend-enfuse/repos/staging-i686/PKGBUILD (from rev 164240, 
enblend-enfuse/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-28 04:44:32 UTC (rev 164241)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=enblend-enfuse
+pkgver=4.0
+pkgrel=6
+pkgdesc=Intelligent blend tool for overlapping picture
+arch=(i686 x86_64)
+license=('GPL')
+url=http://enblend.sourceforge.net;
+depends=('openexr' 'glew' 'libxmi' 'freeglut' 'lcms' 'libpng' 'boost-libs')
+makedepends=('boost')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz{,.asc}
 \
+libpng-1.4.patch enblend-4.0-libpng15.patch)
+sha1sums=('34c3a5ce11c6ef0ef520d8a15a3cb6a94a567033'
+  'aac6364b29b0a9d6c61c3db0982f52ce1579e934'
+  'eae6cf48ea082865130302d0b4d1ca0b884a563b'
+  '71e961d90be842eafe9d473d8d70b04b29077036')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-753b534c819d
+  sed -i 's/info.arith_code = TRUE/info.arith_code = FALSE/' 
src/vigra_impex/jpeg.cxx
+  patch -p1 -i ../libpng-1.4.patch
+  patch -p0 -i ../enblend-4.0-libpng15.patch
+  LIBS=-lboost_system ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-753b534c819d
+  make DESTDIR=${pkgdir} install
+  install -D -m644 doc/enblend.info ${pkgdir}/usr/share/info/enblend.info
+  install -D -m644 doc/enfuse.info ${pkgdir}/usr/share/info/enfuse.info
+}

Copied: enblend-enfuse/repos/staging-i686/enblend-4.0-libpng15.patch (from rev 
164240, enblend-enfuse/trunk/enblend-4.0-libpng15.patch)
===
--- staging-i686/enblend-4.0-libpng15.patch (rev 0)
+++ staging-i686/enblend-4.0-libpng15.patch 2012-07-28 04:44:32 UTC (rev 
164241)
@@ -0,0 +1,220 @@
+--- src/vigra_impex/png.cxx
 src/vigra_impex/png.cxx
+@@ -81,7 +81,7 @@
+ static void PngError( png_structp png_ptr, png_const_charp error_msg )
+ {
+ png_error_message = std::string(error_msg);
+-longjmp( png_ptr-jmpbuf, 1 );
++longjmp( png_jmpbuf( png_ptr ), 1 );
+ }
+ 
+ // called on non-fatal errors
+@@ -213,7 +213,7 @@
+ vigra_postcondition( png != 0, could not create the read struct. );
+ 
+ // create info struct
+-if (setjmp(png-jmpbuf)) {
++if (setjmp(png_jmpbuf( png ))) {
+ png_destroy_read_struct( png, info, NULL );
+ vigra_postcondition( false, png_error_message.insert(0, error in 
png_create_info_struct(): ).c_str() );
+ }
+@@ -221,14 +221,14 @@
+ vigra_postcondition( info != 0, could not create the info struct. );
+ 
+ // init png i/o
+-if (setjmp(png-jmpbuf)) {
++if (setjmp(png_jmpbuf( png ))) {
+ png_destroy_read_struct( png, info, NULL );
+ vigra_postcondition( false, png_error_message.insert(0, error in 
png_init_io(): ).c_str() );
+ }
+ png_init_io( png, file.get() );
+ 
+ //