Permalink
| @@ -1,35 +1,38 @@ | ||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
| # -*- 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 | ||
|
|
||
| name py-stomper | ||
| version 0.2.7 | ||
| platforms darwin | ||
| supported_archs noarch | ||
| license Apache-2 | ||
| maintainers nomaintainer | ||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
|
|
||
| description A transport neutral client implementation of the STOMP protocol | ||
| long_description This is a python client implementation of the STOMP protocol. \ | ||
| The client is attempting to be transport layer neutral. This \ | ||
| module provides functions to create and parse STOMP messages \ | ||
| in a programatic fashion. The messages can be easily \ | ||
| generated and parsed, however its up to the user to do the \ | ||
| sending and receiving. | ||
| name py-stomper | ||
| version 0.2.7 | ||
| platforms darwin | ||
| supported_archs noarch | ||
| license Apache-2 | ||
| maintainers nomaintainer | ||
|
|
||
| homepage https://github.com/oisinmulvihill/stomper | ||
| master_sites pypi:s/stomper/ | ||
| distname stomper-${version} | ||
| checksums md5 b721d7557af2fc6a47e82ef4a40e87bf \ | ||
| rmd160 679ff1721bf364a62d63c2e2eab1a118a8861a1d \ | ||
| sha256 8978fd3421390abe3c1a8c8adc72346f4a8175b6fb154011fc8d37bb916e01ce | ||
| description A transport neutral client implementation of the STOMP protocol | ||
| long_description This is a python client implementation of the STOMP protocol. \ | ||
| The client is attempting to be transport layer neutral. This \ | ||
| module provides functions to create and parse STOMP messages \ | ||
| in a programatic fashion. The messages can be easily \ | ||
| generated and parsed, however its up to the user to do the \ | ||
| sending and receiving. | ||
|
|
||
| python.versions 27 | ||
| homepage https://github.com/oisinmulvihill/stomper | ||
| master_sites pypi:s/stomper/ | ||
| distname stomper-${version} | ||
| checksums md5 b721d7557af2fc6a47e82ef4a40e87bf \ | ||
| rmd160 679ff1721bf364a62d63c2e2eab1a118a8861a1d \ | ||
| sha256 8978fd3421390abe3c1a8c8adc72346f4a8175b6fb154011fc8d37bb916e01ce | ||
|
|
||
| python.versions 27 | ||
|
|
||
| if {${name} ne ${subport}} { | ||
| depends_build port:py${python.version}-setuptools | ||
| livecheck.type none | ||
| depends_build-append \ | ||
| port:py${python.version}-setuptools | ||
| livecheck.type none | ||
| } else { | ||
| livecheck.type regex | ||
| livecheck.url https://pypi.python.org/pypi/stomper/ | ||
| livecheck.regex {stomper (\d+(?:\.\d+)*)} | ||
| livecheck.type regex | ||
| livecheck.url https://pypi.python.org/pypi/stomper/ | ||
| livecheck.regex {stomper (\d+(?:\.\d+)*)} | ||
| } |