Date: Thu, 29 Jan 2009 16:03:45 +0800 (CST) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: clsung@FreeBSD.org Subject: ports/131110: [PATCH] www/trac: update to 0.11.2.1 Message-ID: <200901290803.n0T83jkC019201@lucky7.cs.nctu.edu.tw> Resent-Message-ID: <200901290810.n0T8A13w061017@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 131110 >Category: ports >Synopsis: [PATCH] www/trac: update to 0.11.2.1 >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 Jan 29 08:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.1-STABLE amd64 >Organization: >Environment: System: FreeBSD lucky7 7.1-STABLE FreeBSD 7.1-STABLE #1: Thu Jan 8 11:59:12 CST >Description: - Update to 0.11.2.1 - Fix dependency on sqlite3, for PYTHON_REL >= 250, uses databases/py-sqlite3, for PYTHON_REL < 250, uses databases/py-pysqlite23 Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- trac-0.11.2.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/trac/Makefile,v retrieving revision 1.39 diff -u -u -r1.39 Makefile --- Makefile 10 Nov 2008 02:47:51 -0000 1.39 +++ Makefile 29 Jan 2009 08:07:03 -0000 @@ -6,7 +6,7 @@ # PORTNAME= trac -PORTVERSION= 0.11.2 +PORTVERSION= 0.11.2.1 CATEGORIES= www devel python MASTER_SITES= http://ftp.edgewall.com/pub/trac/ \ ftp://ftp.edgewall.com/pub/trac/ @@ -82,7 +82,11 @@ .if defined(WITH_PGSQL) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/__init__.py:${PORTSDIR}/databases/py-psycopg2 .else +. if ${PYTHON_REL} < 250 RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 +. else +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 +. endif .endif .if !defined(WITHOUT_SUBVERSION) Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/trac/distinfo,v retrieving revision 1.23 diff -u -u -r1.23 distinfo --- distinfo 10 Nov 2008 02:47:51 -0000 1.23 +++ distinfo 29 Jan 2009 08:07:03 -0000 @@ -1,3 +1,3 @@ -MD5 (Trac-0.11.2.tar.gz) = 4977c8d1b8a797c324731dd17c842480 -SHA256 (Trac-0.11.2.tar.gz) = 6ef10a2ed9dbe68133ebea4504f1f4e78fb28d0ad86f048af8a12020ef8dcf35 -SIZE (Trac-0.11.2.tar.gz) = 715377 +MD5 (Trac-0.11.2.1.tar.gz) = 984ade4c234539f50c738d6a55a45e80 +SHA256 (Trac-0.11.2.1.tar.gz) = bc95802880a9a4b430286812ff848f72e652603fc2cc5be05844f70c0fccab3a +SIZE (Trac-0.11.2.1.tar.gz) = 713838 --- trac-0.11.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901290803.n0T83jkC019201>