2012-01-27 14:13:52 +00:00
|
|
|
# -*- 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-socketpool
|
2013-09-01 21:05:20 +00:00
|
|
|
version 0.5.3
|
2012-01-27 14:13:52 +00:00
|
|
|
revision 0
|
|
|
|
|
categories-append devel
|
|
|
|
|
platforms darwin
|
2013-09-01 21:05:20 +00:00
|
|
|
license MIT
|
2012-01-27 14:13:52 +00:00
|
|
|
supported_archs noarch
|
|
|
|
|
|
2019-11-29 22:00:35 -05:00
|
|
|
python.versions 27 35 36
|
2013-09-01 21:05:20 +00:00
|
|
|
|
2018-06-18 01:29:09 -05:00
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
2012-01-27 14:13:52 +00:00
|
|
|
|
|
|
|
|
description Socketpool - a simple Python socket pool.
|
|
|
|
|
|
|
|
|
|
long_description Socket pool is a simple socket pool that suports \
|
|
|
|
|
multiple factories and backends. It can easily be \
|
|
|
|
|
used by gevent, eventlet or any other library.
|
|
|
|
|
|
2017-12-29 19:18:57 -08:00
|
|
|
homepage https://github.com/benoitc/socketpool
|
2016-05-24 07:48:05 +00:00
|
|
|
master_sites pypi:s/socketpool/
|
2012-01-27 14:13:52 +00:00
|
|
|
|
|
|
|
|
distname socketpool-${version}
|
|
|
|
|
|
2013-09-01 21:05:20 +00:00
|
|
|
checksums rmd160 44cc1323cbbdb8f86419104c87ba38f0093066e8 \
|
2019-11-29 22:00:35 -05:00
|
|
|
sha256 a06733434a56c4b60b8fcaa168102d2386253d36425804d55532a6bbbda6e2ec \
|
|
|
|
|
size 9793
|
2012-01-27 14:13:52 +00:00
|
|
|
|
2013-12-05 08:44:51 +00:00
|
|
|
if {${name} ne ${subport}} {
|
2013-09-01 21:05:20 +00:00
|
|
|
depends_build-append \
|
|
|
|
|
port:py${python.version}-setuptools
|
2012-01-27 14:13:52 +00:00
|
|
|
|
|
|
|
|
post-destroot {
|
|
|
|
|
xinstall -d ${destroot}${python.prefix}/share/doc/
|
|
|
|
|
move ${destroot}${python.prefix}/socketpool ${destroot}${python.prefix}/share/doc/socketpool
|
|
|
|
|
file copy ${worksrcpath}/examples/ ${destroot}${python.prefix}/share/doc/socketpool
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-01 21:05:20 +00:00
|
|
|
livecheck.type none
|
|
|
|
|
}
|