diff -Nru db5.3-5.3.28+dfsg1/debian/changelog db5.3-5.3.28+dfsg2/debian/changelog --- db5.3-5.3.28+dfsg1/debian/changelog 2022-06-30 19:41:48.000000000 +0000 +++ db5.3-5.3.28+dfsg2/debian/changelog 2023-01-16 20:25:20.000000000 +0000 @@ -1,3 +1,11 @@ +db5.3 (5.3.28+dfsg2-1) unstable; urgency=medium + + * Eliminate a shell script that has a non-free license + * d/copyright: Join redundant Comments + * Adopt the package (Closes: #1014386) + + -- Bastian Germann Mon, 16 Jan 2023 21:25:20 +0100 + db5.3 (5.3.28+dfsg1-0.10) unstable; urgency=medium * Non-maintainer upload diff -Nru db5.3-5.3.28+dfsg1/debian/control db5.3-5.3.28+dfsg2/debian/control --- db5.3-5.3.28+dfsg1/debian/control 2022-06-30 19:36:01.000000000 +0000 +++ db5.3-5.3.28+dfsg2/debian/control 2023-01-16 20:25:20.000000000 +0000 @@ -1,8 +1,7 @@ Source: db5.3 Section: libs Priority: optional -Maintainer: Debian Berkeley DB Team -Uploaders: Ondřej Surý +Maintainer: Bastian Germann Standards-Version: 3.9.6 # For DEB_STAGE=stage1 build tcl-dev, javahelper, default-jdk can be dropped Build-Depends: debhelper (>= 10), diff -Nru db5.3-5.3.28+dfsg1/debian/copyright db5.3-5.3.28+dfsg2/debian/copyright --- db5.3-5.3.28+dfsg1/debian/copyright 2022-06-30 18:31:54.000000000 +0000 +++ db5.3-5.3.28+dfsg2/debian/copyright 2023-01-16 20:25:20.000000000 +0000 @@ -4,13 +4,15 @@ http://www.oracle.com/technology/software/products/berkeley-db/db/index.html 3rd party download area available at https://github.com/berkeleydb/libdb/releases . - Eliminate prebuilt binaries that need a Visual Studio plugin to build from source. -Files-Excluded: docs/csharp/fti -Comment: The following is the license that applies to this copy of the Berkeley DB software. For a license to use the Berkeley DB software under conditions other than those described here, or to purchase support for this software, please contact Oracle at berkeleydb-info_us@oracle.com. + . + Eliminate prebuilt binaries that need a Visual Studio plugin to build from source. + Eliminate a shell script that has a non-free license. +Files-Excluded: docs/csharp/fti + test/xa/src2/run.sh Upstream-Contact: berkeleydb-info_us@oracle.com Files: * diff -Nru db5.3-5.3.28+dfsg1/test/xa/src2/run.sh db5.3-5.3.28+dfsg2/test/xa/src2/run.sh --- db5.3-5.3.28+dfsg1/test/xa/src2/run.sh 2013-09-09 15:35:12.000000000 +0000 +++ db5.3-5.3.28+dfsg2/test/xa/src2/run.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,102 +0,0 @@ -#!/bin/ksh -# Copyright (c) 1997 BEA Systems, Inc. -# All Rights Reserved -# -# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF -# BEA Systems, Inc. -# The copyright notice above does not evidence any -# actual or intended publication of such source code. - -# ident "@(#) qa/sanity_tests/apps/tranapp/runme.sh $Revision: 1.3 $" -# - -#set -x -#* Script that will be executed for SDK on specified machine -# Run test 2. - -msg() -{ - test "$DVERBOSE" == 1 && { - echo "========" - echo "======== $1" - echo "========" - } -} - -init_tmadmin() -{ -tmadmin << END_OF_TMADMIN - crdl -z $TLOGDEVICE -b 2560 - crlog -m L1 -END_OF_TMADMIN -} - -machnm=`uname -n` - -# Everything else is done in run/bin. -cd $RUN/bin - -msg "Building the application server and client ..." -test "$DVERBOSE" == 1 && { - COMPILE_FLAGS="-DVERBOSE" - DVERBOSE_FLAG="-v" -} -CFLAGS="$COMPILE_FLAGS -I$DB_INSTALL/include -L$DB_INSTALL/lib"; export CFLAGS -UTILITY_FILES="-f ../../utilities/bdb_xa_util.c" - -buildserver $DVERBOSE_FLAG $UTILITY_FILES \ --f ../../src2/bdb1.c -o bdb1 -r "BERKELEY-DB" -s WRITE -s CURSOR -test "$?" -eq 0 || { - echo "FAIL: buildserver 1 failed." - exit 1 -} - -buildserver $DVERBOSE_FLAG $UTILITY_FILES \ --f ../../src2/bdb2.c -o bdb2 -r "BERKELEY-DB" -s WRITE2 -test "$?" -eq 0 || { - echo "FAIL: buildserver 2 failed." - exit 1 -} - -buildclient $DVERBOSE_FLAG $UTILITY_FILES \ --r "BERKELEY-DB" -f ../../src2/client.c -o client -test "$?" -eq 0 || { - echo "FAIL: buildclient failed." - exit 1 -} - -msg "BUILDING THE RESOURCE MANAGER." -buildtms -o TMS_BDB -r "BERKELEY-DB" - -init_tmadmin - -msg "BOOTING TUXEDO" -tmboot -y || exit 1 - -msg "STARTING SECOND TEST" - -exitval=0 - -msg "RUN CLIENTS" -# Test that multiple processes can execute without error -./client -s WRITE -m hello -t 800 2>> stderr -#./client -s WRITE -m hello2 -t 1000 2>> stderr - - -msg "SHUTTING DOWN THE TRANSACTION MANAGER." -echo 'y' | tmshutdown - -# Copy out any server output. -echo "STDOUT:" -cat stdout - -# Copy out any server errors. -test -s stderr && { - echo "STDERR:" - cat stderr - echo "FAIL: stderr file not empty" - exitval=1 -} - -exit $exitval -