Update to version 1.20.3; Fixes RHBZ#2104251
This commit is contained in:
parent
57d23d093f
commit
603e4e03a9
4 changed files with 9 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (syncthing-source-v1.20.2.tar.gz) = 19b3451cd73141332b84c0d4a406044f94dd83b0d509b47dba5dc834e3e566c65898587f7cb10792c9d47fca3c1a3e4fc934cdce8c01c3403771d1420cedb50b
|
||||
SHA512 (syncthing-source-v1.20.3.tar.gz) = 153420546ee35ed504e56d23167d803c28c2d3ba97f3f8d4a361489f1fc293e802998a8762fcf9f6986d2aebd9b7c04335f0fb8aa476cfeed41255d6bd7cd857
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue