Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by George Sherwood (729ea55d13514ac7fb433dcb4933689ec4b704cd)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by George Sherwood (729ea55d13514ac7fb433dcb4933689ec4b704cd)
  • Date: Sat, 18 Nov 2006 03:06:41 -0600

GIT changes to master grimoire by George Sherwood <chat AT sourcemage.org>:

ChangeLog | 3 +
python-devel/twisted-core/BUILD | 2 +
python-devel/twisted-core/DEPENDS | 2 +
python-devel/twisted-core/DETAILS | 51 +++++++++++++++++++++++++++++++
python-devel/twisted-core/HISTORY | 61
++++++++++++++++++++++++++++++++++++++
python-devel/twisted-core/INSTALL | 2 +
python-devel/twisted/BUILD | 31 ++++++++++++++++---
python-devel/twisted/DEPENDS | 3 +
python-devel/twisted/DETAILS | 2 -
python-devel/twisted/HISTORY | 6 +++
python-devel/twisted/INSTALL | 29 +++++++++++++++---
11 files changed, 181 insertions(+), 11 deletions(-)

New commits:
commit 729ea55d13514ac7fb433dcb4933689ec4b704cd
Author: George Sherwood <chat AT sourcemage.org>
Commit: George Sherwood <chat AT sourcemage.org>

twisted: Updated to only build modules. Core now built in twisted core.

commit 456fd0064412feed6ae3ef92cfa629da3c1c40d7
Author: George Sherwood <chat AT sourcemage.org>
Commit: George Sherwood <chat AT sourcemage.org>

twisted-core: Added new spell. Twisted now contains multiple modules
that depends on the core being installed first.

