public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Pacho Ramos (pacho)" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
Date: Fri, 15 Feb 2013 20:34:54 +0000 (UTC)	[thread overview]
Message-ID: <20130215203454.D44F92171D@flycatcher.gentoo.org> (raw)

pacho       13/02/15 20:34:54

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Don't show elog messages always (#457596)
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.2                  dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?r1=1.1&r2=1.2

Index: buildbot-slave-0.8.7_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-slave-0.8.7_p1.ebuild	26 Jan 2013 15:50:31 -0000	1.1
+++ buildbot-slave-0.8.7_p1.ebuild	15 Feb 2013 20:34:54 -0000	1.2
@@ -1,15 +1,15 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.1 2013/01/26 15:50:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.2 2013/02/15 20:34:54 pacho Exp $
 
-EAPI="3"
+EAPI="5"
 PYTHON_DEPEND="2"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="3.* *-jython"
 DISTUTILS_SRC_TEST="trial buildslave"
 DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
 
-inherit distutils user
+inherit distutils readme.gentoo user
 
 DESCRIPTION="BuildBot Slave Daemon"
 HOMEPAGE="http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot-slave"
@@ -37,25 +37,28 @@
 pkg_setup() {
 	python_pkg_setup
 	enewuser buildbot
+
+	DOC_CONTENTS="The \"buildbot\" user and the \"buildslave\" init script has been added
+		to support starting buildslave through Gentoo's init system. To use this,
+		set up your build slave following the documentation, make sure the
+		resulting directories are owned by the \"buildbot\" user and point
+		\"${ROOT}etc/conf.d/buildslave\" at the right location.  The scripts can
+		run as a different user if desired. If you need to run more than one
+		build slave, just copy the scripts."
 }
 
 src_install() {
 	distutils_src_install
 
-	doman docs/buildslave.1 || die "doman failed"
+	doman docs/buildslave.1
+
+	newconfd "${FILESDIR}/buildslave.confd" buildslave
+	newinitd "${FILESDIR}/buildslave.initd" buildslave
 
-	newconfd "${FILESDIR}/buildslave.confd" buildslave || die "newconfd failed"
-	newinitd "${FILESDIR}/buildslave.initd" buildslave || die "newinitd failed"
+	readme.gentoo_create_doc
 }
 
 pkg_postinst() {
 	distutils_pkg_postinst
-
-	elog "The \"buildbot\" user and the \"buildslave\" init script has been added"
-	elog "to support starting buildslave through Gentoo's init system. To use this,"
-	elog "set up your build slave following the documentation, make sure the"
-	elog "resulting directories are owned by the \"buildbot\" user and point"
-	elog "\"${ROOT}etc/conf.d/buildslave\" at the right location.  The scripts can"
-	elog "run as a different user if desired. If you need to run more than one"
-	elog "build slave, just copy the scripts."
+	readme.gentoo_print_elog
 }



1.37                 dev-util/buildbot-slave/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	26 Jan 2013 15:50:31 -0000	1.36
+++ ChangeLog	15 Feb 2013 20:34:54 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot-slave
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.36 2013/01/26 15:50:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.37 2013/02/15 20:34:54 pacho Exp $
+
+  15 Feb 2013; Pacho Ramos <pacho@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Don't show elog messages always (#457596)
 
 *buildbot-slave-0.8.7_p1 (26 Jan 2013)
 





             reply	other threads:[~2013-02-15 20:34 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-15 20:34 Pacho Ramos (pacho) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-05-02 11:34 [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog Agostino Sarubbo (ago)
2013-05-03 13:29 Agostino Sarubbo (ago)
2013-05-05 14:11 Agostino Sarubbo (ago)
2013-05-05 17:29 Agostino Sarubbo (ago)
2013-05-07 13:36 Agostino Sarubbo (ago)
2013-05-07 13:53 Agostino Sarubbo (ago)
2013-05-07 17:49 Agostino Sarubbo (ago)
2013-05-08 13:42 Agostino Sarubbo (ago)
2013-05-14  9:38 Agostino Sarubbo (ago)
2013-05-20 17:55 Agostino Sarubbo (ago)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130215203454.D44F92171D@flycatcher.gentoo.org \
    --to=pacho@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox