head	1.2;
access;
symbols
	db-4_2_52:1.1
	rpm-4_3_1-start:1.1
	rpm-4_3:1.1.0.2;
locks; strict;
comment	@# @;


1.2
date	2004.10.15.23.22.46;	author jbj;	state dead;
branches;
next	1.1;

1.1
date	2003.12.15.21.42.41;	author jbj;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Out with the old ...
@
text
@#!/bin/sh -

if [ $# -ne 1 -o ! -f $1/dbinc/db.in ] ; then
    DBDIR=..
else
    DBDIR=$1
fi

trap 'rm -rf $TMP; exit 0' 0 1 2 3 13 15
TMP=./_tmp
mkdir -p $TMP

for f in $DBDIR/java/src/com/sleepycat/db/*.java ; do
	a=`basename $f`
	# echo "Creating new API call while deprecating the old: $a"
	perl ./camelize.pl -d $f > $TMP/$a
	mv -f $TMP/$a $f
done

for f in $DBDIR/java/src/com/sleepycat/db/*.java ; do
	a=`basename $f`
	# echo "Updating method calls to new API: $a"
	perl ./camelize.pl -c $f > $TMP/$a
	mv -f $TMP/$a $f
done
@


1.1
log
@- upgrade to db-4.2.52.
@
text
@@

