Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
652 changes: 652 additions & 0 deletions COPYING

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions builds/cmake/install-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ source_archive()
read -p "Replace '${PROJECT}' directory with intended contents? [y/N] " CONFIRM
fi

if [[ "${CONFIRM,,}" == "y" ]]; then
if [[ "$(printf '%s' "${CONFIRM}" | tr '[:upper:]' '[:lower:]')" == "y" ]]; then
remove_directory_force "${PROJECT}"
else
msg_error "Aborted installation."
Expand All @@ -576,10 +576,14 @@ source_archive()

local TAR="tar"
local WGET="wget --quiet"
local CURL="curl --fail --silent --show-error --location"

# retrieve file
${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
# ${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
# retrieve file, preferring wget (curl fallback for macOS)
if command -v wget >/dev/null 2>&1; then
${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
else
${CURL} --output "${FILENAME}" "${URL_BASE}${FILENAME}"
fi

# extract to expected path
${TAR} --extract --file "${FILENAME}" --${COMPRESSION} --strip-components=1
Expand Down Expand Up @@ -640,7 +644,7 @@ source_github()
read -p "Replace '${REPOSITORY}' directory with intended contents? [y/N] " CONFIRM
fi

if [[ "${CONFIRM,,}" == "y" ]]; then
if [[ "$(printf '%s' "${CONFIRM}" | tr '[:upper:]' '[:lower:]')" == "y" ]]; then
remove_directory_force "${REPOSITORY}"
else
msg_error "Aborted installation."
Expand Down
14 changes: 9 additions & 5 deletions builds/cmake/install-presets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ source_archive()
read -p "Replace '${PROJECT}' directory with intended contents? [y/N] " CONFIRM
fi

if [[ "${CONFIRM,,}" == "y" ]]; then
if [[ "$(printf '%s' "${CONFIRM}" | tr '[:upper:]' '[:lower:]')" == "y" ]]; then
remove_directory_force "${PROJECT}"
else
msg_error "Aborted installation."
Expand All @@ -592,10 +592,14 @@ source_archive()

local TAR="tar"
local WGET="wget --quiet"
local CURL="curl --fail --silent --show-error --location"

# retrieve file
${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
# ${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
# retrieve file, preferring wget (curl fallback for macOS)
if command -v wget >/dev/null 2>&1; then
${WGET} --output-document "${FILENAME}" "${URL_BASE}${FILENAME}"
else
${CURL} --output "${FILENAME}" "${URL_BASE}${FILENAME}"
fi

# extract to expected path
${TAR} --extract --file "${FILENAME}" --${COMPRESSION} --strip-components=1
Expand Down Expand Up @@ -656,7 +660,7 @@ source_github()
read -p "Replace '${REPOSITORY}' directory with intended contents? [y/N] " CONFIRM
fi

if [[ "${CONFIRM,,}" == "y" ]]; then
if [[ "$(printf '%s' "${CONFIRM}" | tr '[:upper:]' '[:lower:]')" == "y" ]]; then
remove_directory_force "${REPOSITORY}"
else
msg_error "Aborted installation."
Expand Down
29 changes: 1 addition & 28 deletions builds/gnu/AUTHORS
Original file line number Diff line number Diff line change
@@ -1,28 +1 @@
commits libbitcoin developers
--------------------------------------------
1969 Eric Voskuil (evoskuil)
1256 Amir Taaki (genjix)
1562 Phillip Mienk (pmienk)
90 William Swanson (swansontec)
39 Kamil Domański (kdomanski)
37 Neill Miller (thecodefactory)
26 Patrick Strateman (phantomcircuit)
25 Pablo Castellano (pablog)
11 Robert Williamson
5 Noel Maersk (veox)
4 Jan Engelhardt
4 Peter Hille (png!das-system)
2 mlmikael
2 Jake Hickey (shunyata)
1 Andy Weidenbaum
1 Bardi Harborow
1 Ben Holden-Crowther
1 Chang Lan
1 Dave Huseby
1 Jaromil
1 Kevin Johnson
1 Omid Aladini
1 Rafał Krupiński
1 Yarvis Hatsa
1 hao.chen
1 Lucas Betschart (lclc)
Use command 'git shortlog -sne' for latest authors log.
Loading
Loading