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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-obspy-core |
---|
8 | version 0.7.1 |
---|
9 | categories-append science |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | |
---|
13 | license LGPL-3 |
---|
14 | |
---|
15 | description The core component of ObsPy |
---|
16 | long_description {The core component of ObsPy |
---|
17 | |
---|
18 | This port installs the ObsPy package obspy.core. It contains common classes and methods like UTCDateTime, Stats, Stream and Trace as well as methods for reading and writing seismograms which are required other ObsPy packages. |
---|
19 | |
---|
20 | ObsPy is an open-source project dedicated to provide a Python framework for processing seismological data. It provides parsers for common file formats and seismological signal processing routines which allow the manipulation of seismological time series. The goal of the ObsPy project is to facilitate rapid application development for seismology. |
---|
21 | |
---|
22 | * References |
---|
23 | Beyreuther, M.; Barsch, R.; Krischer, L.; Megies, T.; Behr, Y.; Wassermann, J. (2010): |
---|
24 | ObsPy: A Python Toolbox for Seismology. |
---|
25 | Seismol. Res. Lett. 81(3), 530-533, doi:10.1785/gssrl.81.3.530. |
---|
26 | Megies, T.; Beyreuther, M.; Barsch, R.; Krischer, L.; Wassermann, J. (2011): |
---|
27 | ObsPy -- What can it do for data centers and observatories? |
---|
28 | Annals of Geophysics 54(1), 47-58, doi:10.4401/ag-4838. |
---|
29 | } |
---|
30 | |
---|
31 | homepage http://www.obspy.org/ |
---|
32 | |
---|
33 | master_sites http://pypi.python.org/packages/source/o/obspy.core |
---|
34 | |
---|
35 | distname obspy.core-${version} |
---|
36 | use_zip yes |
---|
37 | |
---|
38 | checksums md5 98c905b20e1a8617963562d88e6825f3 \ |
---|
39 | rdm160 14e1f982057f0c1f8aa7e0ef9970b1eb2673b971 \ |
---|
40 | sha256 8eff9b2406eefaf25c53d1e09d6333b2a7b79782624ac085e35d4a0802a89534 |
---|
41 | |
---|
42 | python.default_version 26 |
---|
43 | python.versions 25 26 27 |
---|
44 | |
---|
45 | if {${subport} != ${name}} { |
---|
46 | depends_lib-append port:py${python.version}-numpy |
---|
47 | |
---|
48 | } |
---|