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

2017-10-02 Thread Antonio Rojas
Date: Monday, October 2, 2017 @ 10:19:36
  Author: arojas
Revision: 306538

mediastreamer 2.16.1 rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-02 09:05:59 UTC (rev 306537)
+++ PKGBUILD2017-10-02 10:19:36 UTC (rev 306538)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=17.08.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='https://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'kdepimlibs4' 'qca-qt4')
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu' 'jsoncpp' 
'openssl-1.0')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol' 
'openssl-1.0: jingle support')
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz"{,.sig}
 
+source=("https://download.kde.org/stable/applications/$pkgver/src/kopete-$pkgver.tar.xz"{,.sig}
 
 kopete-mediastreamer2.14.patch kopete-pthread-link.patch)
 sha256sums=('56a1ef3078238d4becf8ec6fe6f8f850144ab402168bd0a2608e57a100e2cbc6'
 'SKIP'


[arch-commits] Commit in kdenetwork-kopete/trunk (PKGBUILD kopete-openssl-1.1.patch)

2017-05-11 Thread Antonio Rojas
Date: Thursday, May 11, 2017 @ 16:02:03
  Author: arojas
Revision: 295816

Fix build with OpenSSL 1.1

Added:
  kdenetwork-kopete/trunk/kopete-openssl-1.1.patch
Modified:
  kdenetwork-kopete/trunk/PKGBUILD

--+
 PKGBUILD |   13 +
 kopete-openssl-1.1.patch |  300 +
 2 files changed, 307 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-11 12:32:40 UTC (rev 295815)
+++ PKGBUILD2017-05-11 16:02:03 UTC (rev 295816)
@@ -15,11 +15,12 @@
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu' 'jsoncpp')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
 
source=("https://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz"{,.sig}
 
-kopete-mediastreamer2.14.patch kopete-pthread-link.patch)
+kopete-mediastreamer2.14.patch kopete-pthread-link.patch 
kopete-openssl-1.1.patch)
 sha256sums=('d15fb89e7ec872492bd6014892cd5e7d534ff7826ed92715301ca12cc97369b3'
 'SKIP'
 'c34a268aaa058e563174581dbe37c15fed91e82326ec704d2a872463139865e0'
-'a7ebdd8dd4336b7ec085ef254bf18040f473b73379a8cd84569b28441a6c71df')
+'a7ebdd8dd4336b7ec085ef254bf18040f473b73379a8cd84569b28441a6c71df'
+'c3edbf1fe6d6a35a0260878937e9dd378358dbca0222015a0659670eab1de628')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

 
 prepare() {
@@ -30,6 +31,9 @@
   patch -p1 -i ../kopete-mediastreamer2.14.patch
 # Fix linking to pthread in libjingle-call
   patch -p1 -i ../kopete-pthread-link.patch
+# Fix build with OpenSSL 1.1 (based on Fedora patch for libjingle)
+  cd protocols/jabber/libjingle
+  patch -p1 -i "$srcdir"/kopete-openssl-1.1.patch
 }
 
 build() {
@@ -39,10 +43,7 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_SKIP_RPATH=ON \
--DWITH_Libmsn=OFF \
--DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
--DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
--DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+-DWITH_Libmsn=OFF 
   make
 }
 

Added: kopete-openssl-1.1.patch
===
--- kopete-openssl-1.1.patch(rev 0)
+++ kopete-openssl-1.1.patch2017-05-11 16:02:03 UTC (rev 295816)
@@ -0,0 +1,300 @@
+diff -up libjingle-0.6.14/talk/base/openssladapter.cc.openssl11 
libjingle-0.6.14/talk/base/openssladapter.cc
+--- libjingle-0.6.14/talk/base/openssladapter.cc.openssl11 2017-02-20 
15:00:27.678103635 -0500
 libjingle-0.6.14/talk/base/openssladapter.cc   2017-02-20 
15:57:36.884341533 -0500
+@@ -84,6 +84,7 @@ static long socket_ctrl(BIO* h, int cmd,
+ static int socket_new(BIO* h);
+ static int socket_free(BIO* data);
+ 
++#if OPENSSL_VERSION_NUMBER < 0x1010L
+ static BIO_METHOD methods_socket = {
+   BIO_TYPE_BIO,
+   "socket",
+@@ -98,16 +99,36 @@ static BIO_METHOD methods_socket = {
+ };
+ 
+ BIO_METHOD* BIO_s_socket2() { return(&methods_socket); }
++#else
++static BIO_METHOD *methods_socket = NULL;
++
++static const BIO_METHOD * BIO_s_socket2(void) {
++  if (methods_socket == NULL) {
++  methods_socket = BIO_meth_new (BIO_TYPE_BIO | BIO_get_new_index (), 
"socket");
++  if (methods_socket == NULL ||
++  BIO_meth_set_write (methods_socket, socket_write) ||
++  BIO_meth_set_read (methods_socket, socket_read) ||
++  BIO_meth_set_puts (methods_socket, socket_puts) ||
++  BIO_meth_set_gets (methods_socket, 0) ||
++  BIO_meth_set_ctrl (methods_socket, socket_ctrl) ||
++  BIO_meth_set_create (methods_socket, socket_new) ||
++  BIO_meth_set_destroy (methods_socket, socket_free))
++  return NULL;
++}
++  return methods_socket;
++}
++#endif
+ 
+ BIO* BIO_new_socket(talk_base::AsyncSocket* socket) {
+   BIO* ret = BIO_new(BIO_s_socket2());
+   if (ret == NULL) {
+   return NULL;
+   }
+-  ret->ptr = socket;
++  BIO_set_data(ret, socket);
+   return ret;
+ }
+ 
++#if OPENSSL_VERSION_NUMBER < 0x1010L
+ static int socket_new(BIO* b) {
+   b->shutdown = 0;
+   b->init = 1;
+@@ -115,6 +136,14 @@ static int socket_new(BIO* b) {
+   b->ptr = 0;
+   return 1;
+ }
++#else
++static int socket_new(BIO* b) {
++  BIO_set_shutdown(b, 0);
++  BIO_set_init(b, 1);
++  BIO_set_data(b, 0);
++  return 1;
++}
++#endif
+ 
+ static int socket_free(BIO* b) {
+   if (b == NULL)
+@@ -125,13 +154,11 @@ static int socket_free(BIO* b) {
+ static int socket_read(BIO* b, char* out, int outl) {
+   if (!out)
+ return -1;
+-  talk_base::AsyncSocket* socket = 
static_cast(b->ptr);
++  talk_base::AsyncSocket* socket = 
static_cast(BIO_get_data(b));
+   BIO_clear_retry_flags(b);
+   int result = socket->Recv(out, outl);
+   if (result > 0) {
+ return result;
+-  } else if (result == 0) {
+-b->num = 1;
+

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

2017-04-23 Thread Antonio Rojas
Date: Sunday, April 23, 2017 @ 10:07:11
  Author: arojas
Revision: 294256

openssl 1.1 rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-23 10:07:05 UTC (rev 294255)
+++ PKGBUILD2017-04-23 10:07:11 UTC (rev 294256)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=17.04.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Instant Messenger'
 url='https://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -39,10 +39,10 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_SKIP_RPATH=ON \
--DWITH_Libmsn=OFF
- #   -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
- #   -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
- #   -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+-DWITH_Libmsn=OFF \
+-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
   make
 }
 


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

2017-04-23 Thread Antonio Rojas
Date: Sunday, April 23, 2017 @ 09:21:30
  Author: arojas
Revision: 294007

Rebuild against [extra]

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-23 08:54:55 UTC (rev 294006)
+++ PKGBUILD2017-04-23 09:21:30 UTC (rev 294007)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=17.04.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='https://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -39,10 +39,10 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_SKIP_RPATH=ON \
--DWITH_Libmsn=OFF \
--DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
--DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
--DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+-DWITH_Libmsn=OFF
+ #   -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+ #   -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+ #   -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
   make
 }
 


[arch-commits] Commit in kdenetwork-kopete/trunk (PKGBUILD kopete-pthread-link.patch)

2017-04-05 Thread Antonio Rojas
Date: Wednesday, April 5, 2017 @ 09:18:00
  Author: arojas
Revision: 292096

openssl-1.0 1.0.2.k-3 rebuild

Added:
  kdenetwork-kopete/trunk/kopete-pthread-link.patch
Modified:
  kdenetwork-kopete/trunk/PKGBUILD

---+
 PKGBUILD  |   12 
 kopete-pthread-link.patch |   12 
 2 files changed, 20 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-05 09:03:06 UTC (rev 292095)
+++ PKGBUILD2017-04-05 09:18:00 UTC (rev 292096)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.12.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Instant Messenger'
 url='https://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -15,10 +15,11 @@
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu' 'jsoncpp')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
 
source=("https://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz"{,.sig}
 
-kopete-mediastreamer2.14.patch)
+kopete-mediastreamer2.14.patch kopete-pthread-link.patch)
 sha256sums=('61be9e45cb08e42a00bdc0e99f5d7ad7872299ac2e104124a3c0d939422376b6'
 'SKIP'
-'c34a268aaa058e563174581dbe37c15fed91e82326ec704d2a872463139865e0')
+'c34a268aaa058e563174581dbe37c15fed91e82326ec704d2a872463139865e0'
+'a7ebdd8dd4336b7ec085ef254bf18040f473b73379a8cd84569b28441a6c71df')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

 
 prepare() {
@@ -27,6 +28,8 @@
 # Fix build with mediastreamer 2.14
   cd kopete-$pkgver
   patch -p1 -i ../kopete-mediastreamer2.14.patch
+# Fix linking to pthread in libjingle-call
+  patch -p1 -i ../kopete-pthread-link.patch
 }
 
 build() {
@@ -37,10 +40,11 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_SKIP_RPATH=ON \
 -DWITH_Libmsn=OFF \
+-DCMAKE_LD_FLAGS="$LDFLAGS -lpthread" \
 -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
 -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
 -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
-  make
+  make VERBOSE=1
 }
 
 package() {

Added: kopete-pthread-link.patch
===
--- kopete-pthread-link.patch   (rev 0)
+++ kopete-pthread-link.patch   2017-04-05 09:18:00 UTC (rev 292096)
@@ -0,0 +1,12 @@
+diff --git a/protocols/jabber/libjingle/CMakeLists.txt 
b/protocols/jabber/libjingle/CMakeLists.txt
+index 7ea8c3eb6..4b73085b8 100644
+--- a/protocols/jabber/libjingle/CMakeLists.txt
 b/protocols/jabber/libjingle/CMakeLists.txt
+@@ -288,6 +288,7 @@ set ( call_LIBS
+   ${MEDIASTREAMER_LIBRARIES}
+   ${LIBORTP_LIBRARY}
+   ${CMAKE_DL_LIBS}
++pthread
+ )
+ 
+ if ( NOT WIN32 )


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

2017-03-13 Thread Antonio Rojas
Date: Monday, March 13, 2017 @ 17:50:50
  Author: arojas
Revision: 290798

openssl-1.0 rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 17:47:48 UTC (rev 290797)
+++ PKGBUILD2017-03-13 17:50:50 UTC (rev 290798)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='https://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -36,7 +36,10 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_SKIP_RPATH=ON \
--DWITH_Libmsn=OFF
+-DWITH_Libmsn=OFF \
+-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
   make
 }
 


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

2017-02-12 Thread Antonio Rojas
Date: Sunday, February 12, 2017 @ 14:20:09
  Author: arojas
Revision: 288746

Fix CVE-2017-5593

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-02-12 13:40:22 UTC (rev 288745)
+++ PKGBUILD2017-02-12 14:20:09 UTC (rev 288746)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -14,10 +14,12 @@
 depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'kdepimlibs4')
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu' 'jsoncpp')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz"{,.sig}
 kopete-mediastreamer2.14.patch)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz"{,.sig}
 kopete-mediastreamer2.14.patch
+
CVE-2017-5593.patch::"https://cgit.kde.org/kopete.git/patch/?id=6243764c";)
 sha1sums=('2db7a06b424edeb20571115b6d66f2f639562c56'
   'SKIP'
-  'b284ffb226cbcc0da6540ecd978d37287aa6eddb')
+  'b284ffb226cbcc0da6540ecd978d37287aa6eddb'
+  '1ce697b8fe41f86b56d31a16220319e8c1478c52')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

 
 prepare() {
@@ -26,6 +28,8 @@
 # Fix build with mediastreamer 2.14
   cd kopete-$pkgver
   patch -p1 -i ../kopete-mediastreamer2.14.patch
+# Fix CVE-2017-5593
+  patch -p1 -i ../CVE-2017-5593.patch
 }
 
 build() {


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

2016-11-22 Thread Levente Polyak
Date: Tuesday, November 22, 2016 @ 16:20:17
  Author: anthraxx
Revision: 281922

upgpkg: kdenetwork-kopete 16.08.3-3 (jasper rebuild)

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-22 15:49:02 UTC (rev 281921)
+++ PKGBUILD2016-11-22 16:20:17 UTC (rev 281922)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.08.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')


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

2016-11-10 Thread Antonio Rojas
Date: Thursday, November 10, 2016 @ 19:20:03
  Author: arojas
Revision: 280506

jasper 1.900.24 rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-10 19:00:07 UTC (rev 280505)
+++ PKGBUILD2016-11-10 19:20:03 UTC (rev 280506)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.08.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')


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

2016-10-06 Thread Levente Polyak
Date: Thursday, October 6, 2016 @ 13:16:28
  Author: anthraxx
Revision: 277800

upgpkg: kdenetwork-kopete 16.08.1-2 (jsoncpp 1.7.7 rebuild)

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-06 12:47:46 UTC (rev 277799)
+++ PKGBUILD2016-10-06 13:16:28 UTC (rev 277800)
@@ -5,7 +5,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.08.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')


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

2016-05-11 Thread Antonio Rojas
Date: Wednesday, May 11, 2016 @ 09:07:02
  Author: arojas
Revision: 267780

Fix build with GCC 6 (FS#49294)

Added:
  kdenetwork-kopete/trunk/kopete-gcc6.patch
Modified:
  kdenetwork-kopete/trunk/PKGBUILD

---+
 PKGBUILD  |9 +++--
 kopete-gcc6.patch |   12 
 2 files changed, 19 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-11 07:01:56 UTC (rev 267779)
+++ PKGBUILD2016-05-11 07:07:02 UTC (rev 267780)
@@ -13,11 +13,16 @@
 depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'jsoncpp')
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('bbf5c00dbbdc14be87b88757d472f0651040fe7e')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";
 kopete-gcc6.patch)
