Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 9C9F17A221 for ; Sat, 20 Aug 2016 18:56:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4D47185EC3; Sat, 20 Aug 2016 18:56:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D1F6E85EA5 for ; Sat, 20 Aug 2016 18:56:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id dVcV8cNAeoTj for ; Sat, 20 Aug 2016 18:56:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 209AD85E44 for ; Sat, 20 Aug 2016 18:56:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1B1B8FBC3; Sat, 20 Aug 2016 18:56:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1471719416154510" MIME-Version: 1.0 Date: Sat, 20 Aug 2016 18:56:56 +0000 From: "Richard PALO" Subject: CVS commit: pkgsrc/geography/py-obspy To: pkgsrc-changes@NetBSD.org Reply-To: richard@netbsd.org X-Mailer: log_accum Message-Id: <20160820185656.1B1B8FBC3@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1471719416154510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: richard Date: Sat Aug 20 18:56:56 UTC 2016 Modified Files: pkgsrc/geography/py-obspy: Makefile PLIST Log Message: remove obsoleted dependency on py-suds permitting the package to build under py3 necessiting a bump of PKGREVISION for changed dependencies. Update PLIST processing to use egg.mk and add support to other platforms than NetBSD x86_64. At the request of wen@, MAINTAINER is now set to pkgsrc-users@ (thanks to wiz@ for early feedback too) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/geography/py-obspy/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/geography/py-obspy/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1471719416154510 Content-Disposition: inline Content-Length: 4270 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/py-obspy/Makefile diff -u pkgsrc/geography/py-obspy/Makefile:1.6 pkgsrc/geography/py-obspy/Makefile:1.7 --- pkgsrc/geography/py-obspy/Makefile:1.6 Sun Aug 7 10:36:43 2016 +++ pkgsrc/geography/py-obspy/Makefile Sat Aug 20 18:56:55 2016 @@ -1,18 +1,18 @@ -# $NetBSD: Makefile,v 1.6 2016/08/07 10:36:43 wen Exp $ +# $NetBSD: Makefile,v 1.7 2016/08/20 18:56:55 richard Exp $ DISTNAME= obspy-1.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= geography python MASTER_SITES= ${MASTER_SITE_PYPI:=o/obspy/} EXTRACT_SUFX= .zip -MAINTAINER= wen@NetBSD.org +MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.obspy.org/ COMMENT= Python framework for seismological observatories LICENSE= gnu-lgpl-v3 DEPENDS+= ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy -DEPENDS+= ${PYPKGPREFIX}-suds>=0.4:../../net/py-suds DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml DEPENDS+= ${PYPKGPREFIX}-future>=0.12.4:../../devel/py-future DEPENDS+= ${PYPKGPREFIX}-requests>=0:../../devel/py-requests @@ -24,12 +24,19 @@ USE_TOOLS+= bash:run REPLACE_BASH= obspy/taup/tests/data/TauP_test_data/gendata.sh -PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-suds - pre-configure: ${FIND} ${WRKSRC} -type f -exec ${CHMOD} -x {} \; +.include "../../lang/python/pyversion.mk" + +PYPLATFORM!= ${PYTHONBIN} -c 'import platform; print platform.system() + "_" + platform.architecture()[0]' + +PLIST_SUBST+= PYPLATFORM=${PYPLATFORM} PYPKGPREFIX=${PYPKGPREFIX} +PRINT_PLIST_AWK+= /^${PYPLATFORM:S|/|\\/|g}/ \ + { gsub(/${PYPLATFORM:S|/|\\/|g}/, "$${PYPLATFORM}") } + .include "../../graphics/py-matplotlib/buildlink3.mk" -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" +.include "../../lang/python/tool.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.3 pkgsrc/geography/py-obspy/PLIST:1.4 --- pkgsrc/geography/py-obspy/PLIST:1.3 Sun Aug 7 10:36:43 2016 +++ pkgsrc/geography/py-obspy/PLIST Sat Aug 20 18:56:55 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2016/08/07 10:36:43 wen Exp $ +@comment $NetBSD: PLIST,v 1.4 2016/08/20 18:56:55 richard Exp $ bin/obspy-dataless2resp bin/obspy-dataless2xseed bin/obspy-flinn-engdahl @@ -12,14 +12,14 @@ bin/obspy-runtests bin/obspy-scan bin/obspy-sds-report bin/obspy-xseed2dataless -${PYSITELIB}/${EGG_FILE}/PKG-INFO -${PYSITELIB}/${EGG_FILE}/SOURCES.txt -${PYSITELIB}/${EGG_FILE}/dependency_links.txt -${PYSITELIB}/${EGG_FILE}/entry_points.txt -${PYSITELIB}/${EGG_FILE}/namespace_packages.txt -${PYSITELIB}/${EGG_FILE}/not-zip-safe -${PYSITELIB}/${EGG_FILE}/requires.txt -${PYSITELIB}/${EGG_FILE}/top_level.txt +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/obspy/CONTRIBUTORS.txt ${PYSITELIB}/obspy/LICENSE.txt ${PYSITELIB}/obspy/RELEASE-VERSION @@ -1610,12 +1610,12 @@ ${PYSITELIB}/obspy/io/zmap/tests/test_zm ${PYSITELIB}/obspy/lib/__init__.py ${PYSITELIB}/obspy/lib/__init__.pyc ${PYSITELIB}/obspy/lib/__init__.pyo -${PYSITELIB}/obspy/lib/libevresp_NetBSD_64bit_py27.so -${PYSITELIB}/obspy/lib/libgse2_NetBSD_64bit_py27.so -${PYSITELIB}/obspy/lib/libmseed_NetBSD_64bit_py27.so -${PYSITELIB}/obspy/lib/libsegy_NetBSD_64bit_py27.so -${PYSITELIB}/obspy/lib/libsignal_NetBSD_64bit_py27.so -${PYSITELIB}/obspy/lib/libtau_NetBSD_64bit_py27.so +${PYSITELIB}/obspy/lib/libevresp_${PYPLATFORM}_${PYPKGPREFIX}.so +${PYSITELIB}/obspy/lib/libgse2_${PYPLATFORM}_${PYPKGPREFIX}.so +${PYSITELIB}/obspy/lib/libmseed_${PYPLATFORM}_${PYPKGPREFIX}.so +${PYSITELIB}/obspy/lib/libsegy_${PYPLATFORM}_${PYPKGPREFIX}.so +${PYSITELIB}/obspy/lib/libsignal_${PYPLATFORM}_${PYPKGPREFIX}.so +${PYSITELIB}/obspy/lib/libtau_${PYPLATFORM}_${PYPKGPREFIX}.so ${PYSITELIB}/obspy/realtime/README.txt ${PYSITELIB}/obspy/realtime/__init__.py ${PYSITELIB}/obspy/realtime/__init__.pyc --_----------=_1471719416154510--