diff --git a/LICENSE b/LICENSE
index 00d2e135a7..68a49daad8 100644
--- a/LICENSE
+++ b/LICENSE
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
-For more information, please refer to
\ No newline at end of file
+For more information, please refer to
diff --git a/README.md b/README.md
index 008d089bf5..8c9d6b3ca3 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Requirements:
To install:
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
-
+
Once installed, run `scoop help` for instructions.
What does Scoop do?
@@ -51,4 +51,4 @@ The apps that install best with Scoop are commonly called "portable" apps: i.e.
Since installers are common, Scoop supports them too (and their uninstallers).
-Scoop is also great at handling single-file programs and Powershell scripts. These don't even need to be compressed. See the [runat](https://github.com/lukesampson/scoop/blob/master/bucket/runat.json) package for an example: it's really just a GitHub gist.
\ No newline at end of file
+Scoop is also great at handling single-file programs and Powershell scripts. These don't even need to be compressed. See the [runat](https://github.com/lukesampson/scoop/blob/master/bucket/runat.json) package for an example: it's really just a GitHub gist.
diff --git a/appveyor.yml b/appveyor.yml
index 32bd4c87af..ee9e21227d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,7 +1,7 @@
version: "{build}-{branch}"
branches:
- except:
+ except:
- gh-pages
init:
diff --git a/bin/checkver.ps1 b/bin/checkver.ps1
index 0c83210e28..e0b9fae2d2 100644
--- a/bin/checkver.ps1
+++ b/bin/checkver.ps1
@@ -15,75 +15,75 @@ if($app) { $search = $app }
# get apps to check
$queue = @()
gci $dir "$search.json" | % {
- $json = parse_json "$dir\$_"
- if($json.checkver) {
- $queue += ,@($_, $json)
- }
+ $json = parse_json "$dir\$_"
+ if($json.checkver) {
+ $queue += ,@($_, $json)
+ }
}
# clear any existing events
get-event | % {
- remove-event $_.sourceidentifier
+ remove-event $_.sourceidentifier
}
# start all downloads
$queue | % {
- $wc = new-object net.webclient
- register-objectevent $wc downloadstringcompleted -ea stop | out-null
+ $wc = new-object net.webclient
+ register-objectevent $wc downloadstringcompleted -ea stop | out-null
- $name, $json = $_
+ $name, $json = $_
- $url = $json.checkver.url
- if(!$url) { $url = $json.homepage }
+ $url = $json.checkver.url
+ if(!$url) { $url = $json.homepage }
- $state = new-object psobject @{
- app = (strip_ext $name);
- url = $url;
- json = $json;
- }
+ $state = new-object psobject @{
+ app = (strip_ext $name);
+ url = $url;
+ json = $json;
+ }
- $wc.downloadstringasync($url, $state)
+ $wc.downloadstringasync($url, $state)
}
# wait for all to complete
$in_progress = $queue.length
while($in_progress -gt 0) {
- $ev = wait-event
- remove-event $ev.sourceidentifier
- $in_progress--
-
- $state = $ev.sourceeventargs.userstate
- $app = $state.app
- $json = $state.json
- $url = $state.url
- $expected_ver = $json.version
-
- $err = $ev.sourceeventargs.error
- $page = $ev.sourceeventargs.result
-
- $regexp = $json.checkver.re
- if(!$regexp) { $regexp = $json.checkver }
-
- $regexp = "(?s)$regexp"
-
- write-host "$app`: " -nonewline
-
- if($err) {
- write-host "ERROR: $err" -f darkyellow
- } else {
- if($page -match $regexp) {
- $ver = $matches[1]
- if($ver -eq $expected_ver) {
- write-host "$ver" -f darkgreen
- } else {
- write-host "$ver" -f darkred -nonewline
- write-host " (scoop version is $expected_ver)"
- }
-
- } else {
- write-host "couldn't match '$regexp' in $url" -f darkred
- }
- }
+ $ev = wait-event
+ remove-event $ev.sourceidentifier
+ $in_progress--
+
+ $state = $ev.sourceeventargs.userstate
+ $app = $state.app
+ $json = $state.json
+ $url = $state.url
+ $expected_ver = $json.version
+
+ $err = $ev.sourceeventargs.error
+ $page = $ev.sourceeventargs.result
+
+ $regexp = $json.checkver.re
+ if(!$regexp) { $regexp = $json.checkver }
+
+ $regexp = "(?s)$regexp"
+
+ write-host "$app`: " -nonewline
+
+ if($err) {
+ write-host "ERROR: $err" -f darkyellow
+ } else {
+ if($page -match $regexp) {
+ $ver = $matches[1]
+ if($ver -eq $expected_ver) {
+ write-host "$ver" -f darkgreen
+ } else {
+ write-host "$ver" -f darkred -nonewline
+ write-host " (scoop version is $expected_ver)"
+ }
+
+ } else {
+ write-host "couldn't match '$regexp' in $url" -f darkred
+ }
+ }
}
<#
@@ -99,15 +99,15 @@ if(!$regexp) { $regexp = $json.checkver }
$page = $wc.downloadstring($url)
if($page -match $regexp) {
- $ver = $matches[1]
- if($ver -eq $expected_ver) {
- write-host "$ver" -f darkgreen
- } else {
- write-host "$ver" -f darkred -nonewline
- write-host " (scoop version is $expected_ver)"
- }
-
+ $ver = $matches[1]
+ if($ver -eq $expected_ver) {
+ write-host "$ver" -f darkgreen
+ } else {
+ write-host "$ver" -f darkred -nonewline
+ write-host " (scoop version is $expected_ver)"
+ }
+
} else {
- write-host "couldn't match '$regexp' in $url" -f darkred
+ write-host "couldn't match '$regexp' in $url" -f darkred
}
-#>
\ No newline at end of file
+#>
diff --git a/bin/install.ps1 b/bin/install.ps1
index 01028fc66f..706461a09a 100644
--- a/bin/install.ps1
+++ b/bin/install.ps1
@@ -11,9 +11,9 @@ iex (new-object net.webclient).downloadstring($core_url)
# prep
if(installed 'scoop') {
- write-host "scoop is already installed. run 'scoop update' to get the latest version." -f red
- # don't abort if invoked with iex——that would close the PS session
- if($myinvocation.commandorigin -eq 'Internal') { return } else { exit 1 }
+ write-host "scoop is already installed. run 'scoop update' to get the latest version." -f red
+ # don't abort if invoked with iex——that would close the PS session
+ if($myinvocation.commandorigin -eq 'Internal') { return } else { exit 1 }
}
$dir = ensure (versiondir 'scoop' 'current')
diff --git a/bin/refresh.ps1 b/bin/refresh.ps1
index ec55babdac..5654a01bf1 100644
--- a/bin/refresh.ps1
+++ b/bin/refresh.ps1
@@ -16,4 +16,4 @@ echo 'creating shim...'
shim "$dest\bin\scoop.ps1" $false
ensure_scoop_in_path
-success 'scoop was refreshed!'
\ No newline at end of file
+success 'scoop was refreshed!'
diff --git a/bin/scoop.ps1 b/bin/scoop.ps1
index 857b9d0adb..fcd08627df 100644
--- a/bin/scoop.ps1
+++ b/bin/scoop.ps1
@@ -12,4 +12,4 @@ $commands = commands
if (@($null, '-h', '--help', '/?') -contains $cmd) { exec 'help' $args }
elseif ($commands -contains $cmd) { exec $cmd $args }
-else { "scoop: '$cmd' isn't a scoop command. See 'scoop help'"; exit 1 }
\ No newline at end of file
+else { "scoop: '$cmd' isn't a scoop command. See 'scoop help'"; exit 1 }
diff --git a/bin/test.ps1 b/bin/test.ps1
index 1fdb26b981..a32e23c195 100644
--- a/bin/test.ps1
+++ b/bin/test.ps1
@@ -1 +1 @@
-invoke-pester $psscriptroot\..\test
\ No newline at end of file
+invoke-pester $psscriptroot\..\test
diff --git a/bin/uninstall.ps1 b/bin/uninstall.ps1
index d0840fd9d9..592f9dde55 100644
--- a/bin/uninstall.ps1
+++ b/bin/uninstall.ps1
@@ -6,7 +6,7 @@ param($global)
. "$psscriptroot\..\lib\manifest.ps1"
if($global -and !(is_admin)) {
- "ERROR: you need admin rights to uninstall globally"; exit 1
+ "ERROR: you need admin rights to uninstall globally"; exit 1
}
warn 'this will uninstall scoop and all the programs that have been installed with scoop!'
@@ -15,47 +15,47 @@ if($yn -notlike 'y*') { exit }
$errors = $false
function do_uninstall($app, $global) {
- $version = current_version $app $global
- $dir = versiondir $app $version $global
- $manifest = installed_manifest $app $version $global
- $install = install_info $app $version $global
- $architecture = $install.architecture
+ $version = current_version $app $global
+ $dir = versiondir $app $version $global
+ $manifest = installed_manifest $app $version $global
+ $install = install_info $app $version $global
+ $architecture = $install.architecture
- echo "uninstalling $app"
- run_uninstaller $manifest $architecture $dir
- rm_shims $manifest $global
- env_rm_path $manifest $dir $global
- env_rm $manifest $global
+ echo "uninstalling $app"
+ run_uninstaller $manifest $architecture $dir
+ rm_shims $manifest $global
+ env_rm_path $manifest $dir $global
+ env_rm $manifest $global
- $appdir = appdir $app $global
- try {
- rm -r -force $appdir -ea stop
- } catch {
- $errors = $true
- warn "couldn't remove $(friendly_path $appdir): $_.exception"
- }
+ $appdir = appdir $app $global
+ try {
+ rm -r -force $appdir -ea stop
+ } catch {
+ $errors = $true
+ warn "couldn't remove $(friendly_path $appdir): $_.exception"
+ }
}
function rm_dir($dir) {
- try {
- rm -r -force $dir -ea stop
- } catch {
- abort "couldn't remove $(friendly_path $dir): $_"
- }
+ try {
+ rm -r -force $dir -ea stop
+ } catch {
+ abort "couldn't remove $(friendly_path $dir): $_"
+ }
}
# run uninstallation for each app if necessary, continuing if there's
# a problem deleting a directory (which is quite likely)
if($global) {
- installed_apps $true | % { # global apps
- do_uninstall $_ $true
- }
+ installed_apps $true | % { # global apps
+ do_uninstall $_ $true
+ }
}
installed_apps $false | % { # local apps
- do_uninstall $_ $false
+ do_uninstall $_ $false
}
if($errors) {
- abort "not all apps could be deleted. try again or restart"
+ abort "not all apps could be deleted. try again or restart"
}
rm_dir $scoopdir
@@ -64,4 +64,4 @@ if($global) { rm_dir $globaldir }
remove_from_path (shimdir $false)
if($global) { remove_from_path (shimdir $true) }
-success "scoop has been uninstalled"
\ No newline at end of file
+success "scoop has been uninstalled"
diff --git a/bucket/7zip.json b/bucket/7zip.json
index a5945e3145..e058154fe3 100644
--- a/bucket/7zip.json
+++ b/bucket/7zip.json
@@ -1,18 +1,18 @@
{
- "homepage": "http://www.7-zip.org/",
- "license": "http://www.7-zip.org/license.txt",
- "version": "9.38",
- "architecture": {
- "64bit": {
- "url": "http://www.7-zip.org/a/7z938-x64.msi",
- "hash": "7c8e873991c82ad9cfcdbdf45254ea6101e9a645e12977dcd518979e50fdedf3"
- },
- "32bit": {
- "url": "http://www.7-zip.org/a/7z938.msi",
- "hash": "c48f13efbde87f370f2a70885df55c1e53f2c791c2007f9587810f915fecc0d8"
- }
- },
- "extract_dir": "Files/7-Zip",
- "bin": "7z.exe",
- "checkver": "Download 7-zip ([^\\ ]+)"
+ "homepage": "http://www.7-zip.org/",
+ "license": "http://www.7-zip.org/license.txt",
+ "version": "9.38",
+ "architecture": {
+ "64bit": {
+ "url": "http://www.7-zip.org/a/7z938-x64.msi",
+ "hash": "7c8e873991c82ad9cfcdbdf45254ea6101e9a645e12977dcd518979e50fdedf3"
+ },
+ "32bit": {
+ "url": "http://www.7-zip.org/a/7z938.msi",
+ "hash": "c48f13efbde87f370f2a70885df55c1e53f2c791c2007f9587810f915fecc0d8"
+ }
+ },
+ "extract_dir": "Files/7-Zip",
+ "bin": "7z.exe",
+ "checkver": "Download 7-zip ([^\\ ]+)"
}
diff --git a/bucket/apache.json b/bucket/apache.json
index 46a3b519eb..a1c77169b5 100644
--- a/bucket/apache.json
+++ b/bucket/apache.json
@@ -1,30 +1,30 @@
{
- "homepage": "http://www.apachelounge.com",
- "version": "2.4.12",
- "license": "Apache 2.0",
- "url": "http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.12-win32-VC11.zip",
- "hash": "DBA963DB9819CD2AE3CB0E970F4159E199981F9BA0B33C537395C6AE1222951D",
- "extract_dir": "Apache24",
- "bin": [
- "bin\\ab.exe",
- "bin\\abs.exe",
- "bin\\htcacheclean.exe",
- "bin\\htdbm.exe",
- "bin\\htdigest.exe",
- "bin\\htpasswd.exe",
- "bin\\httpd.exe",
- "bin\\httxt2dbm.exe",
- "bin\\logresolve.exe",
- "bin\\rotatelogs.exe"
- ],
- "post_install": "
+ "homepage": "http://www.apachelounge.com",
+ "version": "2.4.12",
+ "license": "Apache 2.0",
+ "url": "http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.12-win32-VC11.zip",
+ "hash": "DBA963DB9819CD2AE3CB0E970F4159E199981F9BA0B33C537395C6AE1222951D",
+ "extract_dir": "Apache24",
+ "bin": [
+ "bin\\ab.exe",
+ "bin\\abs.exe",
+ "bin\\htcacheclean.exe",
+ "bin\\htdbm.exe",
+ "bin\\htdigest.exe",
+ "bin\\htpasswd.exe",
+ "bin\\httpd.exe",
+ "bin\\httxt2dbm.exe",
+ "bin\\logresolve.exe",
+ "bin\\rotatelogs.exe"
+ ],
+ "post_install": "
# set directory in httpd.conf
$conf = \"$dir/conf/httpd.conf\"
$root=(scoop which httpd | split-path -res -par | split-path -par) -replace '\\\\', '/';
(gc $conf) | % { $_ -replace 'c:/Apache24', \"$root\" } | sc $conf
",
- "checkver": {
- "url": "http://www.apachelounge.com/download/",
- "re": "Apache ([0-9\\.]+) Win64"
- }
+ "checkver": {
+ "url": "http://www.apachelounge.com/download/",
+ "re": "Apache ([0-9\\.]+) Win64"
+ }
}
diff --git a/bucket/apngasm.json b/bucket/apngasm.json
index 0b6ca15292..38cbabda42 100644
--- a/bucket/apngasm.json
+++ b/bucket/apngasm.json
@@ -1,9 +1,9 @@
{
- "homepage": "https://github.com/apngasm/apngasm",
- "version": "3.0.0",
- "url": "http://files.genshin.org/apngasm/apngasm-cli.7z",
- "hash": "cebb7eab13d56b5ade45ef50abd16bae4b63a5505192f032593ad67c1d1f2e2c",
- "bin": [
- [ "apngasm-cli.exe", "apngasm" ]
- ]
-}
\ No newline at end of file
+ "homepage": "https://github.com/apngasm/apngasm",
+ "version": "3.0.0",
+ "url": "http://files.genshin.org/apngasm/apngasm-cli.7z",
+ "hash": "cebb7eab13d56b5ade45ef50abd16bae4b63a5505192f032593ad67c1d1f2e2c",
+ "bin": [
+ [ "apngasm-cli.exe", "apngasm" ]
+ ]
+}
diff --git a/bucket/bfg.json b/bucket/bfg.json
index aea7488b16..9bb670394f 100644
--- a/bucket/bfg.json
+++ b/bucket/bfg.json
@@ -9,6 +9,6 @@
"env_set": { "BFG_HOME": "$dir" },
"pre_install": "
$exe = 'java -jar $env:BFG_HOME\\bfg-1.12.3.jar $args'
- write-output $exe | out-file -filepath $dir\\bfg.ps1
+ write-output $exe | out-file -filepath $dir\\bfg.ps1
"
}
diff --git a/bucket/busybox.json b/bucket/busybox.json
index 1c7654921f..ef60993b6a 100644
--- a/bucket/busybox.json
+++ b/bucket/busybox.json
@@ -1,134 +1,134 @@
{
- "homepage": "http://intgat.tigress.co.uk/rmy/busybox/index.html",
- "version": "1.24.0-TIG-1778",
- "license": "GPL2",
- "url": "http://intgat.tigress.co.uk/rmy/files/busybox/busybox-w32-TIG-1778-g15efec6.exe#/busybox.exe",
- "hash": "0869cd27010fb972b7a4f3cc99671b5fbd1f3109bb38adf66299e0f011e6333f",
- "bin": [
- "busybox.exe",
- [ "busybox.exe", "ar", "ar" ],
- [ "busybox.exe", "ash", "ash" ],
- [ "busybox.exe", "awk", "awk" ],
- [ "busybox.exe", "base64", "base64" ],
- [ "busybox.exe", "basename", "basename" ],
- [ "busybox.exe", "bash", "bash", "-l" ],
- [ "busybox.exe", "bbconfig", "bbconfig" ],
- [ "busybox.exe", "bunzip2", "bunzip2" ],
- [ "busybox.exe", "bzcat", "bzcat" ],
- [ "busybox.exe", "bzip2", "bzip2" ],
- [ "busybox.exe", "cal", "cal" ],
- [ "busybox.exe", "cat", "cat" ],
- [ "busybox.exe", "catv", "catv" ],
- [ "busybox.exe", "chmod", "chmod" ],
- [ "busybox.exe", "cksum", "cksum" ],
- [ "busybox.exe", "clear", "clear" ],
- [ "busybox.exe", "cmp", "cmp" ],
- [ "busybox.exe", "comm", "comm" ],
- [ "busybox.exe", "cp", "cp" ],
- [ "busybox.exe", "cpio", "cpio" ],
- [ "busybox.exe", "cut", "cut" ],
- [ "busybox.exe", "date", "date" ],
- [ "busybox.exe", "dc", "dc" ],
- [ "busybox.exe", "dd", "dd" ],
- [ "busybox.exe", "df", "df" ],
- [ "busybox.exe", "diff", "diff" ],
- [ "busybox.exe", "dirname", "dirname" ],
- [ "busybox.exe", "dos2unix", "dos2unix" ],
- [ "busybox.exe", "du", "du" ],
- [ "busybox.exe", "echo", "echo" ],
- [ "busybox.exe", "ed", "ed" ],
- [ "busybox.exe", "egrep", "egrep" ],
- [ "busybox.exe", "env", "env" ],
- [ "busybox.exe", "expand", "expand" ],
- [ "busybox.exe", "expr", "expr" ],
- [ "busybox.exe", "false", "false" ],
- [ "busybox.exe", "fgrep", "fgrep" ],
- [ "busybox.exe", "find", "find" ],
- [ "busybox.exe", "fold", "fold" ],
- [ "busybox.exe", "getopt", "getopt" ],
- [ "busybox.exe", "grep", "grep" ],
- [ "busybox.exe", "gunzip", "gunzip" ],
- [ "busybox.exe", "gzip", "gzip" ],
- [ "busybox.exe", "hd", "hd" ],
- [ "busybox.exe", "head", "head" ],
- [ "busybox.exe", "hexdump", "hexdump" ],
- [ "busybox.exe", "kill", "kill" ],
- [ "busybox.exe", "killall", "killall" ],
- [ "busybox.exe", "logname", "logname" ],
- [ "busybox.exe", "ls", "ls" ],
- [ "busybox.exe", "lzcat", "lzcat" ],
- [ "busybox.exe", "lzma", "lzma" ],
- [ "busybox.exe", "lzop", "lzop" ],
- [ "busybox.exe", "lzopcat", "lzopcat" ],
- [ "busybox.exe", "man", "man" ],
- [ "busybox.exe", "md5sum", "md5sum" ],
- [ "busybox.exe", "mkdir", "mkdir" ],
- [ "busybox.exe", "mktemp", "mktemp" ],
- [ "busybox.exe", "mv", "mv" ],
- [ "busybox.exe", "od", "od" ],
- [ "busybox.exe", "pgrep", "pgrep" ],
- [ "busybox.exe", "pidof", "pidof" ],
- [ "busybox.exe", "printenv", "printenv" ],
- [ "busybox.exe", "printf", "printf" ],
- [ "busybox.exe", "ps", "ps" ],
- [ "busybox.exe", "pwd", "pwd" ],
- [ "busybox.exe", "rm", "rm" ],
- [ "busybox.exe", "rmdir", "rmdir" ],
- [ "busybox.exe", "sed", "sed" ],
- [ "busybox.exe", "seq", "seq" ],
- [ "busybox.exe", "sh", "sh" ],
- [ "busybox.exe", "sha1sum", "sha1sum" ],
- [ "busybox.exe", "sha256sum", "sha256sum" ],
- [ "busybox.exe", "sha3sum", "sha3sum" ],
- [ "busybox.exe", "sha512sum", "sha512sum" ],
- [ "busybox.exe", "sleep", "sleep" ],
- [ "busybox.exe", "sort", "sort" ],
- [ "busybox.exe", "split", "split" ],
- [ "busybox.exe", "stat", "stat" ],
- [ "busybox.exe", "strings", "strings" ],
- [ "busybox.exe", "sum", "sum" ],
- [ "busybox.exe", "tac", "tac" ],
- [ "busybox.exe", "tail", "tail" ],
- [ "busybox.exe", "tar", "tar" ],
- [ "busybox.exe", "tee", "tee" ],
- [ "busybox.exe", "test", "test" ],
- [ "busybox.exe", "touch", "touch" ],
- [ "busybox.exe", "tr", "tr" ],
- [ "busybox.exe", "true", "true" ],
- [ "busybox.exe", "truncate", "truncate" ],
- [ "busybox.exe", "uname", "uname" ],
- [ "busybox.exe", "uncompress", "uncompress" ],
- [ "busybox.exe", "unexpand", "unexpand" ],
- [ "busybox.exe", "uniq", "uniq" ],
- [ "busybox.exe", "unix2dos", "unix2dos" ],
- [ "busybox.exe", "unlink", "unlink" ],
- [ "busybox.exe", "unlzma", "unlzma" ],
- [ "busybox.exe", "unlzop", "unlzop" ],
- [ "busybox.exe", "unxz", "unxz" ],
- [ "busybox.exe", "unzip", "unzip" ],
- [ "busybox.exe", "usleep", "usleep" ],
- [ "busybox.exe", "uudecode", "uudecode" ],
- [ "busybox.exe", "uuencode", "uuencode" ],
- [ "busybox.exe", "vi", "vi" ],
- [ "busybox.exe", "wc", "wc" ],
- [ "busybox.exe", "wget", "wget" ],
- [ "busybox.exe", "which", "which" ],
- [ "busybox.exe", "whoami", "whoami" ],
- [ "busybox.exe", "xargs", "xargs" ],
- [ "busybox.exe", "xz", "xz" ],
- [ "busybox.exe", "xzcat", "xzcat" ],
- [ "busybox.exe", "yes", "yes" ],
- [ "busybox.exe", "zcat", "zcat" ]
- ],
- "post_install": "
- if(!(test-path ~/.profile)) {
- 'creating ~/.profile'
+ "homepage": "http://intgat.tigress.co.uk/rmy/busybox/index.html",
+ "version": "1.24.0-TIG-1778",
+ "license": "GPL2",
+ "url": "http://intgat.tigress.co.uk/rmy/files/busybox/busybox-w32-TIG-1778-g15efec6.exe#/busybox.exe",
+ "hash": "0869cd27010fb972b7a4f3cc99671b5fbd1f3109bb38adf66299e0f011e6333f",
+ "bin": [
+ "busybox.exe",
+ [ "busybox.exe", "ar", "ar" ],
+ [ "busybox.exe", "ash", "ash" ],
+ [ "busybox.exe", "awk", "awk" ],
+ [ "busybox.exe", "base64", "base64" ],
+ [ "busybox.exe", "basename", "basename" ],
+ [ "busybox.exe", "bash", "bash", "-l" ],
+ [ "busybox.exe", "bbconfig", "bbconfig" ],
+ [ "busybox.exe", "bunzip2", "bunzip2" ],
+ [ "busybox.exe", "bzcat", "bzcat" ],
+ [ "busybox.exe", "bzip2", "bzip2" ],
+ [ "busybox.exe", "cal", "cal" ],
+ [ "busybox.exe", "cat", "cat" ],
+ [ "busybox.exe", "catv", "catv" ],
+ [ "busybox.exe", "chmod", "chmod" ],
+ [ "busybox.exe", "cksum", "cksum" ],
+ [ "busybox.exe", "clear", "clear" ],
+ [ "busybox.exe", "cmp", "cmp" ],
+ [ "busybox.exe", "comm", "comm" ],
+ [ "busybox.exe", "cp", "cp" ],
+ [ "busybox.exe", "cpio", "cpio" ],
+ [ "busybox.exe", "cut", "cut" ],
+ [ "busybox.exe", "date", "date" ],
+ [ "busybox.exe", "dc", "dc" ],
+ [ "busybox.exe", "dd", "dd" ],
+ [ "busybox.exe", "df", "df" ],
+ [ "busybox.exe", "diff", "diff" ],
+ [ "busybox.exe", "dirname", "dirname" ],
+ [ "busybox.exe", "dos2unix", "dos2unix" ],
+ [ "busybox.exe", "du", "du" ],
+ [ "busybox.exe", "echo", "echo" ],
+ [ "busybox.exe", "ed", "ed" ],
+ [ "busybox.exe", "egrep", "egrep" ],
+ [ "busybox.exe", "env", "env" ],
+ [ "busybox.exe", "expand", "expand" ],
+ [ "busybox.exe", "expr", "expr" ],
+ [ "busybox.exe", "false", "false" ],
+ [ "busybox.exe", "fgrep", "fgrep" ],
+ [ "busybox.exe", "find", "find" ],
+ [ "busybox.exe", "fold", "fold" ],
+ [ "busybox.exe", "getopt", "getopt" ],
+ [ "busybox.exe", "grep", "grep" ],
+ [ "busybox.exe", "gunzip", "gunzip" ],
+ [ "busybox.exe", "gzip", "gzip" ],
+ [ "busybox.exe", "hd", "hd" ],
+ [ "busybox.exe", "head", "head" ],
+ [ "busybox.exe", "hexdump", "hexdump" ],
+ [ "busybox.exe", "kill", "kill" ],
+ [ "busybox.exe", "killall", "killall" ],
+ [ "busybox.exe", "logname", "logname" ],
+ [ "busybox.exe", "ls", "ls" ],
+ [ "busybox.exe", "lzcat", "lzcat" ],
+ [ "busybox.exe", "lzma", "lzma" ],
+ [ "busybox.exe", "lzop", "lzop" ],
+ [ "busybox.exe", "lzopcat", "lzopcat" ],
+ [ "busybox.exe", "man", "man" ],
+ [ "busybox.exe", "md5sum", "md5sum" ],
+ [ "busybox.exe", "mkdir", "mkdir" ],
+ [ "busybox.exe", "mktemp", "mktemp" ],
+ [ "busybox.exe", "mv", "mv" ],
+ [ "busybox.exe", "od", "od" ],
+ [ "busybox.exe", "pgrep", "pgrep" ],
+ [ "busybox.exe", "pidof", "pidof" ],
+ [ "busybox.exe", "printenv", "printenv" ],
+ [ "busybox.exe", "printf", "printf" ],
+ [ "busybox.exe", "ps", "ps" ],
+ [ "busybox.exe", "pwd", "pwd" ],
+ [ "busybox.exe", "rm", "rm" ],
+ [ "busybox.exe", "rmdir", "rmdir" ],
+ [ "busybox.exe", "sed", "sed" ],
+ [ "busybox.exe", "seq", "seq" ],
+ [ "busybox.exe", "sh", "sh" ],
+ [ "busybox.exe", "sha1sum", "sha1sum" ],
+ [ "busybox.exe", "sha256sum", "sha256sum" ],
+ [ "busybox.exe", "sha3sum", "sha3sum" ],
+ [ "busybox.exe", "sha512sum", "sha512sum" ],
+ [ "busybox.exe", "sleep", "sleep" ],
+ [ "busybox.exe", "sort", "sort" ],
+ [ "busybox.exe", "split", "split" ],
+ [ "busybox.exe", "stat", "stat" ],
+ [ "busybox.exe", "strings", "strings" ],
+ [ "busybox.exe", "sum", "sum" ],
+ [ "busybox.exe", "tac", "tac" ],
+ [ "busybox.exe", "tail", "tail" ],
+ [ "busybox.exe", "tar", "tar" ],
+ [ "busybox.exe", "tee", "tee" ],
+ [ "busybox.exe", "test", "test" ],
+ [ "busybox.exe", "touch", "touch" ],
+ [ "busybox.exe", "tr", "tr" ],
+ [ "busybox.exe", "true", "true" ],
+ [ "busybox.exe", "truncate", "truncate" ],
+ [ "busybox.exe", "uname", "uname" ],
+ [ "busybox.exe", "uncompress", "uncompress" ],
+ [ "busybox.exe", "unexpand", "unexpand" ],
+ [ "busybox.exe", "uniq", "uniq" ],
+ [ "busybox.exe", "unix2dos", "unix2dos" ],
+ [ "busybox.exe", "unlink", "unlink" ],
+ [ "busybox.exe", "unlzma", "unlzma" ],
+ [ "busybox.exe", "unlzop", "unlzop" ],
+ [ "busybox.exe", "unxz", "unxz" ],
+ [ "busybox.exe", "unzip", "unzip" ],
+ [ "busybox.exe", "usleep", "usleep" ],
+ [ "busybox.exe", "uudecode", "uudecode" ],
+ [ "busybox.exe", "uuencode", "uuencode" ],
+ [ "busybox.exe", "vi", "vi" ],
+ [ "busybox.exe", "wc", "wc" ],
+ [ "busybox.exe", "wget", "wget" ],
+ [ "busybox.exe", "which", "which" ],
+ [ "busybox.exe", "whoami", "whoami" ],
+ [ "busybox.exe", "xargs", "xargs" ],
+ [ "busybox.exe", "xz", "xz" ],
+ [ "busybox.exe", "xzcat", "xzcat" ],
+ [ "busybox.exe", "yes", "yes" ],
+ [ "busybox.exe", "zcat", "zcat" ]
+ ],
+ "post_install": "
+ if(!(test-path ~/.profile)) {
+ 'creating ~/.profile'
@\"
-if [ -e ~/.bashrc ]
+if [ -e ~/.bashrc ]
then
- source ~/.bashrc
+ source ~/.bashrc
fi
\"@ | out-file -en oem ~/.profile
- }
- "
+ }
+ "
}
diff --git a/bucket/bzip2.json b/bucket/bzip2.json
index 6f8311ed18..f2f06981ff 100644
--- a/bucket/bzip2.json
+++ b/bucket/bzip2.json
@@ -1,12 +1,12 @@
{
- "version": "1.0.5",
- "homepage": "http://gnuwin32.sourceforge.net/packages/bzip2.htm",
- "url": "http://ufpr.dl.sourceforge.net/project/gnuwin32/bzip2/1.0.5/bzip2-1.0.5-bin.zip",
- "hash": "md5:a1155c41b1954a2f6da1014c7c1a1263",
- "bin": [
- "bin\\bunzip2.exe",
- "bin\\bzcat.exe",
- "bin\\bzip2.exe",
- "bin\\bzip2recover.exe"
- ]
-}
\ No newline at end of file
+ "version": "1.0.5",
+ "homepage": "http://gnuwin32.sourceforge.net/packages/bzip2.htm",
+ "url": "http://ufpr.dl.sourceforge.net/project/gnuwin32/bzip2/1.0.5/bzip2-1.0.5-bin.zip",
+ "hash": "md5:a1155c41b1954a2f6da1014c7c1a1263",
+ "bin": [
+ "bin\\bunzip2.exe",
+ "bin\\bzcat.exe",
+ "bin\\bzip2.exe",
+ "bin\\bzip2recover.exe"
+ ]
+}
diff --git a/bucket/cmake.json b/bucket/cmake.json
index ea2033a4a1..a47b6a59b9 100644
--- a/bucket/cmake.json
+++ b/bucket/cmake.json
@@ -1,15 +1,15 @@
{
- "homepage": "http://www.cmake.org/",
- "version": "3.2.2",
- "license": "http://www.cmake.org/licensing/",
- "url": "http://www.cmake.org/files/v3.2/cmake-3.2.2-win32-x86.zip",
- "hash": "8728119BBB48468AB45230A579463729E7B12D6BABFA1AD77E771B239B5430DB",
- "extract_dir": "cmake-3.2.2-win32-x86",
- "bin": [
- "bin/cmake.exe",
- "bin/cmcldeps.exe",
- "bin/cpack.exe",
- "bin/ctest.exe"
- ],
- "checkver": "Download CMake Version ([0-9\\.]+)"
+ "homepage": "http://www.cmake.org/",
+ "version": "3.2.2",
+ "license": "http://www.cmake.org/licensing/",
+ "url": "http://www.cmake.org/files/v3.2/cmake-3.2.2-win32-x86.zip",
+ "hash": "8728119BBB48468AB45230A579463729E7B12D6BABFA1AD77E771B239B5430DB",
+ "extract_dir": "cmake-3.2.2-win32-x86",
+ "bin": [
+ "bin/cmake.exe",
+ "bin/cmcldeps.exe",
+ "bin/cpack.exe",
+ "bin/ctest.exe"
+ ],
+ "checkver": "Download CMake Version ([0-9\\.]+)"
}
diff --git a/bucket/concfg.json b/bucket/concfg.json
index b161e12955..47320da1b5 100644
--- a/bucket/concfg.json
+++ b/bucket/concfg.json
@@ -1,8 +1,8 @@
{
- "homepage": "https://github.com/lukesampson/concfg",
- "version": "0.2014.03.17.3",
- "url": "https://github.com/lukesampson/concfg/archive/625a669b66.zip",
- "hash": "ff603642e65fa909f7bbc84a3e6503cf47beb2c6c08c42716d8394615c04fd8d",
- "extract_dir": "concfg-625a669b669cdc0fd592488967ecd269005808d3",
- "bin": "bin\\concfg.ps1"
-}
\ No newline at end of file
+ "homepage": "https://github.com/lukesampson/concfg",
+ "version": "0.2014.03.17.3",
+ "url": "https://github.com/lukesampson/concfg/archive/625a669b66.zip",
+ "hash": "ff603642e65fa909f7bbc84a3e6503cf47beb2c6c08c42716d8394615c04fd8d",
+ "extract_dir": "concfg-625a669b669cdc0fd592488967ecd269005808d3",
+ "bin": "bin\\concfg.ps1"
+}
diff --git a/bucket/coreutils.json b/bucket/coreutils.json
index 330e91b837..cc1eb61631 100644
--- a/bucket/coreutils.json
+++ b/bucket/coreutils.json
@@ -1,65 +1,65 @@
{
- "homepage": "http://www.mingw.org/wiki/msys",
- "license": "GPL2",
- "version": "5.97.3",
- "url": [
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.13-2/msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.17-2/libintl-0.17-2-msys-dll-8.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.13.1-2/libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/termcap/termcap-0.20050421_1-2/libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/coreutils/coreutils-5.97-3/coreutils-5.97-3-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/coreutils/coreutils-5.97-3/coreutils-5.97-3-msys.RELEASE_NOTES.txt"
- ],
- "hash": [
- "41c7d5561662e41da74951f373a08a95db40b27b1246227bbbc13abc44976ea7",
- "b533de0ee04dc4d53ca745210e41eb9437044ebd367c001f3615092e7214a4a3",
- "f13de6d2e3c428e7f9a7251c6b01d6f7569e20f7ac126c68c028eb5f542473bb",
- "62b58fe0880f0972fcc84a819265989b02439c1c5185870227bd25f870f7adb6",
- "f8c7990416ea16a74ac336dcfe0f596bc46b8724b2d58cf8a3509414220b2366",
- "256208bca7a86a10bc377bdccfe6fb8f1e1f1868d0d1952a6692ee9f1d985abd"
- ],
- "bin": [
- "bin\\basename.exe",
- "bin\\cat.exe",
- "bin\\chmod.exe",
- "bin\\comm.exe",
- "bin\\cp.exe",
- "bin\\cut.exe",
- "bin\\date.exe",
- "bin\\dirname.exe",
- "bin\\echo.exe",
- "bin\\env.exe",
- "bin\\expr.exe",
- "bin\\false.exe",
- "bin\\fold.exe",
- "bin\\head.exe",
- "bin\\id.exe",
- "bin\\install.exe",
- "bin\\join.exe",
- "bin\\ln.exe",
- "bin\\ls.exe",
- "bin\\md5sum.exe",
- "bin\\mkdir.exe",
- "bin\\msysmnt.exe",
- "bin\\mv.exe",
- "bin\\od.exe",
- "bin\\paste.exe",
- "bin\\printf.exe",
- "bin\\ps.exe",
- "bin\\pwd.exe",
- "bin\\rm.exe",
- "bin\\rmdir.exe",
- "bin\\sleep.exe",
- "bin\\sort.exe",
- "bin\\split.exe",
- "bin\\stty.exe",
- "bin\\tail.exe",
- "bin\\tee.exe",
- "bin\\touch.exe",
- "bin\\tr.exe",
- "bin\\true.exe",
- "bin\\uname.exe",
- "bin\\uniq.exe",
- "bin\\wc.exe"
- ]
-}
\ No newline at end of file
+ "homepage": "http://www.mingw.org/wiki/msys",
+ "license": "GPL2",
+ "version": "5.97.3",
+ "url": [
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.13-2/msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.17-2/libintl-0.17-2-msys-dll-8.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.13.1-2/libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/termcap/termcap-0.20050421_1-2/libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/coreutils/coreutils-5.97-3/coreutils-5.97-3-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/coreutils/coreutils-5.97-3/coreutils-5.97-3-msys.RELEASE_NOTES.txt"
+ ],
+ "hash": [
+ "41c7d5561662e41da74951f373a08a95db40b27b1246227bbbc13abc44976ea7",
+ "b533de0ee04dc4d53ca745210e41eb9437044ebd367c001f3615092e7214a4a3",
+ "f13de6d2e3c428e7f9a7251c6b01d6f7569e20f7ac126c68c028eb5f542473bb",
+ "62b58fe0880f0972fcc84a819265989b02439c1c5185870227bd25f870f7adb6",
+ "f8c7990416ea16a74ac336dcfe0f596bc46b8724b2d58cf8a3509414220b2366",
+ "256208bca7a86a10bc377bdccfe6fb8f1e1f1868d0d1952a6692ee9f1d985abd"
+ ],
+ "bin": [
+ "bin\\basename.exe",
+ "bin\\cat.exe",
+ "bin\\chmod.exe",
+ "bin\\comm.exe",
+ "bin\\cp.exe",
+ "bin\\cut.exe",
+ "bin\\date.exe",
+ "bin\\dirname.exe",
+ "bin\\echo.exe",
+ "bin\\env.exe",
+ "bin\\expr.exe",
+ "bin\\false.exe",
+ "bin\\fold.exe",
+ "bin\\head.exe",
+ "bin\\id.exe",
+ "bin\\install.exe",
+ "bin\\join.exe",
+ "bin\\ln.exe",
+ "bin\\ls.exe",
+ "bin\\md5sum.exe",
+ "bin\\mkdir.exe",
+ "bin\\msysmnt.exe",
+ "bin\\mv.exe",
+ "bin\\od.exe",
+ "bin\\paste.exe",
+ "bin\\printf.exe",
+ "bin\\ps.exe",
+ "bin\\pwd.exe",
+ "bin\\rm.exe",
+ "bin\\rmdir.exe",
+ "bin\\sleep.exe",
+ "bin\\sort.exe",
+ "bin\\split.exe",
+ "bin\\stty.exe",
+ "bin\\tail.exe",
+ "bin\\tee.exe",
+ "bin\\touch.exe",
+ "bin\\tr.exe",
+ "bin\\true.exe",
+ "bin\\uname.exe",
+ "bin\\uniq.exe",
+ "bin\\wc.exe"
+ ]
+}
diff --git a/bucket/cowsay.json b/bucket/cowsay.json
index 90d85e20f3..47a057dbdc 100644
--- a/bucket/cowsay.json
+++ b/bucket/cowsay.json
@@ -1,7 +1,7 @@
{
- "version": "0.2013.07.19",
- "homepage": "https://github.com/lukesampson/cowsay-psh",
- "url": "https://github.com/lukesampson/cowsay-psh/archive/master.zip",
- "extract_dir": "cowsay-psh-master",
- "bin": ["cowsay.ps1","cowthink.ps1"]
-}
\ No newline at end of file
+ "version": "0.2013.07.19",
+ "homepage": "https://github.com/lukesampson/cowsay-psh",
+ "url": "https://github.com/lukesampson/cowsay-psh/archive/master.zip",
+ "extract_dir": "cowsay-psh-master",
+ "bin": ["cowsay.ps1","cowthink.ps1"]
+}
diff --git a/bucket/curl.json b/bucket/curl.json
index 1d2f8bf340..720a9dcfb5 100644
--- a/bucket/curl.json
+++ b/bucket/curl.json
@@ -1,19 +1,19 @@
{
- "homepage": "http://curl.haxx.se/",
- "version": "7.39.0",
- "licence": "MIT",
- "architecture": {
- "64bit": {
- "url": "http://www.confusedbycode.com/curl/curl-7.39.0-win64.zip",
- "hash": "946c3ab2625b9352a846e493319978b1ef2818173c711ed8b1bb8c0e04189ee4",
- "extract_dir": "curl-7.39.0-win64"
- },
- "32bit": {
- "url": "http://www.confusedbycode.com/curl/curl-7.39.0-win32.zip",
- "hash": "e97a78dc97ece670580cccf735a5ec048513da0a9ba5135d4ae227b7cde68dba",
- "extract_dir": "curl-7.39.0-win32"
- }
- },
- "bin": "bin/curl.exe",
- "checkver": "The most recent stable version is\\s*([0-99\\.]+)"
+ "homepage": "http://curl.haxx.se/",
+ "version": "7.39.0",
+ "licence": "MIT",
+ "architecture": {
+ "64bit": {
+ "url": "http://www.confusedbycode.com/curl/curl-7.39.0-win64.zip",
+ "hash": "946c3ab2625b9352a846e493319978b1ef2818173c711ed8b1bb8c0e04189ee4",
+ "extract_dir": "curl-7.39.0-win64"
+ },
+ "32bit": {
+ "url": "http://www.confusedbycode.com/curl/curl-7.39.0-win32.zip",
+ "hash": "e97a78dc97ece670580cccf735a5ec048513da0a9ba5135d4ae227b7cde68dba",
+ "extract_dir": "curl-7.39.0-win32"
+ }
+ },
+ "bin": "bin/curl.exe",
+ "checkver": "The most recent stable version is\\s*([0-99\\.]+)"
}
diff --git a/bucket/diffutils.json b/bucket/diffutils.json
index 1c86570134..a3b438180c 100644
--- a/bucket/diffutils.json
+++ b/bucket/diffutils.json
@@ -1,22 +1,22 @@
{
- "homepage": "http://www.mingw.org/wiki/MSYS",
- "version": "2.8.7",
- "url": [
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/diffutils/diffutils-2.8.7.20071206cvs-3/diffutils-2.8.7.20071206cvs-3-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.18-1/msysCORE-1.0.18-1-msys-1.0.18-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.18.1.1-1/libintl-0.18.1.1-1-msys-1.0.17-dll-8.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.14-1/libiconv-1.14-1-msys-1.0.17-dll-2.tar.lzma"
- ],
- "hash": [
- "522889b044492dd2337c4752ba6262995a11f352ca5fb8a8660349413ea9b864",
- "4e262a414f238773b311c8bb55a52e62743c06e0e55b319ca5b47e3e306464d5",
- "29db8c969661c511fbe2a341ab25c993c5f9c555842a75d6ddbcfa70dec16910",
- "196921e8c232259c8e6a6852b9ee8d9ab2d29a91419f0c8dc27ba6f034231683"
- ],
- "bin": [
- "bin\\cmp.exe",
- "bin\\diff.exe",
- "bin\\diff3.exe",
- "bin\\sdiff.exe"
- ]
-}
\ No newline at end of file
+ "homepage": "http://www.mingw.org/wiki/MSYS",
+ "version": "2.8.7",
+ "url": [
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/diffutils/diffutils-2.8.7.20071206cvs-3/diffutils-2.8.7.20071206cvs-3-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.18-1/msysCORE-1.0.18-1-msys-1.0.18-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.18.1.1-1/libintl-0.18.1.1-1-msys-1.0.17-dll-8.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.14-1/libiconv-1.14-1-msys-1.0.17-dll-2.tar.lzma"
+ ],
+ "hash": [
+ "522889b044492dd2337c4752ba6262995a11f352ca5fb8a8660349413ea9b864",
+ "4e262a414f238773b311c8bb55a52e62743c06e0e55b319ca5b47e3e306464d5",
+ "29db8c969661c511fbe2a341ab25c993c5f9c555842a75d6ddbcfa70dec16910",
+ "196921e8c232259c8e6a6852b9ee8d9ab2d29a91419f0c8dc27ba6f034231683"
+ ],
+ "bin": [
+ "bin\\cmp.exe",
+ "bin\\diff.exe",
+ "bin\\diff3.exe",
+ "bin\\sdiff.exe"
+ ]
+}
diff --git a/bucket/dig.json b/bucket/dig.json
index 8b52e25090..aceec7dd95 100644
--- a/bucket/dig.json
+++ b/bucket/dig.json
@@ -1,8 +1,8 @@
{
"homepage": "https://www.isc.org/",
- "license": "https://www.isc.org/downloads/software-support-policy/isc-license/",
- "version": "9.9.6",
- "url" : "ftp://ftp.isc.org/isc/bind9/9.9.6/BIND9.9.6.x86.zip",
- "hash" : "CC03FC37502650D2DCEC6DB3FAA0256672B67B5CCDAF4AA5F8ED08F2F5755452",
- "bin": "dig.exe"
+ "license": "https://www.isc.org/downloads/software-support-policy/isc-license/",
+ "version": "9.9.6",
+ "url" : "ftp://ftp.isc.org/isc/bind9/9.9.6/BIND9.9.6.x86.zip",
+ "hash" : "CC03FC37502650D2DCEC6DB3FAA0256672B67B5CCDAF4AA5F8ED08F2F5755452",
+ "bin": "dig.exe"
}
diff --git a/bucket/dnvm.json b/bucket/dnvm.json
index 88928e9e0f..2f3643294b 100644
--- a/bucket/dnvm.json
+++ b/bucket/dnvm.json
@@ -5,7 +5,7 @@
"https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1"
],
"homepage": "https://github.com/aspnet/Home",
- "env_set": {
+ "env_set": {
"DNX_HOME": "$dir\\.dnx",
"DNX_USER_HOME": "$dir\\.dnx"
},
diff --git a/bucket/docker-machine.json b/bucket/docker-machine.json
index 91480502ab..24766102ee 100644
--- a/bucket/docker-machine.json
+++ b/bucket/docker-machine.json
@@ -1,19 +1,19 @@
{
- "homepage": "https://github.com/docker/machine",
- "version": "0.4.0",
- "license": "Apache",
- "architecture": {
- "64bit": {
- "url": "https://github.com/docker/machine/releases/download/v0.4.0/docker-machine_windows-amd64.exe",
- "hash": "f9be8aea5b8f810f63af0bc45217ae7e035f2778bd7c745f769dfdb85792d1a4"
- },
- "32bit": {
- "url": "https://github.com/docker/machine/releases/download/v0.4.0/docker-machine_windows-386.exe",
- "hash": "49ca50715354e222ec66a96f3e64e5931c3dc0f304649beb3f744c64864717f8"
- }
- },
- "pre_install": "Rename-Item @(Get-ChildItem $dir\\docker-machine_*.exe)[0] $dir\\docker-machine.exe",
- "bin": [
- ["docker-machine.exe", "docker-machine"]
- ]
+ "homepage": "https://github.com/docker/machine",
+ "version": "0.4.0",
+ "license": "Apache",
+ "architecture": {
+ "64bit": {
+ "url": "https://github.com/docker/machine/releases/download/v0.4.0/docker-machine_windows-amd64.exe",
+ "hash": "f9be8aea5b8f810f63af0bc45217ae7e035f2778bd7c745f769dfdb85792d1a4"
+ },
+ "32bit": {
+ "url": "https://github.com/docker/machine/releases/download/v0.4.0/docker-machine_windows-386.exe",
+ "hash": "49ca50715354e222ec66a96f3e64e5931c3dc0f304649beb3f744c64864717f8"
+ }
+ },
+ "pre_install": "Rename-Item @(Get-ChildItem $dir\\docker-machine_*.exe)[0] $dir\\docker-machine.exe",
+ "bin": [
+ ["docker-machine.exe", "docker-machine"]
+ ]
}
diff --git a/bucket/docker.json b/bucket/docker.json
index 788a25cc21..749eef42b4 100644
--- a/bucket/docker.json
+++ b/bucket/docker.json
@@ -12,12 +12,12 @@
}
},
"homepage": "https://docker.com",
- "bin": [
- ["docker-1.8.0.exe", "docker"]
+ "bin": [
+ ["docker-1.8.0.exe", "docker"]
],
- "notes": [
+ "notes": [
"This is the docker client only. Until the docker daemon can run natively",
- "on Windows you will need a Virtual Machine such as Boot2Docker or",
+ "on Windows you will need a Virtual Machine such as Boot2Docker or",
"Docker Machine",
"",
"Boot2Docker: https://github.com/boot2docker/windows-installer/releases/",
diff --git a/bucket/doxygen.json b/bucket/doxygen.json
index 5976703534..de66b61a33 100644
--- a/bucket/doxygen.json
+++ b/bucket/doxygen.json
@@ -1,7 +1,7 @@
{
- "homepage": "http://www.doxygen.nl/",
+ "homepage": "http://www.doxygen.nl/",
"license": "GPL2",
- "version": "1.8.8",
+ "version": "1.8.8",
"architecture": {
"64bit": {
"url": "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.8.windows.x64.bin.zip",
@@ -12,8 +12,8 @@
"hash": "d4bd6b3e4279a5533a53533a497e8cb1bd62e9c75007dce693b28d0aac9783f2"
}
},
- "bin": [
- "doxygen.exe",
- "doxyindexer.exe"
- ]
-}
\ No newline at end of file
+ "bin": [
+ "doxygen.exe",
+ "doxyindexer.exe"
+ ]
+}
diff --git a/bucket/elixir.json b/bucket/elixir.json
index 8f1212d7c3..8a8c51f410 100644
--- a/bucket/elixir.json
+++ b/bucket/elixir.json
@@ -1,13 +1,13 @@
{
- "homepage": "http://elixir-lang.org/",
- "version": "0.10.3",
- "depends": "erlang",
- "url": "https://github.com/elixir-lang/elixir/releases/download/v0.10.3/v0.10.3.zip",
- "hash": "c898906651b3edb40e642221e58642a0abc165c97b3624a251bfe337efae9278",
- "bin": [
- "bin\\elixir.bat",
- "bin\\elixirc.bat",
- "bin\\iex.bat",
- "bin\\mix.bat"
- ]
-}
\ No newline at end of file
+ "homepage": "http://elixir-lang.org/",
+ "version": "0.10.3",
+ "depends": "erlang",
+ "url": "https://github.com/elixir-lang/elixir/releases/download/v0.10.3/v0.10.3.zip",
+ "hash": "c898906651b3edb40e642221e58642a0abc165c97b3624a251bfe337efae9278",
+ "bin": [
+ "bin\\elixir.bat",
+ "bin\\elixirc.bat",
+ "bin\\iex.bat",
+ "bin\\mix.bat"
+ ]
+}
diff --git a/bucket/erlang.json b/bucket/erlang.json
index 77de0ec5ac..48a335ad96 100644
--- a/bucket/erlang.json
+++ b/bucket/erlang.json
@@ -1,23 +1,23 @@
{
- "homepage": "http://www.erlang.org",
- "version": "R16B02",
- "license": "http://www.erlang.org/EPLICENSE",
- "architecture": {
- "64bit": {
- "url": "http://www.erlang.org/download/otp_win64_R16B02.exe#/dl.bz",
- "hash": "8f2f50e377319d364938475b1492f44d257eafd67c23f90246799bf87158a452"
- },
- "32bit": {
- "url": "http://www.erlang.org/download/otp_win32_R16B02.exe#/dl.bz",
- "hash": "504a7ce4d44e2558b400e64135b6e164d48980cd27b2f869321c5f4d799198b2"
- }
- },
- "extract_dir": "$_OUTDIR",
- "bin": [
- "bin\\erl.exe",
- "bin\\escript.exe"
- ],
- "post_install": "
+ "homepage": "http://www.erlang.org",
+ "version": "R16B02",
+ "license": "http://www.erlang.org/EPLICENSE",
+ "architecture": {
+ "64bit": {
+ "url": "http://www.erlang.org/download/otp_win64_R16B02.exe#/dl.bz",
+ "hash": "8f2f50e377319d364938475b1492f44d257eafd67c23f90246799bf87158a452"
+ },
+ "32bit": {
+ "url": "http://www.erlang.org/download/otp_win32_R16B02.exe#/dl.bz",
+ "hash": "504a7ce4d44e2558b400e64135b6e164d48980cd27b2f869321c5f4d799198b2"
+ }
+ },
+ "extract_dir": "$_OUTDIR",
+ "bin": [
+ "bin\\erl.exe",
+ "bin\\escript.exe"
+ ],
+ "post_install": "
$ini = \"$dir\\bin\\erl.ini\"
$escdir = $dir -replace '\\\\', '\\\\'
'[erlang]' | out-file $ini -encoding default
@@ -44,4 +44,4 @@ mv \"$dir\\lib\\internal\" \"$dir\\erts-5.10.3\\lib\\internal\"
cp \"$dir\\R16B02\\*.boot\" \"$dir\\bin\"
mv \"$dir\\R16B02\" \"$dir\\releases\\R16B02\"
"
-}
\ No newline at end of file
+}
diff --git a/bucket/far.json b/bucket/far.json
index bc51fff067..3c47b8b904 100644
--- a/bucket/far.json
+++ b/bucket/far.json
@@ -1,19 +1,19 @@
{
- "homepage": "http://farmanager.com/",
- "version": "3.0.4040",
- "architecture": {
- "64bit": {
- "url": "http://farmanager.com/files/Far30b4040.x64.20140810.7z",
- "hash": "73d0d9195e3fc589067d3568055c04a6206a417a928ab5b382b586ca3f5080a4"
- },
- "32bit": {
- "url": "http://farmanager.com/files/Far30b4040.x86.20140810.7z",
- "hash": "73d0d9195e3fc589067d3568055c04a6206a417a928ab5b382b586ca3f5080a4"
- }
- },
- "checkver": {
- "url": "http://farmanager.com/download.php?p=64",
- "re": "Far Manager v([0-9\\.]+) build ([0-9][0-9][0-9][0-9]) x64"
- },
- "bin": "far.exe"
-}
\ No newline at end of file
+ "homepage": "http://farmanager.com/",
+ "version": "3.0.4040",
+ "architecture": {
+ "64bit": {
+ "url": "http://farmanager.com/files/Far30b4040.x64.20140810.7z",
+ "hash": "73d0d9195e3fc589067d3568055c04a6206a417a928ab5b382b586ca3f5080a4"
+ },
+ "32bit": {
+ "url": "http://farmanager.com/files/Far30b4040.x86.20140810.7z",
+ "hash": "73d0d9195e3fc589067d3568055c04a6206a417a928ab5b382b586ca3f5080a4"
+ }
+ },
+ "checkver": {
+ "url": "http://farmanager.com/download.php?p=64",
+ "re": "Far Manager v([0-9\\.]+) build ([0-9][0-9][0-9][0-9]) x64"
+ },
+ "bin": "far.exe"
+}
diff --git a/bucket/ffmpeg.json b/bucket/ffmpeg.json
index fa135557e1..7b912aa0b2 100644
--- a/bucket/ffmpeg.json
+++ b/bucket/ffmpeg.json
@@ -1,23 +1,23 @@
{
- "version": "2015-06-07",
- "homepage": "http://ffmpeg.zeranoe.com/builds/",
- "license": "GPL3",
- "architecture": {
- "64bit": {
- "url": "http://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20150607-git-42db4aa-win64-static.7z",
- "hash": "0F76D2DEE53D2C93F69B34AFB4D444B982B1445E26BB7D32215711890215FE42",
- "extract_dir": "ffmpeg-20150607-git-42db4aa-win64-static"
- },
- "32bit": {
- "url": "http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20150607-git-42db4aa-win32-static.7z",
- "hash": "334FE2AE201C01C12DD6C55E6753FA45870C76A144F76A5E026056D6A1FA2F7C",
- "extract_dir": "ffmpeg-20150607-git-42db4aa-win32-static"
- }
- },
- "bin": [
- "bin\\ffmpeg.exe",
- "bin\\ffplay.exe",
- "bin\\ffprobe.exe"
- ],
- "checkver": "Latest Zeranoe FFmpeg Build Version: git-[0-9a-f]{6,8} \\((.*)\\)<\\/h2>"
+ "version": "2015-06-07",
+ "homepage": "http://ffmpeg.zeranoe.com/builds/",
+ "license": "GPL3",
+ "architecture": {
+ "64bit": {
+ "url": "http://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20150607-git-42db4aa-win64-static.7z",
+ "hash": "0F76D2DEE53D2C93F69B34AFB4D444B982B1445E26BB7D32215711890215FE42",
+ "extract_dir": "ffmpeg-20150607-git-42db4aa-win64-static"
+ },
+ "32bit": {
+ "url": "http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20150607-git-42db4aa-win32-static.7z",
+ "hash": "334FE2AE201C01C12DD6C55E6753FA45870C76A144F76A5E026056D6A1FA2F7C",
+ "extract_dir": "ffmpeg-20150607-git-42db4aa-win32-static"
+ }
+ },
+ "bin": [
+ "bin\\ffmpeg.exe",
+ "bin\\ffplay.exe",
+ "bin\\ffprobe.exe"
+ ],
+ "checkver": "Latest Zeranoe FFmpeg Build Version: git-[0-9a-f]{6,8} \\((.*)\\)<\\/h2>"
}
diff --git a/bucket/figlet.json b/bucket/figlet.json
index d500ced2e1..fcf5c25d9e 100644
--- a/bucket/figlet.json
+++ b/bucket/figlet.json
@@ -1,7 +1,7 @@
{
- "homepage": "https://github.com/lukesampson/figlet",
- "version": "1.0-go",
- "url": "https://github.com/lukesampson/figlet/releases/download/go-1.0-win/figlet-go-1.0-win.zip",
- "hash": "11ee1f4de608d147ab5b61ddb5967730e9b2c1e43f7d2c96582ee260c030e413",
- "bin": "figlet.exe"
-}
\ No newline at end of file
+ "homepage": "https://github.com/lukesampson/figlet",
+ "version": "1.0-go",
+ "url": "https://github.com/lukesampson/figlet/releases/download/go-1.0-win/figlet-go-1.0-win.zip",
+ "hash": "11ee1f4de608d147ab5b61ddb5967730e9b2c1e43f7d2c96582ee260c030e413",
+ "bin": "figlet.exe"
+}
diff --git a/bucket/findutils.json b/bucket/findutils.json
index f31dfad8b5..5e35cfa2a3 100644
--- a/bucket/findutils.json
+++ b/bucket/findutils.json
@@ -1,25 +1,25 @@
{
- "homepage": "http://www.mingw.org/wiki/msys",
- "version": "4.4.2",
- "license": "GPL2",
- "url": [
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.13-2/msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.17-2/libintl-0.17-2-msys-dll-8.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.13.1-2/libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/findutils/findutils-4.4.2-2/findutils-4.4.2-2-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/findutils/findutils-4.4.2-2/locate-4.4.2-2-msys-1.0.13-bin.tar.lzma"
- ],
- "hash": [
- "41c7d5561662e41da74951f373a08a95db40b27b1246227bbbc13abc44976ea7",
- "b533de0ee04dc4d53ca745210e41eb9437044ebd367c001f3615092e7214a4a3",
- "f13de6d2e3c428e7f9a7251c6b01d6f7569e20f7ac126c68c028eb5f542473bb",
- "779e819b7942dc070c45f4cba633e6a9ae4bfe8b506a3541f4ce86ad0595726d",
- "3fbb9826feae0698a58c8e1bbaa46caafb2bd07a63c59e33cd4478aee14ee147"
- ],
- "bin": [
- "bin\\find.exe",
- "bin\\oldfind.exe",
- "bin\\xargs.exe",
- "bin\\locate.exe"
- ]
-}
\ No newline at end of file
+ "homepage": "http://www.mingw.org/wiki/msys",
+ "version": "4.4.2",
+ "license": "GPL2",
+ "url": [
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.13-2/msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.17-2/libintl-0.17-2-msys-dll-8.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.13.1-2/libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/findutils/findutils-4.4.2-2/findutils-4.4.2-2-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/findutils/findutils-4.4.2-2/locate-4.4.2-2-msys-1.0.13-bin.tar.lzma"
+ ],
+ "hash": [
+ "41c7d5561662e41da74951f373a08a95db40b27b1246227bbbc13abc44976ea7",
+ "b533de0ee04dc4d53ca745210e41eb9437044ebd367c001f3615092e7214a4a3",
+ "f13de6d2e3c428e7f9a7251c6b01d6f7569e20f7ac126c68c028eb5f542473bb",
+ "779e819b7942dc070c45f4cba633e6a9ae4bfe8b506a3541f4ce86ad0595726d",
+ "3fbb9826feae0698a58c8e1bbaa46caafb2bd07a63c59e33cd4478aee14ee147"
+ ],
+ "bin": [
+ "bin\\find.exe",
+ "bin\\oldfind.exe",
+ "bin\\xargs.exe",
+ "bin\\locate.exe"
+ ]
+}
diff --git a/bucket/gawk.json b/bucket/gawk.json
index daf15d49c3..c2f63fbc09 100644
--- a/bucket/gawk.json
+++ b/bucket/gawk.json
@@ -1,22 +1,22 @@
{
- "homepage": "http://www.mingw.org/wiki/MSYS",
- "version": "3.1.7",
- "license": "GPL3",
- "url": [
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gawk/gawk-3.1.7-2/gawk-3.1.7-2-msys-1.0.13-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.18-1/msysCORE-1.0.18-1-msys-1.0.18-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.18.1.1-1/libintl-0.18.1.1-1-msys-1.0.17-dll-8.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.14-1/libiconv-1.14-1-msys-1.0.17-dll-2.tar.lzma"
- ],
- "hash": [
- "eb15478ea76e75b666ad7fc7049de21b9f487e0e1ea0e96d40953a477e91c3dd",
- "4e262a414f238773b311c8bb55a52e62743c06e0e55b319ca5b47e3e306464d5",
- "29db8c969661c511fbe2a341ab25c993c5f9c555842a75d6ddbcfa70dec16910",
- "196921e8c232259c8e6a6852b9ee8d9ab2d29a91419f0c8dc27ba6f034231683"
- ],
- "bin": [
- "bin\\awk.exe",
- "bin\\gawk.exe",
- "bin\\pgawk.exe"
- ]
-}
\ No newline at end of file
+ "homepage": "http://www.mingw.org/wiki/MSYS",
+ "version": "3.1.7",
+ "license": "GPL3",
+ "url": [
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gawk/gawk-3.1.7-2/gawk-3.1.7-2-msys-1.0.13-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.18-1/msysCORE-1.0.18-1-msys-1.0.18-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gettext/gettext-0.18.1.1-1/libintl-0.18.1.1-1-msys-1.0.17-dll-8.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/libiconv/libiconv-1.14-1/libiconv-1.14-1-msys-1.0.17-dll-2.tar.lzma"
+ ],
+ "hash": [
+ "eb15478ea76e75b666ad7fc7049de21b9f487e0e1ea0e96d40953a477e91c3dd",
+ "4e262a414f238773b311c8bb55a52e62743c06e0e55b319ca5b47e3e306464d5",
+ "29db8c969661c511fbe2a341ab25c993c5f9c555842a75d6ddbcfa70dec16910",
+ "196921e8c232259c8e6a6852b9ee8d9ab2d29a91419f0c8dc27ba6f034231683"
+ ],
+ "bin": [
+ "bin\\awk.exe",
+ "bin\\gawk.exe",
+ "bin\\pgawk.exe"
+ ]
+}
diff --git a/bucket/gcc.json b/bucket/gcc.json
index e2c5c7ccec..c1ba2bb3a8 100644
--- a/bucket/gcc.json
+++ b/bucket/gcc.json
@@ -1,17 +1,17 @@
{
- "homepage": "http://mingw-w64.sourceforge.net/",
- "version": "4.8.1",
- "architecture": {
- "64bit": {
- "url": "http://ufpr.dl.sourceforge.net/project/mingwbuilds/host-windows/releases/4.8.1/64-bit/threads-posix/seh/x64-4.8.1-release-posix-seh-rev5.7z",
- "hash": "bb8bd0fe45da3ed9412acd5e432f28c8dccc3b559610e43980760314a283168f",
- "extract_dir": "mingw64"
- },
- "32bit": {
- "url": "http://ufpr.dl.sourceforge.net/project/mingwbuilds/host-windows/releases/4.8.1/32-bit/threads-posix/sjlj/x32-4.8.1-release-posix-sjlj-rev5.7z",
- "hash": "e438ca54e1df9c45b16898d8e9ee941295ad8cde6f20330294e5be4794988582",
- "extract_dir": "mingw32"
- }
- },
- "env_add_path": "bin"
-}
\ No newline at end of file
+ "homepage": "http://mingw-w64.sourceforge.net/",
+ "version": "4.8.1",
+ "architecture": {
+ "64bit": {
+ "url": "http://ufpr.dl.sourceforge.net/project/mingwbuilds/host-windows/releases/4.8.1/64-bit/threads-posix/seh/x64-4.8.1-release-posix-seh-rev5.7z",
+ "hash": "bb8bd0fe45da3ed9412acd5e432f28c8dccc3b559610e43980760314a283168f",
+ "extract_dir": "mingw64"
+ },
+ "32bit": {
+ "url": "http://ufpr.dl.sourceforge.net/project/mingwbuilds/host-windows/releases/4.8.1/32-bit/threads-posix/sjlj/x32-4.8.1-release-posix-sjlj-rev5.7z",
+ "hash": "e438ca54e1df9c45b16898d8e9ee941295ad8cde6f20330294e5be4794988582",
+ "extract_dir": "mingw32"
+ }
+ },
+ "env_add_path": "bin"
+}
diff --git a/bucket/gcc45.json b/bucket/gcc45.json
index 3e9a113eb1..4105347a52 100644
--- a/bucket/gcc45.json
+++ b/bucket/gcc45.json
@@ -1,53 +1,53 @@
{
- "homepage": "http://www.mingw.org/",
- "version": "4.5.2",
- "url": [
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-core-4.5.2-1-mingw32-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-c%2B%2B-4.5.2-1-mingw32-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-objc-4.5.2-1-mingw32-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libgcc-4.5.2-1-mingw32-dll-1.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libstdc%2B%2B-4.5.2-1-mingw32-dll-6.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libobjc-4.5.2-1-mingw32-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libgomp-4.5.2-1-mingw32-dll-1.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libssp-4.5.2-1-mingw32-dll-0.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/binutils/binutils-2.21/binutils-2.21-2-mingw32-bin.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gmp/gmp-5.0.1-1/libgmp-5.0.1-1-mingw32-dll-10.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gmp/gmp-5.0.1-1/gmp-5.0.1-1-mingw32-dev.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpc/mpc-0.8.1-1/libmpc-0.8.1-1-mingw32-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpc/mpc-0.8.1-1/mpc-0.8.1-1-mingw32-dev.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpfr/mpfr-2.4.1-1/libmpfr-2.4.1-1-mingw32-dll-1.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpfr/mpfr-2.4.1-1/mpfr-2.4.1-1-mingw32-dev.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/pthreads-w32/pthreads-w32-2.8.0-3/libpthread-2.8.0-3-mingw32-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/pthreads-w32/pthreads-w32-2.8.0-3/pthreads-w32-2.8.0-3-mingw32-dev.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mingw-rt/mingwrt-3.18/mingwrt-3.18-mingw32-dll.tar.gz",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mingw-rt/mingwrt-3.18/mingwrt-3.18-mingw32-dev.tar.gz",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/w32api/w32api-3.15/w32api-3.15-1-mingw32-dev.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/libiconv/libiconv-1.13.1-1/libiconv-1.13.1-1-mingw32-dll-2.tar.lzma",
- "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/libiconv/libiconv-1.13.1-1/libiconv-1.13.1-1-mingw32-dev.tar.lzma"
- ],
- "hash": [
- "b53728068b72a87d7144f0f65b83db800885605b78f16bcefad3b2ff7f19956d",
- "4dd23fed83b7ebd9c1e9ea0f37ec79e7057784faac17481bb220c137c725429f",
- "cd42358f1c510cfd09a9dac45393d7081ac353e6141a404dced87baa4b06a138",
- "5b0657df01b23fe5d955d13dde0ac110493a254c93a91f76fb19ce7d138d6245",
- "77beebe7a5f48ff66e353f869bcd81399d6ed6f2664552cccfc73cd00116990e",
- "798df18c2cfecc996db241819ac5799f3e690cc831d31d9ccf1048f08232741b",
- "bb3c1c8e0a7b1e13eecedc5bb27b1b6b5ce4df72997449de336392584b455f3d",
- "c9f272760b62ca7b8206f210217c95eca598650ae2468f5eb2ef78b97aa6c3b7",
- "c583e553599fcb90cecc1a12a92430123f1bd97a1265972b9c71256efefa05de",
- "23e0643d1d6f28d3acb1dcd83e592158b9bfa473fca50005f4474a216b4f2652",
- "940475cfe32fba5a64abc6c97841bc7c8363f54fba72a414d439c115191d735c",
- "7047bc36a85e96747a4353eb8c3e260b2c8dad2329acfae4ccfe15a0881935b6",
- "ffa0865487f0588294e2ec8c1bda067cee5a0c955b7bd1d44a207ab3aca7234b",
- "64a36a855e9b7bcd9f806707d65d15a1fba12b63cc0ea4a446ad9506c2430a41",
- "c4285009cc850bcaed2d7c587ba365fbe6f7a77e0e369ef43db70d41f8b2726a",
- "cbd460dde0b0abfde95b764725f08e02ab4f3af50eea508281041a5726b64e8a",
- "5d2f526a96d7563a0e222b7c8d2171162fe6f58bc6abba66d255f6ae124da448",
- "11befa7b8adf7b1f4f1c11c8f052f27d07bdd2284c55285b5e6c19e7bbc7b3f4",
- "eea8c8cac5a4eedea230ce114fde7ec27d248d9678053c8b0d94b6a988746713",
- "5fd2a820784c830008a876124f791ebe3c2031dc281b6be558828f3468f81172",
- "6190f910d4f1f45f94ab6bd794f63e285d239a1820a8005680e9fff5a6e63438",
- "030692d721c04c7bed9ed51b7f765f8249e4470a20d328a4745b9b643f55589e"
- ],
- "env_add_path": "bin"
-}
\ No newline at end of file
+ "homepage": "http://www.mingw.org/",
+ "version": "4.5.2",
+ "url": [
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-core-4.5.2-1-mingw32-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-c%2B%2B-4.5.2-1-mingw32-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/gcc-objc-4.5.2-1-mingw32-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libgcc-4.5.2-1-mingw32-dll-1.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libstdc%2B%2B-4.5.2-1-mingw32-dll-6.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libobjc-4.5.2-1-mingw32-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libgomp-4.5.2-1-mingw32-dll-1.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-4.5.2-1/libssp-4.5.2-1-mingw32-dll-0.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/binutils/binutils-2.21/binutils-2.21-2-mingw32-bin.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gmp/gmp-5.0.1-1/libgmp-5.0.1-1-mingw32-dll-10.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/gmp/gmp-5.0.1-1/gmp-5.0.1-1-mingw32-dev.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpc/mpc-0.8.1-1/libmpc-0.8.1-1-mingw32-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpc/mpc-0.8.1-1/mpc-0.8.1-1-mingw32-dev.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpfr/mpfr-2.4.1-1/libmpfr-2.4.1-1-mingw32-dll-1.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mpfr/mpfr-2.4.1-1/mpfr-2.4.1-1-mingw32-dev.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/pthreads-w32/pthreads-w32-2.8.0-3/libpthread-2.8.0-3-mingw32-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/pthreads-w32/pthreads-w32-2.8.0-3/pthreads-w32-2.8.0-3-mingw32-dev.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mingw-rt/mingwrt-3.18/mingwrt-3.18-mingw32-dll.tar.gz",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/mingw-rt/mingwrt-3.18/mingwrt-3.18-mingw32-dev.tar.gz",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/w32api/w32api-3.15/w32api-3.15-1-mingw32-dev.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/libiconv/libiconv-1.13.1-1/libiconv-1.13.1-1-mingw32-dll-2.tar.lzma",
+ "http://ufpr.dl.sourceforge.net/project/mingw/MinGW/Base/libiconv/libiconv-1.13.1-1/libiconv-1.13.1-1-mingw32-dev.tar.lzma"
+ ],
+ "hash": [
+ "b53728068b72a87d7144f0f65b83db800885605b78f16bcefad3b2ff7f19956d",
+ "4dd23fed83b7ebd9c1e9ea0f37ec79e7057784faac17481bb220c137c725429f",
+ "cd42358f1c510cfd09a9dac45393d7081ac353e6141a404dced87baa4b06a138",
+ "5b0657df01b23fe5d955d13dde0ac110493a254c93a91f76fb19ce7d138d6245",
+ "77beebe7a5f48ff66e353f869bcd81399d6ed6f2664552cccfc73cd00116990e",
+ "798df18c2cfecc996db241819ac5799f3e690cc831d31d9ccf1048f08232741b",
+ "bb3c1c8e0a7b1e13eecedc5bb27b1b6b5ce4df72997449de336392584b455f3d",
+ "c9f272760b62ca7b8206f210217c95eca598650ae2468f5eb2ef78b97aa6c3b7",
+ "c583e553599fcb90cecc1a12a92430123f1bd97a1265972b9c71256efefa05de",
+ "23e0643d1d6f28d3acb1dcd83e592158b9bfa473fca50005f4474a216b4f2652",
+ "940475cfe32fba5a64abc6c97841bc7c8363f54fba72a414d439c115191d735c",
+ "7047bc36a85e96747a4353eb8c3e260b2c8dad2329acfae4ccfe15a0881935b6",
+ "ffa0865487f0588294e2ec8c1bda067cee5a0c955b7bd1d44a207ab3aca7234b",
+ "64a36a855e9b7bcd9f806707d65d15a1fba12b63cc0ea4a446ad9506c2430a41",
+ "c4285009cc850bcaed2d7c587ba365fbe6f7a77e0e369ef43db70d41f8b2726a",
+ "cbd460dde0b0abfde95b764725f08e02ab4f3af50eea508281041a5726b64e8a",
+ "5d2f526a96d7563a0e222b7c8d2171162fe6f58bc6abba66d255f6ae124da448",
+ "11befa7b8adf7b1f4f1c11c8f052f27d07bdd2284c55285b5e6c19e7bbc7b3f4",
+ "eea8c8cac5a4eedea230ce114fde7ec27d248d9678053c8b0d94b6a988746713",
+ "5fd2a820784c830008a876124f791ebe3c2031dc281b6be558828f3468f81172",
+ "6190f910d4f1f45f94ab6bd794f63e285d239a1820a8005680e9fff5a6e63438",
+ "030692d721c04c7bed9ed51b7f765f8249e4470a20d328a4745b9b643f55589e"
+ ],
+ "env_add_path": "bin"
+}
diff --git a/bucket/gibo.json b/bucket/gibo.json
index 0e2d457ca4..4c0d18643d 100644
--- a/bucket/gibo.json
+++ b/bucket/gibo.json
@@ -1,12 +1,12 @@
{
- "version": "1.0.4",
- "homepage": "https://github.com/simonwhitaker/gibo",
- "license": "https://github.com/simonwhitaker/gibo/blob/master/UNLICENSE",
- "description": "gibo (short for .gitignore boilerplates) is a shell script to help you easily access .gitignore boilerplates from github.com/github/gitignore.",
- "url": "https://github.com/simonwhitaker/gibo/archive/master.zip",
- "hash": "b358ab0a2d39e304b3a79660ffebf6b0e99496a8b73854e0d230218cb49fc309",
- "extract_dir": "gibo-master",
- "bin": [
- "gibo.bat"
- ]
+ "version": "1.0.4",
+ "homepage": "https://github.com/simonwhitaker/gibo",
+ "license": "https://github.com/simonwhitaker/gibo/blob/master/UNLICENSE",
+ "description": "gibo (short for .gitignore boilerplates) is a shell script to help you easily access .gitignore boilerplates from github.com/github/gitignore.",
+ "url": "https://github.com/simonwhitaker/gibo/archive/master.zip",
+ "hash": "b358ab0a2d39e304b3a79660ffebf6b0e99496a8b73854e0d230218cb49fc309",
+ "extract_dir": "gibo-master",
+ "bin": [
+ "gibo.bat"
+ ]
}
diff --git a/bucket/git.json b/bucket/git.json
index 10c781ce65..0109a640ac 100644
--- a/bucket/git.json
+++ b/bucket/git.json
@@ -7,10 +7,10 @@
"url": "https://github.com/git-for-windows/git/releases/download/v2.4.6.windows.1/PortableGit-2.4.6-5th-release-candidate-64-bit.7z.exe#/dl.7z",
"hash": "cc7d8df6edf7bd3689d685a2da7561ca7aee34936e868b475cddd72bfc6f953b"
},
- "32bit": {
- "url": "https://github.com/git-for-windows/git/releases/download/v2.4.6.windows.1/PortableGit-2.4.6-5th-release-candidate-32-bit.7z.exe#/dl.7z",
- "hash": "1b373b2238f44b0d96ae07a9965399caeb31180bf3cdd6585e3c34a4851dc9c2"
- }
+ "32bit": {
+ "url": "https://github.com/git-for-windows/git/releases/download/v2.4.6.windows.1/PortableGit-2.4.6-5th-release-candidate-32-bit.7z.exe#/dl.7z",
+ "hash": "1b373b2238f44b0d96ae07a9965399caeb31180bf3cdd6585e3c34a4851dc9c2"
+ }
},
"bin": [ "cmd\\git.exe", "cmd\\gitk.exe", "cmd\\git-gui.exe" ],
"post_install": [
diff --git a/bucket/git19.json b/bucket/git19.json
index f33b03305b..0df7d230a1 100644
--- a/bucket/git19.json
+++ b/bucket/git19.json
@@ -1,15 +1,15 @@
{
- "homepage": "http://msysgit.github.io/",
- "license": "GPL2",
- "version": "1.9.5-preview20150319",
- "url": "https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/PortableGit-1.9.5-preview20150319.7z",
- "hash": "26261872847b18d171a197c8e4b3f4c0e60b4310c4b8ef1f4d9884950288aa7c",
- "bin": [ "cmd\\git.exe", "cmd\\gitk.cmd" ],
- "post_install": [
- "git config --global credential.helper wincred"
- ],
- "checkver": {
- "url": "http://git-scm.com/download/win",
- "re": "downloading version ([^<]+)"
- }
+ "homepage": "http://msysgit.github.io/",
+ "license": "GPL2",
+ "version": "1.9.5-preview20150319",
+ "url": "https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/PortableGit-1.9.5-preview20150319.7z",
+ "hash": "26261872847b18d171a197c8e4b3f4c0e60b4310c4b8ef1f4d9884950288aa7c",
+ "bin": [ "cmd\\git.exe", "cmd\\gitk.cmd" ],
+ "post_install": [
+ "git config --global credential.helper wincred"
+ ],
+ "checkver": {
+ "url": "http://git-scm.com/download/win",
+ "re": "downloading version ([^<]+)"
+ }
}
diff --git a/bucket/go.json b/bucket/go.json
index acaf9c39d3..4a4af48cc7 100644
--- a/bucket/go.json
+++ b/bucket/go.json
@@ -1,21 +1,21 @@
{
- "version": "1.4.2",
- "homepage": "http://golang.org",
- "license": "http://golang.org/LICENSE",
- "architecture": {
- "64bit": {
- "url": "https://storage.googleapis.com/golang/go1.4.2.windows-amd64.zip",
- "hash": "sha1:91b229a3ff0a1ce6e791c832b0b4670bfc5457b5"
- },
- "32bit": {
- "url": "https://storage.googleapis.com/golang/go1.4.2.windows-386.zip",
- "hash": "sha1:0e074e66a7816561d7947ff5c3514be96f347dc4"
- }
- },
- "extract_dir": "go",
- "env_add_path": "bin",
- "env_set": {
- "GOROOT": "$dir"
- },
- "checkver": "