Received: by mail.netbsd.org (Postfix, from userid 605) id 098F384E8E; Sun, 15 Aug 2021 14:14:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4424084E8C for ; Sun, 15 Aug 2021 14:14:44 +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 zL7l80ClNDoh for ; Sun, 15 Aug 2021 14:14:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8DE7C84CE2 for ; Sun, 15 Aug 2021 14:14:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8768EFA97; Sun, 15 Aug 2021 14:14:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162903688354620" MIME-Version: 1.0 Date: Sun, 15 Aug 2021 14:14:43 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/imath To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210815141443.8768EFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162903688354620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Aug 15 14:14:43 UTC 2021 Modified Files: pkgsrc/math/imath: Makefile PLIST buildlink3.mk distinfo Log Message: imath: update to 3.1.2. ## Version 3.1.2 (July 31, 2021) Patch release that fixes a Windows header issue. * Improve handling of ``#include <*intrin.h>`` ## Version 3.1.1 (July 20, 2021) Patch release that fixes a build failure on ARM64 macOS ## Version 3.1.0 (July 13, 2021) Minor release with new features: * Optimized half-to-float and float-to-half conversion, using F16C SSE instruction set if available. Non-SSE conversion eliminates the float-to-half exponent lookup table, and half-to-float conversion provides a compile-time-optional bit shifting that is slower but eliminates the need for the lookup table, for applications where memory is limited. Half-to-float and float-to-half conversion is also available as C-language functions ``imath_half_to_float()`` and ``imath_float_to_half()``. All new conversions produced identical results, and new options are off by default to ensure backwards compatibility. See https://imath.readthedocs.io for more info. * NOEXCEPT specifier can be eliminated at compile-time via the ``IMATH_USE_NOEXCEPT`` CMake option. * Python bindings: * FixedArray objects support a "read only" state. * FixedArray objects support python buffer protocol. * Optimized 4x4 matrix multiplication. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/imath/Makefile pkgsrc/math/imath/PLIST \ pkgsrc/math/imath/buildlink3.mk pkgsrc/math/imath/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162903688354620 Content-Disposition: inline Content-Length: 2995 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/imath/Makefile diff -u pkgsrc/math/imath/Makefile:1.1 pkgsrc/math/imath/Makefile:1.2 --- pkgsrc/math/imath/Makefile:1.1 Thu Jul 8 21:09:04 2021 +++ pkgsrc/math/imath/Makefile Sun Aug 15 14:14:43 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2021/07/08 21:09:04 markd Exp $ +# $NetBSD: Makefile,v 1.2 2021/08/15 14:14:43 wiz Exp $ -DISTNAME= imath-3.0.5 +DISTNAME= imath-3.1.2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=AcademySoftwareFoundation/} GITHUB_PROJECT= Imath Index: pkgsrc/math/imath/PLIST diff -u pkgsrc/math/imath/PLIST:1.1 pkgsrc/math/imath/PLIST:1.2 --- pkgsrc/math/imath/PLIST:1.1 Thu Jul 8 21:09:04 2021 +++ pkgsrc/math/imath/PLIST Sun Aug 15 14:14:43 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2021/07/08 21:09:04 markd Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/08/15 14:14:43 wiz Exp $ include/Imath/ImathBox.h include/Imath/ImathBoxAlgo.h include/Imath/ImathColor.h @@ -38,8 +38,8 @@ lib/cmake/Imath/ImathConfig.cmake lib/cmake/Imath/ImathConfigVersion.cmake lib/cmake/Imath/ImathTargets-release.cmake lib/cmake/Imath/ImathTargets.cmake -lib/libImath-3_0.so -lib/libImath-3_0.so.28 -lib/libImath-3_0.so.28.0.2 +lib/libImath-3_1.so +lib/libImath-3_1.so.29 +lib/libImath-3_1.so.29.1.0 lib/libImath.so lib/pkgconfig/Imath.pc Index: pkgsrc/math/imath/buildlink3.mk diff -u pkgsrc/math/imath/buildlink3.mk:1.1 pkgsrc/math/imath/buildlink3.mk:1.2 --- pkgsrc/math/imath/buildlink3.mk:1.1 Thu Jul 8 21:09:04 2021 +++ pkgsrc/math/imath/buildlink3.mk Sun Aug 15 14:14:43 2021 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2021/07/08 21:09:04 markd Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2021/08/15 14:14:43 wiz Exp $ BUILDLINK_TREE+= imath @@ -6,6 +6,7 @@ BUILDLINK_TREE+= imath IMATH_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.imath+= imath>=3.0.4 +BUILDLINK_ABI_DEPENDS.imath+= imath>=3.1 BUILDLINK_PKGSRCDIR.imath?= ../../math/imath .endif # IMATH_BUILDLINK3_MK Index: pkgsrc/math/imath/distinfo diff -u pkgsrc/math/imath/distinfo:1.1 pkgsrc/math/imath/distinfo:1.2 --- pkgsrc/math/imath/distinfo:1.1 Thu Jul 8 21:09:04 2021 +++ pkgsrc/math/imath/distinfo Sun Aug 15 14:14:43 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2021/07/08 21:09:04 markd Exp $ +$NetBSD: distinfo,v 1.2 2021/08/15 14:14:43 wiz Exp $ -SHA1 (imath-3.0.5.tar.gz) = 52b330d90873debbaa343931adbe734337cccada -RMD160 (imath-3.0.5.tar.gz) = 92ec5f1c6e2765518c3250cdd9dded0e640c77d8 -SHA512 (imath-3.0.5.tar.gz) = df206315d822266cf32a5a4399abff7ad1dd0bd1f0372d61f61516e2acdefd13e3cfd9cf54373a3fb49bb28c9f80915ca5ecaec2a068a1d6ea231d71a5316da2 -Size (imath-3.0.5.tar.gz) = 528503 bytes +SHA1 (imath-3.1.2.tar.gz) = 4a40ad0c3b073879425a757ea3a99aa180b2a5c5 +RMD160 (imath-3.1.2.tar.gz) = 48e253102381c8b154c3719ede73c220cd57741e +SHA512 (imath-3.1.2.tar.gz) = 17d795f5cc44589b55bf921b93b576a7248c1bcd746f34220833378ba7c836af7cf842d96d98c09b9c3b11000cc1762dd5340dad30b51720fc6bcaea0c7af5d0 +Size (imath-3.1.2.tar.gz) = 566098 bytes --_----------=_162903688354620--