bbcba6e4af
It comes with a bunch of plugins (actually, sub-modules of SVN::Hooks) that implement some of the most used standalone Subversion hooks available, such as pre-commit hooks for enforcing: - the log message format - property settings - the repository structure - restrictions on the modification of repository areas (e.g., /tags) - restrictions on filenames - the integration with ticketing systems It also comes with post-commit hooks for: - sending commit emails - updating configuration files in the server from changes made in the repository But as a framework, it can be extended to implement all types of hooks. WWW: http://search.cpan.org/dist/SVN-Hooks/
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# New ports collection makefile for: SVN::Hooks
|
|
# Date created: 2009-01-27
|
|
# Whom: Greg Larkin <glarkin@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= SVN-Hooks
|
|
PORTVERSION= 0.13.12
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= glarkin@FreeBSD.org
|
|
COMMENT= A framework for implementing Subversion hooks
|
|
|
|
RUN_DEPENDS= p5-Email-Send>=0:${PORTSDIR}/mail/p5-Email-Send \
|
|
p5-Email-Simple>=0:${PORTSDIR}/mail/p5-Email-Simple \
|
|
p5-Email-Simple-Creator>=0:${PORTSDIR}/mail/p5-Email-Simple-Creator \
|
|
p5-SVN-Look>=0:${PORTSDIR}/devel/p5-SVN-Look \
|
|
p5-SVN-Notify>=0:${PORTSDIR}/devel/p5-SVN-Notify \
|
|
${SITE_PERL}/XMLRPC/Lite.pm:${PORTSDIR}/net/p5-SOAP-Lite
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= SVN::Hooks.3 \
|
|
SVN::Hooks::AllowLogChange.3 \
|
|
SVN::Hooks::CheckLog.3 \
|
|
SVN::Hooks::CheckMimeTypes.3 \
|
|
SVN::Hooks::CheckProperty.3 \
|
|
SVN::Hooks::CheckStructure.3 \
|
|
SVN::Hooks::DenyChanges.3 \
|
|
SVN::Hooks::DenyFilenames.3 \
|
|
SVN::Hooks::JiraAcceptance.3 \
|
|
SVN::Hooks::Mailer.3 \
|
|
SVN::Hooks::Notify.3 \
|
|
SVN::Hooks::UpdateConfFile.3
|
|
|
|
.include <bsd.port.mk>
|