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 4C99B1396D1 for ; Fri, 15 Sep 2017 17:41:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 812F9E0CCA; Fri, 15 Sep 2017 17:41:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D3AAE0CCA for ; Fri, 15 Sep 2017 17:41:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 024DC33BE3E for ; Fri, 15 Sep 2017 17:41:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BB569084 for ; Fri, 15 Sep 2017 17:41:26 +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: <1505497273.b53a80a43dbdcf3339e1487581a2fae90cf41d6f.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-grid-view/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/buildbot-grid-view/Manifest dev-util/buildbot-grid-view/buildbot-grid-view-0.9.11.ebuild dev-util/buildbot-grid-view/metadata.xml X-VCS-Directories: dev-util/buildbot-grid-view/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: b53a80a43dbdcf3339e1487581a2fae90cf41d6f X-VCS-Branch: master Date: Fri, 15 Sep 2017 17:41:26 +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: 3397aa6c-e510-4175-a0f1-40901b561928 X-Archives-Hash: d71dd2afa60764d5308327000e4fabb5 commit: b53a80a43dbdcf3339e1487581a2fae90cf41d6f Author: Brian Dolbec gentoo org> AuthorDate: Thu Sep 14 23:18:33 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Sep 15 17:41:13 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53a80a4 dev-util/buildbot-grid-view: New buildbot plugin module Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-util/buildbot-grid-view/Manifest | 1 + .../buildbot-grid-view-0.9.11.ebuild | 50 ++++++++++++++++++++++ dev-util/buildbot-grid-view/metadata.xml | 24 +++++++++++ 3 files changed, 75 insertions(+) diff --git a/dev-util/buildbot-grid-view/Manifest b/dev-util/buildbot-grid-view/Manifest new file mode 100644 index 00000000000..e10352fb5af --- /dev/null +++ b/dev-util/buildbot-grid-view/Manifest @@ -0,0 +1 @@ +DIST buildbot-grid-view-0.9.11.tar.gz 638818 SHA256 f93088ba6ac063c4bd7400b2477c94e86a7531fc614c3965c18914dcc701812b SHA512 4da052b284452557a1de080afd31064b8ae950f1a1fbe2f2418a130e1150b84fc25a119866ccc5889a38dfe94a5f1f8d3b4ff7f3f7dd6cdb485eea90adda3f2a WHIRLPOOL 1ccd86ff91d508ec06c2f21128e2f09889450c81efce2603d29348c449c4d4d2e82ad7c885c11c53abc001ae3d40100ef3de86f1fac7ea1b8099da2ef13c4444 diff --git a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.11.ebuild b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.11.ebuild new file mode 100644 index 00000000000..c52caef7509 --- /dev/null +++ b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.11.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +PYTHON_REQ_USE="sqlite" +PYTHON_COMPAT=( python2_7 python3_5 ) + +EGIT_REPO_URI="https://github.com/buildbot/buildbot.git" + +[[ ${PV} == *9999 ]] && inherit git-r3 +inherit distutils-r1 + +DESCRIPTION="BuildBot grid view web interface" +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.python.org/pypi/buildbot-grid-view" + +MY_PV="${PV/_p/.post}" +MY_P="${PN}-${MY_PV}" +[[ ${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 + +IUSE="test" + +RDEPEND="" + +DEPEND="${RDEPEND} + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}] + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}] + ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}] +" + +S="${WORKDIR}/${MY_P}" +#[[ ${PV} == *9999 ]] && S=${S}/www/base + +python_test() { + distutils_install_for_testing + + esetup.py test || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all +} diff --git a/dev-util/buildbot-grid-view/metadata.xml b/dev-util/buildbot-grid-view/metadata.xml new file mode 100644 index 00000000000..c5790cf414b --- /dev/null +++ b/dev-util/buildbot-grid-view/metadata.xml @@ -0,0 +1,24 @@ + + + + + dolsen@gentoo.org + Brian Dolbec + + + hwoarang@gentoo.org + Markos Chandras + + + The buildbot-grid-view plugin is the user interface code used to + display information about the builds. + + + + devel@buildbot.net + Developers List + + buildbot-grid-view + buildbot/buildbot + +