summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2011-06-30 19:15:26 +0400
committerVlad Glagolev2011-06-30 19:15:26 +0400
commit9745e54f81ae19c8bfad8e61a99f771b69c466a4 (patch)
tree3cf61f2c2e9432ed78a560022fa7a1495d860390
parent32f924c14f3518715535d9de3c2135e99cb45f5b (diff)
pyascii85: new spell, Base85 binary-to-text encoding in Python
-rw-r--r--ChangeLog4
-rwxr-xr-xpython-pypi/pyascii85/DEPENDS1
-rwxr-xr-xpython-pypi/pyascii85/DETAILS16
-rw-r--r--python-pypi/pyascii85/HISTORY2
4 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ab23aecea7..4a1e72604e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-30 Vlad Glagolev <stealth@sourcemage.org>
+ * python-pypi/pyascii85: new spell, Base85 binary-to-text encoding in
+ Python
+
2011-06-26 Ladislav Hagara <hgr@vabo.cz>
* net/2ping: new spell, bi-directional ping utility
diff --git a/python-pypi/pyascii85/DEPENDS b/python-pypi/pyascii85/DEPENDS
new file mode 100755
index 0000000000..a86d429d69
--- /dev/null
+++ b/python-pypi/pyascii85/DEPENDS
@@ -0,0 +1 @@
+depends python
diff --git a/python-pypi/pyascii85/DETAILS b/python-pypi/pyascii85/DETAILS
new file mode 100755
index 0000000000..a85ce9d9e9
--- /dev/null
+++ b/python-pypi/pyascii85/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=pyascii85
+ VERSION=0.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_HASH=sha512:9ca1c91cd45e1857f6cc3af05d09cea6d721ec215578d90cf31b168e8b9f7490f0b14867259175cc676b294c9e1cb52538d9608089bad1dfc55a003ef46374ac
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ WEB_SITE=http://sourceforge.net/projects/pyascii85/
+ ENTERED=20110630
+ KEYWORDS="python devel"
+ SHORT="Base85 binary-to-text encoding in Python"
+cat << EOF
+pyascii85 is a Python extension written in C, that provides Ascii85 data
+encodings, also known as Base85. It can encode and decode files or text buffers,
+and is useful for encoding data to be used within PostScript and PDF files, such
+as raw RGB images.
+EOF
diff --git a/python-pypi/pyascii85/HISTORY b/python-pypi/pyascii85/HISTORY
new file mode 100644
index 0000000000..8f7a2ceb99
--- /dev/null
+++ b/python-pypi/pyascii85/HISTORY
@@ -0,0 +1,2 @@
+2011-06-30 Vlad Glagolev <stealth@sourcemage.org>
+ * DEPENDS, DETAILS: spell created