From owner-svn-ports-head@freebsd.org Sun Mar 19 00:33:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE48FD08B05; Sun, 19 Mar 2017 00:33:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8F1F1DA8; Sun, 19 Mar 2017 00:33:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2J0XNGX023121; Sun, 19 Mar 2017 00:33:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2J0XN7V023116; Sun, 19 Mar 2017 00:33:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201703190033.v2J0XN7V023116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Mar 2017 00:33:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436457 - in head: . mail mail/pecl-mailparse mail/pecl-mailparse2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Mar 2017 00:33:25 -0000 Author: sunpoet Date: Sun Mar 19 00:33:23 2017 New Revision: 436457 URL: https://svnweb.freebsd.org/changeset/ports/436457 Log: Update to 3.0.2 - Add pecl-mailparse2 2.1.6 (copied from pecl-mailparse) - Add UPDATING entry Changes: https://pecl.php.net/package-changelog.php?package=mailparse PR: 213319 Submitted by: Danilo G. Baio (dbaio) (maintainer) Added: head/mail/pecl-mailparse2/ - copied from r436413, head/mail/pecl-mailparse/ Modified: head/UPDATING head/mail/Makefile head/mail/pecl-mailparse/Makefile head/mail/pecl-mailparse/distinfo head/mail/pecl-mailparse2/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Mar 19 00:32:50 2017 (r436456) +++ head/UPDATING Sun Mar 19 00:33:23 2017 (r436457) @@ -6,6 +6,14 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20170319: + AFFECTS: users of mail/pecl-mailparse + AUTHOR: dbaio@bsd.com.br + + The mail/pecl-mailparse has been upgraded to version 3.0.2, and the new + version is not compatible with PHP5. If you need PHP5 support, you can + find version 2.1.6 in mail/pecl-mailparse2. + +20170319: AFFECTS: users of textproc/pecl-yaml AUTHOR: dbaio@bsd.com.br Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Mar 19 00:32:50 2017 (r436456) +++ head/mail/Makefile Sun Mar 19 00:33:23 2017 (r436457) @@ -487,6 +487,7 @@ SUBDIR += pear-Net_IMAP SUBDIR += pear-Net_LMTP SUBDIR += pecl-mailparse + SUBDIR += pecl-mailparse2 SUBDIR += pecl-pop3 SUBDIR += perdition SUBDIR += pflogsumm Modified: head/mail/pecl-mailparse/Makefile ============================================================================== --- head/mail/pecl-mailparse/Makefile Sun Mar 19 00:32:50 2017 (r436456) +++ head/mail/pecl-mailparse/Makefile Sun Mar 19 00:33:23 2017 (r436457) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mailparse -PORTVERSION= 2.1.6 -PORTREVISION= 1 +PORTVERSION= 3.0.2 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -12,12 +11,11 @@ DIST_SUBDIR= PECL MAINTAINER= dbaio@bsd.com.br COMMENT= PECL extension to create and decode MIME messages -LICENSE= PHP202 - -PORTSCOUT= limit:^2.* +LICENSE= PHP301 +LICENSE_FILE= ${WRKSRC}/LICENSE USES= php:ext tar:tgz USE_PHP= mbstring:build -IGNORE_WITH_PHP= 70 71 +IGNORE_WITH_PHP= 56 .include Modified: head/mail/pecl-mailparse/distinfo ============================================================================== --- head/mail/pecl-mailparse/distinfo Sun Mar 19 00:32:50 2017 (r436456) +++ head/mail/pecl-mailparse/distinfo Sun Mar 19 00:33:23 2017 (r436457) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476693051 -SHA256 (PECL/mailparse-2.1.6.tgz) = 73705197d2b2ee782efa5477eb2a21432f592c2cb05a72c3a037bbe39e02b5cc -SIZE (PECL/mailparse-2.1.6.tgz) = 36538 +TIMESTAMP = 1489866577 +SHA256 (PECL/mailparse-3.0.2.tgz) = d81a6f8a48e43fca1c0f0d6c90d666830c24d584a23a60add43062aaf221843b +SIZE (PECL/mailparse-3.0.2.tgz) = 38206 Modified: head/mail/pecl-mailparse2/Makefile ============================================================================== --- head/mail/pecl-mailparse/Makefile Sat Mar 18 14:42:11 2017 (r436413) +++ head/mail/pecl-mailparse2/Makefile Sun Mar 19 00:33:23 2017 (r436457) @@ -7,6 +7,7 @@ PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- +PKGNAMESUFFIX= 2 DIST_SUBDIR= PECL MAINTAINER= dbaio@bsd.com.br