Received: by mail.netbsd.org (Postfix, from userid 605) id 721398502F; Sun, 28 Jan 2024 07:14:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9F7278502E for ; Sun, 28 Jan 2024 07:14:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id cinHsWnijegV for ; Sun, 28 Jan 2024 07:14:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 58C8584D14 for ; Sun, 28 Jan 2024 07:14:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4319EFA42; Sun, 28 Jan 2024 07:14:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706426057148020" MIME-Version: 1.0 Date: Sun, 28 Jan 2024 07:14:17 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/orc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240128071417.4319EFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706426057148020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Sun Jan 28 07:14:17 UTC 2024 Modified Files: pkgsrc/devel/orc: Makefile PLIST buildlink3.mk distinfo Log Message: orc: updated to 0.4.36 0.4.36 - Only use AVX / AVX2 instructions on CPUs that support both AVX and AVX2 (fixes crash on machines that only support AVX) (L. E. Segovia) 0.4.35 - Add support for AVX / AVX2 (L. E. Segovia) - SSE backend improvements (L. E. Segovia) - New `orf` and `andf` opcodes for bitwise AND and OR for single precision floats (Jorge Zapata) - Add support for `convwf`, int16 to float conversion (Jorge Zapata) - Allow backend selection through ORC_TARGET environment variable (L. E. Segovia) - Documentation improvements (Jorge Zapata, L. E. Segovia, Tim-Philipp Müller) - orconce: Use Win32 once implementation with MSVC (Seungha Yang, L. E. Segovia) - orcc: add --binary option to output raw machine code for functions (L. E. Segovia) - orcprofile: Implement Windows high-resolution timestamp for MSVC to allow benchmarking on MSVC builds (L. E. Segovia) To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/orc/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/orc/PLIST cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/orc/buildlink3.mk cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/orc/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706426057148020 Content-Disposition: inline Content-Length: 3673 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/orc/Makefile diff -u pkgsrc/devel/orc/Makefile:1.23 pkgsrc/devel/orc/Makefile:1.24 --- pkgsrc/devel/orc/Makefile:1.23 Mon Aug 14 05:24:13 2023 +++ pkgsrc/devel/orc/Makefile Sun Jan 28 07:14:16 2024 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2023/08/14 05:24:13 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2024/01/28 07:14:16 adam Exp $ -DISTNAME= orc-0.4.34 -PKGREVISION= 1 +DISTNAME= orc-0.4.36 CATEGORIES= devel MASTER_SITES= https://gstreamer.freedesktop.org/src/orc/ EXTRACT_SUFX= .tar.xz @@ -15,9 +14,9 @@ PKGCONFIG_OVERRIDE+= output/orc-0.4.pc PKGCONFIG_OVERRIDE+= output/meson-private/orc-test-0.4.pc PKGCONFIG_OVERRIDE_STAGE= post-configure -MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/${PKGBASE} +MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/orc:${WRKSRC}/output/orc-test # For Darwin -MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/output/${PKGBASE} +MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/output/orc:${WRKSRC}/output/orc-test MESON_ARGS+= -Dgtk_doc=disabled Index: pkgsrc/devel/orc/PLIST diff -u pkgsrc/devel/orc/PLIST:1.14 pkgsrc/devel/orc/PLIST:1.15 --- pkgsrc/devel/orc/PLIST:1.14 Fri Jun 2 15:42:12 2023 +++ pkgsrc/devel/orc/PLIST Sun Jan 28 07:14:17 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2023/06/02 15:42:12 wiz Exp $ +@comment $NetBSD: PLIST,v 1.15 2024/01/28 07:14:17 adam Exp $ bin/orc-bugreport bin/orcc include/orc-0.4/orc-test/orcarray.h @@ -8,6 +8,7 @@ include/orc-0.4/orc-test/orctest.h include/orc-0.4/orc/orc-stdint.h include/orc-0.4/orc/orc.h include/orc-0.4/orc/orcarm.h +include/orc-0.4/orc/orcavx.h include/orc-0.4/orc/orcbytecode.h include/orc-0.4/orc/orcbytecodes.h include/orc-0.4/orc/orccode.h @@ -39,10 +40,10 @@ include/orc-0.4/orc/orcx86.h include/orc-0.4/orc/orcx86insn.h lib/liborc-0.4.so lib/liborc-0.4.so.0 -lib/liborc-0.4.so.0.34.0 +lib/liborc-0.4.so.0.36.0 lib/liborc-test-0.4.so lib/liborc-test-0.4.so.0 -lib/liborc-test-0.4.so.0.34.0 +lib/liborc-test-0.4.so.0.36.0 lib/pkgconfig/orc-0.4.pc lib/pkgconfig/orc-test-0.4.pc share/aclocal/orc.m4 Index: pkgsrc/devel/orc/buildlink3.mk diff -u pkgsrc/devel/orc/buildlink3.mk:1.2 pkgsrc/devel/orc/buildlink3.mk:1.3 --- pkgsrc/devel/orc/buildlink3.mk:1.2 Mon Aug 14 05:24:13 2023 +++ pkgsrc/devel/orc/buildlink3.mk Sun Jan 28 07:14:17 2024 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.2 2023/08/14 05:24:13 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.3 2024/01/28 07:14:17 adam Exp $ BUILDLINK_TREE+= orc @@ -6,7 +6,7 @@ BUILDLINK_TREE+= orc ORC_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.orc+= orc>=0.4.6 -BUILDLINK_ABI_DEPENDS.orc?= orc>=0.4.34nb1 +BUILDLINK_ABI_DEPENDS.orc+= orc>=0.4.34nb1 BUILDLINK_PKGSRCDIR.orc?= ../../devel/orc .endif # ORC_BUILDLINK3_MK Index: pkgsrc/devel/orc/distinfo diff -u pkgsrc/devel/orc/distinfo:1.25 pkgsrc/devel/orc/distinfo:1.26 --- pkgsrc/devel/orc/distinfo:1.25 Wed May 31 08:58:36 2023 +++ pkgsrc/devel/orc/distinfo Sun Jan 28 07:14:17 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.25 2023/05/31 08:58:36 adam Exp $ +$NetBSD: distinfo,v 1.26 2024/01/28 07:14:17 adam Exp $ -BLAKE2s (orc-0.4.34.tar.xz) = 6193fc564694f19595a040ca38aad339ee262e250a6f3b5f8b24473046ec0955 -SHA512 (orc-0.4.34.tar.xz) = ea6ce72398fad7569b97afe8e635402a7cc6d5e27b57c27fd76d85ccdf971391b52187297e5849e50ce1031691e9748f2cc312cb39bd0c6ac23c00ac6d96cb41 -Size (orc-0.4.34.tar.xz) = 202628 bytes +BLAKE2s (orc-0.4.36.tar.xz) = cc1e6dd713977bba83f6ceede72c7cb8cb3dcd9b09a5bd4a8fe432e8c804e0fb +SHA512 (orc-0.4.36.tar.xz) = b8571a5236103013f80323d1bd7ed74ab263f046e99e2e79b48edf1d07760f089faf1bf579bc9f9940947647fe6417ab4d9a8b46bc1205e505c16d99f7e16b10 +Size (orc-0.4.36.tar.xz) = 226448 bytes --_----------=_1706426057148020--