From cd70e6af954d5d2106d1ab019fadce58ac2103e0 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 15 Jul 2016 17:47:41 -0400 Subject: dev-php/PHPMailer: version bump 5.2.14 -> 5.2.16. Package-Manager: portage-2.2.28 --- dev-php/PHPMailer/Manifest | 2 +- dev-php/PHPMailer/PHPMailer-5.2.14.ebuild | 57 ------------------------------ dev-php/PHPMailer/PHPMailer-5.2.16.ebuild | 58 +++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 58 deletions(-) delete mode 100644 dev-php/PHPMailer/PHPMailer-5.2.14.ebuild create mode 100644 dev-php/PHPMailer/PHPMailer-5.2.16.ebuild (limited to 'dev-php/PHPMailer') diff --git a/dev-php/PHPMailer/Manifest b/dev-php/PHPMailer/Manifest index 2ea457dcd5bf..505802d649f8 100644 --- a/dev-php/PHPMailer/Manifest +++ b/dev-php/PHPMailer/Manifest @@ -1 +1 @@ -DIST PHPMailer-5.2.14.tar.gz 192100 SHA256 54acc99a6cdd807c5646e712e4499308d885bc76a3dc27679388fe0359bd3a93 SHA512 f3cacbdea4b008e6f0bddbc06fc08c8afebe64f74dded5fe87022a6ccf36db19bf4cf4f303399373c250afec32f87645eab6acd8adbcfbed3af349edd51f9e49 WHIRLPOOL c202ad61a6380b23f3e7460f333e396ef9be16f097a798f048a806d184a8ed2f50a32183d7420e7e1439865367177df0d352246928a67b315a89ed339534ad6c +DIST PHPMailer-5.2.16.tar.gz 195931 SHA256 0700a64ec57caaa710c3e499160099ec21155c6bd937b5bd3ccc910c2d4d2d06 SHA512 5e2503adc58865c10234ccd3ea09d0ae77f687bb4936be732119c922caa8ec35c3646d07dc7d37f121ae09191ee34f434483cc702cfc98cac8429803915a2049 WHIRLPOOL b68830d8467891adbde7db916d4d256cb65dd73bb9eb02938ebd9bac9bda39b64fb6701831b020201fda6f07e0b717074ec3debf4eb139ad9b2636b4a46c9241 diff --git a/dev-php/PHPMailer/PHPMailer-5.2.14.ebuild b/dev-php/PHPMailer/PHPMailer-5.2.14.ebuild deleted file mode 100644 index 880f5b0c1831..000000000000 --- a/dev-php/PHPMailer/PHPMailer-5.2.14.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -DESCRIPTION="Full-featured email creation and transfer class for PHP" -HOMEPAGE="https://github.com/PHPMailer/PHPMailer" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc +examples test" - -RDEPEND="dev-lang/php:*" -DEPEND="${RDEPEND} - doc? ( dev-php/phpDocumentor ) - test? ( dev-php/phpunit )" - -# The test suite requires network access. -RESTRICT=test - -src_compile(){ - if use doc; then - phpdoc --filename="class.*.php" \ - --target="./html" \ - --title="${PN}" \ - --sourcecode \ - --force \ - --progressbar \ - || die "failed to generate API documentation" - fi -} - -src_install(){ - insinto "/usr/share/php/${PN}" - doins -r *.php language extras - - dodoc README.md changelog.md - dodoc docs/* - use examples && dodoc -r examples - - use doc && dohtml -r html/* -} - -src_test(){ - cd test/ || die - phpunit . || die "test suite failed" -} - -pkg_postinst(){ - elog "${PN} has been installed in /usr/share/php/${PN}/." - elog "To use it in a script, require('${PN}/${PN}Autoload.php')," - elog "and then use the ${PN} class normally. Most of the examples in" - elog "the documentation should work without further modification." -} diff --git a/dev-php/PHPMailer/PHPMailer-5.2.16.ebuild b/dev-php/PHPMailer/PHPMailer-5.2.16.ebuild new file mode 100644 index 000000000000..fc6e01fb7c7a --- /dev/null +++ b/dev-php/PHPMailer/PHPMailer-5.2.16.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Full-featured email creation and transfer class for PHP" +HOMEPAGE="https://github.com/PHPMailer/PHPMailer" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc +examples test" + +RDEPEND="dev-lang/php:*" +DEPEND="${RDEPEND} + doc? ( dev-php/phpDocumentor ) + test? ( ${RDEPEND} dev-php/phpunit )" + +# The test suite requires network access. +RESTRICT=test + +src_compile(){ + if use doc; then + phpdoc --filename="class.*.php" \ + --target="./html" \ + --cache-folder="${T}" \ + --title="${PN}" \ + --sourcecode \ + --force \ + --progressbar \ + || die "failed to generate API documentation" + fi +} + +src_install(){ + insinto "/usr/share/php/${PN}" + doins -r *.php language extras + + dodoc README.md changelog.md + dodoc docs/* + use examples && dodoc -r examples + + use doc && dodoc -r html/* +} + +src_test(){ + cd test/ || die + phpunit . || die "test suite failed" +} + +pkg_postinst(){ + elog "${PN} has been installed in /usr/share/php/${PN}/." + elog "To use it in a script, require('${PN}/${PN}Autoload.php')," + elog "and then use the ${PN} class normally. Most of the examples in" + elog "the documentation should work without further modification." +} -- cgit v1.2.3-65-gdbad