This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for rust on "Red Hat Enterprise Linux Server release 7.4 (Maipo)" | |
| Build date: 2018-12-08 13:39:51 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for gcc on "Red Hat Enterprise Linux Server release 7.3 (Maipo)" | |
| Build date: 2018-03-16 16:14:02 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # initialization file (not found) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: Configuration | |
| set VERSION=0.1.8 | |
| set FILE=progressbar-%VERSION%.zip | |
| set DIR=progressbar-%VERSION% | |
| set URL=https://github.com/limix/progressbar/archive/%VERSION%.zip | |
| :: Ancient Windows don't support TLS 1.1 and 1.2, so we fall back to insecure download. | |
| set Version= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Attention! | |
| :: Please, refer to the https://github.com/horta/zlib.install repository | |
| :: for an up-to-date version of this installer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: Configuration | |
| set VERSION=1.3.2 | |
| set FILE=zstd-%VERSION%.zip | |
| set DIR=zstd-%VERSION% | |
| set URL=https://github.com/facebook/zstd/archive/v%VERSION%.zip | |
| echo [0/5] Library(zstd==%VERSION%) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| VERSION=1.3.1 | |
| FILE=zstd-$VERSION.tar.gz | |
| DIR=zstd-$VERSION | |
| URL=https://github.com/facebook/zstd/archive/v$VERSION.tar.gz | |
| rm /tmp/zstd.XXXX.log >/dev/null 2>&1 || true | |
| logfile=$(mktemp /tmp/zstd.XXXX.log) |