diff --git a/ChangeLog b/ChangeLog
index 95f52aa..9dcfe2f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2006-11-18 George Sherwood <george AT beernabeer.com>
+ * python-devel: new spell, twisted-core
+
2006-11-17 David Kowis <dkowis AT shlrm.org>
* FUNCTIONS: added a note_config_files function for spells that
install
their own config files as part of a make install process or
something.
diff --git a/python-devel/twisted-core/BUILD b/python-devel/twisted-core/BUILD
new file mode 100755
index 0000000..916f1cc
--- /dev/null
+++ b/python-devel/twisted-core/BUILD
@@ -0,0 +1,2 @@
+cd $SOURCE_DIRECTORY/TwistedCore-2.4.0 &&
+python setup.py build
diff --git a/python-devel/twisted-core/DEPENDS
b/python-devel/twisted-core/DEPENDS
new file mode 100755
index 0000000..f9ea180
--- /dev/null
+++ b/python-devel/twisted-core/DEPENDS
@@ -0,0 +1,2 @@
+depends python &&
+depends zopeinterface
diff --git a/python-devel/twisted-core/DETAILS
b/python-devel/twisted-core/DETAILS
new file mode 100755
index 0000000..807f1bb
--- /dev/null
+++ b/python-devel/twisted-core/DETAILS
@@ -0,0 +1,51 @@
+ SPELL=twisted-core
+ VERSION=2.4.0
+ SOURCE=Twisted-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/Twisted-$VERSION
+
SOURCE_URL[0]=http://tmrc.mit.edu/mirror/twisted/Twisted/${VERSION%.*}/$SOURCE
+
SOURCE_HASH=sha512:f0fe3530aa2ee7152b34a85739fc51deec1f9813124becc271c4908e16516bc9ca24d1a8ce427234c11b782596b79dba0a82178e548075c9023933a9847c841b
+ WEB_SITE=http://twistedmatrix.com/
+ ENTERED=20071118
+ LICENSE[0]=MIT
+ SHORT="Event-driven networking framework written in Python"
+cat << EOF
+-A Development Tool
+
+Twisted is a framework, written in Python, for writing networked
+applications. It includes implementations of a number of commonly used
+network services such as a web server, an IRC chat server, a mail server,
+a relational database interface and an object broker. Developers can
+build applications using all of these services as well as custom services
+that they write themselves. Twisted also includes a user authentication
+system that controls access to services and provides services with user
+context information to implement their own security models.
+
+Twisted provides important features needed for networking programming,
+both at the high and low levels:
+ * Pluggable event loops allowing the developer to take advantage of
+ platform-specific capabilities.
+ * Abstractions of protocols and transports.
+ * Through Twisted Spread, mechanisms for network encoding of data (in
+ Python, Java, ELisp, and other languages), to a full-blown distributed
+ object system.
+
+-An Integrated Environment
+
+Twisted is an integration point for network services that were previously
+unable to interoperate. Services within a Twisted server can communicate
+with each other and share information providing a very integrated
+programming environment that can re-use large amounts of infrastructure
+across multiple network mediums (such as chat, web, and mail).
+
+As well as servers, Twisted supports several different kinds of clients
+and GUIs. This means that the client can re-use large portions of the
+server's code, improving test coverage and reliability while reducing
+code size.
+
+-An Application Suite
+
+Twisted is a collection of servers and clients, which can be used either
+by developers of new applications or directly. For example an easy to
+run web server is available out of the box as an application for the
+desktop user, but it is also a framework for developers to use.
+EOF
diff --git a/python-devel/twisted-core/HISTORY
b/python-devel/twisted-core/HISTORY
new file mode 100644
index 0000000..4df300e
--- /dev/null
+++ b/python-devel/twisted-core/HISTORY
@@ -0,0 +1,61 @@
+2006-11-18 George Sherwood <george AT beernabeer.com>
+ * ALL: Created new spell twisted-core from twisted
+
+2006-11-08 Flavien Bridault <vlaaad AT sourcemage.org>
+ * TRIGGERS: Removed, python upgrades are now handled in the python
spell
+
+2006-09-19 Anton Brondz <dinolinux AT sourcemage.org>
+ * DETAILS: removed BUILD_API=2
+ * BUILD: added, fixes bug #13088
+ * INSTALL: added, fixes bug #13088
+
+2006-08-18 Bearcat M. Sandor <bearcat AT feline-soul.com>
+ * DETAILS: updated to 2.4.0
+
+2005-12-05 Sergey Lipnevich <sergey AT sourcemage.org>
+ * BUILD,INSTALL: remove and use the default.
+
+2005-11-29 Seth Woolley <seth AT tautology.org>
+ * DETAILS: MD5 -> SHA512
+
+2005-04-24 Sergey Lipnevich <sergey AT sourcemage.org>
+ * DETAILS: upgrade to 2.0.0; license and source URL changed;
+ * INSTALL: simplify by using bash "alternate value" trick;
+ * DEPENDS: needs zopeinterface.
+
+2005-02-28 Eric Sandall <eric AT sandall.us>
+ * CONFLICTS: Removed conflicting spell
+
+2005-01-26 David Brown <dmlb2000 AT excite.com>
+ * INSTALL: updated to check INSTALL_ROOT then use it
+
+2005-01-18 Unet <unet AT sourcemage.org>
+ * INSTALL: Use INSTALL_ROOT
+
+2004-12-16 Eric Sandall <eric AT sandall.us>
+ * Renamed to twisted
+ * DETAILS: Renamed to twisted
+ Changed LICENSE to LICENSE[0]
+ Shortened SHORT
+ Updated UPDATED
+ * DEPENDS,TRIGGERS: Python renamed to python
+ * CONFLICTS: Auto-conflicts with Twisted
+
+2004-08-30 David Braaten <xiticix47 AT hotmail.com>
+ * DETAILS: version 1.3.0. BUILD_API=2.
+ * BUILD: api2 edits.
+ * INSTALL: created.
+ * DEPENDS: it is a python lib, so added depends Python.
+
+2004-04-15 Unet <audio AT sourcemage.org>
+ * DETAILS: Updated to 1.2.0
+
+2003-04-08 M.L. <mlubrano AT sourcemage.org>
+ * Added $OPTS in BUILD.
+
+2002-03-28 Eric Schabell <eric AT schabell.com>
+ * Added MAINTAINER line.
+
+2002-03-13 Eric Schabell <eric AT schabell.com>
+ * Added this History file.
+
diff --git a/python-devel/twisted-core/INSTALL
b/python-devel/twisted-core/INSTALL
new file mode 100755
index 0000000..93b6dee
--- /dev/null
+++ b/python-devel/twisted-core/INSTALL
@@ -0,0 +1,2 @@
+cd $SOURCE_DIRECTORY/TwistedCore-2.4.0 &&
+python setup.py install
diff --git a/python-devel/twisted/BUILD b/python-devel/twisted/BUILD
index 32c9331..09a5535 100755
--- a/python-devel/twisted/BUILD
+++ b/python-devel/twisted/BUILD
@@ -1,6 +1,27 @@
-cd $SOURCE_DIRECTORY/TwistedCore-2.4.0 &&
-chmod +x setup.py &&
-./setup.py build
+cd $SOURCE_DIRECTORY/TwistedConch-0.7.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedLore-0.2.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedMail-0.3.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedMail-0.3.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedNames-0.3.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedNews-0.2.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedRunner-0.2.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedWeb-0.6.0 &&
+python setup.py build &&
+
+cd $SOURCE_DIRECTORY/TwistedWords-0.4.0 &&
+python setup.py build

