diff --git a/python-pypi/curtsies/DEPENDS b/python-pypi/curtsies/DEPENDS
new file mode 100755
index 0000000..e4ea57a
--- /dev/null
+++ b/python-pypi/curtsies/DEPENDS
@@ -0,0 +1 @@
+depends PYTHON
diff --git a/python-pypi/curtsies/DETAILS b/python-pypi/curtsies/DETAILS
new file mode 100755
index 0000000..9e18a75
--- /dev/null
+++ b/python-pypi/curtsies/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=curtsies
+ VERSION=0.0.32
+ SOURCE=$SPELL-$VERSION.tar.gz
+
SOURCE_HASH=sha512:b5495d73ddc6639dba870e9730830c8dceb2913c71566e709f365e94d178d149b070575ec087b35d6ec67623749e87be7197017b218e8b4055f5864a6e6587b2
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=http://pypi.python.org/packages/source/c/$SPELL/$SOURCE
+ GATHER_DOCS=off
+ LICENSE[0]=MIT
+ WEB_SITE=https://github.com/thomasballinger/curtsies
+ ENTERED=20140520
+ SHORT="curses-like terminal wrapper, with colored strings"
+cat << EOF
+Most terminals will display text in color if you use ANSI escape codes -
+curtsies makes rendering such text to the terminal easy. Curtsies assumes
use of
+an VT-100 compatible terminal: unlike curses, it has no compatibility layer
for
+other types of terminals.
+EOF
diff --git a/python-pypi/curtsies/HISTORY b/python-pypi/curtsies/HISTORY
new file mode 100644
index 0000000..6cb6576
--- /dev/null
+++ b/python-pypi/curtsies/HISTORY
@@ -0,0 +1,2 @@
+2014-05-20 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell
diff --git a/python-pypi/greenlet/DEPENDS b/python-pypi/greenlet/DEPENDS
new file mode 100755
index 0000000..531ab1e
--- /dev/null
+++ b/python-pypi/greenlet/DEPENDS
@@ -0,0 +1,2 @@
+depends PYTHON &&
+depends zip
diff --git a/python-pypi/greenlet/DETAILS b/python-pypi/greenlet/DETAILS
new file mode 100755
index 0000000..dcfc9ad
--- /dev/null
+++ b/python-pypi/greenlet/DETAILS
@@ -0,0 +1,32 @@
+ SPELL=greenlet
+ VERSION=0.4.2
+ SOURCE=$SPELL-$VERSION.zip
+
SOURCE_HASH=sha512:9596b740921e4a80bcb43adb725a7a4ea428dadc10ba55f8840837ba685b010c273a4a2bd62c5ba4bfdf27ce87c914a83714d762bacafb8e0a3cd7e2a9675992
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=http://pypi.python.org/packages/source/g/$SPELL/$SOURCE
+ DOC_DIRS=""
+ LICENSE[0]=MIT
+ WEB_SITE=https://github.com/python-greenlet/greenlet
+ ENTERED=20140520
+ SHORT="lightweight in-process concurrent programming"
+cat << EOF
+The greenlet package is a spin-off of Stackless, a version of CPython that
+supports micro-threads called "tasklets". Tasklets run pseudo-concurrently
+(typically in a single or a few OS-level threads) and are synchronized with
data
+exchanges on "channels".
+
+A "greenlet", on the other hand, is a still more primitive notion of
+micro-thread with no implicit scheduling; coroutines, in other words. This is
+useful when you want to control exactly when your code runs. You can build
+custom scheduled micro-threads on top of greenlet; however, it seems that
+greenlets are useful on their own as a way to make advanced control
+flow structures. For example, we can recreate generators; the difference with
+Python's own generators is that our generators can call nested functions and
the
+nested functions can yield values too. Additionally, you don't need a "yield"
+keyword.
+
+Greenlets are provided as a C extension module for the regular unmodified
+interpreter.
+
+Greenlets are lightweight coroutines for in-process concurrent programming.
+EOF
diff --git a/python-pypi/greenlet/HISTORY b/python-pypi/greenlet/HISTORY
new file mode 100644
index 0000000..6cb6576
--- /dev/null
+++ b/python-pypi/greenlet/HISTORY
@@ -0,0 +1,2 @@
+2014-05-20 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell
diff --git a/python-pypi/numpy/DETAILS b/python-pypi/numpy/DETAILS
index 1e3aa37..83c4810 100755
--- a/python-pypi/numpy/DETAILS
+++ b/python-pypi/numpy/DETAILS
@@ -1,9 +1,9 @@
SPELL=numpy
- VERSION=1.8.0
-
SOURCE_HASH=sha512:ec3d002ed786335e8748983261c96f88a9f1520fc345ad5b810dc02a5e126e15fe5afb02bed1f4b43d580a1da39583d86b84f57dc456b0702653e34e5357c857
+ VERSION=1.8.1
+
SOURCE_HASH=sha512:2dfe7c114c304a4bd5c050738852fb5b13c54d3cfa04b39d72af96bac356182e3ea7f9979ebe370bdbc7108770c65c848275ff6b7ab11924da7d139e197f81da
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
- SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ SOURCE_URL[0]=https://github.com/numpy/numpy/archive/v${VERSION}.tar.gz
WEB_SITE=http://numpy.scipy.org/
ENTERED=20020319
LICENSE[0]=PYTHON
diff --git a/python-pypi/numpy/HISTORY b/python-pypi/numpy/HISTORY
index 527ac25..b290b97 100644
--- a/python-pypi/numpy/HISTORY
+++ b/python-pypi/numpy/HISTORY
@@ -1,3 +1,6 @@
+2014-05-20 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: verison 1.8.1, fix SOURCE_URL
+
2013-11-20 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.8.0