[gnumeric] Plugins: rename derivatives to fn-derivatives, numtheory to fn-numtheory



commit 38e607e5df4eab32870a7c971b82c677cfc92f26
Author: Morten Welinder <terra gnome org>
Date:   Wed Aug 19 21:30:29 2009 -0400

    Plugins: rename derivatives to fn-derivatives, numtheory to fn-numtheory

 configure.in                                       |    4 ++--
 plugins/Makefile.am                                |    4 ++--
 plugins/derivatives/tests.gnumeric                 |  Bin 25733 -> 0 bytes
 plugins/{derivatives => fn-derivatives}/.gitignore |    0
 plugins/{derivatives => fn-derivatives}/ChangeLog  |    0
 .../{derivatives => fn-derivatives}/Makefile.am    |    8 ++++----
 plugins/{derivatives => fn-derivatives}/options.c  |    0
 .../{derivatives => fn-derivatives}/plugin.xml.in  |    0
 plugins/{numtheory => fn-numtheory}/.gitignore     |    0
 plugins/{numtheory => fn-numtheory}/ChangeLog      |    0
 plugins/{numtheory => fn-numtheory}/Makefile.am    |    8 ++++----
 .../doc/C/funct-ref.xml                            |    0
 .../doc/C/number_theory/bitand.xml                 |    0
 .../doc/C/number_theory/bitand_title.xml           |    0
 .../doc/C/number_theory/bitlshift.xml              |    0
 .../doc/C/number_theory/bitlshift_title.xml        |    0
 .../doc/C/number_theory/bitor.xml                  |    0
 .../doc/C/number_theory/bitor_title.xml            |    0
 .../doc/C/number_theory/bitrshift.xml              |    0
 .../doc/C/number_theory/bitrshift_title.xml        |    0
 .../doc/C/number_theory/bitxor.xml                 |    0
 .../doc/C/number_theory/bitxor_title.xml           |    0
 .../doc/C/number_theory/d.xml                      |    0
 .../doc/C/number_theory/d_title.xml                |    0
 .../doc/C/number_theory/isprime.xml                |    0
 .../doc/C/number_theory/isprime_title.xml          |    0
 .../doc/C/number_theory/ithprime.xml               |    0
 .../doc/C/number_theory/ithprime_title.xml         |    0
 .../doc/C/number_theory/mu.xml                     |    0
 .../doc/C/number_theory/mu_title.xml               |    0
 .../doc/C/number_theory/phi.xml                    |    0
 .../doc/C/number_theory/phi_title.xml              |    0
 .../doc/C/number_theory/pi.xml                     |    0
 .../doc/C/number_theory/pi_title.xml               |    0
 .../doc/C/number_theory/sigma.xml                  |    0
 .../doc/C/number_theory/sigma_title.xml            |    0
 plugins/{numtheory => fn-numtheory}/doc/ChangeLog  |    0
 plugins/{numtheory => fn-numtheory}/numtheory.c    |    0
 plugins/{numtheory => fn-numtheory}/plugin.xml.in  |    0
 39 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/configure.in b/configure.in
index 22de7a2..bbb7da4 100644
--- a/configure.in
+++ b/configure.in
@@ -1038,10 +1038,10 @@ doc/C/figures/Makefile
 doc/C/figures/icons/Makefile
 doc/developer/Makefile
 plugins/Makefile
-plugins/numtheory/Makefile
 plugins/fn-complex/Makefile
 plugins/fn-database/Makefile
 plugins/fn-date/Makefile
+plugins/fn-derivatives/Makefile
 plugins/fn-eng/Makefile
 plugins/fn-erlang/Makefile
 plugins/fn-financial/Makefile
@@ -1049,12 +1049,12 @@ plugins/fn-info/Makefile
 plugins/fn-logical/Makefile
 plugins/fn-lookup/Makefile
 plugins/fn-math/Makefile
+plugins/fn-numtheory/Makefile
 plugins/fn-r/Makefile
 plugins/fn-stat/Makefile
 plugins/fn-string/Makefile
 plugins/fn-random/Makefile
 plugins/fn-tsa/Makefile
-plugins/derivatives/Makefile
 plugins/sc/Makefile
 plugins/sylk/Makefile
 plugins/excel/Makefile
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 9416a15..14b4fab 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -11,9 +11,9 @@ if WITH_PARADOX
   SUBDIRS_FILE_FORMATS += paradox
 endif
 
-SUBDIRS_FUNCTIONS = numtheory fn-database fn-date fn-eng fn-erlang \
+SUBDIRS_FUNCTIONS = fn-numtheory fn-database fn-date fn-eng fn-erlang \
 	fn-financial fn-info fn-logical fn-complex fn-lookup fn-math \
