From ed6345a354682e42b63fa0fab2779199fa2e43a804f396cb7e75fce3e5f7ba9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Lie?= Date: Thu, 8 Jun 2023 09:57:57 +0000 Subject: [PATCH 1/3] Accepting request 1091275 from home:pgajdos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - version update to 0.4.34 + Thread-safety improvements around orc codemem allocation/freeing (Seungha Yang) + Add orc_parse_code() with more detailed error reporting (Francesco Romani) + Implement Orc function lazy initialization correctly via atomic operations (Sebastian Dröge) + orc program parser fixes and improvements (Francesco Romani, Sebastian Dröge) + build fixes and compiler warning fixes (Thomas Klausner, Tim-Philipp Müller, Sebastian Dröge) + coverity and clang scan-build static code analysis fixes (Sebastian Dröge) + meson: Do not always generate static library for test library (Jeremy Bicha) + ci improvements (Jordan Petridis, Nirbheek Chauhan, Tim-Philipp Müller) OBS-URL: https://build.opensuse.org/request/show/1091275 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=79 --- orc-0.4.33.tar.xz | 3 --- orc-0.4.34.tar.xz | 3 +++ orc.changes | 16 ++++++++++++++++ orc.spec | 4 ++-- 4 files changed, 21 insertions(+), 5 deletions(-) delete mode 100644 orc-0.4.33.tar.xz create mode 100644 orc-0.4.34.tar.xz diff --git a/orc-0.4.33.tar.xz b/orc-0.4.33.tar.xz deleted file mode 100644 index 94ee539..0000000 --- a/orc-0.4.33.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:844e6d7db8086f793f57618d3d4b68d29d99b16034e71430df3c21cfd3c3542a -size 199024 diff --git a/orc-0.4.34.tar.xz b/orc-0.4.34.tar.xz new file mode 100644 index 0000000..c062ca0 --- /dev/null +++ b/orc-0.4.34.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f47abb3f097171e44eb807adcdabd860fba2effd37d8d3c4fbd5f341cadd41f +size 202628 diff --git a/orc.changes b/orc.changes index fe6a8ab..77d23e6 100644 --- a/orc.changes +++ b/orc.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Wed Jun 7 13:37:52 UTC 2023 - pgajdos@suse.com + +- version update to 0.4.34 + + Thread-safety improvements around orc codemem allocation/freeing + (Seungha Yang) + + Add orc_parse_code() with more detailed error reporting (Francesco Romani) + + Implement Orc function lazy initialization correctly via atomic operations + (Sebastian Dröge) + + orc program parser fixes and improvements (Francesco Romani, Sebastian Dröge) + + build fixes and compiler warning fixes (Thomas Klausner, Tim-Philipp Müller, + Sebastian Dröge) + + coverity and clang scan-build static code analysis fixes (Sebastian Dröge) + + meson: Do not always generate static library for test library (Jeremy Bicha) + + ci improvements (Jordan Petridis, Nirbheek Chauhan, Tim-Philipp Müller) + ------------------------------------------------------------------- Mon Nov 21 12:59:20 UTC 2022 - Dominique Leuenberger diff --git a/orc.spec b/orc.spec index 5917bb7..045e203 100644 --- a/orc.spec +++ b/orc.spec @@ -1,7 +1,7 @@ # # spec file for package orc # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2010 Dominique Leuenberger, Amsterdam, Netherlands. # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: orc -Version: 0.4.33 +Version: 0.4.34 Release: 0 Summary: The Oil Runtime Compiler License: BSD-3-Clause From 269340082d6ec943f949a59ab7e81cd1cbcb3f397fc93e866af7459032b8abe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Lie?= Date: Thu, 8 Jun 2023 09:59:56 +0000 Subject: [PATCH 2/3] tweak .changes OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=80 --- orc.changes | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/orc.changes b/orc.changes index 77d23e6..61712c8 100644 --- a/orc.changes +++ b/orc.changes @@ -2,17 +2,16 @@ Wed Jun 7 13:37:52 UTC 2023 - pgajdos@suse.com - version update to 0.4.34 - + Thread-safety improvements around orc codemem allocation/freeing - (Seungha Yang) - + Add orc_parse_code() with more detailed error reporting (Francesco Romani) - + Implement Orc function lazy initialization correctly via atomic operations - (Sebastian Dröge) - + orc program parser fixes and improvements (Francesco Romani, Sebastian Dröge) - + build fixes and compiler warning fixes (Thomas Klausner, Tim-Philipp Müller, - Sebastian Dröge) - + coverity and clang scan-build static code analysis fixes (Sebastian Dröge) - + meson: Do not always generate static library for test library (Jeremy Bicha) - + ci improvements (Jordan Petridis, Nirbheek Chauhan, Tim-Philipp Müller) + + Thread-safety improvements around orc codemem + allocation/freeing + + Add orc_parse_code() with more detailed error reporting + + Implement Orc function lazy initialization correctly via atomic + operations + + orc program parser fixes and improvements + + build fixes and compiler warning fixes + + coverity and clang scan-build static code analysis fixes + + meson: Do not always generate static library for test library + + ci improvements ------------------------------------------------------------------- Mon Nov 21 12:59:20 UTC 2022 - Dominique Leuenberger From be08f59daf73d7be778922fc5d84ae950f370d9e76cf971bc325d26747817bf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Lie?= Date: Thu, 8 Jun 2023 10:00:47 +0000 Subject: [PATCH 3/3] tweak .changes2 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=81 --- orc.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orc.changes b/orc.changes index 61712c8..4c34430 100644 --- a/orc.changes +++ b/orc.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Wed Jun 7 13:37:52 UTC 2023 - pgajdos@suse.com -- version update to 0.4.34 +- Update to version 0.4.34 + Thread-safety improvements around orc codemem allocation/freeing + Add orc_parse_code() with more detailed error reporting