diff options
author | adam <adam@pkgsrc.org> | 2005-09-06 15:19:31 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-09-06 15:19:31 +0000 |
commit | 4907565ad2b938f117c0b9d5d24603f015856185 (patch) | |
tree | 3932bdabbde6be985133719e7c9608de2e4f7a7e | |
parent | 737ef1749fa294debc4341b4b31459ae30e9c8fb (diff) | |
download | pkgsrc-4907565ad2b938f117c0b9d5d24603f015856185.tar.gz |
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.
-rw-r--r-- | www/thy/Makefile | 23 | ||||
-rw-r--r-- | www/thy/distinfo | 9 | ||||
-rw-r--r-- | www/thy/patches/patch-aa | 33 |
3 files changed, 48 insertions, 17 deletions
diff --git a/www/thy/Makefile b/www/thy/Makefile index ab5e6981485..979a7effa3d 100644 --- a/www/thy/Makefile +++ b/www/thy/Makefile @@ -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 -HOMEPAGE= http://bonehunter.rulez.org/software/thy/ -COMMENT= Tiny and fast HTTP daemon +MAINTAINER= algernon@bonehunter.rulez.org +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_TOOLS+= bison gmake lex USE_PKGINSTALL= yes +USE_TOOLS+= bison gmake lex +GNU_CONFIGURE= yes PKG_SYSCONFSUBDIR= thy CONF_FILES= ${EGDIR}/thyrc ${PKG_SYSCONFDIR}/thyrc \ @@ -48,6 +45,6 @@ post-install: ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/etc/thyrc ${EGDIR} -.include "../../security/gnutls/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" +.include "../../security/gnutls/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/thy/distinfo b/www/thy/distinfo index 02897dbde1d..2add4408900 100644 --- a/www/thy/distinfo +++ b/www/thy/distinfo @@ -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 --git a/www/thy/patches/patch-aa b/www/thy/patches/patch-aa new file mode 100644 index 00000000000..17f02e87d34 --- /dev/null +++ b/www/thy/patches/patch-aa @@ -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(). |