-	fn-r fn-stat fn-string fn-random fn-tsa derivatives
+	fn-r fn-stat fn-string fn-random fn-tsa fn-derivatives
 
 if WITH_GDA
   SUBDIRS_FUNCTIONS += gda
diff --git a/plugins/derivatives/.gitignore b/plugins/fn-derivatives/.gitignore
similarity index 100%
rename from plugins/derivatives/.gitignore
rename to plugins/fn-derivatives/.gitignore
diff --git a/plugins/derivatives/ChangeLog b/plugins/fn-derivatives/ChangeLog
similarity index 100%
rename from plugins/derivatives/ChangeLog
rename to plugins/fn-derivatives/ChangeLog
diff --git a/plugins/derivatives/Makefile.am b/plugins/fn-derivatives/Makefile.am
similarity index 60%
rename from plugins/derivatives/Makefile.am
rename to plugins/fn-derivatives/Makefile.am
index 09df350..f1b2781 100644
--- a/plugins/derivatives/Makefile.am
+++ b/plugins/fn-derivatives/Makefile.am
@@ -3,11 +3,11 @@ AM_CPPFLAGS = \
     -I$(top_srcdir)/src	-I$(top_builddir)/src	\
     $(GNUMERIC_CFLAGS)
 
-gnumeric_plugin_derivativesdir = $(gnumeric_plugindir)/derivatives
+gnumeric_plugin_derivativesdir = $(gnumeric_plugindir)/fn-derivatives
 xmldir = $(gnumeric_plugin_derivativesdir)
-gnumeric_plugin_derivatives_LTLIBRARIES = derivatives.la
-derivatives_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS)
-derivatives_la_SOURCES = options.c
+gnumeric_plugin_derivatives_LTLIBRARIES = plugin.la
+plugin_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS)
+plugin_la_SOURCES = options.c
 
 xml_in_files = plugin.xml.in
 xml_DATA = $(xml_in_files:.xml.in=.xml)
diff --git a/plugins/derivatives/options.c b/plugins/fn-derivatives/options.c
similarity index 100%
rename from plugins/derivatives/options.c
rename to plugins/fn-derivatives/options.c
diff --git a/plugins/derivatives/plugin.xml.in b/plugins/fn-derivatives/plugin.xml.in
similarity index 100%
rename from plugins/derivatives/plugin.xml.in
rename to plugins/fn-derivatives/plugin.xml.in
diff --git a/plugins/numtheory/.gitignore b/plugins/fn-numtheory/.gitignore
similarity index 100%
rename from plugins/numtheory/.gitignore
rename to plugins/fn-numtheory/.gitignore
diff --git a/plugins/numtheory/ChangeLog b/plugins/fn-numtheory/ChangeLog
similarity index 100%
rename from plugins/numtheory/ChangeLog
rename to plugins/fn-numtheory/ChangeLog
diff --git a/plugins/numtheory/Makefile.am b/plugins/fn-numtheory/Makefile.am
similarity index 61%
rename from plugins/numtheory/Makefile.am
rename to plugins/fn-numtheory/Makefile.am
index 1793582..2e46bd2 100644
--- a/plugins/numtheory/Makefile.am
+++ b/plugins/fn-numtheory/Makefile.am
@@ -3,11 +3,11 @@ AM_CPPFLAGS = \
     -I$(top_srcdir)/src	-I$(top_builddir)/src	\
     $(GNUMERIC_CFLAGS)
 
-gnumeric_plugin_numtheorydir = $(gnumeric_plugindir)/numtheory
+gnumeric_plugin_numtheorydir = $(gnumeric_plugindir)/fn-numtheory
 xmldir = $(gnumeric_plugin_numtheorydir)
-gnumeric_plugin_numtheory_LTLIBRARIES = numtheory.la
-numtheory_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS)
-numtheory_la_SOURCES = numtheory.c
+gnumeric_plugin_numtheory_LTLIBRARIES = plugin.la
+plugin_la_LDFLAGS = -module $(GNUMERIC_PLUGIN_LDFLAGS)
+plugin_la_SOURCES = numtheory.c
 
 xml_in_files = plugin.xml.in
 xml_DATA = $(xml_in_files:.xml.in=.xml)
