Ticket #35165: Portfile

File Portfile, 2.0 KB (added by petrrr, 12 years ago)

the Portfile (NEW)

Line 
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
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-obspy-core
8version             0.7.1
9categories-append   science
10platforms           darwin
11maintainers         nomaintainer
12
13license             LGPL-3
14
15description         The core component of ObsPy
16long_description    {The core component of ObsPy
17
18This 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
20ObsPy 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
23Beyreuther, 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.
26Megies, 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
31homepage            http://www.obspy.org/
32
33master_sites        http://pypi.python.org/packages/source/o/obspy.core
34
35distname            obspy.core-${version}
36use_zip             yes
37
38checksums           md5    98c905b20e1a8617963562d88e6825f3 \
39                    rdm160 14e1f982057f0c1f8aa7e0ef9970b1eb2673b971 \
40                    sha256 8eff9b2406eefaf25c53d1e09d6333b2a7b79782624ac085e35d4a0802a89534
41
42python.default_version 26
43python.versions        25 26 27
44
45if {${subport} != ${name}} {
46    depends_lib-append    port:py${python.version}-numpy
47
48}