* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-24 21:27 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 10+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-08-24 21:27 UTC (permalink / raw
To: gentoo-commits
arfrever 09/08/24 21:27:25
Modified: ChangeLog
Added: buildbot-0.7.11_p3.ebuild
Log:
Version bump.
(Portage version: 14153-svn/cvs/Linux x86_64)
Revision Changes Path
1.43 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.42&r2=1.43
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog 17 Jun 2009 20:10:33 -0000 1.42
+++ ChangeLog 24 Aug 2009 21:27:25 -0000 1.43
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.42 2009/06/17 20:10:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.43 2009/08/24 21:27:25 arfrever Exp $
+
+*buildbot-0.7.11_p3 (24 Aug 2009)
+
+ 24 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +buildbot-0.7.11_p3.ebuild:
+ Version bump.
17 Jun 2009; Jeroen Roovers <jer@gentoo.org> buildbot-0.7.10_p1.ebuild:
Stable for HPPA (bug #270122).
1.1 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.1&content-type=text/plain
Index: buildbot-0.7.11_p3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.1 2009/08/24 21:27:25 arfrever Exp $
EAPI=1
NEED_PYTHON="2.4"
MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"
inherit distutils
DESCRIPTION="A Python system to automate the compile/test cycle to validate code changes"
HOMEPAGE="http://buildbot.net/"
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"
CDEPEND=">=dev-python/twisted-2.0.1"
RDEPEND="${CDEPEND}
mail? ( dev-python/twisted-mail )
manhole? ( dev-python/twisted-conch )
irc? ( dev-python/twisted-words )
dev-python/twisted-web
dev-python/twisted-mail"
DEPEND="${CDEPEND}
test? ( dev-python/twisted-mail
dev-python/twisted-web
dev-python/twisted-words )
doc? ( =dev-python/epydoc-2* )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
enewuser buildbot
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.7.5-root-skip-tests.patch"
}
src_compile() {
distutils_src_compile
if use doc; then
PYTHONPATH=. "${python}" docs/epyrun -o docs/reference || \
die "epyrun failed"
fi
}
src_test() {
local trialopts
if ! has_version ">=dev-python/twisted-2.2"; then
trialopts=-R
fi
PYTHONPATH=. trial ${trialopts} buildbot || die "tests failed!"
}
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
use doc && doins -r docs/reference
newconfd "${FILESDIR}/buildslave.confd" buildslave
newinitd "${FILESDIR}/buildbot.initd-r1" buildslave
newconfd "${FILESDIR}/buildmaster.confd" buildmaster
newinitd "${FILESDIR}/buildbot.initd-r1" buildmaster
# Make it print the right names when you start/stop the script.
sed -i -e 's/@buildbot@/buildslave/' \
"${D}/etc/init.d/buildslave" || die "buildslave sed failed"
sed -i -e 's/@buildbot@/buildmaster/' \
"${D}/etc/init.d/buildmaster" || die "buildmaster sed failed"
}
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] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-28 9:15 Christian Faulhammer (fauli)
0 siblings, 0 replies; 10+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-08-28 9:15 UTC (permalink / raw
To: gentoo-commits
fauli 09/08/28 09:15:00
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
stable x86, security bug 282855
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.44 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 24 Aug 2009 21:27:25 -0000 1.43
+++ ChangeLog 28 Aug 2009 09:15:00 -0000 1.44
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.43 2009/08/24 21:27:25 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.44 2009/08/28 09:15:00 fauli Exp $
+
+ 28 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
+ buildbot-0.7.11_p3.ebuild:
+ stable x86, security bug 282855
*buildbot-0.7.11_p3 (24 Aug 2009)
1.2 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.1&r2=1.2
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-0.7.11_p3.ebuild 24 Aug 2009 21:27:25 -0000 1.1
+++ buildbot-0.7.11_p3.ebuild 28 Aug 2009 09:15:00 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.1 2009/08/24 21:27:25 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.2 2009/08/28 09:15:00 fauli Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-28 12:11 Tobias Klausmann (klausman)
0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-08-28 12:11 UTC (permalink / raw
To: gentoo-commits
klausman 09/08/28 12:11:42
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
Stable on alpha, bug #282855
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.45 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 28 Aug 2009 09:15:00 -0000 1.44
+++ ChangeLog 28 Aug 2009 12:11:42 -0000 1.45
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.44 2009/08/28 09:15:00 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.45 2009/08/28 12:11:42 klausman Exp $
+
+ 28 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
+ buildbot-0.7.11_p3.ebuild:
+ Stable on alpha, bug #282855
28 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
buildbot-0.7.11_p3.ebuild:
1.3 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.2&r2=1.3
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- buildbot-0.7.11_p3.ebuild 28 Aug 2009 09:15:00 -0000 1.2
+++ buildbot-0.7.11_p3.ebuild 28 Aug 2009 12:11:42 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.2 2009/08/28 09:15:00 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.3 2009/08/28 12:11:42 klausman Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-29 12:30 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2009-08-29 12:30 UTC (permalink / raw
To: gentoo-commits
jer 09/08/29 12:30:52
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
Stable for HPPA (bug #282855).
(Portage version: 2.2_rc40/cvs/Linux i686)
Revision Changes Path
1.46 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 28 Aug 2009 12:11:42 -0000 1.45
+++ ChangeLog 29 Aug 2009 12:30:52 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.45 2009/08/28 12:11:42 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.46 2009/08/29 12:30:52 jer Exp $
+
+ 29 Aug 2009; Jeroen Roovers <jer@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ Stable for HPPA (bug #282855).
28 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
buildbot-0.7.11_p3.ebuild:
1.4 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.3&r2=1.4
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- buildbot-0.7.11_p3.ebuild 28 Aug 2009 12:11:42 -0000 1.3
+++ buildbot-0.7.11_p3.ebuild 29 Aug 2009 12:30:52 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.3 2009/08/28 12:11:42 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.4 2009/08/29 12:30:52 jer Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-30 16:26 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 10+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-08-30 16:26 UTC (permalink / raw
To: gentoo-commits
nixnut 09/08/30 16:26:55
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
ppc stable #282855
(Portage version: 2.1.6.13/cvs/Linux ppc)
Revision Changes Path
1.47 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 29 Aug 2009 12:30:52 -0000 1.46
+++ ChangeLog 30 Aug 2009 16:26:55 -0000 1.47
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.46 2009/08/29 12:30:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.47 2009/08/30 16:26:55 nixnut Exp $
+
+ 30 Aug 2009; nixnut <nixnut@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ ppc stable #282855
29 Aug 2009; Jeroen Roovers <jer@gentoo.org> buildbot-0.7.11_p3.ebuild:
Stable for HPPA (bug #282855).
1.5 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.4&r2=1.5
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- buildbot-0.7.11_p3.ebuild 29 Aug 2009 12:30:52 -0000 1.4
+++ buildbot-0.7.11_p3.ebuild 30 Aug 2009 16:26:55 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.4 2009/08/29 12:30:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.5 2009/08/30 16:26:55 nixnut Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-08-30 23:44 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2009-08-30 23:44 UTC (permalink / raw
To: gentoo-commits
ranger 09/08/30 23:44:31
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
Marking buildbot-0.7.11_p3 ppc64 for bug 282855
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.48 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 30 Aug 2009 16:26:55 -0000 1.47
+++ ChangeLog 30 Aug 2009 23:44:31 -0000 1.48
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.47 2009/08/30 16:26:55 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.48 2009/08/30 23:44:31 ranger Exp $
+
+ 30 Aug 2009; Brent Baude <ranger@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ Marking buildbot-0.7.11_p3 ppc64 for bug 282855
30 Aug 2009; nixnut <nixnut@gentoo.org> buildbot-0.7.11_p3.ebuild:
ppc stable #282855
1.6 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.5&r2=1.6
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- buildbot-0.7.11_p3.ebuild 30 Aug 2009 16:26:55 -0000 1.5
+++ buildbot-0.7.11_p3.ebuild 30 Aug 2009 23:44:31 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.5 2009/08/30 16:26:55 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.6 2009/08/30 23:44:31 ranger Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-09-05 14:29 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-09-05 14:29 UTC (permalink / raw
To: gentoo-commits
armin76 09/09/05 14:29:07
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
arm/ia64/s390/sh/sparc stable wrt #282855
(Portage version: 2.1.6.13/cvs/Linux ia64)
Revision Changes Path
1.49 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 30 Aug 2009 23:44:31 -0000 1.48
+++ ChangeLog 5 Sep 2009 14:29:06 -0000 1.49
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.48 2009/08/30 23:44:31 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.49 2009/09/05 14:29:06 armin76 Exp $
+
+ 05 Sep 2009; Raúl Porcel <armin76@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ arm/ia64/s390/sh/sparc stable wrt #282855
30 Aug 2009; Brent Baude <ranger@gentoo.org> buildbot-0.7.11_p3.ebuild:
Marking buildbot-0.7.11_p3 ppc64 for bug 282855
1.7 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.6&r2=1.7
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- buildbot-0.7.11_p3.ebuild 30 Aug 2009 23:44:31 -0000 1.6
+++ buildbot-0.7.11_p3.ebuild 5 Sep 2009 14:29:06 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.6 2009/08/30 23:44:31 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.7 2009/09/05 14:29:06 armin76 Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2009-09-11 19:31 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2009-09-11 19:31 UTC (permalink / raw
To: gentoo-commits
maekke 09/09/11 19:31:32
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
amd64 stable, bug #282855
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Revision Changes Path
1.50 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 5 Sep 2009 14:29:06 -0000 1.49
+++ ChangeLog 11 Sep 2009 19:31:31 -0000 1.50
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.49 2009/09/05 14:29:06 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.50 2009/09/11 19:31:31 maekke Exp $
+
+ 11 Sep 2009; Markus Meier <maekke@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ amd64 stable, bug #282855
05 Sep 2009; Raúl Porcel <armin76@gentoo.org> buildbot-0.7.11_p3.ebuild:
arm/ia64/s390/sh/sparc stable wrt #282855
1.8 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.7&r2=1.8
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- buildbot-0.7.11_p3.ebuild 5 Sep 2009 14:29:06 -0000 1.7
+++ buildbot-0.7.11_p3.ebuild 11 Sep 2009 19:31:31 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.7 2009/09/05 14:29:06 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.8 2009/09/11 19:31:31 maekke Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -15,7 +15,7 @@
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"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
IUSE="doc irc mail manhole test"
CDEPEND=">=dev-python/twisted-2.0.1"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2010-02-08 8:58 Peter Volkov (pva)
0 siblings, 0 replies; 10+ messages in thread
From: Peter Volkov (pva) @ 2010-02-08 8:58 UTC (permalink / raw
To: gentoo-commits
pva 10/02/08 08:58:26
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
Add inherit eutils for epatch and enewuser.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Revision Changes Path
1.53 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 14 Dec 2009 08:29:26 -0000 1.52
+++ ChangeLog 8 Feb 2010 08:58:25 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/buildbot
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.52 2009/12/14 08:29:26 djc Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.53 2010/02/08 08:58:25 pva Exp $
+
+ 08 Feb 2010; Peter Volkov <pva@gentoo.org> buildbot-0.7.11_p3.ebuild:
+ Add inherit eutils for epatch and enewuser.
14 Dec 2009; Dirkjan Ochtman <djc@gentoo.org> metadata.xml:
Add upstream developer to metadata.
1.9 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.8&r2=1.9
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- buildbot-0.7.11_p3.ebuild 11 Sep 2009 19:31:31 -0000 1.8
+++ buildbot-0.7.11_p3.ebuild 8 Feb 2010 08:58:25 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# 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.7.11_p3.ebuild,v 1.8 2009/09/11 19:31:31 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.9 2010/02/08 08:58:25 pva Exp $
EAPI=1
NEED_PYTHON="2.4"
@@ -8,7 +8,7 @@
MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"
-inherit distutils
+inherit eutils distutils
DESCRIPTION="A Python system to automate the compile/test cycle to validate code changes"
HOMEPAGE="http://buildbot.net/"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild
@ 2010-07-06 19:18 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 10+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-07-06 19:18 UTC (permalink / raw
To: gentoo-commits
arfrever 10/07/06 19:18:12
Modified: ChangeLog buildbot-0.7.11_p3.ebuild
Log:
Use PYTHON_DEPEND instead of NEED_PYTHON.
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.62 dev-util/buildbot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.61&r2=1.62
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog 28 Jun 2010 09:02:55 -0000 1.61
+++ ChangeLog 6 Jul 2010 19:18:12 -0000 1.62
@@ -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.61 2010/06/28 09:02:55 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.62 2010/07/06 19:18:12 arfrever Exp $
+
+ 06 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ buildbot-0.7.11_p3.ebuild:
+ Use PYTHON_DEPEND instead of NEED_PYTHON.
28 Jun 2010; Christoph Mende <angelos@gentoo.org> buildbot-0.8.0.ebuild:
Stable on amd64 wrt bug #325899
1.10 dev-util/buildbot/buildbot-0.7.11_p3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild?r1=1.9&r2=1.10
Index: buildbot-0.7.11_p3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- buildbot-0.7.11_p3.ebuild 8 Feb 2010 08:58:25 -0000 1.9
+++ buildbot-0.7.11_p3.ebuild 6 Jul 2010 19:18:12 -0000 1.10
@@ -1,14 +1,14 @@
# 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.7.11_p3.ebuild,v 1.9 2010/02/08 08:58:25 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.7.11_p3.ebuild,v 1.10 2010/07/06 19:18:12 arfrever Exp $
-EAPI=1
-NEED_PYTHON="2.4"
+EAPI="3"
+PYTHON_DEPEND="2"
MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"
-inherit eutils distutils
+inherit distutils eutils
DESCRIPTION="A Python system to automate the compile/test cycle to validate code changes"
HOMEPAGE="http://buildbot.net/"
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2010-07-06 19:18 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-08 8:58 [gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.7.11_p3.ebuild Peter Volkov (pva)
-- strict thread matches above, loose matches on Subject: below --
2010-07-06 19:18 Arfrever Frehtes Taifersar Arahesis (arfrever)
2009-09-11 19:31 Markus Meier (maekke)
2009-09-05 14:29 Raul Porcel (armin76)
2009-08-30 23:44 Brent Baude (ranger)
2009-08-30 16:26 Gysbert Wassenaar (nixnut)
2009-08-29 12:30 Jeroen Roovers (jer)
2009-08-28 12:11 Tobias Klausmann (klausman)
2009-08-28 9:15 Christian Faulhammer (fauli)
2009-08-24 21:27 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