pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/thy Changes 0.9.4:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2b01f2c0e422
branches:  trunk
changeset: 498960:2b01f2c0e422
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Sep 06 15:19:31 2005 +0000

description:
Changes 0.9.4:

Took some time to do this release, and the fixes are numerous, an
upgrade is highly recommended. Major changes include an increased
header limit, which fixes inter-operation with some versions of lynx;
a fix for a crash when trying to access user pages of people who do
not actually exist (ie, /~badusername).

On the new features front, the -U option now accepts usernames too,
not just user ids.

diffstat:

 www/thy/Makefile         |  23 ++++++++++-------------
 www/thy/distinfo         |   9 +++++----
 www/thy/patches/patch-aa |  33 +++++++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+), 17 deletions(-)

diffs (94 lines):

diff -r 8c33841222be -r 2b01f2c0e422 www/thy/Makefile
--- a/www/thy/Makefile  Tue Sep 06 14:54:56 2005 +0000
+++ b/www/thy/Makefile  Tue Sep 06 15:19:31 2005 +0000
@@ -1,22 +1,19 @@
-# $NetBSD: Makefile,v 1.7 2005/05/22 20:08:46 jlam Exp $
-#
+# $NetBSD: Makefile,v 1.8 2005/09/06 15:19:31 adam Exp $
 
-DISTNAME=              thy-0.9.3
-PKGREVISION=           2
-CATEGORIES=            www
-MASTER_SITES=          ftp://bonehunter.rulez.org/pub/thy/stable/
-EXTRACT_SUFX=          .tar.bz2
+DISTNAME=      thy-0.9.4
+CATEGORIES=    www
+MASTER_SITES=  ftp://bonehunter.rulez.org/pub/thy/stable/
 
-MAINTAINER=            algernon%bonehunter.rulez.org@localhost
-HOMEPAGE=              http://bonehunter.rulez.org/software/thy/
-COMMENT=               Tiny and fast HTTP daemon
+MAINTAINER=    algernon%bonehunter.rulez.org@localhost
+HOMEPAGE=      http://bonehunter.rulez.org/software/thy/
+COMMENT=       Tiny and fast HTTP daemon
 
 .include "../../mk/bsd.prefs.mk"
 
 BUILD_DEFS+=           USE_INET6
-GNU_CONFIGURE=         yes
+USE_PKGINSTALL=                yes
 USE_TOOLS+=            bison gmake lex
-USE_PKGINSTALL=                yes
+GNU_CONFIGURE=         yes
 
 PKG_SYSCONFSUBDIR=     thy
 CONF_FILES=            ${EGDIR}/thyrc ${PKG_SYSCONFDIR}/thyrc \
@@ -48,6 +45,6 @@
        ${INSTALL_DATA_DIR} ${EGDIR}
        ${INSTALL_DATA} ${WRKSRC}/etc/thyrc ${EGDIR}
 
+.include "../../devel/zlib/buildlink3.mk"
 .include "../../security/gnutls/buildlink3.mk"
-.include "../../devel/zlib/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 8c33841222be -r 2b01f2c0e422 www/thy/distinfo
--- a/www/thy/distinfo  Tue Sep 06 14:54:56 2005 +0000
+++ b/www/thy/distinfo  Tue Sep 06 15:19:31 2005 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2005/02/24 14:08:39 wiz Exp $
+$NetBSD: distinfo,v 1.4 2005/09/06 15:19:31 adam Exp $
 
-SHA1 (thy-0.9.3.tar.bz2) = 2af7561df6b0100f6009d1ce18099ee168084c60
-RMD160 (thy-0.9.3.tar.bz2) = e66333d166047b9e9d041f0a5986495f75eae1d9
-Size (thy-0.9.3.tar.bz2) = 277249 bytes
+SHA1 (thy-0.9.4.tar.gz) = e3bae4f3667f98fbc5fc39dc3f61571b524e5dfd
+RMD160 (thy-0.9.4.tar.gz) = b64ada0d71d123b0a5300697ae69823ff59e5ee7
+Size (thy-0.9.4.tar.gz) = 357776 bytes
+SHA1 (patch-aa) = d8b98822747e7d76318e591336b981aea6773c96
diff -r 8c33841222be -r 2b01f2c0e422 www/thy/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/thy/patches/patch-aa  Tue Sep 06 15:19:31 2005 +0000
@@ -0,0 +1,33 @@
+$NetBSD: patch-aa,v 1.1 2005/09/06 15:19:31 adam Exp $
+
+--- src/tls.c.orig     2005-09-06 17:06:05.000000000 +0000
++++ src/tls.c
+@@ -453,10 +453,6 @@ _thy_tls_session_create (void)
+ 
+   gnutls_handshake_set_private_extensions (session, 1);
+ 
+-  if (cert_type == THY_TLS_CERT_TYPE_X509)
+-    gnutls_certificate_server_set_select_function
+-      (session, (gnutls_certificate_server_select_function *)
+-       _thy_tls_session_cert_select);
+ 
+   return session;
+ }
+@@ -502,7 +498,7 @@ thy_rsa_params_generate (void)
+       bhc_exit (3);
+     }
+ 
+-  gnutls_certificate_set_rsa_params (cred, rsa_params);
++  gnutls_certificate_set_rsa_export_params (cred, rsa_params);
+ 
+   return 0;
+ }
+@@ -794,7 +790,7 @@ thy_tls_reinit (int dh_gen)
+   thy_rsa_params_generate ();
+ 
+   gnutls_certificate_set_dh_params (cred, dh_params);
+-  gnutls_certificate_set_rsa_params (cred, rsa_params);
++  gnutls_certificate_set_rsa_export_params (cred, rsa_params);
+ }
+ 
+ /** @internal Wrapper around gnutls_cipher_suite_get_name().



Home | Main Index | Thread Index | Old Index