Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package appx-util for openSUSE:Factory checked in at 2023-09-12 21:02:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/appx-util (Old) and /work/SRC/openSUSE:Factory/.appx-util.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "appx-util" Tue Sep 12 21:02:18 2023 rev:3 rq:1110363 version:0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/appx-util/appx-util.changes 2022-11-10 14:19:24.461379163 +0100 +++ /work/SRC/openSUSE:Factory/.appx-util.new.1766/appx-util.changes 2023-09-12 21:02:38.923673404 +0200 @@ -1,0 +2,7 @@ +Mon Sep 11 19:24:38 UTC 2023 - Scott Bradnick <scott.bradn...@suse.com> + +- Updating to version 0.5 + * Add support for OpenSSL 3.0 by @ignatenkobrain in #1 + * Removing appx-util-openssl3-support.patch + +------------------------------------------------------------------- Old: ---- appx-util-0.4.tar.gz appx-util-openssl3-support.patch New: ---- appx-util-0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ appx-util.spec ++++++ --- /var/tmp/diff_new_pack.18wktA/_old 2023-09-12 21:02:40.431727196 +0200 +++ /var/tmp/diff_new_pack.18wktA/_new 2023-09-12 21:02:40.435727338 +0200 @@ -1,7 +1,7 @@ # # spec file for package appx-util # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2021 Neal Gompa <ngomp...@gmail.com>. # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: appx-util -Version: 0.4 +Version: 0.5 Release: 0 Summary: Utility to create Microsoft .appx packages @@ -26,8 +26,7 @@ License: BSD-3-Clause AND MPL-2.0 URL: https://github.com/OSInside/appx-util Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz -#PATCH-FIX-UPSTREAM bsc#1205042 Add OpenSSL 3.0 support -Patch0: https://github.com/OSInside/appx-util/commit/504dad8ca52a44eb6f3a656368f6708b63f73c10.patch#/appx-util-openssl3-support.patch + BuildRequires: cmake >= 3.11 BuildRequires: gcc-c++ BuildRequires: make ++++++ appx-util-0.4.tar.gz -> appx-util-0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appx-util-0.4/CMakeLists.txt new/appx-util-0.5/CMakeLists.txt --- old/appx-util-0.4/CMakeLists.txt 2021-05-26 14:01:20.000000000 +0200 +++ new/appx-util-0.5/CMakeLists.txt 2023-09-09 15:39:37.000000000 +0200 @@ -12,7 +12,7 @@ enable_testing() project(appx - VERSION 0.4 + VERSION 0.5 LANGUAGES CXX) include(CheckCXXSourceCompiles) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appx-util-0.4/Sources/Sign.cpp new/appx-util-0.5/Sources/Sign.cpp --- old/appx-util-0.4/Sources/Sign.cpp 2021-05-26 14:01:20.000000000 +0200 +++ new/appx-util-0.5/Sources/Sign.cpp 2023-09-09 15:39:37.000000000 +0200 @@ -13,6 +13,7 @@ #include <cassert> #include <cstdint> #include <openssl/asn1t.h> +#include <openssl/opensslv.h> #include <vector> namespace osinside { @@ -139,7 +140,11 @@ class EncodedASN1 { public: +#if OPENSSL_VERSION_NUMBER >= 0x30000000L + template <typename T, int (*TEncode)(const T *, std::uint8_t **)> +#else template <typename T, int (*TEncode)(T *, std::uint8_t **)> +#endif static EncodedASN1 FromItem(T *item) { std::uint8_t *dataRaw = nullptr;