[geos-commits] r3277 - trunk

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Apr 13 04:26:31 EDT 2011


Author: strk
Date: 2011-04-13 01:26:31 -0700 (Wed, 13 Apr 2011)
New Revision: 3277

Removed:
   trunk/author.sh
Modified:
   trunk/.gitignore
   trunk/Makefile.am
Log:
Drop author.sh, add a rule to create authors.git instead

Modified: trunk/.gitignore
===================================================================
--- trunk/.gitignore	2011-04-13 07:37:36 UTC (rev 3276)
+++ trunk/.gitignore	2011-04-13 08:26:31 UTC (rev 3277)
@@ -45,3 +45,4 @@
 include/config.h
 include/config.h.in
 php/test/phpunit
+authors.git

Modified: trunk/Makefile.am
===================================================================
--- trunk/Makefile.am	2011-04-13 07:37:36 UTC (rev 3276)
+++ trunk/Makefile.am	2011-04-13 08:26:31 UTC (rev 3277)
@@ -28,3 +28,9 @@
 
 apidoc doxygen:
 	cd doc && make $@
+
+authors.git: authors.svn
+	cd $(srcdir) && sed -e 's/:/ = /' authors.svn > authors.git
+
+svnrebase: authors.git
+	cd $(srcdir) && git svn rebase --authors-file authors.git

Deleted: trunk/author.sh
===================================================================
--- trunk/author.sh	2011-04-13 07:37:36 UTC (rev 3276)
+++ trunk/author.sh	2011-04-13 08:26:31 UTC (rev 3277)
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-if test x"$1" = "x"; then
-  echo "Usage: $0 <nick>" >&2
-  exit 1
-fi
-
-authors_file="`dirname $0`/authors.svn"
-
-if test ! -e "${authors_file}"; then
-  echo "Authors file ${authors_file} does not exist" >&2
-  exit 1
-fi
-
-nick="$1"
-grep  "^${nick}" "${authors_file}" | cut -d: -f2



More information about the geos-commits mailing list