From owner-svn-ports-all@FreeBSD.ORG Tue Nov 13 14:05:24 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 326FA118; Tue, 13 Nov 2012 14:05:24 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 16B948FC08; Tue, 13 Nov 2012 14:05:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qADE5NUY058182; Tue, 13 Nov 2012 14:05:23 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qADE5NJ2058177; Tue, 13 Nov 2012 14:05:23 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201211131405.qADE5NJ2058177@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Tue, 13 Nov 2012 14:05:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307374 - in head/devel: . py-hgtools 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.14 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: Tue, 13 Nov 2012 14:05:24 -0000 Author: rm Date: Tue Nov 13 14:05:23 2012 New Revision: 307374 URL: http://svnweb.freebsd.org/changeset/ports/307374 Log: Classes and setuptools plugin for Mercurial repositories hgtools builds on the setuptools_hg plugin for setuptools. Provides classes for inspecting and working with repositories in the Mercurial version control system. WWW: http://bitbucket.org/jaraco/hgtools/ PR: 173506 Submitted by: William Grzybowski Feature safe: yes Added: head/devel/py-hgtools/ head/devel/py-hgtools/Makefile (contents, props changed) head/devel/py-hgtools/distinfo (contents, props changed) head/devel/py-hgtools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 13 14:00:53 2012 (r307373) +++ head/devel/Makefile Tue Nov 13 14:05:23 2012 (r307374) @@ -3362,6 +3362,7 @@ SUBDIR += py-hashring SUBDIR += py-hghooks SUBDIR += py-hgsubversion + SUBDIR += py-hgtools SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-icu Added: head/devel/py-hgtools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hgtools/Makefile Tue Nov 13 14:05:23 2012 (r307374) @@ -0,0 +1,21 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= hgtools +PORTVERSION= 2.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= william88@gmail.com +COMMENT= Classes and setuptools plugin for Mercurial repositories + +LICENSE= GPLv2 + +USE_ZIP= yes +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include Added: head/devel/py-hgtools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hgtools/distinfo Tue Nov 13 14:05:23 2012 (r307374) @@ -0,0 +1,2 @@ +SHA256 (hgtools-2.0.2.zip) = bfa82ccfea56b178c9f28cb719cb97853710880b207e0a32801ba1077757da07 +SIZE (hgtools-2.0.2.zip) = 30635 Added: head/devel/py-hgtools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hgtools/pkg-descr Tue Nov 13 14:05:23 2012 (r307374) @@ -0,0 +1,7 @@ +Classes and setuptools plugin for Mercurial repositories + +hgtools builds on the setuptools_hg plugin for setuptools. +Provides classes for inspecting and working with repositories in the +Mercurial version control system. + +WWW: http://bitbucket.org/jaraco/hgtools/