pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/orc orc: update to 0.4.33.
details: https://anonhg.NetBSD.org/pkgsrc/rev/2f8530053b0b
branches: trunk
changeset: 387830:2f8530053b0b
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Nov 08 12:00:42 2022 +0000
description:
orc: update to 0.4.33.
0.4.33
======
- Add support for aarch64 (64-bit ARM) architecture (not yet enabled on Windows though)
(Marek Vasut, Dongju Chae, Gaetan Bahl)
- aarch32: Implement loadupdb instruction used e.g. for video pixel
format packing/unpacking/conversions (Marek Vasut, Gaetan Bahl)
- neon: Fix unsigned only implementation of loadoffb, loadoffw and loadoffl
(Daniel Knobe)
- neon: Fix testsuite not passing on arm CPUs (Gaetan Bahl)
- orccodemem: Fix use-after-free in error paths (Bastien Nocera)
- orccpu-powerpc: Fix build with kernel < 4.11 (Fabrice Fontaine)
- Add support for macOS Hardened Runtime (Doug Nazar)
- Enable only SSE and MMX backends for Windows (Seungha Yang)
- Fix ORC_RESTRICT definition for MSVC (Tim-Philipp Müller)
- pkgconfig: add -DORC_STATIC_COMPILATION flag to .pc file for static-only builds
(Steve Lhomme)
diffstat:
devel/orc/Makefile | 4 ++--
devel/orc/PLIST | 6 +++---
devel/orc/distinfo | 9 +++++----
devel/orc/patches/patch-orc_orccodemem.c | 14 ++++++++++++++
4 files changed, 24 insertions(+), 9 deletions(-)
diffs (68 lines):
diff -r 2f30f9703f6a -r 2f8530053b0b devel/orc/Makefile
--- a/devel/orc/Makefile Tue Nov 08 11:54:05 2022 +0000
+++ b/devel/orc/Makefile Tue Nov 08 12:00:42 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2021/11/27 11:27:25 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/11/08 12:00:42 wiz Exp $
-DISTNAME= orc-0.4.32
+DISTNAME= orc-0.4.33
CATEGORIES= devel
MASTER_SITES= https://gstreamer.freedesktop.org/src/orc/
EXTRACT_SUFX= .tar.xz
diff -r 2f30f9703f6a -r 2f8530053b0b devel/orc/PLIST
--- a/devel/orc/PLIST Tue Nov 08 11:54:05 2022 +0000
+++ b/devel/orc/PLIST Tue Nov 08 12:00:42 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2020/09/13 09:27:07 wiz Exp $
+@comment $NetBSD: PLIST,v 1.12 2022/11/08 12:00:42 wiz Exp $
bin/orc-bugreport
bin/orcc
include/orc-0.4/orc-test/orcarray.h
@@ -39,11 +39,11 @@
include/orc-0.4/orc/orcx86insn.h
lib/liborc-0.4.so
lib/liborc-0.4.so.0
-lib/liborc-0.4.so.0.32.0
+lib/liborc-0.4.so.0.33.0
lib/liborc-test-0.4.a
lib/liborc-test-0.4.so
lib/liborc-test-0.4.so.0
-lib/liborc-test-0.4.so.0.32.0
+lib/liborc-test-0.4.so.0.33.0
lib/pkgconfig/orc-0.4.pc
lib/pkgconfig/orc-test-0.4.pc
share/aclocal/orc.m4
diff -r 2f30f9703f6a -r 2f8530053b0b devel/orc/distinfo
--- a/devel/orc/distinfo Tue Nov 08 11:54:05 2022 +0000
+++ b/devel/orc/distinfo Tue Nov 08 12:00:42 2022 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.22 2021/10/26 10:15:59 nia Exp $
+$NetBSD: distinfo,v 1.23 2022/11/08 12:00:42 wiz Exp $
-BLAKE2s (orc-0.4.32.tar.xz) = 801aabb2b68b2855b05dbe69b31ef1b3f65290b4377826f9928c2af4aa503601
-SHA512 (orc-0.4.32.tar.xz) = 63e2ab05bc23e07cd5c1ed3192515ec3b1f666abb4f9ea5de4bd72461f3a5d7066860e2ad38f35d0acd81fadfa06f2a18d61838eae89c74dec6a78099a343567
-Size (orc-0.4.32.tar.xz) = 180340 bytes
+BLAKE2s (orc-0.4.33.tar.xz) = 802a18617eb99204a6ac8e4d19721a03f7bf85d5d1af94d131685859265eeb6f
+SHA512 (orc-0.4.33.tar.xz) = ae8adce5dd62f4054879e6f2db76ce8a7959fd32fef0fb99f73f450ff58c5237e15bca764f6780309a163e40afcf400345f12b0aed5b88dc698064e44f8eede0
+Size (orc-0.4.33.tar.xz) = 199024 bytes
SHA1 (patch-ab) = 8536500f42ed59f9159597e2b7d51772d103faa5
+SHA1 (patch-orc_orccodemem.c) = 00d940be502ce9f1776a98c4c100c579ce28c0c5
diff -r 2f30f9703f6a -r 2f8530053b0b devel/orc/patches/patch-orc_orccodemem.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/orc/patches/patch-orc_orccodemem.c Tue Nov 08 12:00:42 2022 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-orc_orccodemem.c,v 1.1 2022/11/08 12:00:42 wiz Exp $
+
+Add missing include for errno(3).
+
+--- orc/orccodemem.c.orig 2022-10-31 18:16:26.000000000 +0000
++++ orc/orccodemem.c
+@@ -1,6 +1,7 @@
+
+ #include "config.h"
+
++#include <errno.h>
+ #include <stdio.h>
+ #include <string.h>
+ #include <stdlib.h>
Home |
Main Index |
Thread Index |
Old Index