[arch-commits] Commit in kdenetwork/trunk (PKGBUILD giflib5.patch)

2013-07-30 Thread Andrea Scarpino
Date: Tuesday, July 30, 2013 @ 10:53:59
  Author: andrea
Revision: 191752

upgpkg: kdenetwork 4.10.5-2

giflib rebuild

Added:
  kdenetwork/trunk/giflib5.patch
Modified:
  kdenetwork/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +---
 giflib5.patch |   67 
 2 files changed, 74 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-30 08:18:26 UTC (rev 191751)
+++ PKGBUILD2013-07-30 08:53:59 UTC (rev 191752)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.10.5
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,13 +21,17 @@
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
 'libktorrent' 'libmms' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
-'use-libotr3.patch')
+'use-libotr3.patch'
+'giflib5.patch')
 sha1sums=('3ee86a1a227593e9f37881da3c1db1a3c384b2e4'
-  '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
+  '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384'
+  '388319373e96e6f6ea1132c35ae9f660e01c')
 
 prepare() {
 cd ${pkgbase}-${pkgver}
 patch -p1 -i ${srcdir}/use-libotr3.patch
+cd kopete
+patch -p1 -i ${srcdir}/giflib5.patch
 }
 
 build() {

Added: giflib5.patch
===
--- giflib5.patch   (rev 0)
+++ giflib5.patch   2013-07-30 08:53:59 UTC (rev 191752)
@@ -0,0 +1,67 @@
+From: Raymond Wooninck tittiatc...@gmail.com
+Date: Sun, 17 Mar 2013 12:24:09 +
+Subject: Enable building with giflib v5
+X-Git-Tag: v4.10.80
+X-Git-Url: 
http://quickgit.kde.org/?p=kopete.gita=commitdiffh=47ceec53aa5ee6b84a753fdbf735e44558513fe2
+---
+Enable building with giflib v5
+
+REVIEW: 7066
+
+svn path=/trunk/KDE/kdenetwork/kopete/; revision=1344846
+---
+
+
+--- a/protocols/wlm/wlmchatsession.cpp
 b/protocols/wlm/wlmchatsession.cpp
+@@ -65,6 +65,10 @@
+ #include wlmchatsessioninkaction.h
+ #ifdef HAVE_GIFLIB
+ #include gif_lib.h
++/* old giflib has no GIFLIB_MAJOR, define to avoid cpp warnings */
++#ifndef GIFLIB_MAJOR
++#define GIFLIB_MAJOR 4
++#endif
+ #endif
+ 
+ WlmChatSession::WlmChatSession (Kopete::Protocol * protocol,
+@@ -467,11 +471,15 @@
+ {
+ #ifdef HAVE_GIFLIB
+ #ifdef HAVE_GIF_ERROR_STRING // giflib 4.2.0+
++#if GIFLIB_MAJOR = 5
++fprintf(stderr, GIF-LIB error (exact reporting not implemented)\n);
++#else
+ const char * errorString = GifErrorString();
+ if (errorString)
+ fprintf(stderr, GIF-LIB error: %s\n, errorString);
+ else
+ fprintf(stderr, GIF-LIB undefined error: %d\n, GifError());
++#endif
+ #else // older giflib versions, libungif
+ PrintGifError();
+ #endif // HAVE_GIF_ERROR_STRING
+@@ -483,6 +491,10 @@
+ WlmChatSession::convertToGif( const QPixmap  ink, QString filename)
+ {
+ #ifdef HAVE_GIFLIB
++#if GIFLIB_MAJOR = 5
++#define FreeMapObject  GifFreeMapObject
++#define MakeMapObject  GifMakeMapObject
++#endif
+ int i, status;
+ GifFileType *GifFile;
+ ColorMapObject *screenColourmap;
+@@ -525,7 +537,11 @@
+ }
+ }
+ 
++#if GIFLIB_MAJOR = 5
++GifFile= EGifOpenFileName(QFile::encodeName(filename).constData(), 0, 
NULL);
++#else
+ GifFile= EGifOpenFileName(QFile::encodeName(filename).constData(), 0);
++#endif
+ if (!GifFile) {
+ FreeMapObject(imageColourmap);
+ FreeMapObject(screenColourmap);
+



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

2013-06-15 Thread Andrea Scarpino
Date: Saturday, June 15, 2013 @ 13:11:13
  Author: andrea
Revision: 188552

upgpkg: kdenetwork 4.10.4-2

Kopete doesn't support mediastreamer 2.9

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-06-15 11:09:27 UTC (rev 188551)
+++ PKGBUILD2013-06-15 11:11:13 UTC (rev 188552)
@@ -11,15 +11,15 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.10.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
-makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp'
+makedepends=('cmake' 'automoc4' 'boost' 'speex' 'libotr3' 'ppp'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
-'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
+'libktorrent' 'libmms' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
 sha1sums=('891277c8dcbf231452947e9b4c54324bad35fd1a'
@@ -74,7 +74,7 @@
 package_kdenetwork-kopete() {
pkgdesc='Instant Messenger'
depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr3' 'libmsn'
-'libidn' 'qimageblitz' 'libgadu' 'mediastreamer')
+'libidn' 'qimageblitz' 'libgadu')
url=http://kde.org/applications/internet/kopete/;
install='kdenetwork-kopete.install'
cd $srcdir/build/kopete



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 15:30:07
  Author: andrea
Revision: 184589

KDE 4.10.3

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 13:29:58 UTC (rev 184588)
+++ PKGBUILD2013-05-07 13:30:07 UTC (rev 184589)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.10.2
+pkgver=4.10.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
-sha1sums=('972526be8275a8adcb6e4fa51188a5dad83a0b14'
+sha1sums=('9c5e14b1ebc575777d1e6d09b593f62940a4fd1d'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



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

2013-04-03 Thread Sven-Hendrik Haase
Date: Thursday, April 4, 2013 @ 06:27:59
  Author: svenstaro
Revision: 181646

upgpkg: kdenetwork 4.10.2-1

upstream

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-04 04:27:55 UTC (rev 181645)
+++ PKGBUILD2013-04-04 04:27:59 UTC (rev 181646)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.10.1
+pkgver=4.10.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
-sha1sums=('3d54276d1b3808896640d8a28db2c354ef268953'
+sha1sums=('972526be8275a8adcb6e4fa51188a5dad83a0b14'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



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

2013-03-04 Thread Andrea Scarpino
Date: Monday, March 4, 2013 @ 12:13:30
  Author: andrea
Revision: 179256

KDE 4.10.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-04 11:13:28 UTC (rev 179255)
+++ PKGBUILD2013-03-04 11:13:30 UTC (rev 179256)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.10.0
+pkgver=4.10.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
-sha1sums=('974bd9aea71a583563667e7cdc4749fe9d5bd82e'
+sha1sums=('3d54276d1b3808896640d8a28db2c354ef268953'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



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

2013-01-02 Thread Andrea Scarpino
Date: Wednesday, January 2, 2013 @ 06:04:46
  Author: andrea
Revision: 174113

KDE 4.9.5

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-02 11:04:42 UTC (rev 174112)
+++ PKGBUILD2013-01-02 11:04:46 UTC (rev 174113)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.4
+pkgver=4.9.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
-sha1sums=('1541bfd584fc86e29782dbfdbb94c2b183a2bd48'
+sha1sums=('26a607742b83211575802781b287f6f7f1c3ebbc'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



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

2012-12-01 Thread Andrea Scarpino
Date: Sunday, December 2, 2012 @ 02:47:19
  Author: andrea
Revision: 172278

KDE 4.9.4

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-12-02 07:47:15 UTC (rev 172277)
+++ PKGBUILD2012-12-02 07:47:19 UTC (rev 172278)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.3
+pkgver=4.9.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
-sha1sums=('2a0b31a292f4805224fdb0ba26a9426e1126f4f6'
+sha1sums=('1541bfd584fc86e29782dbfdbb94c2b183a2bd48'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD use-libotr3.patch)

2012-11-09 Thread Andrea Scarpino
Date: Friday, November 9, 2012 @ 15:49:27
  Author: andrea
Revision: 170697

Better version of use-libotr3 patch (FS#32567)

Modified:
  kdenetwork/trunk/PKGBUILD
  kdenetwork/trunk/use-libotr3.patch

---+
 PKGBUILD  |2 -
 use-libotr3.patch |   55 ++--
 2 files changed, 54 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-09 20:17:29 UTC (rev 170696)
+++ PKGBUILD2012-11-09 20:49:27 UTC (rev 170697)
@@ -23,7 +23,7 @@
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'use-libotr3.patch')
 sha1sums=('2a0b31a292f4805224fdb0ba26a9426e1126f4f6'
-  '808fa0400dc419d446d4ff8a9b536b5fddcb4727')
+  '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {
 cd ${pkgbase}-${pkgver}

Modified: use-libotr3.patch
===
--- use-libotr3.patch   2012-11-09 20:17:29 UTC (rev 170696)
+++ use-libotr3.patch   2012-11-09 20:49:27 UTC (rev 170697)
@@ -1,5 +1,6 @@
 kdenetwork-4.9.3/kopete/cmake/modules/FindLibOTR.cmake~2012-11-06 
10:51:56.566038215 +
-+++ kdenetwork-4.9.3/kopete/cmake/modules/FindLibOTR.cmake 2012-11-06 
10:53:38.861993686 +
+diff -urN a/kopete/cmake/modules/FindLibOTR.cmake 
b/kopete/cmake/modules/FindLibOTR.cmake
+--- a/kopete/cmake/modules/FindLibOTR.cmake2012-08-12 18:08:59.0 
-0600
 b/kopete/cmake/modules/FindLibOTR.cmake2012-11-09 12:14:24.251450904 
-0700
 @@ -13,13 +13,13 @@
  SET(LIBOTR_FIND_QUIETLY TRUE)
  ENDIF (LIBOTR_INCLUDE_DIR AND LIBOTR_LIBRARY)
@@ -18,3 +19,53 @@
STRING(REGEX MATCH OTRL_VERSION \[0-9]+\\.[0-9]+\\.[0-9]+ LIBOTR_VERSION 
${output})
STRING(REGEX REPLACE ^OTRL_VERSION \  LIBOTR_VERSION 
${LIBOTR_VERSION})
# Check if version is at least 3.2.0
+diff -urN a/kopete/plugins/otr/authenticationwizard.h 
b/kopete/plugins/otr/authenticationwizard.h
+--- a/kopete/plugins/otr/authenticationwizard.h2012-08-12 
18:09:00.0 -0600
 b/kopete/plugins/otr/authenticationwizard.h2012-11-09 
12:15:11.181265336 -0700
+@@ -26,7 +26,7 @@
+   */
+ 
+ extern C{
+-#include libotr/proto.h
++#include libotr3/proto.h
+ }
+ 
+ #include kopetechatsession.h
+diff -urN a/kopete/plugins/otr/otrlchatinterface.h 
b/kopete/plugins/otr/otrlchatinterface.h
+--- a/kopete/plugins/otr/otrlchatinterface.h   2012-08-12 18:09:00.0 
-0600
 b/kopete/plugins/otr/otrlchatinterface.h   2012-11-09 12:16:10.141032744 
-0700
+@@ -36,10 +36,10 @@
+ #include authenticationwizard.h
+ 
+ extern C {
+-#include libotr/privkey.h
+-#include libotr/proto.h
+-#include libotr/message.h
+-#include libotr/userstate.h
++#include libotr3/privkey.h
++#include libotr3/proto.h
++#include libotr3/message.h
++#include libotr3/userstate.h
+ }
+ 
+ 
+diff -urN a/kopete/plugins/otr/otrlconfinterface.h 
b/kopete/plugins/otr/otrlconfinterface.h
+--- a/kopete/plugins/otr/otrlconfinterface.h   2012-08-12 18:09:00.0 
-0600
 b/kopete/plugins/otr/otrlconfinterface.h   2012-11-09 12:15:56.961084991 
-0700
+@@ -32,11 +32,11 @@
+ #include kopetechatsession.h
+ 
+ extern C {
+-#include libotr/privkey.h
+-#include libotr/proto.h
+-#include libotr/message.h
+-#include libotr/userstate.h
+-#include libotr/context.h
++#include libotr3/privkey.h
++#include libotr3/proto.h
++#include libotr3/message.h
++#include libotr3/userstate.h
++#include libotr3/context.h
+ }
+ 
+ class KOPETE_OTR_SHARED_EXPORT OtrlConfInterface : public QObject



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD use-libotr3.patch)

2012-11-06 Thread Andrea Scarpino
Date: Tuesday, November 6, 2012 @ 08:01:47
  Author: andrea
Revision: 170325

KDE 4.9.3

Added:
  kdenetwork/trunk/use-libotr3.patch
Modified:
  kdenetwork/trunk/PKGBUILD

---+
 PKGBUILD  |   15 ++-
 use-libotr3.patch |   20 
 2 files changed, 30 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-06 13:01:44 UTC (rev 170324)
+++ PKGBUILD2012-11-06 13:01:47 UTC (rev 170325)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.2
-pkgrel=2
+pkgver=4.9.3
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,11 +20,16 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('6779039e5354fae02cf7faa3442385b95befb430')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+'use-libotr3.patch')
+sha1sums=('2a0b31a292f4805224fdb0ba26a9426e1126f4f6'
+  '808fa0400dc419d446d4ff8a9b536b5fddcb4727')
 
 build() {
-cd ${srcdir}
+cd ${pkgbase}-${pkgver}
+patch -p1 -i ${srcdir}/use-libotr3.patch
+cd ../
+
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \

Added: use-libotr3.patch
===
--- use-libotr3.patch   (rev 0)
+++ use-libotr3.patch   2012-11-06 13:01:47 UTC (rev 170325)
@@ -0,0 +1,20 @@
+--- kdenetwork-4.9.3/kopete/cmake/modules/FindLibOTR.cmake~2012-11-06 
10:51:56.566038215 +
 kdenetwork-4.9.3/kopete/cmake/modules/FindLibOTR.cmake 2012-11-06 
10:53:38.861993686 +
+@@ -13,13 +13,13 @@
+ SET(LIBOTR_FIND_QUIETLY TRUE)
+ ENDIF (LIBOTR_INCLUDE_DIR AND LIBOTR_LIBRARY)
+ 
+-FIND_PATH(LIBOTR_INCLUDE_DIR libotr/version.h)
++FIND_PATH(LIBOTR_INCLUDE_DIR libotr3/version.h)
+ 
+-FIND_LIBRARY(LIBOTR_LIBRARY NAMES otr libotr)
++FIND_LIBRARY(LIBOTR_LIBRARY NAMES otr3 libotr3)
+ 
+-# Determine version information from libotr/version.h
++# Determine version information from libotr3/version.h
+ IF( LIBOTR_INCLUDE_DIR AND LIBOTR_LIBRARY )
+-  EXECUTE_PROCESS(COMMAND grep OTRL_VERSION 
${LIBOTR_INCLUDE_DIR}/libotr/version.h OUTPUT_VARIABLE output)
++  EXECUTE_PROCESS(COMMAND grep OTRL_VERSION 
${LIBOTR_INCLUDE_DIR}/libotr3/version.h OUTPUT_VARIABLE output)
+   STRING(REGEX MATCH OTRL_VERSION \[0-9]+\\.[0-9]+\\.[0-9]+ LIBOTR_VERSION 
${output})
+   STRING(REGEX REPLACE ^OTRL_VERSION \  LIBOTR_VERSION 
${LIBOTR_VERSION})
+   # Check if version is at least 3.2.0



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

2012-11-03 Thread Andrea Scarpino
Date: Saturday, November 3, 2012 @ 13:18:02
  Author: andrea
Revision: 170139

upgpkg: kdenetwork 4.9.2-2

libotr3 rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-11-03 17:15:48 UTC (rev 170138)
+++ PKGBUILD2012-11-03 17:18:02 UTC (rev 170139)
@@ -11,12 +11,12 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.9.2
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
-makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 'ppp'
+makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
@@ -66,7 +66,7 @@
 
 package_kdenetwork-kopete() {
pkgdesc='Instant Messenger'
-   depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libmsn'
+   depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr3' 'libmsn'
 'libidn' 'qimageblitz' 'libgadu' 'mediastreamer')
url=http://kde.org/applications/internet/kopete/;
install='kdenetwork-kopete.install'



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

2012-10-02 Thread Andrea Scarpino
Date: Tuesday, October 2, 2012 @ 05:15:13
  Author: andrea
Revision: 167505

KDE 4.9.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-02 09:15:10 UTC (rev 167504)
+++ PKGBUILD2012-10-02 09:15:13 UTC (rev 167505)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.1
-pkgrel=3
+pkgver=4.9.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('22f8cde8b5617ba7e401d82b0669a06899b17320')
+sha1sums=('6779039e5354fae02cf7faa3442385b95befb430')
 
 build() {
 cd ${srcdir}



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

2012-09-17 Thread Andrea Scarpino
Date: Monday, September 17, 2012 @ 05:37:51
  Author: andrea
Revision: 166734

upgpkg: kdenetwork 4.9.1-3

libktorrent rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-17 08:10:26 UTC (rev 166733)
+++ PKGBUILD2012-09-17 09:37:51 UTC (rev 166734)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.9.1
-pkgrel=1
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2012-09-03 Thread Andrea Scarpino
Date: Monday, September 3, 2012 @ 17:52:07
  Author: andrea
Revision: 165994

KDE 4.9.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-03 21:52:04 UTC (rev 165993)
+++ PKGBUILD2012-09-03 21:52:07 UTC (rev 165994)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.0
+pkgver=4.9.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('f5963684301d6569af4cfce2a39dbef140c1dc4d')
+sha1sums=('22f8cde8b5617ba7e401d82b0669a06899b17320')
 
 build() {
 cd ${srcdir}



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD gcc47.patch)

2012-06-06 Thread Andrea Scarpino
Date: Wednesday, June 6, 2012 @ 12:17:23
  Author: andrea
Revision: 160882

KDE 4.8.4

Modified:
  kdenetwork/trunk/PKGBUILD
Deleted:
  kdenetwork/trunk/gcc47.patch

-+
 PKGBUILD|   13 +++-
 gcc47.patch |   59 --
 2 files changed, 4 insertions(+), 68 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-06 16:17:20 UTC (rev 160881)
+++ PKGBUILD2012-06-06 16:17:23 UTC (rev 160882)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.8.3
-pkgrel=3
+pkgver=4.8.4
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,15 +20,10 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
-'gcc47.patch')
-sha1sums=('9da87317c6a10243d6fff8c121c04146415f65cd'
-  '0e1325569e296d98e7b1be12305c1c018104685b')
+
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('b3926c5cd929cec209421c2f1cb8659cc1c82458')
 
 build() {
-cd ${srcdir}/${pkgbase}-${pkgver}
-patch -p4 -i ${srcdir}/gcc47.patch
-
 cd ${srcdir}
mkdir build
cd build

Deleted: gcc47.patch
===
--- gcc47.patch 2012-06-06 16:17:20 UTC (rev 160881)
+++ gcc47.patch 2012-06-06 16:17:23 UTC (rev 160882)
@@ -1,59 +0,0 @@
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/socketaddress.cc
2012/05/03 16:03:23 1292761
-+++ 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/socketaddress.cc
2012/05/03 16:11:00 1292762
-@@ -31,6 +31,7 @@
- #include netinet/in.h
- #include arpa/inet.h
- #include netdb.h
-+#include unistd.h
- #endif
- 
- #include cstring
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/ssladapter.cc
   2012/05/03 16:03:23 1292761
-+++ 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/ssladapter.cc
   2012/05/03 16:11:00 1292762
-@@ -27,6 +27,12 @@
- 
- #include talk/base/ssladapter.h
- 
-+#ifdef POSIX
-+extern C {
-+#include unistd.h
-+}
-+#endif
-+
- #if !defined(SSL_USE_SCHANNEL)  !defined(SSL_USE_OPENSSL)
- #ifdef WIN32
- #define SSL_USE_SCHANNEL 1
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/stringutils.h
   2012/05/03 16:03:23 1292761
-+++ 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/stringutils.h
   2012/05/03 16:11:00 1292762
-@@ -198,15 +198,6 @@
- }
- 
- templateclass CTYPE
--size_t sprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format, ...) {
--  va_list args;
--  va_start(args, format);
--  size_t len = vsprintfn(buffer, buflen, format, args);
--  va_end(args);
--  return len;
--}
--
--templateclass CTYPE
- size_t vsprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format,
-  va_list args) {
-   int len = vsnprintf(buffer, buflen, format, args);
-@@ -217,6 +208,15 @@
-   return len;
- }
- 
-+templateclass CTYPE
-+size_t sprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format, ...) {
-+  va_list args;
-+  va_start(args, format);
-+  size_t len = vsprintfn(buffer, buflen, format, args);
-+  va_end(args);
-+  return len;
-+}
-+
- 
///
- // Allow safe comparing and copying ascii (not UTF-8) with both wide and
- // non-wide character strings.



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

2012-05-17 Thread Andrea Scarpino
Date: Thursday, May 17, 2012 @ 15:02:53
  Author: andrea
Revision: 159198

upgpkg: kdenetwork 4.8.3-3

Fix broken kopete after ortp rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-17 16:15:13 UTC (rev 159197)
+++ PKGBUILD2012-05-17 19:02:53 UTC (rev 159198)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.8.3
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2012-05-03 Thread Andrea Scarpino
Date: Thursday, May 3, 2012 @ 10:39:26
  Author: andrea
Revision: 158247

Disable QQ and GTalk support to fix build (see KDEBUG#299299 and KDEBUG#299300)

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-03 14:39:17 UTC (rev 158246)
+++ PKGBUILD2012-05-03 14:39:26 UTC (rev 158247)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.8.2
+pkgver=4.8.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('a899a9ef1637612a5ec14bb3ff950f3ed565d60e')
+sha1sums=('9da87317c6a10243d6fff8c121c04146415f65cd')
 
 build() {
 cd ${srcdir}
@@ -33,7 +33,9 @@
-DCMAKE_INSTALL_PREFIX=/usr \
-DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
 -DWITH_Xmms=OFF \
-   -DWITH_LibMeanwhile=OFF
+   -DWITH_LibMeanwhile=OFF \
+-DWITH_GOOGLETALK=OFF \
+-DWITH_qq=OFF
make
 }
 



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD gcc47.patch)

2012-05-03 Thread Andrea Scarpino
Date: Thursday, May 3, 2012 @ 13:17:59
  Author: andrea
Revision: 158332

Re-enable GTalk support

Added:
  kdenetwork/trunk/gcc47.patch
Modified:
  kdenetwork/trunk/PKGBUILD

-+
 PKGBUILD|   12 +++
 gcc47.patch |   59 ++
 2 files changed, 67 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-03 17:11:18 UTC (rev 158331)
+++ PKGBUILD2012-05-03 17:17:59 UTC (rev 158332)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.8.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,10 +20,15 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('9da87317c6a10243d6fff8c121c04146415f65cd')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+'gcc47.patch')
+sha1sums=('9da87317c6a10243d6fff8c121c04146415f65cd'
+  '0e1325569e296d98e7b1be12305c1c018104685b')
 
 build() {
+cd ${srcdir}/${pkgbase}-${pkgver}
+patch -p0 -i ${srcdir}/gcc47.patch
+
 cd ${srcdir}
mkdir build
cd build
@@ -34,7 +39,6 @@
-DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
 -DWITH_Xmms=OFF \
-DWITH_LibMeanwhile=OFF \
--DWITH_GOOGLETALK=OFF \
 -DWITH_qq=OFF
make
 }

Added: gcc47.patch
===
--- gcc47.patch (rev 0)
+++ gcc47.patch 2012-05-03 17:17:59 UTC (rev 158332)
@@ -0,0 +1,59 @@
+--- 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/socketaddress.cc
2012/05/03 16:03:23 1292761
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/socketaddress.cc
2012/05/03 16:11:00 1292762
+@@ -31,6 +31,7 @@
+ #include netinet/in.h
+ #include arpa/inet.h
+ #include netdb.h
++#include unistd.h
+ #endif
+ 
+ #include cstring
+--- 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/ssladapter.cc
   2012/05/03 16:03:23 1292761
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/ssladapter.cc
   2012/05/03 16:11:00 1292762
+@@ -27,6 +27,12 @@
+ 
+ #include talk/base/ssladapter.h
+ 
++#ifdef POSIX
++extern C {
++#include unistd.h
++}
++#endif
++
+ #if !defined(SSL_USE_SCHANNEL)  !defined(SSL_USE_OPENSSL)
+ #ifdef WIN32
+ #define SSL_USE_SCHANNEL 1
+--- 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/stringutils.h
   2012/05/03 16:03:23 1292761
 
branches/KDE/4.8/kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/base/stringutils.h
   2012/05/03 16:11:00 1292762
+@@ -198,15 +198,6 @@
+ }
+ 
+ templateclass CTYPE
+-size_t sprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format, ...) {
+-  va_list args;
+-  va_start(args, format);
+-  size_t len = vsprintfn(buffer, buflen, format, args);
+-  va_end(args);
+-  return len;
+-}
+-
+-templateclass CTYPE
+ size_t vsprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format,
+  va_list args) {
+   int len = vsnprintf(buffer, buflen, format, args);
+@@ -217,6 +208,15 @@
+   return len;
+ }
+ 
++templateclass CTYPE
++size_t sprintfn(CTYPE* buffer, size_t buflen, const CTYPE* format, ...) {
++  va_list args;
++  va_start(args, format);
++  size_t len = vsprintfn(buffer, buflen, format, args);
++  va_end(args);
++  return len;
++}
++
+ 
///
+ // Allow safe comparing and copying ascii (not UTF-8) with both wide and
+ // non-wide character strings.



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

2012-05-03 Thread Andrea Scarpino
Date: Thursday, May 3, 2012 @ 13:21:20
  Author: andrea
Revision: 158333

typo

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-03 17:17:59 UTC (rev 158332)
+++ PKGBUILD2012-05-03 17:21:20 UTC (rev 158333)
@@ -27,7 +27,7 @@
 
 build() {
 cd ${srcdir}/${pkgbase}-${pkgver}
-patch -p0 -i ${srcdir}/gcc47.patch
+patch -p4 -i ${srcdir}/gcc47.patch
 
 cd ${srcdir}
mkdir build



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

2012-03-30 Thread Andrea Scarpino
Date: Friday, March 30, 2012 @ 12:15:21
  Author: andrea
Revision: 154726

KDE 4.8.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-30 16:15:18 UTC (rev 154725)
+++ PKGBUILD2012-03-30 16:15:21 UTC (rev 154726)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.8.1
-pkgrel=2
+pkgver=4.8.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('e914a1d990ff42ec88cf37ffc897ae9df9b1fa45')
+sha1sums=('a899a9ef1637612a5ec14bb3ff950f3ed565d60e')
 
 build() {
 cd ${srcdir}



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

2012-03-06 Thread Andrea Scarpino
Date: Tuesday, March 6, 2012 @ 13:32:01
  Author: andrea
Revision: 152394

Path has been changed; new kdepim tarball

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 18:31:58 UTC (rev 152393)
+++ PKGBUILD2012-03-06 18:32:01 UTC (rev 152394)
@@ -20,7 +20,7 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/stable/${pkgver}/src/xz/${pkgbase}-${pkgver}.tar.xz;)
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
 sha1sums=('e914a1d990ff42ec88cf37ffc897ae9df9b1fa45')
 
 build() {



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

2012-03-06 Thread Andrea Scarpino
Date: Tuesday, March 6, 2012 @ 16:02:38
  Author: andrea
Revision: 152429

upgpkg: kdenetwork 4.8.1-2

libktorrent rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 20:36:57 UTC (rev 152428)
+++ PKGBUILD2012-03-06 21:02:38 UTC (rev 152429)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.8.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2012-03-04 Thread Andrea Scarpino
Date: Sunday, March 4, 2012 @ 06:11:57
  Author: andrea
Revision: 152001

KDE 4.8.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-04 11:11:54 UTC (rev 152000)
+++ PKGBUILD2012-03-04 11:11:57 UTC (rev 152001)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.8.0
-pkgrel=2
+pkgver=4.8.1
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,8 +20,8 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('51ea55dbcbece59535af61f7450e8ac2aa1db28b')
+source=(http://download.kde.org/stable/${pkgver}/src/xz/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('e914a1d990ff42ec88cf37ffc897ae9df9b1fa45')
 
 build() {
 cd ${srcdir}



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

2012-02-15 Thread Andrea Scarpino
Date: Wednesday, February 15, 2012 @ 04:34:48
  Author: andrea
Revision: 150223

upgpkg: kdenetwork 4.8.0-2

Remove telepathy-qt4 dependence (FS#28426)

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-02-15 09:02:36 UTC (rev 150222)
+++ PKGBUILD2012-02-15 09:34:48 UTC (rev 150223)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.8.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -19,7 +19,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 'ppp'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
-'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
+'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('51ea55dbcbece59535af61f7450e8ac2aa1db28b')
 
@@ -88,7 +88,7 @@
 
 package_kdenetwork-krdc() {
pkgdesc='Remote Desktop Client'
-   depends=('kdebase-runtime' 'libvncserver' 'rdesktop' 'telepathy-qt4')
+   depends=('kdebase-runtime' 'libvncserver' 'rdesktop')
 optdepends=('kdebase-keditbookmarks: to edit bookmarks')
url=http://kde.org/applications/internet/krdc/;
cd $srcdir/build/krdc



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

2012-01-25 Thread Andrea Scarpino
Date: Wednesday, January 25, 2012 @ 15:37:06
  Author: andrea
Revision: 147345

KDE 4.8.0

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-01-25 20:37:02 UTC (rev 147344)
+++ PKGBUILD2012-01-25 20:37:06 UTC (rev 147345)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.97
+pkgver=4.8.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -20,8 +20,8 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('81f146577669e1c26d875045ede6144437392526')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('51ea55dbcbece59535af61f7450e8ac2aa1db28b')
 
 build() {
 cd ${srcdir}



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

2012-01-04 Thread Andrea Scarpino
Date: Wednesday, January 4, 2012 @ 08:19:45
  Author: andrea
Revision: 146018

KDE 4.8RC2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-01-04 13:19:42 UTC (rev 146017)
+++ PKGBUILD2012-01-04 13:19:45 UTC (rev 146018)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.95
+pkgver=4.7.97
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('9bb4763bc8fe65484c74ec0e845023e0f1c1eeae')
+sha1sums=('81f146577669e1c26d875045ede6144437392526')
 
 build() {
 cd ${srcdir}



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

2011-12-22 Thread Andrea Scarpino
Date: Thursday, December 22, 2011 @ 03:01:17
  Author: andrea
Revision: 145419

KDE 4.8RC1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-12-22 08:01:13 UTC (rev 145418)
+++ PKGBUILD2011-12-22 08:01:17 UTC (rev 145419)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.90
+pkgver=4.7.95
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('7b2389d3c11b928a57677171901598a0007181f0')
+sha1sums=('9bb4763bc8fe65484c74ec0e845023e0f1c1eeae')
 
 build() {
 cd ${srcdir}



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

2011-12-07 Thread Andrea Scarpino
Date: Wednesday, December 7, 2011 @ 03:25:40
  Author: andrea
Revision: 144561

KDE 4.8beta2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-12-07 08:25:36 UTC (rev 144560)
+++ PKGBUILD2011-12-07 08:25:40 UTC (rev 144561)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.80
+pkgver=4.7.90
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('3ea7ab56d36260db9deaef2585feee80311ccfdc')
+sha1sums=('7b2389d3c11b928a57677171901598a0007181f0')
 
 build() {
 cd ${srcdir}



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

2011-10-30 Thread Andrea Scarpino
Date: Sunday, October 30, 2011 @ 07:19:52
  Author: andrea
Revision: 141452

KDE 4.7.3

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-30 11:19:47 UTC (rev 141451)
+++ PKGBUILD2011-10-30 11:19:52 UTC (rev 141452)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.2
+pkgver=4.7.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('59e9e3629dff0362cfa2a6d897c77bc9cfbe8d5c')
+sha1sums=('5d8ed6a478d9afdaf19d350f1d2fe7e9dd48b2f7')
 
 build() {
 cd ${srcdir}



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

2011-10-04 Thread Andrea Scarpino
Date: Tuesday, October 4, 2011 @ 13:52:11
  Author: andrea
Revision: 139733

KDE 4.7.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-04 17:52:08 UTC (rev 139732)
+++ PKGBUILD2011-10-04 17:52:11 UTC (rev 139733)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.1
+pkgver=4.7.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('4fd674223dcb68a548ddec3e65acf380d3d2ec68')
+sha1sums=('59e9e3629dff0362cfa2a6d897c77bc9cfbe8d5c')
 
 build() {
 cd ${srcdir}



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

2011-09-06 Thread Andrea Scarpino
Date: Tuesday, September 6, 2011 @ 04:23:14
  Author: andrea
Revision: 137165

KDE 4.7.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-09-06 08:23:11 UTC (rev 137164)
+++ PKGBUILD2011-09-06 08:23:14 UTC (rev 137165)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.7.0
+pkgver=4.7.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('e9e9d9c648d7d0e38852bc3417faa605bd62c1d1')
+sha1sums=('4fd674223dcb68a548ddec3e65acf380d3d2ec68')
 
 build() {
 cd ${srcdir}
@@ -62,9 +62,6 @@
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kget
make DESTDIR=$pkgdir install
-
-# Use the python2 executable
-find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
 }
 
 package_kdenetwork-kopete() {



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

2011-07-04 Thread Andrea Scarpino
Date: Monday, July 4, 2011 @ 15:27:58
  Author: andrea
Revision: 130263

KDE 4.6.5

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-04 19:27:51 UTC (rev 130262)
+++ PKGBUILD2011-07-04 19:27:58 UTC (rev 130263)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.6.4
+pkgver=4.6.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'libktorrent' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('63bb58a457aed790e109a9dbeab73abb8c7ea1b2')
+sha1sums=('cc398063da61f9f9ef0db4455dc0c989a4e68a25')
 
 build() {
 cd ${srcdir}



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

2011-06-06 Thread Andrea Scarpino
Date: Monday, June 6, 2011 @ 02:09:48
  Author: andrea
Revision: 126541

KDE SC 4.6.4

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-06-06 06:09:45 UTC (rev 126540)
+++ PKGBUILD2011-06-06 06:09:48 UTC (rev 126541)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.6.3
-pkgrel=2
+pkgver=4.6.4
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'libktorrent' 'mediastreamer')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('6f140dca442be815eda4fb79d51efd9e4588a1f1')
+sha1sums=('63bb58a457aed790e109a9dbeab73abb8c7ea1b2')
 
 build() {
 cd ${srcdir}



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

2011-06-06 Thread Andrea Scarpino
Date: Monday, June 6, 2011 @ 02:35:00
  Author: andrea
Revision: 126547

do not build with mediastreamer support

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-06-06 06:10:12 UTC (rev 126546)
+++ PKGBUILD2011-06-06 06:35:00 UTC (rev 126547)
@@ -19,7 +19,7 @@
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
-   'telepathy-qt4' 'libktorrent' 'mediastreamer')
+   'telepathy-qt4' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('63bb58a457aed790e109a9dbeab73abb8c7ea1b2')
 
@@ -33,7 +33,9 @@
-DCMAKE_INSTALL_PREFIX=/usr \
-DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
 -DWITH_Xmms=OFF \
-   -DWITH_LibMeanwhile=OFF
+-DWITH_WLM_MEDIASTREAMER=OFF \
+   -DWITH_LibMeanwhile=OFF \
+-DWITH_msiLBC=OFF
make
 }
 



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

2011-04-28 Thread Andrea Scarpino
Date: Thursday, April 28, 2011 @ 20:28:01
  Author: andrea
Revision: 121102

KDE 4.6.3

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-29 00:27:58 UTC (rev 121101)
+++ PKGBUILD2011-04-29 00:28:01 UTC (rev 121102)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.6.2
+pkgver=4.6.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -19,9 +19,9 @@
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
-   'telepathy-qt4' 'docbook-xsl' 'libktorrent')
+   'telepathy-qt4' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('6865c074b87a201b876d11b86a2f14aff5f45abb')
+sha1sums=('6f140dca442be815eda4fb79d51efd9e4588a1f1')
 
 build() {
 cd ${srcdir}



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

2011-04-05 Thread Andrea Scarpino
Date: Tuesday, April 5, 2011 @ 06:08:27
  Author: andrea
Revision: 118075

KDE 4.6.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-05 10:08:23 UTC (rev 118074)
+++ PKGBUILD2011-04-05 10:08:27 UTC (rev 118075)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.6.1
-pkgrel=2
+pkgver=4.6.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('dc09ffe178070147d67d5c27b9c340a86a2e14c7')
+sha1sums=('6865c074b87a201b876d11b86a2f14aff5f45abb')
 
 build() {
 cd ${srcdir}



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

2011-03-17 Thread Andrea Scarpino
Date: Thursday, March 17, 2011 @ 05:42:34
  Author: andrea
Revision: 115153

upgpkg: kdenetwork 4.6.1-2
libktorrent rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-03-17 09:27:08 UTC (rev 115152)
+++ PKGBUILD2011-03-17 09:42:34 UTC (rev 115153)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.6.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2011-03-03 Thread Andrea Scarpino
Date: Thursday, March 3, 2011 @ 09:25:02
  Author: andrea
Revision: 112058

new tarball

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-03-03 12:52:54 UTC (rev 112057)
+++ PKGBUILD2011-03-03 14:25:02 UTC (rev 112058)
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('e4d7d3e0e3070bf86fe3e0a2c9d1ddd790f00943')
+sha1sums=('dc09ffe178070147d67d5c27b9c340a86a2e14c7')
 
 build() {
 cd ${srcdir}



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

2011-02-28 Thread Andrea Scarpino
Date: Monday, February 28, 2011 @ 18:55:36
  Author: andrea
Revision: 111781

KDE 4.6.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-28 23:55:31 UTC (rev 111780)
+++ PKGBUILD2011-02-28 23:55:36 UTC (rev 111781)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.6.0
+pkgver=4.6.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('c69dcc48c8fc4064e183136b6d85e6379978925f')
+sha1sums=('e4d7d3e0e3070bf86fe3e0a2c9d1ddd790f00943')
 
 build() {
 cd ${srcdir}



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

2011-01-30 Thread Andrea Scarpino
Date: Sunday, January 30, 2011 @ 09:06:11
  Author: andrea
Revision: 108178

kwebkitpart is no more needed

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-01-30 14:02:27 UTC (rev 108177)
+++ PKGBUILD2011-01-30 14:06:11 UTC (rev 108178)
@@ -19,7 +19,7 @@
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
-   'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
+   'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('c69dcc48c8fc4064e183136b6d85e6379978925f')
 
@@ -54,7 +54,7 @@
 
 package_kdenetwork-kget() {
pkgdesc='Download Manager'
-   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent' 'kwebkitpart')
+   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent')
optdepends=('python2: YouTube plugin')
url=http://kde.org/applications/internet/kget/;
install='kdenetwork.install'



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

2011-01-26 Thread Andrea Scarpino
Date: Wednesday, January 26, 2011 @ 14:57:26
  Author: andrea
Revision: 107570

KDE 4.6.0

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-01-26 19:57:23 UTC (rev 107569)
+++ PKGBUILD2011-01-26 19:57:26 UTC (rev 107570)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.5
+pkgver=4.6.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,10 +21,10 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('2c7dd0bc1809ac477f46ddb966f232ca3f60bc0a')
+sha1sums=('c69dcc48c8fc4064e183136b6d85e6379978925f')
 
 build() {
-   cd ${srcdir}
+cd ${srcdir}
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \
@@ -32,8 +32,7 @@
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
-   -DWITH_Xmms=OFF \
-   -DWITH_Decibel=OFF \
+-DWITH_Xmms=OFF \
-DWITH_LibMeanwhile=OFF
make
 }



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

2011-01-05 Thread Andrea Scarpino
Date: Wednesday, January 5, 2011 @ 11:17:04
  Author: andrea
Revision: 104967

KDE 4.5.5

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-01-05 16:16:58 UTC (rev 104966)
+++ PKGBUILD2011-01-05 16:17:04 UTC (rev 104967)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.4
-pkgrel=2
+pkgver=4.5.5
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('95a69183912fe9f29a2e877c0655050d4a7252d1')
+sha1sums=('2c7dd0bc1809ac477f46ddb966f232ca3f60bc0a')
 
 build() {
cd ${srcdir}



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

2010-12-29 Thread Andrea Scarpino
Date: Wednesday, December 29, 2010 @ 11:14:31
  Author: andrea
Revision: 104128

upgpkg: kdenetwork 4.5.4-2
libktorrent rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-29 16:14:11 UTC (rev 104127)
+++ PKGBUILD2010-12-29 16:14:31 UTC (rev 104128)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.5.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2010-11-29 Thread Andrea Scarpino
Date: Monday, November 29, 2010 @ 08:44:54
  Author: andrea
Revision: 101567

KDE 4.5.4

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-11-29 13:44:50 UTC (rev 101566)
+++ PKGBUILD2010-11-29 13:44:54 UTC (rev 101567)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.3
-pkgrel=2
+pkgver=4.5.4
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -22,8 +22,8 @@
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'icq-login.patch')
-sha1sums=('8d9c4f674bb0811977c04121305287f0acbece20'
- '2166c658bde4a207c8f9e033838d6bc40336382b')
+sha1sums=('6e380d87937060a572a32b6eda955a82ec393ecf'
+  '2166c658bde4a207c8f9e033838d6bc40336382b')
 
 build() {
 # Already fixed upstream



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD icq-login.patch)

2010-11-29 Thread Andrea Scarpino
Date: Monday, November 29, 2010 @ 18:20:17
  Author: andrea
Revision: 101637

KDE 4.5.4 (re-tagged)

Modified:
  kdenetwork/trunk/PKGBUILD
Deleted:
  kdenetwork/trunk/icq-login.patch

-+
 PKGBUILD|   10 ---
 icq-login.patch |  144 --
 2 files changed, 2 insertions(+), 152 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-11-29 23:20:05 UTC (rev 101636)
+++ PKGBUILD2010-11-29 23:20:17 UTC (rev 101637)
@@ -20,16 +20,10 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
-'icq-login.patch')
-sha1sums=('6e380d87937060a572a32b6eda955a82ec393ecf'
-  '2166c658bde4a207c8f9e033838d6bc40336382b')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('95a69183912fe9f29a2e877c0655050d4a7252d1')
 
 build() {
-# Already fixed upstream
-cd ${srcdir}/${pkgbase}-${pkgver}
-patch -Np4 -i ${srcdir}/icq-login.patch
-
cd ${srcdir}
mkdir build
cd build

Deleted: icq-login.patch
===
--- icq-login.patch 2010-11-29 23:20:05 UTC (rev 101636)
+++ icq-login.patch 2010-11-29 23:20:17 UTC (rev 101637)
@@ -1,144 +0,0 @@
 branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/icqaccount.cpp  
2010/11/16 15:01:13 1197797
-+++ branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/icqaccount.cpp  
2010/11/16 15:04:32 1197798
-@@ -136,7 +136,7 @@
-   // Create actions
-   mEditInfoAction = new KAction( KIcon(user-properties), i18n( Edit 
User Info... ), this );
-   QObject::connect( mEditInfoAction, SIGNAL(triggered(bool)), this, 
SLOT(slotUserInfo()) );
--  
-+
-   mActionInvisible = new KToggleAction( i18n( Invisible ), this );
-   QObject::connect( mActionInvisible, SIGNAL(triggered(bool)), this, 
SLOT(slotToggleInvisible()) );
- 
-@@ -188,7 +188,7 @@
-   */
- 
-   KActionMenu *xtrazStatusMenu = new KActionMenu( i18n( Set Xtraz 
Status ), actionMenu );
--  
-+
-   KAction* xtrazStatusSetAction = new KAction( i18n( Set Status... ), 
xtrazStatusMenu );
-   QObject::connect( xtrazStatusSetAction, SIGNAL(triggered(bool)), this, 
SLOT(setXtrazStatus()) );
-   xtrazStatusMenu-addAction( xtrazStatusSetAction );
-@@ -236,7 +236,7 @@
-   myself()-setOnlineStatus( 
protocol()-statusManager()-connectingStatus() );
-   QString icqNumber = accountId();
-   kDebug(14153)  Logging in as   icqNumber;
--  QString server = configGroup()-readEntry( Server, 
QString::fromLatin1( login.oscar.aol.com ) );
-+  QString server = configGroup()-readEntry( Server, 
QString::fromLatin1( login.icq.com ) );
-   uint port = configGroup()-readEntry( Port, 5190 );
- 
-   //set up the settings for the account
 
branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
 2010/11/16 15:01:13 1197797
-+++ 
branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
 2010/11/16 15:04:32 1197798
-@@ -65,7 +65,7 @@
- 
-   mProtocol-fillComboFromTable( mAccountSettings-encodingCombo, 
mProtocol-encodings() );
- 
--  //Setup the edtAccountId 
-+  //Setup the edtAccountId
-   QRegExp rx([0-9]{9});
-   QValidator* validator = new QRegExpValidator( rx, this );
-   mAccountSettings-edtAccountId-setValidator(validator);
-@@ -80,9 +80,9 @@
-   mAccountSettings-mPasswordWidget-load(mAccount-password());
-   
mAccountSettings-chkAutoLogin-setChecked(mAccount-excludeConnect());
- 
--  QString serverEntry = 
mAccount-configGroup()-readEntry(Server, login.oscar.aol.com);
-+  QString serverEntry = 
mAccount-configGroup()-readEntry(Server, login.icq.com);
-   int portEntry = mAccount-configGroup()-readEntry(Port, 
5190);
--  mAccountSettings-optionOverrideServer-setChecked( serverEntry 
!= login.oscar.aol.com || ( portEntry != 5190) );
-+  mAccountSettings-optionOverrideServer-setChecked( serverEntry 
!= login.icq.com || ( portEntry != 5190) );
- 
-   mAccountSettings-edtServerAddress-setText( serverEntry );
-   mAccountSettings-edtServerPort-setValue( portEntry );
-@@ -181,7 +181,7 @@
-   default:
-   encodingId=4;
-   }
--  
-+
-   mProtocol-setComboFromTable( mAccountSettings-encodingCombo,
- mProtocol-encodings(),
-  

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

2010-11-25 Thread Andrea Scarpino
Date: Thursday, November 25, 2010 @ 03:50:39
  Author: andrea
Revision: 100660

KEEP sha1sum

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-11-25 08:45:23 UTC (rev 100659)
+++ PKGBUILD2010-11-25 08:50:39 UTC (rev 100660)
@@ -21,14 +21,15 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
-icq-login.patch)
-md5sums=('5170966aad6ab3eb8107d3a00d3f595b'
- 'd2a0d91c2dc86aa2f5a6625043eba0c3')
+'icq-login.patch')
+sha1sums=('8d9c4f674bb0811977c04121305287f0acbece20'
+ '2166c658bde4a207c8f9e033838d6bc40336382b')
 
 build() {
-# fix icq server login issues
-cd ${srcdir}/${pkgbase}-${pkgver}
-patch -Np4 -i ../icq-login.patch
+# Already fixed upstream
+cd ${srcdir}/${pkgbase}-${pkgver}
+patch -Np4 -i ${srcdir}/icq-login.patch
+
cd ${srcdir}
mkdir build
cd build



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD icq-login.patch)

2010-11-23 Thread Tobias Powalowski
Date: Tuesday, November 23, 2010 @ 10:08:11
  Author: tpowa
Revision: 100423

upgpkg: kdenetwork 4.5.3-2
fix icq issues in kopete

Added:
  kdenetwork/trunk/icq-login.patch
Modified:
  kdenetwork/trunk/PKGBUILD

-+
 PKGBUILD|   11 +++-
 icq-login.patch |  144 ++
 2 files changed, 152 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-11-23 15:07:22 UTC (rev 100422)
+++ PKGBUILD2010-11-23 15:08:11 UTC (rev 100423)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.5.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,10 +20,15 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('8d9c4f674bb0811977c04121305287f0acbece20')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
+icq-login.patch)
+md5sums=('5170966aad6ab3eb8107d3a00d3f595b'
+ 'd2a0d91c2dc86aa2f5a6625043eba0c3')
 
 build() {
+# fix icq server login issues
+cd ${srcdir}/${pkgbase}-${pkgver}
+patch -Np4 -i ../icq-login.patch
cd ${srcdir}
mkdir build
cd build

Added: icq-login.patch
===
--- icq-login.patch (rev 0)
+++ icq-login.patch 2010-11-23 15:08:11 UTC (rev 100423)
@@ -0,0 +1,144 @@
+--- branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/icqaccount.cpp  
2010/11/16 15:01:13 1197797
 branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/icqaccount.cpp  
2010/11/16 15:04:32 1197798
+@@ -136,7 +136,7 @@
+   // Create actions
+   mEditInfoAction = new KAction( KIcon(user-properties), i18n( Edit 
User Info... ), this );
+   QObject::connect( mEditInfoAction, SIGNAL(triggered(bool)), this, 
SLOT(slotUserInfo()) );
+-  
++
+   mActionInvisible = new KToggleAction( i18n( Invisible ), this );
+   QObject::connect( mActionInvisible, SIGNAL(triggered(bool)), this, 
SLOT(slotToggleInvisible()) );
+ 
+@@ -188,7 +188,7 @@
+   */
+ 
+   KActionMenu *xtrazStatusMenu = new KActionMenu( i18n( Set Xtraz 
Status ), actionMenu );
+-  
++
+   KAction* xtrazStatusSetAction = new KAction( i18n( Set Status... ), 
xtrazStatusMenu );
+   QObject::connect( xtrazStatusSetAction, SIGNAL(triggered(bool)), this, 
SLOT(setXtrazStatus()) );
+   xtrazStatusMenu-addAction( xtrazStatusSetAction );
+@@ -236,7 +236,7 @@
+   myself()-setOnlineStatus( 
protocol()-statusManager()-connectingStatus() );
+   QString icqNumber = accountId();
+   kDebug(14153)  Logging in as   icqNumber;
+-  QString server = configGroup()-readEntry( Server, 
QString::fromLatin1( login.oscar.aol.com ) );
++  QString server = configGroup()-readEntry( Server, 
QString::fromLatin1( login.icq.com ) );
+   uint port = configGroup()-readEntry( Port, 5190 );
+ 
+   //set up the settings for the account
+--- 
branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
 2010/11/16 15:01:13 1197797
 
branches/KDE/4.5/kdenetwork/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
 2010/11/16 15:04:32 1197798
+@@ -65,7 +65,7 @@
+ 
+   mProtocol-fillComboFromTable( mAccountSettings-encodingCombo, 
mProtocol-encodings() );
+ 
+-  //Setup the edtAccountId 
++  //Setup the edtAccountId
+   QRegExp rx([0-9]{9});
+   QValidator* validator = new QRegExpValidator( rx, this );
+   mAccountSettings-edtAccountId-setValidator(validator);
+@@ -80,9 +80,9 @@
+   mAccountSettings-mPasswordWidget-load(mAccount-password());
+   
mAccountSettings-chkAutoLogin-setChecked(mAccount-excludeConnect());
+ 
+-  QString serverEntry = 
mAccount-configGroup()-readEntry(Server, login.oscar.aol.com);
++  QString serverEntry = 
mAccount-configGroup()-readEntry(Server, login.icq.com);
+   int portEntry = mAccount-configGroup()-readEntry(Port, 
5190);
+-  mAccountSettings-optionOverrideServer-setChecked( serverEntry 
!= login.oscar.aol.com || ( portEntry != 5190) );
++  mAccountSettings-optionOverrideServer-setChecked( serverEntry 
!= login.icq.com || ( portEntry != 5190) );
+ 
+   mAccountSettings-edtServerAddress-setText( serverEntry );
+   mAccountSettings-edtServerPort-setValue( portEntry );
+@@ -181,7 +181,7 @@
+   default:
+   encodingId=4;
+   }
+-

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

2010-10-30 Thread Andrea Scarpino
Date: Saturday, October 30, 2010 @ 08:59:47
  Author: andrea
Revision: 97477

KDE 4.5.3

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-10-30 12:59:39 UTC (rev 97476)
+++ PKGBUILD2010-10-30 12:59:47 UTC (rev 97477)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.2
+pkgver=4.5.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('9ae99ef21bb56e254f1cab22338b597e7734e734')
+sha1sums=('8d9c4f674bb0811977c04121305287f0acbece20')
 
 build() {
cd ${srcdir}
@@ -56,6 +56,7 @@
 package_kdenetwork-kget() {
pkgdesc='Download Manager'
depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent' 'kwebkitpart')
+   optdepends=('python2: YouTube plugin')
url=http://kde.org/applications/internet/kget/;
install='kdenetwork.install'
cd $srcdir/build/kget



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

2010-10-03 Thread Andrea Scarpino
Date: Sunday, October 3, 2010 @ 18:39:10
  Author: andrea
Revision: 93097

minor, minor fixes

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-10-03 22:39:04 UTC (rev 93096)
+++ PKGBUILD2010-10-03 22:39:10 UTC (rev 93097)
@@ -63,7 +63,7 @@
cd $srcdir/build/doc/kget
make DESTDIR=$pkgdir install
 
-# fix python 2.7 path
+# Use the python2 executable
 find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
 }
 



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

2010-10-01 Thread Andrea Scarpino
Date: Friday, October 1, 2010 @ 08:46:50
  Author: andrea
Revision: 92831

KDE 4.5.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-10-01 12:46:44 UTC (rev 92830)
+++ PKGBUILD2010-10-01 12:46:50 UTC (rev 92831)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.1
-pkgrel=2
+pkgver=4.5.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('21c30bd592b22056f3e474d761fc2943ea280c33')
+sha1sums=('9ae99ef21bb56e254f1cab22338b597e7734e734')
 
 build() {
cd ${srcdir}



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

2010-09-11 Thread Andrea Scarpino
Date: Saturday, September 11, 2010 @ 13:51:00
  Author: andrea
Revision: 90436

python2 rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-11 17:50:39 UTC (rev 90435)
+++ PKGBUILD2010-09-11 17:51:00 UTC (rev 90436)
@@ -11,7 +11,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.5.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -62,6 +62,9 @@
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kget
make DESTDIR=$pkgdir install
+
+# fix python 2.7 path
+find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
 }
 
 package_kdenetwork-kopete() {



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

2010-09-10 Thread Andrea Scarpino
Date: Friday, September 10, 2010 @ 14:39:15
  Author: andrea
Revision: 90345

v4l-utils

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-10 18:34:05 UTC (rev 90344)
+++ PKGBUILD2010-09-10 18:39:15 UTC (rev 90345)
@@ -18,7 +18,7 @@
 groups=('kde' 'kdenetwork')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
-   'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
+   'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 
'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('21c30bd592b22056f3e474d761fc2943ea280c33')
@@ -67,7 +67,7 @@
 package_kdenetwork-kopete() {
pkgdesc='Instant Messenger'
depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libmsn'
-'libidn' 'qimageblitz' 'libv4l' 'libgadu')
+'libidn' 'qimageblitz' 'v4l-utils' 'libgadu')
url=http://kde.org/applications/internet/kopete/;
install='kdenetwork.install'
cd $srcdir/build/kopete



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

2010-08-30 Thread Andrea Scarpino
Date: Monday, August 30, 2010 @ 04:04:14
  Author: andrea
Revision: 89226

KDE 4.5.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-30 08:04:09 UTC (rev 89225)
+++ PKGBUILD2010-08-30 08:04:14 UTC (rev 89226)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.5.0
+pkgver=4.5.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,7 +21,7 @@
'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('be2ac295380c79efba986d33fc0d285b9e3e565f')
+sha1sums=('21c30bd592b22056f3e474d761fc2943ea280c33')
 
 build() {
cd ${srcdir}



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

2010-08-30 Thread Andrea Scarpino
Date: Monday, August 30, 2010 @ 10:17:26
  Author: andrea
Revision: 89259

set Mozilla plugins dir

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-30 13:54:49 UTC (rev 89258)
+++ PKGBUILD2010-08-30 14:17:26 UTC (rev 89259)
@@ -19,7 +19,7 @@
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
-   'telepathy-qt4' 'docbook-xsl' 'libktorrent')
+   'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 sha1sums=('21c30bd592b22056f3e474d761fc2943ea280c33')
 
@@ -31,6 +31,7 @@
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
+   -DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
-DWITH_Xmms=OFF \
-DWITH_Decibel=OFF \
-DWITH_LibMeanwhile=OFF
@@ -54,7 +55,7 @@
 
 package_kdenetwork-kget() {
pkgdesc='Download Manager'
-   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent')
+   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent' 'kwebkitpart')
url=http://kde.org/applications/internet/kget/;
install='kdenetwork.install'
cd $srcdir/build/kget



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

2010-08-27 Thread Ronald van Haren
Date: Friday, August 27, 2010 @ 04:01:21
  Author: ronald
Revision: 88972

add libktorrent to depends of kget for torrent support

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-26 18:35:03 UTC (rev 88971)
+++ PKGBUILD2010-08-27 08:01:21 UTC (rev 88972)
@@ -54,7 +54,7 @@
 
 package_kdenetwork-kget() {
pkgdesc='Download Manager'
-   depends=('kdebase-workspace' 'kdebase-lib')
+   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent')
url=http://kde.org/applications/internet/kget/;
install='kdenetwork.install'
cd $srcdir/build/kget



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

2010-08-10 Thread Ronald van Haren
Date: Tuesday, August 10, 2010 @ 14:56:25
  Author: ronald
Revision: 87101

update pkgbuilds

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-10 18:56:20 UTC (rev 87100)
+++ PKGBUILD2010-08-10 18:56:25 UTC (rev 87101)
@@ -21,7 +21,7 @@
'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('e2b6db5baf1cd514c1a5ade5593151c23f4e03e0')
+sha1sums=('be2ac295380c79efba986d33fc0d285b9e3e565f')
 
 build() {
cd ${srcdir}



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

2010-07-29 Thread Andrea Scarpino
Date: Thursday, July 29, 2010 @ 09:25:48
  Author: andrea
Revision: 86349

KDE 4.5.0

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-29 13:25:39 UTC (rev 86348)
+++ PKGBUILD2010-07-29 13:25:48 UTC (rev 86349)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.95
+pkgver=4.5.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -20,8 +20,8 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('2374f6c85dabe19c4d17cb037da59f8e7f499dca')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('e2b6db5baf1cd514c1a5ade5593151c23f4e03e0')
 
 build() {
cd ${srcdir}



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

2010-07-27 Thread Andrea Scarpino
Date: Tuesday, July 27, 2010 @ 05:10:19
  Author: andrea
Revision: 86194

moved to [testing]

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-27 09:10:04 UTC (rev 86193)
+++ PKGBUILD2010-07-27 09:10:19 UTC (rev 86194)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgbase=kdenetwork
 pkgname=('kdenetwork-filesharing'
@@ -9,22 +10,21 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.5
+pkgver=4.4.95
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr'
- 'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
- 'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
- 'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('5f321ce932d6b1fadf1935e527bd1848c317be7a')
+   'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
+   'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
+   'telepathy-qt4' 'docbook-xsl' 'libktorrent')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('2374f6c85dabe19c4d17cb037da59f8e7f499dca')
 
 build() {
cd ${srcdir}
-
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \
@@ -46,16 +46,16 @@
 }
 
 package_kdenetwork-kdnssd() {
-   pkgdesc='Network Services'
+   pkgdesc='Monitors the network for DNS-SD services'
depends=('kdelibs')
cd $srcdir/build/kdnssd
make DESTDIR=$pkgdir install
 }
 
 package_kdenetwork-kget() {
-   url=http://userbase.kde.org/KGet;
pkgdesc='Download Manager'
-   depends=('kdebase-workspace' 'kdebase-lib' 'qca')
+   depends=('kdebase-workspace' 'kdebase-lib')
+   url=http://kde.org/applications/internet/kget/;
install='kdenetwork.install'
cd $srcdir/build/kget
make DESTDIR=$pkgdir install
@@ -64,10 +64,10 @@
 }
 
 package_kdenetwork-kopete() {
-   url=http://kopete.kde.org/;
pkgdesc='Instant Messenger'
depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libmsn'
-'libidn' 'qimageblitz' 'libxss' 'libv4l' 'libgadu')
+'libidn' 'qimageblitz' 'libv4l' 'libgadu')
+   url=http://kde.org/applications/internet/kopete/;
install='kdenetwork.install'
cd $srcdir/build/kopete
make DESTDIR=$pkgdir install
@@ -77,7 +77,8 @@
 
 package_kdenetwork-kppp() {
pkgdesc='Internet Dial-Up Tool'
-   depends=('kdebase-runtime' 'kdelibs' 'ppp')
+   depends=('kdebase-runtime' 'ppp')
+   url=http://kde.org/applications/internet/kppp/;
install='kdenetwork.install'
cd $srcdir/build/kppp
make DESTDIR=$pkgdir install
@@ -87,7 +88,8 @@
 
 package_kdenetwork-krdc() {
pkgdesc='Remote Desktop Client'
-   depends=('kdebase-runtime' 'kdelibs' 'libvncserver' 'rdesktop' 
'telepathy-qt4')
+   depends=('kdebase-runtime' 'libvncserver' 'rdesktop' 'telepathy-qt4')
+   url=http://kde.org/applications/internet/krdc/;
cd $srcdir/build/krdc
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/krdc
@@ -99,7 +101,7 @@
# note on libxdamage:
#   not detected by namcap because libgl depends on it
#   but nvidia providing libgl does not depend on libxdamage
-   depends=('kdebase-runtime' 'kdelibs' 'libvncserver' 'libxdamage')
+   depends=('kdebase-runtime' 'libvncserver' 'libxdamage')
cd $srcdir/build/krfb
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/krfb



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

2010-07-07 Thread Andrea Scarpino
Date: Wednesday, July 7, 2010 @ 16:23:23
  Author: andrea
Revision: 85107

undo

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-07 20:23:18 UTC (rev 85106)
+++ PKGBUILD2010-07-07 20:23:23 UTC (rev 85107)
@@ -9,7 +9,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.92
+pkgver=4.4.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -19,8 +19,8 @@
  'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('e10ffab9e04703a550bb2fdf8ae95a9671262b66')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('5f321ce932d6b1fadf1935e527bd1848c317be7a')
 
 build() {
cd ${srcdir}



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

2010-06-27 Thread Andrea Scarpino
Date: Sunday, June 27, 2010 @ 13:27:58
  Author: andrea
Revision: 84248

KDE 4.4.5

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-27 17:27:53 UTC (rev 84247)
+++ PKGBUILD2010-06-27 17:27:58 UTC (rev 84248)
@@ -9,7 +9,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.4
+pkgver=4.4.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -20,7 +20,7 @@
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('1706b009d723897cbc9ad9b0c1743873e8e79362')
+sha1sums=('5f321ce932d6b1fadf1935e527bd1848c317be7a')
 
 build() {
cd ${srcdir}



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

2010-05-31 Thread Ronald van Haren
Date: Monday, May 31, 2010 @ 04:14:55
  Author: ronald
Revision: 81506

bump PKGBUILDs for 4.4.4 release

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-31 08:14:52 UTC (rev 81505)
+++ PKGBUILD2010-05-31 08:14:55 UTC (rev 81506)
@@ -9,8 +9,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.3
-pkgrel=2
+pkgver=4.4.4
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -19,18 +19,12 @@
  'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 CVE-2010-1000.patch)
-sha1sums=('67237e0142f5d4edc893a7dcafffa79f998c534e'
-  'a1b599df1f9701f6c6ca77412a3793058cb47f4a')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('67237e0142f5d4edc893a7dcafffa79f998c534e')
 
 build() {
cd ${srcdir}
 
-# apply security patch
-cd ${pkgbase}-${pkgver}
-patch -Np1 -i ${srcdir}/CVE-2010-1000.patch || return 1
-cd ..
-
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \



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

2010-05-31 Thread Ronald van Haren
Date: Monday, May 31, 2010 @ 15:20:27
  Author: ronald
Revision: 81567

update sha1sums

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-31 19:20:22 UTC (rev 81566)
+++ PKGBUILD2010-05-31 19:20:27 UTC (rev 81567)
@@ -20,7 +20,7 @@
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('67237e0142f5d4edc893a7dcafffa79f998c534e')
+sha1sums=('1706b009d723897cbc9ad9b0c1743873e8e79362')
 
 build() {
cd ${srcdir}



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

2010-05-02 Thread Andrea Scarpino
Date: Sunday, May 2, 2010 @ 18:01:48
  Author: andrea
Revision: 79335

switch to SHA1 sum

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-02 22:01:44 UTC (rev 79334)
+++ PKGBUILD2010-05-02 22:01:48 UTC (rev 79335)
@@ -20,7 +20,7 @@
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('9e8e285aff018807fd5967806cebf083')
+sha1sums=('67237e0142f5d4edc893a7dcafffa79f998c534e')
 
 build() {
cd ${srcdir}



[arch-commits] Commit in kdenetwork/trunk (PKGBUILD fix-yahoo-protocol.patch)

2010-04-30 Thread Andrea Scarpino
Date: Friday, April 30, 2010 @ 06:00:40
  Author: andrea
Revision: 79109

prepare for KDE 4.4.3

Modified:
  kdenetwork/trunk/PKGBUILD
Deleted:
  kdenetwork/trunk/fix-yahoo-protocol.patch

--+
 PKGBUILD |   12 -
 fix-yahoo-protocol.patch |  330 -
 2 files changed, 4 insertions(+), 338 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-30 10:00:36 UTC (rev 79108)
+++ PKGBUILD2010-04-30 10:00:40 UTC (rev 79109)
@@ -9,8 +9,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.2
-pkgrel=2
+pkgver=4.4.3
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -19,14 +19,10 @@
  'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
-   'fix-yahoo-protocol.patch')
-md5sums=('079fe0c9b7d7c5b52e673b5f4bc4f301'
-   'aef9c40e3b93f36b1c611f0bb5429e50')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+md5sums=('9e8e285aff018807fd5967806cebf083')
 
 build() {
-cd ${srcdir}/${pkgbase}-${pkgver}
-   patch -Np1 -i ${srcdir}/fix-yahoo-protocol.patch || return 1
cd ${srcdir}
mkdir build
cd build

Deleted: fix-yahoo-protocol.patch
===
--- fix-yahoo-protocol.patch2010-04-30 10:00:36 UTC (rev 79108)
+++ fix-yahoo-protocol.patch2010-04-30 10:00:40 UTC (rev 79109)
@@ -1,330 +0,0 @@
-Index: kdenetwork/kopete/protocols/yahoo/yahoocontact.h
-===
 kdenetwork/kopete/protocols/yahoo/yahoocontact.h   (revision 1110827)
-+++ kdenetwork/kopete/protocols/yahoo/yahoocontact.h   (revision 1110828)
-@@ -56,8 +56,8 @@
- 
-   void setOnlineStatus(const Kopete::OnlineStatus status);
-   void setYahooStatus( const Kopete::OnlineStatus );
--  void setStealthed( bool );
--  bool stealthed();
-+  void updateStealthed();
-+  bool stealthed() const;
- 
- 
-   /** The group name getter and setter methods**/
-@@ -121,7 +121,6 @@
-   YahooChatSession *m_manager;
-   YahooWebcamDialog* m_webcamDialog;
-   YahooAccount* m_account;
--  bool m_stealthed;
-   bool m_receivingWebcam;
-   bool m_sessionActive;
-   
-Index: kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp
-===
 kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp   (revision 
1110827)
-+++ kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp   (revision 
1110828)
-@@ -34,9 +34,6 @@
- 
- }
- 
--QStringList loginstealthedbuddies;
--QStringList loginunstealthedbuddies;
--
- bool ListTask::take( Transfer* transfer )
- {
-   if ( !forMe( transfer ) )
-@@ -85,47 +82,30 @@
-   case 301:
-   if( p.second == 319){
-   emit gotBuddy( buddy, QString(), group );
--/**
--* Note: michaelacole
--* Since you can log in from other places and 
remove or add Perm Offline status
--* We have to reset both conditions at login
--* Yahoo sends this data at this time,
--* so better to compile list of both now then 
notify kopete client.
--*/
--  loginunstealthedbuddies.append( buddy );
-   }
-   break;
-   case 317:
-   if( p.second == 2){
--  kDebug(YAHOO_RAW_DEBUG)  Stealthed setting on  
buddy ;
--/** Note: michaelacole
--* Since you can log in from other places and remove 
or add Perm Offline status
--* We have to reset both conditions at login
--* Yahoo sends this data at this time,
--* so better to compile list of both now then notify 
kopete client.
--*/
--  loginstealthedbuddies.append( buddy );
--  loginunstealthedbuddies.removeAll( buddy );
-+  kDebug(YAHOO_RAW_DEBUG)  Stealthed setting 
on  buddy ;
-+  emit stealthStatusChanged( buddy, 
Yahoo::StealthActive );
-   };
-   break;
--/**
--* Note: michaelacole
--* Other buddy codes are here for add to list 

[arch-commits] Commit in kdenetwork/trunk (PKGBUILD fix-yahoo-protocol.patch)

2010-04-10 Thread Andrea Scarpino
Date: Saturday, April 10, 2010 @ 11:55:15
  Author: andrea
Revision: 77061

upgpkg: kdenetwork 4.4.2-2
fix yahoo protocol in kopete (FS#18624)

Added:
  kdenetwork/trunk/fix-yahoo-protocol.patch
Modified:
  kdenetwork/trunk/PKGBUILD

--+
 PKGBUILD |   12 +
 fix-yahoo-protocol.patch |  330 +
 2 files changed, 338 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-10 14:51:38 UTC (rev 77060)
+++ PKGBUILD2010-04-10 15:55:15 UTC (rev 77061)
@@ -10,7 +10,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.4.2
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -19,11 +19,15 @@
  'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('079fe0c9b7d7c5b52e673b5f4bc4f301')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
+   'fix-yahoo-protocol.patch')
+md5sums=('079fe0c9b7d7c5b52e673b5f4bc4f301'
+   'aef9c40e3b93f36b1c611f0bb5429e50')
 
 build() {
-cd ${srcdir}
+cd ${srcdir}/${pkgbase}-${pkgver}
+   patch -Np1 -i ${srcdir}/fix-yahoo-protocol.patch || return 1
+   cd ${srcdir}
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \

Added: fix-yahoo-protocol.patch
===
--- fix-yahoo-protocol.patch(rev 0)
+++ fix-yahoo-protocol.patch2010-04-10 15:55:15 UTC (rev 77061)
@@ -0,0 +1,330 @@
+Index: kdenetwork/kopete/protocols/yahoo/yahoocontact.h
+===
+--- kdenetwork/kopete/protocols/yahoo/yahoocontact.h   (revision 1110827)
 kdenetwork/kopete/protocols/yahoo/yahoocontact.h   (revision 1110828)
+@@ -56,8 +56,8 @@
+ 
+   void setOnlineStatus(const Kopete::OnlineStatus status);
+   void setYahooStatus( const Kopete::OnlineStatus );
+-  void setStealthed( bool );
+-  bool stealthed();
++  void updateStealthed();
++  bool stealthed() const;
+ 
+ 
+   /** The group name getter and setter methods**/
+@@ -121,7 +121,6 @@
+   YahooChatSession *m_manager;
+   YahooWebcamDialog* m_webcamDialog;
+   YahooAccount* m_account;
+-  bool m_stealthed;
+   bool m_receivingWebcam;
+   bool m_sessionActive;
+   
+Index: kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp
+===
+--- kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp   (revision 
1110827)
 kdenetwork/kopete/protocols/yahoo/libkyahoo/listtask.cpp   (revision 
1110828)
+@@ -34,9 +34,6 @@
+ 
+ }
+ 
+-QStringList loginstealthedbuddies;
+-QStringList loginunstealthedbuddies;
+-
+ bool ListTask::take( Transfer* transfer )
+ {
+   if ( !forMe( transfer ) )
+@@ -85,47 +82,30 @@
+   case 301:
+   if( p.second == 319){
+   emit gotBuddy( buddy, QString(), group );
+-/**
+-* Note: michaelacole
+-* Since you can log in from other places and 
remove or add Perm Offline status
+-* We have to reset both conditions at login
+-* Yahoo sends this data at this time,
+-* so better to compile list of both now then 
notify kopete client.
+-*/
+-  loginunstealthedbuddies.append( buddy );
+   }
+   break;
+   case 317:
+   if( p.second == 2){
+-  kDebug(YAHOO_RAW_DEBUG)  Stealthed setting on  
buddy ;
+-/** Note: michaelacole
+-* Since you can log in from other places and remove 
or add Perm Offline status
+-* We have to reset both conditions at login
+-* Yahoo sends this data at this time,
+-* so better to compile list of both now then notify 
kopete client.
+-*/
+-  loginstealthedbuddies.append( buddy );
+-  loginunstealthedbuddies.removeAll( buddy );
++  kDebug(YAHOO_RAW_DEBUG)  Stealthed setting 
on  buddy ;
++  emit stealthStatusChanged( buddy, 
Yahoo::StealthActive );
+   };
+   break;
+-/**
+-* Note: michaelacole
+- 

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

2010-03-26 Thread Andrea Scarpino
Date: Friday, March 26, 2010 @ 15:19:37
  Author: andrea
Revision: 73495

updated to KDE 4.4.2

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-03-26 19:19:32 UTC (rev 73494)
+++ PKGBUILD2010-03-26 19:19:37 UTC (rev 73495)
@@ -9,8 +9,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.1
-pkgrel=2
+pkgver=4.4.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,7 +20,7 @@
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('e1a0da88d27feb7c921a26c0dc9782b7')
+md5sums=('079fe0c9b7d7c5b52e673b5f4bc4f301')
 
 build() {
 cd ${srcdir}



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

2010-03-20 Thread Andrea Scarpino
Date: Saturday, March 20, 2010 @ 07:01:17
  Author: andrea
Revision: 72829

upgpkg: kdenetwork 4.4.1-2
gmp rebuild

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-03-20 09:12:34 UTC (rev 72828)
+++ PKGBUILD2010-03-20 11:01:17 UTC (rev 72829)
@@ -10,7 +10,7 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.4.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')



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

2010-02-26 Thread Andrea Scarpino
Date: Friday, February 26, 2010 @ 15:50:37
  Author: andrea
Revision: 70458

updated for 4.4.1

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-26 20:50:34 UTC (rev 70457)
+++ PKGBUILD2010-02-26 20:50:37 UTC (rev 70458)
@@ -9,7 +9,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.4.0
+pkgver=4.4.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -20,7 +20,7 @@
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('a200053df151f17605ffee05f427e959')
+md5sums=('e1a0da88d27feb7c921a26c0dc9782b7')
 
 build() {
 cd ${srcdir}



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

2010-02-04 Thread Pierre Schmitz
Date: Thursday, February 4, 2010 @ 07:29:26
  Author: pierre
Revision: 67181

KDE 4.4.0; first try

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-04 12:29:23 UTC (rev 67180)
+++ PKGBUILD2010-02-04 12:29:26 UTC (rev 67181)
@@ -9,7 +9,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.3.98
+pkgver=4.4.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -19,8 +19,8 @@
  'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 
'libmsn'
  'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss' 
'libxdamage'
  'libgadu' 'telepathy-qt4')
-source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('1c0cd950fb2f0d33dd8393890ffdeded')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
+md5sums=('a200053df151f17605ffee05f427e959')
 
 build() {
 cd ${srcdir}



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

2009-12-12 Thread Andrea Scarpino
Date: Saturday, December 12, 2009 @ 09:41:32
  Author: andrea
Revision: 61141

needs a rebuild with the new libmsn

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2009-12-12 12:42:30 UTC (rev 61140)
+++ PKGBUILD2009-12-12 14:41:32 UTC (rev 61141)
@@ -10,14 +10,14 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.3.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 
'qca-ossl'
'kdelibs-experimental' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
-   'libmsn' 'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss'
+   'libmsn=4.0-1' 'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 
'libxss'
'libxdamage' 'libgadu')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'add-overwrite-option-in-kget.patch')



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

2009-12-12 Thread Andrea Scarpino
Date: Saturday, December 12, 2009 @ 10:22:55
  Author: andrea
Revision: 61142

undo (build fails)

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2009-12-12 14:41:32 UTC (rev 61141)
+++ PKGBUILD2009-12-12 15:22:55 UTC (rev 61142)
@@ -10,14 +10,14 @@
  'kdenetwork-krdc'
  'kdenetwork-krfb')
 pkgver=4.3.4
-pkgrel=2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 
'qca-ossl'
'kdelibs-experimental' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
-   'libmsn=4.0-1' 'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 
'libxss'
+   'libmsn' 'ppp' 'libv4l' 'libidn' 'rdesktop' 'qimageblitz' 'libxss'
'libxdamage' 'libgadu')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'add-overwrite-option-in-kget.patch')



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

2009-11-27 Thread Andrea Scarpino
Date: Friday, November 27, 2009 @ 20:40:50
  Author: andrea
Revision: 59834

updated trunk PKGBUILDs to 4.3.4

Modified:
  kdenetwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2009-11-28 01:40:46 UTC (rev 59833)
+++ PKGBUILD2009-11-28 01:40:50 UTC (rev 59834)
@@ -9,7 +9,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.3.3
+pkgver=4.3.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,8 +21,8 @@
'libxdamage' 'libgadu')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'add-overwrite-option-in-kget.patch')
-md5sums=('bb9a20da6e18a4952f7001b581aa9a1d'
-'c22e07a8b211c687d06dfcb61e109e7d')
+md5sums=('71de592596681fc59c5bc0a679703fd2'
+ 'c22e07a8b211c687d06dfcb61e109e7d')
 
 build() {
 cd ${srcdir}/${pkgbase}-${pkgver}