[arch-commits] Commit in (net6)

2018-01-06 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, January 6, 2018 @ 21:03:24
  Author: bpiotrowski
Revision: 279750

net6: move to AUR

Deleted:
  net6/


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

2016-11-14 Thread Sergej Pupykin
Date: Monday, November 14, 2016 @ 16:59:59
  Author: spupykin
Revision: 195788

Modified:
  net6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-14 16:59:13 UTC (rev 195787)
+++ PKGBUILD2016-11-14 16:59:59 UTC (rev 195788)
@@ -12,10 +12,12 @@
 url="http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+validpgpkeys=('17107DB19A2842FFB6997654ED1A3933B2CFCDD8')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}
gnutls.patch)
-md5sums=('be6db739f71c5c08421bf6181e77f3b2'
- '4fb70f33b352522b46a25988668535d0')
+sha256sums=('155dd82cbe1f8354205c79ab2bb54af4957047422250482596a34b0e0cc61e21'
+'SKIP'
+'800330f06223d29557a92c9d1d4c7184e3881e595e6db506c4b28b162473cd68')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver


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

2015-12-05 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 04:36:27
  Author: allan
Revision: 148800

C++11 ABI rebuild

Modified:
  net6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 03:34:26 UTC (rev 148799)
+++ PKGBUILD2015-12-06 03:36:27 UTC (rev 148800)
@@ -6,7 +6,7 @@
 
 pkgname=net6
 pkgver=1.3.14
-pkgrel=4
+pkgrel=5
 pkgdesc="A library that provides a TCP protocol abstraction for C++"
 arch=('i686' 'x86_64')
 url="http://gobby.0x539.de/;


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

2015-12-05 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 04:37:27
  Author: allan
Revision: 148802

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

Added:
  net6/repos/community-staging-i686/
  net6/repos/community-staging-i686/PKGBUILD
(from rev 148801, net6/trunk/PKGBUILD)
  net6/repos/community-staging-i686/gnutls.patch
(from rev 148801, net6/trunk/gnutls.patch)
  net6/repos/community-staging-x86_64/
  net6/repos/community-staging-x86_64/PKGBUILD
(from rev 148801, net6/trunk/PKGBUILD)
  net6/repos/community-staging-x86_64/gnutls.patch
(from rev 148801, net6/trunk/gnutls.patch)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-i686/gnutls.patch   |   15 
 community-staging-x86_64/PKGBUILD |   38 
 community-staging-x86_64/gnutls.patch |   15 
 4 files changed, 106 insertions(+)

