From owner-svn-ports-all@freebsd.org Wed Dec 23 11:25:39 2015 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 6753BA50E20; Wed, 23 Dec 2015 11:25:39 +0000 (UTC) (envelope-from ohauer@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 29917175E; Wed, 23 Dec 2015 11:25:39 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBNBPcRi005007; Wed, 23 Dec 2015 11:25:38 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBNBPcwj005004; Wed, 23 Dec 2015 11:25:38 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201512231125.tBNBPcwj005004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Wed, 23 Dec 2015 11:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404285 - in head/devel/bugzilla44: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 23 Dec 2015 11:25:39 -0000 Author: ohauer Date: Wed Dec 23 11:25:37 2015 New Revision: 404285 URL: https://svnweb.freebsd.org/changeset/ports/404285 Log: - update to 4.4.11 This release fixes two security issues. See the Security Advisory for details. [1] This release also contains the following bug fix: o mod_perl now works correctly with mod_access_compat turned off on Apache 2.4. The (incorrect) fix implemented in Bugzilla 4.4.9 has been backed out. To regenerate the .htaccess files, you must first delete all existing ones in subdirectories: find . -mindepth 2 -name .htaccess -exec rm -f {} \; You must then run checksetup.pl again to recreate them with the correct syntax. (Bug 1223790) [1] https://www.bugzilla.org/security/4.2.15/ MFH: 2015Q4 Security: CVE-2015-8508 CVE-2015-8509 vid="54075861-a95a-11e5-8b40-20cf30e32f6d" Modified: head/devel/bugzilla44/Makefile head/devel/bugzilla44/distinfo head/devel/bugzilla44/files/pkg-message.in Modified: head/devel/bugzilla44/Makefile ============================================================================== --- head/devel/bugzilla44/Makefile Wed Dec 23 11:22:41 2015 (r404284) +++ head/devel/bugzilla44/Makefile Wed Dec 23 11:25:37 2015 (r404285) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bugzilla -PORTVERSION= 4.4.10 +PORTVERSION= 4.4.11 CATEGORIES= devel MASTER_SITES= MOZILLA/webtools MOZILLA/webtools/archived @@ -199,9 +199,8 @@ do-install: .SILENT @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) -.if ${PORT_OPTIONS:MCONTRIB} +do-install-CONTRIB-on: @${MKDIR} ${STAGEDIR}${WWWDIR}/contrib (cd ${WRKSRC}/contrib && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/contrib) -.endif .include Modified: head/devel/bugzilla44/distinfo ============================================================================== --- head/devel/bugzilla44/distinfo Wed Dec 23 11:22:41 2015 (r404284) +++ head/devel/bugzilla44/distinfo Wed Dec 23 11:25:37 2015 (r404285) @@ -1,2 +1,2 @@ -SHA256 (bugzilla/bugzilla-4.4.10.tar.gz) = c4226699d084da2f9a265a3d4dd422ffa16a9babca9ab677ed8b6e988a4055ac -SIZE (bugzilla/bugzilla-4.4.10.tar.gz) = 4943339 +SHA256 (bugzilla/bugzilla-4.4.11.tar.gz) = 10082b506a822f36098597fce1079494ef50bab91b213c3f448c738257db182a +SIZE (bugzilla/bugzilla-4.4.11.tar.gz) = 4943814 Modified: head/devel/bugzilla44/files/pkg-message.in ============================================================================== --- head/devel/bugzilla44/files/pkg-message.in Wed Dec 23 11:22:41 2015 (r404284) +++ head/devel/bugzilla44/files/pkg-message.in Wed Dec 23 11:25:37 2015 (r404285) @@ -25,9 +25,14 @@ For upgrades: 0. Back up your data. - 1. Run "./checksetup.pl" inside %%WWWDIR%%. You may need to + + 1. Run the command inside %%WWWDIR%% + find . -mindepth 2 -name .htaccess -exec rm -f {} \; + + 2. Run "./checksetup.pl" inside %%WWWDIR%%. You may need to run it several times. - 2. Restart your Web server, especially if you're using mod_perl: this + + 3. Restart your Web server, especially if you're using mod_perl: this will save you from a number of troubles. ==========================================================================