From owner-svn-ports-head@freebsd.org Tue Dec 13 11:46:48 2016 Return-Path: Delivered-To: svn-ports-head@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 B51AAC75F93; Tue, 13 Dec 2016 11:46:48 +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 6A9351326; Tue, 13 Dec 2016 11:46:48 +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 uBDBklMO090119; Tue, 13 Dec 2016 11:46:47 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBDBklD0090118; Tue, 13 Dec 2016 11:46:47 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201612131146.uBDBklD0090118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 13 Dec 2016 11:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428480 - head/databases/py-sqlalchemy-migrate X-SVN-Group: ports-head 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.23 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: Tue, 13 Dec 2016 11:46:48 -0000 Author: koobs Date: Tue Dec 13 11:46:47 2016 New Revision: 428480 URL: https://svnweb.freebsd.org/changeset/ports/428480 Log: databases/py-sqlalchemy-migrate: Add sqlparse and six dependencies Both sqlparse and six are mentioned as dependencies, but are missing in the ports RUN_DEPENDS. The missing sqlparse dependencies causes (at least) devel/buildbot to generate an error at run-time [1]. This change adds sqlparse and six to RUN_DEPENDS. While I'm here: - Add LICENSE_FILE - Update RUN_DEPENDS version specs to match upstream files (NOOP) - Enable "concurrent" Python version installation - Add NO_ARCH (architecture independent) PR: 215273 [1] Reported by: Nikola Kolev Approved by: portmgr (blanket) MFH: 2016Q4 Modified: head/databases/py-sqlalchemy-migrate/Makefile Modified: head/databases/py-sqlalchemy-migrate/Makefile ============================================================================== --- head/databases/py-sqlalchemy-migrate/Makefile Tue Dec 13 11:39:01 2016 (r428479) +++ head/databases/py-sqlalchemy-migrate/Makefile Tue Dec 13 11:46:47 2016 (r428480) @@ -3,6 +3,7 @@ PORTNAME= sqlalchemy-migrate PORTVERSION= 0.10.0 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,13 +12,18 @@ MAINTAINER= lwhsu@FreeBSD.org COMMENT= Database schema migrations for SQLAlchemy LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10 \ - ${PYTHON_PKGNAMEPREFIX}Tempita>0:textproc/py-Tempita \ - ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.3:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.7.8:databases/py-sqlalchemy10 \ + ${PYTHON_PKGNAMEPREFIX}Tempita>=0.4:textproc/py-Tempita \ + ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator \ + ${PYTHON_PKGNAMEPREFIX}sqlparse>0:databases/py-sqlparse \ + ${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist + +NO_ARCH= yes .include