From e78f616b75df94a49299034f9994b608f08659e8 Mon Sep 17 00:00:00 2001 From: geos_one Date: Wed, 23 Dec 2009 12:00:24 +0000 Subject: [PATCH] www-apps/trac-acct_mgr: remove accountmanager patch git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1726 6952d904-891a-0410-993b-d76249ca496b --- www-apps/trac-acct_mgr/ChangeLog | 4 ++ www-apps/trac-acct_mgr/Manifest | 3 +- .../trac-acct_mgr-0.2.1-r1.ebuild | 48 +++++++++++++++++++ 3 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 www-apps/trac-acct_mgr/trac-acct_mgr-0.2.1-r1.ebuild diff --git a/www-apps/trac-acct_mgr/ChangeLog b/www-apps/trac-acct_mgr/ChangeLog index fa575df8..41f34ab8 100644 --- a/www-apps/trac-acct_mgr/ChangeLog +++ b/www-apps/trac-acct_mgr/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 23 Dec 2009; Mario Fetka + +trac-acct_mgr-0.2.1-r1.ebuild: + remove accountmanager patch + 15 Mar 2009; Mario Fetka ChangeLog: add RegistrationConfirmationPatch diff --git a/www-apps/trac-acct_mgr/Manifest b/www-apps/trac-acct_mgr/Manifest index 568361c4..b6224125 100644 --- a/www-apps/trac-acct_mgr/Manifest +++ b/www-apps/trac-acct_mgr/Manifest @@ -1,5 +1,6 @@ AUX RegistrationConfirmationPatch.diff 4570 RMD160 e844d2b40e2bf3ca05777f836d346a881d661bdb SHA1 dbf528abc61c510df84ad8a67d2ba657f3dda3ca SHA256 2c4499175037fd06a5e7661a5d61ef97a178b720e5cfe5973d711095b6604088 EBUILD trac-acct_mgr-0.1.3.ebuild 1214 RMD160 08c61116b34731a9204414a8801df2ed49327e61 SHA1 366ed27ec819f45a352573b3029ad79d84ece486 SHA256 dbcaa0bbb198ee2c4bb8d354dce62faabe36c823bfda827daf16fb87ec2c9b2c +EBUILD trac-acct_mgr-0.2.1-r1.ebuild 1453 RMD160 a996c376aaa7348acb3c1f7dbac1e87012b05833 SHA1 dacf2114cbce0ba292ddadea6bc1e422ac166b6a SHA256 f2e7c1141d3b62cfe5a507b924d841ff4fc75ec50c20fdd4398c33302c860c35 EBUILD trac-acct_mgr-0.2.1.ebuild 1452 RMD160 68f332836dd6f90301280babd27349a34b929f1c SHA1 7dfea05925fd88cf661a866281dcb05575c41afa SHA256 a9bfbde6a13df29c28af2eb09dcc2b528ef4281380951e9dd5a191535edc1f8f -MISC ChangeLog 891 RMD160 e697f720bfa0b204c32d3552578dc385ce0a6549 SHA1 85b293e1f98177b56a1225abaeac7fabdd4f0a69 SHA256 12cf18077774e0167e83bcf0b3f284951db31f2cb1e756bfd878f861387bc3d8 +MISC ChangeLog 1007 RMD160 7b2cbee9acde792ad778f94a3e50ac9313b6015e SHA1 5508bfe67cd672c6de318ec8de3e26be967be432 SHA256 81936d1af75140fc67ca2a4aeb6a5fc8b5326860fa0c5c759b268ec4d51bd3ae MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/www-apps/trac-acct_mgr/trac-acct_mgr-0.2.1-r1.ebuild b/www-apps/trac-acct_mgr/trac-acct_mgr-0.2.1-r1.ebuild new file mode 100644 index 00000000..7cd3e05e --- /dev/null +++ b/www-apps/trac-acct_mgr/trac-acct_mgr-0.2.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2009 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 $ + +inherit distutils subversion + +ESVN_REPO_URI="http://trac-hacks.org/svn/accountmanagerplugin/0.11" +DESCRIPTION="The AccountManagerPlugin offers several features for managing user accounts." +HOMEPAGE="http://trac-hacks.org/wiki/AccountManagerPlugin" +# SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="trac" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +SLOT="0" + +DEPEND="=www-apps/trac-0.11* + >=dev-python/setuptools-0.6_rc1" + +src_unpack() { + subversion_src_unpack + cd "${S}" +# epatch "${FILESDIR}/RegistrationConfirmationPatch.diff" +} + + +# from marienz's setuptools.eclass: +src_install() { + "${python}" setup.py install --root=${D} --no-compile \ + --single-version-externally-managed "$@" || die "install failed" +} + +src_test() { + "${python}" setup.py test || die "tests failed" +} + +pkg_postinst() { + elog "To enable the AccountManager plugin in your Trac environments, you have to add:" + elog " [components]" + elog " trac.web.auth.LoginModule = disabled" + elog " acct_mgr.web_ui.LoginModule = enabled" + elog " acct_mgr.web_ui.RegistrationModule = disabled" + elog "to your trac.ini files." + elog + elog "To be able to see the Admin tab, your users must have the TRAC_ADMIN permission" + elog "and/or the TICKET_ADMIN permission." +}