Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package micropython for openSUSE:Factory checked in at 2023-03-29 23:27:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/micropython (Old) and /work/SRC/openSUSE:Factory/.micropython.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "micropython" Wed Mar 29 23:27:01 2023 rev:8 rq:1075027 version:1.19.1 Changes: -------- --- /work/SRC/openSUSE:Factory/micropython/micropython.changes 2022-10-12 18:28:27.734187916 +0200 +++ /work/SRC/openSUSE:Factory/.micropython.new.31432/micropython.changes 2023-03-29 23:27:15.691476726 +0200 @@ -1,0 +2,5 @@ +Tue Mar 28 14:42:22 UTC 2023 - Dirk Müller <[email protected]> + +- add 32572439984e5640c6af46fbe7c27400c30112ce.patch + +------------------------------------------------------------------- New: ---- 32572439984e5640c6af46fbe7c27400c30112ce.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ micropython.spec ++++++ --- /var/tmp/diff_new_pack.W5u49n/_old 2023-03-29 23:27:16.407480553 +0200 +++ /var/tmp/diff_new_pack.W5u49n/_new 2023-03-29 23:27:16.411480574 +0200 @@ -1,7 +1,7 @@ # # spec file for package micropython # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ Group: Development/Languages/Python URL: https://micropython.org/ Source: https://micropython.org/resources/source/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM: fix build with gcc 13 +Patch1: https://github.com/micropython/micropython/commit/32572439984e5640c6af46fbe7c27400c30112ce.patch BuildRequires: openssl BuildRequires: pkgconfig BuildRequires: python3 ++++++ 32572439984e5640c6af46fbe7c27400c30112ce.patch ++++++ >From 32572439984e5640c6af46fbe7c27400c30112ce Mon Sep 17 00:00:00 2001 From: Damien George <[email protected]> Date: Tue, 7 Mar 2023 14:46:22 +1100 Subject: [PATCH] mpy-cross/main: Fix return type of mp_import_stat. Fixes issue #10951. Signed-off-by: Damien George <[email protected]> --- mpy-cross/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpy-cross/main.c b/mpy-cross/main.c index 13bb17b13dba..8a4dd5bcbed5 100644 --- a/mpy-cross/main.c +++ b/mpy-cross/main.c @@ -344,7 +344,7 @@ int main(int argc, char **argv) { return main_(argc, argv); } -uint mp_import_stat(const char *path) { +mp_import_stat_t mp_import_stat(const char *path) { (void)path; return MP_IMPORT_STAT_NO_EXIST; }
