Index: ossp-pkg/shiela/shiela-install.sh RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela-install.sh,v rcsdiff -q -kk '-r1.26' '-r1.27' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela-install.sh,v' 2>/dev/null --- shiela-install.sh 2004/05/07 07:33:50 1.26 +++ shiela-install.sh 2004/05/07 07:45:56 1.27 @@ -441,6 +441,7 @@ Program sendmail ${V_tool_sendmail}; Program cvs ${V_tool_cvs}; Program diff ${V_tool_diff}; + Program xdelta ${V_tool_xdelta}; Program uuencode ${V_tool_uuencode}; }; Index: ossp-pkg/shiela/shiela-test.sh RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela-test.sh,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela-test.sh,v' 2>/dev/null --- shiela-test.sh 2004/05/07 07:34:42 1.1 +++ shiela-test.sh 2004/05/07 07:45:56 1.2 @@ -212,6 +212,19 @@ cvs tag BAR_1_2 bar.txt ) +# binary file handling +header "Handling Binary Files in CVS Repository" +( cd foo || exit 1 + echo "quux" >quux.bin + cvs add -kb quux.bin + cvs ci -m "add binary file" + echo "quux2" >quux.bin + cvs ci -m "change binary file" + rm quux.bin + cvs rm quux.bin + cvs ci -m "remove binary file" +) + # cleanup cd $oldpwd rm -rf $path_test >/dev/null 2>&1 || true