summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Kowis2008-06-30 20:11:23 -0500
committerDavid Kowis2008-06-30 20:11:23 -0500
commit97d41a8c49ca540de0a1eb17fcd8662a3cfff2f2 (patch)
treed96f15726184ed7f19aeac456a3fcb27759cc179
parent508776f6dde97fafe62cb5a93cd3f036eedec26f (diff)
email-abstract: new spell needed for email-reply
-rw-r--r--ChangeLog1
-rwxr-xr-xperl-cpan/email-abstract/BUILD1
-rwxr-xr-xperl-cpan/email-abstract/DEPENDS2
-rwxr-xr-xperl-cpan/email-abstract/DETAILS25
-rw-r--r--perl-cpan/email-abstract/HISTORY3
5 files changed, 32 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 96cb5a10f9..9b9bc2a619 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,7 @@
* 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
2008-06-30 Vlad Glagolev <stealth@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 0000000000..2de29cd903
--- /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 0000000000..b417eb8262
--- /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 0000000000..e74f1b127e
--- /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 0000000000..c5fde08ed5
--- /dev/null
+++ b/perl-cpan/email-abstract/HISTORY
@@ -0,0 +1,3 @@
+2008-06-30 David Kowis <dkowis@shlrm.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+