summaryrefslogtreecommitdiff
path: root/MAINTAINERS
diff options
context:
space:
mode:
authorPatrick McCarty <patrick.mccarty@linux.intel.com>2013-04-12 10:40:25 -0700
committerPatrick McCarty <patrick.mccarty@linux.intel.com>2013-04-12 10:40:25 -0700
commit793eb3eb123664017100dfb1a5407f0da639a339 (patch)
tree2a6511443d115418007151f95f3a0fa8f5300974 /MAINTAINERS
downloadctags-793eb3eb123664017100dfb1a5407f0da639a339.tar.gz
ctags-793eb3eb123664017100dfb1a5407f0da639a339.tar.bz2
ctags-793eb3eb123664017100dfb1a5407f0da639a339.zip
Imported Upstream version 5.8upstream/5.8upstream
Diffstat (limited to 'MAINTAINERS')
-rw-r--r--MAINTAINERS88
1 files changed, 88 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
new file mode 100644
index 0000000..d46b50b
--- /dev/null
+++ b/MAINTAINERS
@@ -0,0 +1,88 @@
+The following individuals are registered as developers for the maintenance of
+Exuberant Ctags. They are listed by their SourgeForge username and by the
+To send email to any one of them, send it to <username@users.sourceforge.net>.
+
+Ctags SourgeForge Full
+Parser username Name
+---------- ----------- -----
+Ant dfishburn David Fishburn
+AWK jkoshy Joseph Koshy
+Basic elias Elias Pschernig
+C# elliotth Elliott Hughes
+DosBatch dfishburn David Fishburn
+Flex dfishburn David Fishburn
+Java elliotth Elliott Hughes
+JavaScript dfishburn David Fishburn
+MATlAB dfishburn David Fishburn
+OCaml vberthoux Vincent Berthoux
+Perl perlguy0 Dmitri Tikhonov
+PHP jafl John Lindal
+Python elias Elias Pschernig
+Ruby elliotth Elliott Hughes
+SML jkoshy Joseph Koshy
+SQL dfishburn David Fishburn
+TeX dfishburn David Fishburn
+Vim dfishburn David Fishburn
+All else dhiebert Darren Hiebert
+
+How To Build & Test Like A Maintainer
+=====================================
+
+Prerequisites
+-------------
+
+ Debian/Ubuntu:
+
+ sudo apt-get install build-essential subversion autoconf
+
+ Mac OS:
+
+ Install the Xcode developer tools, available here:
+ http://developer.apple.com/tools/download/
+
+ RedHat:
+
+ up2date --nosig subversion autoheader autoconf
+
+ Windows:
+
+ Install Cygwin plus its Subversion and GNU Make packages.
+
+Building
+--------
+
+ First time:
+
+ svn co https://ctags.svn.sourceforget.net/svnroot/ctags/trunk ctags
+ # Miss off the "/trunk" above if you want access to old releases or the
+ # web site.
+ cd ctags
+ autoheader
+ autoconf
+ ./configure --enable-maintainer-mode
+ make -j
+
+ Later:
+
+ cd ctags
+ svn update
+ make -j
+
+Testing
+-------
+
+ First time:
+
+ cd ctags
+ cp /usr/bin/ctags ctags.ref
+ # Edit "testing.mak" so CTAGS_TEST = ./dctags
+ # Edit "testing.mak" so CTAGS_REF = ./ctags.ref
+ make test
+
+ Later:
+
+ make test
+
+ Whenever you're happy with the results and update/commit:
+
+ cp ./dctags ./ctags.ref