OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src openpkg-web openpkg$ Date: 01-Dec-2003 20:19:43
Branch: HEAD Handle: 2003120119194102
Modified files:
openpkg-re/vcheck vc.sasl
openpkg-src/sasl sasl.patch sasl.spec
openpkg-web news.txt
Log:
upgrading package: sasl 2.1.15 -> 2.1.17
Summary:
Revision Changes Path
1.17 +1 -1 openpkg-re/vcheck/vc.sasl
1.9 +6 -36 openpkg-src/sasl/sasl.patch
1.104 +2 -2 openpkg-src/sasl/sasl.spec
1.7632 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-re/vcheck/vc.sasl
============================================================================
$ cvs diff -u -r1.16 -r1.17 vc.sasl
--- openpkg-re/vcheck/vc.sasl 16 Jul 2003 07:05:58 -0000 1.16
+++ openpkg-re/vcheck/vc.sasl 1 Dec 2003 19:19:41 -0000 1.17
@@ -2,7 +2,7 @@
}
prog sasl = {
- version = 2.1.15
+ version = 2.1.17
url = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/
regex = cyrus-sasl-(\d+\.\d+\.\d+)\.tar\.gz
}
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/sasl/sasl.patch
============================================================================
$ cvs diff -u -r1.8 -r1.9 sasl.patch
--- openpkg-src/sasl/sasl.patch 4 Jul 2003 08:14:03 -0000 1.8
+++ openpkg-src/sasl/sasl.patch 1 Dec 2003 19:19:43 -0000 1.9
@@ -1,40 +1,10 @@
---- plugins/mysql.c.orig Wed May 14 20:46:02 2003
-+++ plugins/mysql.c Fri Jul 4 10:11:16 2003
-@@ -254,6 +254,7 @@
- MYSQL mysql,*sock = NULL;
- MYSQL_RES *result;
- MYSQL_ROW row;
-+ unsigned long *rlen;
-
- /* setup the settings */
- settings = (struct mysql_settings *)glob_context;
-@@ -326,6 +327,7 @@
- "mysql plugin try and connect to %s\n",
- cur_host);
-
-+ mysql_init(&mysql);
- sock = mysql_real_connect(&mysql,cur_host,
- settings->mysql_user,
- settings->mysql_passwd,
-@@ -408,8 +410,10 @@
- /* now get the result set value and value_len */
- /* we only fetch one becuse we dont car about the rest */
- row = mysql_fetch_row(result);
-- strncpy(value,row[0],8190);
-- value_len = strlen(value);
-+ rlen = mysql_fetch_lengths(result);
-+ value_len = rlen[0] > 8190 ? 8190 : rlen[0];
-+ memcpy(value, row[0], value_len);
-+ value[value_len] = '\0';
-
- sparams->utils->prop_set(sparams->propctx, cur->name,
- value, value_len);
---- lib/server.c.orig Wed Apr 16 21:36:01 2003
-+++ lib/server.c Fri Jul 4 10:07:52 2003
-@@ -390,18 +390,9 @@
- unsigned path_len;
+Index: lib/server.c
+--- lib/server.c.orig 2003-11-14 17:49:07.000000000 +0100
++++ lib/server.c 2003-12-01 20:17:35.000000000 +0100
+@@ -436,18 +436,9 @@
+ size_t path_len;
char *config_filename=NULL;
- int len;
+ size_t len;
- const sasl_callback_t *getpath_cb=NULL;
- /* get the path to the plugins; for now the config file will reside there */
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/sasl/sasl.spec
============================================================================
$ cvs diff -u -r1.103 -r1.104 sasl.spec
--- openpkg-src/sasl/sasl.spec 21 Nov 2003 23:51:09 -0000 1.103
+++ openpkg-src/sasl/sasl.spec 1 Dec 2003 19:19:43 -0000 1.104
@@ -32,8 +32,8 @@
Distribution: OpenPKG [PLUS]
Group: Cryptography
License: BSD
-Version: 2.1.15
-Release: 20031122
+Version: 2.1.17
+Release: 20031201
# package options
%option with_fsl yes
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.7631 -r1.7632 news.txt
--- openpkg-web/news.txt 1 Dec 2003 19:18:53 -0000 1.7631
+++ openpkg-web/news.txt 1 Dec 2003 19:19:41 -0000 1.7632
@@ -1,3 +1,4 @@
+01-Dec-2003: Upgraded package: P<sasl-2.1.17-20031201>
01-Dec-2003: Upgraded package: P<perl-www-20031201-20031201>
01-Dec-2003: Upgraded package: P<whois-4.6.9-20031201>
01-Dec-2003: Upgraded package: P<xmlto-0.0.17-20031201>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]