[Pkg-jed-commit] r727 - jed/branches/0.99.19/debian

Rafael Laboissiere rafael at alioth.debian.org
Tue May 22 20:43:15 UTC 2007


Author: rafael
Date: 2007-05-22 20:43:14 +0000 (Tue, 22 May 2007)
New Revision: 727

Modified:
   jed/branches/0.99.19/debian/rules
Log:
Improved get-orig-source rule:
* Remove trunk directory if it exists already (otherwise svn export fails)
* Use http: instead of svn: protocol.  This works fine and seems to be
  more robust as regards the svn.gna.org server.

Modified: jed/branches/0.99.19/debian/rules
===================================================================
--- jed/branches/0.99.19/debian/rules	2007-05-22 20:21:48 UTC (rev 726)
+++ jed/branches/0.99.19/debian/rules	2007-05-22 20:43:14 UTC (rev 727)
@@ -177,7 +177,8 @@
 	fi
 
 get-orig-source:
-	svn export svn://svn.gna.org/svn/jed/trunk
+	test -d trunk && rm -rf trunk || true
+	svn export http://svn.gna.org/svn/jed/trunk
 	REV=$$(perl -n -e 'last if /{{{ Previous Versions/;		\
 		$$v{$$1} = 1 if /^(\d+)\./; 				\
 		END { print ((sort {$$b <=> $$a} keys %v) [0]) }'	\




More information about the Pkg-jed-commit mailing list