www-apps/trac-gitplugin: Bump to 0.12

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2337 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-08-31 09:36:17 +00:00
parent 794eac45e3
commit 551b91aea8
3 changed files with 62 additions and 1 deletions

View File

@ -2,6 +2,10 @@
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
+trac-gitplugin-0.12.0.2.ebuild:
Bump to 0.12
26 Feb 2010; Mario Fetka <mario.fetka@gmail.com>
trac-gitplugin-0.11.0.1.ebuild, trac-gitplugin-0.11.0.2.ebuild,
trac-gitplugin-0.11.0.2-r1.ebuild:

View File

@ -1,5 +1,6 @@
EBUILD trac-gitplugin-0.11.0.1.ebuild 1823 RMD160 1cbc058181ead7e3e426a63bde078a98e8fb3a67 SHA1 9dbfb2e857b6667af2ee82265f966dc37e39e8ec SHA256 c6a3db307adda57b1b58f080ece95c6419793536d8d37b0591bc0ddf35e52168
EBUILD trac-gitplugin-0.11.0.2-r1.ebuild 1823 RMD160 406ecb1c414de9652cf578df26d2738f8cb872e8 SHA1 ea1a4646c74c7932f6327fab1eadfde6c077e9fb SHA256 425b2d3a75b5e48a8ff40d86838af2300551c8fb7dd3da2d3a461a61bd2303c0
EBUILD trac-gitplugin-0.11.0.2.ebuild 1823 RMD160 1cbc058181ead7e3e426a63bde078a98e8fb3a67 SHA1 9dbfb2e857b6667af2ee82265f966dc37e39e8ec SHA256 c6a3db307adda57b1b58f080ece95c6419793536d8d37b0591bc0ddf35e52168
MISC ChangeLog 634 RMD160 cba3040cac107a27fbbe1c543118f99c38e7f589 SHA1 7d74b006d8056910aaeffe7b97dc3e07d2559a69 SHA256 96291d0de1b8c57f782a631dc7b1ec9ffd80ce5cd0df2af80495580cba46adcc
EBUILD trac-gitplugin-0.12.0.2.ebuild 1823 RMD160 4264e5b9af49a8adf7fac9ef376b20e4a65d1bbf SHA1 3999ac2bf43a53242afd2300a7c58a4e5d802bf3 SHA256 8ac7b25f3b89d37521f5bdc679cf2c84f5079a3fbfd1ef45e4dfd100da350c22
MISC ChangeLog 736 RMD160 b1e1edd4350f556c1cb90c7bf8da4bf6682b2570 SHA1 2be0fe91831e4e452ea588a87b01fa8fd587ab25 SHA256 a7c91b1318f8b422f0242a20c2cf61b29c14d47a0548b585097c1588ead68cc8
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42

View File

@ -0,0 +1,56 @@
# 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 $
inherit distutils subversion
ESVN_REPO_URI="http://trac-hacks.org/svn/gitplugin/0.12/"
DESCRIPTION="This is a plugin which enables GIT to be used instead of Subversion."
HOMEPAGE="http://trac-hacks.org/wiki/GitPlugin"
# SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="trac"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE=""
SLOT="0"
DEPEND="=www-apps/trac-0.12*
>=dev-python/setuptools-0.6_rc1"
# 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 GitPlugin plugin in your Trac environments, you have to add:"
elog " [components]"
elog " # for plugin version 0.11.0.1+"
elog " tracext.git.* = enabled"
elog ""
elog " [trac]"
elog " repository_dir = /var/git/Test.git"
elog " repository_type = git"
elog ""
elog " ## the following is only for the 0.11 branch"
elog " [git]"
elog " ## let Trac cache meta-data via CachedRepository wrapper; default: false"
elog " cached_repository = true"
elog ""
elog " ## disable automatic garbage collection for in-memory commit-tree cache; default: false"
elog " persistent_cache = true"
elog ""
elog " ## length revision sha-sums should be tried to be abbreviated to (must be >= 4 and <= 40); default: 7"
elog " shortrev_len = 6"
elog ""
elog " ## executable file name (optionally with path) of git binary; default: 'git'"
elog " git_bin = /usr/src/git-dev/git"
elog ""
elog "to your trac.ini files."
}