Update to version 1.20.3; Fixes RHBZ#2104251

This commit is contained in:
Fabio Valentini 2022-07-13 13:11:37 +02:00
commit 603e4e03a9
No known key found for this signature in database
GPG key ID: 5AC5F572E5D410AF
4 changed files with 9 additions and 8 deletions

1
.gitignore vendored
View file

@ -66,3 +66,4 @@
/syncthing-source-v1.19.2.tar.gz
/syncthing-source-v1.20.1.tar.gz
/syncthing-source-v1.20.2.tar.gz
/syncthing-source-v1.20.3.tar.gz

View file

@ -1 +1 @@
SHA512 (syncthing-source-v1.20.2.tar.gz) = 19b3451cd73141332b84c0d4a406044f94dd83b0d509b47dba5dc834e3e566c65898587f7cb10792c9d47fca3c1a3e4fc934cdce8c01c3403771d1420cedb50b
SHA512 (syncthing-source-v1.20.3.tar.gz) = 153420546ee35ed504e56d23167d803c28c2d3ba97f3f8d4a361489f1fc293e802998a8762fcf9f6986d2aebd9b7c04335f0fb8aa476cfeed41255d6bd7cd857

View file

@ -1,6 +1,6 @@
%bcond_with devel
%global basever 1.20.2
%global basever 1.20.3
#%%global rcnum 0
Name: syncthing
@ -57,7 +57,7 @@ Provides: bundled(golang(github.com/AudriusButkevicius/recli)) = 0.0.6
# github.com/Azure/go-ntlmssp : MIT
Provides: bundled(golang(github.com/Azure/go-ntlmssp)) = 6637195
# github.com/alecthomas/kong : MIT
Provides: bundled(golang(github.com/alecthomas/kong)) = 0.3.0
Provides: bundled(golang(github.com/alecthomas/kong)) = 0.6.1
# github.com/beorn7/perks : MIT
Provides: bundled(golang(github.com/beorn7/perks)) = 1.0.1
# github.com/calmh/xdr : MIT
@ -145,17 +145,17 @@ Provides: bundled(golang(github.com/oschwald/maxminddb-golang)) = 1.8.0
# github.com/petermattis/goid : ASL 2.0
Provides: bundled(golang(github.com/petermattis/goid)) = b0b1615
# github.com/pierrec/lz4 : BSD
Provides: bundled(golang(github.com/pierrec/lz4/v4)) = 4.1.13
Provides: bundled(golang(github.com/pierrec/lz4/v4)) = 4.1.15
# github.com/pkg/errors : BSD
Provides: bundled(golang(github.com/pkg/errors)) = 0.9.1
# github.com/power-devops/perfstat : MIT
Provides: bundled(golang(github.com/power-devops/perfstat)) = 5aafc22
# github.com/prometheus/client_golang : ASL 2.0
Provides: bundled(golang(github.com/prometheus/client_golang)) = 1.11.0
Provides: bundled(golang(github.com/prometheus/client_golang)) = 1.12.2
# github.com/prometheus/client_model : ASL 2.0
Provides: bundled(golang(github.com/prometheus/client_model)) = 0.2.0
# github.com/prometheus/common : ASL 2.0
Provides: bundled(golang(github.com/prometheus/common)) = 0.30.0
Provides: bundled(golang(github.com/prometheus/common)) = 0.32.1
# github.com/prometheus/procfs : ASL 2.0
Provides: bundled(golang(github.com/prometheus/procfs)) = 0.7.3
# github.com/rcrowley/go-metrics : BSD
@ -185,7 +185,7 @@ Provides: bundled(golang(golang.org/x/mod)) = 0.5.1
# golang.org/x/net : BSD
Provides: bundled(golang(golang.org/x/net)) = 3ad01bb
# golang.org/x/sys : BSD
Provides: bundled(golang(golang.org/x/sys)) = 97ac67d
Provides: bundled(golang(golang.org/x/sys)) = da31bd3
# golang.org/x/text: BSD
Provides: bundled(golang(golang.org/x/text)) = 0.3.7
# golang.org/x/time : BSD

View file

@ -30,7 +30,7 @@ def main() -> int:
# parse vendored dependencies into (import path, version) pairs
vendored = list()
for dep in dependencies:
ipath, version = dep[2:].split(" ")
ipath, version = dep[2:].split(" ")[:2]
# check for git snapshots
if len(version) > 27: