From owner-svn-ports-head@freebsd.org Wed Jul 1 05:05:55 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C68199ECFD; Wed, 1 Jul 2015 05:05:55 +0000 (UTC) (envelope-from xmj@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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA04D24C5; Wed, 1 Jul 2015 05:05:54 +0000 (UTC) (envelope-from xmj@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t6155sCt074051; Wed, 1 Jul 2015 05:05:54 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t6155rob074047; Wed, 1 Jul 2015 05:05:53 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201507010505.t6155rob074047@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Wed, 1 Jul 2015 05:05:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391031 - in head/graphics: . py-pyganim 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: Wed, 01 Jul 2015 05:05:55 -0000 Author: xmj Date: Wed Jul 1 05:05:53 2015 New Revision: 391031 URL: https://svnweb.freebsd.org/changeset/ports/391031 Log: graphics/py-pyganim: create port Pyganim (pronounced like "pig" and "animation") is a Python module for Pygame that makes it easy to add sprite animations to your Pygame game programs. Pyganim works with Python 2 and Python 3. The mascot of Pyganim is a red vitruvian pig. Pyganim was written by Al Sweigart and released under a "Simplified BSD" license. Contact Al with any questions/bug reports: al@inventwithpython.com WWW: http://inventwithpython.com/pyganim Needed by: games/hypatia_engine Added: head/graphics/py-pyganim/ head/graphics/py-pyganim/Makefile (contents, props changed) head/graphics/py-pyganim/distinfo (contents, props changed) head/graphics/py-pyganim/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jul 1 05:01:30 2015 (r391030) +++ head/graphics/Makefile Wed Jul 1 05:05:53 2015 (r391031) @@ -803,6 +803,7 @@ SUBDIR += pstoedit SUBDIR += pstoepsi SUBDIR += pure-gl + SUBDIR += py-pyganim SUBDIR += py-PyX SUBDIR += py-PyX12 SUBDIR += py-aafigure Added: head/graphics/py-pyganim/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyganim/Makefile Wed Jul 1 05:05:53 2015 (r391031) @@ -0,0 +1,22 @@ +# Created by: Johannes Jost Meixner +# $FreeBSD$ + +PORTNAME= pyganim +PORTVERSION= 0.9.0 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Pyganim-${PORTVERSION} + +MAINTAINER= xmj@FreeBSD.org +COMMENT= Sprite animation module for Pygame + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= python zip +USE_PYTHON= autoplist distutils + +.include Added: head/graphics/py-pyganim/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyganim/distinfo Wed Jul 1 05:05:53 2015 (r391031) @@ -0,0 +1,2 @@ +SHA256 (Pyganim-0.9.0.zip) = c09138feaa40f700ab2e6139e3c3e09c98b8842fccbf9648244aee07cfaeb491 +SIZE (Pyganim-0.9.0.zip) = 292917 Added: head/graphics/py-pyganim/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyganim/pkg-descr Wed Jul 1 05:05:53 2015 (r391031) @@ -0,0 +1,10 @@ +Pyganim (pronounced like "pig" and "animation") is a Python module for Pygame +that makes it easy to add sprite animations to your Pygame game programs. +Pyganim works with Python 2 and Python 3. + +The mascot of Pyganim is a red vitruvian pig. + +Pyganim was written by Al Sweigart and released under a "Simplified BSD" +license. Contact Al with any questions/bug reports: al@inventwithpython.com + +WWW: http://inventwithpython.com/pyganim