-cd $SOURCE_DIRECTORY &&
-./setup.py build
\ No newline at end of file
diff --git a/python-devel/twisted/DEPENDS b/python-devel/twisted/DEPENDS
index f9ea180..c1b5bb3 100755
--- a/python-devel/twisted/DEPENDS
+++ b/python-devel/twisted/DEPENDS
@@ -1,2 +1,3 @@
depends python &&
-depends zopeinterface
+depends pycrypto &&
+depends twisted-core
diff --git a/python-devel/twisted/DETAILS b/python-devel/twisted/DETAILS
index da36a32..e452f5d 100755
--- a/python-devel/twisted/DETAILS
+++ b/python-devel/twisted/DETAILS
@@ -6,7 +6,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/Twiste

SOURCE_HASH=sha512:f0fe3530aa2ee7152b34a85739fc51deec1f9813124becc271c4908e16516bc9ca24d1a8ce427234c11b782596b79dba0a82178e548075c9023933a9847c841b
WEB_SITE=http://twistedmatrix.com/
ENTERED=20040222
- UPDATED=20050424
+ PATCHLEVEL=1
LICENSE[0]=MIT
SHORT="Event-driven networking framework written in Python"
cat << EOF
diff --git a/python-devel/twisted/HISTORY b/python-devel/twisted/HISTORY
index 56f5a46..ef43055 100644
--- a/python-devel/twisted/HISTORY
+++ b/python-devel/twisted/HISTORY
@@ -1,3 +1,9 @@
+2006-11-18 George Sherwood <george AT beernabeer.com>
+ * DEPENDS: depends twisted-core
+ * DETAILS: Removed UPDATED. Updated PATCHLEVEL.
+ * BUILD: Update to build individual modules
+ * INSTALL: Updated to build individual modules
+
2006-11-08 Flavien Bridault <vlaaad AT sourcemage.org>
* TRIGGERS: Removed, python upgrades are now handled in the python
spell

diff --git a/python-devel/twisted/INSTALL b/python-devel/twisted/INSTALL
index 19205f4..778a2f0 100755
--- a/python-devel/twisted/INSTALL
+++ b/python-devel/twisted/INSTALL
@@ -1,5 +1,26 @@
-cd $SOURCE_DIRECTORY/TwistedCore-2.4.0 &&
-./setup.py install &&
+cd $SOURCE_DIRECTORY/TwistedConch-0.7.0 &&
+python setup.py install &&

-cd $SOURCE_DIRECTORY &&
-./setup.py install
\ No newline at end of file
+cd $SOURCE_DIRECTORY/TwistedLore-0.2.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedMail-0.3.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedMail-0.3.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedNames-0.3.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedNews-0.2.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedRunner-0.2.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedWeb-0.6.0 &&
+python setup.py install &&
+
+cd $SOURCE_DIRECTORY/TwistedWords-0.4.0 &&
+python setup.py install



  • [SM-Commit] GIT changes to master grimoire by George Sherwood (729ea55d13514ac7fb433dcb4933689ec4b704cd), George Sherwood, 11/18/2006

Archive powered by MHonArc 2.6.24.

Top of Page