From owner-svn-ports-head@FreeBSD.ORG Thu Aug 16 19:33:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8C6A10656AA; Thu, 16 Aug 2012 19:33:50 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AAAFB8FC1C; Thu, 16 Aug 2012 19:33:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7GJXolE059053; Thu, 16 Aug 2012 19:33:50 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7GJXojH059046; Thu, 16 Aug 2012 19:33:50 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201208161933.q7GJXojH059046@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 16 Aug 2012 19:33:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302655 - in head/www: . trac-childtickets trac-childtickets/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 19:33:50 -0000 Author: rm Date: Thu Aug 16 19:33:50 2012 New Revision: 302655 URL: http://svn.freebsd.org/changeset/ports/302655 Log: Having child-tickets is extremely useful when it comes to managing multiple releases (ie. a single 'bug-report' ticket and a single 'bug-fix' ticket for each milestone/branch of development), for managing sub-tasks of an issue and for managing 'bug-fixes' required when developing a new (larger) enhancement. This plugin modifies the ticket description box and adds a child ticket listing table and a 'create' button for adding new child tickets. It has the following features: It is possible to control in trac.ini the following aspects of child-ticket creation/viewing: allow/disallow child-tickets for a certain type of ticket to define the table headers displayed in the parent ticket to define a default for the child type to be created restrict the type of child-tickets to define which fields are inherited by child-tickets WWW: http://trac-hacks.org/wiki/ChildTicketsPlugin PR: 169910 Submitted by: Radim Kolar Added: head/www/trac-childtickets/ head/www/trac-childtickets/Makefile (contents, props changed) head/www/trac-childtickets/distinfo (contents, props changed) head/www/trac-childtickets/files/ head/www/trac-childtickets/files/pkg-message.in (contents, props changed) head/www/trac-childtickets/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Aug 16 19:04:50 2012 (r302654) +++ head/www/Makefile Thu Aug 16 19:33:50 2012 (r302655) @@ -1851,6 +1851,7 @@ SUBDIR += trac-bzr SUBDIR += trac-calendar SUBDIR += trac-ccselector + SUBDIR += trac-childtickets SUBDIR += trac-codetags SUBDIR += trac-customfieldadmin SUBDIR += trac-customroadmap Added: head/www/trac-childtickets/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac-childtickets/Makefile Thu Aug 16 19:33:50 2012 (r302655) @@ -0,0 +1,35 @@ +# New ports collection makefile for: trac-childtickets +# Date created: 2012-08-16 +# Whom: Radim Kolar +# +# $FreeBSD$ +# + +PORTNAME= childtickets +PORTVERSION= 2.5.2 +CATEGORIES= www devel python +MASTER_SITES= http://schema.filez.com/distfiles/ +PKGNAMEPREFIX= trac- + +MAINTAINER= hsn@sendmail.cz +COMMENT= Support for having child-tickets in Trac + +LICENSE= BSD + +RUN_DEPENDS+= trac>=0.12:${PORTSDIR}/www/trac + +USE_ZIP= yes + +WRKSRC= ${WRKDIR}/childticketsplugin/0.12 + +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install +PYDISTUTILS_PKGNAME= Tracchildtickets + +SUB_FILES= pkg-message +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +post-install: + @${CAT} ${PKGMESSAGE} + +.include Added: head/www/trac-childtickets/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac-childtickets/distinfo Thu Aug 16 19:33:50 2012 (r302655) @@ -0,0 +1,2 @@ +SHA256 (childtickets-2.5.2.zip) = a806a3e2f47cf4d36ad1ad6ec35153088580e38e61458d4d5e00a06eaabd17ae +SIZE (childtickets-2.5.2.zip) = 15305 Added: head/www/trac-childtickets/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac-childtickets/files/pkg-message.in Thu Aug 16 19:33:50 2012 (r302655) @@ -0,0 +1,2 @@ +See plugin homepage http://trac-hacks.org/wiki/ChildTicketsPlugin for +more information about post install configuration. Added: head/www/trac-childtickets/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/trac-childtickets/pkg-descr Thu Aug 16 19:33:50 2012 (r302655) @@ -0,0 +1,20 @@ +Having child-tickets is extremely useful when it comes to +managing multiple releases (ie. a single 'bug-report' ticket and +a single 'bug-fix' ticket for each milestone/branch of +development), for managing sub-tasks of an issue and for managing +'bug-fixes' required when developing a new (larger) enhancement. + +This plugin modifies the ticket description box and adds a child +ticket listing table and a 'create' button for adding new child +tickets. It has the following features: + +It is possible to control in trac.ini the following aspects of +child-ticket creation/viewing: + + allow/disallow child-tickets for a certain type of ticket + to define the table headers displayed in the parent ticket + to define a default for the child type to be created + restrict the type of child-tickets + to define which fields are inherited by child-tickets + +WWW: http://trac-hacks.org/wiki/ChildTicketsPlugin