Skip to content

Releases: reconhub/deployer

Deployer 20191024

24 Oct 12:42
Compare
Choose a tag to compare

Produced by @zkamvar via:

Rscript generate_deployer.R

Installation

Download the *.tar files in this release.

Expected MD5 hash:

85bb083c2ae4b000c589bcdf12ad7481  deployer_2019_10_24_base.tar
68c2c40c796d4b84686fe056c0232f6f  deployer_2019_10_24_extra.tar
575b3d280cfe62f3fe66a4cbb99e96f4  deployer_2019_10_24_macosx.tar
b8ee9e99d5d48b563e5ab39e6c75a70a  deployer_2019_10_24_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

md5file <- 'deployer_2019_10_24_md5sum.txt'
inlines <- readLines(md5file)
xx <- sub("^([0-9a-fA-F]*)(.*)", "\\1", inlines)
nmxx <- names(xx) <- sub("^[0-9a-fA-F]* [ |*](.*)", "\\1", inlines)
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = '\n', ...)
the_tars  <- tools::md5sum(dir(pattern = '^deployer_2019_10_24_(base|windows|macosx|extra)\\.tar$'))

class(the_tars) <- 'tar'
class(xx) <- 'tar'

the_tars
xx

identical(xx, the_tars)

(this will take several seconds to run)

To put back together, download these files and then run:

untar('deployer_deployer_2019_10_24_base.tar')
untar('deployer_deployer_2019_10_24_windows.tar')
untar('deployer_deployer_2019_10_24_macosx.tar')
untar('deployer_deployer_2019_10_24_extra.tar')

Deployer 20190911

11 Sep 16:11
Compare
Choose a tag to compare

Produced by @zkamvar via:

Rscript generate_deployer.R

Installation

Download the *.tar files in this release.

Expected MD5 hash:

719e8e7bfe27daa97d126c51861cdbad  deployer_2019_09_11_base.tar
11a8ee8013d1cf3279ef96a8dd4c1432  deployer_2019_09_11_extra.tar
af9fe67191c0a1fa37c9ed154ee59993  deployer_2019_09_11_macosx.tar
46da593eb6d50430c8d0a344f5e6b803  deployer_2019_09_11_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

md5file <- 'deployer_2019_09_11_md5sum.txt'
inlines <- readLines(md5file)
xx <- sub("^([0-9a-fA-F]*)(.*)", "\\1", inlines)
nmxx <- names(xx) <- sub("^[0-9a-fA-F]* [ |*](.*)", "\\1", inlines)
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = '\n', ...)
the_tars  <- tools::md5sum(dir(pattern = '^deployer_2019_09_11_(base|windows|macosx|extra)\\.tar$'))

class(the_tars) <- 'tar'
class(xx) <- 'tar'

the_tars
xx

identical(xx, the_tars)

(this will take several seconds to run)

To put back together, download these files and then run:

untar('deployer_deployer_2019_09_11_base.tar')
untar('deployer_deployer_2019_09_11_windows.tar')
untar('deployer_deployer_2019_09_11_macosx.tar')
untar('deployer_deployer_2019_09_11_extra.tar')

Deployer 20190513

14 May 08:24
1ed6ee4
Compare
Choose a tag to compare

Produced by @zkamvar via:

Rscript generate_deployer.R

Installation

Download the *.tar files in this release.

Expected MD5 hash:

eb977293354686d8cf541fcc0da7c441  deployer_2019_05_13_base.tar
f17b59b588d47d7e0efc65a3a2957426  deployer_2019_05_13_extra.tar
d91cc50f65af7a032223c4dab21140a8  deployer_2019_05_13_macosx.tar
da78bdf9ef2feca1fcf82e59b2b9d85d  deployer_2019_05_13_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

md5file <- 'deployer_2019_05_13_md5sum.txt'
inlines <- readLines(md5file)
xx <- sub("^([0-9a-fA-F]*)(.*)", "\\1", inlines)
nmxx <- names(xx) <- sub("^[0-9a-fA-F]* [ |*](.*)", "\\1", inlines)
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = '\n', ...)
the_tars  <- tools::md5sum(dir(pattern = '^deployer_2019_05_13_(base|windows|macosx|extra)\\.tar$'))

class(the_tars) <- 'tar'
class(xx) <- 'tar'

the_tars
xx

identical(xx, the_tars)

(this will take several seconds to run)

To put back together, download these files and then run:

