From owner-svn-ports-branches@freebsd.org Tue Dec 6 05:02:26 2016 Return-Path: Delivered-To: svn-ports-branches@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 14359C69222; Tue, 6 Dec 2016 05:02:26 +0000 (UTC) (envelope-from koobs@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 E2A92A0D; Tue, 6 Dec 2016 05:02:25 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB652PpO084251; Tue, 6 Dec 2016 05:02:25 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB652OOS084249; Tue, 6 Dec 2016 05:02:24 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201612060502.uB652OOS084249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 6 Dec 2016 05:02:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427933 - in branches/2016Q4/www/py-django-mezzanine: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Dec 2016 05:02:26 -0000 Author: koobs Date: Tue Dec 6 05:02:24 2016 New Revision: 427933 URL: https://svnweb.freebsd.org/changeset/ports/427933 Log: MFH: r427775 (w/ r424630) www/py-django-mezzanine: Update to 4.2.2, Mark Un'BROKEN - Update PORTVERSION and distinfo checksum (4.2.2) - Update RUN_DEPENDS. In particular, switch to Django 1.8 and mark un'BROKEN accordingly - Remove setup.py patch. No longer necessary. - Enable concurrent Python installation X-MFH-With: 424630 Approved by: ports-secteam (junovich) Deleted: branches/2016Q4/www/py-django-mezzanine/files/ Modified: branches/2016Q4/www/py-django-mezzanine/Makefile branches/2016Q4/www/py-django-mezzanine/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/py-django-mezzanine/Makefile ============================================================================== --- branches/2016Q4/www/py-django-mezzanine/Makefile Tue Dec 6 04:58:44 2016 (r427932) +++ branches/2016Q4/www/py-django-mezzanine/Makefile Tue Dec 6 05:02:24 2016 (r427933) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= django-mezzanine -PORTVERSION= 3.1.10 -PORTREVISION= 2 +PORTVERSION= 4.2.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,24 +14,23 @@ COMMENT= Content management platform bui LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:www/py-django16 \ - ${PYTHON_PKGNAMEPREFIX}django-mezzanine-filebrowser>=0.3.4:www/py-django-mezzanine-filebrowser \ - ${PYTHON_PKGNAMEPREFIX}django-mezzanine-grappelli>=0.3.12:www/py-django-mezzanine-grappelli \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>=1.8:www/py-django18 \ + ${PYTHON_PKGNAMEPREFIX}django-contrib-comments>0:www/py-django-contrib-comments \ + ${PYTHON_PKGNAMEPREFIX}django-mezzanine-filebrowser>=0.4.6:www/py-django-mezzanine-filebrowser \ + ${PYTHON_PKGNAMEPREFIX}django-mezzanine-grappelli>=0.4.5:www/py-django-mezzanine-grappelli \ ${PYTHON_PKGNAMEPREFIX}tzlocal>=1.0:devel/py-tzlocal \ ${PYTHON_PKGNAMEPREFIX}bleach>=1.4:www/py-bleach \ ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4.1.3:www/py-beautifulsoup \ ${PYTHON_PKGNAMEPREFIX}requests>=2.1.0:www/py-requests \ ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0.4:www/py-requests-oauthlib \ ${PYTHON_PKGNAMEPREFIX}future>=0.9.0:devel/py-future \ - ${PYTHON_PKGNAMEPREFIX}pillow>=1.3.1:graphics/py-pillow \ - ${PYTHON_PKGNAMEPREFIX}django-contrib-comments>0:www/py-django-contrib-comments \ - ${PYTHON_PKGNAMEPREFIX}south>=0.7.3:databases/py-south \ - + ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow \ + ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py-chardet TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pep8>=1.4.1:devel/pep8 \ ${PYTHON_PKGNAMEPREFIX}pyflakes>=0.6.1:devel/py-pyflakes USES= gettext python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils do-test: @cd ${WRKSRC} && ${SETENV} TZ=UTC LC_ALL=en_US.UTF-8 ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: branches/2016Q4/www/py-django-mezzanine/distinfo ============================================================================== --- branches/2016Q4/www/py-django-mezzanine/distinfo Tue Dec 6 04:58:44 2016 (r427932) +++ branches/2016Q4/www/py-django-mezzanine/distinfo Tue Dec 6 05:02:24 2016 (r427933) @@ -1,2 +1,3 @@ -SHA256 (Mezzanine-3.1.10.tar.gz) = cd33d3dce112ae24fbb23ab2632334d124d3c35556fd2a3d87ec5916293a1705 -SIZE (Mezzanine-3.1.10.tar.gz) = 7430509 +TIMESTAMP = 1477385624 +SHA256 (Mezzanine-4.2.2.tar.gz) = 890298ec6e3281cce0b318a7956222480aa3be38bf25e8f841d9f5e33b7fba9b +SIZE (Mezzanine-4.2.2.tar.gz) = 6229423