lorikeet-heimdal: remove obsolete script for importing from svn.
authorJelmer Vernooij <jelmer@samba.org>
Tue, 21 Dec 2010 14:17:30 +0000 (15:17 +0100)
committerStefan Metzmacher <metze@samba.org>
Wed, 29 Apr 2020 09:07:57 +0000 (11:07 +0200)
IMPORT-HEIMDAL.sh [deleted file]

diff --git a/IMPORT-HEIMDAL.sh b/IMPORT-HEIMDAL.sh
deleted file mode 100644 (file)
index fee1cea..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-hpath=svn://svn.h5l.se/heimdal/trunk/heimdal
-spath=svn+ssh://svn.samba.org/data/svn/lorikeet/trunk/heimdal
-
-rm -rf heimdal-import heimdal-lorikeet
-
-l=`pwd`/log
-echo "heimdal import `date`" > ${l}
-svn checkout $hpath heimdal-import >> ${l} || exit 1
-svn checkout $spath heimdal-lorikeet >> ${l} || exit 1
-(cd heimdal-lorikeet && find . -type f -a ! -path '*/.svn/*' | xargs rm)
-(cd heimdal-lorikeet && \
-  svn update heimdal-lorikeet.diff HEIMDAL-LICENCE.txt IMPORT-HEIMDAL.sh)
-cd heimdal-import || exit 1
-hsvnrev=`svn info  | awk '/^Revision:/ { print $2; }'`
-test "X$hsvnrev" = "X" && exit 1
-(find . -name '.svn' -a -type d | xargs rm -r)
-(tar cf - *) | (cd ../heimdal-lorikeet && tar xf - ) || exit 1
-cd ../heimdal-lorikeet
-svn status > status
-grep '^\?' status | cut -b2- | xargs svn add >> ${l}
-grep '^\!' status | cut -b2- | xargs svn rm >> ${l}
-rm status
-svn rm status
-(cd lib/roken && perl -pi -e 's,"roken.h",\<roken.h\>,g' *.c)
-perl -pi -e 's@AC_INIT\(\[[^\]]*\],\[([^\]]*)\],\[([^\)]*)\]\)@AC_INIT([Lorikeet-Heimdal, modified for Samba4],[\1-samba],[samba-technical\@samba.org])@' configure.in || exit 1
-
-
-echo "now run:"
-echo "cd heimdal-lorikeet"
-echo "patch -p0 < heimdal-lorikeet.diff"
-echo "and fix up the damage"
-echo "svn commit -m \"Merged with Heimdal svn revision $hsvnrev\""
-
-exit 0