Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package monero for openSUSE:Factory checked in at 2023-07-10 16:39:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/monero (Old) and /work/SRC/openSUSE:Factory/.monero.new.23466 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "monero" Mon Jul 10 16:39:58 2023 rev:12 rq:1097881 version:0.18.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/monero/monero.changes 2023-03-06 18:55:59.440799204 +0100 +++ /work/SRC/openSUSE:Factory/.monero.new.23466/monero.changes 2023-07-10 16:40:04.854607301 +0200 @@ -1,0 +2,21 @@ +Sun Jul 2 08:35:49 UTC 2023 - Bernhard Wiedemann <[email protected]> + +- Add upstream fixbuild.patch to build with gcc-13 + +------------------------------------------------------------------- +Tue Apr 18 07:47:33 UTC 2023 - [email protected] + +- Update to version 0.18.2.2: + * cryptonote core/protocol: don't drop peers for soft offenses + * Fixed deadlock and crash when syncing with full dataset on Windows + * build: prepare v0.18.2.2 + * wallet2: fix infinite loop in fake out selection + * p2p: do not log to global when re-blocking a subnet + * p2p: avoid spam blocking ipv4 addresses in a blocked subnet + * build: prepare v0.18.2.1 + * Add a size limit for tx_extra in tx pool + * verRctNonSemanticsSimpleCached: fix fragility + * device: Add ledger Stax device id to device detection + * workflows: update dependencies to fix warnings + +------------------------------------------------------------------- Old: ---- monero-0.18.2.0.obscpio New: ---- fixbuild.patch monero-0.18.2.2.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ monero.spec ++++++ --- /var/tmp/diff_new_pack.U2GHFa/_old 2023-07-10 16:40:06.430616695 +0200 +++ /var/tmp/diff_new_pack.U2GHFa/_new 2023-07-10 16:40:06.434616719 +0200 @@ -36,13 +36,15 @@ %define description_text_3 Security: Using the power of a distributed peer-to-peer consensus network, every transaction on the network is cryptographically secured. Individual wallets have a 24 word mnemonic seed that is only displayed once, and can be written down to backup the wallet. Wallet files are encrypted with a passphrase to ensure they are useless if stolen. %define description_text_4 Untraceability: By taking advantage of ring signatures, a special property of a certain type of cryptography, Monero is able to ensure that transactions are not only untraceable, but have an optional measure of ambiguity that ensures that transactions cannot easily be tied back to an individual user or computer. Name: monero -Version: 0.18.2.0 +Version: 0.18.2.2 Release: 0 Summary: P2P digital currency License: MIT Group: Productivity/Networking/Other URL: https://get%{name}.org/ Source0: %{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM https://github.com/monero-project/monero/commit/c32befe4f.patch +Patch0: fixbuild.patch BuildRequires: cmake >= 3.0 BuildRequires: cppzmq-devel BuildRequires: gcc-c++ >= 4.7.3 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.U2GHFa/_old 2023-07-10 16:40:06.482617005 +0200 +++ /var/tmp/diff_new_pack.U2GHFa/_new 2023-07-10 16:40:06.486617028 +0200 @@ -1,11 +1,11 @@ <services> <service name="obs_scm" mode="disabled"> - <param name="versionformat">0.18.2.0</param> + <param name="versionformat">0.18.2.2</param> <param name="url">https://github.com/monero-project/monero.git</param> <param name="scm">git</param> <param name="changesgenerate">enable</param> <param name="exclude">.*</param> - <param name="revision">refs/tags/v0.18.2.0</param> + <param name="revision">refs/tags/v0.18.2.2</param> </service> <service name="tar" mode="buildtime"> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.U2GHFa/_old 2023-07-10 16:40:06.506617148 +0200 +++ /var/tmp/diff_new_pack.U2GHFa/_new 2023-07-10 16:40:06.510617172 +0200 @@ -1,7 +1,7 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/monero-project/monero.git</param> - <param name="changesrevision">99be9a044f3854f339548e2d99c539c18d7b1b01</param> + <param name="changesrevision">e06129bb4d1076f4f2cebabddcee09f1e9e30dcc</param> </service> </servicedata> (No newline at EOF) ++++++ fixbuild.patch ++++++ commit c32befe4f8385f5f893c0db611060bc7c7b425f3 Author: tobtoht <[email protected]> Date: Sat May 6 18:13:18 2023 +0200 fix missing <cstdint> includes diff --git a/contrib/epee/include/file_io_utils.h b/contrib/epee/include/file_io_utils.h index da05520c1..de95e58c3 100644 --- a/contrib/epee/include/file_io_utils.h +++ b/contrib/epee/include/file_io_utils.h @@ -29,6 +29,7 @@ #include <string> #include <ctime> +#include <cstdint> namespace epee { diff --git a/contrib/epee/include/storages/parserse_base_utils.h b/contrib/epee/include/storages/parserse_base_utils.h index 898813ff9..4658eba77 100644 --- a/contrib/epee/include/storages/parserse_base_utils.h +++ b/contrib/epee/include/storages/parserse_base_utils.h @@ -30,6 +30,7 @@ #include <boost/utility/string_ref_fwd.hpp> #include <string> +#include <cstdint> namespace epee { diff --git a/src/common/combinator.h b/src/common/combinator.h index cb237ed8d..6ef244a1e 100644 --- a/src/common/combinator.h +++ b/src/common/combinator.h @@ -34,6 +34,7 @@ #include <iostream> #include <vector> #include <stdexcept> +#include <cstdint> namespace tools { diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index ab3d9732e..df86da847 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -38,6 +38,7 @@ #include <ctime> #include <iostream> #include <stdexcept> +#include <cstdint> // Public interface for libwallet library namespace Monero { ++++++ monero-0.18.2.0.obscpio -> monero-0.18.2.2.obscpio ++++++ /work/SRC/openSUSE:Factory/monero/monero-0.18.2.0.obscpio /work/SRC/openSUSE:Factory/.monero.new.23466/monero-0.18.2.2.obscpio differ: char 48, line 1 ++++++ monero.obsinfo ++++++ --- /var/tmp/diff_new_pack.U2GHFa/_old 2023-07-10 16:40:06.554617434 +0200 +++ /var/tmp/diff_new_pack.U2GHFa/_new 2023-07-10 16:40:06.558617458 +0200 @@ -1,5 +1,5 @@ name: monero -version: 0.18.2.0 -mtime: 1676476033 -commit: 99be9a044f3854f339548e2d99c539c18d7b1b01 +version: 0.18.2.2 +mtime: 1680483200 +commit: e06129bb4d1076f4f2cebabddcee09f1e9e30dcc
