SF.net SVN: geany-plugins:[1515] trunk/geany-plugins

colombanw at users.sourceforge.net colombanw at xxxxx
Tue Aug 17 00:35:20 UTC 2010


Revision: 1515
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1515&view=rev
Author:   colombanw
Date:     2010-08-17 00:35:20 +0000 (Tue, 17 Aug 2010)

Log Message:
-----------
GeanyGenDoc: Don't pre-process README anymore

Pre-processing the README isn't needed anymore since the version
number was removed, and this version number was wrong anyway since
the the plugin is part of Geany-plugins.

Modified Paths:
--------------
    trunk/geany-plugins/build/geanygendoc.m4
    trunk/geany-plugins/geanygendoc/ChangeLog

Added Paths:
-----------
    trunk/geany-plugins/geanygendoc/README

Removed Paths:
-------------
    trunk/geany-plugins/geanygendoc/README.in

Modified: trunk/geany-plugins/build/geanygendoc.m4
===================================================================
--- trunk/geany-plugins/build/geanygendoc.m4	2010-08-17 00:34:54 UTC (rev 1514)
+++ trunk/geany-plugins/build/geanygendoc.m4	2010-08-17 00:35:20 UTC (rev 1515)
@@ -50,7 +50,6 @@
     GP_STATUS_PLUGIN_ADD([GeanyGenDoc], [$enable_geanygendoc])
 
     AC_CONFIG_FILES([
-        geanygendoc/README
         geanygendoc/Makefile
         geanygendoc/src/Makefile
         geanygendoc/data/Makefile

Modified: trunk/geany-plugins/geanygendoc/ChangeLog
===================================================================
--- trunk/geany-plugins/geanygendoc/ChangeLog	2010-08-17 00:34:54 UTC (rev 1514)
+++ trunk/geany-plugins/geanygendoc/ChangeLog	2010-08-17 00:35:20 UTC (rev 1515)
@@ -11,6 +11,10 @@
     Add a small sentence in the introduction to guide the user in her read.
   * README.in, HACKING:
     Update README.in, add HACKING.
+  * ../build/geanygendoc.m4, README.in -> README:
+    Don't pre-process README anymore. It isn't needed anymore since the version
+    number was removed, and this version number was wrong anyway since the the
+    plugin is part of Geany-plugins.
 
 
 2010-06-14  Colomban Wendling  <ban(at)herbesfolles(dot)org>

Copied: trunk/geany-plugins/geanygendoc/README (from rev 1514, trunk/geany-plugins/geanygendoc/README.in)
===================================================================
--- trunk/geany-plugins/geanygendoc/README	                        (rev 0)
+++ trunk/geany-plugins/geanygendoc/README	2010-08-17 00:35:20 UTC (rev 1515)
@@ -0,0 +1,93 @@
+===========
+GeanyGenDoc
+===========
+
+.. contents::
+
+
+About
+=====
+
+GeanyGenDoc is a plugin for Geany that aims to help code documentation by
+automatically generating documentation comment basis from the source code.
+
+
+Requirements
+============
+
+You will need the following packages to build GeanyGenDoc:
+
+* Geany >= 0.19 (http://www.geany.org/)
+* GTK+ >= 2.12 (http://www.gtk.org)
+* GLib >= 2.14 (http://www.gtk.org)
+* GIO >= 2.18 (http://www.gtk.org)
+* CTPL >= 0.2 (http://ctpl.tuxfamily.org/)
+* A working C compiler (GCC for example, http://gcc.gnu.org/)
+* A working make implementation (GNU make is recommended,
+  http://www.gnu.org/software/make/)
+
+You may also want the following packages that enables extra features:
+
+* Docutils (http://docutils.sourceforge.net/) -- or another implementation of
+  rst2html -- is needed to (re)generate the HTML manual.
+
+
+Installation
+============
+
+Compiling and installing the plugin is done by running the following
+commands from the top-level directory (it is the parent of the one
+containing this file if you're building GeanyGenDoc as part of Geany-plugins):
+
+::
+
+ $ ./configure
+ $ make
+ $ make install
+
+For more configuration details, run
+
+::
+
+ $ ./configure --help
+
+For detailed instructions, see the INSTALL file.
+
+
+Usage
+=====
+
+For more details about GeanyGenDoc, see the user manual that can be found in
+the docs/ subirectory or opened with the menu item `Tools → Documentation
+Generator → Open Manual` from the Geany window if you already runs GeanyGenDoc.
+
+
+Hacking
+=======
+
+See the HACKING file for information on how to get started on hacking
+GeanyGenDoc internals.
+
+
+License
+=======
+
+GeanyGenDoc is distributed under the terms of the GNU General Public License
+as published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version. You should have received a copy
+of the GNU General Public License along with GeanyGenDoc.  If not, see
+<http://www.gnu.org/licenses/>.
+
+
+Contact
+=======
+
+You can mail me at <ban(at)herbesfolles(dot)org>, and I may also be on the
+#geany channel on FreeNode, under the `b4n` nickname.
+
+
+Bug reports and feature requests
+--------------------------------
+
+To report a bug or ask for a new feature, please use the Geany-Plugins tracker
+on SourceForge: http://sourceforge.net/tracker/?group_id=222729

Deleted: trunk/geany-plugins/geanygendoc/README.in
===================================================================
--- trunk/geany-plugins/geanygendoc/README.in	2010-08-17 00:34:54 UTC (rev 1514)
+++ trunk/geany-plugins/geanygendoc/README.in	2010-08-17 00:35:20 UTC (rev 1515)
@@ -1,93 +0,0 @@
-===========
-GeanyGenDoc
-===========
-
-.. contents::
-
-
-About
-=====
-
-GeanyGenDoc is a plugin for Geany that aims to help code documentation by
-automatically generating documentation comment basis from the source code.
-
-
-Requirements
-============
-
-You will need the following packages to build GeanyGenDoc:
-
-* Geany >= 0.19 (http://www.geany.org/)
-* GTK+ >= 2.12 (http://www.gtk.org)
-* GLib >= 2.14 (http://www.gtk.org)
-* GIO >= 2.18 (http://www.gtk.org)
-* CTPL >= 0.2 (http://ctpl.tuxfamily.org/)
-* A working C compiler (GCC for example, http://gcc.gnu.org/)
-* A working make implementation (GNU make is recommended,
-  http://www.gnu.org/software/make/)
-
-You may also want the following packages that enables extra features:
-
-* Docutils (http://docutils.sourceforge.net/) -- or another implementation of
-  rst2html -- is needed to (re)generate the HTML manual.
-
-
-Installation
-============
-
-Compiling and installing the plugin is done by running the following
-commands from the top-level directory (it is the parent of the one
-containing this file if you're building GeanyGenDoc as part of Geany-plugins):
-
-::
-
- $ ./configure
- $ make
- $ make install
-
-For more configuration details, run
-
-::
-
- $ ./configure --help
-
-For detailed instructions, see the INSTALL file.
-
-
-Usage
-=====
-
-For more details about GeanyGenDoc, see the user manual that can be found in
-the docs/ subirectory or opened with the menu item `Tools → Documentation
-Generator → Open Manual` from the Geany window if you already runs GeanyGenDoc.
-
-
-Hacking
-=======
-
-See the HACKING file for information on how to get started on hacking
-GeanyGenDoc internals.
-
-
-License
-=======
-
-GeanyGenDoc is distributed under the terms of the GNU General Public License
-as published by the Free Software Foundation, either version 3 of the
-License, or (at your option) any later version. You should have received a copy
-of the GNU General Public License along with GeanyGenDoc.  If not, see
-<http://www.gnu.org/licenses/>.
-
-
-Contact
-=======
-
-You can mail me at <ban(at)herbesfolles(dot)org>, and I may also be on the
-#geany channel on FreeNode, under the `b4n` nickname.
-
-
-Bug reports and feature requests
---------------------------------
-
-To report a bug or ask for a new feature, please use the Geany-Plugins tracker
-on SourceForge: http://sourceforge.net/tracker/?group_id=222729


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list