diff options
author | 2016-08-09 14:44:53 -0700 | |
---|---|---|
committer | 2016-08-09 16:47:21 -0700 | |
commit | b8ef96c5e53a12a9c9da71d0326391763f109977 (patch) | |
tree | 2e1bbd858a125d63c4d40b64cef746d642300b92 /dev-util/buildbot-waterfall-view | |
parent | dev-util/buildbot-console-view: New buildbot-0.9 interface plugin (diff) | |
download | gentoo-b8ef96c5e53a12a9c9da71d0326391763f109977.tar.gz gentoo-b8ef96c5e53a12a9c9da71d0326391763f109977.tar.bz2 gentoo-b8ef96c5e53a12a9c9da71d0326391763f109977.zip |
dev-util/buildbot-waterfall-view: New buildbot-0.9 waterfall-view plugin
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-util/buildbot-waterfall-view')
-rw-r--r-- | dev-util/buildbot-waterfall-view/Manifest | 1 | ||||
-rw-r--r-- | dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_rc1.ebuild | 46 | ||||
-rw-r--r-- | dev-util/buildbot-waterfall-view/metadata.xml | 22 |
3 files changed, 69 insertions, 0 deletions
diff --git a/dev-util/buildbot-waterfall-view/Manifest b/dev-util/buildbot-waterfall-view/Manifest new file mode 100644 index 000000000000..8d84a1858142 --- /dev/null +++ b/dev-util/buildbot-waterfall-view/Manifest @@ -0,0 +1 @@ +DIST buildbot-waterfall-view-0.9.0rc1.tar.gz 701353 SHA256 8822f75ceac242d00dc10cdc381864e460b936532a1618bf47ce9b353a63814a SHA512 3829faf9da4fb8a2137affbafc0fc4e08e3bfd229a861089e1140e715348305896235dfeb44df93b4b8da3273f261b1d98e02073d4b822c99c4eec7736824def WHIRLPOOL e616ab438b5d64a63ee33cf47475bb35869c27e9b277797ef99a246f72a95339eb8145afed1b18f412d2212be0292c6bae63f4741a7f1611d95529f67d8cae98 diff --git a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_rc1.ebuild b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_rc1.ebuild new file mode 100644 index 000000000000..648f02e16954 --- /dev/null +++ b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_rc1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_REQ_USE="sqlite" +PYTHON_COMPAT=( python2_7 ) + +EGIT_REPO_URI="git://github.com/buildbot/buildbot.git" + +[[ ${PV} == *9999 ]] && inherit git-r3 +inherit distutils-r1 + +DESCRIPTION="Buildbot waterfall-view plugin" +HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot http://pypi.python.org/pypi/buildbot" + +MY_PV="${PV/_p/p}" +MY_V="0.9.0rc1" +MY_P="${PN}-${MY_V}" +[[ ${PV} == *9999 ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +if [[ ${PV} == *9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64" +fi + +RDEPEND=" + =dev-util/buildbot-${PV}[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + =dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND} + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}] +" + +S="${WORKDIR}/${MY_P}" +#[[ ${PV} == *9999 ]] && S=${S}/www/base + +python_install_all() { + distutils-r1_python_install_all +} diff --git a/dev-util/buildbot-waterfall-view/metadata.xml b/dev-util/buildbot-waterfall-view/metadata.xml new file mode 100644 index 000000000000..508d23a3c0c9 --- /dev/null +++ b/dev-util/buildbot-waterfall-view/metadata.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>hwoarang@gentoo.org</email> + <name>Markos Chandras</name> + </maintainer> + <maintainer type="person"> + <email>dolsen@gentoo.org</email> + <name>Brian Dolbec</name> + </maintainer> + <longdescription lang="en">The buildbot-waterfall-view plugin is the user interface code used to generate + the web pages used to display information about the builds. + </longdescription> + <upstream> + <maintainer> + <email>devel@buildbot.net</email> + <name>Developers List</name> + </maintainer> + <remote-id type="pypi">buildbot</remote-id> + </upstream> +</pkgmetadata> |