+sha1sums=('bbf5c00dbbdc14be87b88757d472f0651040fe7e'
+  '98bf4a261f5a8097bf9ea6ab4b5ded3d895e2695')
 
 prepare() {
   mkdir -p build
+
+# Fix build with GCC 6 (Fedora)
+  cd kopete-$pkgver
+  patch -p1 -i ../kopete-gcc6.patch
 }
 
 build() {

Added: kopete-gcc6.patch
===
--- kopete-gcc6.patch   (rev 0)
+++ kopete-gcc6.patch   2016-05-11 07:07:02 UTC (rev 267780)
@@ -0,0 +1,12 @@
+diff -up kopete-15.12.2/plugins/history2/history2logger.h.than 
kopete-15.12.2/plugins/history2/history2logger.h
+--- kopete-15.12.2/plugins/history2/history2logger.h.than  2016-02-16 
23:43:48.245204675 +0100
 kopete-15.12.2/plugins/history2/history2logger.h   2016-02-16 
23:46:49.042349833 +0100
+@@ -94,7 +94,7 @@ public:
+* from Kopete::Contact @param c in the given @param sens
+*/
+   QList readMessages(int lines,
+-  int offset=0, const 
Kopete::MetaContact *c=false, bool reverseOrder=true);
++  int offset=0, const 
Kopete::MetaContact *c=0, bool reverseOrder=true);
+ 
+   /**
+* Same as the following, but for one date. I did'nt reuse the above 
function


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

2016-04-28 Thread Felix Yan
Date: Thursday, April 28, 2016 @ 09:59:01
  Author: fyan
Revision: 266422

upgpkg: kdenetwork-kopete 16.04.0-2

Hooks rebuild (part 1)

Modified:
  kdenetwork-kopete/trunk/PKGBUILD
Deleted:
  kdenetwork-kopete/trunk/kdenetwork-kopete.install

---+
 PKGBUILD  |3 +--
 kdenetwork-kopete.install |   12 
 2 files changed, 1 insertion(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-28 07:50:08 UTC (rev 266421)
+++ PKGBUILD2016-04-28 07:59:01 UTC (rev 266422)
@@ -4,7 +4,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=16.04.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -13,7 +13,6 @@
 depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'jsoncpp')
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
-install=${pkgname}.install
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
 sha1sums=('929f6b9a4891097c5f08d0cc3d51ba87bd5253a4')
 

Deleted: kdenetwork-kopete.install
===
--- kdenetwork-kopete.install   2016-04-28 07:50:08 UTC (rev 266421)
+++ kdenetwork-kopete.install   2016-04-28 07:59:01 UTC (rev 266422)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}


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

2016-03-05 Thread Bartłomiej Piotrowski
Date: Saturday, March 5, 2016 @ 09:33:24
  Author: bpiotrowski
Revision: 260849

OpenSSL 1.0.2g rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-05 08:30:39 UTC (rev 260848)
+++ PKGBUILD2016-03-05 08:33:24 UTC (rev 260849)
@@ -4,7 +4,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=15.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')


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

2015-12-07 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 16:54:24
  Author: foutrelis
Revision: 253499

C++11 ABI rebuild

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-07 15:53:15 UTC (rev 253498)
+++ PKGBUILD2015-12-07 15:54:24 UTC (rev 253499)
@@ -4,7 +4,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=15.08.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')


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

2015-10-09 Thread Antonio Rojas
Date: Friday, October 9, 2015 @ 11:21:01
  Author: arojas
Revision: 248681

Update qca dependencies

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-09 09:19:42 UTC (rev 248680)
+++ PKGBUILD2015-10-09 09:21:01 UTC (rev 248681)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde-applications' 'kdenetwork')
-depends=('kdebase-runtime' 'kdepimlibs4' 'qca-ossl' 'libotr' 'qimageblitz' 
'jsoncpp')
+depends=('kdebase-runtime' 'kdepimlibs4' 'libotr' 'qimageblitz' 'jsoncpp')
 makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu')
 optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
 install=${pkgname}.install


[arch-commits] Commit in kdenetwork-kopete/trunk (PKGBUILD mediastreamer-2.11.patch)

2015-03-15 Thread Antonio Rojas
Date: Sunday, March 15, 2015 @ 15:51:39
  Author: arojas
Revision: 233875

mediastreamer 2.11 rebuild

Added:
  kdenetwork-kopete/trunk/mediastreamer-2.11.patch
Modified:
  kdenetwork-kopete/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++--
 mediastreamer-2.11.patch |  166 +
 2 files changed, 177 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-15 14:48:14 UTC (rev 233874)
+++ PKGBUILD2015-03-15 14:51:39 UTC (rev 233875)
@@ -4,7 +4,7 @@
 
 pkgname=kdenetwork-kopete
 pkgver=14.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -11,14 +11,20 @@
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
 depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libidn'
- 'qimageblitz' 'libgadu' 'mediastreamer' 'jsoncpp')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
+ 'qimageblitz' 'libgadu' 'jsoncpp')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim' 'mediastreamer')
+optdepends=('mediastreamer: jingle support')
 install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('7582f0ee8198fa62a5f02c6e532b993258df6fd8')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";
 'mediastreamer-2.11.patch')
+sha1sums=('7582f0ee8198fa62a5f02c6e532b993258df6fd8'
+  '7999bb62c2c228ef1ee9056e4f1b910b8cb02fcf')
 
 prepare() {
   mkdir build
+
+# fix compilation with mediastreamer 2.11
+  cd kopete-$pkgver
+  patch -p1 -i "$srcdir"/mediastreamer-2.11.patch
 }
 
 build() {

Added: mediastreamer-2.11.patch
===
--- mediastreamer-2.11.patch(rev 0)
+++ mediastreamer-2.11.patch2015-03-15 14:51:39 UTC (rev 233875)
@@ -0,0 +1,166 @@
+From 7624830d2ec11d2f3645a27384ae9ced7ac7a258 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Pali=20Roh=C3=A1r?= 
+Date: Sun, 15 Mar 2015 14:00:40 +0100
+Subject: [PATCH] Fix libjingle compilation with mediastreamer >= 2.11
+
+BUG: 345162
+FIXED-IN: 15.04
+---
+ cmake/modules/FindMediastreamer.cmake  |   11 +++--
+ protocols/jabber/libjingle/CMakeLists.txt  |   10 +++--
+ .../libjingle/patches/08_mediastreamer_2_11.patch  |   47 
+ .../talk/session/phone/linphonemediaengine.cc  |   22 -
+ 4 files changed, 74 insertions(+), 16 deletions(-)
+ create mode 100644 
protocols/jabber/libjingle/patches/08_mediastreamer_2_11.patch
+
+diff --git a/cmake/modules/FindMediastreamer.cmake 
b/cmake/modules/FindMediastreamer.cmake
+index 929b1ee..47fe5c3 100644
+--- a/cmake/modules/FindMediastreamer.cmake
 b/cmake/modules/FindMediastreamer.cmake
+@@ -22,9 +22,14 @@ IF (MEDIASTREAMER_FOUND)
+   IF (NOT MEDIASTREAMER_FIND_QUIETLY)
+   MESSAGE(STATUS "Found Mediastreamer: ${MEDIASTREAMER_LIBRARIES} 
(version: ${MEDIASTREAMER_VERSION})")
+   IF (MEDIASTREAMER_VERSION VERSION_LESS 2.9)
+-  SET(MEDIASTREAMER_OLD TRUE)
++  SET(MEDIASTREAMER_LESS_2_9 TRUE)
++  SET(MEDIASTREAMER_LESS_2_11 TRUE)
++  ELSEIF (MEDIASTREAMER_VERSION VERSION_LESS 2.11)
++  SET(MEDIASTREAMER_LESS_2_9 FALSE)
++  SET(MEDIASTREAMER_LESS_2_11 TRUE)
+   ELSE (MEDIASTREAMER_VERSION VERSION_LESS 2.9)
+-  SET(MEDIASTREAMER_OLD FALSE)
++  SET(MEDIASTREAMER_LESS_2_9 FALSE)
++  SET(MEDIASTREAMER_LESS_2_11 FALSE)
+   ENDIF (MEDIASTREAMER_VERSION VERSION_LESS 2.9)
+   ENDIF (NOT MEDIASTREAMER_FIND_QUIETLY)
+ ELSE (MEDIASTREAMER_FOUND)
+@@ -33,4 +38,4 @@ ELSE (MEDIASTREAMER_FOUND)
+   ENDIF (MEDIASTREAMER_FIND_REQUIRED)
+ ENDIF (MEDIASTREAMER_FOUND)
+ 
+-MARK_AS_ADVANCED(MEDIASTREAMER_INCLUDE_DIR MEDIASTREAMER_LIBRARIES 
MEDIASTREAMER_OLD)
++MARK_AS_ADVANCED(MEDIASTREAMER_INCLUDE_DIR MEDIASTREAMER_LIBRARIES 
MEDIASTREAMER_LESS_2_9 MEDIASTREAMER_LESS_2_11)
+diff --git a/protocols/jabber/libjingle/CMakeLists.txt 
b/protocols/jabber/libjingle/CMakeLists.txt
+index 6db3da3..4b4b620 100644
+--- a/protocols/jabber/libjingle/CMakeLists.txt
 b/protocols/jabber/libjingle/CMakeLists.txt
+@@ -28,9 +28,13 @@ if ( NOT WIN32 )
+   endif ( NOT APPLE )
+ endif ( NOT WIN32 )
+ 
+-if ( MEDIASTREAMER_OLD )
+-  add_definitions ( -DMEDIASTREAMER_OLD )
+-endif ( MEDIASTREAMER_OLD )
++if ( MEDIASTREAMER_LESS_2_9 )
++  add_definitions ( -DMEDIASTREAMER_LESS_2_9 )
++endif ( MEDIASTREAMER_LESS_2_9 )
++
++if ( MEDIASTREAMER_LESS_2_11 )
++  add_definitions ( -DMEDIASTREAMER_LESS_2_11 )
++endif ( MEDIASTREAMER_LESS_2_11 )
+ 
+ if ( CMAKE_BUILD_TYPE STREQUAL "Debug" )
+   add_definitions ( -D_DEBUG )
+diff --git a/protocols/jabber/libjingle/patches/08_mediastreamer_2_11.patch 
b/protocols/jabber/libjingle/patches/08_mediastreame

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

2015-03-04 Thread Felix Yan
Date: Wednesday, March 4, 2015 @ 16:56:00
  Author: fyan
Revision: 232776

upgpkg: kdenetwork-kopete 14.12.3-1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-04 15:55:53 UTC (rev 232775)
+++ PKGBUILD2015-03-04 15:56:00 UTC (rev 232776)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=14.12.2
+pkgver=14.12.3
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('c8cfff62cfda2575f0dfeb1bc7248ebcece7092a')
+sha1sums=('7582f0ee8198fa62a5f02c6e532b993258df6fd8')
 
 prepare() {
   mkdir build


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

2015-02-04 Thread Felix Yan
Date: Wednesday, February 4, 2015 @ 09:08:42
  Author: fyan
Revision: 230657

upgpkg: kdenetwork-kopete 14.12.2-1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-04 08:06:03 UTC (rev 230656)
+++ PKGBUILD2015-02-04 08:08:42 UTC (rev 230657)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=14.12.1
+pkgver=14.12.2
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('bf5c8b45c6706ed26e5257817e838fd538033aa2')
+sha1sums=('c8cfff62cfda2575f0dfeb1bc7248ebcece7092a')
 
 prepare() {
   mkdir build


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

2015-01-15 Thread Felix Yan
Date: Friday, January 16, 2015 @ 07:38:06
  Author: fyan
Revision: 229290

upgpkg: kdenetwork-kopete 14.12.1-1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-16 06:32:58 UTC (rev 229289)
+++ PKGBUILD2015-01-16 06:38:06 UTC (rev 229290)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Andrea Scarpino 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.14.3
+pkgver=14.12.1
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -13,8 +14,8 @@
  'qimageblitz' 'libgadu' 'mediastreamer' 'jsoncpp')
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
-source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('298937c6fe06b409881592a4b50dceff9dcf9c87')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz";)
+sha1sums=('bf5c8b45c6706ed26e5257817e838fd538033aa2')
 
 prepare() {
   mkdir build


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

2014-11-19 Thread Felix Yan
Date: Wednesday, November 19, 2014 @ 19:50:27
  Author: fyan
Revision: 226656

upgpkg: kdenetwork-kopete 4.14.3-1

upstream new release

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-19 18:50:10 UTC (rev 226655)
+++ PKGBUILD2014-11-19 18:50:27 UTC (rev 226656)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.14.2
+pkgver=4.14.3
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('f9d800ccc10cfc811198441a6dd6221786695a48')
+sha1sums=('298937c6fe06b409881592a4b50dceff9dcf9c87')
 
 prepare() {
   mkdir build


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

2014-09-20 Thread Sven-Hendrik Haase
Date: Saturday, September 20, 2014 @ 18:25:18
  Author: svenstaro
Revision: 222424

upgpkg: kdenetwork-kopete 4.14.1-1

kde 4.14.1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-20 16:25:15 UTC (rev 222423)
+++ PKGBUILD2014-09-20 16:25:18 UTC (rev 222424)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.14.0
+pkgver=4.14.1
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('bd247af3b25650bedcdb983fc285469dcacea964')
+sha1sums=('f2bce1fd8a23bd0f27e670b057e6a99c606cef4c')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:17:27
  Author: svenstaro
Revision: 220038

upgpkg: kdenetwork-kopete 4.14.0-1

kde 4.14.0

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:17:25 UTC (rev 220037)
+++ PKGBUILD2014-08-16 20:17:27 UTC (rev 220038)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('a713f7394e0c61d776545998f88556b601616e17')
+sha1sums=('bd247af3b25650bedcdb983fc285469dcacea964')
 
 prepare() {
   mkdir build



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

2014-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 18, 2014 @ 13:45:55
  Author: svenstaro
Revision: 217314

upgpkg: kdenetwork-kopete 4.13.3-1

upstream release 4.13.3

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-18 11:45:53 UTC (rev 217313)
+++ PKGBUILD2014-07-18 11:45:55 UTC (rev 217314)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.13.2
+pkgver=4.13.3
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('bf520ce1fd08eb0464753675405b0f362fef2606')
+sha1sums=('a713f7394e0c61d776545998f88556b601616e17')
 
 prepare() {
   mkdir build



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

2014-06-08 Thread Sven-Hendrik Haase
Date: Monday, June 9, 2014 @ 05:17:39
  Author: svenstaro
Revision: 214656

upgpkg: kdenetwork-kopete 4.13.2-1

upstream release 4.12.2

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-09 03:17:37 UTC (rev 214655)
+++ PKGBUILD2014-06-09 03:17:39 UTC (rev 214656)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.13.1
-pkgrel=3
+pkgver=4.13.2
+pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('99e47bba25606fdccbe1ac04346e9c3acad254d1')
+sha1sums=('bf520ce1fd08eb0464753675405b0f362fef2606')
 
 prepare() {
   mkdir build



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

2014-06-03 Thread Andrea Scarpino
Date: Tuesday, June 3, 2014 @ 11:46:26
  Author: andrea
Revision: 214073

upgpkg: kdenetwork-kopete 4.13.1-3

MSN doesn't exist anymore

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-03 08:48:30 UTC (rev 214072)
+++ PKGBUILD2014-06-03 09:46:26 UTC (rev 214073)
@@ -3,15 +3,15 @@
 
 pkgname=kdenetwork-kopete
 pkgver=4.13.1
-pkgrel=1
+pkgrel=3
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdenetwork')
-depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libmsn' 'libidn'
+depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libidn'
  'qimageblitz' 'libgadu' 'mediastreamer' 'jsoncpp')
-makedepends=('cmake' 'automoc4' 'boost')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-libkdepim')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
 sha1sums=('99e47bba25606fdccbe1ac04346e9c3acad254d1')
@@ -26,7 +26,8 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON
+-DCMAKE_SKIP_RPATH=ON \
+-DWITH_Libmsn=OFF
   make
 }
 



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

2014-05-14 Thread Sven-Hendrik Haase
Date: Wednesday, May 14, 2014 @ 22:07:22
  Author: svenstaro
Revision: 212682

upgpkg: kdenetwork-kopete 4.13.1-1

upstream release 4.13.1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-14 20:07:20 UTC (rev 212681)
+++ PKGBUILD2014-05-14 20:07:22 UTC (rev 212682)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.13.0
+pkgver=4.13.1
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('34b08ce41a7780d48459eb47877ed895b11c5262')
+sha1sums=('99e47bba25606fdccbe1ac04346e9c3acad254d1')
 
 prepare() {
   mkdir build



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

2014-03-31 Thread Sven-Hendrik Haase
Date: Monday, March 31, 2014 @ 12:22:01
  Author: svenstaro
Revision: 209567

upgpkg: kdenetwork-kopete 4.12.4-1

kde 4.12.4 release

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-31 10:21:59 UTC (rev 209566)
+++ PKGBUILD2014-03-31 10:22:01 UTC (rev 209567)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.12.3
+pkgver=4.12.4
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('bf707283338c8387619a9f4387af9b72e6275e95')
+sha1sums=('6cf22f4b219807e713e1ae20073d6113eca14ba0')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 15:04:24
  Author: svenstaro
Revision: 205344

upgpkg: kdenetwork-kopete 4.12.2-1

upstream release 4.12.2

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 14:04:12 UTC (rev 205343)
+++ PKGBUILD2014-02-04 14:04:24 UTC (rev 205344)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('e6ad13cb81842961df0e6e9ecda309b47db0af29')
+sha1sums=('6b5ebab916f4527157cf7f979724538f38052bad')
 
 prepare() {
   mkdir build



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

2014-01-13 Thread Sven-Hendrik Haase
Date: Tuesday, January 14, 2014 @ 08:49:31
  Author: svenstaro
Revision: 203932

upgpkg: kdenetwork-kopete 4.12.1-1

upstream release 4.12.1

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-14 07:49:28 UTC (rev 203931)
+++ PKGBUILD2014-01-14 07:49:31 UTC (rev 203932)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.12.0
+pkgver=4.12.1
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";)
-sha1sums=('c1ef611b27079388e48e558a65e2de80db93d875')
+sha1sums=('e6ad13cb81842961df0e6e9ecda309b47db0af29')
 
 prepare() {
   mkdir build



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

2013-12-06 Thread Sven-Hendrik Haase
Date: Friday, December 6, 2013 @ 13:34:37
  Author: svenstaro
Revision: 201125

upgpkg: kdenetwork-kopete 4.11.4-1

KDE 4.11.4

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-06 12:34:35 UTC (rev 201124)
+++ PKGBUILD2013-12-06 12:34:37 UTC (rev 201125)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.11.3
+pkgver=4.11.4
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -16,7 +16,7 @@
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";
 'libotr3.patch'
 'mediastreamer29.patch')
-sha1sums=('70fd03fb955574f4eba733d590ce15c841fd8805'
+sha1sums=('d8bc0c386d9f846e2d5f05d7dfa421fdcb2ac537'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384'
   '317683a5c2acd0a0058c5ab42f6006e9db511ef3')
 



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

2013-10-01 Thread Sven-Hendrik Haase
Date: Tuesday, October 1, 2013 @ 17:33:32
  Author: svenstaro
Revision: 195745

upgpkg: kdenetwork-kopete 4.11.2-1

kde 4.11.2 release

Modified:
  kdenetwork-kopete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-01 15:33:30 UTC (rev 195744)
+++ PKGBUILD2013-10-01 15:33:32 UTC (rev 195745)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kopete
-pkgver=4.11.1
+pkgver=4.11.2
 pkgrel=1
 pkgdesc='Instant Messenger'
 url='http://kde.org/applications/internet/kopete/'
@@ -16,7 +16,7 @@
 source=("http://download.kde.org/stable/${pkgver}/src/kopete-${pkgver}.tar.xz";
 'libotr3.patch'
 'mediastreamer29.patch')
-sha1sums=('1dd677e6fd4335e6d0bb906f4c981395ca204e12'
+sha1sums=('d7616376d7488050ce2c6ec6b7a1f4010fe91084'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384'
   '317683a5c2acd0a0058c5ab42f6006e9db511ef3')