summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2005-08-25 20:16:15 +0000
committerjmmv <jmmv@pkgsrc.org>2005-08-25 20:16:15 +0000
commitcef156654e51bf3eb7e91df7262f0c571dd0ddb8 (patch)
tree20b7c9e5c7116f71af649ac0ec0cf321f6bf6441 /chat
parenta985b0580c030000b7ece2154d2ca5c0c341cc1a (diff)
downloadpkgsrc-cef156654e51bf3eb7e91df7262f0c571dd0ddb8.tar.gz
Update to 1.0:
Changes in 1.0: --------------- * Fix crash when connection goes down using SSL, LM-3 (Mikael Hallendal) * Fixed some GCC 4.0 warnings (Mikael Hallendal) * Some API fixups for consistency in LmSLL (Mikael Hallendal) * Don't try to setup SSL if it's not supported (Martyn Russel) * Documentation fixes (Mikael Hallendal) * State fixes when using blocking API, LM-7 (Mikael Hallendal) * Check that connection is open before using it, LM-6 (Mikael Hallendal) * Fix infinite loop in blocking open if failed, LM-8 (Mikael Hallendal) Changes in 0.90: ---------------- * Two crashers for ssl read fixed (Micke, Daniel Lavalliere) * Fixed a couple of leaks when freeing the connection (Daniel Lavalliere) * A couple of thread related issues solved (Micke, Daniel Lavalliere) * Work with latest GnuTLS (foser) * Improved the example tools some (Micke)
Diffstat (limited to 'chat')
-rw-r--r--chat/loudmouth/Makefile7
-rw-r--r--chat/loudmouth/buildlink3.mk5
-rw-r--r--chat/loudmouth/distinfo9
-rw-r--r--chat/loudmouth/patches/patch-aa21
4 files changed, 9 insertions, 33 deletions
diff --git a/chat/loudmouth/Makefile b/chat/loudmouth/Makefile
index dc129f96ee6..639bc33dbfc 100644
--- a/chat/loudmouth/Makefile
+++ b/chat/loudmouth/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.14 2005/08/10 20:56:13 jlam Exp $
+# $NetBSD: Makefile,v 1.15 2005/08/25 20:16:15 jmmv Exp $
-DISTNAME= loudmouth-0.17.2
-PKGREVISION= 1
+DISTNAME= loudmouth-1.0
CATEGORIES= chat
-MASTER_SITES= ${MASTER_SITE_GNOME:=sources/loudmouth/0.17/}
+MASTER_SITES= ${MASTER_SITE_GNOME:=sources/loudmouth/1.0/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= tech-pkg@NetBSD.org
diff --git a/chat/loudmouth/buildlink3.mk b/chat/loudmouth/buildlink3.mk
index 34156c612cf..78c44e17ad2 100644
--- a/chat/loudmouth/buildlink3.mk
+++ b/chat/loudmouth/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2004/10/03 00:13:15 tv Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2005/08/25 20:16:15 jmmv Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
LOUDMOUTH_BUILDLINK3_MK:= ${LOUDMOUTH_BUILDLINK3_MK}+
@@ -11,8 +11,7 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nloudmouth}
BUILDLINK_PACKAGES+= loudmouth
.if !empty(LOUDMOUTH_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.loudmouth+= loudmouth>=0.17
-BUILDLINK_RECOMMENDED.loudmouth+= loudmouth>=0.17nb1
+BUILDLINK_DEPENDS.loudmouth+= loudmouth>=1.0
BUILDLINK_PKGSRCDIR.loudmouth?= ../../chat/loudmouth
.endif # LOUDMOUTH_BUILDLINK3_MK
diff --git a/chat/loudmouth/distinfo b/chat/loudmouth/distinfo
index 4ad72cb2987..d33ac29c305 100644
--- a/chat/loudmouth/distinfo
+++ b/chat/loudmouth/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2005/02/23 16:07:34 wiz Exp $
+$NetBSD: distinfo,v 1.7 2005/08/25 20:16:15 jmmv Exp $
-SHA1 (loudmouth-0.17.2.tar.bz2) = 8dcc61ae95c3d852d1cf88f3198e0e023e70db7e
-RMD160 (loudmouth-0.17.2.tar.bz2) = c90f046af52a951c0a163fd4f516b82d4709d74e
-Size (loudmouth-0.17.2.tar.bz2) = 286981 bytes
-SHA1 (patch-aa) = c4b37369a347cb557b10739143de588b1c6008b4
+SHA1 (loudmouth-1.0.tar.bz2) = 02b2ac19b477891a9e94ad91337bad96871b242c
+RMD160 (loudmouth-1.0.tar.bz2) = a9e6c5751a3510531e92e389c2246be30d2a8ab0
+Size (loudmouth-1.0.tar.bz2) = 259265 bytes
diff --git a/chat/loudmouth/patches/patch-aa b/chat/loudmouth/patches/patch-aa
deleted file mode 100644
index 98e51e6f345..00000000000
--- a/chat/loudmouth/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2005/02/23 16:07:34 wiz Exp $
-
---- loudmouth/lm-ssl.c.orig 2004-10-19 09:52:48.000000000 +0200
-+++ loudmouth/lm-ssl.c
-@@ -71,7 +71,6 @@ ssl_verify_certificate (LmSSL *ssl, cons
- }
-
- if (status & GNUTLS_CERT_INVALID
-- || status & GNUTLS_CERT_NOT_TRUSTED
- || status & GNUTLS_CERT_REVOKED) {
- if (ssl->func (ssl, LM_SSL_STATUS_UNTRUSTED_CERT,
- ssl->func_data) != LM_SSL_RESPONSE_CONTINUE) {
-@@ -126,7 +125,7 @@ ssl_verify_certificate (LmSSL *ssl, cons
-
- gnutls_x509_crt_deinit (cert);
-
-- if (gnutls_x509_fingerprint (GNUTLS_DIG_MD5, &cert_list[0],
-+ if (gnutls_fingerprint (GNUTLS_DIG_MD5, &cert_list[0],
- ssl->fingerprint,
- &digest_size) >= 0) {
- if (ssl->expected_fingerprint &&