From owner-svn-ports-all@freebsd.org Tue Oct 9 16:27:59 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DC3310B30AC; Tue, 9 Oct 2018 16:27:59 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B384F71208; Tue, 9 Oct 2018 16:27:58 +0000 (UTC) (envelope-from pizzamig@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A8A0A14918; Tue, 9 Oct 2018 16:27:58 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99GRwqn077492; Tue, 9 Oct 2018 16:27:58 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99GRv6j077487; Tue, 9 Oct 2018 16:27:57 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201810091627.w99GRv6j077487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Tue, 9 Oct 2018 16:27:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481639 - in head/devel: . pecl-xdebug-devel pecl-xdebug-devel/files X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: in head/devel: . pecl-xdebug-devel pecl-xdebug-devel/files X-SVN-Commit-Revision: 481639 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 16:27:59 -0000 Author: pizzamig Date: Tue Oct 9 16:27:57 2018 New Revision: 481639 URL: https://svnweb.freebsd.org/changeset/ports/481639 Log: devel/pecl-xdebug-devel: add the beta version to support PHP 7.3 The xdebug 2.7.0 beta version is the only one that support PHP 7.3 Adding it as devel preview Sponsored by: trivago N.V. Added: head/devel/pecl-xdebug-devel/ head/devel/pecl-xdebug-devel/Makefile (contents, props changed) head/devel/pecl-xdebug-devel/distinfo (contents, props changed) head/devel/pecl-xdebug-devel/files/ head/devel/pecl-xdebug-devel/files/pkg-message.in (contents, props changed) head/devel/pecl-xdebug-devel/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 9 16:23:46 2018 (r481638) +++ head/devel/Makefile Tue Oct 9 16:27:57 2018 (r481639) @@ -4094,6 +4094,7 @@ SUBDIR += pecl-weakref SUBDIR += pecl-weakref2 SUBDIR += pecl-xdebug + SUBDIR += pecl-xdebug-devel SUBDIR += pecl-xdebug25 SUBDIR += pecl-xhprof SUBDIR += pecl-yac Added: head/devel/pecl-xdebug-devel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/Makefile Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,23 @@ +# Created by: Luca Pizzamiglio +# $FreeBSD$ + +PORTNAME= xdebug +DISTVERSION= 2.7.0beta1 +CATEGORIES= devel pear +PKGNAMESUFFIX= -devel + +MAINTAINER= pizzamig@FreeBSD.org +COMMENT= Xdebug extension for PHP + +LICENSE= PHP30 +LICENSE_FILE= ${WRKSRC}/LICENSE + +IGNORE_WITH_PHP= 56 + +USES= php:pecl,zend tar:tgz + +CONFIGURE_ARGS= --enable-xdebug + +SUB_FILES= pkg-message + +.include Added: head/devel/pecl-xdebug-devel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/distinfo Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539096489 +SHA256 (PECL/xdebug-2.7.0beta1.tgz) = 90a0ceaf95c7d936113ed0d7474f16978ec2277453be69239d92d0523e0910be +SIZE (PECL/xdebug-2.7.0beta1.tgz) = 226296 Added: head/devel/pecl-xdebug-devel/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/files/pkg-message.in Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,21 @@ +***************************************************************************** +The php debugger 'xdebug' has been installed successful. +Add a line containing + + extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so + +or + + zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so + +to your php.ini to load it. xdebug is not compatible with the extension +'Zend Optimizer' - you're only able to use one of them. So take care having +at least the lesser required extension disabled by commenting out it's +loader line in your php.ini. + +Add following section to enable profiling: + +xdebug.profiler_enable = 1 +xdebug.profiler_output_dir = /tmp/profiler + +***************************************************************************** Added: head/devel/pecl-xdebug-devel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-xdebug-devel/pkg-descr Tue Oct 9 16:27:57 2018 (r481639) @@ -0,0 +1,20 @@ +The Xdebug extension helps you debugging your script by providing a lot of +valuable debug information. The debug information that Xdebug can provide +includes the following: + + * stack and function traces in error messages with: + o full parameter display for user defined functions + o function name, file name and line indications + o support for member functions + * memory allocation + * protection for infinite recursions + +Xdebug also provides: + + * profiling information for PHP scripts + * script execution analysis + * capabilities to debug your scripts interactively with a debug client + +Beta Version! The only one supporting PHP 7.3 + +WWW: http://www.xdebug.org/