mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +02:00
Add recipe for buildbot_slave and all its dependencies.
* add buildbot_slave-0.8.8.recipe * add python_twisted-13.2.0.recipe * add python_zope.interface-4.1.1.recipe * add python_mock-1.0.1.recipe
This commit is contained in:
80
dev-python/twisted/python_twisted-13.2.0.recipe
Normal file
80
dev-python/twisted/python_twisted-13.2.0.recipe
Normal file
@@ -0,0 +1,80 @@
|
||||
SUMMARY="An event-driven networking engine written in Python"
|
||||
DESCRIPTION="
|
||||
Twisted is an event-based framework for internet applications. It includes \
|
||||
modules for many different purposes, including the following:
|
||||
|
||||
- twisted.application
|
||||
A "Service" system that allows you to organize your application in \
|
||||
hierarchies with well-defined startup and dependency semantics,
|
||||
|
||||
- twisted.cred
|
||||
A general credentials and authentication system that facilitates \
|
||||
pluggable authentication backends,
|
||||
|
||||
- twisted.enterprise
|
||||
Asynchronous database access, compatible with any Python DBAPI2.0 \
|
||||
modules,
|
||||
|
||||
- twisted.internet
|
||||
Low-level asynchronous networking APIs that allow you to define \
|
||||
your own protocols that run over certain transports,
|
||||
|
||||
- twisted.manhole
|
||||
A tool for remote debugging of your services which gives you a \
|
||||
Python interactive interpreter,
|
||||
|
||||
- twisted.protocols
|
||||
Basic protocol implementations and helpers for your own protocol \
|
||||
implementations,
|
||||
|
||||
- twisted.python
|
||||
A large set of utilities for Python tricks, reflection, text \
|
||||
processing, and anything else,
|
||||
|
||||
- twisted.spread
|
||||
A secure, fast remote object system,
|
||||
|
||||
- twisted.trial
|
||||
A unit testing framework that integrates well with Twisted-based code.
|
||||
"
|
||||
HOMEPAGE="http://twistedmatrix.com"
|
||||
SRC_URI="https://twistedmatrix.com/Releases/Twisted/13.2/Twisted-13.2.0.tar.bz2"
|
||||
CHECKSUM_SHA256="095175638c019ac7c0604f4c291724a16ff1acd062e181b01293bf4dcbc62cf3"
|
||||
LICENSE="MIT"
|
||||
COPYRIGHT="2001-2013 Twisted project members"
|
||||
REVISION="1"
|
||||
|
||||
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
||||
|
||||
SOURCE_DIR="Twisted-$portVersion"
|
||||
|
||||
PROVIDES="
|
||||
python_twisted = $portVersion
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku >= $haikuVersion
|
||||
python_zope.interface >= 3.6.0
|
||||
cmd:python
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
python_zope.interface >= 3.6.0
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
haiku_devel >= $haikuVersion
|
||||
cmd:python
|
||||
cmd:gcc
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
$portPackageLinksDir/cmd~python/bin/python setup.py build
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
$portPackageLinksDir/cmd~python/bin/python setup.py install \
|
||||
--prefix=$prefix
|
||||
}
|
||||
Reference in New Issue
Block a user