summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Franzmann2011-03-31 23:19:02 +0200
committerFlorian Franzmann2011-03-31 23:19:02 +0200
commit76363bfb57972716486c2c2f095c948270afc4f4 (patch)
tree912fe9143b7f659062db6587a3a86bac564333df
parentd6a0b389ac4621db36d8023293cd6194e2a9d81f (diff)
python-pypi/larch: new spell, a B-Tree implementation
-rw-r--r--ChangeLog1
-rwxr-xr-xpython-pypi/larch/DEPENDS4
-rwxr-xr-xpython-pypi/larch/DETAILS15
-rw-r--r--python-pypi/larch/HISTORY4
4 files changed, 24 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4535885346..d0dbc7b803 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
terminals
* python-pypi/python-tracing: new spell, a library for logging debug
messages
+ * python-pypi/larch: new spell, a B-Tree implementation
2011-03-31 Treeve Jelbert <treeve@sourcemage.org>
* database/dbd-firebird: new spell, Firebird DBD modules for perl DBI
diff --git a/python-pypi/larch/DEPENDS b/python-pypi/larch/DEPENDS
new file mode 100755
index 0000000000..a526cc2521
--- /dev/null
+++ b/python-pypi/larch/DEPENDS
@@ -0,0 +1,4 @@
+depends python &&
+depends extrautils &&
+depends python-lru &&
+depends python-tracing
diff --git a/python-pypi/larch/DETAILS b/python-pypi/larch/DETAILS
new file mode 100755
index 0000000000..9c7e9b5b59
--- /dev/null
+++ b/python-pypi/larch/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=larch
+ VERSION=0.19
+ SOURCE="python-${SPELL}_${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://code.liw.fi/debian/pool/main/p/python-${SPELL}/${SOURCE}
+ SOURCE_HASH=sha512:6d57c53e3c9c4531da55e7df6c4e6f5a18e9d1e3637ceef99f9a438fba9802805fc9434bd932539f013da82af610942cf66112d2d4f50ee686d1c223bbdfd0fb
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/python-${SPELL}-${VERSION}"
+ WEB_SITE="http://liw.fi/larch"
+ LICENSE[0]=GPL
+ ENTERED=20110329
+ SHORT="an implementation of particular kind of B-tree, based on research by Ohad Rodeh"
+cat << EOF
+This is an implementation of particular kind of B-tree, based on research by
+Ohad Rodeh. See "B-trees, Shadowing, and Clones" (link below) for details on
+the data structure. This is the same data structure that btrfs uses.
+EOF
diff --git a/python-pypi/larch/HISTORY b/python-pypi/larch/HISTORY
new file mode 100644
index 0000000000..d1447da082
--- /dev/null
+++ b/python-pypi/larch/HISTORY
@@ -0,0 +1,4 @@
+2011-03-31 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
+ * DEPENDS, DETAILS: spell created, thanks to Hannes Greiner
+ for the spell
+