summaryrefslogtreecommitdiff
path: root/security/gsasl
diff options
context:
space:
mode:
authorwiz <wiz>2004-09-19 12:48:45 +0000
committerwiz <wiz>2004-09-19 12:48:45 +0000
commit33c229473281fee4d28c3cdc4ecca0bb27b8d6c0 (patch)
tree987c2acb69d2a5835f05a4b9659404ab368b1ce4 /security/gsasl
parent5208a9a982e1801e6f34d4527431e29771fd02ae (diff)
downloadpkgsrc-33c229473281fee4d28c3cdc4ecca0bb27b8d6c0.tar.gz
Update to 0.1.4, provided by Sergio Jimenez in PR 26974.
Changes since 0.0.8: * Changes in 0.1.4 (released 2004-08-08) ** Revamp of gnulib compatibility files. ** More translations. German (by Roland Illig), Basque (by Mikel Olasagasti), French (by Michel Robitaille), Irish (by Kevin Patrick Scannell), Dutch (by Elros Cyriatan), Polish (by Jakub Bogusz), Romanian (by Laurentiu Buzdugan), and Serbian (by Aleksandar Jelenak). * Changes in 0.1.3 (released 2004-08-04) ** Command line tool support IPv6 (and other protocol families). Requires that your system has `getaddrinfo'. ** Command line behaviour for gsasl tool improved. The --client and --imap parameters are now the default. The --connect host and port can now be specified directly. If --authentication-id is not specified, the username of the user invoking gsasl is used (i.e., getpwuid(getuid)->pw_name). Alltogether, this allows simple usage, as in `gsasl mail.example.com' to connect, via IMAP, to mail.example.com. * Changes in 0.1.2 (released 2004-07-16) ** The SMTP mode in `gsasl' should now work. ** Cross compile builds should work. It should work for any sane cross compile target, but the only tested platform is uClibc/uClinux on Motorola Coldfire. ** The GNU Readline library is used to read data, if available. ** Passwords read from stdin are not echoed to the terminal. * Changes in 0.1.1 (released 2004-06-26) ** In the command line client, the default quality of protection is now none. * Changes in 0.1.0 (released 2004-04-16) ** The library re-licensed to LGPL and distributed as a separate package. This means a fork of this NEWS file, all the entries below relate to the combined work of earlier versions. New entries above does not document user visible changes for the library ("libgsasl"), for that see NEWS in the lib/ sub-directory, which is also distributed as a stand-alone package. * Changes in 0.0.14 (released 2004-01-22) ** Moved all mechanism specific code into sub-directories of lib/. Each backend is built into its own library (e.g., libgsasl-plain.so), to facilitate future possible use of dlopen to dynamically load backends. ** Moved compatibility files (getopt*) to gl/, and added more (strdup*). * Changes in 0.0.13 (released 2004-01-17) ** Nettle (the crypto functionality, crypto/) has been updated. This fixes two portability issues, the new code should work on platforms that doesn't have inttypes.h and alloca. * Changes in 0.0.12 (released 2004-01-15) ** Protocol line parser in 'gsasl' tool more reliable. Earlier it assumed two lines were sent in one packet in one place, and sent as two packets in another place. ** Various bugfixes. * Changes in 0.0.11 (released 2004-01-06) ** The client part of CRAM-MD5 now uses SASLprep instead of NFKC. This aligns with draft-ietf-sasl-crammd5-01. ** The CRAM-MD5 challenge string now conform to the proper syntax. ** The string preparation (SASLprep and trace) functions now work correctly. ** DocBook manuals no longer included. The reason is that recent DocBook tools from the distribution I use (Debian) fails with an error. DocBook manuals may be included in the future, if I can get the tools to work. ** API and ABI modifications. GSASL_SASLPREP_ERROR: ADD. * Changes in 0.0.10 (released 2003-11-22) ** The CRAM-MD5 server now reject invalid passwords. The logic flaw was introduced in 0.0.9, after blindly making code changes to shut up valgrind just before the release. ** Various build improvements. Pkg-config is no longer needed. GTK-DOC is only used if present. * Changes in 0.0.9 (released 2003-11-21) ** Command line client can talk to SMTP servers with --smtp. ** DocBook manuals in XML, PDF, PostScript, ASCII and HTML formats included. ** Token parser in DIGEST-MD5 fixed, improve interoperability of DIGEST-MD5. ** Libgcrypt >= 1.1.42 is used if available (for CRAM-MD5 and DIGEST-MD5). The previous libgcrypt API is no longer supported. ** CRAM-MD5 and DIGEST-MD5 no longer require libgcrypt (but can still use it). If libgcrypt 1.1.42 or later is not found, it uses a minimalistic cryptographic library based on Nettle, from crypto/. Currently only MD5 and HMAC-MD5 is needed, making a dependence on libgcrypt overkill. ** Listing supported server mechanisms with gsasl_server_mechlist work. ** Autoconf 2.59, Automake 1.8 beta, Libtool CVS used. ** Source code for each SASL mechanism moved to its own sub-directory in lib/. ** The command line interface now uses getopt instead of argp. The reason is portability, this also means we no longer use gnulib. ** API and ABI modifications. gsasl_randomize: ADD. gsasl_md5: ADD. gsasl_hmac_md5: ADD. gsasl_hexdump: REMOVED. Never intended to be exported. gsasl_step: ADD. gsasl_step64: ADD. gsasl_client_step: DEPRECATED: use gsasl_step instead. gsasl_server_step: DEPRECATED: use gsasl_step instead. gsasl_client_step_base64: DEPRECATED: use gsasl_step64 instead. gsasl_server_step_base64: DEPRECATED: use gsasl_step64 instead. gsasl_finish: ADD. gsasl_client_finish: DEPRECATED: use gsasl_finish instead. gsasl_server_finish: DEPRECATED: use gsasl_finish instead. gsasl_ctx_get: ADD. gsasl_client_ctx_get: DEPRECATED: use gsasl_ctx_get instead. gsasl_server_ctx_get: DEPRECATED: use gsasl_ctx_get instead. gsasl_appinfo_get: ADD. gsasl_appinfo_set: ADD. gsasl_client_application_data_get: DEPRECATED: use gsasl_appinfo_get instead. gsasl_client_application_data_set: DEPRECATED: use gsasl_appinfo_set instead. gsasl_server_application_data_get: DEPRECATED: use gsasl_appinfo_get instead. gsasl_server_application_data_set: DEPRECATED: use gsasl_appinfo_set instead. Gsasl: ADD. Gsasl_ctx: DEPRECATED: use Gsasl instead. Gsasl_session: ADD. Gsasl_session_ctx: DEPRECATED: use Gsasl_session instead. GSASL_CRYPTO_ERROR: ADD, replaces deprecated GSASL_LIBGCRYPT_ERROR. GSASL_LIBGCRYPT_ERROR: DEPRECATED: use GSASL_CRYPTO_ERROR instead. GSASL_KERBEROS_V5_INTERNAL_ERROR: ADD, replaces deprecated GSASL_SHISHI_ERROR. GSASL_SHISHI_ERROR: DEPRECATED: use GSASL_KERBEROS_V5_INTERNAL_ERROR instead. GSASL_INVALID_HANDLE: ADD.
Diffstat (limited to 'security/gsasl')
-rw-r--r--security/gsasl/Makefile5
-rw-r--r--security/gsasl/PLIST40
-rw-r--r--security/gsasl/buildlink3.mk4
-rw-r--r--security/gsasl/distinfo6
4 files changed, 38 insertions, 17 deletions
diff --git a/security/gsasl/Makefile b/security/gsasl/Makefile
index 5c662327f3e..37a3a8f2b6f 100644
--- a/security/gsasl/Makefile
+++ b/security/gsasl/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2004/05/26 14:55:46 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2004/09/19 12:48:45 wiz Exp $
-DISTNAME= gsasl-0.0.8
-PKGREVISION= 3
+DISTNAME= gsasl-0.1.4
CATEGORIES= security
MASTER_SITES= http://josefsson.org/gsasl/releases/ \
${MASTER_SITE_GNU:=gsasl/}
diff --git a/security/gsasl/PLIST b/security/gsasl/PLIST
index 10184a6baef..b99e6f0f933 100644
--- a/security/gsasl/PLIST
+++ b/security/gsasl/PLIST
@@ -1,13 +1,15 @@
-@comment $NetBSD: PLIST,v 1.2 2004/03/10 00:28:13 seb Exp $
+@comment $NetBSD: PLIST,v 1.3 2004/09/19 12:48:45 wiz Exp $
bin/gsasl
include/gsasl.h
lib/libgsasl.a
lib/libgsasl.la
lib/libgsasl.so
-lib/libgsasl.so.4
-lib/libgsasl.so.4.0
+lib/libgsasl.so.6
+lib/libgsasl.so.6.3
lib/pkgconfig/libgsasl.pc
man/man1/gsasl.1
+man/man3/gsasl_appinfo_get.3
+man/man3/gsasl_appinfo_set.3
man/man3/gsasl_application_data_get.3
man/man3/gsasl_application_data_set.3
man/man3/gsasl_base64_decode.3
@@ -44,12 +46,18 @@ man/man3/gsasl_client_step.3
man/man3/gsasl_client_step_base64.3
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_done.3
man/man3/gsasl_encode.3
-man/man3/gsasl_hexdump.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_random.3
+man/man3/gsasl_randomize.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
@@ -87,13 +95,27 @@ man/man3/gsasl_server_step.3
man/man3/gsasl_server_step_base64.3
man/man3/gsasl_server_suggest_mechanism.3
man/man3/gsasl_server_support_p.3
+man/man3/gsasl_step.3
+man/man3/gsasl_step64.3
man/man3/gsasl_strerror.3
man/man3/gsasl_stringprep_nfkc.3
man/man3/gsasl_stringprep_saslprep.3
man/man3/gsasl_stringprep_trace.3
-share/doc/html/gsasl/c4.html
-share/doc/html/gsasl/gsasl-gsasl.html
-share/doc/html/gsasl/index.html
-share/doc/html/gsasl/index.sgml
+${PKGLOCALEDIR}/locale/de/LC_MESSAGES/gsasl.mo
+${PKGLOCALEDIR}/locale/en@boldquot/LC_MESSAGES/gsasl.mo
+${PKGLOCALEDIR}/locale/en@boldquot/LC_MESSAGES/libgsasl.mo
+${PKGLOCALEDIR}/locale/en@quot/LC_MESSAGES/gsasl.mo
+${PKGLOCALEDIR}/locale/en@quot/LC_MESSAGES/libgsasl.mo
+${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/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/sr/LC_MESSAGES/gsasl.mo
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gsasl.mo
-@dirrm share/doc/html/gsasl
+${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/libgsasl.mo
diff --git a/security/gsasl/buildlink3.mk b/security/gsasl/buildlink3.mk
index c967c2092f2..6f1dadc0cc4 100644
--- a/security/gsasl/buildlink3.mk
+++ b/security/gsasl/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.3 2004/03/18 09:12:14 jlam Exp $
+# $NetBSD: buildlink3.mk,v 1.4 2004/09/19 12:48:45 wiz Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
GSASL_BUILDLINK3_MK:= ${GSASL_BUILDLINK3_MK}+
@@ -11,7 +11,7 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ngsasl}
BUILDLINK_PACKAGES+= gsasl
.if !empty(GSASL_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.gsasl+= gsasl>=0.0.8
+BUILDLINK_DEPENDS.gsasl+= gsasl>=0.1.4
BUILDLINK_PKGSRCDIR.gsasl?= ../../security/gsasl
.endif # GSASL_BUILDLINK3_MK
diff --git a/security/gsasl/distinfo b/security/gsasl/distinfo
index 7463840f063..cb441405a5a 100644
--- a/security/gsasl/distinfo
+++ b/security/gsasl/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1.1.1 2003/12/03 19:23:13 xtraeme Exp $
+$NetBSD: distinfo,v 1.2 2004/09/19 12:48:45 wiz Exp $
-SHA1 (gsasl-0.0.8.tar.gz) = 57b9eda2f04872e55b4a94bf89a5ca6e488bca44
-Size (gsasl-0.0.8.tar.gz) = 1342014 bytes
+SHA1 (gsasl-0.1.4.tar.gz) = 33194d4546f419d4235085d9e813d73fecddfd2e
+Size (gsasl-0.1.4.tar.gz) = 1658659 bytes