Copied: net6/repos/community-staging-i686/PKGBUILD (from rev 148801, 
net6/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 03:37:27 UTC (rev 148802)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: William Rea 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=5
+pkgdesc="A library that provides a TCP protocol abstraction for C++"
+arch=('i686' 'x86_64')
+url="http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '4fb70f33b352522b46a25988668535d0')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 <$srcdir/gnutls.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  # libsigc++ 2.6.0 (and later) uses C++11 features
+  CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: net6/repos/community-staging-i686/gnutls.patch (from rev 148801, 
net6/trunk/gnutls.patch)
===
--- community-staging-i686/gnutls.patch (rev 0)
+++ community-staging-i686/gnutls.patch 2015-12-06 03:37:27 UTC (rev 148802)
@@ -0,0 +1,15 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
+--- net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
 net6-1.3.14/src/encrypt.cpp2015-04-16 15:57:01.623936848 +0300
+@@ -175,10 +175,9 @@
+   gnutls_session_t sess):
+   tcp_client_socket(cobj), session(sess), state(DEFAULT)
+ {
+-  const int kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
+ 
+   gnutls_set_default_priority(session);
+-  gnutls_kx_set_priority(session, kx_prio);
++  gnutls_set_default_priority(session);
+ 
+   gnutls_transport_set_ptr(
+   session,

Copied: net6/repos/community-staging-x86_64/PKGBUILD (from rev 148801, 
net6/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 03:37:27 UTC (rev 148802)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: William Rea 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=5
+pkgdesc="A library that provides a TCP protocol abstraction for C++"
+arch=('i686' 'x86_64')
+url="http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '4fb70f33b352522b46a25988668535d0')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 <$srcdir/gnutls.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  # libsigc++ 2.6.0 (and later) uses C++11 features
+  CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: net6/repos/community-staging-x86_64/gnutls.patch (from rev 148801, 
net6/trunk/gnutls.patch)
===
--- community-staging-x86_64/gnutls.patch   (rev 0)
+++ community-staging-x86_64/gnutls.patch   2015-12-06 03:37:27 UTC (rev 
148802)
@@ -0,0 +1,15 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp

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

2015-12-05 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 04:34:26
  Author: foutrelis
Revision: 148799

Build in C++11 mode (necessitated by libsigc++ 2.6.x)

Modified:
  net6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 03:31:36 UTC (rev 148798)
+++ PKGBUILD2015-12-06 03:34:26 UTC (rev 148799)
@@ -24,6 +24,10 @@
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver
+
+  # libsigc++ 2.6.0 (and later) uses C++11 features
+  CXXFLAGS+=' -std=c++11'
+
   ./configure --prefix=/usr
   make
 }


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

2015-04-16 Thread Sergej Pupykin
Date: Thursday, April 16, 2015 @ 15:01:48
  Author: spupykin
Revision: 131472

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

Added:
  net6/repos/community-staging-i686/
  net6/repos/community-staging-i686/PKGBUILD
(from rev 131471, net6/trunk/PKGBUILD)
  net6/repos/community-staging-i686/gnutls.patch
(from rev 131471, net6/trunk/gnutls.patch)
  net6/repos/community-staging-x86_64/
  net6/repos/community-staging-x86_64/PKGBUILD
(from rev 131471, net6/trunk/PKGBUILD)
  net6/repos/community-staging-x86_64/gnutls.patch
(from rev 131471, net6/trunk/gnutls.patch)

---+
 community-staging-i686/PKGBUILD   |   34 
 community-staging-i686/gnutls.patch   |   16 +++
 community-staging-x86_64/PKGBUILD |   34 
 community-staging-x86_64/gnutls.patch |   16 +++
 4 files changed, 100 insertions(+)

Copied: net6/repos/community-staging-i686/PKGBUILD (from rev 131471, 
net6/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-16 13:01:48 UTC (rev 131472)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=3
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '1078edb16b53a844b47ecb482a33c604')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 $srcdir/gnutls.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: net6/repos/community-staging-i686/gnutls.patch (from rev 131471, 
net6/trunk/gnutls.patch)
===
--- community-staging-i686/gnutls.patch (rev 0)
+++ community-staging-i686/gnutls.patch 2015-04-16 13:01:48 UTC (rev 131472)
@@ -0,0 +1,16 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
+--- net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
 net6-1.3.14/src/encrypt.cpp2015-04-16 15:57:01.623936848 +0300
+@@ -175,10 +175,10 @@
+   gnutls_session_t sess):
+   tcp_client_socket(cobj), session(sess), state(DEFAULT)
+ {
+-  const int kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
++  const char kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
+ 
+   gnutls_set_default_priority(session);
+-  gnutls_kx_set_priority(session, kx_prio);
++  gnutls_priority_set_direct(session, kx_prio, NULL);
+ 
+   gnutls_transport_set_ptr(
+   session,

Copied: net6/repos/community-staging-x86_64/PKGBUILD (from rev 131471, 
net6/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-16 13:01:48 UTC (rev 131472)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=3
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '1078edb16b53a844b47ecb482a33c604')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 $srcdir/gnutls.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: net6/repos/community-staging-x86_64/gnutls.patch (from rev 131471, 
net6/trunk/gnutls.patch)
===
--- community-staging-x86_64/gnutls.patch   (rev 0)
+++ community-staging-x86_64/gnutls.patch   2015-04-16 13:01:48 UTC (rev 
131472)
@@ -0,0 +1,16 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
+--- net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
 net6-1.3.14/src/encrypt.cpp   

[arch-commits] Commit in net6/trunk (PKGBUILD gnutls.patch)

2015-04-16 Thread Sergej Pupykin
Date: Thursday, April 16, 2015 @ 15:01:38
  Author: spupykin
Revision: 131471

upgpkg: net6 1.3.14-3

upd

Added:
  net6/trunk/gnutls.patch
Modified:
  net6/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 gnutls.patch |   16 
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-16 12:51:34 UTC (rev 131470)
+++ PKGBUILD2015-04-16 13:01:38 UTC (rev 131471)
@@ -6,15 +6,22 @@
 
 pkgname=net6
 pkgver=1.3.14
-pkgrel=2
+pkgrel=3
 pkgdesc=A library that provides a TCP protocol abstraction for C++
 arch=('i686' 'x86_64')
 url=http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('be6db739f71c5c08421bf6181e77f3b2')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '1078edb16b53a844b47ecb482a33c604')
 
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 $srcdir/gnutls.patch
+}
+
 build() {
   cd ${srcdir}/$pkgname-$pkgver
   ./configure --prefix=/usr

Added: gnutls.patch
===
--- gnutls.patch(rev 0)
+++ gnutls.patch2015-04-16 13:01:38 UTC (rev 131471)
@@ -0,0 +1,16 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
+--- net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
 net6-1.3.14/src/encrypt.cpp2015-04-16 15:57:01.623936848 +0300
+@@ -175,10 +175,10 @@
+   gnutls_session_t sess):
+   tcp_client_socket(cobj), session(sess), state(DEFAULT)
+ {
+-  const int kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
++  const char kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
+ 
+   gnutls_set_default_priority(session);
+-  gnutls_kx_set_priority(session, kx_prio);
++  gnutls_priority_set_direct(session, kx_prio, NULL);
+ 
+   gnutls_transport_set_ptr(
+   session,


[arch-commits] Commit in net6/trunk (PKGBUILD gnutls.patch)

2015-04-16 Thread Sergej Pupykin
Date: Thursday, April 16, 2015 @ 15:58:18
  Author: spupykin
Revision: 131479

upgpkg: net6 1.3.14-4

upd

Modified:
  net6/trunk/PKGBUILD
  net6/trunk/gnutls.patch

--+
 PKGBUILD |4 ++--
 gnutls.patch |5 ++---
 2 files changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-16 13:54:46 UTC (rev 131478)
+++ PKGBUILD2015-04-16 13:58:18 UTC (rev 131479)
@@ -6,7 +6,7 @@
 
 pkgname=net6
 pkgver=1.3.14
-pkgrel=3
+pkgrel=4
 pkgdesc=A library that provides a TCP protocol abstraction for C++
 arch=('i686' 'x86_64')
 url=http://gobby.0x539.de/;
@@ -15,7 +15,7 @@
 source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
gnutls.patch)
 md5sums=('be6db739f71c5c08421bf6181e77f3b2'
- '1078edb16b53a844b47ecb482a33c604')
+ '4fb70f33b352522b46a25988668535d0')
 
 prepare() {
   cd ${srcdir}/$pkgname-$pkgver

Modified: gnutls.patch
===
--- gnutls.patch2015-04-16 13:54:46 UTC (rev 131478)
+++ gnutls.patch2015-04-16 13:58:18 UTC (rev 131479)
@@ -1,16 +1,15 @@
 diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
 --- net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
 +++ net6-1.3.14/src/encrypt.cpp2015-04-16 15:57:01.623936848 +0300
-@@ -175,10 +175,10 @@
+@@ -175,10 +175,9 @@
gnutls_session_t sess):
tcp_client_socket(cobj), session(sess), state(DEFAULT)
  {
 -  const int kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
-+  const char kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
  
gnutls_set_default_priority(session);
 -  gnutls_kx_set_priority(session, kx_prio);
-+  gnutls_priority_set_direct(session, kx_prio, NULL);
++  gnutls_set_default_priority(session);
  
gnutls_transport_set_ptr(
session,


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

2015-04-16 Thread Sergej Pupykin
Date: Thursday, April 16, 2015 @ 15:58:32
  Author: spupykin
Revision: 131480

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

Added:
  net6/repos/community-staging-i686/PKGBUILD
(from rev 131479, net6/trunk/PKGBUILD)
  net6/repos/community-staging-i686/gnutls.patch
(from rev 131479, net6/trunk/gnutls.patch)
  net6/repos/community-staging-x86_64/PKGBUILD
(from rev 131479, net6/trunk/PKGBUILD)
  net6/repos/community-staging-x86_64/gnutls.patch
(from rev 131479, net6/trunk/gnutls.patch)
Deleted:
  net6/repos/community-staging-i686/PKGBUILD
  net6/repos/community-staging-i686/gnutls.patch
  net6/repos/community-staging-x86_64/PKGBUILD
  net6/repos/community-staging-x86_64/gnutls.patch

---+
 /PKGBUILD |   68 
 /gnutls.patch |   30 ++
 community-staging-i686/PKGBUILD   |   34 
 community-staging-i686/gnutls.patch   |   16 ---
 community-staging-x86_64/PKGBUILD |   34 
 community-staging-x86_64/gnutls.patch |   16 ---
 6 files changed, 98 insertions(+), 100 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-04-16 13:58:18 UTC (rev 131479)
+++ community-staging-i686/PKGBUILD 2015-04-16 13:58:32 UTC (rev 131480)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=net6
-pkgver=1.3.14
-pkgrel=3
-pkgdesc=A library that provides a TCP protocol abstraction for C++
-arch=('i686' 'x86_64')
-url=http://gobby.0x539.de/;
-license=('LGPL')
-depends=('gnutls' 'libsigc++2.0')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
-   gnutls.patch)
-md5sums=('be6db739f71c5c08421bf6181e77f3b2'
- '1078edb16b53a844b47ecb482a33c604')
-
-prepare() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -p1 $srcdir/gnutls.patch
-}
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: net6/repos/community-staging-i686/PKGBUILD (from rev 131479, 
net6/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-16 13:58:32 UTC (rev 131480)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=4
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
+   gnutls.patch)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2'
+ '4fb70f33b352522b46a25988668535d0')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 $srcdir/gnutls.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-staging-i686/gnutls.patch
===
--- community-staging-i686/gnutls.patch 2015-04-16 13:58:18 UTC (rev 131479)
+++ community-staging-i686/gnutls.patch 2015-04-16 13:58:32 UTC (rev 131480)
@@ -1,16 +0,0 @@
-diff -wbBur net6-1.3.14.org/src/encrypt.cpp net6-1.3.14/src/encrypt.cpp
 net6-1.3.14.org/src/encrypt.cpp2011-09-28 15:15:10.0 +0400
