Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (ed00caea54c1c4911bf812dc71c8cf804d9e893d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (ed00caea54c1c4911bf812dc71c8cf804d9e893d)
  • Date: Mon, 6 Apr 2015 11:24:18 -0500

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 +++
audio-creation/rosegarden/DETAILS | 4 ++--
audio-creation/rosegarden/HISTORY | 3 +++
libs/libstree/DETAILS | 28 ++++++++++++++++++++++++++++
libs/libstree/HISTORY | 2 ++
5 files changed, 38 insertions(+), 2 deletions(-)

New commits:
commit ed00caea54c1c4911bf812dc71c8cf804d9e893d
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libstree: new spell, A generic suffix tree library

commit 36265cb19bfb889c42c3141ae542db765f6d5767
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

rosegarden 14.12

diff --git a/ChangeLog b/ChangeLog
index 03e565a..1462dd0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2015-04-06 Ismael Luceno <ismael AT sourcemage.org>
+ * libs/libstree: new spell, A generic suffix tree library
+
2015-04-04 Ismael Luceno <ismael AT sourcemage.org>
* devel/tclvfs: new spell, VFS extension for TCL
* devel/vqtcl: new spell, Vlerq for Tcl
diff --git a/audio-creation/rosegarden/DETAILS
b/audio-creation/rosegarden/DETAILS
index 0702bae..87eb042 100755
--- a/audio-creation/rosegarden/DETAILS
+++ b/audio-creation/rosegarden/DETAILS
@@ -13,11 +13,11 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-svn"
SOURCE_IGNORE=volatile
FORCE_DOWNLOAD=on
else
- VERSION=11.06
+ VERSION=14.12
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:cbfbfa0e0c46b75a5826ebd3b77ebc14196e7dc611de10c6388fbe1477bb6bba9ef17d08e62871fb97ebcf7ded74534564804cbedb25c24d7bfed179f0538905
+
SOURCE_HASH=sha512:7820197d97025365c781f95811a9725058b86375654df9915599957f743f5ea335eb468d0b52100e7be5096e9d10bc6fdad4252db48dc5c49d9ed6d8e7db6660
fi
WEB_SITE=http://www.rosegardenmusic.com/
ENTERED=20020514
diff --git a/audio-creation/rosegarden/HISTORY
b/audio-creation/rosegarden/HISTORY
index 57a255f..afd5802 100644
--- a/audio-creation/rosegarden/HISTORY
+++ b/audio-creation/rosegarden/HISTORY
@@ -1,3 +1,6 @@
+2015-04-06 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 14.12
+
2011-10-04 Arjan Bouter <abouter AT sourcemage.org>
* DETAILS: version 11.06
* DEPENDS: kdelibs is not needed and removed unneeded deps
diff --git a/libs/libstree/DETAILS b/libs/libstree/DETAILS
new file mode 100755
index 0000000..76022e5
--- /dev/null
+++ b/libs/libstree/DETAILS
@@ -0,0 +1,28 @@
+ SPELL=libstree
+ VERSION=0.4.2
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ SOURCE_URL[0]=http://www.icir.org/christian/downloads/$SOURCE
+
SOURCE_HASH=sha512:ab77ff94600e96e61629cf5d8d988528070a5412573ab0b24c7a1c65c530aaf9a2a633d17dc2cf3c268dc539746f5150d87d0226a5c02d10280edd8e8ef5f566
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="http://www.icir.org/christian/libstree/";
+ LICENSE[0]="BSD"
+ ENTERED=20150406
+ KEYWORDS=""
+ SHORT="A generic suffix tree library"
+cat << EOF
+libstree is a generic suffix tree implementation, written in C. It can
+handle arbitrary data structures as elements of a string. Unlike most demo
+implementations, it is not limited to simple ASCII character strings. Suffix
+tree generation in libstree is highly efficient and implemented using the
+algorithm by Ukkonen. This means that libstree builds suffix trees in time
+linear to the length of the strings, assuming that string element comparisons
+can be done in constant time.
+
+libstree can handle multiple strings per suffix tree, including dynamic
+insertion and removal of strings. It provides various means of obtaining
+information about nodes in the tree, such as depth-first and breadth-first
+iteration, leaves iteration, and bottom-up iteration. libstree provides
+implementations of longest-common-substring and longest-repeated-substring
+algorithms, as examples of how to build complex algorithms using the suffix
+tree primitives.
+EOF
diff --git a/libs/libstree/HISTORY b/libs/libstree/HISTORY
new file mode 100644
index 0000000..4e404eb
--- /dev/null
+++ b/libs/libstree/HISTORY
@@ -0,0 +1,2 @@
+2015-04-06 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (ed00caea54c1c4911bf812dc71c8cf804d9e893d), Ismael Luceno, 04/06/2015

Archive powered by MHonArc 2.6.24.

Top of Page