www-apps/trac-gitplugin: cleanup

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2365 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-08-31 20:31:12 +00:00
parent 6bf24a378a
commit f017807268
6 changed files with 19 additions and 183 deletions

View File

@ -2,6 +2,12 @@
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
31 Aug 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, -trac-gitplugin-0.12.0.2.ebuild,
+trac-gitplugin-0.12.0.2-r1.ebuild:
cleanup
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
+trac-gitplugin-0.12.0.2.ebuild:
Bump to 0.12

View File

@ -1,6 +1,3 @@
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
EBUILD trac-gitplugin-0.12.0.2.ebuild 1823 RMD160 4264e5b9af49a8adf7fac9ef376b20e4a65d1bbf SHA1 3999ac2bf43a53242afd2300a7c58a4e5d802bf3 SHA256 8ac7b25f3b89d37521f5bdc679cf2c84f5079a3fbfd1ef45e4dfd100da350c22
MISC ChangeLog 736 RMD160 b1e1edd4350f556c1cb90c7bf8da4bf6682b2570 SHA1 2be0fe91831e4e452ea588a87b01fa8fd587ab25 SHA256 a7c91b1318f8b422f0242a20c2cf61b29c14d47a0548b585097c1588ead68cc8
EBUILD trac-gitplugin-0.12.0.2-r1.ebuild 1722 RMD160 43a68da60b9c0710436fbbdce7257a8fdc710c59 SHA1 78200fa6b325c2762b3d56d7245f578546d79548 SHA256 25de5182f24d9c7f666435fe46af90e6614cb65acdb94fd62ce037813fc3d168
MISC ChangeLog 975 RMD160 aa4ca098098bfeadc578654ea5a40285fb5adfc7 SHA1 45ebb7f46f52d3c7100b908f808a6a9dd58948bf SHA256 0248dd240d82899aa6b0018b5061387ba077f5c22eec78fffe068a3160cfa8db
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42

View File

@ -1,56 +0,0 @@
# 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.11/"
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.11*
>=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."
}

View File

@ -1,56 +0,0 @@
# 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.11/"
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."
}

View File

@ -1,56 +0,0 @@
# 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.11/"
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.11*
>=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."
}

View File

@ -2,12 +2,16 @@
# 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/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"
@ -15,17 +19,14 @@ IUSE=""
SLOT="0"
DEPEND="=www-apps/trac-0.12*
>=dev-python/setuptools-0.6_rc1"
DEPEND="dev-python/setuptools
app-arch/unzip"
RDEPEND=">=www-apps/trac-0.12
dev-vcs/git"
# 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"
distutils_src_install
rm -f "${D}"/usr/{README,COPYING}
}
pkg_postinst() {