-+++ net6-1.3.14/src/encrypt.cpp2015-04-16 15:57:01.623936848 +0300
-@@ -175,10 +175,10 @@
-   gnutls_session_t sess):
-   tcp_client_socket(cobj), session(sess), state(DEFAULT)
- {
--  const int kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
-+  const char kx_prio[] = { GNUTLS_KX_ANON_DH, 0 };
- 
-   gnutls_set_default_priority(session);
--  gnutls_kx_set_priority(session, kx_prio);
-+  gnutls_priority_set_direct(session, kx_prio, NULL);
- 
-   gnutls_transport_set_ptr(
-   session,

Copied: net6/repos/community-staging-i686/gnutls.patch (from rev 131479, 
net6/trunk/gnutls.patch)
===
--- community-staging-i686/gnutls.patch (rev 0)
+++ community-staging-i686/gnutls.patch 2015-04-16 13:58:32 UTC (rev 131480)
@@ -0,0 +1,15 @@
+diff -wbBur net6-1.3.14.org/src/encrypt.cpp 

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

2013-11-02 Thread Sergej Pupykin
Date: Saturday, November 2, 2013 @ 09:43:52
  Author: spupykin
Revision: 100256

upgpkg: net6 1.3.14-2

upd

Modified:
  net6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-02 08:43:48 UTC (rev 100255)
+++ PKGBUILD2013-11-02 08:43:52 UTC (rev 100256)
@@ -6,7 +6,7 @@
 
 pkgname=net6
 pkgver=1.3.14
-pkgrel=1
+pkgrel=2
 pkgdesc=A library that provides a TCP protocol abstraction for C++
 arch=('i686' 'x86_64')
 url=http://gobby.0x539.de/;



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

2013-11-02 Thread Sergej Pupykin
Date: Saturday, November 2, 2013 @ 09:44:07
  Author: spupykin
Revision: 100257

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-02 08:43:52 UTC (rev 100256)
+++ community-i686/PKGBUILD 2013-11-02 08:44:07 UTC (rev 100257)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=net6
-pkgver=1.3.14
-pkgrel=1
-pkgdesc=A library that provides a TCP protocol abstraction for C++
-arch=('i686' 'x86_64')
-url=http://gobby.0x539.de/;
-license=('LGPL')
-depends=('gnutls' 'libsigc++2.0')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('be6db739f71c5c08421bf6181e77f3b2')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: net6/repos/community-i686/PKGBUILD (from rev 100256, 
net6/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-02 08:44:07 UTC (rev 100257)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=2
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-02 08:43:52 UTC (rev 100256)
+++ community-x86_64/PKGBUILD   2013-11-02 08:44:07 UTC (rev 100257)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=net6
-pkgver=1.3.14
-pkgrel=1
-pkgdesc=A library that provides a TCP protocol abstraction for C++
-arch=('i686' 'x86_64')
-url=http://gobby.0x539.de/;
-license=('LGPL')
-depends=('gnutls' 'libsigc++2.0')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('be6db739f71c5c08421bf6181e77f3b2')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: net6/repos/community-x86_64/PKGBUILD (from rev 100256, 
net6/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-02 08:44:07 UTC (rev 100257)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=2
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in net6 (3 files)

2013-10-30 Thread Allan McRae
Date: Thursday, October 31, 2013 @ 03:30:30
  Author: allan
Revision: 99925

remove !libtool

Modified:
  net6/repos/community-i686/PKGBUILD
  net6/repos/community-x86_64/PKGBUILD
  net6/trunk/PKGBUILD

-+
 repos/community-i686/PKGBUILD   |1 -
 repos/community-x86_64/PKGBUILD |1 -
 trunk/PKGBUILD  |1 -
 3 files changed, 3 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2013-10-31 02:30:10 UTC (rev 99924)
+++ repos/community-i686/PKGBUILD   2013-10-31 02:30:30 UTC (rev 99925)
@@ -12,7 +12,6 @@
 url=http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
-options=('!libtool')
 source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('be6db739f71c5c08421bf6181e77f3b2')
 

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2013-10-31 02:30:10 UTC (rev 99924)
+++ repos/community-x86_64/PKGBUILD 2013-10-31 02:30:30 UTC (rev 99925)
@@ -12,7 +12,6 @@
 url=http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
-options=('!libtool')
 source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('be6db739f71c5c08421bf6181e77f3b2')
 

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2013-10-31 02:30:10 UTC (rev 99924)
+++ trunk/PKGBUILD  2013-10-31 02:30:30 UTC (rev 99925)
@@ -12,7 +12,6 @@
 url=http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
-options=('!libtool')
 source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('be6db739f71c5c08421bf6181e77f3b2')
 



[arch-commits] Commit in net6/trunk (PKGBUILD build-fix.patch)

2013-05-05 Thread Sergej Pupykin
Date: Sunday, May 5, 2013 @ 23:30:32
  Author: spupykin
Revision: 89935

upgpkg: net6 1.3.14-1

upd

Modified:
  net6/trunk/PKGBUILD
Deleted:
  net6/trunk/build-fix.patch

-+
 PKGBUILD|   11 ---
 build-fix.patch |   33 -
 2 files changed, 4 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-05 21:30:28 UTC (rev 89934)
+++ PKGBUILD2013-05-05 21:30:32 UTC (rev 89935)
@@ -5,22 +5,19 @@
 # Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
 
 pkgname=net6
-pkgver=1.3.12
-pkgrel=3
+pkgver=1.3.14
+pkgrel=1
 pkgdesc=A library that provides a TCP protocol abstraction for C++
 arch=('i686' 'x86_64')
 url=http://gobby.0x539.de/;
 license=('LGPL')
 depends=('gnutls' 'libsigc++2.0')
 options=('!libtool')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
-   build-fix.patch)
-md5sums=('506776416d8aea2b9ea13a81f9145383'
- 'a200e6f132839782e3e5cfdf438e79d3')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver
-  patch -p1 $srcdir/build-fix.patch
   ./configure --prefix=/usr
   make
 }

Deleted: build-fix.patch
===
--- build-fix.patch 2013-05-05 21:30:28 UTC (rev 89934)
+++ build-fix.patch 2013-05-05 21:30:32 UTC (rev 89935)
@@ -1,33 +0,0 @@
-diff -wbBur net6-1.3.12/inc/encrypt.hpp net6-1.3.12.my/inc/encrypt.hpp
 net6-1.3.12/inc/encrypt.hpp2009-11-15 16:02:46.0 +0300
-+++ net6-1.3.12.my/inc/encrypt.hpp 2011-11-21 16:39:32.0 +0400
-@@ -34,7 +34,7 @@
- typedef gnutls_anon_server_credentials gnutls_anon_server_credentials_t;
- typedef gnutls_transport_ptr gnutls_transport_ptr_t;
- typedef gnutls_dh_params gnutls_dh_params_t;
--typedef gnutls_connection_end gnutls_connection_end_t;
-+//typedef gnutls_connection_end gnutls_connection_end_t;
- 
- class dh_params: private net6::non_copyable
- {
-diff -wbBur net6-1.3.12/src/encrypt.cpp net6-1.3.12.my/src/encrypt.cpp
 net6-1.3.12/src/encrypt.cpp2009-11-15 16:02:46.0 +0300
-+++ net6-1.3.12.my/src/encrypt.cpp 2011-11-21 16:39:49.0 +0400
-@@ -25,7 +25,7 @@
- {
-   const unsigned int DH_BITS = 1024;
- 
--  net6::gnutls_session_t create_session(net6::gnutls_connection_end_t end)
-+  net6::gnutls_session_t create_session(gnutls_connection_end_t end)
-   {
-   net6::gnutls_session_t session;
-   gnutls_init(session, end);
-@@ -201,8 +201,6 @@
-   net6_unix_send_func
-   );
- #endif
--
--  gnutls_transport_set_lowat(session, 0);
- }
- 
- net6::tcp_encrypted_socket_base::~tcp_encrypted_socket_base()



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

2013-05-05 Thread Sergej Pupykin
Date: Sunday, May 5, 2013 @ 23:30:50
  Author: spupykin
Revision: 89936

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

Added:
  net6/repos/community-i686/PKGBUILD
(from rev 89935, net6/trunk/PKGBUILD)
  net6/repos/community-x86_64/PKGBUILD
(from rev 89935, net6/trunk/PKGBUILD)
Deleted:
  net6/repos/community-i686/PKGBUILD
  net6/repos/community-i686/build-fix.patch
  net6/repos/community-x86_64/PKGBUILD
  net6/repos/community-x86_64/build-fix.patch

--+
 /PKGBUILD|   56 +
 community-i686/PKGBUILD  |   27 -
 community-i686/build-fix.patch   |   33 -
 community-x86_64/PKGBUILD|   27 -
 community-x86_64/build-fix.patch |   33 -
 5 files changed, 56 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-05 21:30:32 UTC (rev 89935)
+++ community-i686/PKGBUILD 2013-05-05 21:30:50 UTC (rev 89936)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=net6
-pkgver=1.3.12
-pkgrel=3
-pkgdesc=A library that provides a TCP protocol abstraction for C++
-arch=('i686' 'x86_64')
-url=http://gobby.0x539.de/;
-license=('LGPL')
-depends=('gnutls' 'libsigc++2.0')
-options=('!libtool')
-source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
-   build-fix.patch)
-md5sums=('506776416d8aea2b9ea13a81f9145383'
- 'a200e6f132839782e3e5cfdf438e79d3')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -p1 $srcdir/build-fix.patch
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-}

Copied: net6/repos/community-i686/PKGBUILD (from rev 89935, net6/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-05 21:30:50 UTC (rev 89936)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=net6
+pkgver=1.3.14
+pkgrel=1
+pkgdesc=A library that provides a TCP protocol abstraction for C++
+arch=('i686' 'x86_64')
+url=http://gobby.0x539.de/;
+license=('LGPL')
+depends=('gnutls' 'libsigc++2.0')
+options=('!libtool')
+source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('be6db739f71c5c08421bf6181e77f3b2')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/build-fix.patch
===
--- community-i686/build-fix.patch  2013-05-05 21:30:32 UTC (rev 89935)
+++ community-i686/build-fix.patch  2013-05-05 21:30:50 UTC (rev 89936)
@@ -1,33 +0,0 @@
-diff -wbBur net6-1.3.12/inc/encrypt.hpp net6-1.3.12.my/inc/encrypt.hpp
 net6-1.3.12/inc/encrypt.hpp2009-11-15 16:02:46.0 +0300
-+++ net6-1.3.12.my/inc/encrypt.hpp 2011-11-21 16:39:32.0 +0400
-@@ -34,7 +34,7 @@
- typedef gnutls_anon_server_credentials gnutls_anon_server_credentials_t;
- typedef gnutls_transport_ptr gnutls_transport_ptr_t;
- typedef gnutls_dh_params gnutls_dh_params_t;
--typedef gnutls_connection_end gnutls_connection_end_t;
-+//typedef gnutls_connection_end gnutls_connection_end_t;
- 
- class dh_params: private net6::non_copyable
- {
-diff -wbBur net6-1.3.12/src/encrypt.cpp net6-1.3.12.my/src/encrypt.cpp
 net6-1.3.12/src/encrypt.cpp2009-11-15 16:02:46.0 +0300
-+++ net6-1.3.12.my/src/encrypt.cpp 2011-11-21 16:39:49.0 +0400
-@@ -25,7 +25,7 @@
- {
-   const unsigned int DH_BITS = 1024;
- 
--  net6::gnutls_session_t create_session(net6::gnutls_connection_end_t end)
-+  net6::gnutls_session_t create_session(gnutls_connection_end_t end)
-   {
-   net6::gnutls_session_t session;
-   gnutls_init(session, end);
-@@ -201,8 +201,6 @@
-   net6_unix_send_func
-   );
- #endif
--
--  gnutls_transport_set_lowat(session, 0);
- }
- 
- net6::tcp_encrypted_socket_base::~tcp_encrypted_socket_base()

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-05-05 21:30:32 UTC (rev 89935)
+++ community-x86_64/PKGBUILD   2013-05-05 21:30:50 UTC (rev 89936)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Angel 'angvp'