* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-10-05 19:28 Dirkjan Ochtman (djc)
0 siblings, 0 replies; 7+ messages in thread
From: Dirkjan Ochtman (djc) @ 2010-10-05 19:28 UTC (permalink / raw
To: gentoo-commits
djc 10/10/05 19:28:10
Modified: ChangeLog
Added: buildbot-0.8.0_p1.ebuild
Log:
Version bump 0.8.0p1 for bug 339863.
(Portage version: 2.1.9.13/cvs/Linux x86_64)
Revision Changes Path
1.68 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.67&r2=1.68
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog 10 Sep 2010 14:06:05 -0000 1.67
+++ ChangeLog 5 Oct 2010 19:28:10 -0000 1.68
@@ -1,6 +1,11 @@
# 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.67 2010/09/10 14:06:05 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.68 2010/10/05 19:28:10 djc Exp $
+
+*buildbot-0.8.0_p1 (05 Oct 2010)
+
+ 05 Oct 2010; Dirkjan Ochtman <djc@gentoo.org> +buildbot-0.8.0_p1.ebuild:
+ Version bump 0.8.0p1 for bug 339863.
10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> buildbot-0.8.0.ebuild:
Stable on alpha, bug #325899
1.1 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.1&content-type=text/plain
Index: buildbot-0.8.0_p1.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_p1.ebuild,v 1.1 2010/10/05 19:28:10 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
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"
# 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
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 )"
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 # not in 0.8.0p1
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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-08 17:23 Christian Faulhammer (fauli)
0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-11-08 17:23 UTC (permalink / raw
To: gentoo-commits
fauli 10/11/08 17:23:28
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
stable x86, security bug 339863
(Portage version: 2.1.8.3/cvs/Linux i686, RepoMan options: --force)
Revision Changes Path
1.70 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.69&r2=1.70
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog 8 Nov 2010 12:40:04 -0000 1.69
+++ ChangeLog 8 Nov 2010 17:23:28 -0000 1.70
@@ -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.69 2010/11/08 12:40:04 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.70 2010/11/08 17:23:28 fauli Exp $
+
+ 08 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
+ buildbot-0.8.0_p1.ebuild:
+ stable x86, security bug 339863
*buildbot-0.8.2 (08 Nov 2010)
1.2 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.1&r2=1.2
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-0.8.0_p1.ebuild 5 Oct 2010 19:28:10 -0000 1.1
+++ buildbot-0.8.0_p1.ebuild 8 Nov 2010 17:23:28 -0000 1.2
@@ -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_p1.ebuild,v 1.1 2010/10/05 19:28:10 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.2 2010/11/08 17:23:28 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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-08 19:32 Markos Chandras (hwoarang)
0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-08 19:32 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/11/08 19:32:57
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
Stable on amd64 wrt bug #339863
(Portage version: 2.1.9.24/cvs/Linux x86_64, RepoMan options: --force)
Revision Changes Path
1.71 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.70&r2=1.71
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog 8 Nov 2010 17:23:28 -0000 1.70
+++ ChangeLog 8 Nov 2010 19:32:57 -0000 1.71
@@ -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.70 2010/11/08 17:23:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.71 2010/11/08 19:32:57 hwoarang Exp $
+
+ 08 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
+ buildbot-0.8.0_p1.ebuild:
+ Stable on amd64 wrt bug #339863
08 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
buildbot-0.8.0_p1.ebuild:
1.3 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.2&r2=1.3
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- buildbot-0.8.0_p1.ebuild 8 Nov 2010 17:23:28 -0000 1.2
+++ buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:32:57 -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_p1.ebuild,v 1.2 2010/11/08 17:23:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.3 2010/11/08 19:32:57 hwoarang 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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-08 19:45 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-08 19:45 UTC (permalink / raw
To: gentoo-commits
jer 10/11/08 19:45:27
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
Stable for HPPA (bug #339863).
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.72 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.71&r2=1.72
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog 8 Nov 2010 19:32:57 -0000 1.71
+++ ChangeLog 8 Nov 2010 19:45:27 -0000 1.72
@@ -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.71 2010/11/08 19:32:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.72 2010/11/08 19:45:27 jer Exp $
+
+ 08 Nov 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0_p1.ebuild:
+ Stable for HPPA (bug #339863).
08 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
buildbot-0.8.0_p1.ebuild:
1.4 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.3&r2=1.4
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:32:57 -0000 1.3
+++ buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:45:27 -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_p1.ebuild,v 1.3 2010/11/08 19:32:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.4 2010/11/08 19:45:27 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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-08 19:46 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-08 19:46 UTC (permalink / raw
To: gentoo-commits
jer 10/11/08 19:46:32
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
Stable for PPC (bug #339863).
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.73 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 8 Nov 2010 19:45:27 -0000 1.72
+++ ChangeLog 8 Nov 2010 19:46:32 -0000 1.73
@@ -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.72 2010/11/08 19:45:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.73 2010/11/08 19:46:32 jer Exp $
+
+ 08 Nov 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0_p1.ebuild:
+ Stable for PPC (bug #339863).
08 Nov 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0_p1.ebuild:
Stable for HPPA (bug #339863).
1.5 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.4&r2=1.5
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:45:27 -0000 1.4
+++ buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:46:32 -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_p1.ebuild,v 1.4 2010/11/08 19:45:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.5 2010/11/08 19:46:32 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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-10 12:55 Markus Meier (maekke)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2010-11-10 12:55 UTC (permalink / raw
To: gentoo-commits
maekke 10/11/10 12:55:48
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
arm stable, bug #339863
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.74 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.73&r2=1.74
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog 8 Nov 2010 19:46:32 -0000 1.73
+++ ChangeLog 10 Nov 2010 12:55:48 -0000 1.74
@@ -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.73 2010/11/08 19:46:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.74 2010/11/10 12:55:48 maekke Exp $
+
+ 10 Nov 2010; Markus Meier <maekke@gentoo.org> buildbot-0.8.0_p1.ebuild:
+ arm stable, bug #339863
08 Nov 2010; Jeroen Roovers <jer@gentoo.org> buildbot-0.8.0_p1.ebuild:
Stable for PPC (bug #339863).
1.6 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.5&r2=1.6
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- buildbot-0.8.0_p1.ebuild 8 Nov 2010 19:46:32 -0000 1.5
+++ buildbot-0.8.0_p1.ebuild 10 Nov 2010 12:55:48 -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_p1.ebuild,v 1.5 2010/11/08 19:46:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.6 2010/11/10 12:55:48 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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild
@ 2010-11-14 16:34 Raul Porcel (armin76)
0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-11-14 16:34 UTC (permalink / raw
To: gentoo-commits
armin76 10/11/14 16:34:49
Modified: ChangeLog buildbot-0.8.0_p1.ebuild
Log:
alpha/ia64/s390/sh/sparc stable wrt #339863
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.75 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 10 Nov 2010 12:55:48 -0000 1.74
+++ ChangeLog 14 Nov 2010 16:34:49 -0000 1.75
@@ -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.74 2010/11/10 12:55:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.75 2010/11/14 16:34:49 armin76 Exp $
+
+ 14 Nov 2010; Raúl Porcel <armin76@gentoo.org> buildbot-0.8.0_p1.ebuild:
+ alpha/ia64/s390/sh/sparc stable wrt #339863
10 Nov 2010; Markus Meier <maekke@gentoo.org> buildbot-0.8.0_p1.ebuild:
arm stable, bug #339863
1.7 dev-util/buildbot/buildbot-0.8.0_p1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild?r1=1.6&r2=1.7
Index: buildbot-0.8.0_p1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- buildbot-0.8.0_p1.ebuild 10 Nov 2010 12:55:48 -0000 1.6
+++ buildbot-0.8.0_p1.ebuild 14 Nov 2010 16:34:49 -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_p1.ebuild,v 1.6 2010/11/10 12:55:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.0_p1.ebuild,v 1.7 2010/11/14 16:34:49 armin76 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] 7+ messages in thread
end of thread, other threads:[~2010-11-14 16:34 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-08 17:23 [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.0_p1.ebuild Christian Faulhammer (fauli)
-- strict thread matches above, loose matches on Subject: below --
2010-11-14 16:34 Raul Porcel (armin76)
2010-11-10 12:55 Markus Meier (maekke)
2010-11-08 19:46 Jeroen Roovers (jer)
2010-11-08 19:45 Jeroen Roovers (jer)
2010-11-08 19:32 Markos Chandras (hwoarang)
2010-10-05 19:28 Dirkjan Ochtman (djc)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox