1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

This plugin provides downloads section which may contain releases or

other files. It is administrated via WebAdminPlugin and there is an
interface to the trac-admin tool that may help during automatic server
maintenance. The Downloads section of Trac displays a table with
information about the uploaded files such as description, component,
version, size, architecture, type and optionally assigned tags which the
download is related to. It also collects information about number of
downloads which can be displayed on wiki page together with direct links
to the specified download.

WWW: http://trac-hacks.org/wiki/DownloadsPlugin
This commit is contained in:
Brooks Davis 2010-08-25 13:42:26 +00:00
parent dcf4e0fb33
commit fbb7b9bb38
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259969
4 changed files with 58 additions and 0 deletions

View File

@ -1667,6 +1667,7 @@
SUBDIR += trac-datefield
SUBDIR += trac-discussion
SUBDIR += trac-down
SUBDIR += trac-downloads
SUBDIR += trac-email2trac
SUBDIR += trac-estimator
SUBDIR += trac-fivestarvote

View File

@ -0,0 +1,43 @@
# New ports collection makefile for: trac-mercurial
# Date created: January 23, 2009
# Whom: Brooks Davis <brooks@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;:L}
PORTVERSION= ${TRAC_VERSION}.${PLUGIN_VERSION}
CATEGORIES= www devel python
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= brooks
PKGNAMEPREFIX= trac-
DISTNAME= ${PORTNAME}plugin-${PORTVERSION}
DIST_SUBDIR= trac
MAINTAINER= brooks@freebsd.org
COMMENT= A trac plugin providing a downloads section
RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac
BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools
TRAC_VERSION= 0.11
PLUGIN_VERSION= 0.2
USE_PYTHON= yes
NO_BUILD= yes
USE_PYDISTUTILS=yes
PYDISTUTILS_PKGNAME= TracDownloads
PYDISTUTILS_NOEGGINFO= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/${PYDISTUTILS_PKGNAME}-${PLUGIN_VERSION}-py${PYTHON_VER}.egg
.if defined(BOOTSTRAP)
do-fetch:
${MKDIR} ${WRKDIR}
svn export http://trac-hacks.org/svn/downloadsplugin/0.11/ ${WRKSRC}
${MKDIR} ${_DISTDIR}
cd ${WRKDIR} && \
tar cfvz ${_DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (trac/downloadsplugin-0.11.0.2.tar.gz) = 4aef848025069533add7a21b207a3f4a
SHA256 (trac/downloadsplugin-0.11.0.2.tar.gz) = 6a4557341619ea9b347b772f87d6a2a62c842a352c18c7f1963a9668a792713f
SIZE (trac/downloadsplugin-0.11.0.2.tar.gz) = 14066

View File

@ -0,0 +1,11 @@
This plugin provides downloads section which may contain releases or
other files. It is administrated via WebAdminPlugin and there is an
interface to the trac-admin tool that may help during automatic server
maintenance. The Downloads section of Trac displays a table with
information about the uploaded files such as description, component,
version, size, architecture, type and optionally assigned tags which the
download is related to. It also collects information about number of
downloads which can be displayed on wiki page together with direct links
to the specified download.
WWW: http://trac-hacks.org/wiki/DownloadsPlugin