From owner-svn-ports-all@freebsd.org Thu Feb 1 14:50:43 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 DEF06ED5354; Thu, 1 Feb 2018 14:50:43 +0000 (UTC) (envelope-from feld@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 89DCF6F586; Thu, 1 Feb 2018 14:50:43 +0000 (UTC) (envelope-from feld@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 84DBE65A4; Thu, 1 Feb 2018 14:50:43 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w11EohHl062742; Thu, 1 Feb 2018 14:50:43 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w11Eoh45062741; Thu, 1 Feb 2018 14:50:43 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201802011450.w11Eoh45062741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 1 Feb 2018 14:50:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r460604 - branches/2018Q1/www/mediawiki130 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2018Q1/www/mediawiki130 X-SVN-Commit-Revision: 460604 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.25 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: Thu, 01 Feb 2018 14:50:44 -0000 Author: feld Date: Thu Feb 1 14:50:43 2018 New Revision: 460604 URL: https://svnweb.freebsd.org/changeset/ports/460604 Log: MFH: r460603 www/mediawiki130: Add missing PHP module dependency When upgrading from MediaWiki 1.29: Error: Missing one or more required components of PHP. You are missing a required extension to PHP that MediaWiki needs. Please install: * fileinfo Modified: branches/2018Q1/www/mediawiki130/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/mediawiki130/Makefile ============================================================================== --- branches/2018Q1/www/mediawiki130/Makefile Thu Feb 1 14:50:13 2018 (r460603) +++ branches/2018Q1/www/mediawiki130/Makefile Thu Feb 1 14:50:43 2018 (r460604) @@ -22,8 +22,8 @@ SHEBANG_FILES= maintenance/dev/*.sh \ SHEBANG_LANG= hhvm hhvm_OLD_CMD= /usr/bin/hhvm hhvm_CMD= ${LOCALBASE}/bin/hhvm # not installed by anything yet -USE_PHP= ctype dom hash iconv intl json mbstring pcre readline \ - session xml xmlreader zlib +USE_PHP= ctype dom fileinfo hash iconv intl json mbstring pcre \ + readline session xml xmlreader zlib MEDIAWIKIDIR?= www/mediawiki NO_BUILD= yes