From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 26BCA13832E for ; Tue, 9 Aug 2016 23:52:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A0E9E0B80; Tue, 9 Aug 2016 23:52:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B667AE0B82 for ; Tue, 9 Aug 2016 23:52:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BCDEE340BDA for ; Tue, 9 Aug 2016 23:52:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 842DB245B for ; Tue, 9 Aug 2016 23:52:19 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1470786441.8fa079ffedfd8cfece7a5cb14075537ae2278af9.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-www/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/buildbot-www/Manifest dev-util/buildbot-www/buildbot-www-0.9.0_rc1.ebuild dev-util/buildbot-www/metadata.xml X-VCS-Directories: dev-util/buildbot-www/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8fa079ffedfd8cfece7a5cb14075537ae2278af9 X-VCS-Branch: master Date: Tue, 9 Aug 2016 23:52:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 922e6dde-cd98-44c7-abcb-d8eeb7beeae6 X-Archives-Hash: 360d4f8cdd5ef8535d3776ea6d032660 commit: 8fa079ffedfd8cfece7a5cb14075537ae2278af9 Author: Brian Dolbec gentoo org> AuthorDate: Tue Aug 9 21:32:40 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Aug 9 23:47:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fa079ff dev-util/buildbot-www: New buildbot-0.9 base web interface pkg This is the base package for the web interface plugins. Package-Manager: portage-2.3.0 dev-util/buildbot-www/Manifest | 1 + .../buildbot-www/buildbot-www-0.9.0_rc1.ebuild | 45 ++++++++++++++++++++++ dev-util/buildbot-www/metadata.xml | 22 +++++++++++ 3 files changed, 68 insertions(+) diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest new file mode 100644 index 0000000..4f9e569 --- /dev/null +++ b/dev-util/buildbot-www/Manifest @@ -0,0 +1 @@ +DIST buildbot-www-0.9.0rc1.tar.gz 687202 SHA256 1bd29a1587bb836faf725f03ce31ff990a03ddf20d4024887016d17cc8e4e38c SHA512 82be17b617d763a657286095d4dc53d0a52c31e34320e9c024b2e1e071092f6769532c4a8adc4ee026c9a7637763e37a0aee4b9365073999a68abf7d7151136c WHIRLPOOL 0464a6b1ccf7272ab459f2bcf9400e9ce5b2723d71e4cd3c5f9c9ab2b077470fc5dd9513e97ba9785d80c1952263b788fd8e138eb299e26ed3027fe8c5b9098d diff --git a/dev-util/buildbot-www/buildbot-www-0.9.0_rc1.ebuild b/dev-util/buildbot-www/buildbot-www-0.9.0_rc1.ebuild new file mode 100644 index 0000000..e92547f --- /dev/null +++ b/dev-util/buildbot-www/buildbot-www-0.9.0_rc1.ebuild @@ -0,0 +1,45 @@ +# 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 base web interface, use with buildbot-{console-view,waterfall-view}..." +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="" + +DEPEND="${RDEPEND} + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}] + =dev-util/buildbot-${PV}[${PYTHON_USEDEP}] + =dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}] + dev-python/mock[${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-www/metadata.xml b/dev-util/buildbot-www/metadata.xml new file mode 100644 index 0000000..e4a3609 --- /dev/null +++ b/dev-util/buildbot-www/metadata.xml @@ -0,0 +1,22 @@ + + + + + hwoarang@gentoo.org + Markos Chandras + + + dolsen@gentoo.org + Brian Dolbec + + The BuildBot-www package is the base or common code used for the other user interface + packages such as the waterfall and console views. + + + + devel@buildbot.net + Developers List + + buildbot + +