Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (8ee6673341376c76b05344357bc2faf80ad7d4ad)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (8ee6673341376c76b05344357bc2faf80ad7d4ad)
  • Date: Mon, 30 Jun 2008 20:20:24 -0500

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

ChangeLog | 5 ++++
perl-cpan/email-abstract/BUILD | 1
perl-cpan/email-abstract/DEPENDS | 2 +
perl-cpan/email-abstract/DETAILS | 25
+++++++++++++++++++++++
perl-cpan/email-abstract/HISTORY | 3 ++
perl-cpan/email-mime-attachment-stripper/BUILD | 1
perl-cpan/email-mime-attachment-stripper/DEPENDS | 3 ++
perl-cpan/email-mime-attachment-stripper/DETAILS | 14 ++++++++++++
perl-cpan/email-mime-attachment-stripper/HISTORY | 3 ++
perl-cpan/email-mime-creator/BUILD | 1
perl-cpan/email-mime-creator/DEPENDS | 4 +++
perl-cpan/email-mime-creator/DETAILS | 13 +++++++++++
perl-cpan/email-mime-creator/HISTORY | 3 ++
perl-cpan/email-reply/BUILD | 1
perl-cpan/email-reply/DEPENDS | 5 ++++
perl-cpan/email-reply/DETAILS | 13 +++++++++++
perl-cpan/email-reply/HISTORY | 3 ++
perl-cpan/email-simple-creator/BUILD | 1
perl-cpan/email-simple-creator/DEPENDS | 3 ++
perl-cpan/email-simple-creator/DETAILS | 14 ++++++++++++
perl-cpan/email-simple-creator/HISTORY | 3 ++
21 files changed, 121 insertions(+)

New commits:
commit 8ee6673341376c76b05344357bc2faf80ad7d4ad
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

email-reply: new spell, needed for bugzilla

commit 3bf80218fb8ad7957befd332e3a1e123dce1dd18
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

email-mime-creator: new spell, needed for email-reply

commit bd9e9f079893317dc2bd21a2e83626b2c5de4865
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

email-simple-creator: new spell, needed for email-mime-creator

commit 97d41a8c49ca540de0a1eb17fcd8662a3cfff2f2
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

email-abstract: new spell needed for email-reply

commit 508776f6dde97fafe62cb5a93cd3f036eedec26f
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

email-mime-attachment-stripper: new spell, candidate for longest spell
name evar, and for bugzilla

diff --git a/ChangeLog b/ChangeLog
index b9ad1c9..e60376d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,11 @@
* perl-cpan/template-gd: new spell, needed for bugzilla
* perl-cpan/email-date-format: new spell, needed for mime-lite
* perl-cpan/mime-lite: new spell, needed for soap-lite
+ * perl-cpan/email-mime-attachment-stripper: new spell, needed for
bugzilla
+ * perl-cpan/email-abstract: new spell, needed for email-reply
+ * perl-cpan/email-simple-creator: new spell, needed for
email-mime-creator
+ * perl-cpan/email-mime-creator: new spell, needed for email-reply
+ * perl-cpan/email-reply: new spell, needed for bugzilla

