Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Aug 2012 19:33:50 +0000 (UTC)
From:      Ruslan Mahmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302655 - in head/www: . trac-childtickets trac-childtickets/files
Message-ID:  <201208161933.q7GJXojH059046@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <hsn@sendmail.cz>

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 <hsn@sendmail.cz>
+#
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208161933.q7GJXojH059046>