From 4601d7b96defe47b1a22a8ad17e42f291743cb72 Mon Sep 17 00:00:00 2001 From: geos_one Date: Tue, 31 Aug 2010 22:19:03 +0000 Subject: [PATCH] add new addon git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2387 6952d904-891a-0410-993b-d76249ca496b --- www-apps/trac-subscriberlistplugin/Manifest | 1 + .../trac-subscriberlistplugin-0.1.ebuild | 46 +++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 www-apps/trac-subscriberlistplugin/Manifest create mode 100644 www-apps/trac-subscriberlistplugin/trac-subscriberlistplugin-0.1.ebuild diff --git a/www-apps/trac-subscriberlistplugin/Manifest b/www-apps/trac-subscriberlistplugin/Manifest new file mode 100644 index 00000000..5e2e7657 --- /dev/null +++ b/www-apps/trac-subscriberlistplugin/Manifest @@ -0,0 +1 @@ +EBUILD trac-subscriberlistplugin-0.1.ebuild 1803 RMD160 d3325153eadc9502ad4566d6337c0a1644978aee SHA1 1198b451ac1655a84b03985dff6e6aac9dcb1dec SHA256 2861cf24d59d01797cc4777910bc188b6ea00980150f5c1cd1e8ef8c631f8fea diff --git a/www-apps/trac-subscriberlistplugin/trac-subscriberlistplugin-0.1.ebuild b/www-apps/trac-subscriberlistplugin/trac-subscriberlistplugin-0.1.ebuild new file mode 100644 index 00000000..1510fa94 --- /dev/null +++ b/www-apps/trac-subscriberlistplugin/trac-subscriberlistplugin-0.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/trac-webadmin/trac-webadmin-0.1.2.ebuild,v 1.4 2007/02/13 20:39:33 corsair Exp $ + +EAPI="2" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils subversion + +ESVN_REPO_URI="https://svn.mayastudios.de/mtpp/repos/plugins/subscriberlist/trunk/" +DESCRIPTION="This plugin displays a list of users that will informed about ticket changes" +HOMEPAGE="https://svn.mayastudios.de/mtpp/wiki/Plugins/SubscriberListPlugin" + +LICENSE="trac" +KEYWORDS="~amd64 ~arm ~ppc64 ~x86" +IUSE="" + +SLOT="0" + +DEPEND="dev-python/setuptools" +RDEPEND=">=www-apps/trac-0.12" + +pkg_postinst() { + elog "To enable the FullBlogPlugin plugin in your Trac environments, you have to add:" + elog " [notification]" + elog " always_notify_owner = true" + elog " always_notify_reporter = true" + elog "" + elog " ; Allow updaters to decide whether they'll be notified about ticket changes or" + elog " ; not. They can control this by adding or removing themselve from the CC list." + elog " ; NOTE: This may change in the future where every use will be able to decided" + elog " ; when it's going be notified. See http://trac.edgewall.org/ticket/2247#comment:5" + elog " always_notify_updater = false" + elog "" + elog " ; Don't notify about own changes (only with the no_self_notification patch (202))." + elog " notify_own_changes = false" + elog "" + elog " ; Disabling this option puts all recipients of notifications in BCC (instead of" + elog " ; TO or CC). This may lead to an empty "TO" header field ("undisclosed-recipients")" + elog " ; which is, however, not a problem and perfectly normal." + elog " use_public_cc = false" + elog "" + elog "to your trac.ini files." +}