From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 23 14:20:02 2009 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 2FA081065677 for ; Tue, 23 Jun 2009 14:20:02 +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 0A9BB8FC0C for ; Tue, 23 Jun 2009 14:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NEK1un022012 for ; Tue, 23 Jun 2009 14:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NEK1pf022011; Tue, 23 Jun 2009 14:20:01 GMT (envelope-from gnats) Resent-Date: Tue, 23 Jun 2009 14:20:01 GMT Resent-Message-Id: <200906231420.n5NEK1pf022011@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, Wen Heping Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 775021065672 for ; Tue, 23 Jun 2009 14:16:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 64A768FC08 for ; Tue, 23 Jun 2009 14:16:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NEGAv2071173 for ; Tue, 23 Jun 2009 14:16:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5NEGAUL071171; Tue, 23 Jun 2009 14:16:10 GMT (envelope-from nobody) Message-Id: <200906231416.n5NEGAUL071171@www.freebsd.org> Date: Tue, 23 Jun 2009 14:16:10 GMT From: Wen Heping To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/135965: [NEW PORT]devel/py-PEAK-Rules:Generic functions and business rules support systems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 14:20:02 -0000 >Number: 135965 >Category: ports >Synopsis: [NEW PORT]devel/py-PEAK-Rules:Generic functions and business rules support systems >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 23 14:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: PEAK-Rules is a highly-extensible framework for creating and using generic functions, from the very simple to the very complex. Out of the box, it supports multiple-dispatch on positional arguments using tuples of types, full predicate dispatch using strings containing Python expressions, and CLOS-like method combining. (But the framework allows you to mix and match dispatch engines and custom method combinations, if you need or want to.) WWW: http://pypi.python.org/pypi/PEAK-Rules (it was prepared for tg2) >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-PEAK-Rules # py-PEAK-Rules/Makefile # py-PEAK-Rules/distinfo # py-PEAK-Rules/pkg-descr # py-PEAK-Rules/pkg-plist # echo c - py-PEAK-Rules mkdir -p py-PEAK-Rules > /dev/null 2>&1 echo x - py-PEAK-Rules/Makefile sed 's/^X//' >py-PEAK-Rules/Makefile << '2cff143d9fd718f9e38d1c7ef2e5a61c' X# New ports collection makefile for: PEAK-Rules X# Date created: 23 June, 2009 X# Whom: Wen Heping X# X# $FreeBSD$ X# X XPORTNAME= PEAK-Rules XPORTVERSION= 0.5a1 XCATEGORIES= devel python XMASTER_SITES= http://peak.telecommunity.com/snapshots/ \ X http://www.turbogears.org/2.0/downloads/2.0.1/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XDISTNAME= ${PORTNAME}-${PORTVERSION}.dev-r2582 X XMAINTAINER= wenheping@gmail.com XCOMMENT= Generic functions and business rules support systems X XBUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Extremes>=1.1.1:${PORTSDIR}/devel/py-extremes \ X ${PYTHON_PKGNAMEPREFIX}AddOns>=0.6:${PORTSDIR}/devel/py-AddOns \ X ${PYTHON_PKGNAMEPREFIX}BytecodeAssembler>0:${PORTSDIR}/devel/py-BytecodeAssembler XRUN_DEPENDS= ${BUILD_DEPENDS} X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install XPYDISTUTILS_PKGNAME= PEAK_Rules XPYDISTUTILS_PKGVERSION= 0.5a1.dev_r2582 X X.include 2cff143d9fd718f9e38d1c7ef2e5a61c echo x - py-PEAK-Rules/distinfo sed 's/^X//' >py-PEAK-Rules/distinfo << '7e449f5dd5a1aa3a50bc2f0549ebd537' XMD5 (PEAK-Rules-0.5a1.dev-r2582.tar.gz) = cd9e9d0f94647f7fd3c453482ea20a61 XSHA256 (PEAK-Rules-0.5a1.dev-r2582.tar.gz) = ac91d1e2b123c054c0f793268ca9202dcdb4747d504c3e6e3a84e35ee26e6278 XSIZE (PEAK-Rules-0.5a1.dev-r2582.tar.gz) = 95348 7e449f5dd5a1aa3a50bc2f0549ebd537 echo x - py-PEAK-Rules/pkg-descr sed 's/^X//' >py-PEAK-Rules/pkg-descr << '439d24578292f8b09cfb6795f698e17e' XPEAK-Rules is a highly-extensible framework for creating and using Xgeneric functions, from the very simple to the very complex. Out of Xthe box, it supports multiple-dispatch on positional arguments using Xtuples of types, full predicate dispatch using strings containing XPython expressions, and CLOS-like method combining. (But the framework Xallows you to mix and match dispatch engines and custom method Xcombinations, if you need or want to.) X XWWW: http://pypi.python.org/pypi/PEAK-Rules 439d24578292f8b09cfb6795f698e17e echo x - py-PEAK-Rules/pkg-plist sed 's/^X//' >py-PEAK-Rules/pkg-plist << 'd65bff8a6946e3c579edcefce082371c' X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% d65bff8a6946e3c579edcefce082371c exit >Release-Note: >Audit-Trail: >Unformatted: