From owner-svn-ports-head@freebsd.org Fri May 11 16:54:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDD3BFAADE4; Fri, 11 May 2018 16:54:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BF21575EAE; Fri, 11 May 2018 16:54:23 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 76A80124A2; Fri, 11 May 2018 16:54:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4BGsNG4039132; Fri, 11 May 2018 16:54:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4BGsNJH039131; Fri, 11 May 2018 16:54:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201805111654.w4BGsNJH039131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 11 May 2018 16:54:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469668 - head/www/py-django-openid-auth X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-django-openid-auth X-SVN-Commit-Revision: 469668 X-SVN-Commit-Repository: ports 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.25 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: Fri, 11 May 2018 16:54:25 -0000 Author: sunpoet Date: Fri May 11 16:54:22 2018 New Revision: 469668 URL: https://svnweb.freebsd.org/changeset/ports/469668 Log: Update to 0.14 - Update MASTER_SITES - Add LICENSE_FILE - Use USE_PYTHON=autoplist instead of PLIST - Allow concurrent installation (USE_PYTHON=concurrent) - Add NO_ARCH - Remove EXAMPLES option - Remove pkg-message PR: 228118 Submitted by: Kai Approved by: Matthew X. Economou (maintainer) Deleted: head/www/py-django-openid-auth/pkg-message head/www/py-django-openid-auth/pkg-plist Modified: head/www/py-django-openid-auth/Makefile head/www/py-django-openid-auth/distinfo Modified: head/www/py-django-openid-auth/Makefile ============================================================================== --- head/www/py-django-openid-auth/Makefile Fri May 11 16:54:17 2018 (r469667) +++ head/www/py-django-openid-auth/Makefile Fri May 11 16:54:22 2018 (r469668) @@ -2,41 +2,39 @@ # $FreeBSD$ PORTNAME= django-openid-auth -PORTVERSION= 0.4 -PORTREVISION= 2 +PORTVERSION= 0.14 CATEGORIES= www security python -MASTER_SITES= http://launchpadlibrarian.net/80020365/ +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= xenophon+fbsdports@irtnog.org COMMENT= OpenID integration for django.contrib.auth LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>=1.3.1:www/py-django18@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}python-openid>=2.2.5:security/py-python-openid@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.6:www/py-django111@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} -USES= python:2.7 -USE_PYTHON= distutils +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes -NO_WRKSUBDIR= yes +PORTDOCS= README.txt TODO.txt -PORTDOCS= *.txt *.html -PORTEXAMPLES= example_consumer +OPTIONS_DEFINE= DOCS -OPTIONS_DEFINE= DOCS EXAMPLES - post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/TODO.txt ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/openid.html ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/openid.txt ${STAGEDIR}${DOCSDIR} -post-install-EXAMPLES-on: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/example_consumer - ${INSTALL_DATA} ${WRKSRC}/example_consumer/* \ - ${STAGEDIR}${EXAMPLESDIR}/example_consumer +.include -.include +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}python-openid>=2.2.0:security/py-python-openid@${PY_FLAVOR} +.else +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}python3-openid>=0:security/py-python3-openid@${PY_FLAVOR} +.endif + +.include Modified: head/www/py-django-openid-auth/distinfo ============================================================================== --- head/www/py-django-openid-auth/distinfo Fri May 11 16:54:17 2018 (r469667) +++ head/www/py-django-openid-auth/distinfo Fri May 11 16:54:22 2018 (r469668) @@ -1,2 +1,3 @@ -SHA256 (django-openid-auth_0.4.tar.gz) = 923c2a9652f23bee367a6578f39d0881eaeb7aca2ec8f810f523b16e38679d05 -SIZE (django-openid-auth_0.4.tar.gz) = 77703 +TIMESTAMP = 1525985134 +SHA256 (django-openid-auth-0.14.tar.gz) = a1f706ede74117426c1e67b03ac69143ddaf3c0b18888814ad3abb7483a2ccf6 +SIZE (django-openid-auth-0.14.tar.gz) = 44878