From owner-svn-ports-head@freebsd.org Mon Sep 28 01:14:09 2015 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 6618FA0B124; Mon, 28 Sep 2015 01:14:09 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 4B935ECA; Mon, 28 Sep 2015 01:14:09 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8S1E9DZ087259; Mon, 28 Sep 2015 01:14:09 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8S1E8Y1087255; Mon, 28 Sep 2015 01:14:08 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201509280114.t8S1E8Y1087255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 28 Sep 2015 01:14:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398069 - head/www/codeigniter 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.20 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: Mon, 28 Sep 2015 01:14:09 -0000 Author: junovitch Date: Mon Sep 28 01:14:07 2015 New Revision: 398069 URL: https://svnweb.freebsd.org/changeset/ports/398069 Log: www/codeigniter: security update 2.1.4 -> 2.2.4 [1] - Add NO_ARCH - Add mcrypt to USE_PHP (2.2.0+ requirement) and sort USE_PHP - Remove hard coded PHP_DEFAULT= 5.4 [2] - Sort OPTIONS_DEFINE, fix malformed ODBC_DESC, fix sqlite3 dependency - Update pkg-descr text to match http://www.codeigniter.com/ - Update WWW to http://www.codeigniter.com/ PR: 203401 [1] PR: 200945 [2] Reported by: allanjude [2] Approved by: maintainer timeout (15 months since 2.2.0 security update) [1] Approved by: maintainer timeout (3 months) [2] Security: 5114cd11-6571-11e5-9909-002590263bf5 Security: 01bce4c6-6571-11e5-9909-002590263bf5 Security: c21f4e61-6570-11e5-9909-002590263bf5 Security: f838dcb4-656f-11e5-9909-002590263bf5 MFH: 2015Q3 Modified: head/www/codeigniter/Makefile head/www/codeigniter/distinfo head/www/codeigniter/pkg-descr head/www/codeigniter/pkg-plist Modified: head/www/codeigniter/Makefile ============================================================================== --- head/www/codeigniter/Makefile Mon Sep 28 01:09:11 2015 (r398068) +++ head/www/codeigniter/Makefile Mon Sep 28 01:14:07 2015 (r398069) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= codeigniter -PORTVERSION= 2.1.4 -PORTREVISION= 1 +PORTVERSION= 2.2.4 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ http://www.codeigniter.org.tw/download_files/ @@ -16,10 +15,10 @@ USES= zip CONFLICTS= codeigniter-1.[0-9]* +NO_ARCH= yes NO_BUILD= yes -USE_PHP= session pcre +USE_PHP= mcrypt pcre session WANT_PHP_WEB= yes -PHP_DEFAULT= 5.4 PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} CI_SYS_DIR= system @@ -62,13 +61,13 @@ STD_BITS= ${CI_CONF_DIR}/index.html \ ${CI_SYS_DIR}/language \ ${CI_SYS_DIR}/libraries -OPTIONS_DEFINE= APACHE MSSQL MYSQL MYSQLI ODBC PGSQL SQLITE DOCS +OPTIONS_DEFINE= APACHE DOCS MSSQL MYSQL MYSQLI ODBC PGSQL SQLITE APACHE_DESC= Configure for Apache-2.x MSSQL_DESC= Install MSSQL support for PHP MYSQL_DESC= Install MySQL support for PHP MYSQLI_DESC= Install MySQLi support for PHP -ODBC= Install ODBC support for PHP +ODBC_DESC= Install ODBC support for PHP PGSQL_DESC= Install PostgreSQL support for PHP SQLITE_DESC= Install SQLite support for PHP @@ -106,7 +105,7 @@ USE_PHP+= pgsql .endif .if ${PORT_OPTIONS:MSQLITE} -USE_PHP+= sqlite +USE_PHP+= sqlite3 .endif .if ${PORT_OPTIONS:MDOCS} Modified: head/www/codeigniter/distinfo ============================================================================== --- head/www/codeigniter/distinfo Mon Sep 28 01:09:11 2015 (r398068) +++ head/www/codeigniter/distinfo Mon Sep 28 01:14:07 2015 (r398069) @@ -1,2 +1,2 @@ -SHA256 (CodeIgniter_2.1.4.zip) = 5ad6f8a9a2f3dc647aec554b388a62658304c5bd4295eb50b063ef8d69da1f19 -SIZE (CodeIgniter_2.1.4.zip) = 2319027 +SHA256 (CodeIgniter_2.2.4.zip) = 5363c2f120faaba7f4966f8cef93d935ae86678778f8c98471579ae045a03278 +SIZE (CodeIgniter_2.2.4.zip) = 2341717 Modified: head/www/codeigniter/pkg-descr ============================================================================== --- head/www/codeigniter/pkg-descr Mon Sep 28 01:09:11 2015 (r398068) +++ head/www/codeigniter/pkg-descr Mon Sep 28 01:14:07 2015 (r398069) @@ -1,5 +1,5 @@ CodeIgniter is a powerful PHP framework with a very small footprint, -built for PHP coders who need a simple and elegant toolkit to create +built for developers who need a simple and elegant toolkit to create full-featured web applications. -WWW: http://ellislab.com/codeigniter +WWW: http://http://www.codeigniter.com/ Modified: head/www/codeigniter/pkg-plist ============================================================================== --- head/www/codeigniter/pkg-plist Mon Sep 28 01:09:11 2015 (r398068) +++ head/www/codeigniter/pkg-plist Mon Sep 28 01:14:07 2015 (r398069) @@ -27,6 +27,7 @@ %%WWWDIR%%/application/hooks/index.html %%WWWDIR%%/application/index.html %%WWWDIR%%/application/language/english/index.html +%%WWWDIR%%/application/language/index.html %%WWWDIR%%/application/libraries/index.html %%WWWDIR%%/application/logs/index.html %%WWWDIR%%/application/models/index.html @@ -153,6 +154,8 @@ %%WWWDIR%%/system/libraries/Cache/drivers/Cache_dummy.php %%WWWDIR%%/system/libraries/Cache/drivers/Cache_file.php %%WWWDIR%%/system/libraries/Cache/drivers/Cache_memcached.php +%%WWWDIR%%/system/libraries/Cache/drivers/index.html +%%WWWDIR%%/system/libraries/Cache/index.html %%WWWDIR%%/system/libraries/Calendar.php %%WWWDIR%%/system/libraries/Cart.php %%WWWDIR%%/system/libraries/Driver.php @@ -180,4 +183,5 @@ %%WWWDIR%%/system/libraries/Zip.php %%WWWDIR%%/system/libraries/index.html %%WWWDIR%%/system/libraries/javascript/Jquery.php +%%WWWDIR%%/system/libraries/javascript/index.html @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/application/cache