www-apps/trac-downloadsplugin: cleanup

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2361 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-08-31 20:14:05 +00:00
parent 7cfed874d6
commit 7e78c5c426
4 changed files with 14 additions and 77 deletions

View File

@ -2,6 +2,11 @@
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
31 Aug 2010; Mario Fetka <mario.fetka@gmail.com>
-trac-downloadsplugin-0.2.ebuild, -trac-downloadsplugin-0.3.ebuild,
+trac-downloadsplugin-0.3-r1.ebuild:
cleanup
26 Feb 2010; Mario Fetka <mario.fetka@gmail.com>
trac-downloadsplugin-0.2.ebuild, trac-downloadsplugin-0.3.ebuild:
add arm keyword

View File

@ -1,4 +1,3 @@
EBUILD trac-downloadsplugin-0.2.ebuild 2333 RMD160 7fcd6f686ca659523e19aa5d4f4529ab0f108bc9 SHA1 42fdb735f0cfe8357f1bd26a468705909ff6c793 SHA256 cfc0b0bb06f1d80ac19a03bb8912fb7ed8c389b4429913e55f0bf529053a7881
EBUILD trac-downloadsplugin-0.3.ebuild 2333 RMD160 28d5a28cbb1413a0436c445f6dcf236117a55b97 SHA1 2753ee77efbfc468b9de6b81a0cfee656494ba3f SHA256 0af8f4069e7f2a48814e90d77410ab9f28eca2bd6be75395b1571201b5d755c5
MISC ChangeLog 555 RMD160 e70477e959c2adbc066edf895a96f4a762df9f84 SHA1 488c6370285f5a69aa018ae37de53cf4232bb65d SHA256 6bcf356cc293941629cc05df1d2c201bb37cb71293ba11a9eced9f3f33471da2
EBUILD trac-downloadsplugin-0.3-r1.ebuild 1827 RMD160 07746f8056ad0911cd44593e7f3da3acc4ec065a SHA1 3bcfca87399f3ff8db742517935acdd85b05cbe8 SHA256 4b552da04a11759b34c661a4835316efd505edba1062eeade6cb714a7b163e79
MISC ChangeLog 726 RMD160 013098857d864cb81feae5eccbaf02ea015de8d4 SHA1 e8a34f323321d5c9d202dd41bfc6c4b893343730 SHA256 1b3ede03d3360edb2c1d7b5a21faa6cdf90c1e88eeea10f18f6db06b8deb2adf
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42

View File

@ -1,57 +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/downloadsplugin/0.11/"
DESCRIPTION="This plugin provides downloads section which may contain releases or other files."
HOMEPAGE="http://trac-hacks.org/wiki/DownloadsPlugin"
# 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 " tracdownloads.api.DownloadsApi = enabled"
elog " tracdownloads.core.DownloadsCore = enabled"
elog " tracdownloads.init.DownloadsInit = enabled"
elog " tracdownloads.timeline.DownloadsTimeline = enabled"
elog " tracdownloads.wiki.DownloadsWiki = enabled"
elog " tracdownloads.admin.DownloadsWebAdmin = enabled # Branch 0.10 and 0.11."
elog " tracdownloads.webadmin.DownloadsWebAdmin = enabled # Branch 0.12 only."
elog " tracdownloads.consoleadmin.DownloadsConsoleAdmin = enabled # Branch 0.12 only."
elog " tracdownloads.core.DownloadsDownloads = enabled # Branch 0.12 only."
elog " tracdownloads.tags.DownloadsTags = enabled # With TagsPlugin installed."
elog " [downloads]"
elog " title = Downloads"
elog " path = /var/lib/trac/downloads"
elog " ext = zip gz bz2 rar # For 0.10 and 0.11 branch."
elog " ext = zip,gz,bz2,rar # For 0.12 branch."
elog " visible_fields = id file description size time count author tags component version \"
elog " architecture platform type # For 0.10 and 0.11 branch."
elog " visible_fields = id,file,description,size,time,count,author,tags,component,version, \"
elog " architecture,platform,type # For 0.12 branch."
elog " unique_filename = False"
elog " consoleadmin_user = anonymous # Branch 0.12 only."
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/downloadsplugin/0.12/"
DESCRIPTION="This plugin provides downloads section which may contain releases or other files."
HOMEPAGE="http://trac-hacks.org/wiki/DownloadsPlugin"
# SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="trac"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
@ -15,18 +19,8 @@ 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"
}
DEPEND="dev-python/setuptools"
RDEPEND=">=www-apps/trac-0.12"
pkg_postinst() {
elog "To enable the GitPlugin plugin in your Trac environments, you have to add:"
@ -36,7 +30,6 @@ pkg_postinst() {
elog " tracdownloads.init.DownloadsInit = enabled"
elog " tracdownloads.timeline.DownloadsTimeline = enabled"
elog " tracdownloads.wiki.DownloadsWiki = enabled"
elog " tracdownloads.admin.DownloadsWebAdmin = enabled # Branch 0.10 and 0.11."
elog " tracdownloads.webadmin.DownloadsWebAdmin = enabled # Branch 0.12 only."
elog " tracdownloads.consoleadmin.DownloadsConsoleAdmin = enabled # Branch 0.12 only."
elog " tracdownloads.core.DownloadsDownloads = enabled # Branch 0.12 only."
@ -44,10 +37,7 @@ pkg_postinst() {
elog " [downloads]"
elog " title = Downloads"
elog " path = /var/lib/trac/downloads"
elog " ext = zip gz bz2 rar # For 0.10 and 0.11 branch."
elog " ext = zip,gz,bz2,rar # For 0.12 branch."
elog " visible_fields = id file description size time count author tags component version \"
elog " architecture platform type # For 0.10 and 0.11 branch."
elog " visible_fields = id,file,description,size,time,count,author,tags,component,version, \"
elog " architecture,platform,type # For 0.12 branch."
elog " unique_filename = False"