Skip to content

Commit d9f7298

Browse files
committed
Regenerate artifacts.
1 parent c28bd64 commit d9f7298

File tree

71 files changed

+1400
-1390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1400
-1390
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
###############################################################################
2-
# Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
2+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
33
#
44
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
#
66
###############################################################################
7-
version: 3.6.0.{build}-{branch}
7+
version: 3.7.0.{build}-{branch}
88

99
image: Visual Studio 2013
1010

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###############################################################################
2-
# Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
2+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
33
#
44
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
#
@@ -65,7 +65,7 @@ before_install:
6565
- if [[ $TRAVIS_OS_NAME == linux ]]; then LINUX=true; fi
6666

6767
# Update homebrew.
68-
- if [[ $OSX && $CLANG ]]; then brew update; fi
68+
- if [[ $OSX && $CLANG && $DYNAMIC ]]; then brew update; fi
6969

7070
install:
7171

Makefile.am

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###############################################################################
2-
# Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
2+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
33
#
44
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
#
@@ -144,12 +144,12 @@ dist_bash_completion_DATA = \
144144

145145
endif BASH_COMPLETIONDIR
146146

147-
# files => ${sysconfdir}/libbitcoin
147+
# files => ${sysconfdir}/libbitcoin-system
148148
#------------------------------------------------------------------------------
149149
if WITH_CONSOLE
150150

151-
sysconf_libbitcoindir = ${sysconfdir}/libbitcoin
152-
sysconf_libbitcoin_DATA = \
151+
sysconf_libbitcoin_systemdir = ${sysconfdir}/libbitcoin-system
152+
sysconf_libbitcoin_system_DATA = \
153153
data/bn.cfg
154154

155155
endif WITH_CONSOLE

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
###############################################################################
3-
# Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
3+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
44
#
55
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
66
#

build.cmd

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REM ###########################################################################
2-
REM # Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
2+
REM # Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
33
REM #
44
REM # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
REM #
@@ -23,29 +23,29 @@ IF NOT EXIST "%nuget_pkg_path%" (
2323
)
2424
)
2525

