Intial Commit
Package-Manager: portage-2.2.0_alpha166 RepoMan-Options: --force
This commit is contained in:
parent
e6b1862cbb
commit
c0bf6b3a81
9
www-apps/trac-staticdocsplugin/ChangeLog
Normal file
9
www-apps/trac-staticdocsplugin/ChangeLog
Normal file
@ -0,0 +1,9 @@
|
||||
# ChangeLog for www-apps/trac-staticdocsplugin
|
||||
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: $
|
||||
|
||||
*trac-staticdocsplugin-0.1 (23 Apr 2013)
|
||||
|
||||
23 Apr 2013; Mario Fetka <mario.fetka@gmail.com> +metadata.xml,
|
||||
+trac-staticdocsplugin-0.1.ebuild:
|
||||
Intial Commit
|
3
www-apps/trac-staticdocsplugin/Manifest
Normal file
3
www-apps/trac-staticdocsplugin/Manifest
Normal file
@ -0,0 +1,3 @@
|
||||
EBUILD trac-staticdocsplugin-0.1.ebuild 1482 SHA256 f2976362a7e82078969100ed04a455b5b81d9df108aa29afa43115e9a596f28e SHA512 4f23fbc0ec3efee81c8f8c1f1b74a2733fbc248a51068bd2463f126ade8daa6c93b4c5421983566bfb7b3aa8ac6d1a7461ab2fa0266e85dc1f1fbc6e54fcf6d7 WHIRLPOOL 78d81e1f0780e8320d6a32037ae2f2b6e52fc818ba3391ebcf3331c4a4325f11a2633c4081b40d401a2be494914d07c8f7451462676a8b1602ec3a43e4cc46ec
|
||||
MISC ChangeLog 292 SHA256 e21f99ae70ab28327701d7d1a2b2b71eebac0ef5087930304641ac75c686f94a SHA512 ff25856e3ade4660448ddd18cef375d2936872d630cc9e33b5fe5db81646f1f6ae4fbba5b4229610a736f4710bea2e12d87f28c4eee1ec4e2f137e8bdae3843c WHIRLPOOL a72f53730e6af54430df86d8a1fa86594b37d4b03aac1a9ae53bd78917ccfdac934e752b708c909e0c2e0dab910f946d5a1881bed800f87685d2b0f777009e17
|
||||
MISC metadata.xml 163 SHA256 cf8ddc5894ebfaa1831389e1667061160af950a7346b7aa94250c7eae1cf971b SHA512 3b576412fa4f31a3b396c7ebf7e92380617fb6e9cf823f428ce5a809809bd263e6e8ce615cfc4f8ba2fef31fe4aee323768c5f950bf7b8bf80408efb5b0d0856 WHIRLPOOL 325b3b2e15f3b7300d8ca14c7da6059e8c10c8ebbae190fb69683009f02a229b4af73769704baa03e4988bd9545e3e539662469ee8095a2ff810d27c80a47441
|
6
www-apps/trac-staticdocsplugin/metadata.xml
Normal file
6
www-apps/trac-staticdocsplugin/metadata.xml
Normal 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>
|
||||
|
@ -0,0 +1,50 @@
|
||||
# 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/dairiki/staticdocs-plugin.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 " staticdocsplugin.* = enabled"
|
||||
elog ""
|
||||
elog " [staticdocs]"
|
||||
elog " "
|
||||
elog " # (Optional) Set the required permission for viewing static docs"
|
||||
elog " # The default is WIKI_VIEW"
|
||||
elog " permission = WIKI_VIEW"
|
||||
elog " "
|
||||
elog " # Set up some aliases (you need at least one alias for this plugin"
|
||||
elog " # to be worthwhile.)"
|
||||
elog " alias./docs/ = /path/to/docs/"
|
||||
elog " alias./docs/other/ = /path/to/other/docs/"
|
||||
elog " "
|
||||
elog " # (Optional) Override the required permission for a specific alias"
|
||||
elog " permission./docs/other/ = TICKET_VIEW"
|
||||
elog ""
|
||||
elog "to your trac.ini files."
|
||||
}
|
Loading…
Reference in New Issue
Block a user