untar('deployer_deployer_2019_05_13_base.tar')
untar('deployer_deployer_2019_05_13_windows.tar')
untar('deployer_deployer_2019_05_13_macosx.tar')
untar('deployer_deployer_2019_05_13_extra.tar')

Deployer 20190325

25 Mar 14:57
e541d61
Compare
Choose a tag to compare

Produced by @zkamvar via:

nomad::build("reconhub/deployer", "deployer_2019_03_25")

Much like the previous release, we will separate the bundles by os type:

path <- "deployer_2019_03_25"
sys_tar <- Sys.which("tar")
tar(sprintf("%s_base.tar", path), path,
    extra_flags = sprintf("-v --exclude=%s/bin", path),
    tar = sys_tar)
tar(sprintf("%s_windows.tar", path), file.path(path, "bin/windows"),
    extra_flags = "-v",
    tar = sys_tar)
tar(sprintf("%s_macosx.tar", path), file.path(path, "bin/macosx"),
    extra_flags = "-v",
    tar = sys_tar)

# calculate and print md5sums
the_tars  <- tools::md5sum(dir(pattern = "\\.tar$"))
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = "\n")
class(the_tars) <- "tar"
the_tars

Installation

Download the three .tar files in this release.

Expected MD5 hash:

9e00cd79c938486151d255766cf14375  deployer_2019_03_25_base.tar
86dd7e27307a8155a61630b4dd7f3aa3  deployer_2019_03_25_macosx.tar
910230cf23e00f856879879103030427  deployer_2019_03_25_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

tools::md5sum(dir(pattern = "\\.tar$"))

(this will take several seconds to run)

To put back together, download these three files and then run:

untar("deployer_2019_03_25_base.tar")
untar("deployer_2019_03_25_windows.tar")
untar("deployer_2019_03_25_macosx.tar")

Deployer 20180919

19 Sep 10:24
Compare
Choose a tag to compare

Produced by @zkamvar via:

nomad::build("reconhub/deployer", "20180919")

Much like the previous release, we will separate the bundles by os type:

path <- "20180919"
sys_tar <- Sys.which("tar")
tar(sprintf("%s_base.tar", path), path,
    extra_flags = sprintf("-v --exclude=%s/bin", path),
    tar = sys_tar)
tar(sprintf("%s_windows.tar", path), file.path(path, "bin/windows"),
    extra_flags = "-v",
    tar = sys_tar)
tar(sprintf("%s_macosx.tar", path), file.path(path, "bin/macosx"),
    extra_flags = "-v",
    tar = sys_tar)

# calculate and print md5sums
the_tars  <- tools::md5sum(dir(pattern = "\\.tar$"))
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = "\n")
class(the_tars) <- "tar"
the_tars

Installation

Download the three .tar files in this release.

Expected MD5 hash:

c4a4bda5fb2d5d33b2fe95684ce64cbb  20180919_base.tar                                                                                                                                      
d5565339ac1473751d46fc4d46b9250a  20180919_macosx.tar                                                                                                                                    
e82a97daec020ae552fc37f6c7c2395b  20180919_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

tools::md5sum(dir(pattern = "\.tar$"))

(this will take several seconds to run)

To put back together, download these three files and then run:

untar("20180919_base.tar")
untar("20180919_windows.tar")
untar("20180919_macosx.tar")

Deployer 20180516

16 May 13:49
Compare
Choose a tag to compare

Produced by @richfitz via:

nomad::build("reconhub/deployer", "20180516")

This archive is too big for github's file download, so we split it up with:

path <- "20180516"
sys_tar <- Sys.which("tar")
tar(sprintf("%s_base.tar", path), path,
    extra_flags = sprintf("-v --exclude=%s/bin", path),
    tar = sys_tar)
tar(sprintf("%s_windows.tar", path), file.path(path, "bin/windows"),
    extra_flags = "-v",
    tar = sys_tar)
tar(sprintf("%s_macosx.tar", path), file.path(path, "bin/macosx"),
    extra_flags = "-v",
    tar = sys_tar)

Installation

Download the three .tar files in this release.

Expected MD5 hash:

8b6e60bff376d73cd42996a6665c1d31  20180516_base.tar
5fab38961d30ee35327c5e8de5e63323  20180516_macosx.tar
10b1bd35adbf3ded12c929e654bf03b9  20180516_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

tools::md5sum(dir(pattern = "\\.tar$"))

(this will take several seconds to run)

To put back together, download these three files and then run:

untar("20180516_base.tar")
untar("20180516_windows.tar")
untar("20180516_macosx.tar")