26-
call :init libbitcoin libbitcoin version3
26+
call :init libbitcoin-system libbitcoin-system version3
2727
IF %ERRORLEVEL% NEQ 0 (
28-
call :failure "Initializing repository libbitcoin libbitcoin version3 failed."
28+
call :failure "Initializing repository libbitcoin-system libbitcoin-system version3 failed."
2929
exit /b 1
3030
)
31-
call :init libbitcoin libbitcoin-consensus version3
31+
call :init libbitcoin-system libbitcoin-consensus version3
3232
IF %ERRORLEVEL% NEQ 0 (
33-
call :failure "Initializing repository libbitcoin libbitcoin-consensus version3 failed."
33+
call :failure "Initializing repository libbitcoin-system libbitcoin-consensus version3 failed."
3434
exit /b 1
3535
)
36-
call :init libbitcoin libbitcoin-database version3
36+
call :init libbitcoin-system libbitcoin-database version3
3737
IF %ERRORLEVEL% NEQ 0 (
38-
call :failure "Initializing repository libbitcoin libbitcoin-database version3 failed."
38+
call :failure "Initializing repository libbitcoin-system libbitcoin-database version3 failed."
3939
exit /b 1
4040
)
41-
call :init libbitcoin libbitcoin-blockchain version3
41+
call :init libbitcoin-system libbitcoin-blockchain version3
4242
IF %ERRORLEVEL% NEQ 0 (
43-
call :failure "Initializing repository libbitcoin libbitcoin-blockchain version3 failed."
43+
call :failure "Initializing repository libbitcoin-system libbitcoin-blockchain version3 failed."
4444
exit /b 1
4545
)
46-
call :init libbitcoin libbitcoin-network version3
46+
call :init libbitcoin-system libbitcoin-network version3
4747
IF %ERRORLEVEL% NEQ 0 (
48-
call :failure "Initializing repository libbitcoin libbitcoin-network version3 failed."
48+
call :failure "Initializing repository libbitcoin-system libbitcoin-network version3 failed."
4949
exit /b 1
5050
)
5151
call :bld_repo libbitcoin-node
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
###############################################################################
2+
# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING).
3+
#
4+
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
5+
#
6+
###############################################################################
7+
# FindBash-Completion
8+
#
9+
# Use this module by invoking find_package with the form::
10+
#
11+
# find_package( Bash-Completion
12+
# [version] # Minimum version
13+
# [REQUIRED] # Fail with error if bash-completion is not found
14+
# )
15+
#
16+
# Defines the following for use:
17+
#
18+
# bash_completion_FOUND - true if headers and requested libraries were found
19+
# bash_completion_INCLUDE_DIRS - include directories for bash-completion libraries
20+
# bash_completion_LIBRARY_DIRS - link directories for bash-completion libraries
21+
# bash_completion_LIBRARIES - bash-completion libraries to be linked
22+
# bash_completion_PKG - bash-completion pkg-config package specification.
23+
#
24+
25+
if (MSVC)
26+
if ( Bash-Completion_FIND_REQUIRED )
27+
set( _bash_completion_MSG_STATUS "SEND_ERROR" )
28+
else ()
29+
set( _bash_completion_MSG_STATUS "STATUS" )
30+
endif()
31+
32+
set( bash_completion_FOUND false )
33+
message( ${_bash_completion_MSG_STATUS} "MSVC environment detection for 'bash-completion' not currently supported." )
34+
else ()
35+
# required
36+
if ( Bash-Completion_FIND_REQUIRED )
37+
set( _bash_completion_REQUIRED "REQUIRED" )
38+
endif()
39+
40+
# quiet
41+
if ( Bash-Completion_FIND_QUIETLY )
42+
set( _bash_completion_QUIET "QUIET" )
43+
endif()
44+
45+
# modulespec
46+
if ( Bash-Completion_FIND_VERSION_COUNT EQUAL 0 )
47+
set( _bash_completion_MODULE_SPEC "bash-completion" )
48+
else ()
49+
if ( Bash-Completion_FIND_VERSION_EXACT )
50+
set( _bash_completion_MODULE_SPEC_OP "=" )
51+
else ()
52+
set( _bash_completion_MODULE_SPEC_OP ">=" )
53+
endif()
54+
55+
set( _bash_completion_MODULE_SPEC "bash-completion ${_bash_completion_MODULE_SPEC_OP} ${Bash-Completion_FIND_VERSION}" )
56+
endif()
57+
58+
pkg_check_modules( bash_completion ${_bash_completion_REQUIRED} ${_bash_completion_QUIET} "${_bash_completion_MODULE_SPEC}" )
59+
set( bash_completion_PKG "${_bash_completion_MODULE_SPEC}" )
60+
endif()
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
###############################################################################
2+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
3+
#
4+
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
5+
#
6+
###############################################################################
7+
# FindBitcoin-Blockchain
8+
#
9+
# Use this module by invoking find_package with the form::
10+
#
11+
# find_package( Bitcoin-Blockchain
12+
# [version] # Minimum version
13+
# [REQUIRED] # Fail with error if bitcoin-blockchain is not found
14+
# )
15+
#
16+
# Defines the following for use:
17+
#
18+
# bitcoin_blockchain_FOUND - true if headers and requested libraries were found
19+
# bitcoin_blockchain_INCLUDE_DIRS - include directories for bitcoin-blockchain libraries
20+
# bitcoin_blockchain_LIBRARY_DIRS - link directories for bitcoin-blockchain libraries
21+
# bitcoin_blockchain_LIBRARIES - bitcoin-blockchain libraries to be linked
22+
# bitcoin_blockchain_PKG - bitcoin-blockchain pkg-config package specification.
23+
#
24+
25+
if (MSVC)
26+
if ( Bitcoin-Blockchain_FIND_REQUIRED )
27+
set( _bitcoin_blockchain_MSG_STATUS "SEND_ERROR" )
28+
else ()
29+
set( _bitcoin_blockchain_MSG_STATUS "STATUS" )
30+
endif()
31+
32+
set( bitcoin_blockchain_FOUND false )
33+
message( ${_bitcoin_blockchain_MSG_STATUS} "MSVC environment detection for 'bitcoin-blockchain' not currently supported." )
34+
else ()
35+
# required
36+
if ( Bitcoin-Blockchain_FIND_REQUIRED )
37+
set( _bitcoin_blockchain_REQUIRED "REQUIRED" )
38+
endif()
39+
40+
# quiet
41+
if ( Bitcoin-Blockchain_FIND_QUIETLY )
42+
set( _bitcoin_blockchain_QUIET "QUIET" )
43+
endif()
44+
45+
# modulespec
46+
if ( Bitcoin-Blockchain_FIND_VERSION_COUNT EQUAL 0 )
47+
set( _bitcoin_blockchain_MODULE_SPEC "libbitcoin-blockchain" )
48+
else ()
49+
if ( Bitcoin-Blockchain_FIND_VERSION_EXACT )
50+
set( _bitcoin_blockchain_MODULE_SPEC_OP "=" )
51+
else ()
52+
set( _bitcoin_blockchain_MODULE_SPEC_OP ">=" )
53+
endif()
54+
55+
set( _bitcoin_blockchain_MODULE_SPEC "libbitcoin-blockchain ${_bitcoin_blockchain_MODULE_SPEC_OP} ${Bitcoin-Blockchain_FIND_VERSION}" )
56+
endif()
57+
58+
pkg_check_modules( bitcoin_blockchain ${_bitcoin_blockchain_REQUIRED} ${_bitcoin_blockchain_QUIET} "${_bitcoin_blockchain_MODULE_SPEC}" )
59+
set( bitcoin_blockchain_PKG "${_bitcoin_blockchain_MODULE_SPEC}" )
60+
endif()
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
###############################################################################
2+
# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
3+
#
4+
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
5+
#
6+
###############################################################################
7+
# FindBitcoin-Network
8+
#
9+
# Use this module by invoking find_package with the form::
10+
#
11+
# find_package( Bitcoin-Network
12+
# [version] # Minimum version
13+
# [REQUIRED] # Fail with error if bitcoin-network is not found
14+
# )
15+
#
16+
# Defines the following for use:
17+
#
18+
# bitcoin_network_FOUND - true if headers and requested libraries were found
19+
# bitcoin_network_INCLUDE_DIRS - include directories for bitcoin-network libraries
20+
# bitcoin_network_LIBRARY_DIRS - link directories for bitcoin-network libraries
21+
# bitcoin_network_LIBRARIES - bitcoin-network libraries to be linked
22+
# bitcoin_network_PKG - bitcoin-network pkg-config package specification.
23+
#
24+
25+
if (MSVC)
26+
if ( Bitcoin-Network_FIND_REQUIRED )
27+
set( _bitcoin_network_MSG_STATUS "SEND_ERROR" )
28+
else ()
29+
set( _bitcoin_network_MSG_STATUS "STATUS" )
30+
endif()
31+
32+
set( bitcoin_network_FOUND false )
33+
message( ${_bitcoin_network_MSG_STATUS} "MSVC environment detection for 'bitcoin-network' not currently supported." )
34+
else ()
35+
# required
36+
if ( Bitcoin-Network_FIND_REQUIRED )
37+
set( _bitcoin_network_REQUIRED "REQUIRED" )
38+
endif()
39+
40+
# quiet
41+
if ( Bitcoin-Network_FIND_QUIETLY )
42+
set( _bitcoin_network_QUIET "QUIET" )
43+
endif()
44+
45+
# modulespec
46+
if ( Bitcoin-Network_FIND_VERSION_COUNT EQUAL 0 )
47+
set( _bitcoin_network_MODULE_SPEC "libbitcoin-network" )
48+
else ()
49+
if ( Bitcoin-Network_FIND_VERSION_EXACT )
50+
set( _bitcoin_network_MODULE_SPEC_OP "=" )
51+
else ()
52+
set( _bitcoin_network_MODULE_SPEC_OP ">=" )
53+
endif()
54+
55+
set( _bitcoin_network_MODULE_SPEC "libbitcoin-network ${_bitcoin_network_MODULE_SPEC_OP} ${Bitcoin-Network_FIND_VERSION}" )
56+
endif()
57+
58+
pkg_check_modules( bitcoin_network ${_bitcoin_network_REQUIRED} ${_bitcoin_network_QUIET} "${_bitcoin_network_MODULE_SPEC}" )
59+
set( bitcoin_network_PKG "${_bitcoin_network_MODULE_SPEC}" )
60+
endif()

