From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1362197-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E62215808A for <garchives@archives.gentoo.org>; Fri, 28 Jan 2022 11:16:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D1F92BC06D; Fri, 28 Jan 2022 11:16:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F4262BC028 for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jan 2022 11:16:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AEA77342DA9 for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jan 2022 11:16:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB0282B0 for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jan 2022 11:16:35 +0000 (UTC) From: "Arthur Zamarin" <arthurzam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" <arthurzam@gentoo.org> Message-ID: <1643368582.9d3523e2156d65be56e1f1a9e7ad176482722e4f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-worker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/buildbot-worker/buildbot-worker-9999.ebuild X-VCS-Directories: dev-util/buildbot-worker/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 9d3523e2156d65be56e1f1a9e7ad176482722e4f X-VCS-Branch: master Date: Fri, 28 Jan 2022 11:16:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 24c9bb51-173e-476b-b154-f1d1e5263725 X-Archives-Hash: 361a1827f687b5e9327a2bbf0c8303ad commit: 9d3523e2156d65be56e1f1a9e7ad176482722e4f Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Fri Jan 28 11:08:38 2022 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Jan 28 11:16:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3523e2 dev-util/buildbot-worker: update live version Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> .../buildbot-worker/buildbot-worker-9999.ebuild | 46 +++++++++------------- 1 file changed, 19 insertions(+), 27 deletions(-) diff --git a/dev-util/buildbot-worker/buildbot-worker-9999.ebuild b/dev-util/buildbot-worker/buildbot-worker-9999.ebuild index 605f3460526d..18ee776e0e52 100644 --- a/dev-util/buildbot-worker/buildbot-worker-9999.ebuild +++ b/dev-util/buildbot-worker/buildbot-worker-9999.ebuild @@ -1,26 +1,20 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" -PYTHON_COMPAT=( python3_{7,8,9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) EGIT_REPO_URI="https://github.com/buildbot/buildbot.git" - -DISTUTILS_USE_SETUPTOOLS="rdepend" - -inherit git-r3 -inherit readme.gentoo-r1 distutils-r1 +inherit readme.gentoo-r1 git-r3 distutils-r1 DESCRIPTION="BuildBot Worker (slave) Daemon" -HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.org/project/buildbot-worker/" - -MY_V="${PV/_p/.post}" -MY_P="${PN}-${MY_V}" +HOMEPAGE="https://buildbot.net/ + https://github.com/buildbot/buildbot + https://pypi.org/project/buildbot-worker/" +S="${S}/worker" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" - IUSE="test" RESTRICT="!test? ( test )" @@ -30,27 +24,25 @@ RDEPEND=" dev-python/future[${PYTHON_USEDEP}] !<dev-util/buildbot-1.0.0 " -DEPEND="${RDEPEND} +BDEPEND=" test? ( + ${RDEPEND} dev-python/mock[${PYTHON_USEDEP}] - dev-python/setuptools_trial[${PYTHON_USEDEP}] ) " -S="${S}/worker" +DOC_CONTENTS="The \"buildbot\" user and the \"buildbot_worker\" init script has been added +to support starting buildbot_worker through Gentoo's init system. To use this, +execute \"emerge --config =${CATEGORY}/${PF}\" to create a new instance. +Set up your build worker following the documentation, make sure the +resulting directories are owned by the \"buildbot\" user and point +\"${ROOT}/etc/conf.d/buildbot_worker.myinstance\" at the right location. +The scripts can run as a different user if desired." -pkg_setup() { - DOC_CONTENTS="The \"buildbot\" user and the \"buildbot_worker\" init script has been added - to support starting buildbot_worker through Gentoo's init system. To use this, - execute \"emerge --config =${CATEGORY}/${PF}\" to create a new instance. - Set up your build worker following the documentation, make sure the - resulting directories are owned by the \"buildbot\" user and point - \"${ROOT}/etc/conf.d/buildbot_worker.myinstance\" at the right location. - The scripts can run as a different user if desired." +python_test() { + "${EPYTHON}" -m twisted.trial buildbot_worker || die "Tests failed with ${EPYTHON}" } -distutils_enable_tests setup.py - python_install_all() { distutils-r1_python_install_all