www-apps/trac-iniadminplugin: initial checkin

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2418 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-09-18 06:03:02 +00:00
parent b1c4d84af4
commit 22bd3b46fc
4 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# ChangeLog for www-apps/trac-iniadminplugin
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
18 Sep 2010; Mario Fetka <mario.fetka@gmail.com>
+trac-iniadminplugin-0.2.ebuild, +metadata.xml:
initial checkin

View File

@ -0,0 +1,3 @@
EBUILD trac-iniadminplugin-0.2.ebuild 884 RMD160 9b2ff8f7cc8eb82defd8810bc3e9836b637ed7f0 SHA1 4881c140b7e2cef0d3c58efd0fc86886e712da09 SHA256 1a919f8467a298ab88c4278487d744897aed40c861ab78bccd378d1f5ad72a6a
MISC ChangeLog 249 RMD160 aa9e10530a11baed36deeb2c6c8c369638f9b82f SHA1 76ec443d90badae9401ca34232c82822cb43211e SHA256 886405db7015837291648681179f6c9bf125873643c9752bd18f1b8ce5ff6bf2
MISC metadata.xml 1238 RMD160 c82938e77f387291d6a1c3bf9b0d802f2878dd12 SHA1 b5738f14922c69e78cfb867acdc65eeea25977bf SHA256 2c13f98be5fa8bdaf21ac86bcd00bbeb8944df5615de0cfce35ae4c00ef4b4d5

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<!--
$Header: /var/cvsroot/gentoo-x86/skel.metadata.xml,v 1.18 2008/07/28 19:27:05 cardoe Exp $
This is the example metadata file.
The root element of this file is <pkgmetadata>. Within this element a
number of subelements are allowed: herd, maintainer, and
longdescription. herd is a required subelement.
For a full description look at:
http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=4
Before committing, please remove the comments from this file. They are
not relevant for general metadata.xml files.
-->
<pkgmetadata>
<herd>no-herd</herd>
<maintainer>
<email>@gentoo.org</email>
<!-- <description>Description of the maintainership</description> -->
</maintainer>
<!-- <longdescription>Long description of the package</longdescription> -->
<!--
<use>
<flag name='flag'>Description of how USE='flag' affects this package</flag>
<flag name='userland_GNU'>Description of how USERLAND='GNU' affects this
package</flag>
<flag name='aspell'>Uses <pkg>app-text/aspell</pkg> for spell checking.
Requires an installed dictionary from <cat>app-dicts</cat></flag>
</use>
-->
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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="http://trac-hacks.org/svn/iniadminplugin/0.11/"
DESCRIPTION="Edit all trac.ini options via the WebAdminPlugin"
HOMEPAGE="http://trac-hacks.org/wiki/IniAdminPlugin"
LICENSE="trac"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE=""
SLOT="0"
DEPEND="dev-python/setuptools"
RDEPEND=">=www-apps/trac-0.12"
pkg_postinst() {
distutils_pkg_postinst
elog "To enable the IniAdminPlugin in your Trac environments, you have to add:"
elog " [components]"
elog " iniadmin.iniadmin.iniadminplugin = enabled"
elog "to your trac.ini files."
}