2008-06-30 Vlad Glagolev <stealth AT sourcemage.org>
* ftp/rsync/WayneDavison.gpg: added gpg key for rsync
diff --git a/perl-cpan/email-abstract/BUILD b/perl-cpan/email-abstract/BUILD
new file mode 100755
index 0000000..2de29cd
--- /dev/null
+++ b/perl-cpan/email-abstract/BUILD
@@ -0,0 +1 @@
+default_build_perl
diff --git a/perl-cpan/email-abstract/DEPENDS
b/perl-cpan/email-abstract/DEPENDS
new file mode 100755
index 0000000..b417eb8
--- /dev/null
+++ b/perl-cpan/email-abstract/DEPENDS
@@ -0,0 +1,2 @@
+depends perl &&
+depends email-simple
diff --git a/perl-cpan/email-abstract/DETAILS
b/perl-cpan/email-abstract/DETAILS
new file mode 100755
index 0000000..e74f1b1
--- /dev/null
+++ b/perl-cpan/email-abstract/DETAILS
@@ -0,0 +1,25 @@
+ SPELL=email-abstract
+ VERSION=2.134
+ SOURCE="Email-Abstract-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
+ SOURCE_HASH=sha512:
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+
WEB_SITE="http://search.cpan.org/search?query=Email-Abstract&mode=all";
+ LICENSE[0]=ART
+ ENTERED=20080630
+ SHORT="Email::Abstract - unified interface to mail
representations"
+cat << EOF
+Email::Abstract provides module writers with the ability to write simple,
+representation-independent mail handling code. For instance, in the cases of
+Mail::Thread or Mail::ListDetector, a key part of the code involves reading
+the headers from a mail object. Where previously one would either have
+to specify the mail class required, or to build a new object from scratch,
+Email::Abstract can be used to perform certain simple operations on an object
+regardless of its underlying representation.
+
+Email::Abstract currently supports Mail::Internet, MIME::Entity,
Mail::Message,
+Email::Simple and Email::MIME. Other representations are encouraged to create
+their own Email::Abstract::* class by copying Email::Abstract::EmailSimple.
All
+modules installed under the Email::Abstract hierarchy will be automatically
+picked up and used.
+EOF
diff --git a/perl-cpan/email-abstract/HISTORY
b/perl-cpan/email-abstract/HISTORY
new file mode 100644
index 0000000..c5fde08
--- /dev/null
+++ b/perl-cpan/email-abstract/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+
diff --git a/perl-cpan/email-mime-attachment-stripper/BUILD
b/perl-cpan/email-mime-attachment-stripper/BUILD
new file mode 100755
index 0000000..2de29cd
--- /dev/null
+++ b/perl-cpan/email-mime-attachment-stripper/BUILD
@@ -0,0 +1 @@
+default_build_perl
diff --git a/perl-cpan/email-mime-attachment-stripper/DEPENDS
b/perl-cpan/email-mime-attachment-stripper/DEPENDS
new file mode 100755
index 0000000..7330a45
--- /dev/null
+++ b/perl-cpan/email-mime-attachment-stripper/DEPENDS
@@ -0,0 +1,3 @@
+depends perl &&
+depends email-mime &&
+depends email-mime-modifier
diff --git a/perl-cpan/email-mime-attachment-stripper/DETAILS
b/perl-cpan/email-mime-attachment-stripper/DETAILS
new file mode 100755
index 0000000..30e95ec
--- /dev/null
+++ b/perl-cpan/email-mime-attachment-stripper/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=email-mime-attachment-stripper
+ VERSION=1.314
+ SOURCE="Email-MIME-Attachment-Stripper-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
+ SOURCE_HASH=sha512:
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+
WEB_SITE="http://search.cpan.org/search?query=Email%3A%3AMIME%3A%3AAttachment%3A%3AStripper&mode=all";
+ LICENSE[0]=ART
+ ENTERED=20080630
+ SHORT="Email::MIME::Attachment::Stripper - Strip the attachments
from a mail"
+cat << EOF
+Given a Email::MIME object, detach all attachments from the message. These
+are then available separately.
+EOF
diff --git a/perl-cpan/email-mime-attachment-stripper/HISTORY
b/perl-cpan/email-mime-attachment-stripper/HISTORY
new file mode 100644
index 0000000..c5fde08
--- /dev/null
+++ b/perl-cpan/email-mime-attachment-stripper/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+
diff --git a/perl-cpan/email-mime-creator/BUILD
b/perl-cpan/email-mime-creator/BUILD
new file mode 100755
index 0000000..2de29cd
--- /dev/null
+++ b/perl-cpan/email-mime-creator/BUILD
@@ -0,0 +1 @@
+default_build_perl
diff --git a/perl-cpan/email-mime-creator/DEPENDS
b/perl-cpan/email-mime-creator/DEPENDS
new file mode 100755
index 0000000..27484b5
--- /dev/null
+++ b/perl-cpan/email-mime-creator/DEPENDS
@@ -0,0 +1,4 @@
+depends perl &&
+depends email-simple-creator &&
+depends email-mime &&
+depends email-mime-modifier
diff --git a/perl-cpan/email-mime-creator/DETAILS
b/perl-cpan/email-mime-creator/DETAILS
new file mode 100755
index 0000000..363c0f1
--- /dev/null
+++ b/perl-cpan/email-mime-creator/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=email-mime-creator
+ VERSION=1.454
+ SOURCE="Email-MIME-Creator-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
+ SOURCE_HASH=sha512:
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+
WEB_SITE="http://search.cpan.org/search?query=Email-MIME-Creator&mode=all";
+ LICENSE[0]=ART
+ ENTERED=20080630
+ SHORT="Email::MIME::Creator - Email::MIME constructor for
starting anew."
+cat << EOF
+Email::MIME::Creator - Email::MIME constructor for starting anew.
+EOF
diff --git a/perl-cpan/email-mime-creator/HISTORY
b/perl-cpan/email-mime-creator/HISTORY
new file mode 100644
index 0000000..c5fde08
--- /dev/null
+++ b/perl-cpan/email-mime-creator/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+
diff --git a/perl-cpan/email-reply/BUILD b/perl-cpan/email-reply/BUILD
new file mode 100755
index 0000000..2de29cd
--- /dev/null
+++ b/perl-cpan/email-reply/BUILD
@@ -0,0 +1 @@
+default_build_perl
diff --git a/perl-cpan/email-reply/DEPENDS b/perl-cpan/email-reply/DEPENDS
new file mode 100755
index 0000000..6fd597d
--- /dev/null
+++ b/perl-cpan/email-reply/DEPENDS
@@ -0,0 +1,5 @@
+depends perl &&
+depends email-abstract &&
+depends email-mime &&
+depends email-mime-modifier &&
+depends email-mime-creator
diff --git a/perl-cpan/email-reply/DETAILS b/perl-cpan/email-reply/DETAILS
new file mode 100755
index 0000000..4ef6cba
--- /dev/null
+++ b/perl-cpan/email-reply/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=email-reply
+ VERSION=1.202
+ SOURCE="Email-Reply-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
+ SOURCE_HASH=sha512:
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+
WEB_SITE="http://search.cpan.org/search?query=Email%3A%3AReply&mode=all";
+ LICENSE[0]=ART
+ ENTERED=20080630
+ SHORT="Email::Reply - Reply to a Message"
+cat << EOF
+This software takes the hard out of generating replies to email messages.
+EOF
diff --git a/perl-cpan/email-reply/HISTORY b/perl-cpan/email-reply/HISTORY
new file mode 100644
index 0000000..c5fde08
--- /dev/null
+++ b/perl-cpan/email-reply/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+
diff --git a/perl-cpan/email-simple-creator/BUILD
b/perl-cpan/email-simple-creator/BUILD
new file mode 100755
index 0000000..2de29cd
--- /dev/null
+++ b/perl-cpan/email-simple-creator/BUILD
@@ -0,0 +1 @@
+default_build_perl
diff --git a/perl-cpan/email-simple-creator/DEPENDS
b/perl-cpan/email-simple-creator/DEPENDS
new file mode 100755
index 0000000..068b3e2
--- /dev/null
+++ b/perl-cpan/email-simple-creator/DEPENDS
@@ -0,0 +1,3 @@
+depends perl &&
+depends email-date-format &&
+depends email-simple
diff --git a/perl-cpan/email-simple-creator/DETAILS
b/perl-cpan/email-simple-creator/DETAILS
new file mode 100755
index 0000000..03abd97
--- /dev/null
+++ b/perl-cpan/email-simple-creator/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=email-simple-creator
+ VERSION=1.424
+ SOURCE="Email-Simple-Creator-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
+ SOURCE_HASH=sha512:
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+
WEB_SITE="http://search.cpan.org/search?query=Email-Simple-Creator&mode=all";
+ LICENSE[0]=ART
+ ENTERED=20080630
+ SHORT="Email::Simple::Creator - build an Email::Simple object
from scratch"
+cat << EOF
+This software provides a constructor to Email::Simple for creating messages
+from scratch.
+EOF
diff --git a/perl-cpan/email-simple-creator/HISTORY
b/perl-cpan/email-simple-creator/HISTORY
new file mode 100644
index 0000000..c5fde08
--- /dev/null
+++ b/perl-cpan/email-simple-creator/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+



  • [SM-Commit] GIT changes to master grimoire by David Kowis (8ee6673341376c76b05344357bc2faf80ad7d4ad), David Kowis, 06/30/2008

Archive powered by MHonArc 2.6.24.

Top of Page