New commits:
commit 27205dc361cff1142a3dff1ed0e5903997d0f014
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
email-date-format: quill forgot the sha512
commit 8983fe738175b79841663fa65b54263c5017c78b
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
mime-parser: quill forgot the sha512
commit cdcb0be9d4d554e8c769fcd20c3d92483456a4a2
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
email-mime-encodings: quill forgot the sha512
commit ff93d898a1b0c352ef4d27e46361ab8ae8238e8a
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
email-address: quill forgot the sha512
commit 9555e7fd6683f9909ab577e29d122102be162d8e
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
email-simple: quill forgot the sha512
commit d85969f144de3b691bf165dfe81da13ce45dd41c
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
return-value: quill forgot the sha512
commit 22ad1c4981c436f4d4b78c3df238e78b4c0c4fdc
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
email-mime-contenttype: oops, quill didn't add the sha512 :(
commit 2235cd4ed5d5e75d8f6b21518e199977ef4d3907
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
Bugzilla: dependency modifications and such :D
commit ea34bd98dfb3c78da23e814e680ffe08af2864b0
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
template-plugin-gd-image: deprectaed in favor of template-gd
diff --git a/ChangeLog b/ChangeLog
index cd19be8..45eb1cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,8 @@
* 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
+ * perl-cpan/template-plugin-gd-image: deprecated in favor of
template-gd
+ (they do the same thing)
2008-06-30 Vlad Glagolev <stealth AT sourcemage.org>
* ftp/rsync/WayneDavison.gpg: added gpg key for rsync
diff --git a/collab/bugzilla/CONFIGURE b/collab/bugzilla/CONFIGURE
index 64a2505..223b146 100755
--- a/collab/bugzilla/CONFIGURE
+++ b/collab/bugzilla/CONFIGURE
@@ -1,4 +1,8 @@
config_query_list BUGZILLA_DATABASE "Which database backend would you like
to use?" mysql postgresql &&
-config_query BUGZILLA_CHARTING "Do you want all the things needed for
bugzilla's charting? (reccomended)" n &&
+config_query BUGZILLA_CHARTING "Do you want all the things needed for
bugzilla's graphs? (reccomended)" n &&
config_query BUGZILLA_PATCH "Do you want nifty patch abilities\
- (Difference between patches, and pretty views)?" n
+ (Difference between patches, and pretty views)?" n &&
+config_query BUGZILLA_DEPENDENCY_CHARTS "Do you want the things for bugzilla
to do dependency charts?" n &&
+config_query BUGZILLA_IMPORT_EXPORT "Do you want to be ablet to import and
export bugs? " n &&
+config_query BUGZILLA_INBOUND_MAIL "Do you want bugzilla to be able to
receive mail?" n &&
+config_query BUGZILLA_HTML "Do you want bugzilla to handle more html (in
product/group descriptions)?" n
diff --git a/collab/bugzilla/DEPENDS b/collab/bugzilla/DEPENDS
index f668367..0acf3d9 100755
--- a/collab/bugzilla/DEPENDS
+++ b/collab/bugzilla/DEPENDS
@@ -1,11 +1,11 @@
-depends appconfig &&
depends perl-cgi &&
+depends date-format &&
+depends dbi &&
depends file-spec &&
depends template-toolkit &&
-depends mime-base64 &&
-depends mime-tools &&
+depends email-send &&
+depends email-mime-modifier &&
-depends dbi &&
if [[ "$BUGZILLA_DATABASE" == "mysql" ]]; then
depends dbd-mysql
@@ -26,7 +26,26 @@ if [[ "$BUGZILLA_CHARTING" == "y" ]]; then
depends chart
fi &&
+if [[ "$BUGZILLA_DEPENDENCY_CHARTS" == "y" ]]; then
+ depends graphviz
+fi &&
+
+if [[ "$BUGZILLA_IMPORT_EXPORT" == "y" ]]; then
+ depends mime-parser &&
+ depends xml-twig
+fi &&
+
+if [[ "$BUGZILLA_INBOUND_MAIL" == "y" ]]; then
+ depends email-mime-attachment-stripper &&
+ depends email-reply
+fi &&
+
+if [[ "$BUGZILLA_HTML" == "y" ]]; then
+ depends html-parser &&
+ depends html-scrubber
+fi &&
+
optional_depends imagemagick '' '' 'to convert bmp attachments to png' &&
-optional_depends xml-twig '' '' 'For importing bugs via the xml format
also required for the "move bugs" feature' &&
optional_depends net-ldap '' '' 'for LDAP authentication' &&
-optional_depends html-scrubber '' '' 'If you want additional HTML tags
within product and group descriptions'
+optional_depends soap-lite '' '' 'For the web services interface' &&
+optional_depends lwp '' '' 'For automatic update notifications'
diff --git a/collab/bugzilla/HISTORY b/collab/bugzilla/HISTORY
index 3acd227..e1513df 100644
--- a/collab/bugzilla/HISTORY
+++ b/collab/bugzilla/HISTORY
@@ -1,3 +1,6 @@
+2008-06-30 David Kowis <dkowis AT shlrm.org>
+ * CONFIGURE, DEPENDS: much changes to make it more smarter
+
2008-06-13 Elisamuel Resto <ryuji AT sourcemage.org>
* DETAILS: updated version to 3.0.4
diff --git a/perl-cpan/email-address/DETAILS b/perl-cpan/email-address/DETAILS
index 5e77934..bc58350 100755
--- a/perl-cpan/email-address/DETAILS
+++ b/perl-cpan/email-address/DETAILS
@@ -2,7 +2,7 @@
VERSION=1.889
SOURCE="Email-Address-${VERSION}.tar.gz"
SOURCE_URL[0]=http://www.cpan.org/authors/id/R/RJ/RJBS/${SOURCE}
- SOURCE_HASH=sha512:
+
SOURCE_HASH=sha512:09d2885e727ab863a9dff7848f3b434ee99902a4c7c6e2fdd16314c6aa9bdac8c5c54004e2a76957ae133947350c706c3f0d0b5935524f740239fb4821134dae
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://search.cpan.org/search?query=Email-Address&mode=all"
LICENSE[0]=ART
diff --git a/perl-cpan/email-address/HISTORY b/perl-cpan/email-address/HISTORY
index c5fde08..3f9bb29 100644
--- a/perl-cpan/email-address/HISTORY
+++ b/perl-cpan/email-address/HISTORY
@@ -1,3 +1,6 @@
+2008-07-01 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: quill forgot the sha512
+
2008-06-30 David Kowis <dkowis AT shlrm.org>
* BUILD, DEPENDS, DETAILS: spell created