From owner-svn-ports-head@freebsd.org Thu Nov 12 13:26:59 2015 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 EDC29A2BE64; Thu, 12 Nov 2015 13:26:59 +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 9A5B51E03; Thu, 12 Nov 2015 13:26:59 +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 tACDQw89032901; Thu, 12 Nov 2015 13:26:58 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tACDQwgB032897; Thu, 12 Nov 2015 13:26:58 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201511121326.tACDQwgB032897@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 13:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401345 - in head/devel: . py-vcversioner 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.20 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: Thu, 12 Nov 2015 13:27:00 -0000 Author: wg Date: Thu Nov 12 13:26:58 2015 New Revision: 401345 URL: https://svnweb.freebsd.org/changeset/ports/401345 Log: devel/py-vcversioner: Use version control tags to discover version numbers You can write a setup.py with no version information specified, and vcversioner will find a recent, properly-formatted VCS tag and extract a version from it. WWW: https://github.com/habnabit/vcversioner Added: head/devel/py-vcversioner/ head/devel/py-vcversioner/Makefile (contents, props changed) head/devel/py-vcversioner/distinfo (contents, props changed) head/devel/py-vcversioner/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 12 13:14:47 2015 (r401344) +++ head/devel/Makefile Thu Nov 12 13:26:58 2015 (r401345) @@ -4357,6 +4357,7 @@ SUBDIR += py-user_agents SUBDIR += py-utils SUBDIR += py-validictory + SUBDIR += py-vcversioner SUBDIR += py-venusian SUBDIR += py-versiontools SUBDIR += py-virtualenv Added: head/devel/py-vcversioner/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vcversioner/Makefile Thu Nov 12 13:26:58 2015 (r401345) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= vcversioner +PORTVERSION= 2.14.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Use version control tags to discover version numbers + +LICENSE= ISCL + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-vcversioner/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vcversioner/distinfo Thu Nov 12 13:26:58 2015 (r401345) @@ -0,0 +1,2 @@ +SHA256 (vcversioner-2.14.0.0.tar.gz) = acd43686e92e6c8bbeb4f2eef54408567a7adea9692fa72d591eec5357c03b86 +SIZE (vcversioner-2.14.0.0.tar.gz) = 9015 Added: head/devel/py-vcversioner/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vcversioner/pkg-descr Thu Nov 12 13:26:58 2015 (r401345) @@ -0,0 +1,5 @@ +You can write a setup.py with no version information specified, and +vcversioner will find a recent, properly-formatted VCS tag and extract a +version from it. + +WWW: https://github.com/habnabit/vcversioner