Commits
Ryan Schmidt authored 6d2a1546495
1 1 | # -*- 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 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup php 1.1 |
5 5 | |
6 6 | name php-swoole |
7 - | version 1.9.23 |
8 7 | categories-append net devel |
9 8 | platforms darwin |
10 9 | maintainers {ryandesign @ryandesign} openmaintainer |
11 10 | license Apache-2 |
12 11 | |
13 12 | php.branches 5.3 5.4 5.5 5.6 7.0 7.1 7.2 |
14 13 | php.pecl yes |
15 14 | |
16 - | checksums rmd160 f843c736fd059d5d5a37a0723d0d10eea99b5f47 \ |
15 + | if {[vercmp ${php.branch} 5.5] >= 0} { |
16 + | version 2.0.10 |
17 + | revision 0 |
18 + | checksums rmd160 a9c5362e3e94332a7f9bb355e38b86e88bdbbb95 \ |
19 + | sha256 48588c93a8bff6d99bb9f088e1f454b13c9b0fee3aa4a2757b598e702a2f1793 \ |
20 + | size 762744 |
21 + | } else { |
22 + | version 1.9.23 |
23 + | revision 0 |
24 + | checksums rmd160 f843c736fd059d5d5a37a0723d0d10eea99b5f47 \ |
17 25 | sha256 8ebee7b2fe24fb2c01fe0cabc1f45f7db14d58cf2760c32043d7613c9e6cbcb1 \ |
18 26 | size 708921 |
27 + | } |
19 28 | |
20 29 | description an event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP |
21 30 | |
22 31 | long_description ${name} is ${description}. |
23 32 | |
24 33 | use_parallel_build yes |
25 34 | |
26 35 | compiler.blacklist *gcc-4.0 *gcc-4.2 |