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 | # $Id: Portfile 97743 2012-09-14 02:30:22Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-obspy-core |
---|
8 | replaced_by py-obspy |
---|
9 | version 0.7.1 |
---|
10 | revision 1 |
---|
11 | categories-append science |
---|
12 | platforms darwin |
---|
13 | supported_archs noarch |
---|
14 | maintainers bo.ingv.it:Peter.Danecek openmaintainer |
---|
15 | |
---|
16 | license LGPL-3 |
---|
17 | |
---|
18 | description Python framework for processing seismological data (core component) |
---|
19 | long_description ObsPy is an open-source project dedicated to provide a Python \ |
---|
20 | framework for processing seismological data. It provides \ |
---|
21 | parsers for common file formats and seismological signal \ |
---|
22 | processing routines which allow the manipulation of \ |
---|
23 | seismological time series. The goal of the ObsPy project is \ |
---|
24 | to facilitate rapid application development for seismology. \ |
---|
25 | \ |
---|
26 | This port installs the ObsPy package obspy.core. It contains \ |
---|
27 | common classes and methods like UTCDateTime, Stats, Stream \ |
---|
28 | and Trace well as methods for reading and writing \ |
---|
29 | seismograms which are required by other ObsPy packages. |
---|
30 | |
---|
31 | homepage http://www.obspy.org/ |
---|
32 | |
---|
33 | distfiles |
---|
34 | archive_sites |
---|
35 | livecheck.type none |
---|
36 | |
---|
37 | use_configure no |
---|
38 | build {} |
---|
39 | |
---|
40 | python.versions 25 26 27 |
---|
41 | |
---|
42 | if {${subport} != ${name}} { |
---|
43 | replaced_by py${python.version}-obspy |
---|
44 | } |
---|
45 | |
---|
46 | pre-configure { |
---|
47 | ui_error "This port (${name}) has been replaced by ${replaced_by}. \ |
---|
48 | Please install ${replaced_by} instead." |
---|
49 | return -code error "obsolete port" |
---|
50 | } |
---|