From owner-freebsd-python@FreeBSD.ORG Tue Mar 17 06:59:03 2009 Return-Path: Delivered-To: python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 187C81065675 for ; Tue, 17 Mar 2009 06:59:03 +0000 (UTC) (envelope-from yzlin@yzlin.org) Received: from yzlin.org (yzlin.cs.nctu.edu.tw [140.113.24.68]) by mx1.freebsd.org (Postfix) with ESMTP id E079F8FC1E for ; Tue, 17 Mar 2009 06:59:02 +0000 (UTC) (envelope-from yzlin@yzlin.org) Received: by yzlin.org (Postfix, from userid 1001) id 091D648F45E; Tue, 17 Mar 2009 14:38:14 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org From: Yi-Jheng Lin X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20090317063815.091D648F45E@yzlin.org> Date: Tue, 17 Mar 2009 14:38:14 +0800 (CST) Cc: python@FreeBSD.org Subject: [PATCH] devel/py-urwid: update to 0.9.8.4 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 06:59:03 -0000 >Submitter-Id: current-users >Originator: Yi-Jheng Lin >Organization: NCTU CS >Confidential: no >Synopsis: [PATCH] devel/py-urwid: update to 0.9.8.4 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 7.1-RELEASE-p1 amd64 >Environment: System: FreeBSD yzlin 7.1-RELEASE-p1 FreeBSD 7.1-RELEASE-p1 #0: Tue Jan 13 19:02:22 CST 2009 >Description: - Update to 0.9.8.4 Port maintainer (python@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py-urwid-0.9.8.4.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/py-urwid/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- Makefile 19 Jul 2008 22:58:56 -0000 1.17 +++ Makefile 17 Mar 2009 06:39:36 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/devel/py-urwid/Makefile,v 1.17 2008/07/19 22:58:56 miwi Exp $ PORTNAME= urwid -PORTVERSION= 0.9.8.3 +PORTVERSION= 0.9.8.4 CATEGORIES= devel python MASTER_SITES= http://excess.org/urwid/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,8 +16,26 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes +PORTEXAMPLES= bigtext.py \ + browse.py \ + calc.py \ + dialog.py \ + edit.py \ + fib.py \ + graph.py \ + input_test.py \ + test_urwid.py \ + tour.py +EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} + post-patch: @# disable setuptools for now ${REINPLACE_CMD} 's/setuptools/xxsetuptools/g' ${WRKSRC}/setup.py +post-install: +.if !defined(NOPORTEXAMPLES) + @${MKDIR} ${EXAMPLESDIR} + @${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/,} ${EXAMPLESDIR} +.endif + .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/py-urwid/distinfo,v retrieving revision 1.15 diff -u -r1.15 distinfo --- distinfo 19 Jul 2008 22:58:56 -0000 1.15 +++ distinfo 17 Mar 2009 06:39:36 -0000 @@ -1,3 +1,3 @@ -MD5 (urwid-0.9.8.3.tar.gz) = 52a7e6d15e12a12b1ae62c0c901b2c20 -SHA256 (urwid-0.9.8.3.tar.gz) = ee85b32f33114048dde3b782f8f42ff8a62ea08783b59fd7208c635eb9af8a71 -SIZE (urwid-0.9.8.3.tar.gz) = 179752 +MD5 (urwid-0.9.8.4.tar.gz) = 28f918c66887d4e470ae0c3535579ad7 +SHA256 (urwid-0.9.8.4.tar.gz) = 143c6183ba221ade64958a62272306e1a78e4dbd9cbb651c8302f2463fdeb979 +SIZE (urwid-0.9.8.4.tar.gz) = 184002 --- py-urwid-0.9.8.4.patch ends here ---