Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-slave/
Date: Thu, 10 Aug 2017 22:00:26
Message-Id: 1502402407.75d4eb370fd983b1a580230509e2696bbae19d9d.dolsen@gentoo
1 commit: 75d4eb370fd983b1a580230509e2696bbae19d9d
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 10 21:58:37 2017 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 10 22:00:07 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75d4eb37
7
8 dev-util/buildbot-slave: Drop oldest buildbot-slave release
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-util/buildbot-slave/Manifest | 1 -
13 .../buildbot-slave/buildbot-slave-0.8.10.ebuild | 53 ----------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-util/buildbot-slave/Manifest b/dev-util/buildbot-slave/Manifest
17 index 6557b0dbdc8..e48d8d08d04 100644
18 --- a/dev-util/buildbot-slave/Manifest
19 +++ b/dev-util/buildbot-slave/Manifest
20 @@ -1,2 +1 @@
21 -DIST buildbot-slave-0.8.10.tar.gz 117593 SHA256 ef5634249407bf643b666976158a4e11c7aaa3db3658ff0fcd781f460867f626 SHA512 0b05f8b9d6e6c29291893c47707409bc50681d2631ed1825908050f30cff34bf422d7f574076ea9c6b36a16b37e2e79ed28c9e84e31b3270bf6ec3aee426def4 WHIRLPOOL 52806ebd2e2c54bf844fb4752ded7ea314fd68cba229ea09039e0b83b1cdd373e40528d779ce5b3a188028932f3d443986f006bfb5555eaf141569ba3949297e
22 DIST buildbot-slave-0.8.12.tar.gz 118339 SHA256 905eab122dcfc9425d51f0ed0c7682e7f933e140a7203637aa12a84498bd7461 SHA512 74f7f9ffab946000a5d31ae28140698ca259ba5b75815ed839d51fa5d9f702e998b61a716b66aab7946b6143d329244f2403d9b98cbbfc70223b691dcb70f0bc WHIRLPOOL f0281c11520ff31291977fa67397c7398d8ecf7fe0e70a45521158e792862aa9bb6eb65591181a1a3d71913241768e65143a1b35d6316cb5f8b5bc5373d02979
23
24 diff --git a/dev-util/buildbot-slave/buildbot-slave-0.8.10.ebuild b/dev-util/buildbot-slave/buildbot-slave-0.8.10.ebuild
25 deleted file mode 100644
26 index 8bb290378b5..00000000000
27 --- a/dev-util/buildbot-slave/buildbot-slave-0.8.10.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="5"
34 -PYTHON_COMPAT=( python2_7 )
35 -inherit distutils-r1 readme.gentoo systemd user
36 -
37 -DESCRIPTION="BuildBot Slave Daemon"
38 -HOMEPAGE="http://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.python.org/pypi/buildbot-slave"
39 -
40 -MY_PV="${PV/_p/p}"
41 -MY_P="${PN}-${MY_PV}"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux"
47 -IUSE="test"
48 -
49 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - dev-python/twisted-core[${PYTHON_USEDEP}]"
51 -DEPEND="${RDEPEND}
52 - test? ( dev-python/mock[${PYTHON_USEDEP}] )"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -pkg_setup() {
57 - enewuser buildbot
58 -
59 - DOC_CONTENTS="The \"buildbot\" user and the \"buildslave\" init script has been added
60 - to support starting buildslave through Gentoo's init system. To use this,
61 - set up your build slave following the documentation, make sure the
62 - resulting directories are owned by the \"buildbot\" user and point
63 - \"${ROOT}etc/conf.d/buildslave\" at the right location. The scripts can
64 - run as a different user if desired. If you need to run more than one
65 - build slave, just copy the scripts."
66 -}
67 -
68 -src_install() {
69 - distutils-r1_src_install
70 -
71 - doman docs/buildslave.1
72 -
73 - newconfd "${FILESDIR}/buildslave.confd" buildslave
74 - newinitd "${FILESDIR}/buildslave.initd" buildslave
75 - systemd_dounit "${FILESDIR}/buildslave.service"
76 -
77 - readme.gentoo_create_doc
78 -}
79 -
80 -pkg_postinst() {
81 - readme.gentoo_print_elog
82 -}