builds/msvc/vs2013/bn/bn.props

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,20 @@
66
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
77
<RunCodeAnalysis>false</RunCodeAnalysis>
88
</PropertyGroup>
9-
9+
1010
<!-- Configuration -->
1111

1212
<ItemDefinitionGroup>
1313
<ClCompile>
1414
<AdditionalIncludeDirectories>$(RepoRoot)include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1515
<EnablePREfast>false</EnablePREfast>
16-
<PreprocessorDefinitions>_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1716
</ClCompile>
1817
</ItemDefinitionGroup>
1918

2019
<!-- Dependencies -->
21-
20+
2221
<ImportGroup Label="PropertySheets">
23-
<Import Project="$(SolutionDir)libbitcoin.import.props" />
22+
<Import Project="$(SolutionDir)libbitcoin-system.import.props" />
2423
<Import Project="$(SolutionDir)libbitcoin-consensus.import.props" />
2524
<Import Project="$(SolutionDir)libbitcoin-database.import.props" />
2625
<Import Project="$(SolutionDir)libbitcoin-blockchain.import.props" />
@@ -34,7 +33,7 @@
3433

3534
<PropertyGroup Condition="'$(DefaultLinkage)' == 'dynamic'">
3635
<Linkage-secp256k1>dynamic</Linkage-secp256k1>
37-
<Linkage-libbitcoin>dynamic</Linkage-libbitcoin>
36+
<Linkage-libbitcoin-system>dynamic</Linkage-libbitcoin-system>
3837
<Linkage-libbitcoin-consensus>dynamic</Linkage-libbitcoin-consensus>
3938
<Linkage-libbitcoin-database>dynamic</Linkage-libbitcoin-database>
4039
<Linkage-libbitcoin-blockchain>dynamic</Linkage-libbitcoin-blockchain>
@@ -43,7 +42,7 @@
4342
</PropertyGroup>
4443
<PropertyGroup Condition="'$(DefaultLinkage)' == 'ltcg'">
4544
<Linkage-secp256k1>ltcg</Linkage-secp256k1>
46-
<Linkage-libbitcoin>ltcg</Linkage-libbitcoin>
45+
<Linkage-libbitcoin-system>ltcg</Linkage-libbitcoin-system>
4746
<Linkage-libbitcoin-consensus>ltcg</Linkage-libbitcoin-consensus>
4847
<Linkage-libbitcoin-database>ltcg</Linkage-libbitcoin-database>
4948
<Linkage-libbitcoin-blockchain>ltcg</Linkage-libbitcoin-blockchain>
@@ -52,7 +51,7 @@
5251
</PropertyGroup>
5352
<PropertyGroup Condition="'$(DefaultLinkage)' == 'static'">
5453
<Linkage-secp256k1>static</Linkage-secp256k1>
55-
<Linkage-libbitcoin>static</Linkage-libbitcoin>
54+
<Linkage-libbitcoin-system>static</Linkage-libbitcoin-system>
5655
<Linkage-libbitcoin-consensus>static</Linkage-libbitcoin-consensus>
5756
<Linkage-libbitcoin-database>static</Linkage-libbitcoin-database>
5857
<Linkage-libbitcoin-blockchain>static</Linkage-libbitcoin-blockchain>
@@ -61,15 +60,15 @@
6160
</PropertyGroup>
6261

