pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/geography/py-obspy



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Sep  4 09:22:35 UTC 2026

Modified Files:
        pkgsrc/geography/py-obspy: Makefile PLIST distinfo

Log Message:
py-obspy: updated to 1.5.1

1.5.1
Changes:
 - General:
   * add helper function that wraps around `numpy.linalg.eig` but always
     mimicks the behavior of numpy <2.5, which is to downcast results to real
     valued arrays when possible. Replacing all `numpy.linalg.eig` calls in the
     code base with this wrapper
 - obspy.core:
   * inventory: fix a bug that Latitude, Longitude and Distance did not accept
     'measurement_units' when being initialized
 - obspy.clients.fdsn:
   * add new URL mapping 'EARTHSCOPE+USGS' and make it the default. This will
     use EarthScope for dataselect and station web services and use USGS for
     event web service. This is basically restoring the output users got before
     IRIS-now-EarthScope discontinued serving an event web service which was a
     mirror of USGS event web service
   * update URL endpoint for IGN to https
   * skip non-query related parameters when parsing WADL files for now and
     improve warning messages for these cases
 - obspy.clients.filesystem:
   * tsindex: improve handling of sql sessions, less connections staying open
   * SDS client: fix handling of empty files
 - obspy.clients.iris:
   * deprecate flinnengdahl web service, which EarthScope announced will be
     retired in July 2026. Users should use obspy.geodetics instead.
   * deprecate all services except the evalresp service. Services get retired
     throughout August 2026
 - obspy.clients.neic:
   * change of IP address and domain to 137.227.252.145 and cwbp2.usgs.gov
 - obspy.clients.seedlink:
   * respect user specified timeout also in making the initial socket
     connection. Currently, when establishing the initial low-level socket
     connection no timeout is used, which in practice leads to a default 2min
     timeout even if user sets a shorter timeout when establishing the client
   * fix seedlink for EPOSFR to rtserve.resif.fr
 - obspy.imaging:
   * fix a bug in dayplot when data is only available for part of the time
     window
 - obspy.io.mseed:
   * fix the type of exception raised when trying to read an empty file
   * fix a void return type in write mseed ctypes wrapper
   * fix reading in case when numpy.memmap is not implemented
   * Memory leak fixed in obspy-readbuffer.c
 - obspy.signal.polarization:
   * fix a wrong calculation of the covariance matrix in the adaptative
     vidale method
 - obspy.taup:
   * fix an issue with obspy.taup not being usable with specific Python
     versions 3.13.10 and 3.14.1


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/geography/py-obspy/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/geography/py-obspy/PLIST
cvs rdiff -u -r1.14 -r1.15 pkgsrc/geography/py-obspy/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/geography/py-obspy/Makefile
diff -u pkgsrc/geography/py-obspy/Makefile:1.35 pkgsrc/geography/py-obspy/Makefile:1.36
--- pkgsrc/geography/py-obspy/Makefile:1.35     Sun Jun 28 15:41:21 2026
+++ pkgsrc/geography/py-obspy/Makefile  Fri Sep  4 09:22:35 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.35 2026/06/28 15:41:21 wiz Exp $
+# $NetBSD: Makefile,v 1.36 2026/09/04 09:22:35 adam Exp $
 
-DISTNAME=      obspy-1.5.0
+DISTNAME=      obspy-1.5.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    geography python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=o/obspy/}
@@ -34,7 +34,7 @@ PYTHON_VERSIONS_INCOMPATIBLE= 310 311
 pre-configure:
        ${FIND} ${WRKSRC} -type f -exec ${CHMOD} -x {} \;
 
-.include "../../lang/python/wheel.mk"
 .include "../../lang/python/tool.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../math/py-numpy/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/geography/py-obspy/PLIST
diff -u pkgsrc/geography/py-obspy/PLIST:1.15 pkgsrc/geography/py-obspy/PLIST:1.16
--- pkgsrc/geography/py-obspy/PLIST:1.15        Wed Apr 22 11:28:10 2026
+++ pkgsrc/geography/py-obspy/PLIST     Fri Sep  4 09:22:35 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2026/04/22 11:28:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2026/09/04 09:22:35 adam Exp $
 bin/obspy-dataless2resp
 bin/obspy-dataless2xseed
 bin/obspy-flinn-engdahl
@@ -1306,6 +1306,7 @@ ${PYSITELIB}/obspy/io/mseed/tests/data/G
 ${PYSITELIB}/obspy/io/mseed/tests/data/RJOB.BW.EHZ.D.300806.0000.fullseed
 ${PYSITELIB}/obspy/io/mseed/tests/data/SRO_encoding.mseed
 ${PYSITELIB}/obspy/io/mseed/tests/data/WUQ.XJ.HHN.D.2008.285.first_record
+${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/emptyfile.mseed
 ${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.be-data.mseed
 ${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.le-data.mseed
 ${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.be-data.mseed

Index: pkgsrc/geography/py-obspy/distinfo
diff -u pkgsrc/geography/py-obspy/distinfo:1.14 pkgsrc/geography/py-obspy/distinfo:1.15
--- pkgsrc/geography/py-obspy/distinfo:1.14     Wed Apr 22 11:28:10 2026
+++ pkgsrc/geography/py-obspy/distinfo  Fri Sep  4 09:22:35 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.14 2026/04/22 11:28:10 adam Exp $
+$NetBSD: distinfo,v 1.15 2026/09/04 09:22:35 adam Exp $
 
-BLAKE2s (obspy-1.5.0.tar.gz) = 8c3f39845bfcc7aab7938fb3b02772fb32ad0fc81ccbf70a2d785526dedb9ce8
-SHA512 (obspy-1.5.0.tar.gz) = 6f96c821b3f95fce83aa32ea3649af036a79c8b9664b675e7eb09f525b8d15d3716f44a350c70f039b26e7e68938ef5a94f463fb535895107262512cc255f45c
-Size (obspy-1.5.0.tar.gz) = 17869707 bytes
+BLAKE2s (obspy-1.5.1.tar.gz) = 36653ae73d9e12a1143829d714eecdbfc3738fa75cea5927cfe5d12af454a2e3
+SHA512 (obspy-1.5.1.tar.gz) = 2f131c9e0c23da591810e2a00043e958d78db298d2d23f703cdc8dc709b19b7b8e27f13a44bec2a668d0938e633f49e13af8ffba20ca5b5223f5c0dc0b99a318
+Size (obspy-1.5.1.tar.gz) = 17877155 bytes



Home | Main Index | Thread Index | Old Index