diff options
author | bad <bad> | 2005-01-20 20:35:24 +0000 |
---|---|---|
committer | bad <bad> | 2005-01-20 20:35:24 +0000 |
commit | 59f0206f3e2dba2d90adcbfb8c4ba5cab90c30e4 (patch) | |
tree | 1895a289751c340f9ae76441782625d669c9462f | |
parent | 61dbb8e5afb79b6f66abfe072e7a309cd8bb224e (diff) | |
download | pkgsrc-59f0206f3e2dba2d90adcbfb8c4ba5cab90c30e4.tar.gz |
Upgrade jdb to version 1.13.
Changes since 1.12:
- NEW: jdb added to the freebsd ports tree
maintainer: larse@isi.edu
- BUG FIX: properly handle trailing spaces when data must be numeric
(ex. dbstats with -FS, see test dbstats_trailing_spaces)
Fix from Ning Xu .
- NEW: dbcolize error message improved (bug report from Terrence
Brannon), and list format documented in the README.
- NEW: cgi_to_db convergs CGI.pm-format storage to jdb list format
- BUG FIX: handle numeric synonyms for column names in dbcol properly
- ENHANCEMENT: "talking about columns" section added to README.
Lack of documentation pointed out by Lars Eggert.
- CHANGE: dbformmail now defaults to using Mail ("Berkeley Mail")
to send mail, rather than sendmail (sendmail is still an option,
but mail doesn't require running as root)
- NEW: on platforms that support it (i.e., with perl 5.8), jdb works
fine with unicode
- NEW: dbfilevalidate: check a db file for some common errors
-rw-r--r-- | databases/jdb/Makefile | 4 | ||||
-rw-r--r-- | databases/jdb/PLIST | 5 | ||||
-rw-r--r-- | databases/jdb/distinfo | 7 | ||||
-rw-r--r-- | databases/jdb/patches/patch-aa | 13 |
4 files changed, 8 insertions, 21 deletions
diff --git a/databases/jdb/Makefile b/databases/jdb/Makefile index f8db92883e9..46c884f5a18 100644 --- a/databases/jdb/Makefile +++ b/databases/jdb/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2004/04/25 17:45:31 snj Exp $ +# $NetBSD: Makefile,v 1.10 2005/01/20 20:35:24 bad Exp $ -DISTNAME= jdb-1.12 +DISTNAME= jdb-1.13 CATEGORIES= databases MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/JDB/ diff --git a/databases/jdb/PLIST b/databases/jdb/PLIST index 99915f81b64..1b3e03eb54e 100644 --- a/databases/jdb/PLIST +++ b/databases/jdb/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2003/12/15 20:18:33 bad Exp $ +@comment $NetBSD: PLIST,v 1.3 2005/01/20 20:35:24 bad Exp $ bin/crl_to_db bin/db2dcliff bin/db_to_html_table @@ -42,10 +42,11 @@ bin/kitrace_to_db bin/ns_to_db bin/tabdelim_to_db bin/tcpdump_to_db +share/jdb share/jdb/COPYING -share/jdb/README share/jdb/DbGetopt.pm share/jdb/DbTDistr.pm +share/jdb/README share/jdb/dblib.pl share/jdb/release @dirrm share/jdb diff --git a/databases/jdb/distinfo b/databases/jdb/distinfo index 4923282dd58..191efdc51c1 100644 --- a/databases/jdb/distinfo +++ b/databases/jdb/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.5 2003/12/15 21:22:41 wiz Exp $ +$NetBSD: distinfo,v 1.6 2005/01/20 20:35:24 bad Exp $ -SHA1 (jdb-1.12.tar.gz) = 63dd7a5f700628734a8316612d86c9a9b5f0e787 -Size (jdb-1.12.tar.gz) = 141134 bytes -SHA1 (patch-aa) = 667a012b425e9b4f394c82a3c831dba456eabb11 +SHA1 (jdb-1.13.tar.gz) = 112a113fb11fdc69c8352707a3480a5c90c247db +Size (jdb-1.13.tar.gz) = 143843 bytes diff --git a/databases/jdb/patches/patch-aa b/databases/jdb/patches/patch-aa deleted file mode 100644 index 706cf0deb65..00000000000 --- a/databases/jdb/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2003/12/15 21:22:41 wiz Exp $ - ---- dblib.pl.orig Mon Oct 28 23:46:40 2002 -+++ dblib.pl Mon Dec 15 21:04:54 2003 -@@ -330,7 +330,7 @@ - - sub force_numeric { - my($value, $ignore_non_numeric) = @_; -- if ($value =~ /^[-+]?[0-9]+(.[0-9]+)?(e[-+0-9]+)?$/) { -+ if ($value =~ /^\s*[-+]?[0-9]+(.[0-9]+)?(e[-+0-9]+)?\s*$/) { - return $value + 0.0; # force numeric - } else { - if ($ignore_non_numeric) { |