6362
<!-- Messages -->
64-
63+
6564
<Target Name="LinkageInfo" BeforeTargets="PrepareForBuild">
66-
<Message Text="Linkage-secp256k1 : $(Linkage-secp256k1)" Importance="high"/>
67-
<Message Text="Linkage-libbitcoin : $(Linkage-libbitcoin)" Importance="high"/>
68-
<Message Text="Linkage-_consensus : $(Linkage-libbitcoin-consensus)" Importance="high"/>
69-
<Message Text="Linkage-_database : $(Linkage-libbitcoin-database)" Importance="high"/>
70-
<Message Text="Linkage-_blockchain : $(Linkage-libbitcoin-blockchain)" Importance="high"/>
71-
<Message Text="Linkage-_network : $(Linkage-libbitcoin-network)" Importance="high"/>
72-
<Message Text="Linkage-_node : $(Linkage-libbitcoin-node)" Importance="high"/>
65+
<Message Text="Linkage-secp256k1 : $(Linkage-secp256k1)" Importance="high"/>
66+
<Message Text="Linkage-_system : $(Linkage-libbitcoin-system)" Importance="high"/>
67+
<Message Text="Linkage-_consensus: $(Linkage-libbitcoin-consensus)" Importance="high"/>
68+
<Message Text="Linkage-_database : $(Linkage-libbitcoin-database)" Importance="high"/>
69+
<Message Text="Linkage-_blockchain: $(Linkage-libbitcoin-blockchain)" Importance="high"/>
70+
<Message Text="Linkage-_network : $(Linkage-libbitcoin-network)" Importance="high"/>
71+
<Message Text="Linkage-_node : $(Linkage-libbitcoin-node)" Importance="high"/>
7372
</Target>
7473

