From 276f594d8259960c7bca773ff3ff9b53e34c3706 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 26 Dec 2004 22:56:09 +0000 Subject: Update to 0.2.3. * Version 0.2.3 (released 2004-12-15) ** Fix example code to handle base64 encoded data properly. ** DIGEST-MD5 is disabled by default, pending a rewrite for the new API. ** Command line tool uses new callback interface to the library. ** Command line tool uses "iconvme" from gnulib for UTF-8 string conversion. ** Server mode in the command line tool does not work currently. It is unclear if this feature was ever that useful. If there are no objections, it will be removed completely in future versions. ** Documentation fixes. ** Fix self test bugs. * Version 0.2.2 (released 2004-11-29) ** Update of gnulib files. * Version 0.2.1 (released 2004-11-19) ** Documentation fixes; the old callback API functions are marked as obsolete. * Version 0.2.0 (released 2004-11-07) ** Added new directory examples/ with complete examples for new API. ** Documentation improvements. For example, you can now browse the GNU SASL API manual using DevHelp. ** Update of gnulib files. ** More self tests. ** Translation fixes. --- security/gsasl/Makefile | 7 ++++--- security/gsasl/PLIST | 22 +++++++++++++++++++++- security/gsasl/buildlink3.mk | 5 ++--- security/gsasl/distinfo | 6 +++--- 4 files changed, 30 insertions(+), 10 deletions(-) (limited to 'security') diff --git a/security/gsasl/Makefile b/security/gsasl/Makefile index 32e8e79c8cf..fcbaab330f3 100644 --- a/security/gsasl/Makefile +++ b/security/gsasl/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2004/10/03 00:18:09 tv Exp $ +# $NetBSD: Makefile,v 1.10 2004/12/26 22:56:09 wiz Exp $ -DISTNAME= gsasl-0.1.4 -PKGREVISION= 1 +DISTNAME= gsasl-0.2.3 CATEGORIES= security MASTER_SITES= http://josefsson.org/gsasl/releases/ \ ${MASTER_SITE_GNU:=gsasl/} @@ -15,6 +14,8 @@ BUILD_USES_MSGFMT= yes GNU_CONFIGURE= yes USE_BUILDLINK3= yes USE_LIBTOOL= yes +USE_PKGLOCALEDIR= yes +TEST_TARGET= check INFO_FILES= gsasl.info diff --git a/security/gsasl/PLIST b/security/gsasl/PLIST index 1ade8ad9568..2de5c500fe4 100644 --- a/security/gsasl/PLIST +++ b/security/gsasl/PLIST @@ -1,5 +1,7 @@ -@comment $NetBSD: PLIST,v 1.4 2004/09/22 08:09:52 jlam Exp $ +@comment $NetBSD: PLIST,v 1.5 2004/12/26 22:56:09 wiz Exp $ bin/gsasl +include/gsasl-compat.h +include/gsasl-mech.h include/gsasl.h lib/libgsasl.la lib/pkgconfig/libgsasl.pc @@ -10,6 +12,12 @@ man/man3/gsasl_application_data_get.3 man/man3/gsasl_application_data_set.3 man/man3/gsasl_base64_decode.3 man/man3/gsasl_base64_encode.3 +man/man3/gsasl_base64_from.3 +man/man3/gsasl_base64_to.3 +man/man3/gsasl_callback.3 +man/man3/gsasl_callback_hook_get.3 +man/man3/gsasl_callback_hook_set.3 +man/man3/gsasl_callback_set.3 man/man3/gsasl_check_version.3 man/man3/gsasl_client_application_data_get.3 man/man3/gsasl_client_application_data_set.3 @@ -44,16 +52,24 @@ man/man3/gsasl_client_suggest_mechanism.3 man/man3/gsasl_client_support_p.3 man/man3/gsasl_ctx_get.3 man/man3/gsasl_decode.3 +man/man3/gsasl_decode_inline.3 man/man3/gsasl_done.3 man/man3/gsasl_encode.3 +man/man3/gsasl_encode_inline.3 man/man3/gsasl_finish.3 man/man3/gsasl_hmac_md5.3 man/man3/gsasl_init.3 man/man3/gsasl_md5.3 man/man3/gsasl_md5pwd_get_password.3 man/man3/gsasl_nonce.3 +man/man3/gsasl_property_fast.3 +man/man3/gsasl_property_get.3 +man/man3/gsasl_property_set.3 +man/man3/gsasl_property_set_raw.3 man/man3/gsasl_random.3 man/man3/gsasl_randomize.3 +man/man3/gsasl_register.3 +man/man3/gsasl_saslprep.3 man/man3/gsasl_server_application_data_get.3 man/man3/gsasl_server_application_data_set.3 man/man3/gsasl_server_callback_anonymous_get.3 @@ -106,12 +122,16 @@ ${PKGLOCALEDIR}/locale/eu/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/libgsasl.mo ${PKGLOCALEDIR}/locale/ga/LC_MESSAGES/gsasl.mo +${PKGLOCALEDIR}/locale/ga/LC_MESSAGES/libgsasl.mo ${PKGLOCALEDIR}/locale/nl/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/nl/LC_MESSAGES/libgsasl.mo ${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/libgsasl.mo ${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/libgsasl.mo +${PKGLOCALEDIR}/locale/sq/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/sr/LC_MESSAGES/gsasl.mo +${PKGLOCALEDIR}/locale/sr/LC_MESSAGES/libgsasl.mo ${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gsasl.mo ${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/libgsasl.mo +${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/gsasl.mo diff --git a/security/gsasl/buildlink3.mk b/security/gsasl/buildlink3.mk index 0450c07e40b..1a94166d148 100644 --- a/security/gsasl/buildlink3.mk +++ b/security/gsasl/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.5 2004/10/03 00:18:09 tv Exp $ +# $NetBSD: buildlink3.mk,v 1.6 2004/12/26 22:56:09 wiz Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ GSASL_BUILDLINK3_MK:= ${GSASL_BUILDLINK3_MK}+ @@ -11,8 +11,7 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ngsasl} BUILDLINK_PACKAGES+= gsasl .if !empty(GSASL_BUILDLINK3_MK:M+) -BUILDLINK_DEPENDS.gsasl+= gsasl>=0.1.4 -BUILDLINK_RECOMMENDED.gsasl+= gsasl>=0.1.4nb1 +BUILDLINK_DEPENDS.gsasl+= gsasl>=0.2.3 BUILDLINK_PKGSRCDIR.gsasl?= ../../security/gsasl .endif # GSASL_BUILDLINK3_MK diff --git a/security/gsasl/distinfo b/security/gsasl/distinfo index cb441405a5a..65fdcfecafe 100644 --- a/security/gsasl/distinfo +++ b/security/gsasl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2004/09/19 12:48:45 wiz Exp $ +$NetBSD: distinfo,v 1.3 2004/12/26 22:56:09 wiz Exp $ -SHA1 (gsasl-0.1.4.tar.gz) = 33194d4546f419d4235085d9e813d73fecddfd2e -Size (gsasl-0.1.4.tar.gz) = 1658659 bytes +SHA1 (gsasl-0.2.3.tar.gz) = c975091be2f5ee1d14a4ef1bab3159db31f8377e +Size (gsasl-0.2.3.tar.gz) = 2566341 bytes -- cgit v1.2.3