Sun Aug 7 10:36:44 2016 UTC ()
Update to 1.0.2

Upstream changes:
1.0.2: (doi: 10.5281/zenodo.49636)
 - obspy.core:
   * Added workaround for numpy issue where many FFTs of various lengths fill
     a cache that never gets cleared, effectively creating a memory leak
     (see #1424).
   * Trace.filter and Stream.filter don't work on masked arrays anymore because
     it produced unpredictable results due to the un-initialized data-chunk.
     The uninitialized masked gap is now also initialized to np.nan in case
     of floating point data which and a consistent fill value in case of
     integer data. (see #1363)
 - obspy.clients.fdsn:
   * Fixing issue with location codes potentially resulting in unwanted data
     to be requested. (see #1422)
   * Included low-gain seismometers in default channel filters in
     mass-downloader, also included non-oriented channels by default
     (see #1373).
 - obspy.db:
   * Fixed a bug in obspy-indexer command line script (see #1369,
     command line script was not working, probably since 0.10.0)
 - obspy.imaging:
   * Fixed a bug that leads to pressure/tension color blending when plotting
     semi-transparent DC beachball patches (i.e. with "alpha" not equal to 1,
     see #1464)
   * Fixed a bug when plotting non-DC beachball patches without fill colors
     (i.e. with "nofill=True", see #1464)
   * Fix arbitrary units in waveform section plot's offset axis, making it
     possible to add customizations to the plot afterwards (see #1382, see
     #1383)
 - obspy.io.ascii:
   * Fixed a bug that lead to wrong header information in output files when
     writing non-integer sampling rate data to SLIST or TSPAIR formats
     (see #1447)
- obspy.io.cmtsolution:
   * Make sure newer CMTSOLUTION files can also be read (see #1479).
 - obspy.io.gse2:
   * Fixed a bug that could lead to network code not present in GSE2 output
     (see #1448)
 - obspy.io.mseed:
   * Fixed a bug in obspy-mseed-recordanalyzer (see #1386)
 - obspy.io.nlloc:
   * Use geographic coordinates from the NonLinLoc Hypocenter-Phase file if
     no custom coordinate converter is provided. (see #1390)
   * Fix reading NonLinLoc Hypocenter-Phase files with more than one
     hypocenter in it. (see #1480)
   * Fix reading NonLinLoc Hypocenter-Phase files with unicode characters in
     them. (see #1483)
 - obspy.io.quakeml:
   * Fixed issue with improperly raised warnings when the same file is read
     twice. (#1376)
   * Fix writing empty network/station/channel codes in WaveformStreamID
     objects to QuakeML. (see #1483)
 - obspy.io.sac:
   * Try to set SAC distances (dist, az, baz, gcarc) on read, if "lcalda" is
     true.  If "dist" header is found, distances aren't calculated.
   * SACTrace class returns header values as native Python types instead of
     NumPy types.
   * SACTrace.iqual is no longer accepts enumerated string values, but
     arbitrary integer values. (see #1472)
   * SACTrace.read now replaces non-ASCII and null-termination characters in
     string headers with whitespace unless the "debug_strings=True" flag is
     used. (see #1432)
 - obspy.io.stationxml:
   * Always set the number attribute for poles and zeros. (see #1481)
 - obspy.signal:
   * PPSD.plot(): fix plotting of percentiles, mode and mean and setting
     period limits when using "xaxis_frequency=True" (see #1406, #1416)
   * Work around a bug in SciPy that results in wrong results for bandpass
     filter when using Nyquist frequency (or higher) as high corner of the
     passband (see #1451)
 - obspy.taup:
   * Fixing path for Pn. (see #1392)


(wen)
diff -r1.5 -r1.6 pkgsrc/geography/py-obspy/Makefile
diff -r1.2 -r1.3 pkgsrc/geography/py-obspy/PLIST
diff -r1.3 -r1.4 pkgsrc/geography/py-obspy/distinfo

cvs diff -r1.5 -r1.6 pkgsrc/geography/py-obspy/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/Makefile 2016/07/16 04:11:55 1.5
+++ pkgsrc/geography/py-obspy/Makefile 2016/08/07 10:36:43 1.6
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2016/07/16 04:11:55 wen Exp $ 1# $NetBSD: Makefile,v 1.6 2016/08/07 10:36:43 wen Exp $
2 2
3DISTNAME= obspy-1.0.1 3DISTNAME= obspy-1.0.2
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= geography python 5CATEGORIES= geography python
6MASTER_SITES= ${MASTER_SITE_PYPI:=o/obspy/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=o/obspy/}
7EXTRACT_SUFX= .zip 7EXTRACT_SUFX= .zip
8 8
9MAINTAINER= wen@NetBSD.org 9MAINTAINER= wen@NetBSD.org
10HOMEPAGE= http://www.obspy.org/ 10HOMEPAGE= http://www.obspy.org/
11COMMENT= Python framework for seismological observatories 11COMMENT= Python framework for seismological observatories
12LICENSE= gnu-lgpl-v3 12LICENSE= gnu-lgpl-v3
13 13
14DEPENDS+= ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy 14DEPENDS+= ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy
15DEPENDS+= ${PYPKGPREFIX}-suds>=0.4:../../net/py-suds 15DEPENDS+= ${PYPKGPREFIX}-suds>=0.4:../../net/py-suds
16DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml 16DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml

cvs diff -r1.2 -r1.3 pkgsrc/geography/py-obspy/PLIST (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/PLIST 2016/07/16 04:11:55 1.2
+++ pkgsrc/geography/py-obspy/PLIST 2016/08/07 10:36:43 1.3
@@ -1,34 +1,33 @@ @@ -1,34 +1,33 @@
1@comment $NetBSD: PLIST,v 1.2 2016/07/16 04:11:55 wen Exp $ 1@comment $NetBSD: PLIST,v 1.3 2016/08/07 10:36:43 wen Exp $
2bin/obspy-dataless2resp 2bin/obspy-dataless2resp
3bin/obspy-dataless2xseed 3bin/obspy-dataless2xseed
4bin/obspy-flinn-engdahl 4bin/obspy-flinn-engdahl
5bin/obspy-indexer 5bin/obspy-indexer
6bin/obspy-mopad 6bin/obspy-mopad
7bin/obspy-mseed-recordanalyzer 7bin/obspy-mseed-recordanalyzer
8bin/obspy-plot 8bin/obspy-plot
9bin/obspy-print 9bin/obspy-print
10bin/obspy-reftek-rescue 10bin/obspy-reftek-rescue
11bin/obspy-runtests 11bin/obspy-runtests
12bin/obspy-scan 12bin/obspy-scan
13bin/obspy-sds-report 13bin/obspy-sds-report
14bin/obspy-xseed2dataless 14bin/obspy-xseed2dataless
15${PYSITELIB}/${EGG_FILE}/PKG-INFO 15${PYSITELIB}/${EGG_FILE}/PKG-INFO
16${PYSITELIB}/${EGG_FILE}/SOURCES.txt 16${PYSITELIB}/${EGG_FILE}/SOURCES.txt
17${PYSITELIB}/${EGG_FILE}/dependency_links.txt 17${PYSITELIB}/${EGG_FILE}/dependency_links.txt
18${PYSITELIB}/${EGG_FILE}/entry_points.txt 18${PYSITELIB}/${EGG_FILE}/entry_points.txt
19${PYSITELIB}/${EGG_FILE}/namespace_packages.txt 19${PYSITELIB}/${EGG_FILE}/namespace_packages.txt
20${PYSITELIB}/${EGG_FILE}/not-zip-safe 20${PYSITELIB}/${EGG_FILE}/not-zip-safe
21${PYSITELIB}/${EGG_FILE}/pbr.json 
22${PYSITELIB}/${EGG_FILE}/requires.txt 21${PYSITELIB}/${EGG_FILE}/requires.txt
23${PYSITELIB}/${EGG_FILE}/top_level.txt 22${PYSITELIB}/${EGG_FILE}/top_level.txt
24${PYSITELIB}/obspy/CONTRIBUTORS.txt 23${PYSITELIB}/obspy/CONTRIBUTORS.txt
25${PYSITELIB}/obspy/LICENSE.txt 24${PYSITELIB}/obspy/LICENSE.txt
26${PYSITELIB}/obspy/RELEASE-VERSION 25${PYSITELIB}/obspy/RELEASE-VERSION
27${PYSITELIB}/obspy/__init__.py 26${PYSITELIB}/obspy/__init__.py
28${PYSITELIB}/obspy/__init__.pyc 27${PYSITELIB}/obspy/__init__.pyc
29${PYSITELIB}/obspy/__init__.pyo 28${PYSITELIB}/obspy/__init__.pyo
30${PYSITELIB}/obspy/clients/__init__.py 29${PYSITELIB}/obspy/clients/__init__.py
31${PYSITELIB}/obspy/clients/__init__.pyc 30${PYSITELIB}/obspy/clients/__init__.pyc
32${PYSITELIB}/obspy/clients/__init__.pyo 31${PYSITELIB}/obspy/clients/__init__.pyo
33${PYSITELIB}/obspy/clients/arclink/README.txt 32${PYSITELIB}/obspy/clients/arclink/README.txt
34${PYSITELIB}/obspy/clients/arclink/__init__.py 33${PYSITELIB}/obspy/clients/arclink/__init__.py
@@ -340,42 +339,46 @@ ${PYSITELIB}/obspy/core/tests/__init__.p @@ -340,42 +339,46 @@ ${PYSITELIB}/obspy/core/tests/__init__.p
340${PYSITELIB}/obspy/core/tests/__init__.pyo 339${PYSITELIB}/obspy/core/tests/__init__.pyo
341${PYSITELIB}/obspy/core/tests/data/AU.MEEK.seed 340${PYSITELIB}/obspy/core/tests/data/AU.MEEK.seed
342${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml 341${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml
343${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.seed 342${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.seed
344${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.xml 343${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.xml
345${PYSITELIB}/obspy/core/tests/data/IU_ANMO_00_BHZ.xml 344${PYSITELIB}/obspy/core/tests/data/IU_ANMO_00_BHZ.xml
346${PYSITELIB}/obspy/core/tests/data/IU_ANMO_BH.xml 345${PYSITELIB}/obspy/core/tests/data/IU_ANMO_BH.xml
347${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1.xml 346${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1.xml
348${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1_2015-07-18T02.mseed 347${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1_2015-07-18T02.mseed
349${PYSITELIB}/obspy/core/tests/data/Modified_IRIS_response_level_station.xml 348${PYSITELIB}/obspy/core/tests/data/Modified_IRIS_response_level_station.xml
350${PYSITELIB}/obspy/core/tests/data/TM.SKLT..BHZ_faulty_response.xml 349${PYSITELIB}/obspy/core/tests/data/TM.SKLT..BHZ_faulty_response.xml
351${PYSITELIB}/obspy/core/tests/data/XM.05.seed 350${PYSITELIB}/obspy/core/tests/data/XM.05.seed
352${PYSITELIB}/obspy/core/tests/data/XM.05.xml 351${PYSITELIB}/obspy/core/tests/data/XM.05.xml
 352${PYSITELIB}/obspy/core/tests/data/events_longitude_wrap.zmap
353${PYSITELIB}/obspy/core/tests/data/iris_events.xml 353${PYSITELIB}/obspy/core/tests/data/iris_events.xml
354${PYSITELIB}/obspy/core/tests/data/neries_events.xml 354${PYSITELIB}/obspy/core/tests/data/neries_events.xml
355${PYSITELIB}/obspy/core/tests/data/stationxml_BK.CMB.__.LKS.xml 355${PYSITELIB}/obspy/core/tests/data/stationxml_BK.CMB.__.LKS.xml
356${PYSITELIB}/obspy/core/tests/data/stationxml_IU.ANTO.30.LDO.xml 356${PYSITELIB}/obspy/core/tests/data/stationxml_IU.ANTO.30.LDO.xml
 357${PYSITELIB}/obspy/core/tests/data/tarfile_impostor.mseed
357${PYSITELIB}/obspy/core/tests/data/test.tar 358${PYSITELIB}/obspy/core/tests/data/test.tar
358${PYSITELIB}/obspy/core/tests/data/test.tar.bz2 359${PYSITELIB}/obspy/core/tests/data/test.tar.bz2
359${PYSITELIB}/obspy/core/tests/data/test.tar.gz 360${PYSITELIB}/obspy/core/tests/data/test.tar.gz
360${PYSITELIB}/obspy/core/tests/data/test.tgz 361${PYSITELIB}/obspy/core/tests/data/test.tgz
361${PYSITELIB}/obspy/core/tests/data/test.zip 362${PYSITELIB}/obspy/core/tests/data/test.zip
362${PYSITELIB}/obspy/core/tests/images/basemap_combined_stations-events.png 363${PYSITELIB}/obspy/core/tests/images/basemap_combined_stations-events.png
363${PYSITELIB}/obspy/core/tests/images/catalog-basemap1.png 364${PYSITELIB}/obspy/core/tests/images/catalog-basemap1.png
364${PYSITELIB}/obspy/core/tests/images/catalog-basemap2.png 365${PYSITELIB}/obspy/core/tests/images/catalog-basemap2.png
365${PYSITELIB}/obspy/core/tests/images/catalog-basemap3.png 366${PYSITELIB}/obspy/core/tests/images/catalog-basemap3.png
 367${PYSITELIB}/obspy/core/tests/images/catalog-basemap_long-wrap.png
366${PYSITELIB}/obspy/core/tests/images/catalog-cartopy1.png 368${PYSITELIB}/obspy/core/tests/images/catalog-cartopy1.png
367${PYSITELIB}/obspy/core/tests/images/catalog-cartopy2.png 369${PYSITELIB}/obspy/core/tests/images/catalog-cartopy2.png
368${PYSITELIB}/obspy/core/tests/images/catalog-cartopy3.png 370${PYSITELIB}/obspy/core/tests/images/catalog-cartopy3.png
 371${PYSITELIB}/obspy/core/tests/images/catalog-cartopy_long-wrap.png
369${PYSITELIB}/obspy/core/tests/images/channel_response.png 372${PYSITELIB}/obspy/core/tests/images/channel_response.png
370${PYSITELIB}/obspy/core/tests/images/event.png 373${PYSITELIB}/obspy/core/tests/images/event.png
371${PYSITELIB}/obspy/core/tests/images/image.png 374${PYSITELIB}/obspy/core/tests/images/image.png
372${PYSITELIB}/obspy/core/tests/images/image_fail.png 375${PYSITELIB}/obspy/core/tests/images/image_fail.png
373${PYSITELIB}/obspy/core/tests/images/image_ok.png 376${PYSITELIB}/obspy/core/tests/images/image_ok.png
374${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap1.png 377${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap1.png
375${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap2.png 378${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap2.png
376${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap3.png 379${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap3.png
377${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy1.png 380${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy1.png
378${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy2.png 381${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy2.png
379${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy3.png 382${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy3.png
380${PYSITELIB}/obspy/core/tests/images/inventory_response.png 383${PYSITELIB}/obspy/core/tests/images/inventory_response.png
381${PYSITELIB}/obspy/core/tests/images/network_location-basemap1.png 384${PYSITELIB}/obspy/core/tests/images/network_location-basemap1.png
@@ -608,26 +611,27 @@ ${PYSITELIB}/obspy/imaging/tests/images/ @@ -608,26 +611,27 @@ ${PYSITELIB}/obspy/imaging/tests/images/
608${PYSITELIB}/obspy/imaging/tests/images/bb_tottori_np1.png 611${PYSITELIB}/obspy/imaging/tests/images/bb_tottori_np1.png
609${PYSITELIB}/obspy/imaging/tests/images/mopad_collection.png 612${PYSITELIB}/obspy/imaging/tests/images/mopad_collection.png
610${PYSITELIB}/obspy/imaging/tests/images/mopad_ev.gmt 613${PYSITELIB}/obspy/imaging/tests/images/mopad_ev.gmt
611${PYSITELIB}/obspy/imaging/tests/images/mopad_fallback.png 614${PYSITELIB}/obspy/imaging/tests/images/mopad_fallback.png
612${PYSITELIB}/obspy/imaging/tests/images/mopad_fill.gmt 615${PYSITELIB}/obspy/imaging/tests/images/mopad_fill.gmt
613${PYSITELIB}/obspy/imaging/tests/images/mopad_lines.gmt 616${PYSITELIB}/obspy/imaging/tests/images/mopad_lines.gmt
614${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_lambo.gmt 617${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_lambo.gmt
615${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_ortho.gmt 618${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_ortho.gmt
616${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_stereo.gmt 619${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_stereo.gmt
617${PYSITELIB}/obspy/imaging/tests/images/plot.png 620${PYSITELIB}/obspy/imaging/tests/images/plot.png
618${PYSITELIB}/obspy/imaging/tests/images/plot_nomerge.png 621${PYSITELIB}/obspy/imaging/tests/images/plot_nomerge.png
619${PYSITELIB}/obspy/imaging/tests/images/ppsd.png 622${PYSITELIB}/obspy/imaging/tests/images/ppsd.png
620${PYSITELIB}/obspy/imaging/tests/images/ppsd_cumulative.png 623${PYSITELIB}/obspy/imaging/tests/images/ppsd_cumulative.png
 624${PYSITELIB}/obspy/imaging/tests/images/ppsd_freq.png
621${PYSITELIB}/obspy/imaging/tests/images/scan.png 625${PYSITELIB}/obspy/imaging/tests/images/scan.png
622${PYSITELIB}/obspy/imaging/tests/images/scan_mult_sampl.png 626${PYSITELIB}/obspy/imaging/tests/images/scan_mult_sampl.png
623${PYSITELIB}/obspy/imaging/tests/images/scan_times.png 627${PYSITELIB}/obspy/imaging/tests/images/scan_times.png
624${PYSITELIB}/obspy/imaging/tests/images/spectrogram.png 628${PYSITELIB}/obspy/imaging/tests/images/spectrogram.png
625${PYSITELIB}/obspy/imaging/tests/images/spectrogram_log.png 629${PYSITELIB}/obspy/imaging/tests/images/spectrogram_log.png
626${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces.png 630${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces.png
627${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_huge.png 631${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_huge.png
628${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_tiny.png 632${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_tiny.png
629${PYSITELIB}/obspy/imaging/tests/images/waveform_1_trace.png 633${PYSITELIB}/obspy/imaging/tests/images/waveform_1_trace.png
630${PYSITELIB}/obspy/imaging/tests/images/waveform_3_traces.png 634${PYSITELIB}/obspy/imaging/tests/images/waveform_3_traces.png
631${PYSITELIB}/obspy/imaging/tests/images/waveform_5_traces.png 635${PYSITELIB}/obspy/imaging/tests/images/waveform_5_traces.png
632${PYSITELIB}/obspy/imaging/tests/images/waveform_azim_section.png 636${PYSITELIB}/obspy/imaging/tests/images/waveform_azim_section.png
633${PYSITELIB}/obspy/imaging/tests/images/waveform_binning_error.png 637${PYSITELIB}/obspy/imaging/tests/images/waveform_binning_error.png
@@ -737,26 +741,27 @@ ${PYSITELIB}/obspy/io/ascii/tests/test_a @@ -737,26 +741,27 @@ ${PYSITELIB}/obspy/io/ascii/tests/test_a
737${PYSITELIB}/obspy/io/ascii/tests/test_ascii.pyo 741${PYSITELIB}/obspy/io/ascii/tests/test_ascii.pyo
738${PYSITELIB}/obspy/io/cmtsolution/README.txt 742${PYSITELIB}/obspy/io/cmtsolution/README.txt
739${PYSITELIB}/obspy/io/cmtsolution/__init__.py 743${PYSITELIB}/obspy/io/cmtsolution/__init__.py
740${PYSITELIB}/obspy/io/cmtsolution/__init__.pyc 744${PYSITELIB}/obspy/io/cmtsolution/__init__.pyc
741${PYSITELIB}/obspy/io/cmtsolution/__init__.pyo 745${PYSITELIB}/obspy/io/cmtsolution/__init__.pyo
742${PYSITELIB}/obspy/io/cmtsolution/core.py 746${PYSITELIB}/obspy/io/cmtsolution/core.py
743${PYSITELIB}/obspy/io/cmtsolution/core.pyc 747${PYSITELIB}/obspy/io/cmtsolution/core.pyc
744${PYSITELIB}/obspy/io/cmtsolution/core.pyo 748${PYSITELIB}/obspy/io/cmtsolution/core.pyo
745${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.py 749${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.py
746${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyc 750${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyc
747${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyo 751${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyo
748${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION 752${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION
749${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION_EXPLOSION 753${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION_EXPLOSION
 754${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION_NEW
750${PYSITELIB}/obspy/io/cmtsolution/tests/data/MULTIPLE_EVENTS 755${PYSITELIB}/obspy/io/cmtsolution/tests/data/MULTIPLE_EVENTS
751${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.py 756${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.py
752${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyc 757${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyc
753${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyo 758${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyo
754${PYSITELIB}/obspy/io/cnv/README.txt 759${PYSITELIB}/obspy/io/cnv/README.txt
755${PYSITELIB}/obspy/io/cnv/__init__.py 760${PYSITELIB}/obspy/io/cnv/__init__.py
756${PYSITELIB}/obspy/io/cnv/__init__.pyc 761${PYSITELIB}/obspy/io/cnv/__init__.pyc
757${PYSITELIB}/obspy/io/cnv/__init__.pyo 762${PYSITELIB}/obspy/io/cnv/__init__.pyo
758${PYSITELIB}/obspy/io/cnv/core.py 763${PYSITELIB}/obspy/io/cnv/core.py
759${PYSITELIB}/obspy/io/cnv/core.pyc 764${PYSITELIB}/obspy/io/cnv/core.pyc
760${PYSITELIB}/obspy/io/cnv/core.pyo 765${PYSITELIB}/obspy/io/cnv/core.pyo
761${PYSITELIB}/obspy/io/cnv/tests/__init__.py 766${PYSITELIB}/obspy/io/cnv/tests/__init__.py
762${PYSITELIB}/obspy/io/cnv/tests/__init__.pyc 767${PYSITELIB}/obspy/io/cnv/tests/__init__.pyc
@@ -833,26 +838,27 @@ ${PYSITELIB}/obspy/io/gse2/libgse1.pyo @@ -833,26 +838,27 @@ ${PYSITELIB}/obspy/io/gse2/libgse1.pyo
833${PYSITELIB}/obspy/io/gse2/libgse2.py 838${PYSITELIB}/obspy/io/gse2/libgse2.py
834${PYSITELIB}/obspy/io/gse2/libgse2.pyc 839${PYSITELIB}/obspy/io/gse2/libgse2.pyc
835${PYSITELIB}/obspy/io/gse2/libgse2.pyo 840${PYSITELIB}/obspy/io/gse2/libgse2.pyo
836${PYSITELIB}/obspy/io/gse2/paz.py 841${PYSITELIB}/obspy/io/gse2/paz.py
837${PYSITELIB}/obspy/io/gse2/paz.pyc 842${PYSITELIB}/obspy/io/gse2/paz.pyc
838${PYSITELIB}/obspy/io/gse2/paz.pyo 843${PYSITELIB}/obspy/io/gse2/paz.pyo
839${PYSITELIB}/obspy/io/gse2/tests/__init__.py 844${PYSITELIB}/obspy/io/gse2/tests/__init__.py
840${PYSITELIB}/obspy/io/gse2/tests/__init__.pyc 845${PYSITELIB}/obspy/io/gse2/tests/__init__.pyc
841${PYSITELIB}/obspy/io/gse2/tests/__init__.pyo 846${PYSITELIB}/obspy/io/gse2/tests/__init__.pyo
842${PYSITELIB}/obspy/io/gse2/tests/data/GRF_031102_0225.GSE.wrong_chksum 847${PYSITELIB}/obspy/io/gse2/tests/data/GRF_031102_0225.GSE.wrong_chksum
843${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines 848${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines
844${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines_out 849${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines_out
845${PYSITELIB}/obspy/io/gse2/tests/data/acc.gse 850${PYSITELIB}/obspy/io/gse2/tests/data/acc.gse
 851${PYSITELIB}/obspy/io/gse2/tests/data/boa___00_07a.gse
846${PYSITELIB}/obspy/io/gse2/tests/data/broken_head.gse2 852${PYSITELIB}/obspy/io/gse2/tests/data/broken_head.gse2
847${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z 853${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z
848${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z.wrong_chksum 854${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z.wrong_chksum
849${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349_first100_dos.z 855${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349_first100_dos.z
850${PYSITELIB}/obspy/io/gse2/tests/data/loc_RNON20040609200559.z 856${PYSITELIB}/obspy/io/gse2/tests/data/loc_RNON20040609200559.z
851${PYSITELIB}/obspy/io/gse2/tests/data/loc_STAU20031119011659.z 857${PYSITELIB}/obspy/io/gse2/tests/data/loc_STAU20031119011659.z
852${PYSITELIB}/obspy/io/gse2/tests/data/sta2.gse2 858${PYSITELIB}/obspy/io/gse2/tests/data/sta2.gse2
853${PYSITELIB}/obspy/io/gse2/tests/data/twiceCHK2.gse2 859${PYSITELIB}/obspy/io/gse2/tests/data/twiceCHK2.gse2
854${PYSITELIB}/obspy/io/gse2/tests/data/y2000.gse 860${PYSITELIB}/obspy/io/gse2/tests/data/y2000.gse
855${PYSITELIB}/obspy/io/gse2/tests/test_core.py 861${PYSITELIB}/obspy/io/gse2/tests/test_core.py
856${PYSITELIB}/obspy/io/gse2/tests/test_core.pyc 862${PYSITELIB}/obspy/io/gse2/tests/test_core.pyc
857${PYSITELIB}/obspy/io/gse2/tests/test_core.pyo 863${PYSITELIB}/obspy/io/gse2/tests/test_core.pyo
858${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.py 864${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.py
@@ -1056,28 +1062,31 @@ ${PYSITELIB}/obspy/io/nlloc/README.txt @@ -1056,28 +1062,31 @@ ${PYSITELIB}/obspy/io/nlloc/README.txt
1056${PYSITELIB}/obspy/io/nlloc/__init__.py 1062${PYSITELIB}/obspy/io/nlloc/__init__.py
1057${PYSITELIB}/obspy/io/nlloc/__init__.pyc 1063${PYSITELIB}/obspy/io/nlloc/__init__.pyc
1058${PYSITELIB}/obspy/io/nlloc/__init__.pyo 1064${PYSITELIB}/obspy/io/nlloc/__init__.pyo
1059${PYSITELIB}/obspy/io/nlloc/core.py 1065${PYSITELIB}/obspy/io/nlloc/core.py
1060${PYSITELIB}/obspy/io/nlloc/core.pyc 1066${PYSITELIB}/obspy/io/nlloc/core.pyc
1061${PYSITELIB}/obspy/io/nlloc/core.pyo 1067${PYSITELIB}/obspy/io/nlloc/core.pyo
1062${PYSITELIB}/obspy/io/nlloc/tests/__init__.py 1068${PYSITELIB}/obspy/io/nlloc/tests/__init__.py
1063${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyc 1069${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyc
1064${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyo 1070${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyo
1065${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.hyp 1071${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.hyp
1066${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.obs 1072${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.obs
1067${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.qml 1073${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.qml
1068${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.scat 1074${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.scat
 1075${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_custom.hyp
 1076${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_custom.qml
1069${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat.npy 1077${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat.npy
1070${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat_converted.npy 1078${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat_converted.npy
 1079${PYSITELIB}/obspy/io/nlloc/tests/data/vanua.sum.grid0.loc.hyp
1071${PYSITELIB}/obspy/io/nlloc/tests/test_core.py 1080${PYSITELIB}/obspy/io/nlloc/tests/test_core.py
1072${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyc 1081${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyc
1073${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyo 1082${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyo
1074${PYSITELIB}/obspy/io/nlloc/tests/test_util.py 1083${PYSITELIB}/obspy/io/nlloc/tests/test_util.py
1075${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyc 1084${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyc
1076${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyo 1085${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyo
1077${PYSITELIB}/obspy/io/nlloc/util.py 1086${PYSITELIB}/obspy/io/nlloc/util.py
1078${PYSITELIB}/obspy/io/nlloc/util.pyc 1087${PYSITELIB}/obspy/io/nlloc/util.pyc
1079${PYSITELIB}/obspy/io/nlloc/util.pyo 1088${PYSITELIB}/obspy/io/nlloc/util.pyo
1080${PYSITELIB}/obspy/io/pdas/__init__.py 1089${PYSITELIB}/obspy/io/pdas/__init__.py
1081${PYSITELIB}/obspy/io/pdas/__init__.pyc 1090${PYSITELIB}/obspy/io/pdas/__init__.pyc
1082${PYSITELIB}/obspy/io/pdas/__init__.pyo 1091${PYSITELIB}/obspy/io/pdas/__init__.pyo
1083${PYSITELIB}/obspy/io/pdas/core.py 1092${PYSITELIB}/obspy/io/pdas/core.py
@@ -1157,26 +1166,27 @@ ${PYSITELIB}/obspy/io/sac/tests/__init__ @@ -1157,26 +1166,27 @@ ${PYSITELIB}/obspy/io/sac/tests/__init__
1157${PYSITELIB}/obspy/io/sac/tests/__init__.pyc 1166${PYSITELIB}/obspy/io/sac/tests/__init__.pyc
1158${PYSITELIB}/obspy/io/sac/tests/__init__.pyo 1167${PYSITELIB}/obspy/io/sac/tests/__init__.pyo
1159${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_00_BHZ.sacpz 1168${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_00_BHZ.sacpz
1160${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_BH.sacpz 1169${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_BH.sacpz
1161${PYSITELIB}/obspy/io/sac/tests/data/LMOW.BHE.SAC 1170${PYSITELIB}/obspy/io/sac/tests/data/LMOW.BHE.SAC
1162${PYSITELIB}/obspy/io/sac/tests/data/NZCRLZ_HHZ10.pz 1171${PYSITELIB}/obspy/io/sac/tests/data/NZCRLZ_HHZ10.pz
1163${PYSITELIB}/obspy/io/sac/tests/data/RESP.NZ.CRLZ.10.HHZ 1172${PYSITELIB}/obspy/io/sac/tests/data/RESP.NZ.CRLZ.10.HHZ
1164${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_CRLZ_HHZ 1173${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_CRLZ_HHZ
1165${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_HHZ_10 1174${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_HHZ_10
1166${PYSITELIB}/obspy/io/sac/tests/data/dis.G.SCZ.__.BHE_short 1175${PYSITELIB}/obspy/io/sac/tests/data/dis.G.SCZ.__.BHE_short
1167${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.003.sac 1176${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.003.sac
1168${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.077.sac 1177${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.077.sac
1169${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_random_waveform_delta_0.01_npts_50.sac 1178${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_random_waveform_delta_0.01_npts_50.sac
 1179${PYSITELIB}/obspy/io/sac/tests/data/non_ascii.sac
1170${PYSITELIB}/obspy/io/sac/tests/data/null_terminated.sac 1180${PYSITELIB}/obspy/io/sac/tests/data/null_terminated.sac
1171${PYSITELIB}/obspy/io/sac/tests/data/seism-longer.sac 1181${PYSITELIB}/obspy/io/sac/tests/data/seism-longer.sac
1172${PYSITELIB}/obspy/io/sac/tests/data/seism-shorter.sac 1182${PYSITELIB}/obspy/io/sac/tests/data/seism-shorter.sac
1173${PYSITELIB}/obspy/io/sac/tests/data/seism.sac 1183${PYSITELIB}/obspy/io/sac/tests/data/seism.sac
1174${PYSITELIB}/obspy/io/sac/tests/data/test.sac 1184${PYSITELIB}/obspy/io/sac/tests/data/test.sac
1175${PYSITELIB}/obspy/io/sac/tests/data/test.sac.swap 1185${PYSITELIB}/obspy/io/sac/tests/data/test.sac.swap
1176${PYSITELIB}/obspy/io/sac/tests/data/testxy.sac 1186${PYSITELIB}/obspy/io/sac/tests/data/testxy.sac
1177${PYSITELIB}/obspy/io/sac/tests/test_core.py 1187${PYSITELIB}/obspy/io/sac/tests/test_core.py
1178${PYSITELIB}/obspy/io/sac/tests/test_core.pyc 1188${PYSITELIB}/obspy/io/sac/tests/test_core.pyc
1179${PYSITELIB}/obspy/io/sac/tests/test_core.pyo 1189${PYSITELIB}/obspy/io/sac/tests/test_core.pyo
1180${PYSITELIB}/obspy/io/sac/tests/test_sacpz.py 1190${PYSITELIB}/obspy/io/sac/tests/test_sacpz.py
1181${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyc 1191${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyc
1182${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyo 1192${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyo

cvs diff -r1.3 -r1.4 pkgsrc/geography/py-obspy/distinfo (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/distinfo 2016/07/16 04:11:55 1.3
+++ pkgsrc/geography/py-obspy/distinfo 2016/08/07 10:36:43 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2016/07/16 04:11:55 wen Exp $ 1$NetBSD: distinfo,v 1.4 2016/08/07 10:36:43 wen Exp $
2 2
3SHA1 (obspy-1.0.1.zip) = 7f27dadc9725f01a10f4f3f4e447f92f61aac0d5 3SHA1 (obspy-1.0.2.zip) = 7c43a884c80b90e987d6bd7786fc9092e34272f3
4RMD160 (obspy-1.0.1.zip) = 84d961c24a6445d0438200f3c3bbf8b9614eefbc 4RMD160 (obspy-1.0.2.zip) = be379d314d9a0fcf05c40c7c99212ee57e646b5a
5SHA512 (obspy-1.0.1.zip) = 0c530fb33b293aa7647d4adbfc1f3139afbc7d7d761062b077b8ff038bb1cefcad1c668c2d4385f8455feb641b518fa2ad7f54d95066d6e4c412abc7359401d2 5SHA512 (obspy-1.0.2.zip) = 372d0a694fa200055efcb99b69f9451a778ee236bd2423d126772e0bf8fd91dc924167c4116f7711a47d687117e4790f89552ec365bc2fd49db75fc54701ef22
6Size (obspy-1.0.1.zip) = 20118442 bytes 6Size (obspy-1.0.2.zip) = 22774079 bytes