From owner-svn-ports-all@freebsd.org Thu Nov 12 12:48:53 2015 Return-Path: Delivered-To: svn-ports-all@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 44E89A2B13A; Thu, 12 Nov 2015 12:48:53 +0000 (UTC) (envelope-from wg@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 E768513E6; Thu, 12 Nov 2015 12:48:52 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tACCmpAD021004; Thu, 12 Nov 2015 12:48:51 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tACCmpoS020999; Thu, 12 Nov 2015 12:48:51 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201511121248.tACCmpoS020999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 12 Nov 2015 12:48:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401339 - in head/devel: . py-setuptools_scm 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, 12 Nov 2015 12:48:53 -0000 Author: wg Date: Thu Nov 12 12:48:51 2015 New Revision: 401339 URL: https://svnweb.freebsd.org/changeset/ports/401339 Log: devel/py-setuptools_scm: Setuptools plugin to manage your versions by scm tags Handles managing your python package versions in scm metadata instead of declaring them as the version argument or in a scm managed file. WWW: https://github.com/pypa/setuptools_scm/ Added: head/devel/py-setuptools_scm/ head/devel/py-setuptools_scm/Makefile (contents, props changed) head/devel/py-setuptools_scm/distinfo (contents, props changed) head/devel/py-setuptools_scm/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 12 12:39:34 2015 (r401338) +++ head/devel/Makefile Thu Nov 12 12:48:51 2015 (r401339) @@ -4286,6 +4286,7 @@ SUBDIR += py-setuptools35 SUBDIR += py-setuptools_darcs SUBDIR += py-setuptools_hg + SUBDIR += py-setuptools_scm SUBDIR += py-sh SUBDIR += py-shapely SUBDIR += py-simplegeneric Added: head/devel/py-setuptools_scm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-setuptools_scm/Makefile Thu Nov 12 12:48:51 2015 (r401339) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= setuptools_scm +PORTVERSION= 1.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Setuptools plugin to manage your versions by scm tags + +LICENSE= MIT + +USES= python tar:bz2 +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-setuptools_scm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-setuptools_scm/distinfo Thu Nov 12 12:48:51 2015 (r401339) @@ -0,0 +1,2 @@ +SHA256 (setuptools_scm-1.8.0.tar.bz2) = ddbf365e60e5f8e3f86fe117edeee4a7e1dd8ce7a9337951c9c163e7c506e602 +SIZE (setuptools_scm-1.8.0.tar.bz2) = 14491 Added: head/devel/py-setuptools_scm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-setuptools_scm/pkg-descr Thu Nov 12 12:48:51 2015 (r401339) @@ -0,0 +1,4 @@ +Handles managing your python package versions in scm metadata instead of +declaring them as the version argument or in a scm managed file. + +WWW: https://github.com/pypa/setuptools_scm/