Skip to Content.
Sympa Menu

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

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 (ce68609998b83b02d03fb4c2555985f0fc2dfff7)
  • Date: Tue, 5 Feb 2008 20:57:39 -0600

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

ChangeLog | 5 ++++-
python-pypi/sonata/DEPENDS | 4 ++--
python-pypi/sonata/DETAILS | 1 -
python-pypi/sonata/HISTORY | 3 +++
python-pypi/zsi/DEPENDS | 2 ++
python-pypi/zsi/DETAILS | 22 ++++++++++++++++++++++
python-pypi/zsi/HISTORY | 3 +++
7 files changed, 36 insertions(+), 4 deletions(-)

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

sonata: replaced soappy with zsi (new SOAP implementation)

commit 7e14f39b6ed66dbdfc2a3c155a189b3e0ea61947
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

zsi: new spell, python lib that provides an implementation of SOAP, based
on work of Jose Iria <jose.iria AT gmail.com>, bug #14281

diff --git a/ChangeLog b/ChangeLog
index c27f696..572bdbb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
+2008-02-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * python-pypi/zsi: python lib that provides an implementation of SOAP
+ * python-pypi/py-libmpdclient: client library for MPD, written in
Python
+
2008-02-05 Vlad Glagolev <stealth AT sourcemage.org>
* devel/geanylua: new spell, Lua scripting plugin for the Geany IDE
- * python-pypi/py-libmpdclient: client library for MPD, written in
Python

2008-02-04 Lubomir Blaha <tritol AT trilogic.cz>
* audio-plugins/xmms-a52dec: new spell, an A52/AC3 decoder plugin for
XMMS based on liba52
diff --git a/python-pypi/sonata/DEPENDS b/python-pypi/sonata/DEPENDS
index 4ea1cd7..818ddd3 100755
--- a/python-pypi/sonata/DEPENDS
+++ b/python-pypi/sonata/DEPENDS
@@ -1,5 +1,5 @@
depends pygtk2 &&

optional_depends gnome-python-extras "" "" "for GNOME support" &&
-optional_depends soappy "" "" "for automatic lyrics fetching" &&
-optional_depends tagpy "" "" "for editing metadata"
+optional_depends tagpy "" "" "for editing metadata" &&
+optional_depends zsi "" "" "for automatic lyrics fetching"
diff --git a/python-pypi/sonata/DETAILS b/python-pypi/sonata/DETAILS
index ff3d6f4..8d86a23 100755
--- a/python-pypi/sonata/DETAILS
+++ b/python-pypi/sonata/DETAILS
@@ -13,7 +13,6 @@ cat << EOF
Sonata is an elegant GTK+ music client for the Music Player Daemon (MPD).

Features:
-
- Expanded and collapsed views
- Automatic remote and local album art
- User-configurable columns
diff --git a/python-pypi/sonata/HISTORY b/python-pypi/sonata/HISTORY
index eb84fe7..6702002 100644
--- a/python-pypi/sonata/HISTORY
+++ b/python-pypi/sonata/HISTORY
@@ -1,3 +1,6 @@
+2008-02-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: replaced soappy with zsi (new SOAP implementation)
+
2008-02-03 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.4.1, fixed long desc

diff --git a/python-pypi/zsi/DEPENDS b/python-pypi/zsi/DEPENDS
new file mode 100755
index 0000000..10c563b
--- /dev/null
+++ b/python-pypi/zsi/DEPENDS
@@ -0,0 +1,2 @@
+depends python &&
+depends pyxml
diff --git a/python-pypi/zsi/DETAILS b/python-pypi/zsi/DETAILS
new file mode 100755
index 0000000..5c47b3c
--- /dev/null
+++ b/python-pypi/zsi/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=zsi
+ VERSION=2.0
+ SOURCE=ZSI-$VERSION.tar.gz
+ SOURCE_URL[0]=$SOURCEFORGE_URL/pywebsvcs/$SOURCE
+
SOURCE_HASH=sha512:eb1aca6ceb9e2f6c53e472f8f2aa593ace8dc5a365d21b6369520f81d8645aa7d0154a7445a048cd0618fce8cfc40092070a709d0e2025957044530525b348c3
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/ZSI-$VERSION
+ WEB_SITE=http://pywebsvcs.sourceforge.net/
+ LICENSE[0]=GPL
+ ENTERED=20080206
+ KEYWORDS="python lib"
+ SHORT="python lib that provides an implementation of SOAP
messaging"
+cat << EOF
+ZSI, the Zolera SOAP Infrastructure, is a Python package that provides
+an implementation of SOAP messaging, as described in The SOAP 1.1
+Specification. In particular, ZSI parses and generates SOAP messages,
+and converts between native Python datatypes and SOAP syntax. It can also
+be used to build applications using SOAP Messages with Attachments. ZSI is
+``transport neutral'', and provides only a simple I/O and dispatch framework;
+a more complete solution is the responsibility of the application using
+ZSI. As usage patterns emerge, and common application frameworks are more
+understood, this may change.
+EOF
diff --git a/python-pypi/zsi/HISTORY b/python-pypi/zsi/HISTORY
new file mode 100644
index 0000000..32e34f5
--- /dev/null
+++ b/python-pypi/zsi/HISTORY
@@ -0,0 +1,3 @@
+2008-02-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created, based on work of
+ Jose Iria <jose.iria AT gmail.com>



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (ce68609998b83b02d03fb4c2555985f0fc2dfff7), Vlad Glagolev, 02/05/2008

Archive powered by MHonArc 2.6.24.

Top of Page