Last change
on this file was
148976,
checked in by raimue@…, 2 years ago
|
Mass update of python ports for master_sites pypi
The pypi hosting site changed the naming scheme for new uploads. While old URLs
continue to work, this possibly breaks updates as master_sites would need to be
changed. This patch updates all previously hardcoded references to
pypi.python.org to the pypi: mirror sites, which was already updated to check
at both the old and new location. See #51391.
Overriding maintainers as this is a mass update of ports.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.4 KB
|
Line | |
---|
1 | # $Id: Portfile 148976 2016-05-24 07:48:05Z raimue@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-processing |
---|
7 | version 0.52 |
---|
8 | platforms darwin |
---|
9 | maintainers blair |
---|
10 | description Using processes which mimics the threading module |
---|
11 | long_description Processing is a package for the Python language which \ |
---|
12 | supports the spawning of processes using the API of \ |
---|
13 | the standard library's threading module. Objects can \ |
---|
14 | be transferred between processes using pipes or \ |
---|
15 | multi-producer/multi-consumer queues. Objects can be \ |
---|
16 | shared between processes using a server process or \ |
---|
17 | (for simple data) shared memory. Equivalents of all \ |
---|
18 | the synchronization primitives in threading are \ |
---|
19 | available. A Pool class makes it easy to submit \ |
---|
20 | tasks to a pool of worker processes. |
---|
21 | |
---|
22 | homepage http://developer.berlios.de/projects/pyprocessing |
---|
23 | master_sites pypi:p/processing |
---|
24 | distname processing-${version} |
---|
25 | checksums md5 62772fa3002d003b2395ed669072d51d \ |
---|
26 | sha1 242cd025d80a5e077de01676465f6b8582222bf4 \ |
---|
27 | rmd160 c04aa3ce3bf5534fa9d98dbfbec8c0ee0cf3fbd7 |
---|
28 | |
---|
29 | python.versions 27 |
---|
30 | |
---|
31 | if {${name} ne ${subport}} { |
---|
32 | use_zip yes |
---|
33 | |
---|
34 | test.run yes |
---|
35 | test.cmd ${python.bin} -m processing.tests |
---|
36 | test.env "PYTHONPATH=build/lib.macosx-10.3-${os.arch}-${python.branch}" |
---|
37 | |
---|
38 | livecheck.type none |
---|
39 | } else { |
---|
40 | livecheck.type regex |
---|
41 | livecheck.url http://pypi.python.org/pypi/processing |
---|
42 | livecheck.regex processing-(\\d+.\\d+).zip |
---|
43 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.