From owner-svn-ports-head@freebsd.org Sat Dec 17 12:49:42 2016 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 66927C840F2; Sat, 17 Dec 2016 12:49:42 +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 412FD1050; Sat, 17 Dec 2016 12:49:42 +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 uBHCnf6F072887; Sat, 17 Dec 2016 12:49:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBHCnfuC072882; Sat, 17 Dec 2016 12:49:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612171249.uBHCnfuC072882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 17 Dec 2016 12:49:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428726 - in head/databases: . php70-memcache 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: Sat, 17 Dec 2016 12:49:42 -0000 Author: sunpoet Date: Sat Dec 17 12:49:40 2016 New Revision: 428726 URL: https://svnweb.freebsd.org/changeset/ports/428726 Log: - Add php70-memcache Memcached is a caching daemon designed especially for dynamic web applications to decrease database load by storing objects in memory. This extension allows you to work with memcached through handy OO and procedural interfaces. Note that this port uses unofficial development from https://github.com/websupport-sk/pecl-memcache (NON_BLOCKING_IO_php7 branch). WWW: https://pecl.php.net/package/memcache Added: head/databases/php70-memcache/ head/databases/php70-memcache/Makefile (contents, props changed) head/databases/php70-memcache/distinfo (contents, props changed) head/databases/php70-memcache/pkg-descr (contents, props changed) head/databases/php70-memcache/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat Dec 17 12:31:49 2016 (r428725) +++ head/databases/Makefile Sat Dec 17 12:49:40 2016 (r428726) @@ -611,6 +611,7 @@ SUBDIR += php56-sybase_ct SUBDIR += php70-dba SUBDIR += php70-interbase + SUBDIR += php70-memcache SUBDIR += php70-memcached SUBDIR += php70-mysqli SUBDIR += php70-odbc Added: head/databases/php70-memcache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php70-memcache/Makefile Sat Dec 17 12:49:40 2016 (r428726) @@ -0,0 +1,34 @@ +# Created by: Gerrit Beine +# $FreeBSD$ + +PORTNAME= memcache +PORTVERSION= 3.0.8 +PORTREVISION= 1 +CATEGORIES= databases +PKGNAMEPREFIX= php70- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Memcached extension for PHP 7 + +LICENSE= PHP30 +LICENSE_FILE= ${WRKSRC}/LICENSE + +OPTIONS_DEFINE= EXAMPLES + +CONFIGURE_ARGS= --with-zlib-dir=/usr +IGNORE_WITH_PHP=56 +PHP_VER= 70 +USE_CSTD= gnu89 +USE_PHP= session:build zlib:build +USES= dos2unix php:ext + +GH_ACCOUNT= websupport-sk +GH_PROJECT= pecl-${PORTNAME} +GH_TAGNAME= 5041d2f +USE_GITHUB= yes + +post-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/example.php ${STAGEDIR}${EXAMPLESDIR}/ + +.include Added: head/databases/php70-memcache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php70-memcache/distinfo Sat Dec 17 12:49:40 2016 (r428726) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481566704 +SHA256 (websupport-sk-pecl-memcache-3.0.8-5041d2f_GH0.tar.gz) = b441255305e962cecfbb6e88501374a317aeb4dec706e3c2e7c780bb26bf5a96 +SIZE (websupport-sk-pecl-memcache-3.0.8-5041d2f_GH0.tar.gz) = 110448 Added: head/databases/php70-memcache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php70-memcache/pkg-descr Sat Dec 17 12:49:40 2016 (r428726) @@ -0,0 +1,8 @@ +Memcached is a caching daemon designed especially for dynamic web applications +to decrease database load by storing objects in memory. This extension allows +you to work with memcached through handy OO and procedural interfaces. + +Note that this port uses unofficial development from +https://github.com/websupport-sk/pecl-memcache (NON_BLOCKING_IO_php7 branch). + +WWW: https://pecl.php.net/package/memcache Added: head/databases/php70-memcache/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php70-memcache/pkg-plist Sat Dec 17 12:49:40 2016 (r428726) @@ -0,0 +1 @@ +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.php