Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Jan 2020 09:40:34 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r524686 - in head/www: . p5-RT-Extension-RepeatTicket
Message-ID:  <202001310940.00V9eYlQ093897@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Fri Jan 31 09:40:33 2020
New Revision: 524686
URL: https://svnweb.freebsd.org/changeset/ports/524686

Log:
  RT extension that repeats tickets based on a schedule
  
  WWW: https://metacpan.org/release/RT-Extension-RepeatTicket
  
  Very belated commit of a port that had been sitting in review for
  nearly a year.
  
  Differential Revision: https://reviews.freebsd.org/D19762
  Reviewd by: mat (portmgr)

Added:
  head/www/p5-RT-Extension-RepeatTicket/
  head/www/p5-RT-Extension-RepeatTicket/Makefile   (contents, props changed)
  head/www/p5-RT-Extension-RepeatTicket/distinfo   (contents, props changed)
  head/www/p5-RT-Extension-RepeatTicket/pkg-descr   (contents, props changed)
  head/www/p5-RT-Extension-RepeatTicket/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Fri Jan 31 09:37:27 2020	(r524685)
+++ head/www/Makefile	Fri Jan 31 09:40:33 2020	(r524686)
@@ -1103,6 +1103,7 @@
     SUBDIR += p5-RT-Extension-LDAPImport
     SUBDIR += p5-RT-Extension-MandatoryOnTransition
     SUBDIR += p5-RT-Extension-QuickAssign
+    SUBDIR += p5-RT-Extension-RepeatTicket
     SUBDIR += p5-RT-Extension-SLA
     SUBDIR += p5-RTx-Calendar
     SUBDIR += p5-Reaction

Added: head/www/p5-RT-Extension-RepeatTicket/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-RT-Extension-RepeatTicket/Makefile	Fri Jan 31 09:40:33 2020	(r524686)
@@ -0,0 +1,57 @@
+# Created by: Matthew Seaman <matthew@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	RT-Extension-RepeatTicket
+PORTVERSION=	1.11
+CATEGORIES=	www perl5
+MASTER_SITES=	CPAN
+
+MAINTAINER=	matthew@FreeBSD.org
+COMMENT=	RT Extension to repeat tickets base on a schedule
+
+LICENSE=	GPLv2
+
+BUILD_DEPENDS=	${LOCALBASE}/bin/rt:www/rt${RT_VER} \
+		p5-DateTime-Event-ICal>0:devel/p5-DateTime-Event-ICal
+RUN_DEPENDS=	${LOCALBASE}/bin/rt:www/rt${RT_VER} \
+		p5-DateTime-Event-ICal>0:devel/p5-DateTime-Event-ICal
+
+FLAVORS=	rt44 rt42
+FLAVOR?=	${FLAVORS:[1]}
+rt42_PKGNAMEPREFIX=	p5-RT42-
+rt42_CONFLICTS_INSTALL=	rt44
+rt44_PKGNAMEPREFIX=	p5-RT44-
+rt44_CONFLICTS_INSTALL=	rt42
+
+USES=		perl5
+USE_PERL5=	configure
+
+.if ${FLAVOR} == rt44
+RT_VER=		44
+.elif ${FLAVOR} == rt42
+RT_VER=		42
+.endif
+
+NO_ARCH=	yes
+
+PLIST_SUB=	RTHOME=share/rt${RT_VER}
+
+# Note: You can install using an arbitrary $PREFIX but only if it
+# matches the $PREFIX used to install www/rt{42,44}.  Hence ignore
+# $PREFIX in the environment and inherit settings from RT.pm
+do-configure:
+	@cd ${CONFIGURE_WRKSRC} && \
+		unset PREFIX && \
+		${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${SITE_PERL} ${CONFIGURE_CMD} && \
+		${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile
+
+post-configure:
+	${REINPLACE_CMD} "/RTxPlugin/d" ${WRKSRC}/Makefile
+
+post-install:
+	${RM}	${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-RepeatTicket/lib/RT/Extension/RepeatTicket/Test.pm.in \
+		${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-RepeatTicket/bin/rt-repeat-ticket.in \
+		${STAGEDIR}${PREFIX}/man/auto/RT/Extension/RepeatTicket/.packlist*
+	${RMDIR} -p ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/RepeatTicket 2>/dev/null || :
+
+.include <bsd.port.mk>

Added: head/www/p5-RT-Extension-RepeatTicket/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-RT-Extension-RepeatTicket/distinfo	Fri Jan 31 09:40:33 2020	(r524686)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1553945016
+SHA256 (RT-Extension-RepeatTicket-1.11.tar.gz) = 821c026a7d8f2e399e1d622b1ad585a2745fe3ff13b47dfb7d12a5b2ac06f3b1
+SIZE (RT-Extension-RepeatTicket-1.11.tar.gz) = 61943

Added: head/www/p5-RT-Extension-RepeatTicket/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-RT-Extension-RepeatTicket/pkg-descr	Fri Jan 31 09:40:33 2020	(r524686)
@@ -0,0 +1,3 @@
+RT extension that repeats tickets based on a schedule
+
+WWW: https://metacpan.org/release/RT-Extension-RepeatTicket

Added: head/www/p5-RT-Extension-RepeatTicket/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-RT-Extension-RepeatTicket/pkg-plist	Fri Jan 31 09:40:33 2020	(r524686)
@@ -0,0 +1,12 @@
+man/man3/RT::Extension::RepeatTicket.3.gz
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/bin/rt-repeat-ticket
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/etc/initialdata
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/html/Callbacks/RepeatTicket/Elements/Tabs/Privileged
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/html/Callbacks/RepeatTicket/Ticket/Create.html/AfterBasics
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/html/Callbacks/RepeatTicket/Ticket/Elements/ShowSummary/LeftColumn
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/html/Ticket/Elements/EditRecurrence
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/html/Ticket/ModifyRecurrence.html
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/lib/RT/Extension/RepeatTicket.pm
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/lib/RT/Extension/RepeatTicket/Test.pm
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/po/repeatticket.pot
+%%RTHOME%%/plugins/RT-Extension-RepeatTicket/static/css/repeat-ticket.css



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