[145881] trunk/dports/python/py-obspy-devel

petr at macports.org petr at macports.org
Fri Feb 19 10:52:54 PST 2016


Revision: 145881
          https://trac.macports.org/changeset/145881
Author:   petr at macports.org
Date:     2016-02-19 10:52:53 -0800 (Fri, 19 Feb 2016)
Log Message:
-----------
py-obspy-devel: make stub, replaced_by py-obspy

Added Paths:
-----------
    trunk/dports/python/py-obspy-devel/Portfile

Removed Paths:
-------------
    trunk/dports/python/py-obspy-devel/Portfile

Deleted: trunk/dports/python/py-obspy-devel/Portfile
===================================================================
--- trunk/dports/python/py-obspy-devel/Portfile	2016-02-19 18:35:14 UTC (rev 145880)
+++ trunk/dports/python/py-obspy-devel/Portfile	2016-02-19 18:52:53 UTC (rev 145881)
@@ -1,107 +0,0 @@
-# -*- 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
-# $Id$
-
-PortSystem          1.0
-PortGroup           python 1.0
-PortGroup           select 1.0
-
-set _name           obspy
-
-name                py-${_name}-devel
-conflicts           py-${_name}
-
-version             1.0.0rc4
-categories-append   science
-platforms           darwin
-license             LGPL-3
-
-maintainers         petr openmaintainer
-
-description         Python framework for processing seismological data \
-                    (release candidate)
-
-long_description    \
-    ObsPy is an open-source project dedicated to provide a Python framework \
-    for processing seismological data. It provides support for file formats \
-    and signal processing routines which allow the manipulation, analysis \
-    and visualization of seismological time series. The goal of the ObsPy \
-    project is to facilitate rapid application development for seismology. \
-    This port provides the a release candidate.
-
-homepage            http://www.obspy.org/
-
-use_zip             yes
-distname            ${_name}-${version}
-master_sites        https://www.geophysik.uni-muenchen.de/~megies/
-
-checksums           md5     1ee94c2947e3c86bb9a02b7de62435e2 \
-                    rmd160  5d44a228b28c80dafe49d54a6678bdcb787f40f1 \
-                    sha256  393b1500863a3331b8ecae026d11c57b789e5eab894e17b5a0f9ae5022bf6b86
-
-python.versions     27 34 35
-
-if {${name} ne ${subport}} {
-    conflicts           py{python.version}-${_name}
-
-    # py-scipy is not universal
-    universal_variant       no
-
-    depends_build-append    port:py${python.version}-setuptools \
-                            port:py${python.version}-numpy
-
-    depends_lib-append      port:py${python.version}-future \
-                            port:py${python.version}-numpy \
-                            port:py${python.version}-scipy \
-                            port:py${python.version}-lxml \
-                            port:py${python.version}-sqlalchemy \
-                            port:py${python.version}-matplotlib \
-                            port:py${python.version}-decorator \
-                            port:py${python.version}-requests \
-
-    # soft dependencies added for simplicity
-    depends_lib-append      port:py${python.version}-gdal \
-                            port:py${python.version}-geographiclib
-
-    # Note: Required for post-installation testing only 
-    depends_run-append      port:py${python.version}-flake8 \
-                            port:py${python.version}-flake8-pep8-naming \
-                            port:py${python.version}-pyproj
-
-    # Python 3.3+: mock is available as unittest.mock
-    if { ${python.version} < 33 } {
-        depends_run-append  port:py${python.version}-mock
-    }
-
-    # add manpages
-    depends_build-append    port:help2man
-
-    post-build {
-        set libarch [glob -tail -directory ${worksrcpath}/build lib.*]
-        set libsrc build/${libarch}/obspy/lib
-        set libtgt ${worksrcpath}/obspy/lib
-
-        foreach l [glob -tail -directory ${worksrcpath}/${libsrc} *.so] {
-            ln -s ../../${libsrc}/${l} ${libtgt}/.
-        }
-
-        system -W ${worksrcpath} "${build.cmd} build_man"
-    }
-    post-destroot {
-        system -W ${worksrcpath} "${destroot.cmd} install_man  ${destroot.destdir}"
-    }
-
-    # port select
-    depends_run-append  port:${_name}_select
-
-    select.group    ${_name}
-    select.file     ${filespath}/${_name}${python.version}
-
-    notes-append "
-To make this Python ${python.branch} version of ObsPy the default \
-(i.e, use its script by their default names, e.g. obspy-runtests, etc.), run:
-
-sudo port select --set ${select.group} [file tail ${select.file}]
-    "
-
-    livecheck.type  none
-}

Added: trunk/dports/python/py-obspy-devel/Portfile
===================================================================
--- trunk/dports/python/py-obspy-devel/Portfile	                        (rev 0)
+++ trunk/dports/python/py-obspy-devel/Portfile	2016-02-19 18:52:53 UTC (rev 145881)
@@ -0,0 +1,36 @@
+# -*- 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
+# $Id$
+
+PortSystem          1.0
+
+PortGroup           python 1.0
+
+name                py-obspy-devel
+version             1.0.0rc4
+revision            1
+
+replaced_by         py-obspy
+PortGroup           obsolete 1.0
+
+categories-append   science
+platforms           darwin
+license             LGPL-3
+
+maintainers         petr openmaintainer
+
+description         This port is currently a stub replaced by py-obspy release
+
+long_description    \
+    This port is currently a stub to provice a smooth upgrade path towards \
+    the recently released version. This port is expected to be reactivated \
+    in some weeks when a stable development snapshot becomes useful.
+
+homepage            http://www.obspy.org/
+
+python.versions     27 34 35
+
+if {${name} ne ${subport}} {
+    replaced_by     py${python.version}-obspy
+
+    depends_lib
+}


Property changes on: trunk/dports/python/py-obspy-devel/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20160219/01520263/attachment.html>


More information about the macports-changes mailing list