From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A55F13832E for ; Tue, 19 Jul 2016 13:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B81F8E0B5C; Tue, 19 Jul 2016 13:00:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E78AE0A72 for ; Tue, 19 Jul 2016 13:00:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0136C340C7B for ; Tue, 19 Jul 2016 13:00:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EC267CA for ; Tue, 19 Jul 2016 13:00:06 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1468932980.7a58514b9903efe5d16fd3f5ed78cb67bf1a893c.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mailparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-mailparse/pecl-mailparse-3.0.1-r1.ebuild X-VCS-Directories: dev-php/pecl-mailparse/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 7a58514b9903efe5d16fd3f5ed78cb67bf1a893c X-VCS-Branch: master Date: Tue, 19 Jul 2016 13:00:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6f5f01ee-cd66-4b5c-99c3-c6de103ee74f X-Archives-Hash: 39f4aeb68502c16a5d13b04742b90782 commit: 7a58514b9903efe5d16fd3f5ed78cb67bf1a893c Author: Brian Evans gentoo org> AuthorDate: Tue Jul 19 12:56:20 2016 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Jul 19 12:56:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a58514b dev-php/pecl-mailparse: Revbump into a new slot Package-Manager: portage-2.3.0 .../pecl-mailparse/pecl-mailparse-3.0.1-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-php/pecl-mailparse/pecl-mailparse-3.0.1-r1.ebuild b/dev-php/pecl-mailparse/pecl-mailparse-3.0.1-r1.ebuild new file mode 100644 index 0000000..53d2680 --- /dev/null +++ b/dev-php/pecl-mailparse/pecl-mailparse-3.0.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PHP_EXT_NAME="mailparse" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS=( README ) + +USE_PHP="php7-0 php5-6" + +inherit php-ext-pecl-r3 + +# Only build for 7.0 +USE_PHP="php7-0" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +DESCRIPTION="PHP extension for parsing and working with RFC822 and MIME compliant messages" +LICENSE="PHP-3.01" +SLOT="7" +IUSE="" + +for target in ${USE_PHP}; do + phpslot=${target/php} + phpslot=${phpslot/-/.} + PHPUSEDEPEND="${PHPUSEDEPEND} + php_targets_${target}? ( dev-lang/php:${phpslot}[unicode] )" +done +unset target phpslot + +DEPEND="${PHPUSEDEPEND} + dev-util/re2c" +RDEPEND="${PHPUSEDEPEND} php_targets_php5-6? ( dev-php/pecl-mailparse:0[php_targets_php5-6] )"