From owner-svn-ports-all@FreeBSD.ORG Sun May 25 05:33:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47ACF809; Sun, 25 May 2014 05:33:11 +0000 (UTC) Received: from svn.freebsd.org (svn.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 1B5CD2F59; Sun, 25 May 2014 05:33:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4P5XAPC038612; Sun, 25 May 2014 05:33:10 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4P5XAqR038603; Sun, 25 May 2014 05:33:10 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201405250533.s4P5XAqR038603@svn.freebsd.org> From: Martin Wilke Date: Sun, 25 May 2014 05:33:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355129 - in head/www: . mod_realdoc 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.18 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: Sun, 25 May 2014 05:33:11 -0000 Author: miwi Date: Sun May 25 05:33:09 2014 New Revision: 355129 URL: http://svnweb.freebsd.org/changeset/ports/355129 QAT: https://qat.redports.org/buildarchive/r355129/ Log: mod_realdoc is an Apache module which does a realpath on the docroot symlink and sets the absolute path as the real document root for the remainder of the request. WWW: https://github.com/etsy/mod_realdoc PR: ports/180364 Submitted by: Gea-Suan Lin Added: head/www/mod_realdoc/ head/www/mod_realdoc/Makefile (contents, props changed) head/www/mod_realdoc/distinfo (contents, props changed) head/www/mod_realdoc/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun May 25 05:31:13 2014 (r355128) +++ head/www/Makefile Sun May 25 05:33:09 2014 (r355129) @@ -517,6 +517,7 @@ SUBDIR += mod_python33 SUBDIR += mod_python35 SUBDIR += mod_qos + SUBDIR += mod_realdoc SUBDIR += mod_remoteip SUBDIR += mod_reproxy SUBDIR += mod_rivet Added: head/www/mod_realdoc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mod_realdoc/Makefile Sun May 25 05:33:09 2014 (r355129) @@ -0,0 +1,21 @@ +# Created by: Gea-Suan Lin +# $FreeBSD$ + +PORTNAME= mod_realdoc +PORTVERSION= 20130701 +CATEGORIES= www +MASTER_SITES= GH \ + http://freebsd.cs.nctu.edu.tw/~gslin/files/ + +MAINTAINER= gslin@gslin.org +COMMENT= Apache module to support atomic deploys + +AP_FAST_BUILD= yes +AP_GENPLIST= yes +GH_ACCOUNT= etsy +GH_COMMIT= 4925acc +GH_TAGNAME= ${GH_COMMIT} +USE_APACHE= 22+ +USE_GITHUB= yes + +.include Added: head/www/mod_realdoc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mod_realdoc/distinfo Sun May 25 05:33:09 2014 (r355129) @@ -0,0 +1,2 @@ +SHA256 (mod_realdoc-20130701.tar.gz) = 8ccb15b10b61955fbbb479f05bc5c159d3b68abab284a91afb8cd013b728945c +SIZE (mod_realdoc-20130701.tar.gz) = 3177 Added: head/www/mod_realdoc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mod_realdoc/pkg-descr Sun May 25 05:33:09 2014 (r355129) @@ -0,0 +1,5 @@ +mod_realdoc is an Apache module which does a realpath on the docroot +symlink and sets the absolute path as the real document root for the +remainder of the request. + +WWW: https://github.com/etsy/mod_realdoc