diff --git a/plugins/numtheory/doc/C/funct-ref.xml b/plugins/fn-numtheory/doc/C/funct-ref.xml
similarity index 100%
rename from plugins/numtheory/doc/C/funct-ref.xml
rename to plugins/fn-numtheory/doc/C/funct-ref.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitand.xml b/plugins/fn-numtheory/doc/C/number_theory/bitand.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitand.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitand.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitand_title.xml b/plugins/fn-numtheory/doc/C/number_theory/bitand_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitand_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitand_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitlshift.xml b/plugins/fn-numtheory/doc/C/number_theory/bitlshift.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitlshift.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitlshift.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitlshift_title.xml b/plugins/fn-numtheory/doc/C/number_theory/bitlshift_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitlshift_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitlshift_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitor.xml b/plugins/fn-numtheory/doc/C/number_theory/bitor.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitor.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitor.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitor_title.xml b/plugins/fn-numtheory/doc/C/number_theory/bitor_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitor_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitor_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitrshift.xml b/plugins/fn-numtheory/doc/C/number_theory/bitrshift.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitrshift.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitrshift.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitrshift_title.xml b/plugins/fn-numtheory/doc/C/number_theory/bitrshift_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitrshift_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitrshift_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitxor.xml b/plugins/fn-numtheory/doc/C/number_theory/bitxor.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitxor.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitxor.xml
diff --git a/plugins/numtheory/doc/C/number_theory/bitxor_title.xml b/plugins/fn-numtheory/doc/C/number_theory/bitxor_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/bitxor_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/bitxor_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/d.xml b/plugins/fn-numtheory/doc/C/number_theory/d.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/d.xml
rename to plugins/fn-numtheory/doc/C/number_theory/d.xml
diff --git a/plugins/numtheory/doc/C/number_theory/d_title.xml b/plugins/fn-numtheory/doc/C/number_theory/d_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/d_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/d_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/isprime.xml b/plugins/fn-numtheory/doc/C/number_theory/isprime.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/isprime.xml
rename to plugins/fn-numtheory/doc/C/number_theory/isprime.xml
diff --git a/plugins/numtheory/doc/C/number_theory/isprime_title.xml b/plugins/fn-numtheory/doc/C/number_theory/isprime_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/isprime_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/isprime_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/ithprime.xml b/plugins/fn-numtheory/doc/C/number_theory/ithprime.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/ithprime.xml
rename to plugins/fn-numtheory/doc/C/number_theory/ithprime.xml
diff --git a/plugins/numtheory/doc/C/number_theory/ithprime_title.xml b/plugins/fn-numtheory/doc/C/number_theory/ithprime_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/ithprime_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/ithprime_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/mu.xml b/plugins/fn-numtheory/doc/C/number_theory/mu.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/mu.xml
rename to plugins/fn-numtheory/doc/C/number_theory/mu.xml
diff --git a/plugins/numtheory/doc/C/number_theory/mu_title.xml b/plugins/fn-numtheory/doc/C/number_theory/mu_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/mu_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/mu_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/phi.xml b/plugins/fn-numtheory/doc/C/number_theory/phi.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/phi.xml
rename to plugins/fn-numtheory/doc/C/number_theory/phi.xml
diff --git a/plugins/numtheory/doc/C/number_theory/phi_title.xml b/plugins/fn-numtheory/doc/C/number_theory/phi_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/phi_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/phi_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/pi.xml b/plugins/fn-numtheory/doc/C/number_theory/pi.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/pi.xml
rename to plugins/fn-numtheory/doc/C/number_theory/pi.xml
diff --git a/plugins/numtheory/doc/C/number_theory/pi_title.xml b/plugins/fn-numtheory/doc/C/number_theory/pi_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/pi_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/pi_title.xml
diff --git a/plugins/numtheory/doc/C/number_theory/sigma.xml b/plugins/fn-numtheory/doc/C/number_theory/sigma.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/sigma.xml
rename to plugins/fn-numtheory/doc/C/number_theory/sigma.xml
diff --git a/plugins/numtheory/doc/C/number_theory/sigma_title.xml b/plugins/fn-numtheory/doc/C/number_theory/sigma_title.xml
similarity index 100%
rename from plugins/numtheory/doc/C/number_theory/sigma_title.xml
rename to plugins/fn-numtheory/doc/C/number_theory/sigma_title.xml
diff --git a/plugins/numtheory/doc/ChangeLog b/plugins/fn-numtheory/doc/ChangeLog
similarity index 100%
rename from plugins/numtheory/doc/ChangeLog
rename to plugins/fn-numtheory/doc/ChangeLog
diff --git a/plugins/numtheory/numtheory.c b/plugins/fn-numtheory/numtheory.c
similarity index 100%
rename from plugins/numtheory/numtheory.c
rename to plugins/fn-numtheory/numtheory.c
diff --git a/plugins/numtheory/plugin.xml.in b/plugins/fn-numtheory/plugin.xml.in
similarity index 100%
rename from plugins/numtheory/plugin.xml.in
rename to plugins/fn-numtheory/plugin.xml.in



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]