Accepting request 825248 from network:cryptocurrencies

OBS-URL: https://build.opensuse.org/request/show/825248
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bitcoin?expand=0&rev=39
This commit is contained in:
Dominique Leuenberger 2020-08-10 13:00:21 +00:00 committed by Git OBS Bridge
commit e04f89c8ef
5 changed files with 27 additions and 16 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec5a2358ee868d845115dc4fc3ed631ff063c57d5e0a713562d083c5c45efb28
size 6980404

3
bitcoin-0.20.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4bbd62fd6acfa5e9864ebf37a24a04bc2dcfe3e3222f056056288d854c53b978
size 6981793

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Tue Aug 4 08:02:30 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>
- Update to version 0.20.1
* Mining
* Fix GBT: Restore "!segwit" and "csv" to "rules" key
* P2P protocol and network code
* Replace automatic bans with discouragement filter
* Wallet
* Handle concurrent wallet loading
* Minimal fix to restore conflicted transaction notifications
* RPC and other APIs
* Increment input value sum only once per UTXO in decodepsbt
* psbt: Increment input value sum only once per UTXO in decodepsbt
* psbt: Include and allow both non_witness_utxo and witness_utxo for segwit inputs
* GUI
* Add missing QPainterPath include
* update Qt base translations for macOS release
* Misc
* util: Don't reference errno when pthread fails
* Fix locking on WSL using flock instead of fcntl
- Remove fix-qpainterpath.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jul 24 04:46:06 UTC 2020 - Michel Normand <normand@linux.vnet.ibm.com> Fri Jul 24 04:46:06 UTC 2020 - Michel Normand <normand@linux.vnet.ibm.com>

View File

@ -24,7 +24,7 @@
%define consensus 1 %define consensus 1
%define is_base 1 %define is_base 1
Name: bitcoin Name: bitcoin
Version: 0.20.0 Version: 0.20.1
Release: 0 Release: 0
Summary: P2P Digital Currency Summary: P2P Digital Currency
License: MIT License: MIT
@ -34,7 +34,6 @@ Source0: https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz#/%
Source1: %{base}d.service Source1: %{base}d.service
Source3: %{base}d.conf Source3: %{base}d.conf
Source4: %{base}.conf Source4: %{base}.conf
Patch0: fix-qpainterpath.patch
BuildRequires: autoconf BuildRequires: autoconf
BuildRequires: automake BuildRequires: automake
BuildRequires: gcc-c++ BuildRequires: gcc-c++
@ -171,7 +170,6 @@ This package provides automated tests for %{name}-qt5 and %{name}d.
%prep %prep
%setup -q %setup -q
%patch0 -p1
%build %build
autoreconf -fiv autoreconf -fiv

View File

@ -1,10 +0,0 @@
--- bitcoin-0.20.0/src/qt/trafficgraphwidget.cpp.orig 2020-06-17 13:42:31.658215250 +0200
+++ bitcoin-0.20.0/src/qt/trafficgraphwidget.cpp 2020-06-17 13:42:39.286235611 +0200
@@ -7,6 +7,7 @@
#include <qt/clientmodel.h>
#include <QPainter>
+#include <QPainterPath>
#include <QColor>
#include <QTimer>