From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 19 21:10:21 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BD0016A47E for ; Thu, 19 Oct 2006 21:10:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFD643D66 for ; Thu, 19 Oct 2006 21:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9JLAJvW085210 for ; Thu, 19 Oct 2006 21:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9JLAJoa085209; Thu, 19 Oct 2006 21:10:19 GMT (envelope-from gnats) Resent-Date: Thu, 19 Oct 2006 21:10:19 GMT Resent-Message-Id: <200610192110.k9JLAJoa085209@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, Marcus von Appen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C5F16A47E for ; Thu, 19 Oct 2006 21:06:02 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.18.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBCA443D6A for ; Thu, 19 Oct 2006 21:06:01 +0000 (GMT) (envelope-from mail@sysfault.org) Received: (qmail 32651 invoked from network); 19 Oct 2006 21:06:00 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[89.182.94.39]) (envelope-sender ) by smtprelay04.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 19 Oct 2006 21:06:00 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gaf8w-000KND-4f; Thu, 19 Oct 2006 23:09:34 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.13.1/8.13.1/Submit) id k9JL9X8R077827; Thu, 19 Oct 2006 23:09:33 +0200 (CEST) (envelope-from marcus) Message-Id: <200610192109.k9JL9X8R077827@medusa.sysfault.org> Date: Thu, 19 Oct 2006 23:09:33 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perky@FreeBSD.org Subject: ports/104587: [Update]: Mark devel/py-ctypes IGNORE for python >= 2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus von Appen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Oct 2006 21:10:21 -0000 >Number: 104587 >Category: ports >Synopsis: [Update]: Mark devel/py-ctypes IGNORE for python >= 2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 21:10:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 6.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #14: Thu Sep 28 19:06:35 CEST 2006 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA i386 >Description: The ctypes module ships with Python 2.5 and thus should be ignored, if the default PYTHON_REL resolves to a value >= 250. This behaviour should be easily overrideable for users who need it for another installed python version by setting the PYTHON_VERSION to another default value in the pkgtools.conf or simply commenting out the IGNORE line. Bumped PORTREVISION to note users about that change (although 2.5 is not the default some people might use it already as default). >How-To-Repeat: -- >Fix: diff -Nur py-ctypes/Makefile py-ctypes.new/Makefile --- py-ctypes/Makefile Thu Oct 19 23:02:14 2006 +++ py-ctypes.new/Makefile Thu Oct 19 23:01:33 2006 @@ -2,11 +2,12 @@ # Date created: 12 May 2003 # Whom: Hye-Shik Chang # -# $FreeBSD: /repoman/r/pcvs/ports/devel/py-ctypes/Makefile,v 1.13 2006/09/10 04:13:47 perky Exp $ +# $FreeBSD: ports/devel/py-ctypes/Makefile,v 1.13 2006/09/10 04:13:47 perky Exp $ # PORTNAME= ctypes PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S,%SUBDIR%/,ctypes/,g} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,4 +20,10 @@ ONLY_FOR_ARCHS= i386 amd64 alpha powerpc sparc64 -.include +.include + +.if ${PYTHON_REL} >= 250 +IGNORE= ctypes ships with Python 2.5.x +.endif + +.include >Release-Note: >Audit-Trail: >Unformatted: