Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Mar 2014 13:00:36 +0000 (UTC)
From:      Olli Hauer <ohauer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r347567 - head/www/mod_vhost_ldap
Message-ID:  <201403091300.s29D0aJ0047849@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ohauer
Date: Sun Mar  9 13:00:36 2014
New Revision: 347567
URL: http://svnweb.freebsd.org/changeset/ports/347567
QAT: https://qat.redports.org/buildarchive/r347567/

Log:
  - update to version 2.0.8
  - add stage support
  - add LICENSE
  
  Changes:
   * VERSION: 2.0.8
   * mod_vhost_ldap.c: Don't copy server struct if we have per request document root
  
   * VERSION: 2.0.7
   * mod_vhost_ldap.c: Revert escaping wildcard character as it was
                       already done before by ldap_bv2escaped_filter_value
   * VERSION: 2.0.6
   * mod_vhost_ldap.c: Properly escape wildcard string to search
                       for literal *.hostname
   * mod_vhost_ldap.c, vhost_ldap.conf: Add new boolean option VhostLDAPWildcard
                                        to disable wildcard search completely
   * mod_vhost_ldap.c: Fix cgi-bin processing (Courtesy of Anders Kaseorg)
  
   * VERSION: 2.0.5
   * mod_vhost_ldap.c: Make a private copy of server config to each
                       request to be thread safe. (Courtesy Anders Kaseorg)
  
   * VERSION: 2.0.3
   * mod_vhost_ldap.c: Workaround concurrency issues with ap_document_root
                       by adding mutex before it is set and release before
                       handler is run.
  
   * VERSION: 2.0.1
   * mod_vhost_ldap.c: Remove cleanup routine, it was causing segfaults.
  
   * VERSION: 2.0.0 release
   * mod_vhost_ldap.c: Sleep for (fibonacci numbers) seconds after LDAP failure
   * mod_vhost_ldap.c: Add a log WARNING when LDAP is unreachable
   * mod_vhost_ldap.c: Don't set r->filename, return DECLINE on success, only
                       mangle documentroot and others, and let other apache
                       modules handle real filenames
   * mod_vhost_ldap.c: Create and use function set_document_root inspired by apache2.2
   * mod_vhost_ldap.c: Return correct error codes on failures and not DECLINED
   * mod_vhost_ldap.c: Put translate_name hook at FIRST place
  
   * VERSION: 1.2.0 release
   * mod_vhost_ldap.c: release apache-2.2 version as 1.2.0
  
   * VERSION: 1.0.1 release
   * mod_vhost_ldap.c: add support for apache-2.2.x

Modified:
  head/www/mod_vhost_ldap/Makefile
  head/www/mod_vhost_ldap/distinfo

Modified: head/www/mod_vhost_ldap/Makefile
==============================================================================
--- head/www/mod_vhost_ldap/Makefile	Sun Mar  9 12:56:08 2014	(r347566)
+++ head/www/mod_vhost_ldap/Makefile	Sun Mar  9 13:00:36 2014	(r347567)
@@ -2,18 +2,18 @@
 # $FreeBSD$
 
 PORTNAME=	mod_vhost_ldap
-PORTVERSION=	1.0
-PORTREVISION=	3
+PORTVERSION=	2.0.8
 CATEGORIES=	www
-MASTER_SITES=	http://alioth.debian.org/frs/download.php/1422/
-DISTNAME=	${PORTNAME:S/_/-/g}-${PORTVERSION}
+MASTER_SITES=	${MASTER_SITE_DEBIAN}
+MASTER_SITE_SUBDIR=pool/main/m/mod-vhost-ldap
+DISTNAME=	${PORTNAME:S/_/-/g}_${PORTVERSION}.orig
 DIST_SUBDIR=	apache2
 
 MAINTAINER=	apache@FreeBSD.org
 COMMENT=	Virtual Hosting from ldap built on top of mod_ldap
 
+LICENSE=	APACHE20
 
-USE_BZIP2=	yes
 USE_OPENLDAP=	yes
 
 USE_APACHE=	22
@@ -24,15 +24,14 @@ AP_EXTRAS+=	-DMOD_VHOST_LDAP_VERSION=\\\
 
 PORTDOCS=	mod_vhost_ldap.schema vhost_ldap.conf COPYING
 
-WRKSRC=		${WRKDIR}/${PORTNAME:S/_/-/g}-${PORTVERSION}.0
+WRKSRC=		${WRKDIR}/${PORTNAME:S/_/-/g}-${PORTVERSION}
 
 .if defined(PACKAGE_BUILDING)
 IGNORE=		Requires support of LDAP in apache 2.x port
 .endif
 
-NO_STAGE=	yes
 post-install:
-	@${MKDIR} ${DOCSDIR}
-	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>

Modified: head/www/mod_vhost_ldap/distinfo
==============================================================================
--- head/www/mod_vhost_ldap/distinfo	Sun Mar  9 12:56:08 2014	(r347566)
+++ head/www/mod_vhost_ldap/distinfo	Sun Mar  9 13:00:36 2014	(r347567)
@@ -1,2 +1,2 @@
-SHA256 (apache2/mod-vhost-ldap-1.0.tar.bz2) = e14713d736e79ca7760b8ca8bd32fd01e97ef0f14396bdea9373d7bfd8dd1f87
-SIZE (apache2/mod-vhost-ldap-1.0.tar.bz2) = 7862
+SHA256 (apache2/mod-vhost-ldap_2.0.8.orig.tar.gz) = 031a48c48e47e3687bf185b3817ae22c05c569bc82bc8dd091803cad25d1fc06
+SIZE (apache2/mod-vhost-ldap_2.0.8.orig.tar.gz) = 10395



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403091300.s29D0aJ0047849>