New port: www/trac-defaultcc
This plugin automatically adds a default CC list when a new ticket is created, based on its initial component. Approved by: erwin (mentor) Feature safe: yes
This commit is contained in:
parent
3efd1f67e3
commit
81f1609034
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=280175
5 changed files with 54 additions and 0 deletions
|
@ -1803,6 +1803,7 @@
|
|||
SUBDIR += trac-customfieldadmin
|
||||
SUBDIR += trac-customroadmap
|
||||
SUBDIR += trac-datefield
|
||||
SUBDIR += trac-defaultcc
|
||||
SUBDIR += trac-discussion
|
||||
SUBDIR += trac-down
|
||||
SUBDIR += trac-downloads
|
||||
|
|
46
www/trac-defaultcc/Makefile
Normal file
46
www/trac-defaultcc/Makefile
Normal file
|
@ -0,0 +1,46 @@
|
|||
# New ports collection makefile for: trac-autocomplete
|
||||
# Date created: August 18, 2011
|
||||
# Whom: Eygene Ryabinkin <rea@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= defaultcc
|
||||
PORTVERSION= 0.1
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= http://dist.codelabs.ru/fbsd/trac-${PORTNAME}/
|
||||
PKGNAMEPREFIX= trac-
|
||||
DISTNAME= ${PORTNAME}plugin-r${REL}
|
||||
|
||||
MAINTAINER= rea@FreeBSD.org
|
||||
COMMENT= A plugin that adds default CC value for tickets
|
||||
|
||||
BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools
|
||||
RUN_DEPENDS+= trac>=0.11:${PORTSDIR}/www/trac
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_ZIP= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
USE_PYDISTUTILS= yes
|
||||
PYDISTUTILS_PKGNAME= Default_CC
|
||||
PYDISTUTILS_NOEGGINFO= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}plugin/trunk
|
||||
REL= 10605
|
||||
PLIST_SUB+= PYTHON_VER=${PYTHON_VER}
|
||||
|
||||
# We must fix file permissions -- ZIP file have 0000 for every file.
|
||||
# Directory permissions are fine (they aren't stored inside ZIP
|
||||
# file), but we set them too -- just in case.
|
||||
post-extract:
|
||||
@${FIND} ${WRKSRC} -type f | ${XARGS} ${CHMOD} 644
|
||||
@${FIND} ${WRKSRC} -type d | ${XARGS} ${CHMOD} 755
|
||||
|
||||
# Target to generate packaging list
|
||||
plist:
|
||||
@${FIND} ${PYTHON_SITELIBDIR}/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py${PYTHON_VER}.egg -type f | ${SED} -e's|^${PYTHON_SITELIBDIR}/|%%PYTHON_SITELIBDIR%%/|;s|/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py[[:digit:]\.]*.egg|/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py%%PYTHON_VER%%.egg|'
|
||||
@${FIND} ${PYTHON_SITELIBDIR}/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py${PYTHON_VER}.egg -type d -mindepth 1 | ${SORT} -r | ${SED} -e's|^${PYTHON_SITELIBDIR}/|@dirrm %%PYTHON_SITELIBDIR%%/|;s|/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py[[:digit:]\.]*.egg|/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py%%PYTHON_VER%%.egg|'
|
||||
@[ -d ${PYTHON_SITELIBDIR}/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py${PYTHON_VER}.egg ] && ${ECHO} '@dirrm %%PYTHON_SITELIBDIR%%/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py%%PYTHON_VER%%.egg'
|
||||
|
||||
.include <bsd.port.mk>
|
2
www/trac-defaultcc/distinfo
Normal file
2
www/trac-defaultcc/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (defaultccplugin-r10605.zip) = 5fbc6969327f7bdbc9e0fc8e97624e7af0ee740f501cd5cd203dec8905f594cf
|
||||
SIZE (defaultccplugin-r10605.zip) = 5043
|
4
www/trac-defaultcc/pkg-descr
Normal file
4
www/trac-defaultcc/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
This plugin automatically adds a default CC list
|
||||
when a new ticket is created, based on its initial component.
|
||||
|
||||
WWW: http://trac-hacks.org/wiki/DefaultCcPlugin
|
1
www/trac-defaultcc/pkg-plist
Normal file
1
www/trac-defaultcc/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
%%PYTHON_SITELIBDIR%%/Default_CC-0.1-py%%PYTHON_VER%%.egg
|
Loading…
Reference in a new issue