pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases/jdb Upgrade jdb to version 1.13.
details: https://anonhg.NetBSD.org/pkgsrc/rev/946274f8c848
branches: trunk
changeset: 487821:946274f8c848
user: bad <bad%pkgsrc.org@localhost>
date: Thu Jan 20 20:35:24 2005 +0000
description:
Upgrade jdb to version 1.13.
Changes since 1.12:
- NEW: jdb added to the freebsd ports tree
maintainer: larse%isi.edu@localhost
- 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
diffstat:
databases/jdb/Makefile | 4 ++--
databases/jdb/PLIST | 5 +++--
databases/jdb/distinfo | 7 +++----
databases/jdb/patches/patch-aa | 13 -------------
4 files changed, 8 insertions(+), 21 deletions(-)
diffs (63 lines):
diff -r 14e6ff209cca -r 946274f8c848 databases/jdb/Makefile
--- a/databases/jdb/Makefile Thu Jan 20 19:04:15 2005 +0000
+++ b/databases/jdb/Makefile Thu Jan 20 20:35:24 2005 +0000
@@ -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 -r 14e6ff209cca -r 946274f8c848 databases/jdb/PLIST
--- a/databases/jdb/PLIST Thu Jan 20 19:04:15 2005 +0000
+++ b/databases/jdb/PLIST Thu Jan 20 20:35:24 2005 +0000
@@ -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/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 -r 14e6ff209cca -r 946274f8c848 databases/jdb/distinfo
--- a/databases/jdb/distinfo Thu Jan 20 19:04:15 2005 +0000
+++ b/databases/jdb/distinfo Thu Jan 20 20:35:24 2005 +0000
@@ -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 -r 14e6ff209cca -r 946274f8c848 databases/jdb/patches/patch-aa
--- a/databases/jdb/patches/patch-aa Thu Jan 20 19:04:15 2005 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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) {
Home |
Main Index |
Thread Index |
Old Index