From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 17 03:00:08 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 BAC0C106566C for ; Sun, 17 May 2009 03:00:08 +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 97B4D8FC1A for ; Sun, 17 May 2009 03:00:08 +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 n4H308nb073858 for ; Sun, 17 May 2009 03:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n4H308Fe073857; Sun, 17 May 2009 03:00:08 GMT (envelope-from gnats) Resent-Date: Sun, 17 May 2009 03:00:08 GMT Resent-Message-Id: <200905170300.n4H308Fe073857@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, Li-Wen Hsu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA4FB1065672 for ; Sun, 17 May 2009 02:53:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.cs.nctu.edu.tw) Received: from FreeBSD.cs.nctu.edu.tw (FreeBSD.cs.nctu.edu.tw [140.113.17.209]) by mx1.freebsd.org (Postfix) with ESMTP id B929F8FC20 for ; Sun, 17 May 2009 02:53:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.cs.nctu.edu.tw) Received: by FreeBSD.cs.nctu.edu.tw (Postfix, from userid 1058) id 7175262024; Sun, 17 May 2009 10:36:39 +0800 (CST) Message-Id: <20090517023639.7175262024@FreeBSD.cs.nctu.edu.tw> Date: Sun, 17 May 2009 10:36:39 +0800 (CST) From: Li-Wen Hsu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: yarodin@gmail.com Subject: ports/134594: [PATCH] security/pwman3: use cElementTree and sqlite comes with Python 2.5 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: Sun, 17 May 2009 03:00:09 -0000 >Number: 134594 >Category: ports >Synopsis: [PATCH] security/pwman3: use cElementTree and sqlite comes with Python 2.5 >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: Sun May 17 03:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD.cs.nctu.edu.tw 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Thu May 7 22:34:33 CST >Description: Changing depends to cElementTree and sqlite comes with Python 2.5 . Port maintainer (yarodin@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- pwman3-0.0.6_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/pwman3/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 6 May 2008 03:09:35 -0000 1.1 +++ Makefile 17 May 2009 02:35:18 -0000 @@ -7,6 +7,7 @@ PORTNAME= pwman3 PORTVERSION= 0.0.6 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= http://pwman.bleurgh.com/~ivan/pwman3/source/ \ http://source.antisupport.com/pwman3/ @@ -15,12 +16,17 @@ MAINTAINER= yarodin@gmail.com COMMENT= Console password management application with sql storage -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.0:${PORTSDIR}/security/py-pycrypto \ - ${PYTHON_PKGNAMEPREFIX}cElementTree>=1.0.5:${PORTSDIR}/devel/py-celementtree \ - ${PYTHON_PKGNAMEPREFIX}pysqlite>=2.0.5:${PORTSDIR}/databases/py-pysqlite23 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.0:${PORTSDIR}/security/py-pycrypto USE_PYTHON= 2.5+ USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= Pwman3 -.include +.include + +post-patch: + ${REINPLACE_CMD} -e s,cElementTree,xml.etree.cElementTree, ${WRKSRC}/pwman/exchange/exporter.py + ${REINPLACE_CMD} -e s,cElementTree,xml.etree.cElementTree, ${WRKSRC}/pwman/exchange/importer.py + ${REINPLACE_CMD} -e s,pysqlite2,sqlite3, ${WRKSRC}/pwman/data/drivers/sqlite.py + +.include --- pwman3-0.0.6_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: