Make buildbot_slave and python_zope.interface arch-specific.

* To prevent problems with the 'any' packages being shared between
  different architectures (while those use varying versions of python),
  make them arch-specific.
* Additionally, move buildbot_slave from dev-python to dev-util (as
  it is not related to python development).
This commit is contained in:
Oliver Tappe
2014-06-25 23:25:56 +02:00
parent eb644e9299
commit 22c10b29d2
3 changed files with 4 additions and 4 deletions

View File

@@ -1,67 +0,0 @@
SUMMARY="Python-based continuous integration testing framework."
DESCRIPTION="
Buildbot is a continuous integration system designed to automate the \
build/test cycle. By automatically rebuilding and testing the tree each time \
something has changed, build problems are pinpointed quickly, before other \
developers are inconvenienced by the failure. Features
* Buildbot is easy to set up, but very extensible and customizable. It \
supports arbitrary build processes, and is not limited to common build \
processes for particular languages (e.g., autotools or ant)
* Buildbot supports building and testing on a variety of platforms. \
Developers, who do not have the facilities to test their changes everywhere \
before committing, will know shortly afterwards whether they have broken the \
build or not.
* Buildbot has minimal requirements for slaves: using virtualenv, only a \
Python installation is required.
* Slaves can be run behind a NAT firewall and communicate with the master
* Buildbot has a variety of status-reporting tools to get information about \
builds in front of developers in a timely manner.
This package contains the slave implementation, i.e. the part that is \
executing builds and/or tests.
"
HOMEPAGE="http://www.buildbot.net"
SRC_URI="https://buildbot.googlecode.com/files/buildbot-slave-0.8.8.tar.gz"
CHECKSUM_SHA256="8b7532d4d34527aea41e353d1bc3c35291ec335d3224c27800d2cc0cfc9837cc"
PATCHES="buildbot_slave-0.8.8.patchset"
LICENSE="GNU GPL v2"
COPYRIGHT="2005-2013 Bryan Warner and the Buildbot team members"
REVISION="1"
ARCHITECTURES="any"
SOURCE_DIR="buildbot-slave-$portVersion"
PROVIDES="
buildbot_slave = $portVersion
cmd:buildslave = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
cmd:python
python_twisted
"
BUILD_REQUIRES=""
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:python
"
BUILD()
{
$portPackageLinksDir/cmd~python/bin/python setup.py build
}
INSTALL()
{
$portPackageLinksDir/cmd~python/bin/python setup.py install \
--prefix=$prefix
}

View File

@@ -1,22 +0,0 @@
From 339c07d8cef40e19d98a915ecc06929c097865fc Mon Sep 17 00:00:00 2001
From: Jessica Hamilton <jessica.l.hamilton@gmail.com>
Date: Fri, 20 Jun 2014 04:58:54 +0000
Subject: logwatcher.py: fix path to tail on Haiku
diff --git a/buildslave/scripts/logwatcher.py b/buildslave/scripts/logwatcher.py
index ff3e119..fb20aba 100644
--- a/buildslave/scripts/logwatcher.py
+++ b/buildslave/scripts/logwatcher.py
@@ -62,7 +62,7 @@ class LogWatcher(LineOnlyReceiver):
# been seen within 10 seconds, and with ReconfigError if the error
# line was seen. If the logfile could not be opened, it errbacks with
# an IOError.
- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail",
+ self.p = reactor.spawnProcess(self.pp, "/bin/tail",
("tail", "-f", "-n", "0", self.logfile),
env=os.environ,
)
--
1.8.3.4

View File

@@ -12,9 +12,9 @@ SRC_URI="https://pypi.python.org/packages/source/z/zope.interface/zope.interface
CHECKSUM_SHA256="91cba7b7cd7cb82f6f4e023fe77f94dc3df4ae5287fd55def2148dc232d0c7da"
LICENSE="ZPL 2.1"
COPYRIGHT="2004-2014 Zope Foundation and Contributors"
REVISION="1"
REVISION="2"
ARCHITECTURES="any"
ARCHITECTURES="x86 x86_gcc2 x86_64"
SOURCE_DIR="zope.interface-$portVersion"