You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
48 lines
1.9 KiB
Tcl
48 lines
1.9 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-workerpool
|
|
version 0.9.2
|
|
license MIT
|
|
maintainers nomaintainer
|
|
python.versions 27
|
|
description Module for distributing jobs to a pool of worker \
|
|
threads.
|
|
long_description Performing tasks in many threads made fun! \
|
|
\
|
|
This module facilitates distributing simple \
|
|
operations into jobs that are sent to worker \
|
|
threads, maintained by a pool object. \
|
|
\
|
|
It consists of these components:\
|
|
\
|
|
1. Jobs, which are single units of work that need \
|
|
to be performed. \
|
|
2. Workers, who grab jobs from a queue and perform \
|
|
them. \
|
|
3. Worker pool, which keeps track of workers and \
|
|
the job queue.
|
|
|
|
homepage https://code.google.com/p/workerpool/
|
|
platforms darwin
|
|
supported_archs noarch
|
|
master_sites googlecode:workerpool \
|
|
pypi:w/workerpool
|
|
distname workerpool-${version}
|
|
checksums md5 42904070f1a58f2a7b7276b22134375b \
|
|
sha1 34da871db2615a474f8332e2aa33285a2d808bb7 \
|
|
rmd160 e7565d81be215d0c728ef7306efa3ebea0fafebd
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append port:py${python.version}-setuptools
|
|
|
|
post-destroot {
|
|
xinstall -W ${worksrcpath} -m 644 CHANGES LICENSE README \
|
|
${destroot}${prefix}/share/doc/${subport}
|
|
copy {*}[glob ${worksrcpath}/samples/*] \
|
|
${destroot}${prefix}/share/doc/${subport}/examples
|
|
}
|
|
}
|