From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 5 01:30:03 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA82E16A418 for ; Tue, 5 Feb 2008 01:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 999B613C46B for ; Tue, 5 Feb 2008 01:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m151U3mL091073 for ; Tue, 5 Feb 2008 01:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m151U3xW091064; Tue, 5 Feb 2008 01:30:03 GMT (envelope-from gnats) Resent-Date: Tue, 5 Feb 2008 01:30:03 GMT Resent-Message-Id: <200802050130.m151U3xW091064@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE6FC16A418 for ; Tue, 5 Feb 2008 01:25:07 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 9893F13C45B for ; Tue, 5 Feb 2008 01:25:07 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=hive.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1JMCbD-000E6W-Vb for FreeBSD-gnats-submit@freebsd.org; Tue, 05 Feb 2008 04:27:47 +0300 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 35EA27E45 for ; Tue, 5 Feb 2008 04:25:50 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 11DE917031; Tue, 5 Feb 2008 04:25:08 +0300 (MSK) Message-Id: <20080205012508.11DE917031@hades.panopticon> Date: Tue, 5 Feb 2008 04:25:08 +0300 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/120275: [PATCH] games/pathological: won't start X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2008 01:30:03 -0000 >Number: 120275 >Category: ports >Synopsis: [PATCH] games/pathological: won't start >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 05 01:30:03 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 7.0-RC1 i386 >Organization: >Environment: System: FreeBSD hades.panopticon 7.0-RC1 FreeBSD 7.0-RC1 #0: Sat Jan 5 03:26:52 MSK 2008 root@hades.panopticon:/usr/obj/usr/src/sys/HADES i386 >Description: pathological won't start: % pathological File "/usr/local/share/pathological/pathological.py", line 1850 SyntaxError: Non-ASCII character '\xa9' in file /usr/local/share/pathological/pathological.py on line 1850, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details % most probably, it became broken with newer python (2.4 or 2.5). The patch attached fixes the problem (also sent to upstream). While here, make use of SF macro and correct redundancy in COMMENT. >How-To-Repeat: >Fix: --- pathological.patch begins here --- diff -ruN pathological.orig/Makefile pathological/Makefile --- pathological.orig/Makefile 2008-02-05 04:09:20.000000000 +0300 +++ pathological/Makefile 2008-02-05 04:11:42.000000000 +0300 @@ -7,13 +7,12 @@ PORTNAME= pathological PORTVERSION= 1.1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF MAINTAINER= janos.mohacsi@bsd.hu -COMMENT= Pathological is an enriched clone of the game "Logical" +COMMENT= Enriched clone of the game "Logical" RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game diff -ruN pathological.orig/files/patch-pathological.py pathological/files/patch-pathological.py --- pathological.orig/files/patch-pathological.py 1970-01-01 03:00:00.000000000 +0300 +++ pathological/files/patch-pathological.py 2008-02-05 04:10:05.000000000 +0300 @@ -0,0 +1,11 @@ +--- pathological.py.orig 2003-07-17 18:12:30.000000000 +0400 ++++ pathological.py 2008-02-05 04:09:49.000000000 +0300 +@@ -1847,7 +1847,7 @@ + scroller_font_height = 28 + scroller_rect = (10,550,780,scroller_font_height) + scroller_text = \ +- " Copyright © 2003 John-Paul Gignac. "+ \ ++ " Copyright (C) 2003 John-Paul Gignac. "+ \ + " Soundtrack by Matthias Le Bidan. "+ \ + " Board designs contributed by Mike Brenneman and Kim Gignac. "+ \ + " To contribute your own board designs, see the website: "+ \ --- pathological.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: