From owner-svn-ports-head@FreeBSD.ORG Wed Nov 6 14:31:16 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 048B9C6B; Wed, 6 Nov 2013 14:31:16 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E49D6238F; Wed, 6 Nov 2013 14:31:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA6EVFnO010001; Wed, 6 Nov 2013 14:31:15 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA6EVF7E009997; Wed, 6 Nov 2013 14:31:15 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201311061431.rA6EVF7E009997@svn.freebsd.org> From: William Grzybowski Date: Wed, 6 Nov 2013 14:31:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332994 - in head/devel: . py-stsci.distutils 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.14 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: Wed, 06 Nov 2013 14:31:16 -0000 Author: wg Date: Wed Nov 6 14:31:14 2013 New Revision: 332994 URL: http://svnweb.freebsd.org/changeset/ports/332994 Log: devel/py-stsci.distutils: Packaging utilities used by some of STScI's packages This package contains utilities used to package some of STScI's Python projects, specifically those projects that comprise stsci_python and Astrolib. It currently consists mostly of some setup_hook scripts meant for use with distutils2/packaging and/or d2to1, and a customized easy_install command meant for use with distribute. This package is not meant for general consumption, though it might be worth looking at for examples of how to do certain things with your own packages. WWW: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python Added: head/devel/py-stsci.distutils/ head/devel/py-stsci.distutils/Makefile (contents, props changed) head/devel/py-stsci.distutils/distinfo (contents, props changed) head/devel/py-stsci.distutils/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Nov 6 13:52:59 2013 (r332993) +++ head/devel/Makefile Wed Nov 6 14:31:14 2013 (r332994) @@ -3737,6 +3737,7 @@ SUBDIR += py-sdl2 SUBDIR += py-serpent SUBDIR += py-setproctitle + SUBDIR += py-setuptools SUBDIR += py-setuptools-git SUBDIR += py-setuptools_darcs SUBDIR += py-setuptools_hg @@ -3753,6 +3754,7 @@ SUBDIR += py-sqlcc SUBDIR += py-statgrab SUBDIR += py-stevedore + SUBDIR += py-stsci.distutils SUBDIR += py-subversion SUBDIR += py-subvertpy SUBDIR += py-sysctl Added: head/devel/py-stsci.distutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stsci.distutils/Makefile Wed Nov 6 14:31:14 2013 (r332994) @@ -0,0 +1,20 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= stsci.distutils +PORTVERSION= 0.3.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Packaging utilities used by some of STScI\'s packages + +LICENSE= BSD + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install +PYDISTUTILS_AUTOPLIST= yes +NO_STAGE= yes + +.include Added: head/devel/py-stsci.distutils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stsci.distutils/distinfo Wed Nov 6 14:31:14 2013 (r332994) @@ -0,0 +1,2 @@ +SHA256 (stsci.distutils-0.3.4.tar.gz) = 75aad63b53b037a0f235528b8494bb1d3c38e525d436803b4721eb6f5d0c7591 +SIZE (stsci.distutils-0.3.4.tar.gz) = 29565 Added: head/devel/py-stsci.distutils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stsci.distutils/pkg-descr Wed Nov 6 14:31:14 2013 (r332994) @@ -0,0 +1,11 @@ +This package contains utilities used to package some of STScI's Python +projects, specifically those projects that comprise stsci_python and Astrolib. + +It currently consists mostly of some setup_hook scripts meant for use with +distutils2/packaging and/or d2to1, and a customized easy_install command meant +for use with distribute. + +This package is not meant for general consumption, though it might be worth +looking at for examples of how to do certain things with your own packages. + +WWW: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python