From owner-svn-ports-head@freebsd.org Wed May 4 03:21:40 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 AD93DB2C9A8; Wed, 4 May 2016 03:21:40 +0000 (UTC) (envelope-from kevlo@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 5DEF41E92; Wed, 4 May 2016 03:21:40 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u443LdAg001689; Wed, 4 May 2016 03:21:39 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u443LdOp001687; Wed, 4 May 2016 03:21:39 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201605040321.u443LdOp001687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 4 May 2016 03:21:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414579 - in head/www/owncloud: . files 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.22 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: Wed, 04 May 2016 03:21:40 -0000 Author: kevlo Date: Wed May 4 03:21:39 2016 New Revision: 414579 URL: https://svnweb.freebsd.org/changeset/ports/414579 Log: Add upstream patch to make ownCloud work in php 7.0.6 PR: 209226 Submitted by: Piotr Kubaj Added: head/www/owncloud/files/patch-lib_private_appframework_http_request.php (contents, props changed) Modified: head/www/owncloud/Makefile Modified: head/www/owncloud/Makefile ============================================================================== --- head/www/owncloud/Makefile Wed May 4 03:12:35 2016 (r414578) +++ head/www/owncloud/Makefile Wed May 4 03:21:39 2016 (r414579) @@ -2,7 +2,7 @@ PORTNAME= owncloud PORTVERSION= 9.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://download.owncloud.org/community/ @@ -22,6 +22,8 @@ USE_OPENSSL= yes OWNCLOUD_USERNAME?= ${WWWOWN} OWNCLOUD_GROUPNAME?= ${WWWGRP} +IGNORE_FILES= ! -name *\.orig + WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes NO_ARCH= yes @@ -56,7 +58,8 @@ WITH_OPENSSL_PORT= yes do-install: @${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + @cd ${WRKSRC} && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} '${IGNORE_FILES}' post-install: @${MKDIR} ${STAGEDIR}${WWWDIR}/data Added: head/www/owncloud/files/patch-lib_private_appframework_http_request.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/owncloud/files/patch-lib_private_appframework_http_request.php Wed May 4 03:21:39 2016 (r414579) @@ -0,0 +1,12 @@ +--- lib/private/appframework/http/request.php.orig 2016-05-04 03:03:50 UTC ++++ lib/private/appframework/http/request.php +@@ -264,6 +264,9 @@ class Request implements \ArrayAccess, \ + * @return bool + */ + public function __isset($name) { ++ if (in_array($name, $this->allowedKeys, true)) { ++ return true; ++ } + return isset($this->items['parameters'][$name]); + } +