diff options
author | 2007-08-17 15:38:24 +0000 | |
---|---|---|
committer | 2007-08-17 15:38:24 +0000 | |
commit | c430949dbe66600aa070ecb84e491e42e1f35d90 (patch) | |
tree | 2276e105351697876f419973b56240c4e14ac4f8 /dev-php/PEAR-Mail_Mime/files | |
parent | New ebuild, dependency for >=PEAR-Mail_Mime-1.5.2, thanks to Jakub Moc <jakub... (diff) | |
download | historical-c430949dbe66600aa070ecb84e491e42e1f35d90.tar.gz historical-c430949dbe66600aa070ecb84e491e42e1f35d90.tar.bz2 historical-c430949dbe66600aa070ecb84e491e42e1f35d90.zip |
version bump wrt bug 158633, thanks to Jakub Moc; introducing new dependency on new package PEAR-Mail_mimeDecode and as such dropping all keywords except ~x86/~amd64
Package-Manager: portage-2.1.2.11
Diffstat (limited to 'dev-php/PEAR-Mail_Mime/files')
-rw-r--r-- | dev-php/PEAR-Mail_Mime/files/1.5.2-php-pass-by-reference-fix.patch | 74 | ||||
-rw-r--r-- | dev-php/PEAR-Mail_Mime/files/digest-PEAR-Mail_Mime-1.5.2 | 3 |
2 files changed, 77 insertions, 0 deletions
diff --git a/dev-php/PEAR-Mail_Mime/files/1.5.2-php-pass-by-reference-fix.patch b/dev-php/PEAR-Mail_Mime/files/1.5.2-php-pass-by-reference-fix.patch new file mode 100644 index 000000000000..b18e4c642514 --- /dev/null +++ b/dev-php/PEAR-Mail_Mime/files/1.5.2-php-pass-by-reference-fix.patch @@ -0,0 +1,74 @@ +--- mime.php.orig 2007-08-16 12:16:47.000000000 +0200 ++++ mime.php 2007-08-16 12:25:07.000000000 +0200 +@@ -376,7 +376,7 @@ + * @return string contents of $file_name + * @access private + */ +- function &_file2str($file_name) ++ function _file2str($file_name) + { + if (!is_readable($file_name)) { + $err = PEAR::raiseError('File is not readable ' . $file_name); +@@ -413,7 +413,7 @@ + * @return object The text mimePart object + * @access private + */ +- function &_addTextPart(&$obj, $text) ++ function _addTextPart(&$obj, $text) + { + $params['content_type'] = 'text/plain'; + $params['encoding'] = $this->_build_params['text_encoding']; +@@ -437,7 +437,7 @@ + * @return object The html mimePart object + * @access private + */ +- function &_addHtmlPart(&$obj) ++ function _addHtmlPart(&$obj) + { + $params['content_type'] = 'text/html'; + $params['encoding'] = $this->_build_params['html_encoding']; +@@ -459,7 +459,7 @@ + * @return object The multipart/mixed mimePart object + * @access private + */ +- function &_addMixedPart() ++ function _addMixedPart() + { + $params = array(); + $params['content_type'] = 'multipart/mixed'; +@@ -480,7 +480,7 @@ + * @return object The multipart/mixed mimePart object + * @access private + */ +- function &_addAlternativePart(&$obj) ++ function _addAlternativePart(&$obj) + { + $params['content_type'] = 'multipart/alternative'; + if (is_object($obj)) { +@@ -502,7 +502,7 @@ + * @return object The multipart/mixed mimePart object + * @access private + */ +- function &_addRelatedPart(&$obj) ++ function _addRelatedPart(&$obj) + { + $params['content_type'] = 'multipart/related'; + if (is_object($obj)) { +@@ -523,7 +523,7 @@ + * @return object The image mimePart object + * @access private + */ +- function &_addHtmlImagePart(&$obj, $value) ++ function _addHtmlImagePart(&$obj, $value) + { + $params['content_type'] = $value['c_type']; + $params['encoding'] = 'base64'; +@@ -546,7 +546,7 @@ + * @return object The image mimePart object + * @access private + */ +- function &_addAttachmentPart(&$obj, $value) ++ function _addAttachmentPart(&$obj, $value) + { + $params['dfilename'] = $value['name']; + $params['encoding'] = $value['encoding']; diff --git a/dev-php/PEAR-Mail_Mime/files/digest-PEAR-Mail_Mime-1.5.2 b/dev-php/PEAR-Mail_Mime/files/digest-PEAR-Mail_Mime-1.5.2 new file mode 100644 index 000000000000..ab89b3787899 --- /dev/null +++ b/dev-php/PEAR-Mail_Mime/files/digest-PEAR-Mail_Mime-1.5.2 @@ -0,0 +1,3 @@ +MD5 30b931f620d880782ee8d5e454b51fdf Mail_Mime-1.5.2.tgz 22176 +RMD160 5956bc5fdca9eb9a084f92275eada90f5147d196 Mail_Mime-1.5.2.tgz 22176 +SHA256 5b17e1ffb417011fbd34ce35dd8f9a88adb66a710122af599a75f5a203f847cb Mail_Mime-1.5.2.tgz 22176 |