7574
</Project>

builds/msvc/vs2013/bn/bn.vcxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
| Copyright (c) 2014-2015 libbitcoin-node developers (see COPYING).
3+
| Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING).
44
|
55
| GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
66
|
@@ -99,7 +99,7 @@
9999
<Import Project="$(NuGetPackageRoot)boost_regex-vc120.1.57.0.0\build\native\boost_regex-vc120.targets" Condition="Exists('$(NuGetPackageRoot)boost_regex-vc120.1.57.0.0\build\native\boost_regex-vc120.targets')" />
100100
<Import Project="$(NuGetPackageRoot)boost_system-vc120.1.57.0.0\build\native\boost_system-vc120.targets" Condition="Exists('$(NuGetPackageRoot)boost_system-vc120.1.57.0.0\build\native\boost_system-vc120.targets')" />
101101
<Import Project="$(NuGetPackageRoot)boost_thread-vc120.1.57.0.0\build\native\boost_thread-vc120.targets" Condition="Exists('$(NuGetPackageRoot)boost_thread-vc120.1.57.0.0\build\native\boost_thread-vc120.targets')" />
102-
<Import Project="$(NuGetPackageRoot)secp256k1_vc120.0.1.0.16\build\native\secp256k1_vc120.targets" Condition="Exists('$(NuGetPackageRoot)secp256k1_vc120.0.1.0.16\build\native\secp256k1_vc120.targets')" />
102+
<Import Project="$(NuGetPackageRoot)secp256k1_vc120.0.1.0.19\build\native\secp256k1_vc120.targets" Condition="Exists('$(NuGetPackageRoot)secp256k1_vc120.0.1.0.19\build\native\secp256k1_vc120.targets')" />
103103
</ImportGroup>
104104
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
105105
<PropertyGroup>
@@ -118,7 +118,7 @@
118118
<Error Condition="!Exists('$(NuGetPackageRoot)boost_regex-vc120.1.57.0.0\build\native\boost_regex-vc120.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(NuGetPackageRoot)boost_regex-vc120.1.57.0.0\build\native\boost_regex-vc120.targets'))" />
119119
<Error Condition="!Exists('$(NuGetPackageRoot)boost_system-vc120.1.57.0.0\build\native\boost_system-vc120.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(NuGetPackageRoot)boost_system-vc120.1.57.0.0\build\native\boost_system-vc120.targets'))" />
120120
<Error Condition="!Exists('$(NuGetPackageRoot)boost_thread-vc120.1.57.0.0\build\native\boost_thread-vc120.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(NuGetPackageRoot)boost_thread-vc120.1.57.0.0\build\native\boost_thread-vc120.targets'))" />
121-
<Error Condition="!Exists('$(NuGetPackageRoot)secp256k1_vc120.0.1.0.16\build\native\secp256k1_vc120.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(NuGetPackageRoot)secp256k1_vc120.0.1.0.16\build\native\secp256k1_vc120.targets'))" />
121+
<Error Condition="!Exists('$(NuGetPackageRoot)secp256k1_vc120.0.1.0.19\build\native\secp256k1_vc120.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(NuGetPackageRoot)secp256k1_vc120.0.1.0.19\build\native\secp256k1_vc120.targets'))" />
122122
</Target>
123123
<ItemGroup>
124124
<ProjectReference Include="..\libbitcoin-node\libbitcoin-node.vcxproj">

0 commit comments

Comments
 (0)