From owner-svn-ports-all@FreeBSD.ORG Thu Jun 18 20:02:32 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8AB1A89; Thu, 18 Jun 2015 20:02:32 +0000 (UTC) (envelope-from rm@FreeBSD.org) 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 A713DFA4; Thu, 18 Jun 2015 20:02:32 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5IK2W5C012050; Thu, 18 Jun 2015 20:02:32 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5IK2W3r012049; Thu, 18 Jun 2015 20:02:32 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201506182002.t5IK2W3r012049@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 18 Jun 2015 20:02:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390061 - head/www/web2ldap 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: Thu, 18 Jun 2015 20:02:32 -0000 Author: rm Date: Thu Jun 18 20:02:32 2015 New Revision: 390061 URL: https://svnweb.freebsd.org/changeset/ports/390061 Log: www/web2ldap: chase py-ldap rename - chase py-ldap rename - compile to bytecode another way to get optimised files too. This is what was done by upstream maintainer in version 1.2.32 Modified: head/www/web2ldap/Makefile Modified: head/www/web2ldap/Makefile ============================================================================== --- head/www/web2ldap/Makefile Thu Jun 18 19:56:52 2015 (r390060) +++ head/www/web2ldap/Makefile Thu Jun 18 20:02:32 2015 (r390061) @@ -3,7 +3,7 @@ PORTNAME= web2ldap PORTVERSION= 1.2.19 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://www.web2ldap.de/download/ \ http://www.sfr-fresh.com/unix/www/ \ @@ -14,7 +14,7 @@ COMMENT= Python-based WWW gateway to LDA LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap2>=2.4.0:${PORTSDIR}/net/py-ldap2 \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap>=2.4.0:${PORTSDIR}/net/py-ldap \ ${PYTHON_SITELIBDIR}/pyweblib/__init__.py:${PORTSDIR}/www/pyweblib \ ${PYTHON_PKGNAMEPREFIX}ipaddr>0:${PORTSDIR}/devel/py-ipaddr \ ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support @@ -35,7 +35,8 @@ post-patch: @${FIND} ${WRKSRC} -name '*.orig' -delete -o -name '*.bak' -delete do-build: - @(cd ${WRKSRC} && ${PYTHON_CMD} ./sbin/compile.py) + ${PYTHON_CMD} -m compileall ${WRKSRC} + ${PYTHON_CMD} -O -m compileall ${WRKSRC} do-install: @${ECHO_MSG} "==> Installing program files..."