public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-05-27 16:24 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 8+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-05-27 16:24 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/05/27 16:24:56

  Modified:             ChangeLog
  Added:                buildbot-0.8.0.ebuild
  Log:
  Version bump.
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	20 Feb 2010 18:48:48 -0000	1.55
+++ ChangeLog	27 May 2010 16:24:56 -0000	1.56
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.55 2010/02/20 18:48:48 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.56 2010/05/27 16:24:56 arfrever Exp $
+
+*buildbot-0.8.0 (27 May 2010)
+
+  27 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +buildbot-0.8.0.ebuild:
+  Version bump.
 
   20 Feb 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   buildbot-0.7.12.ebuild:



1.1                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.1&content-type=text/plain

Index: buildbot-0.8.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.1 2010/05/27 16:24:56 arfrever Exp $

EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="trial"
DISTUTILS_DISABLE_TEST_DEPENDENCY="1"

inherit distutils eutils

MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"

DESCRIPTION="A Python system to automate the compile/test cycle to validate code changes"
HOMEPAGE="http://buildbot.net/ http://pypi.python.org/pypi/buildbot"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="doc irc mail manhole test"

RDEPEND=">=dev-python/twisted-2.0.1
	mail? ( dev-python/twisted-mail )
	manhole? ( dev-python/twisted-conch )
	irc? ( dev-python/twisted-words )
	dev-python/twisted-web
	dev-python/twisted-mail"
DEPEND="${DEPEND}
	test? ( dev-python/twisted-mail
			dev-python/twisted-web
			dev-python/twisted-words )
	doc? ( dev-python/epydoc )"
RESTRICT_PYTHON_ABIS="3.*"

S="${WORKDIR}/${MY_P}"

pkg_setup() {
	enewuser buildbot
	python_pkg_setup
}

src_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		PYTHONPATH="." "$(PYTHON -f)" docs/epyrun -o docs/reference || die "Generation of documentation failed"
	fi
}

src_install() {
	distutils_src_install
	doinfo docs/buildbot.info
	dohtml -r docs/images

	insinto /usr/share/doc/${PF}
	doins -r contrib
	doins -r docs/examples

	if use doc; then
		doins -r docs/reference || die "doins failed"
	fi

	newconfd "${FILESDIR}/buildslave.confd" buildslave || die "newconfd failed"
	newinitd "${FILESDIR}/buildbot.initd-r1" buildslave || die "newinitd failed"
	newconfd "${FILESDIR}/buildmaster.confd" buildmaster || die "newconfd failed"
	newinitd "${FILESDIR}/buildbot.initd-r1" buildmaster || die "newinitd failed"

	# Make it print the right names when you start/stop the script.
	sed -e "s/@buildbot@/buildslave/" -i "${ED}etc/init.d/buildslave" || die "sed buildslave failed"
	sed -e "s/@buildbot@/buildmaster/" -i "${ED}etc/init.d/buildmaster" || die "sed buildmaster failed"
}

