From owner-svn-ports-all@freebsd.org Wed Jun 22 15:18:33 2016 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 F195AB72A76; Wed, 22 Jun 2016 15:18:33 +0000 (UTC) (envelope-from feld@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 A7EE81E38; Wed, 22 Jun 2016 15:18:33 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MFIW34057621; Wed, 22 Jun 2016 15:18:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MFIWGF057617; Wed, 22 Jun 2016 15:18:32 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606221518.u5MFIWGF057617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 22 Jun 2016 15:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417313 - in head/devel: . py-jaraco.classes 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.22 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: Wed, 22 Jun 2016 15:18:34 -0000 Author: feld Date: Wed Jun 22 15:18:32 2016 New Revision: 417313 URL: https://svnweb.freebsd.org/changeset/ports/417313 Log: Routines for obtaining the class names of an object and its parent classes. WWW: https://pypi.python.org/pypi/jaraco.classes Added: head/devel/py-jaraco.classes/ head/devel/py-jaraco.classes/Makefile (contents, props changed) head/devel/py-jaraco.classes/distinfo (contents, props changed) head/devel/py-jaraco.classes/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 22 15:16:37 2016 (r417312) +++ head/devel/Makefile Wed Jun 22 15:18:32 2016 (r417313) @@ -4163,6 +4163,7 @@ SUBDIR += py-isodate SUBDIR += py-iterpipes SUBDIR += py-itools + SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-jcc Added: head/devel/py-jaraco.classes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.classes/Makefile Wed Jun 22 15:18:32 2016 (r417313) @@ -0,0 +1,21 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= jaraco.classes +PORTVERSION= 1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Python class routines + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-jaraco.classes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.classes/distinfo Wed Jun 22 15:18:32 2016 (r417313) @@ -0,0 +1,2 @@ +SHA256 (jaraco.classes-1.3.tar.gz) = 8d7333a8930efd10a934d5a1b5984f81f0c08e483c5d39a604660c9715c64522 +SIZE (jaraco.classes-1.3.tar.gz) = 4095 Added: head/devel/py-jaraco.classes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.classes/pkg-descr Wed Jun 22 15:18:32 2016 (r417313) @@ -0,0 +1,4 @@ +Routines for obtaining the class names of an object and its parent +classes. + +WWW: https://pypi.python.org/pypi/jaraco.classes