/usr/share/svn-buildpackage/contrib/deblayout2svnprops is in svn-buildpackage 0.8.5+nmu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh
help ()
{
	echo "$0 allows to port the information from debian/svn-deblayout into svn properties."
	echo "Storing layout information in svn properties is supported since 0.6.16."
	echo
	echo "Usage: $0 debian/svn-deblayout"
	exit 1
}
[ -z "$1" ] && help
cat "$1" | while read A
do
	PROP=`echo $A | sed 's/=.*$//'`
	VAL=`echo $A | sed 's/^.*=//'`
	svn ps "svn-bp:$PROP" "$VAL" debian
done
 |