public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-02-15 20:34 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2013-02-15 20:34 UTC (permalink / raw
  To: gentoo-commits

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)
 





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-02 11:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-02 11:34 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/02 11:34:37

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #468148
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  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.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.3&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.2&r2=1.3

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.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- buildbot-slave-0.8.7_p1.ebuild	15 Feb 2013 20:34:54 -0000	1.2
+++ buildbot-slave-0.8.7_p1.ebuild	2 May 2013 11:34:37 -0000	1.3
@@ -1,6 +1,6 @@
 # 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.2 2013/02/15 20:34:54 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.3 2013/05/02 11:34:37 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.38                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	15 Feb 2013 20:34:54 -0000	1.37
+++ ChangeLog	2 May 2013 11:34:37 -0000	1.38
@@ -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.37 2013/02/15 20:34:54 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.38 2013/05/02 11:34:37 ago Exp $
+
+  02 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for amd64, wrt bug #468148
 
   15 Feb 2013; Pacho Ramos <pacho@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Don't show elog messages always (#457596)





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-03 13:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-03 13:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/03 13:29:17

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #468148
  
  (Portage version: 2.1.11.62/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  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.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.4&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.3&r2=1.4

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.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildbot-slave-0.8.7_p1.ebuild	2 May 2013 11:34:37 -0000	1.3
+++ buildbot-slave-0.8.7_p1.ebuild	3 May 2013 13:29:17 -0000	1.4
@@ -1,6 +1,6 @@
 # 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.3 2013/05/02 11:34:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.4 2013/05/03 13:29:17 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.39                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	2 May 2013 11:34:37 -0000	1.38
+++ ChangeLog	3 May 2013 13:29:17 -0000	1.39
@@ -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.38 2013/05/02 11:34:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.39 2013/05/03 13:29:17 ago Exp $
+
+  03 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for ppc, wrt bug #468148
 
   02 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for amd64, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-05 14:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-05 14:11 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/05 14:11:58

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  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.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.6&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.5&r2=1.6

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.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- buildbot-slave-0.8.7_p1.ebuild	5 May 2013 13:25:55 -0000	1.5
+++ buildbot-slave-0.8.7_p1.ebuild	5 May 2013 14:11:58 -0000	1.6
@@ -1,6 +1,6 @@
 # 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.5 2013/05/05 13:25:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.6 2013/05/05 14:11:58 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.41                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	5 May 2013 13:25:55 -0000	1.40
+++ ChangeLog	5 May 2013 14:11:58 -0000	1.41
@@ -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.40 2013/05/05 13:25:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.41 2013/05/05 14:11:58 ago Exp $
+
+  05 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for arm, wrt bug #468148
 
   05 May 2013; Jeroen Roovers <jer@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for HPPA (bug #468148).





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-05 17:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-05 17:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/05 17:29:59

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  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.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.7&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.6&r2=1.7

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.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- buildbot-slave-0.8.7_p1.ebuild	5 May 2013 14:11:58 -0000	1.6
+++ buildbot-slave-0.8.7_p1.ebuild	5 May 2013 17:29:59 -0000	1.7
@@ -1,6 +1,6 @@
 # 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.6 2013/05/05 14:11:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.7 2013/05/05 17:29:59 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.42                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	5 May 2013 14:11:58 -0000	1.41
+++ ChangeLog	5 May 2013 17:29:59 -0000	1.42
@@ -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.41 2013/05/05 14:11:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.42 2013/05/05 17:29:59 ago Exp $
+
+  05 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for alpha, wrt bug #468148
 
   05 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for arm, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-07 13:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:36:24

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  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.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.8&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.7&r2=1.8

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.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- buildbot-slave-0.8.7_p1.ebuild	5 May 2013 17:29:59 -0000	1.7
+++ buildbot-slave-0.8.7_p1.ebuild	7 May 2013 13:36:24 -0000	1.8
@@ -1,6 +1,6 @@
 # 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.7 2013/05/05 17:29:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.8 2013/05/07 13:36:24 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.43                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	5 May 2013 17:29:59 -0000	1.42
+++ ChangeLog	7 May 2013 13:36:24 -0000	1.43
@@ -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.42 2013/05/05 17:29:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.43 2013/05/07 13:36:24 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for ia64, wrt bug #468148
 
   05 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for alpha, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-07 13:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:53 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:53:46

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  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.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.9&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.8&r2=1.9

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.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- buildbot-slave-0.8.7_p1.ebuild	7 May 2013 13:36:24 -0000	1.8
+++ buildbot-slave-0.8.7_p1.ebuild	7 May 2013 13:53:46 -0000	1.9
@@ -1,6 +1,6 @@
 # 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.8 2013/05/07 13:36:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.9 2013/05/07 13:53:46 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.44                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	7 May 2013 13:36:24 -0000	1.43
+++ ChangeLog	7 May 2013 13:53:46 -0000	1.44
@@ -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.43 2013/05/07 13:36:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.44 2013/05/07 13:53:46 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for sparc, wrt bug #468148
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for ia64, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-07 17:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 17:49 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 17:49:19

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 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.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.10&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.9&r2=1.10

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.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- buildbot-slave-0.8.7_p1.ebuild	7 May 2013 13:53:46 -0000	1.9
+++ buildbot-slave-0.8.7_p1.ebuild	7 May 2013 17:49:19 -0000	1.10
@@ -1,6 +1,6 @@
 # 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.9 2013/05/07 13:53:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.10 2013/05/07 17:49:19 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.45                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	7 May 2013 13:53:46 -0000	1.44
+++ ChangeLog	7 May 2013 17:49:19 -0000	1.45
@@ -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.44 2013/05/07 13:53:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.45 2013/05/07 17:49:19 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for ppc64, wrt bug #468148
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for sparc, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-08 13:42 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-08 13:42 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/08 13:42:53

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 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.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.11&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.10&r2=1.11

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.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- buildbot-slave-0.8.7_p1.ebuild	7 May 2013 17:49:19 -0000	1.10
+++ buildbot-slave-0.8.7_p1.ebuild	8 May 2013 13:42:53 -0000	1.11
@@ -1,6 +1,6 @@
 # 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.10 2013/05/07 17:49:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.11 2013/05/08 13:42:53 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sh sparc ~x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.46                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	7 May 2013 17:49:19 -0000	1.45
+++ ChangeLog	8 May 2013 13:42:53 -0000	1.46
@@ -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.45 2013/05/07 17:49:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.46 2013/05/08 13:42:53 ago Exp $
+
+  08 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for sh, wrt bug #468148
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for ppc64, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-14  9:38 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14  9:38 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 09:38:29

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 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.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.12&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.11&r2=1.12

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.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- buildbot-slave-0.8.7_p1.ebuild	8 May 2013 13:42:53 -0000	1.11
+++ buildbot-slave-0.8.7_p1.ebuild	14 May 2013 09:38:28 -0000	1.12
@@ -1,6 +1,6 @@
 # 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.11 2013/05/08 13:42:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.12 2013/05/14 09:38:28 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sh sparc ~x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sh sparc x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.47                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	8 May 2013 13:42:53 -0000	1.46
+++ ChangeLog	14 May 2013 09:38:28 -0000	1.47
@@ -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.46 2013/05/08 13:42:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.47 2013/05/14 09:38:28 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for x86, wrt bug #468148
 
   08 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for sh, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: buildbot-slave-0.8.7_p1.ebuild ChangeLog
@ 2013-05-20 17:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 17:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 17:55:01

  Modified:             buildbot-slave-0.8.7_p1.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #468148
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 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.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild?rev=1.13&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.12&r2=1.13

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.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- buildbot-slave-0.8.7_p1.ebuild	14 May 2013 09:38:28 -0000	1.12
+++ buildbot-slave-0.8.7_p1.ebuild	20 May 2013 17:55:01 -0000	1.13
@@ -1,6 +1,6 @@
 # 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.12 2013/05/14 09:38:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.7_p1.ebuild,v 1.13 2013/05/20 17:55:01 ago Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sh sparc x86 ~x86-interix ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools



1.48                 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	14 May 2013 09:38:28 -0000	1.47
+++ ChangeLog	20 May 2013 17:55:01 -0000	1.48
@@ -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.47 2013/05/14 09:38:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.48 2013/05/20 17:55:01 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
+  Stable for s390, wrt bug #468148
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> buildbot-slave-0.8.7_p1.ebuild:
   Stable for x86, wrt bug #468148





^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-05-20 17:55 UTC | newest]

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox