Intial Commit

Package-Manager: portage-2.2.0_alpha166
RepoMan-Options: --force
This commit is contained in:
Mario Fetka 2013-04-23 21:13:22 +02:00
parent c0bf6b3a81
commit 4eb6010466
4 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# ChangeLog for www-apps/trac-navaddplugin
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
*trac-navaddplugin-0.1.1 (23 Apr 2013)
23 Apr 2013; Mario Fetka <mario.fetka@gmail.com> +metadata.xml,
+trac-navaddplugin-0.1.1.ebuild:
Intial Commit

View File

@ -0,0 +1,3 @@
EBUILD trac-navaddplugin-0.1.1.ebuild 1488 SHA256 0bd8376ba8d565e7774bde527bdcf24d17066b23f0b40ce8bc2be0bbfc3818bd SHA512 37ef92b70086408d4b06f7e96470ef06e0cce48e505899d0fd2ea7ad2249044f971658c9cb9c620c80b185d9e394c9b16472435776ab14d6861bb7478f4b493c WHIRLPOOL 60954b142f5a2d7b8b92b4fa158ce093420cc4b31f04f0bf5abb54dd144e6ca8f3eb2d2dff6aa02afce9442ee3722708dca05804dcafaf1c87d8a967f009ff48
MISC ChangeLog 284 SHA256 992f752c096118e4ddba0ec19a4e3f57ba0d09c3efc2cbe9e5ad4837b3288c69 SHA512 e28577711cc0fa7623725d69da6b35278ec0e90e1e5b0f620c86f053a6094580ec56425ab82c7cb907d01b6d7caf9286e01e9b1c6d494de37888464eddb4c646 WHIRLPOOL 90149fa96cc30866c5678c610264d69407766cc97e08197df91608bba774ae9488cf0cc3987b8484ddae689b8c5f85b50d139cd19aa391450d4b350bdab18d48
MISC metadata.xml 163 SHA256 cf8ddc5894ebfaa1831389e1667061160af950a7346b7aa94250c7eae1cf971b SHA512 3b576412fa4f31a3b396c7ebf7e92380617fb6e9cf823f428ce5a809809bd263e6e8ce615cfc4f8ba2fef31fe4aee323768c5f950bf7b8bf80408efb5b0d0856 WHIRLPOOL 325b3b2e15f3b7300d8ca14c7da6059e8c10c8ebbae190fb69683009f02a229b4af73769704baa03e4988bd9545e3e539662469ee8095a2ff810d27c80a47441

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>web-apps</herd>
</pkgmetadata>

View File

@ -0,0 +1,52 @@
# Copyright 1999-2013 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 git-2
#EGIT_PROJECT='bitcoin'
EGIT_REPO_URI="git://github.com/mitar/trac-navadd.git"
DESCRIPTION="This is a plugin which enables GIT to be used instead of Subversion."
HOMEPAGE="http://trac-hacks.org/wiki/GitPlugin"
LICENSE="trac"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE=""
SLOT="0"
DEPEND="dev-python/setuptools
app-arch/unzip"
RDEPEND=">=www-apps/trac-0.12
dev-vcs/git"
pkg_postinst() {
distutils_pkg_postinst
elog "To enable the GitPlugin plugin in your Trac environments, you have to add:"
elog " [components]"
elog " navaddsplugin.* = enabled"
elog ""
elog " [navadd]"
elog " add_items = imprint,download"
elog " imprint.title = Impressum/Imprint"
elog " imprint.url = /wiki/Impressum"
elog " #imprint.perm = WIKI_VIEW"
elog " imprint.target = metanav"
elog " download.title = Download"
elog " download.url = http://sourceforge.net/project/showfiles.php?group_id=82936&amp;package_id=85233"
elog " #download.perm = WIKI_VIEW"
elog " download.target = mainnav"
elog ""
elog " [trac]"
elog " ..."
elog " mainnav = wiki,download,timeline,roadmap,browser,tickets,newticket"
elog " ..."
elog ""
elog "to your trac.ini files."
}