Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6a91fd5f4f6591fec21c7d2a95c29159ecdb0877)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6a91fd5f4f6591fec21c7d2a95c29159ecdb0877)
  • Date: Wed, 5 Mar 2014 04:59:58 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 4 ++++
python-pypi/fabric/DEPENDS | 2 +-
python-pypi/fabric/DETAILS | 4 ++--
python-pypi/fabric/HISTORY | 4 ++++
python-pypi/paramiko/DEPENDS | 4 +++-
python-pypi/paramiko/DETAILS | 4 ++--
python-pypi/paramiko/HISTORY | 4 ++++
python-pypi/python-ecdsa/DEPENDS | 1 +
python-pypi/python-ecdsa/DETAILS | 20 ++++++++++++++++++++
python-pypi/python-ecdsa/HISTORY | 2 ++
10 files changed, 43 insertions(+), 6 deletions(-)

New commits:
commit 6a91fd5f4f6591fec21c7d2a95c29159ecdb0877
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

fabric: => 1.8.2

commit 4ee1f54834f08d0a8b43b8a47937b9e3e636e747
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

paramiko: => 1.12.2

commit 6b4e00c9cab1aadd5c0f052e901b63d07a0e9fa3
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

python-ecdsa: new spell, ECDSA cryptographic signature library

diff --git a/ChangeLog b/ChangeLog
index 400c1fb..62eddc8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * python-pypi/python-ecdsa: new spell, ECDSA cryptographic signature
+ library
+
2014-03-05 Ismael Luceno <ismael AT sourcemage.org>
* utils/nicstat: new spell, Network traffic statics utility for
Solaris and Linux

diff --git a/python-pypi/fabric/DEPENDS b/python-pypi/fabric/DEPENDS
index 17f0989..3586723 100755
--- a/python-pypi/fabric/DEPENDS
+++ b/python-pypi/fabric/DEPENDS
@@ -1,6 +1,6 @@
. "$GRIMOIRE/FUNCTIONS" &&

-depends python &&
+depends PYTHON &&
depends SETUPTOOLS &&
depends paramiko &&

diff --git a/python-pypi/fabric/DETAILS b/python-pypi/fabric/DETAILS
index 85e04fe..0ff0fc2 100755
--- a/python-pypi/fabric/DETAILS
+++ b/python-pypi/fabric/DETAILS
@@ -1,9 +1,9 @@
SPELL=fabric
SPELLX=Fabric
- VERSION=1.5.3
+ VERSION=1.8.2
SOURCE=${SPELLX}-${VERSION}.tar.gz

SOURCE_URL[0]=http://pypi.python.org/packages/source/${SPELLX:0:1}/${SPELLX}/${SOURCE}
-
SOURCE_HASH=sha512:9cbd093f24d8b4dc2aa0c363d040df98652bdc955a7416e65b5c8b9dc32c3191d4d2dc7ff61f1bf93050ff3a68b858ba178e0bc11b0b33137191b760d7476b54
+
SOURCE_HASH=sha512:299b4d9d7579aac24d955ef8b392e85682057e4f19ea18e5fec764ca6c8a5f181b924e6293990591765cda3b2590c791ae3ea273376d36614c7dd57ccf62a3ea
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
WEB_SITE=http://fabfile.org/
LICENSE[0]=BSD
diff --git a/python-pypi/fabric/HISTORY b/python-pypi/fabric/HISTORY
index 63d2ad9..849f17c 100644
--- a/python-pypi/fabric/HISTORY
+++ b/python-pypi/fabric/HISTORY
@@ -1,3 +1,7 @@
+2014-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.8.2
+ * DEPENDS: switched to PYTHON
+
2013-02-06 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.5.3

diff --git a/python-pypi/paramiko/DEPENDS b/python-pypi/paramiko/DEPENDS
index 89be6aa..8b65342 100755
--- a/python-pypi/paramiko/DEPENDS
+++ b/python-pypi/paramiko/DEPENDS
@@ -1,2 +1,4 @@
+depends PYTHON &&
depends SETUPTOOLS &&
-depends pycrypto
+depends pycrypto &&
+depends python-ecdsa
diff --git a/python-pypi/paramiko/DETAILS b/python-pypi/paramiko/DETAILS
index 3a154d8..e79dda7 100755
--- a/python-pypi/paramiko/DETAILS
+++ b/python-pypi/paramiko/DETAILS
@@ -1,8 +1,8 @@
SPELL=paramiko
- VERSION=1.9.0
+ VERSION=1.12.2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://pypi.python.org/packages/source/p/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:2f91b68b8a652aa773d14cded7a5f17cf6d758624f981c68510ee3b1302b64ee9290830440dca1a1000b7974ef9dca4f0acd13d01958433b6f35ae8a13e1c0a2
+
SOURCE_HASH=sha512:a8247c27ef3068b1c73ca39d7ce0da36ea7cbf28bdac805c92fd73bbe57c7f84e38433d330d54ea850ef952c57ff596dfb6627caee8e8b9c4ce69b1958fed094
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE=https://github.com/paramiko/paramiko/
ENTERED=20060403
diff --git a/python-pypi/paramiko/HISTORY b/python-pypi/paramiko/HISTORY
index b713690..faad668 100644
--- a/python-pypi/paramiko/HISTORY
+++ b/python-pypi/paramiko/HISTORY
@@ -1,3 +1,7 @@
+2014-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.12.2
+ * DEPENDS: requires python, python-ecdsa
+
2013-01-08 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.9.0; renewed website and source urls
* paramiko.gpg: dropped, not used anymore
diff --git a/python-pypi/python-ecdsa/DEPENDS
b/python-pypi/python-ecdsa/DEPENDS
new file mode 100755
index 0000000..e4ea57a
--- /dev/null
+++ b/python-pypi/python-ecdsa/DEPENDS
@@ -0,0 +1 @@
+depends PYTHON
diff --git a/python-pypi/python-ecdsa/DETAILS
b/python-pypi/python-ecdsa/DETAILS
new file mode 100755
index 0000000..1e4894e
--- /dev/null
+++ b/python-pypi/python-ecdsa/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=python-ecdsa
+ SPELLX=ecdsa
+ VERSION=0.10
+ SOURCE=$SPELLX-$VERSION.tar.gz
+ SOURCE_URL[0]=http://pypi.python.org/packages/source/e/$SPELLX/$SOURCE
+
SOURCE_HASH=sha512:c1a51e95af938aca01001a4aa7e3a830157d5ffd0370d880340e513edbe176b30750fb86270d605b729dcc5741346d552b2bf16d7b3b4910fd1d06f96eaffc0f
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
+ WEB_SITE=https://github.com/warner/python-ecdsa
+ ENTERED=20140305
+ LICENSE=MIT
+ KEYWORDS="python devel"
+ SHORT="ECDSA cryptographic signature library"
+cat << EOF
+This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve
+Digital Signature Algorithm), implemented purely in Python, released under
the
+MIT license. With this library, you can quickly create keypairs (signing key
and
+verifying key), sign messages, and verify the signatures. The keys and
+signatures are very short, making them easy to handle and incorporate into
other
+protocols.
+EOF
diff --git a/python-pypi/python-ecdsa/HISTORY
b/python-pypi/python-ecdsa/HISTORY
new file mode 100644
index 0000000..b83defb
--- /dev/null
+++ b/python-pypi/python-ecdsa/HISTORY
@@ -0,0 +1,2 @@
+2014-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: spell created



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6a91fd5f4f6591fec21c7d2a95c29159ecdb0877), Vlad Glagolev, 03/05/2014

Archive powered by MHonArc 2.6.24.

Top of Page