From owner-svn-ports-all@freebsd.org Fri Dec 23 10:50:59 2016 Return-Path: Delivered-To: svn-ports-all@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 59EC7C8D7E6; Fri, 23 Dec 2016 10:50:59 +0000 (UTC) (envelope-from vanilla@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 349FBE61; Fri, 23 Dec 2016 10:50:59 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBNAowfa083247; Fri, 23 Dec 2016 10:50:58 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBNAow64083243; Fri, 23 Dec 2016 10:50:58 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201612231050.uBNAow64083243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 23 Dec 2016 10:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429244 - in head/devel: . pecl-request X-SVN-Group: ports-head 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.23 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: Fri, 23 Dec 2016 10:50:59 -0000 Author: vanilla Date: Fri Dec 23 10:50:57 2016 New Revision: 429244 URL: https://svnweb.freebsd.org/changeset/ports/429244 Log: Add pecl-request 1.0.0b1, provides server-side request and response objects for PHP 7. PR: 215436 Submitted by: Gasol Wu Added: head/devel/pecl-request/ head/devel/pecl-request/Makefile (contents, props changed) head/devel/pecl-request/distinfo (contents, props changed) head/devel/pecl-request/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Dec 23 10:49:08 2016 (r429243) +++ head/devel/Makefile Fri Dec 23 10:50:57 2016 (r429244) @@ -3854,6 +3854,7 @@ SUBDIR += pecl-qb SUBDIR += pecl-raphf SUBDIR += pecl-raphf2 + SUBDIR += pecl-request SUBDIR += pecl-runkit SUBDIR += pecl-scream SUBDIR += pecl-spl_types Added: head/devel/pecl-request/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-request/Makefile Fri Dec 23 10:50:57 2016 (r429244) @@ -0,0 +1,20 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= request +PORTVERSION= 1.0.0b1 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= Provides server-side request and response objects for PHP 7 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= php:ext tar:tgz +IGNORE_WITH_PHP= 56 + +.include Added: head/devel/pecl-request/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-request/distinfo Fri Dec 23 10:50:57 2016 (r429244) @@ -0,0 +1,3 @@ +TIMESTAMP = 1482201871 +SHA256 (PECL/request-1.0.0b1.tgz) = 04e1a5401a3ccab2e03cde742ffb209b4b2c552edceb0c1e8eebbf642373e5b7 +SIZE (PECL/request-1.0.0b1.tgz) = 34666 Added: head/devel/pecl-request/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-request/pkg-descr Fri Dec 23 10:50:57 2016 (r429244) @@ -0,0 +1,21 @@ +This extension provides server-side request and response objects for PHP 7. +These are *not* HTTP message objects proper. They are more like wrappers +for existing global PHP variables and functions, with some limited +additional convenience functionality. + +This extension defines two classes in the global namespace: + +- ServerRequest, composed of read-only copies of PHP superglobals and some + other commonly-used values, with methods for adding application-specific + request information in immutable fashion. + +- ServerResponse, essentially a wrapper around (and buffer for) response- + related PHP functions, with some additional convenience methods, and self- + sending capability. + +Documentation: https://gitlab.com/pmjones/ext-request + +A PHP 5 userland implementation that tracks this extension is available at +https://packagist.org/packages/pmjones/request . + +WWW: https://pecl.php.net/package/request