summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Orgis2006-07-05 20:53:57 +0200
committerThomas Orgis2006-07-05 20:53:57 +0200
commitea1359efdf00ae64424f4e4c0bc624950a6f2f40 (patch)
tree6038b8fbcaea1878e14dd93b9ae49f64a03534e7
parentb7fdaaa60a81d55d118308f002d05a2763399e31 (diff)
new spells: textdata, param, buntstift, gpfit
-rw-r--r--ChangeLog7
-rwxr-xr-xperl-cpan/param/BUILD1
-rwxr-xr-xperl-cpan/param/DEPENDS1
-rwxr-xr-xperl-cpan/param/DETAILS24
-rw-r--r--perl-cpan/param/HISTORY4
-rwxr-xr-xperl-cpan/param/INSTALL2
-rw-r--r--perl-cpan/param/Param-2.18.0.tar.bz2.sigbin0 -> 65 bytes
-rwxr-xr-xperl-cpan/textdata/BUILD1
-rwxr-xr-xperl-cpan/textdata/DEPENDS1
-rwxr-xr-xperl-cpan/textdata/DETAILS17
-rw-r--r--perl-cpan/textdata/HISTORY4
-rwxr-xr-xperl-cpan/textdata/INSTALL4
-rw-r--r--perl-cpan/textdata/TextData-1.7.1.tar.bz2.sigbin0 -> 65 bytes
-rw-r--r--thomas.orgis.gpgbin0 -> 2028 bytes
-rwxr-xr-xutils/buntstift/BUILD1
-rwxr-xr-xutils/buntstift/DEPENDS6
-rwxr-xr-xutils/buntstift/DETAILS17
-rw-r--r--utils/buntstift/HISTORY4
-rwxr-xr-xutils/buntstift/INSTALL2
-rw-r--r--utils/buntstift/buntstift-0.18.1.tar.bz2.sigbin0 -> 65 bytes
-rwxr-xr-xutils/gpfit/BUILD1
-rwxr-xr-xutils/gpfit/DEPENDS3
-rwxr-xr-xutils/gpfit/DETAILS17
-rw-r--r--utils/gpfit/HISTORY4
-rwxr-xr-xutils/gpfit/INSTALL2
-rw-r--r--utils/gpfit/gpfit-1.0.2.tar.bz2.sigbin0 -> 65 bytes
26 files changed, 123 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f471159ec..bef5ba1dbb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-05 Thomas Orgis <sobukus@sourcemage.org>
+ * perl-cpan/textdata: new spell, lib and progs for numbers in ascii files
+ * perl-cpan/param: new spell, parameter parsing / config file lib (*duck*)
+ * util/buntstift: new spell, gnuplot frontend
+ * util/gpfit: new spell, fitting functions to data using gnuplot
+ * thomas.orgis.gpg: public key from author of above stuff
+
2006-07-04 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
* x11/qtodo: new spell, a todo-list manager
diff --git a/perl-cpan/param/BUILD b/perl-cpan/param/BUILD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/perl-cpan/param/BUILD
@@ -0,0 +1 @@
+true
diff --git a/perl-cpan/param/DEPENDS b/perl-cpan/param/DEPENDS
new file mode 100755
index 0000000000..6826bc7952
--- /dev/null
+++ b/perl-cpan/param/DEPENDS
@@ -0,0 +1 @@
+depends perl
diff --git a/perl-cpan/param/DETAILS b/perl-cpan/param/DETAILS
new file mode 100755
index 0000000000..346c245d5d
--- /dev/null
+++ b/perl-cpan/param/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=param
+ VERSION=2.18.0
+ SOURCE=Param-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://thomas.orgis.org/scripterei/download/$SOURCE
+ SOURCE_GPG=thomas.orgis.gpg:$SOURCE.sig
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/Param-${VERSION}
+ WEB_SITE=http://thomas.orgis.org/scripterei
+ ENTERED=20060703
+ UPDATED=20060703
+ LICENSE[0]=Artistic
+ BUILD_API=2
+ SHORT="A featureful Perl module for interpreting command line options and parsing/creating config files."
+cat << EOF
+Yet another parameter library for Perl that evolved despite the author's
+knowledge of reinventing wheels not being the best hobby. But, this wheel
+felt rounder for the author than other solutions.
+
+It provides:
+ - simple definition of parameters and default values - short and long options
+ simple switches, value assignment, clustering of switches
+ - generating help messages - search for and parse as well as generate
+ config files (same set of parameters, possibility to hide special stuff
+ from command line help)
+EOF
diff --git a/perl-cpan/param/HISTORY b/perl-cpan/param/HISTORY
new file mode 100644
index 0000000000..cbf061c58d
--- /dev/null
+++ b/perl-cpan/param/HISTORY
@@ -0,0 +1,4 @@
+2006-07-03 Thomas Orgis <sobukus@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL, HISTORY,
+ Param-2.18.0.tar.bz2.sig: created spell
+
diff --git a/perl-cpan/param/INSTALL b/perl-cpan/param/INSTALL
new file mode 100755
index 0000000000..ac02e1f168
--- /dev/null
+++ b/perl-cpan/param/INSTALL
@@ -0,0 +1,2 @@
+install -p -m 0644 ${SOURCE_DIRECTORY}/Param.pm ${INSTALL_ROOT}/usr/lib/perl5/site_perl
+
diff --git a/perl-cpan/param/Param-2.18.0.tar.bz2.sig b/perl-cpan/param/Param-2.18.0.tar.bz2.sig
new file mode 100644
index 0000000000..6a92a4e550
--- /dev/null
+++ b/perl-cpan/param/Param-2.18.0.tar.bz2.sig
Binary files differ
diff --git a/perl-cpan/textdata/BUILD b/perl-cpan/textdata/BUILD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/perl-cpan/textdata/BUILD
@@ -0,0 +1 @@
+true
diff --git a/perl-cpan/textdata/DEPENDS b/perl-cpan/textdata/DEPENDS
new file mode 100755
index 0000000000..6826bc7952
--- /dev/null
+++ b/perl-cpan/textdata/DEPENDS
@@ -0,0 +1 @@
+depends perl
diff --git a/perl-cpan/textdata/DETAILS b/perl-cpan/textdata/DETAILS
new file mode 100755
index 0000000000..2ba9d2dffb
--- /dev/null
+++ b/perl-cpan/textdata/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=textdata
+ VERSION=1.7.1
+ SOURCE=TextData-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://thomas.orgis.org/scripterei/download/$SOURCE
+ SOURCE_GPG=thomas.orgis.gpg:$SOURCE.sig
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/TextData-${VERSION}
+ WEB_SITE=http://thomas.orgis.org/scripterei
+ ENTERED=20060703
+ UPDATED=20060703
+ LICENSE[0]=Artistic
+ BUILD_API=2
+ SHORT="Perl modules and scripts for working with numerical data stored in ascii text form"
+cat << EOF
+This is a set of Perl modules to work with numerical data stored in ascii text files accompanied by a collection of scripts using them.
+The scripts have names like txdcalc, txdnorm, ... indicating their purpose (general calculation, normalization, ...).
+Most of them are designed as filterns so that you can chain up operations easily in the shell.
+EOF
diff --git a/perl-cpan/textdata/HISTORY b/perl-cpan/textdata/HISTORY
new file mode 100644
index 0000000000..a681e9b02d
--- /dev/null
+++ b/perl-cpan/textdata/HISTORY
@@ -0,0 +1,4 @@
+2006-07-03 Thomas Orgis <sobukus@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL, HISTORY,
+ TextData-1.7.1.tar.bz2.sig: created spell
+
diff --git a/perl-cpan/textdata/INSTALL b/perl-cpan/textdata/INSTALL
new file mode 100755
index 0000000000..0f1eeb16c7
--- /dev/null
+++ b/perl-cpan/textdata/INSTALL
@@ -0,0 +1,4 @@
+install -d ${INSTALL_ROOT}/usr/lib/perl5/site_perl/TextData &&
+install -p -m 0644 ${SOURCE_DIRECTORY}/TextData/*.pm ${INSTALL_ROOT}/usr/lib/perl5/site_perl/TextData &&
+install -p -m 0755 ${SOURCE_DIRECTORY}/TextData-Scripts/* ${INSTALL_ROOT}/usr/bin
+
diff --git a/perl-cpan/textdata/TextData-1.7.1.tar.bz2.sig b/perl-cpan/textdata/TextData-1.7.1.tar.bz2.sig
new file mode 100644
index 0000000000..9c49a36826
--- /dev/null
+++ b/perl-cpan/textdata/TextData-1.7.1.tar.bz2.sig
Binary files differ
diff --git a/thomas.orgis.gpg b/thomas.orgis.gpg
new file mode 100644
index 0000000000..72b61fe52b
--- /dev/null
+++ b/thomas.orgis.gpg
Binary files differ
diff --git a/utils/buntstift/BUILD b/utils/buntstift/BUILD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/utils/buntstift/BUILD
@@ -0,0 +1 @@
+true
diff --git a/utils/buntstift/DEPENDS b/utils/buntstift/DEPENDS
new file mode 100755
index 0000000000..d2d2afb814
--- /dev/null
+++ b/utils/buntstift/DEPENDS
@@ -0,0 +1,6 @@
+depends perl &&
+message "You really want parameter parsing unless you really know that you do not!" &&
+suggest_depends param "" "" "for parameter parsing" &&
+message "Plain script generation is still possible without gnuplot..." &&
+suggest_depends gnuplot "" "" "for actual plotting" &&
+suggest_depends textdata "" "" "for parsing data files; generate labels"
diff --git a/utils/buntstift/DETAILS b/utils/buntstift/DETAILS
new file mode 100755
index 0000000000..c8b7f7df27
--- /dev/null
+++ b/utils/buntstift/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=buntstift
+ VERSION=0.18.1
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://thomas.orgis.org/scripterei/download/$SOURCE
+ SOURCE_GPG=thomas.orgis.gpg:$SOURCE.sig
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/$SPELL-${VERSION}
+ WEB_SITE=http://thomas.orgis.org/scripterei
+ ENTERED=20060703
+ UPDATED=20060703
+ LICENSE[0]=Artistic
+ BUILD_API=2
+ SHORT="Wrapper around gnuplot for quick-shot plotting."
+cat << EOF
+Buntstift is a wrapper around gnuplot that provides quick shot plotting for most (of the author's) needs via command line options.
+It plots data files, functions or prepared scripts given on command line or feed via stdin.
+It combines your commands and some auto magic if needed to produce the plot you want with the least possible hassle.
+EOF
diff --git a/utils/buntstift/HISTORY b/utils/buntstift/HISTORY
new file mode 100644
index 0000000000..e963af732e
--- /dev/null
+++ b/utils/buntstift/HISTORY
@@ -0,0 +1,4 @@
+2006-07-03 Thomas Orgis <sobukus@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL, HISTORY,
+ buntstift-0.18.1.tar.bz2.sig: created spell
+
diff --git a/utils/buntstift/INSTALL b/utils/buntstift/INSTALL
new file mode 100755
index 0000000000..17c0024257
--- /dev/null
+++ b/utils/buntstift/INSTALL
@@ -0,0 +1,2 @@
+install -p -m 0755 ${SOURCE_DIRECTORY}/buntstift ${INSTALL_ROOT}/usr/bin
+
diff --git a/utils/buntstift/buntstift-0.18.1.tar.bz2.sig b/utils/buntstift/buntstift-0.18.1.tar.bz2.sig
new file mode 100644
index 0000000000..95f44cec2a
--- /dev/null
+++ b/utils/buntstift/buntstift-0.18.1.tar.bz2.sig
Binary files differ
diff --git a/utils/gpfit/BUILD b/utils/gpfit/BUILD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/utils/gpfit/BUILD
@@ -0,0 +1 @@
+true
diff --git a/utils/gpfit/DEPENDS b/utils/gpfit/DEPENDS
new file mode 100755
index 0000000000..ed3ee7a8da
--- /dev/null
+++ b/utils/gpfit/DEPENDS
@@ -0,0 +1,3 @@
+depends perl &&
+depends param &&
+depends gnuplot
diff --git a/utils/gpfit/DETAILS b/utils/gpfit/DETAILS
new file mode 100755
index 0000000000..0917ae6b21
--- /dev/null
+++ b/utils/gpfit/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=gpfit
+ VERSION=1.0.2
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://thomas.orgis.org/scripterei/download/$SOURCE
+ SOURCE_GPG=thomas.orgis.gpg:$SOURCE.sig
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/$SPELL-${VERSION}
+ WEB_SITE=http://thomas.orgis.org/scripterei
+ ENTERED=20060703
+ UPDATED=20060703
+ LICENSE[0]=Artistic
+ BUILD_API=2
+ SHORT="A command-line frontend to gnuplot's fitting facility."
+cat << EOF
+Frontend to gnuplot's fitting facility.
+You can fit X or X/Y data to a polynominal by simply specifying its grade or define a custom function.
+There is also the option to show the data and the fit in a plot on your X11 screen ... using gnuplot, of course;-) .
+EOF
diff --git a/utils/gpfit/HISTORY b/utils/gpfit/HISTORY
new file mode 100644
index 0000000000..7e55c3ca54
--- /dev/null
+++ b/utils/gpfit/HISTORY
@@ -0,0 +1,4 @@
+2006-07-03 Thomas Orgis <sobukus@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL, HISTORY,
+ gpfit-1.0.2.tar.bz2.sig: created spell
+
diff --git a/utils/gpfit/INSTALL b/utils/gpfit/INSTALL
new file mode 100755
index 0000000000..e40fe14638
--- /dev/null
+++ b/utils/gpfit/INSTALL
@@ -0,0 +1,2 @@
+install -p -m 0755 ${SOURCE_DIRECTORY}/gpfit ${INSTALL_ROOT}/usr/bin
+
diff --git a/utils/gpfit/gpfit-1.0.2.tar.bz2.sig b/utils/gpfit/gpfit-1.0.2.tar.bz2.sig
new file mode 100644
index 0000000000..83281e0985
--- /dev/null
+++ b/utils/gpfit/gpfit-1.0.2.tar.bz2.sig
Binary files differ