pkg_postinst() {
	distutils_pkg_postinst

	elog 'The "buildbot" user and the "buildmaster" and "buildslave" init'
	elog "scripts were added to support starting buildbot through gentoo's"
	elog "init system.  To use this set up your build master or build slave"
	elog "following the buildbot documentation, make sure the resulting"
	elog 'directories are owned by the "buildbot" user and point'
	elog "${ROOT}etc/conf.d/buildmaster or ${ROOT}etc/conf.d/buildslave"
	elog "at the right location.  The scripts can run as a different user"
	elog "if desired.  If you need to run more than one master or slave"
	elog "just copy the scripts."
	elog ""
	elog "Upstream recommends the following when upgrading:"
	elog "Each time you install a new version of Buildbot, you should run the new"
	elog "'buildbot upgrade-master' command on each of your pre-existing buildmasters."
	elog "This will add files and fix (or at least detect) incompatibilities between"
	elog "your old config and the new code."
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-06-08 21:41 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 8+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-06-08 21:41 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/06/08 21:41:33

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  Fix dependencies (bug #323189).
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.59                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	3 Jun 2010 16:32:18 -0000	1.58
+++ ChangeLog	8 Jun 2010 21:41:32 -0000	1.59
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.58 2010/06/03 16:32:18 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.59 2010/06/08 21:41:32 arfrever Exp $
+
+  08 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  buildbot-0.8.0.ebuild:
+  Fix dependencies (bug #323189).
 
   03 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   buildbot-0.7.12.ebuild:



1.2                  dev-util/buildbot/buildbot-0.8.0.ebuild

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

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-0.8.0.ebuild	27 May 2010 16:24:56 -0000	1.1
+++ buildbot-0.8.0.ebuild	8 Jun 2010 21:41:32 -0000	1.2
@@ -1,10 +1,11 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.1 2010/05/27 16:24:56 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.2 2010/06/08 21:41:32 arfrever Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
 SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
 DISTUTILS_SRC_TEST="trial"
 DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
 
@@ -22,18 +23,20 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="doc irc mail manhole test"
 
-RDEPEND=">=dev-python/twisted-2.0.1
-	mail? ( dev-python/twisted-mail )
-	manhole? ( dev-python/twisted-conch )
-	irc? ( dev-python/twisted-words )
+# sqlite3 module of Python 2.5 is not supported.
+RDEPEND="dev-python/jinja
+	|| ( dev-python/pysqlite:2 >=dev-lang/python-2.6[sqlite] )
+	>=dev-python/twisted-2.0.1
 	dev-python/twisted-web
-	dev-python/twisted-mail"
+	dev-python/twisted-mail
+	irc? ( dev-python/twisted-words )
+	mail? ( dev-python/twisted-mail )
+	manhole? ( dev-python/twisted-conch )"
 DEPEND="${DEPEND}
+	doc? ( dev-python/epydoc )
 	test? ( dev-python/twisted-mail
 			dev-python/twisted-web
-			dev-python/twisted-words )
-	doc? ( dev-python/epydoc )"
-RESTRICT_PYTHON_ABIS="3.*"
+			dev-python/twisted-words )"
 
 S="${WORKDIR}/${MY_P}"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-06-28  9:02 Christoph Mende (angelos)
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Mende (angelos) @ 2010-06-28  9:02 UTC (permalink / raw
  To: gentoo-commits

angelos     10/06/28 09:02:55

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  Stable on amd64 wrt bug #325899
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	19 Jun 2010 18:50:57 -0000	1.60
+++ ChangeLog	28 Jun 2010 09:02:55 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.60 2010/06/19 18:50:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.61 2010/06/28 09:02:55 angelos Exp $
+
+  28 Jun 2010; Christoph Mende <angelos@gentoo.org> buildbot-0.8.0.ebuild:
+  Stable on amd64 wrt bug #325899
 
   19 Jun 2010; Raúl Porcel <armin76@gentoo.org> buildbot-0.7.12.ebuild:
   alpha/arm/ia64/s390/sh/sparc stable wrt #321601



1.3                  dev-util/buildbot/buildbot-0.8.0.ebuild

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

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- buildbot-0.8.0.ebuild	8 Jun 2010 21:41:32 -0000	1.2
+++ buildbot-0.8.0.ebuild	28 Jun 2010 09:02:55 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.2 2010/06/08 21:41:32 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.3 2010/06/28 09:02:55 angelos Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-07-08 23:58 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-08 23:58 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/08 23:58:06

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  Stable for HPPA (bug #325899).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.63                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	6 Jul 2010 19:18:12 -0000	1.62
+++ ChangeLog	8 Jul 2010 23:58:05 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.62 2010/07/06 19:18:12 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.63 2010/07/08 23:58:05 jer Exp $
+
+  08 Jul 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0.ebuild:
+  Stable for HPPA (bug #325899).
 
   06 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   buildbot-0.7.11_p3.ebuild:



1.4                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?r1=1.3&r2=1.4

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildbot-0.8.0.ebuild	28 Jun 2010 09:02:55 -0000	1.3
+++ buildbot-0.8.0.ebuild	8 Jul 2010 23:58:05 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.3 2010/06/28 09:02:55 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.4 2010/07/08 23:58:05 jer Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-07-09  0:43 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-09  0:43 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/09 00:43:40

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  Stable for PPC (bug #325899).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.64                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	8 Jul 2010 23:58:05 -0000	1.63
+++ ChangeLog	9 Jul 2010 00:43:40 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.63 2010/07/08 23:58:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.64 2010/07/09 00:43:40 jer Exp $
+
+  09 Jul 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0.ebuild:
+  Stable for PPC (bug #325899).
 
   08 Jul 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0.ebuild:
   Stable for HPPA (bug #325899).



1.5                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?r1=1.4&r2=1.5

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- buildbot-0.8.0.ebuild	8 Jul 2010 23:58:05 -0000	1.4
+++ buildbot-0.8.0.ebuild	9 Jul 2010 00:43:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.4 2010/07/08 23:58:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.5 2010/07/09 00:43:40 jer Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-07-15  9:58 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 8+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-15  9:58 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/15 09:58:59

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  stable x86, bug 325899
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.65                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	9 Jul 2010 00:43:40 -0000	1.64
+++ ChangeLog	15 Jul 2010 09:58:59 -0000	1.65
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.64 2010/07/09 00:43:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.65 2010/07/15 09:58:59 fauli Exp $
+
+  15 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
+  buildbot-0.8.0.ebuild:
+  stable x86, bug 325899
 
   09 Jul 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0.ebuild:
   Stable for PPC (bug #325899).



1.6                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?r1=1.5&r2=1.6

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- buildbot-0.8.0.ebuild	9 Jul 2010 00:43:40 -0000	1.5
+++ buildbot-0.8.0.ebuild	15 Jul 2010 09:58:59 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.5 2010/07/09 00:43:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.6 2010/07/15 09:58:59 fauli Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-07-24 14:52 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2010-07-24 14:52 UTC (permalink / raw
  To: gentoo-commits

maekke      10/07/24 14:52:04

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  arm stable, bug #325899
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.66                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	15 Jul 2010 09:58:59 -0000	1.65
+++ ChangeLog	24 Jul 2010 14:52:04 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.65 2010/07/15 09:58:59 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.66 2010/07/24 14:52:04 maekke Exp $
+
+  24 Jul 2010; Markus Meier <maekke@gentoo.org> buildbot-0.8.0.ebuild:
+  arm stable, bug #325899
 
   15 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
   buildbot-0.8.0.ebuild:



1.7                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?r1=1.6&r2=1.7

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- buildbot-0.8.0.ebuild	15 Jul 2010 09:58:59 -0000	1.6
+++ buildbot-0.8.0.ebuild	24 Jul 2010 14:52:04 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.6 2010/07/15 09:58:59 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.7 2010/07/24 14:52:04 maekke Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild
@ 2010-09-10 14:06 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-09-10 14:06 UTC (permalink / raw
  To: gentoo-commits

klausman    10/09/10 14:06:05

  Modified:             ChangeLog buildbot-0.8.0.ebuild
  Log:
  Stable on alpha, bug #325899
  
  (Portage version: 2.1.9.2/cvs/Linux x86_64)

Revision  Changes    Path
1.67                 dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	24 Jul 2010 14:52:04 -0000	1.66
+++ ChangeLog	10 Sep 2010 14:06:05 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.66 2010/07/24 14:52:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.67 2010/09/10 14:06:05 klausman Exp $
+
+  10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> buildbot-0.8.0.ebuild:
+  Stable on alpha, bug #325899
 
   24 Jul 2010; Markus Meier <maekke@gentoo.org> buildbot-0.8.0.ebuild:
   arm stable, bug #325899



1.8                  dev-util/buildbot/buildbot-0.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild?r1=1.7&r2=1.8

Index: buildbot-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- buildbot-0.8.0.ebuild	24 Jul 2010 14:52:04 -0000	1.7
+++ buildbot-0.8.0.ebuild	10 Sep 2010 14:06:05 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.7 2010/07/24 14:52:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0.ebuild,v 1.8 2010/09/10 14:06:05 klausman Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="doc irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






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

end of thread, other threads:[~2010-09-10 14:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-10 14:06 [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0.ebuild Tobias Klausmann (klausman)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-24 14:52 Markus Meier (maekke)
2010-07-15  9:58 Christian Faulhammer (fauli)
2010-07-09  0:43 Jeroen Roovers (jer)
2010-07-08 23:58 Jeroen Roovers (jer)
2010-06-28  9:02 Christoph Mende (angelos)
2010-06-08 21:41 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-05-27 16:24 Arfrever Frehtes Taifersar Arahesis (arfrever)

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