├── .gitignore ├── .travis.yml ├── .travis └── push.sh ├── LICENSE ├── README.md └── maintenance ├── github-crawler.py ├── requirements.txt └── template └── ReadmeTemplate.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | cache/ 3 | *.pickle -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3.6 3 | sudo: false 4 | install: "pip install -r maintenance/requirements.txt" 5 | script: "python maintenance/github-crawler.py" 6 | deploy: 7 | provider: script 8 | script: sh $TRAVIS_BUILD_DIR/.travis/push.sh 9 | skip_cleanup: true 10 | on: 11 | branch: master 12 | -------------------------------------------------------------------------------- /.travis/push.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | setup_git() { 4 | git checkout master 5 | git config --global user.email "travis@travis-ci.org" 6 | git config --global user.name "Travis CI" 7 | } 8 | 9 | upload_files() { 10 | git add . -A 11 | git commit --message "Travis build: $TRAVIS_BUILD_NUMBER [ci skip]" 12 | ls 13 | git remote add github-origin https://algomaniac:${GITHuB_TOKEN}@github.com/algomaniac/awesome-scoop.git 14 | git push --force --quiet github-origin master > /dev/null 2>&1 15 | } 16 | 17 | echo starting push 18 | setup_git 19 | upload_files -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 algomaniac 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-scoop 2 | A collection of awesome resource for the scoop package manager for windows 3 | 4 | # Build Status 5 | ![Build Status](https://travis-ci.org/tapannallan/awesome-scoop.svg?branch=master) 6 | 7 | # Third party buckets by popularity 8 | 9 | [https://github.com/integzz/scoopet](https://github.com/integzz/scoopet) 10 | * [package](https://github.com/integzz/scoopet/blob/master/package.json) 11 | 12 | 13 | 14 | [https://github.com/wangzq/scoop-bucket](https://github.com/wangzq/scoop-bucket) 15 | * [fusionpp](https://github.com/wangzq/scoop-bucket/blob/master/fusionpp.json) 16 | * [clrinject](https://github.com/wangzq/scoop-bucket/blob/master/clrinject.json) 17 | * [DotTraceSDK](https://github.com/wangzq/scoop-bucket/blob/master/DotTraceSDK.json) 18 | * [iiscrypto](https://github.com/wangzq/scoop-bucket/blob/master/iiscrypto.json) 19 | * [fart](https://github.com/wangzq/scoop-bucket/blob/master/fart.json) 20 | * [xunit.runner.wpf](https://github.com/wangzq/scoop-bucket/blob/master/xunit.runner.wpf.json) 21 | * [myfirefox](https://github.com/wangzq/scoop-bucket/blob/master/myfirefox.json) 22 | * [clrprofiler](https://github.com/wangzq/scoop-bucket/blob/master/clrprofiler.json) 23 | * [cs-script3](https://github.com/wangzq/scoop-bucket/blob/master/cs-script3.json) 24 | * [msos](https://github.com/wangzq/scoop-bucket/blob/master/msos.json) 25 | * [sqliteadmin](https://github.com/wangzq/scoop-bucket/blob/master/sqliteadmin.json) 26 | * [ilspycmd](https://github.com/wangzq/scoop-bucket/blob/master/ilspycmd.json) 27 | * [TortoiseGit](https://github.com/wangzq/scoop-bucket/blob/master/TortoiseGit.json) 28 | * [selfssl](https://github.com/wangzq/scoop-bucket/blob/master/selfssl.json) 29 | * [subinacl](https://github.com/wangzq/scoop-bucket/blob/master/subinacl.json) 30 | * [winrm-https](https://github.com/wangzq/scoop-bucket/blob/master/winrm-https.json) 31 | * [cs-script](https://github.com/wangzq/scoop-bucket/blob/master/cs-script.json) 32 | * [logparser](https://github.com/wangzq/scoop-bucket/blob/master/logparser.json) 33 | * [dnspylinks](https://github.com/wangzq/scoop-bucket/blob/master/dnspylinks.json) 34 | * [everything-cli](https://github.com/wangzq/scoop-bucket/blob/master/everything-cli.json) 35 | * [windbgx](https://github.com/wangzq/scoop-bucket/blob/master/windbgx.json) 36 | * [GreenShot](https://github.com/wangzq/scoop-bucket/blob/master/GreenShot.json) 37 | * [vim8](https://github.com/wangzq/scoop-bucket/blob/master/vim8.json) 38 | * [freemind](https://github.com/wangzq/scoop-bucket/blob/master/freemind.json) 39 | * [minidumpview](https://github.com/wangzq/scoop-bucket/blob/master/minidumpview.json) 40 | * [totalcmd](https://github.com/wangzq/scoop-bucket/blob/master/totalcmd.json) 41 | * [err](https://github.com/wangzq/scoop-bucket/blob/master/err.json) 42 | * [psrun](https://github.com/wangzq/scoop-bucket/blob/master/psrun.json) 43 | * [procmon](https://github.com/wangzq/scoop-bucket/blob/master/procmon.json) 44 | * [linqpad-anycpu](https://github.com/wangzq/scoop-bucket/blob/master/linqpad-anycpu.json) 45 | * [dnspy-alt](https://github.com/wangzq/scoop-bucket/blob/master/dnspy-alt.json) 46 | * [selenium-dotnet](https://github.com/wangzq/scoop-bucket/blob/master/selenium-dotnet.json) 47 | * [windbg](https://github.com/wangzq/scoop-bucket/blob/master/windbg.json) 48 | * [pstools](https://github.com/wangzq/scoop-bucket/blob/master/pstools.json) 49 | * [q](https://github.com/wangzq/scoop-bucket/blob/master/q.json) 50 | * [fsharp4](https://github.com/wangzq/scoop-bucket/blob/master/fsharp4.json) 51 | * [windbg32](https://github.com/wangzq/scoop-bucket/blob/master/windbg32.json) 52 | * [TraceSpy](https://github.com/wangzq/scoop-bucket/blob/master/TraceSpy.json) 53 | * [vcredist2010](https://github.com/wangzq/scoop-bucket/blob/master/vcredist2010.json) 54 | * [Vim2ConEmu](https://github.com/wangzq/scoop-bucket/blob/master/Vim2ConEmu.json) 55 | * [restart-chrome](https://github.com/wangzq/scoop-bucket/blob/master/restart-chrome.json) 56 | * [dnspy-settings](https://github.com/wangzq/scoop-bucket/blob/master/dnspy-settings.json) 57 | * [MonitorProfileSwitcher](https://github.com/wangzq/scoop-bucket/blob/master/MonitorProfileSwitcher.json) 58 | * [uptime](https://github.com/wangzq/scoop-bucket/blob/master/uptime.json) 59 | * [myprocesshacker](https://github.com/wangzq/scoop-bucket/blob/master/myprocesshacker.json) 60 | * [mingw-w64](https://github.com/wangzq/scoop-bucket/blob/master/mingw-w64.json) 61 | * [procexp](https://github.com/wangzq/scoop-bucket/blob/master/procexp.json) 62 | * [de4dot](https://github.com/wangzq/scoop-bucket/blob/master/de4dot.json) 63 | * [vhdxtool](https://github.com/wangzq/scoop-bucket/blob/master/vhdxtool.json) 64 | * [dnspyx](https://github.com/wangzq/scoop-bucket/blob/master/dnspyx.json) 65 | * [cdimage](https://github.com/wangzq/scoop-bucket/blob/master/cdimage.json) 66 | * [asminfo](https://github.com/wangzq/scoop-bucket/blob/master/asminfo.json) 67 | * [winimage](https://github.com/wangzq/scoop-bucket/blob/master/winimage.json) 68 | * [debugview](https://github.com/wangzq/scoop-bucket/blob/master/debugview.json) 69 | * [intellitrace](https://github.com/wangzq/scoop-bucket/blob/master/intellitrace.json) 70 | * [http.sys-manager](https://github.com/wangzq/scoop-bucket/blob/master/http.sys-manager.json) 71 | * [rdcman](https://github.com/wangzq/scoop-bucket/blob/master/rdcman.json) 72 | * [openapi-generator-cli](https://github.com/wangzq/scoop-bucket/blob/master/openapi-generator-cli.json) 73 | * [pfm](https://github.com/wangzq/scoop-bucket/blob/master/pfm.json) 74 | * [xrmtoolbox](https://github.com/wangzq/scoop-bucket/blob/master/xrmtoolbox.json) 75 | * [vcredist2015](https://github.com/wangzq/scoop-bucket/blob/master/vcredist2015.json) 76 | * [haroopad](https://github.com/wangzq/scoop-bucket/blob/master/haroopad.json) 77 | * [DeltaCopy](https://github.com/wangzq/scoop-bucket/blob/master/DeltaCopy.json) 78 | * [gptgen](https://github.com/wangzq/scoop-bucket/blob/master/gptgen.json) 79 | * [winscp](https://github.com/wangzq/scoop-bucket/blob/master/winscp.json) 80 | * [linkd](https://github.com/wangzq/scoop-bucket/blob/master/linkd.json) 81 | * [mdv](https://github.com/wangzq/scoop-bucket/blob/master/mdv.json) 82 | * [mdict](https://github.com/wangzq/scoop-bucket/blob/master/mdict.json) 83 | * [yumi](https://github.com/wangzq/scoop-bucket/blob/master/yumi.json) 84 | * [physdiskwrite](https://github.com/wangzq/scoop-bucket/blob/master/physdiskwrite.json) 85 | * [ilmerge](https://github.com/wangzq/scoop-bucket/blob/master/ilmerge.json) 86 | * [rawcap](https://github.com/wangzq/scoop-bucket/blob/master/rawcap.json) 87 | * [MsbuildLog](https://github.com/wangzq/scoop-bucket/blob/master/MsbuildLog.json) 88 | * [ilrepack](https://github.com/wangzq/scoop-bucket/blob/master/ilrepack.json) 89 | * [uuidgen](https://github.com/wangzq/scoop-bucket/blob/master/uuidgen.json) 90 | * [clipjump](https://github.com/wangzq/scoop-bucket/blob/master/clipjump.json) 91 | * [paket](https://github.com/wangzq/scoop-bucket/blob/master/paket.json) 92 | * [pdb2pdb](https://github.com/wangzq/scoop-bucket/blob/master/pdb2pdb.json) 93 | * [azcopy](https://github.com/wangzq/scoop-bucket/blob/master/azcopy.json) 94 | * [sqlmetal](https://github.com/wangzq/scoop-bucket/blob/master/sqlmetal.json) 95 | * [ctt](https://github.com/wangzq/scoop-bucket/blob/master/ctt.json) 96 | * [autorest](https://github.com/wangzq/scoop-bucket/blob/master/autorest.json) 97 | * [fsharp.compiler.codedom](https://github.com/wangzq/scoop-bucket/blob/master/fsharp.compiler.codedom.json) 98 | * [dnspy-wangzq](https://github.com/wangzq/scoop-bucket/blob/master/dnspy-wangzq.json) 99 | * [treesize](https://github.com/wangzq/scoop-bucket/blob/master/treesize.json) 100 | * [recycle](https://github.com/wangzq/scoop-bucket/blob/master/recycle.json) 101 | * [fvim](https://github.com/wangzq/scoop-bucket/blob/master/fvim.json) 102 | * [sqliteman](https://github.com/wangzq/scoop-bucket/blob/master/sqliteman.json) 103 | * [xdt](https://github.com/wangzq/scoop-bucket/blob/master/xdt.json) 104 | * [msos-x86](https://github.com/wangzq/scoop-bucket/blob/master/msos-x86.json) 105 | * [NugetPackageExplorer](https://github.com/wangzq/scoop-bucket/blob/master/NugetPackageExplorer.json) 106 | * [jpad](https://github.com/wangzq/scoop-bucket/blob/master/jpad.json) 107 | * [letter-icons](https://github.com/wangzq/scoop-bucket/blob/master/letter-icons.json) 108 | * [pswhich](https://github.com/wangzq/scoop-bucket/blob/master/pswhich.json) 109 | * [tracecli](https://github.com/wangzq/scoop-bucket/blob/master/tracecli.json) 110 | * [OwinHost](https://github.com/wangzq/scoop-bucket/blob/master/OwinHost.json) 111 | * [cpustress](https://github.com/wangzq/scoop-bucket/blob/master/cpustress.json) 112 | * [xdtgen](https://github.com/wangzq/scoop-bucket/blob/master/xdtgen.json) 113 | * [clipspy](https://github.com/wangzq/scoop-bucket/blob/master/clipspy.json) 114 | * [dnspy-x86](https://github.com/wangzq/scoop-bucket/blob/master/dnspy-x86.json) 115 | * [sqlformatter](https://github.com/wangzq/scoop-bucket/blob/master/sqlformatter.json) 116 | * [clojure](https://github.com/wangzq/scoop-bucket/blob/master/clojure.json) 117 | * [psparsing](https://github.com/wangzq/scoop-bucket/blob/master/psparsing.json) 118 | * [BinaryCompatChecker](https://github.com/wangzq/scoop-bucket/blob/master/BinaryCompatChecker.json) 119 | * [AzureSDK28](https://github.com/wangzq/scoop-bucket/blob/master/AzureSDK28.json) 120 | * [geckodriver](https://github.com/wangzq/scoop-bucket/blob/master/geckodriver.json) 121 | * [AsmSpy](https://github.com/wangzq/scoop-bucket/blob/master/AsmSpy.json) 122 | * [kaxaml](https://github.com/wangzq/scoop-bucket/blob/master/kaxaml.json) 123 | * [xunit.console](https://github.com/wangzq/scoop-bucket/blob/master/xunit.console.json) 124 | * [grpcui](https://github.com/wangzq/scoop-bucket/blob/master/grpcui.json) 125 | * [KeyPress-OSD](https://github.com/wangzq/scoop-bucket/blob/master/KeyPress-OSD.json) 126 | * [apiport](https://github.com/wangzq/scoop-bucket/blob/master/apiport.json) 127 | * [vimahk](https://github.com/wangzq/scoop-bucket/blob/master/vimahk.json) 128 | * [csv2db](https://github.com/wangzq/scoop-bucket/blob/master/csv2db.json) 129 | * [lister](https://github.com/wangzq/scoop-bucket/blob/master/lister.json) 130 | * [pdbdump](https://github.com/wangzq/scoop-bucket/blob/master/pdbdump.json) 131 | * [logparserstudio](https://github.com/wangzq/scoop-bucket/blob/master/logparserstudio.json) 132 | * [pdb2xml](https://github.com/wangzq/scoop-bucket/blob/master/pdb2xml.json) 133 | * [linqpad6](https://github.com/wangzq/scoop-bucket/blob/master/linqpad6.json) 134 | * [socat](https://github.com/wangzq/scoop-bucket/blob/master/socat.json) 135 | * [CrmPluginReg](https://github.com/wangzq/scoop-bucket/blob/master/CrmPluginReg.json) 136 | * [SparkleShare](https://github.com/wangzq/scoop-bucket/blob/master/SparkleShare.json) 137 | * [xsddiagram](https://github.com/wangzq/scoop-bucket/blob/master/xsddiagram.json) 138 | * [grpcurl](https://github.com/wangzq/scoop-bucket/blob/master/grpcurl.json) 139 | * [MySysInternals](https://github.com/wangzq/scoop-bucket/blob/master/MySysInternals.json) 140 | * [xmlexplorer](https://github.com/wangzq/scoop-bucket/blob/master/xmlexplorer.json) 141 | * [ttdl](https://github.com/wangzq/scoop-bucket/blob/master/ttdl.json) 142 | * [protogen](https://github.com/wangzq/scoop-bucket/blob/master/protogen.json) 143 | * [ssllabs-scan](https://github.com/wangzq/scoop-bucket/blob/master/ssllabs-scan.json) 144 | * [bootcamp-driver-downloader](https://github.com/wangzq/scoop-bucket/blob/master/bootcamp-driver-downloader.json) 145 | * [minisqlquery](https://github.com/wangzq/scoop-bucket/blob/master/minisqlquery.json) 146 | * [GreenFishIconEditor](https://github.com/wangzq/scoop-bucket/blob/master/GreenFishIconEditor.json) 147 | * [bc4](https://github.com/wangzq/scoop-bucket/blob/master/bc4.json) 148 | * [openssh-win64](https://github.com/wangzq/scoop-bucket/blob/master/openssh-win64.json) 149 | * [dia2dump](https://github.com/wangzq/scoop-bucket/blob/master/dia2dump.json) 150 | * [fsharp.core](https://github.com/wangzq/scoop-bucket/blob/master/fsharp.core.json) 151 | * [vim82](https://github.com/wangzq/scoop-bucket/blob/master/vim82.json) 152 | * [Rufus](https://github.com/wangzq/scoop-bucket/blob/master/Rufus.json) 153 | * [Wangzq.PathHelpers](https://github.com/wangzq/scoop-bucket/blob/master/Wangzq.PathHelpers.json) 154 | * [perl528](https://github.com/wangzq/scoop-bucket/blob/master/perl528.json) 155 | * [powershell-core](https://github.com/wangzq/scoop-bucket/blob/master/powershell-core.json) 156 | * [etcd](https://github.com/wangzq/scoop-bucket/blob/master/etcd.json) 157 | * [siggen](https://github.com/wangzq/scoop-bucket/blob/master/siggen.json) 158 | * [ScreenToGif](https://github.com/wangzq/scoop-bucket/blob/master/ScreenToGif.json) 159 | * [symchk](https://github.com/wangzq/scoop-bucket/blob/master/symchk.json) 160 | * [fnr](https://github.com/wangzq/scoop-bucket/blob/master/fnr.json) 161 | * [testparser](https://github.com/wangzq/scoop-bucket/blob/master/testparser.json) 162 | * [muCommander](https://github.com/wangzq/scoop-bucket/blob/master/muCommander.json) 163 | * [lua53](https://github.com/wangzq/scoop-bucket/blob/master/lua53.json) 164 | * [nurefs](https://github.com/wangzq/scoop-bucket/blob/master/nurefs.json) 165 | * [webpicmd-alt](https://github.com/wangzq/scoop-bucket/blob/master/webpicmd-alt.json) 166 | * [IntelliTraceCPConfig](https://github.com/wangzq/scoop-bucket/blob/master/IntelliTraceCPConfig.json) 167 | * [perfview](https://github.com/wangzq/scoop-bucket/blob/master/perfview.json) 168 | * [dotnet-core-uninstall](https://github.com/wangzq/scoop-bucket/blob/master/dotnet-core-uninstall.json) 169 | * [portqry](https://github.com/wangzq/scoop-bucket/blob/master/portqry.json) 170 | * [roslynator](https://github.com/wangzq/scoop-bucket/blob/master/roslynator.json) 171 | * [iedriver](https://github.com/wangzq/scoop-bucket/blob/master/iedriver.json) 172 | * [keyhh](https://github.com/wangzq/scoop-bucket/blob/master/keyhh.json) 173 | * [calibre-alt](https://github.com/wangzq/scoop-bucket/blob/master/calibre-alt.json) 174 | * [psgitext](https://github.com/wangzq/scoop-bucket/blob/master/psgitext.json) 175 | * [doublecmd](https://github.com/wangzq/scoop-bucket/blob/master/doublecmd.json) 176 | * [remapkey](https://github.com/wangzq/scoop-bucket/blob/master/remapkey.json) 177 | * [codesearch](https://github.com/wangzq/scoop-bucket/blob/master/codesearch.json) 178 | * [openjdk-with-jfx](https://github.com/wangzq/scoop-bucket/blob/master/openjdk-with-jfx.json) 179 | * [Wangzq.VimHelpers](https://github.com/wangzq/scoop-bucket/blob/master/Wangzq.VimHelpers.json) 180 | 181 | 182 | 183 | [https://github.com/rkbk60/scoop-for-jp](https://github.com/rkbk60/scoop-for-jp) 184 | * [cica](https://github.com/rkbk60/scoop-for-jp/blob/master/cica.json) 185 | * [emacs-nt](https://github.com/rkbk60/scoop-for-jp/blob/master/emacs-nt.json) 186 | * [ricty-diminished](https://github.com/rkbk60/scoop-for-jp/blob/master/ricty-diminished.json) 187 | * [nyagos](https://github.com/rkbk60/scoop-for-jp/blob/master/nyagos.json) 188 | * [myrica-m](https://github.com/rkbk60/scoop-for-jp/blob/master/myrica-m.json) 189 | * [jp-util-font](https://github.com/rkbk60/scoop-for-jp/blob/master/jp-util-font.json) 190 | * [source-han-code-jp](https://github.com/rkbk60/scoop-for-jp/blob/master/source-han-code-jp.json) 191 | * [myrica](https://github.com/rkbk60/scoop-for-jp/blob/master/myrica.json) 192 | * [vim-kaoriya](https://github.com/rkbk60/scoop-for-jp/blob/master/vim-kaoriya.json) 193 | 194 | 195 | 196 | [https://github.com/tetradice/scoop-iyokan-jp](https://github.com/tetradice/scoop-iyokan-jp) 197 | * [mery](https://github.com/tetradice/scoop-iyokan-jp/blob/master/mery.json) 198 | * [tablacus-explorer](https://github.com/tetradice/scoop-iyokan-jp/blob/master/tablacus-explorer.json) 199 | * [crystaldiskinfo](https://github.com/tetradice/scoop-iyokan-jp/blob/master/crystaldiskinfo.json) 200 | * [bluewind](https://github.com/tetradice/scoop-iyokan-jp/blob/master/bluewind.json) 201 | * [bluewind170b](https://github.com/tetradice/scoop-iyokan-jp/blob/master/bluewind170b.json) 202 | * [nyagos](https://github.com/tetradice/scoop-iyokan-jp/blob/master/nyagos.json) 203 | * [rdiff-backup](https://github.com/tetradice/scoop-iyokan-jp/blob/master/rdiff-backup.json) 204 | * [putty-ranvis](https://github.com/tetradice/scoop-iyokan-jp/blob/master/putty-ranvis.json) 205 | * [massigra](https://github.com/tetradice/scoop-iyokan-jp/blob/master/massigra.json) 206 | * [ssp](https://github.com/tetradice/scoop-iyokan-jp/blob/master/ssp.json) 207 | * [crystaldiskmark-shizuku](https://github.com/tetradice/scoop-iyokan-jp/blob/master/crystaldiskmark-shizuku.json) 208 | * [crystaldiskinfo-shizuku](https://github.com/tetradice/scoop-iyokan-jp/blob/master/crystaldiskinfo-shizuku.json) 209 | * [crystaldiskinfo-kureikei](https://github.com/tetradice/scoop-iyokan-jp/blob/master/crystaldiskinfo-kureikei.json) 210 | * [mery-beta](https://github.com/tetradice/scoop-iyokan-jp/blob/master/mery-beta.json) 211 | * [winmerge-jp](https://github.com/tetradice/scoop-iyokan-jp/blob/master/winmerge-jp.json) 212 | * [opera](https://github.com/tetradice/scoop-iyokan-jp/blob/master/opera.json) 213 | * [exuberantctags-jp](https://github.com/tetradice/scoop-iyokan-jp/blob/master/exuberantctags-jp.json) 214 | * [crystaldiskmark](https://github.com/tetradice/scoop-iyokan-jp/blob/master/crystaldiskmark.json) 215 | * [sakura-editor](https://github.com/tetradice/scoop-iyokan-jp/blob/master/sakura-editor.json) 216 | * [inazumasearch](https://github.com/tetradice/scoop-iyokan-jp/blob/master/inazumasearch.json) 217 | * [ckw](https://github.com/tetradice/scoop-iyokan-jp/blob/master/ckw.json) 218 | * [nyaos3](https://github.com/tetradice/scoop-iyokan-jp/blob/master/nyaos3.json) 219 | 220 | 221 | 222 | [https://github.com/rivy/scoop.bucket.scoop-main](https://github.com/rivy/scoop.bucket.scoop-main) 223 | * [cygwin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cygwin.json) 224 | * [hledger](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hledger.json) 225 | * [pandoc-crossref](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pandoc-crossref.json) 226 | * [trojan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/trojan.json) 227 | * [camunda-operate](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/camunda-operate.json) 228 | * [blat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/blat.json) 229 | * [octave](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/octave.json) 230 | * [ninja](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ninja.json) 231 | * [aws](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aws.json) 232 | * [mozjpeg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mozjpeg.json) 233 | * [k6](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/k6.json) 234 | * [gunk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gunk.json) 235 | * [apktool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/apktool.json) 236 | * [perl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/perl.json) 237 | * [b2sum](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/b2sum.json) 238 | * [nunit-console](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-console.json) 239 | * [sudo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sudo.json) 240 | * [stlink](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/stlink.json) 241 | * [racket-minimal](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/racket-minimal.json) 242 | * [mls-software-openssh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mls-software-openssh.json) 243 | * [mill](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mill.json) 244 | * [dua](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dua.json) 245 | * [gzip](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gzip.json) 246 | * [wget](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wget.json) 247 | * [invoke-build](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/invoke-build.json) 248 | * [bzip2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bzip2.json) 249 | * [png2html](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/png2html.json) 250 | * [digdag](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/digdag.json) 251 | * [highlight](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/highlight.json) 252 | * [pe-sieve](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pe-sieve.json) 253 | * [wyam](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wyam.json) 254 | * [brename](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/brename.json) 255 | * [dive](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dive.json) 256 | * [hugo-extended](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hugo-extended.json) 257 | * [goreleaser](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/goreleaser.json) 258 | * [helm-docs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/helm-docs.json) 259 | * [mdcat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mdcat.json) 260 | * [rustup](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rustup.json) 261 | * [flow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/flow.json) 262 | * [wuzz](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wuzz.json) 263 | * [cloud-nuke](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cloud-nuke.json) 264 | * [wkhtmltopdf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wkhtmltopdf.json) 265 | * [concourse-fly](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/concourse-fly.json) 266 | * [terraform](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/terraform.json) 267 | * [gobuster](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gobuster.json) 268 | * [xxcopy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xxcopy.json) 269 | * [aws-iam-authenticator](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aws-iam-authenticator.json) 270 | * [ahoy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ahoy.json) 271 | * [z.lua](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/z.lua.json) 272 | * [ethr](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ethr.json) 273 | * [nunit-extension-vs-project-loader](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-extension-vs-project-loader.json) 274 | * [micro](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/micro.json) 275 | * [lf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lf.json) 276 | * [fossil](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fossil.json) 277 | * [zola](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zola.json) 278 | * [traefik](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/traefik.json) 279 | * [datamash](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/datamash.json) 280 | * [ibmcloud-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ibmcloud-cli.json) 281 | * [lychee](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lychee.json) 282 | * [terragrunt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/terragrunt.json) 283 | * [legit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/legit.json) 284 | * [neko](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/neko.json) 285 | * [time](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/time.json) 286 | * [vim-nightly](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vim-nightly.json) 287 | * [ugrep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ugrep.json) 288 | * [czkawka](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/czkawka.json) 289 | * [tokei](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tokei.json) 290 | * [phantomjs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/phantomjs.json) 291 | * [ie11webdriver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ie11webdriver.json) 292 | * [oxipng](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/oxipng.json) 293 | * [seqcli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/seqcli.json) 294 | * [byacc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/byacc.json) 295 | * [scoop-validator](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scoop-validator.json) 296 | * [windows-application-driver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/windows-application-driver.json) 297 | * [racket](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/racket.json) 298 | * [pyenv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pyenv.json) 299 | * [b3sum](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/b3sum.json) 300 | * [ispc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ispc.json) 301 | * [kubeadm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubeadm.json) 302 | * [bulk-rename-command](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bulk-rename-command.json) 303 | * [jruby](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jruby.json) 304 | * [deno](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/deno.json) 305 | * [dotnet-script](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dotnet-script.json) 306 | * [lsd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lsd.json) 307 | * [vagrant](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vagrant.json) 308 | * [i2p-zero](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/i2p-zero.json) 309 | * [thrift](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/thrift.json) 310 | * [rclone](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rclone.json) 311 | * [git-filter-repo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-filter-repo.json) 312 | * [jcli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jcli.json) 313 | * [amulet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/amulet.json) 314 | * [rancher-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rancher-cli.json) 315 | * [zeebe](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zeebe.json) 316 | * [gping](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gping.json) 317 | * [node-chakracore](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/node-chakracore.json) 318 | * [cmake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cmake.json) 319 | * [sonarqube](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sonarqube.json) 320 | * [listmonk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/listmonk.json) 321 | * [exiftool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/exiftool.json) 322 | * [lwc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lwc.json) 323 | * [marp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/marp.json) 324 | * [ruby](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ruby.json) 325 | * [pyflow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pyflow.json) 326 | * [winflexbison](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/winflexbison.json) 327 | * [algernon](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/algernon.json) 328 | * [consul](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/consul.json) 329 | * [gcc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gcc.json) 330 | * [winpython](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/winpython.json) 331 | * [cmder-full](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cmder-full.json) 332 | * [ripgrep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ripgrep.json) 333 | * [dmg2img](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dmg2img.json) 334 | * [wavpack](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wavpack.json) 335 | * [dd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dd.json) 336 | * [ffmpeg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg.json) 337 | * [haxe-dev](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/haxe-dev.json) 338 | * [nero-aac](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nero-aac.json) 339 | * [ccl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ccl.json) 340 | * [tidy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tidy.json) 341 | * [portainer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/portainer.json) 342 | * [spark](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/spark.json) 343 | * [asciidoctorj](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/asciidoctorj.json) 344 | * [tor](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tor.json) 345 | * [mediainfo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mediainfo.json) 346 | * [shasum](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/shasum.json) 347 | * [diffutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/diffutils.json) 348 | * [prometheus-pushgateway](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/prometheus-pushgateway.json) 349 | * [nunit-extension-nunit-v2-result-writer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-extension-nunit-v2-result-writer.json) 350 | * [cscope](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cscope.json) 351 | * [rke](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rke.json) 352 | * [rakudo-star](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rakudo-star.json) 353 | * [fzf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fzf.json) 354 | * [git-istage](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-istage.json) 355 | * [nircmd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nircmd.json) 356 | * [cowsay](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cowsay.json) 357 | * [texlab](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/texlab.json) 358 | * [simple-http-server](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/simple-http-server.json) 359 | * [mysql-workbench](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mysql-workbench.json) 360 | * [file](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/file.json) 361 | * [gdrive](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gdrive.json) 362 | * [kapacitor](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kapacitor.json) 363 | * [shfmt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/shfmt.json) 364 | * [composer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/composer.json) 365 | * [optipng](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/optipng.json) 366 | * [inadyn-mt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/inadyn-mt.json) 367 | * [red](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/red.json) 368 | * [ptags](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ptags.json) 369 | * [mosquitto](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mosquitto.json) 370 | * [unrar](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unrar.json) 371 | * [i2p](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/i2p.json) 372 | * [stern](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/stern.json) 373 | * [pdf2djvu](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pdf2djvu.json) 374 | * [v2ray](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/v2ray.json) 375 | * [codeowners-validator](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/codeowners-validator.json) 376 | * [symfony-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/symfony-cli.json) 377 | * [forego](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/forego.json) 378 | * [aria2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aria2.json) 379 | * [megatools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/megatools.json) 380 | * [hjson](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hjson.json) 381 | * [kubectxwin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubectxwin.json) 382 | * [pandoc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pandoc.json) 383 | * [qpdf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/qpdf.json) 384 | * [nvs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nvs.json) 385 | * [evans](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/evans.json) 386 | * [scons](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scons.json) 387 | * [pwsh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pwsh.json) 388 | * [cht](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cht.json) 389 | * [conan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/conan.json) 390 | * [lzip](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lzip.json) 391 | * [hexed](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hexed.json) 392 | * [git-chglog](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-chglog.json) 393 | * [unxutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unxutils.json) 394 | * [jq](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jq.json) 395 | * [plex-server](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/plex-server.json) 396 | * [fake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fake.json) 397 | * [annie](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/annie.json) 398 | * [halo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/halo.json) 399 | * [which](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/which.json) 400 | * [shim](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/shim.json) 401 | * [msys2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/msys2.json) 402 | * [hcloud](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hcloud.json) 403 | * [memcached](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/memcached.json) 404 | * [nodejs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nodejs.json) 405 | * [autoit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/autoit.json) 406 | * [nginx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nginx.json) 407 | * [lazydocker](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lazydocker.json) 408 | * [nextdns](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nextdns.json) 409 | * [hugo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hugo.json) 410 | * [fd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fd.json) 411 | * [swig](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/swig.json) 412 | * [docker-nightly](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/docker-nightly.json) 413 | * [gof](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gof.json) 414 | * [roswell](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/roswell.json) 415 | * [wasmer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wasmer.json) 416 | * [ffmpeg-shared](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg-shared.json) 417 | * [findutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/findutils.json) 418 | * [nyagos](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nyagos.json) 419 | * [ammonite](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ammonite.json) 420 | * [delta](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/delta.json) 421 | * [zenhan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zenhan.json) 422 | * [jojodiff](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jojodiff.json) 423 | * [nssm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nssm.json) 424 | * [azure-ps](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/azure-ps.json) 425 | * [pcregrep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pcregrep.json) 426 | * [protoc-gen-grpc-web](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/protoc-gen-grpc-web.json) 427 | * [rethinkdb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rethinkdb.json) 428 | * [android-clt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/android-clt.json) 429 | * [gopass](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gopass.json) 430 | * [hollows-hunter](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hollows-hunter.json) 431 | * [monero-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/monero-cli.json) 432 | * [tesseract-languages](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tesseract-languages.json) 433 | * [redis](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/redis.json) 434 | * [tesseract](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tesseract.json) 435 | * [velero](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/velero.json) 436 | * [rtmpdump](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rtmpdump.json) 437 | * [prometheus](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/prometheus.json) 438 | * [openOCD](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openOCD.json) 439 | * [colortool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/colortool.json) 440 | * [yasm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yasm.json) 441 | * [ffmpeg-nightly-shared-vulkan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg-nightly-shared-vulkan.json) 442 | * [iconv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/iconv.json) 443 | * [upm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/upm.json) 444 | * [eac3to](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/eac3to.json) 445 | * [deta](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/deta.json) 446 | * [jdupes](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jdupes.json) 447 | * [zoxide](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zoxide.json) 448 | * [byenow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/byenow.json) 449 | * [restic](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/restic.json) 450 | * [make](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/make.json) 451 | * [redis5](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/redis5.json) 452 | * [unison](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unison.json) 453 | * [chuck](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/chuck.json) 454 | * [xidel](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xidel.json) 455 | * [rget](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rget.json) 456 | * [mariadb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mariadb.json) 457 | * [sed](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sed.json) 458 | * [uutils-coreutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/uutils-coreutils.json) 459 | * [netcat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/netcat.json) 460 | * [saml2aws](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/saml2aws.json) 461 | * [postgrest](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/postgrest.json) 462 | * [warp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/warp.json) 463 | * [prince](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/prince.json) 464 | * [dog](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dog.json) 465 | * [caddy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/caddy.json) 466 | * [editorconfig](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/editorconfig.json) 467 | * [dosbox](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dosbox.json) 468 | * [govc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/govc.json) 469 | * [flux2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/flux2.json) 470 | * [rdiff-backup](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rdiff-backup.json) 471 | * [openssl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openssl.json) 472 | * [kompose](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kompose.json) 473 | * [butterflow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/butterflow.json) 474 | * [wasmtime](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wasmtime.json) 475 | * [sentry-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sentry-cli.json) 476 | * [cloud-sql-proxy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cloud-sql-proxy.json) 477 | * [pkg-config](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pkg-config.json) 478 | * [runasti](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/runasti.json) 479 | * [ghq](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ghq.json) 480 | * [nali](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nali.json) 481 | * [puppet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/puppet.json) 482 | * [latexindent](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/latexindent.json) 483 | * [intermodal](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/intermodal.json) 484 | * [gh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gh.json) 485 | * [leiningen](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/leiningen.json) 486 | * [enomic](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/enomic.json) 487 | * [kubectl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubectl.json) 488 | * [edgedriver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/edgedriver.json) 489 | * [jabba](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jabba.json) 490 | * [teleport](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/teleport.json) 491 | * [bfg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bfg.json) 492 | * [xming](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xming.json) 493 | * [webhook](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/webhook.json) 494 | * [sass](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sass.json) 495 | * [isx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/isx.json) 496 | * [gnupg1](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gnupg1.json) 497 | * [avrdude](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/avrdude.json) 498 | * [ticker](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ticker.json) 499 | * [kubeval](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubeval.json) 500 | * [croc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/croc.json) 501 | * [php](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/php.json) 502 | * [tup](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tup.json) 503 | * [srvman](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/srvman.json) 504 | * [zookeeper](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zookeeper.json) 505 | * [gossm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gossm.json) 506 | * [rust](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rust.json) 507 | * [tar](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tar.json) 508 | * [git-town](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-town.json) 509 | * [git-annex](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-annex.json) 510 | * [kalk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kalk.json) 511 | * [just](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/just.json) 512 | * [jom](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jom.json) 513 | * [rancher-compose](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rancher-compose.json) 514 | * [cacert](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cacert.json) 515 | * [waypoint](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/waypoint.json) 516 | * [zip](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zip.json) 517 | * [mro](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mro.json) 518 | * [gnirehtet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gnirehtet.json) 519 | * [prm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/prm.json) 520 | * [yosys](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yosys.json) 521 | * [tunnel](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tunnel.json) 522 | * [stack](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/stack.json) 523 | * [glslang-nightly](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glslang-nightly.json) 524 | * [1password-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/1password-cli.json) 525 | * [gauche](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gauche.json) 526 | * [awsSts](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/awsSts.json) 527 | * [jhead](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jhead.json) 528 | * [sslscan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sslscan.json) 529 | * [casperjs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/casperjs.json) 530 | * [tflint](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tflint.json) 531 | * [forge](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/forge.json) 532 | * [poppler](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/poppler.json) 533 | * [glow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glow.json) 534 | * [omnisharp-http](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/omnisharp-http.json) 535 | * [xmake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xmake.json) 536 | * [usql](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/usql.json) 537 | * [mongodb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mongodb.json) 538 | * [minisign](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/minisign.json) 539 | * [telnet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/telnet.json) 540 | * [pngquant](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pngquant.json) 541 | * [djvulibre](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/djvulibre.json) 542 | * [hostctl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hostctl.json) 543 | * [syncany-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/syncany-cli.json) 544 | * [scaleway-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scaleway-cli.json) 545 | * [wttop](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wttop.json) 546 | * [jd-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jd-cli.json) 547 | * [postgresql](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/postgresql.json) 548 | * [exercism](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/exercism.json) 549 | * [yq](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yq.json) 550 | * [rcedit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rcedit.json) 551 | * [hygen](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hygen.json) 552 | * [k9s](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/k9s.json) 553 | * [nano](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nano.json) 554 | * [dep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dep.json) 555 | * [scriptcs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scriptcs.json) 556 | * [x265](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/x265.json) 557 | * [tta](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tta.json) 558 | * [vswhere](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vswhere.json) 559 | * [sbt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sbt.json) 560 | * [lynx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lynx.json) 561 | * [vmaf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vmaf.json) 562 | * [cockroachdb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cockroachdb.json) 563 | * [megacmd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/megacmd.json) 564 | * [n-m3u8dl-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/n-m3u8dl-cli.json) 565 | * [vault](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vault.json) 566 | * [docfx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/docfx.json) 567 | * [graphicsmagick](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/graphicsmagick.json) 568 | * [ngrok](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ngrok.json) 569 | * [unbound](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unbound.json) 570 | * [tea](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tea.json) 571 | * [direnv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/direnv.json) 572 | * [git-with-openssh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-with-openssh.json) 573 | * [git-lfs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-lfs.json) 574 | * [lean-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lean-cli.json) 575 | * [gomplate](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gomplate.json) 576 | * [pup](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pup.json) 577 | * [dvc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dvc.json) 578 | * [go](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/go.json) 579 | * [msys](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/msys.json) 580 | * [youtube-dl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/youtube-dl.json) 581 | * [austin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/austin.json) 582 | * [dig](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dig.json) 583 | * [chroma](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/chroma.json) 584 | * [cutter](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cutter.json) 585 | * [nmap-portable](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nmap-portable.json) 586 | * [glslang](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glslang.json) 587 | * [ffmpeg-nightly](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg-nightly.json) 588 | * [pdfbox](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pdfbox.json) 589 | * [yubikey-personalization](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yubikey-personalization.json) 590 | * [nasm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nasm.json) 591 | * [apache](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/apache.json) 592 | * [mercurial](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mercurial.json) 593 | * [libwebp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/libwebp.json) 594 | * [grpc-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/grpc-tools.json) 595 | * [mtn](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mtn.json) 596 | * [modd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/modd.json) 597 | * [pulumi](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pulumi.json) 598 | * [aliyun](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aliyun.json) 599 | * [dotnet-sdk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dotnet-sdk.json) 600 | * [yara](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yara.json) 601 | * [pypy2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pypy2.json) 602 | * [avr-gcc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/avr-gcc.json) 603 | * [kotlin-native](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kotlin-native.json) 604 | * [git-crypt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-crypt.json) 605 | * [ccache](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ccache.json) 606 | * [busybox](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/busybox.json) 607 | * [rust-msvc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rust-msvc.json) 608 | * [kaf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kaf.json) 609 | * [protolint](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/protolint.json) 610 | * [nuget](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nuget.json) 611 | * [kubens](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubens.json) 612 | * [moonscript](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/moonscript.json) 613 | * [pypy3](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pypy3.json) 614 | * [haskell](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/haskell.json) 615 | * [boundary](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/boundary.json) 616 | * [espanso](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/espanso.json) 617 | * [7zip](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/7zip.json) 618 | * [buck](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/buck.json) 619 | * [dhall](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dhall.json) 620 | * [artifact](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/artifact.json) 621 | * [fciv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fciv.json) 622 | * [kubelet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubelet.json) 623 | * [duf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/duf.json) 624 | * [kotlin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kotlin.json) 625 | * [erlang](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/erlang.json) 626 | * [cdrtools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cdrtools.json) 627 | * [armor](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/armor.json) 628 | * [m4](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/m4.json) 629 | * [i2p-portable](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/i2p-portable.json) 630 | * [jar2app](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jar2app.json) 631 | * [uncrustify](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/uncrustify.json) 632 | * [serve](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/serve.json) 633 | * [elixir](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/elixir.json) 634 | * [flatc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/flatc.json) 635 | * [coredns](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/coredns.json) 636 | * [ccat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ccat.json) 637 | * [metastore](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/metastore.json) 638 | * [fnproject](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fnproject.json) 639 | * [minio-client](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/minio-client.json) 640 | * [say](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/say.json) 641 | * [flyway](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/flyway.json) 642 | * [azure-functions-core-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/azure-functions-core-tools.json) 643 | * [qaac](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/qaac.json) 644 | * [ssh-copy-id](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ssh-copy-id.json) 645 | * [tldr](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tldr.json) 646 | * [ghostscript](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ghostscript.json) 647 | * [pciutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pciutils.json) 648 | * [scala](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scala.json) 649 | * [graphviz](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/graphviz.json) 650 | * [gdb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gdb.json) 651 | * [mysql](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mysql.json) 652 | * [openssh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openssh.json) 653 | * [kubefwd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubefwd.json) 654 | * [vector](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vector.json) 655 | * [dirhash](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dirhash.json) 656 | * [patch](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/patch.json) 657 | * [gow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gow.json) 658 | * [paket](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/paket.json) 659 | * [radare2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/radare2.json) 660 | * [r128gain](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/r128gain.json) 661 | * [bazel](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bazel.json) 662 | * [minishift](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/minishift.json) 663 | * [vimtutor](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vimtutor.json) 664 | * [aks-engine](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aks-engine.json) 665 | * [cloudflared](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cloudflared.json) 666 | * [ln](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ln.json) 667 | * [lab](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lab.json) 668 | * [up](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/up.json) 669 | * [nim](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nim.json) 670 | * [jx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jx.json) 671 | * [docker-compose](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/docker-compose.json) 672 | * [proxychains](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/proxychains.json) 673 | * [git-interactive-rebase-tool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-interactive-rebase-tool.json) 674 | * [naiveproxy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/naiveproxy.json) 675 | * [jira](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jira.json) 676 | * [grails](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/grails.json) 677 | * [kapp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kapp.json) 678 | * [gource](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gource.json) 679 | * [python](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/python.json) 680 | * [y-cruncher](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/y-cruncher.json) 681 | * [idris](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/idris.json) 682 | * [aws-vault](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aws-vault.json) 683 | * [r](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/r.json) 684 | * [haxe](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/haxe.json) 685 | * [astyle](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/astyle.json) 686 | * [winnfsd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/winnfsd.json) 687 | * [shellcheck](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/shellcheck.json) 688 | * [win-acme](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/win-acme.json) 689 | * [dart](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dart.json) 690 | * [dokka](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dokka.json) 691 | * [iverilog](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/iverilog.json) 692 | * [lua-for-windows](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lua-for-windows.json) 693 | * [dapr-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dapr-cli.json) 694 | * [ravendb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ravendb.json) 695 | * [broot](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/broot.json) 696 | * [sendmail](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sendmail.json) 697 | * [transmission-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/transmission-cli.json) 698 | * [ffsend](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffsend.json) 699 | * [adb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/adb.json) 700 | * [innoextract](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/innoextract.json) 701 | * [smartmontools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/smartmontools.json) 702 | * [gitea](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitea.json) 703 | * [btyacc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/btyacc.json) 704 | * [glab](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glab.json) 705 | * [insect](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/insect.json) 706 | * [kustomize](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kustomize.json) 707 | * [selenium](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/selenium.json) 708 | * [unar](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unar.json) 709 | * [spotbugs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/spotbugs.json) 710 | * [ctags](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ctags.json) 711 | * [sccache](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sccache.json) 712 | * [clink](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/clink.json) 713 | * [rainbow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rainbow.json) 714 | * [emitter](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/emitter.json) 715 | * [gbt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gbt.json) 716 | * [apimtemplate](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/apimtemplate.json) 717 | * [deepstream](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/deepstream.json) 718 | * [dmd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dmd.json) 719 | * [mono](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mono.json) 720 | * [sox](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sox.json) 721 | * [gitversion](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitversion.json) 722 | * [openshift-origin-client](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openshift-origin-client.json) 723 | * [watchexec](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/watchexec.json) 724 | * [helmfile](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/helmfile.json) 725 | * [premake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/premake.json) 726 | * [vbindiff](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vbindiff.json) 727 | * [coursier](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/coursier.json) 728 | * [k3d](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/k3d.json) 729 | * [eventstore](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/eventstore.json) 730 | * [faas-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/faas-cli.json) 731 | * [hub](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hub.json) 732 | * [migrate](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/migrate.json) 733 | * [opus-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/opus-tools.json) 734 | * [x264](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/x264.json) 735 | * [abc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/abc.json) 736 | * [gnupg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gnupg.json) 737 | * [gauge](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gauge.json) 738 | * [sops](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sops.json) 739 | * [sampler](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sampler.json) 740 | * [rust-analyzer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rust-analyzer.json) 741 | * [osslsigncode](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/osslsigncode.json) 742 | * [xsv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xsv.json) 743 | * [nunit-extension-nunit-v2-driver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-extension-nunit-v2-driver.json) 744 | * [xz](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xz.json) 745 | * [tre-command](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tre-command.json) 746 | * [heroku-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/heroku-cli.json) 747 | * [tinygo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tinygo.json) 748 | * [mob](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mob.json) 749 | * [boxes](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/boxes.json) 750 | * [gpg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gpg.json) 751 | * [unzip](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/unzip.json) 752 | * [minikube](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/minikube.json) 753 | * [serverless](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/serverless.json) 754 | * [iperf3](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/iperf3.json) 755 | * [cuda](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cuda.json) 756 | * [openresty](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openresty.json) 757 | * [curl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/curl.json) 758 | * [envsubst](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/envsubst.json) 759 | * [gogs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gogs.json) 760 | * [ag](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ag.json) 761 | * [wp-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wp-cli.json) 762 | * [jid](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jid.json) 763 | * [duplicacy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/duplicacy.json) 764 | * [cfr](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cfr.json) 765 | * [git-tfs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-tfs.json) 766 | * [msmpi](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/msmpi.json) 767 | * [micronaut](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/micronaut.json) 768 | * [nu](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nu.json) 769 | * [glide](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glide.json) 770 | * [draft](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/draft.json) 771 | * [beehive](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/beehive.json) 772 | * [kubectx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kubectx.json) 773 | * [nmap](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nmap.json) 774 | * [grex](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/grex.json) 775 | * [pt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pt.json) 776 | * [yubico-piv-tool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yubico-piv-tool.json) 777 | * [s3deploy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/s3deploy.json) 778 | * [doctl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/doctl.json) 779 | * [awsQueue](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/awsQueue.json) 780 | * [yori](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yori.json) 781 | * [rtools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rtools.json) 782 | * [far](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/far.json) 783 | * [eksctl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/eksctl.json) 784 | * [fx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fx.json) 785 | * [buffalo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/buffalo.json) 786 | * [devd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/devd.json) 787 | * [shadowsocks-rust](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/shadowsocks-rust.json) 788 | * [pshazz](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pshazz.json) 789 | * [gradle-bin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gradle-bin.json) 790 | * [fontreg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fontreg.json) 791 | * [topgrade](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/topgrade.json) 792 | * [speedtest-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/speedtest-cli.json) 793 | * [ack](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ack.json) 794 | * [resharper-clt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/resharper-clt.json) 795 | * [mach2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mach2.json) 796 | * [aws-copilot](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/aws-copilot.json) 797 | * [gettext](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gettext.json) 798 | * [grep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/grep.json) 799 | * [terraform-provider-ibm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/terraform-provider-ibm.json) 800 | * [figlet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/figlet.json) 801 | * [kops](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kops.json) 802 | * [bat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bat.json) 803 | * [uncap](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/uncap.json) 804 | * [touch](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/touch.json) 805 | * [php-nts](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/php-nts.json) 806 | * [jfrog](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jfrog.json) 807 | * [geckodriver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/geckodriver.json) 808 | * [scoop-shim](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scoop-shim.json) 809 | * [balena-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/balena-cli.json) 810 | * [tcc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tcc.json) 811 | * [azure-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/azure-cli.json) 812 | * [dnscrypt-proxy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dnscrypt-proxy.json) 813 | * [scholdoc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scholdoc.json) 814 | * [potrace](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/potrace.json) 815 | * [glitter](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/glitter.json) 816 | * [ffmpeg-nightly-shared](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg-nightly-shared.json) 817 | * [dotnet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dotnet.json) 818 | * [starship](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/starship.json) 819 | * [coreutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/coreutils.json) 820 | * [runat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/runat.json) 821 | * [recycle-bin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/recycle-bin.json) 822 | * [pngcrush](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pngcrush.json) 823 | * [tektoncd-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/tektoncd-cli.json) 824 | * [ipopt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ipopt.json) 825 | * [centrifugo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/centrifugo.json) 826 | * [genact](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/genact.json) 827 | * [circleci-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/circleci-cli.json) 828 | * [nunit-extension-nunit-project-loader](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-extension-nunit-project-loader.json) 829 | * [httpstat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/httpstat.json) 830 | * [neofetch](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/neofetch.json) 831 | * [csvtosql](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/csvtosql.json) 832 | * [polaris](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/polaris.json) 833 | * [apngasm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/apngasm.json) 834 | * [bochs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bochs.json) 835 | * [beeflang](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/beeflang.json) 836 | * [axel](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/axel.json) 837 | * [vim](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vim.json) 838 | * [psake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/psake.json) 839 | * [pdftk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pdftk.json) 840 | * [bind](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bind.json) 841 | * [docker-machine](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/docker-machine.json) 842 | * [imagemagick](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/imagemagick.json) 843 | * [gomake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gomake.json) 844 | * [vulkan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vulkan.json) 845 | * [yarn](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/yarn.json) 846 | * [clash](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/clash.json) 847 | * [containerd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/containerd.json) 848 | * [peco](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/peco.json) 849 | * [gitignore](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitignore.json) 850 | * [win32-openssh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/win32-openssh.json) 851 | * [sdcc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sdcc.json) 852 | * [png2jpeg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/png2jpeg.json) 853 | * [hashlink](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hashlink.json) 854 | * [bison](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bison.json) 855 | * [syncthing](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/syncthing.json) 856 | * [liquibase](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/liquibase.json) 857 | * [gawk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gawk.json) 858 | * [sndcpy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sndcpy.json) 859 | * [gallery-dl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gallery-dl.json) 860 | * [xpdf-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xpdf-tools.json) 861 | * [pack](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pack.json) 862 | * [git-sizer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-sizer.json) 863 | * [latex](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/latex.json) 864 | * [dos2unix](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dos2unix.json) 865 | * [git](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git.json) 866 | * [guetzli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/guetzli.json) 867 | * [mailsend](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mailsend.json) 868 | * [xh](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xh.json) 869 | * [qrcp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/qrcp.json) 870 | * [k0s](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/k0s.json) 871 | * [omnisharp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/omnisharp.json) 872 | * [gitomatic](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitomatic.json) 873 | * [gifsicle](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gifsicle.json) 874 | * [cormanlisp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cormanlisp.json) 875 | * [drone](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/drone.json) 876 | * [dependency-check](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dependency-check.json) 877 | * [procs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/procs.json) 878 | * [mutagen](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mutagen.json) 879 | * [xray](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xray.json) 880 | * [grpcurl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/grpcurl.json) 881 | * [hadolint](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hadolint.json) 882 | * [redpen](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/redpen.json) 883 | * [gitlab-runner](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitlab-runner.json) 884 | * [gitui](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitui.json) 885 | * [xdelta](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xdelta.json) 886 | * [act](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/act.json) 887 | * [chromedriver](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/chromedriver.json) 888 | * [lessmsi](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lessmsi.json) 889 | * [nvm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nvm.json) 890 | * [julia](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/julia.json) 891 | * [kafka-exporter](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kafka-exporter.json) 892 | * [mailsend-go](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mailsend-go.json) 893 | * [allure](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/allure.json) 894 | * [promtail](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/promtail.json) 895 | * [sbcl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sbcl.json) 896 | * [trid](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/trid.json) 897 | * [packer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/packer.json) 898 | * [openssl-mingw](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/openssl-mingw.json) 899 | * [mockery](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mockery.json) 900 | * [atomicparsley](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/atomicparsley.json) 901 | * [pester](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/pester.json) 902 | * [sigrok](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sigrok.json) 903 | * [less](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/less.json) 904 | * [gnuplot](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gnuplot.json) 905 | * [global](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/global.json) 906 | * [monolith](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/monolith.json) 907 | * [gifski](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gifski.json) 908 | * [blink1-tool](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/blink1-tool.json) 909 | * [mpxplay](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mpxplay.json) 910 | * [cloak](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cloak.json) 911 | * [alass](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/alass.json) 912 | * [ant](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ant.json) 913 | * [go-ipfs](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/go-ipfs.json) 914 | * [msival2](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/msival2.json) 915 | * [chisel](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/chisel.json) 916 | * [zstd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/zstd.json) 917 | * [innounp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/innounp.json) 918 | * [mingit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mingit.json) 919 | * [connect](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/connect.json) 920 | * [fluxctl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fluxctl.json) 921 | * [lilypond](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lilypond.json) 922 | * [jd-cmd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/jd-cmd.json) 923 | * [wixtoolset](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wixtoolset.json) 924 | * [arduino-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/arduino-cli.json) 925 | * [vdesk](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vdesk.json) 926 | * [ytdl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ytdl.json) 927 | * [armclient](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/armclient.json) 928 | * [groovy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/groovy.json) 929 | * [maven](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/maven.json) 930 | * [kind](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kind.json) 931 | * [powerping](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/powerping.json) 932 | * [ntop](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ntop.json) 933 | * [rakudo-moar](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rakudo-moar.json) 934 | * [cmder](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cmder.json) 935 | * [srecord](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/srecord.json) 936 | * [dust](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dust.json) 937 | * [scc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scc.json) 938 | * [etcd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/etcd.json) 939 | * [sliksvn](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sliksvn.json) 940 | * [concfg](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/concfg.json) 941 | * [cake](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cake.json) 942 | * [flac](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/flac.json) 943 | * [lua](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lua.json) 944 | * [frp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/frp.json) 945 | * [cloc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cloc.json) 946 | * [mongodb-database-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mongodb-database-tools.json) 947 | * [redshift](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/redshift.json) 948 | * [telegraf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/telegraf.json) 949 | * [groovyserv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/groovyserv.json) 950 | * [upx](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/upx.json) 951 | * [doxygen](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/doxygen.json) 952 | * [lame](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lame.json) 953 | * [emplace](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/emplace.json) 954 | * [nodejs-lts](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nodejs-lts.json) 955 | * [px](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/px.json) 956 | * [kafka](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/kafka.json) 957 | * [sqlite](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sqlite.json) 958 | * [httping](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/httping.json) 959 | * [sacad](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sacad.json) 960 | * [fnm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fnm.json) 961 | * [lcow](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/lcow.json) 962 | * [argocd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/argocd.json) 963 | * [acmesharp](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/acmesharp.json) 964 | * [oh-my-posh3](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/oh-my-posh3.json) 965 | * [elm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/elm.json) 966 | * [brotli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/brotli.json) 967 | * [ldc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ldc.json) 968 | * [smimesign](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/smimesign.json) 969 | * [nomad](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nomad.json) 970 | * [links](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/links.json) 971 | * [stdiscosrv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/stdiscosrv.json) 972 | * [signal-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/signal-cli.json) 973 | * [puppet-bolt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/puppet-bolt.json) 974 | * [csview](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/csview.json) 975 | * [ziglang](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ziglang.json) 976 | * [hashcat](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hashcat.json) 977 | * [mingit-busybox](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mingit-busybox.json) 978 | * [empty-recycle-bin](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/empty-recycle-bin.json) 979 | * [svtplay-dl](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/svtplay-dl.json) 980 | * [objconv](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/objconv.json) 981 | * [PowerSession](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/PowerSession.json) 982 | * [coq](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/coq.json) 983 | * [chronograf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/chronograf.json) 984 | * [figurine](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/figurine.json) 985 | * [bt2qbt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bt2qbt.json) 986 | * [docker](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/docker.json) 987 | * [bit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bit.json) 988 | * [git-up](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/git-up.json) 989 | * [dark](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/dark.json) 990 | * [influxdb](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/influxdb.json) 991 | * [s](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/s.json) 992 | * [gsl-shell](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gsl-shell.json) 993 | * [fio](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/fio.json) 994 | * [bicep](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bicep.json) 995 | * [nunit-extension-teamcity-event-listener](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/nunit-extension-teamcity-event-listener.json) 996 | * [rktools2k3](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rktools2k3.json) 997 | * [bbk-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bbk-cli.json) 998 | * [ddev](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ddev.json) 999 | * [helm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/helm.json) 1000 | * [force](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/force.json) 1001 | * [bitwarden-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bitwarden-cli.json) 1002 | * [sd](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sd.json) 1003 | * [stoplight-prism](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/stoplight-prism.json) 1004 | * [neovim](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/neovim.json) 1005 | * [diun](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/diun.json) 1006 | * [handbrake-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/handbrake-cli.json) 1007 | * [uber-apk-signer](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/uber-apk-signer.json) 1008 | * [rustup-msvc](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rustup-msvc.json) 1009 | * [psutils](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/psutils.json) 1010 | * [noti](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/noti.json) 1011 | * [geoipupdate](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/geoipupdate.json) 1012 | * [sonar-scanner](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sonar-scanner.json) 1013 | * [gibo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gibo.json) 1014 | * [scrcpy](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scrcpy.json) 1015 | * [gsudo](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gsudo.json) 1016 | * [gitkube](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gitkube.json) 1017 | * [minio](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/minio.json) 1018 | * [purescript](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/purescript.json) 1019 | * [mdbook](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/mdbook.json) 1020 | * [okteto](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/okteto.json) 1021 | * [llvm](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/llvm.json) 1022 | * [cppcheck](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cppcheck.json) 1023 | * [srlua](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/srlua.json) 1024 | * [hyperfine](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/hyperfine.json) 1025 | * [qemu](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/qemu.json) 1026 | * [vt-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/vt-cli.json) 1027 | * [rga](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/rga.json) 1028 | * [cobalt](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/cobalt.json) 1029 | * [k2tf](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/k2tf.json) 1030 | * [avro-tools](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/avro-tools.json) 1031 | * [czkawka-cli](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/czkawka-cli.json) 1032 | * [ffmpeg-nightly-vulkan](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ffmpeg-nightly-vulkan.json) 1033 | * [gum](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gum.json) 1034 | * [ansicon](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/ansicon.json) 1035 | * [xmlstarlet](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/xmlstarlet.json) 1036 | * [psgithub](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/psgithub.json) 1037 | * [gradle](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/gradle.json) 1038 | * [scoop-search](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/scoop-search.json) 1039 | * [bottom](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/bottom.json) 1040 | * [sayit](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/sayit.json) 1041 | * [freebasic](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/freebasic.json) 1042 | * [wrangler](https://github.com/rivy/scoop.bucket.scoop-main/blob/master/wrangler.json) 1043 | 1044 | 1045 | 1046 | [https://github.com/nueko/scoop-php](https://github.com/nueko/scoop-php) 1047 | * [php5.5.32](https://github.com/nueko/scoop-php/blob/master/php5.5.32.json) 1048 | * [php5.4.27](https://github.com/nueko/scoop-php/blob/master/php5.4.27.json) 1049 | * [php5.5.34](https://github.com/nueko/scoop-php/blob/master/php5.5.34.json) 1050 | * [php7.0.3-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.3-nts.json) 1051 | * [php7.1.1](https://github.com/nueko/scoop-php/blob/master/php7.1.1.json) 1052 | * [php5.3.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.2-nts.json) 1053 | * [php5.5.11-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.11-nts.json) 1054 | * [php4.3.6](https://github.com/nueko/scoop-php/blob/master/php4.3.6.json) 1055 | * [php5.3.24](https://github.com/nueko/scoop-php/blob/master/php5.3.24.json) 1056 | * [php5.6](https://github.com/nueko/scoop-php/blob/master/php5.6.json) 1057 | * [php5.6.12](https://github.com/nueko/scoop-php/blob/master/php5.6.12.json) 1058 | * [php4.3.2](https://github.com/nueko/scoop-php/blob/master/php4.3.2.json) 1059 | * [php5.2.1](https://github.com/nueko/scoop-php/blob/master/php5.2.1.json) 1060 | * [php7.1.3-nts](https://github.com/nueko/scoop-php/blob/master/php7.1.3-nts.json) 1061 | * [php5.0.0](https://github.com/nueko/scoop-php/blob/master/php5.0.0.json) 1062 | * [php7.2-nts](https://github.com/nueko/scoop-php/blob/master/php7.2-nts.json) 1063 | * [php7.0.2-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.2-nts.json) 1064 | * [php5.5.6](https://github.com/nueko/scoop-php/blob/master/php5.5.6.json) 1065 | * [php7.0.7](https://github.com/nueko/scoop-php/blob/master/php7.0.7.json) 1066 | * [php7.0.14-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.14-nts.json) 1067 | * [php5.2.6](https://github.com/nueko/scoop-php/blob/master/php5.2.6.json) 1068 | * [php5.4](https://github.com/nueko/scoop-php/blob/master/php5.4.json) 1069 | * [php7.0.9-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.9-nts.json) 1070 | * [php5.6.18](https://github.com/nueko/scoop-php/blob/master/php5.6.18.json) 1071 | * [php5.3.5](https://github.com/nueko/scoop-php/blob/master/php5.3.5.json) 1072 | * [php5.5.13](https://github.com/nueko/scoop-php/blob/master/php5.5.13.json) 1073 | * [php5.5.17-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.17-nts.json) 1074 | * [php5.5.21](https://github.com/nueko/scoop-php/blob/master/php5.5.21.json) 1075 | * [php5.4.22-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.22-nts.json) 1076 | * [php5.6.2](https://github.com/nueko/scoop-php/blob/master/php5.6.2.json) 1077 | * [php5.3.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.5-nts.json) 1078 | * [php5.6.12-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.12-nts.json) 1079 | * [php5.6.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.3-nts.json) 1080 | * [php5.3.21](https://github.com/nueko/scoop-php/blob/master/php5.3.21.json) 1081 | * [php5.0.1](https://github.com/nueko/scoop-php/blob/master/php5.0.1.json) 1082 | * [php4.0.2](https://github.com/nueko/scoop-php/blob/master/php4.0.2.json) 1083 | * [php7.0.16](https://github.com/nueko/scoop-php/blob/master/php7.0.16.json) 1084 | * [php5.3.18](https://github.com/nueko/scoop-php/blob/master/php5.3.18.json) 1085 | * [php5.5.16](https://github.com/nueko/scoop-php/blob/master/php5.5.16.json) 1086 | * [php5.5.0](https://github.com/nueko/scoop-php/blob/master/php5.5.0.json) 1087 | * [php5.2.10](https://github.com/nueko/scoop-php/blob/master/php5.2.10.json) 1088 | * [php5.6.17-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.17-nts.json) 1089 | * [php7.0.9](https://github.com/nueko/scoop-php/blob/master/php7.0.9.json) 1090 | * [php5.4.30-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.30-nts.json) 1091 | * [php5.2.14-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.14-nts.json) 1092 | * [php5.5.27](https://github.com/nueko/scoop-php/blob/master/php5.5.27.json) 1093 | * [php5.4.5](https://github.com/nueko/scoop-php/blob/master/php5.4.5.json) 1094 | * [php5.4.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.5-nts.json) 1095 | * [php4.3.8](https://github.com/nueko/scoop-php/blob/master/php4.3.8.json) 1096 | * [php5.6.16-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.16-nts.json) 1097 | * [php5.4.21](https://github.com/nueko/scoop-php/blob/master/php5.4.21.json) 1098 | * [php5.2.13](https://github.com/nueko/scoop-php/blob/master/php5.2.13.json) 1099 | * [php5.5.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.2-nts.json) 1100 | * [php5.3.10](https://github.com/nueko/scoop-php/blob/master/php5.3.10.json) 1101 | * [php5.4.19-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.19-nts.json) 1102 | * [php5.5.19](https://github.com/nueko/scoop-php/blob/master/php5.5.19.json) 1103 | * [php5.1.4](https://github.com/nueko/scoop-php/blob/master/php5.1.4.json) 1104 | * [php5.3.11](https://github.com/nueko/scoop-php/blob/master/php5.3.11.json) 1105 | * [php7.0.0-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.0-nts.json) 1106 | * [php5.6.4](https://github.com/nueko/scoop-php/blob/master/php5.6.4.json) 1107 | * [php5.5.23-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.23-nts.json) 1108 | * [php5.3.7](https://github.com/nueko/scoop-php/blob/master/php5.3.7.json) 1109 | * [php5.4.45-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.45-nts.json) 1110 | * [php7.0.6](https://github.com/nueko/scoop-php/blob/master/php7.0.6.json) 1111 | * [php5.4.13](https://github.com/nueko/scoop-php/blob/master/php5.4.13.json) 1112 | * [php5.3.23](https://github.com/nueko/scoop-php/blob/master/php5.3.23.json) 1113 | * [php5.5.14](https://github.com/nueko/scoop-php/blob/master/php5.5.14.json) 1114 | * [php4.4.6](https://github.com/nueko/scoop-php/blob/master/php4.4.6.json) 1115 | * [php5.5.23](https://github.com/nueko/scoop-php/blob/master/php5.5.23.json) 1116 | * [php5.4.0](https://github.com/nueko/scoop-php/blob/master/php5.4.0.json) 1117 | * [php5.3.16-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.16-nts.json) 1118 | * [php5.4.36-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.36-nts.json) 1119 | * [php5.4.31](https://github.com/nueko/scoop-php/blob/master/php5.4.31.json) 1120 | * [php5.5.29-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.29-nts.json) 1121 | * [php5.5.36](https://github.com/nueko/scoop-php/blob/master/php5.5.36.json) 1122 | * [php5.5.25](https://github.com/nueko/scoop-php/blob/master/php5.5.25.json) 1123 | * [php5.3](https://github.com/nueko/scoop-php/blob/master/php5.3.json) 1124 | * [php5.4.40](https://github.com/nueko/scoop-php/blob/master/php5.4.40.json) 1125 | * [php5.4.28-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.28-nts.json) 1126 | * [php4.4.2](https://github.com/nueko/scoop-php/blob/master/php4.4.2.json) 1127 | * [php5.6.29](https://github.com/nueko/scoop-php/blob/master/php5.6.29.json) 1128 | * [php5.5.24](https://github.com/nueko/scoop-php/blob/master/php5.5.24.json) 1129 | * [php4.4.1](https://github.com/nueko/scoop-php/blob/master/php4.4.1.json) 1130 | * [php5.5.9](https://github.com/nueko/scoop-php/blob/master/php5.5.9.json) 1131 | * [php5.6.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.2-nts.json) 1132 | * [php5.5.15-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.15-nts.json) 1133 | * [php7.0.4](https://github.com/nueko/scoop-php/blob/master/php7.0.4.json) 1134 | * [php5.4.8-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.8-nts.json) 1135 | * [php5.6.10-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.10-nts.json) 1136 | * [php5.5.13-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.13-nts.json) 1137 | * [php5.5.27-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.27-nts.json) 1138 | * [php5.6.9](https://github.com/nueko/scoop-php/blob/master/php5.6.9.json) 1139 | * [php5.4.17](https://github.com/nueko/scoop-php/blob/master/php5.4.17.json) 1140 | * [php5.5.28](https://github.com/nueko/scoop-php/blob/master/php5.5.28.json) 1141 | * [php7.1](https://github.com/nueko/scoop-php/blob/master/php7.1.json) 1142 | * [php4.0.6](https://github.com/nueko/scoop-php/blob/master/php4.0.6.json) 1143 | * [php4.1.2](https://github.com/nueko/scoop-php/blob/master/php4.1.2.json) 1144 | * [php5.5.36-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.36-nts.json) 1145 | * [php5.3.15](https://github.com/nueko/scoop-php/blob/master/php5.3.15.json) 1146 | * [php5.4.43](https://github.com/nueko/scoop-php/blob/master/php5.4.43.json) 1147 | * [php5.4.4](https://github.com/nueko/scoop-php/blob/master/php5.4.4.json) 1148 | * [php5.5.12-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.12-nts.json) 1149 | * [php5.0.2](https://github.com/nueko/scoop-php/blob/master/php5.0.2.json) 1150 | * [php5.3.8](https://github.com/nueko/scoop-php/blob/master/php5.3.8.json) 1151 | * [php5.3.13-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.13-nts.json) 1152 | * [php4.2.0](https://github.com/nueko/scoop-php/blob/master/php4.2.0.json) 1153 | * [php5.5.22-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.22-nts.json) 1154 | * [php5.3.27](https://github.com/nueko/scoop-php/blob/master/php5.3.27.json) 1155 | * [php5.2.2](https://github.com/nueko/scoop-php/blob/master/php5.2.2.json) 1156 | * [php5.2.15-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.15-nts.json) 1157 | * [php7.0.0](https://github.com/nueko/scoop-php/blob/master/php7.0.0.json) 1158 | * [php7.0.8-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.8-nts.json) 1159 | * [php5.2.12](https://github.com/nueko/scoop-php/blob/master/php5.2.12.json) 1160 | * [php5.6.21](https://github.com/nueko/scoop-php/blob/master/php5.6.21.json) 1161 | * [php5.3.2](https://github.com/nueko/scoop-php/blob/master/php5.3.2.json) 1162 | * [php5.4.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.6-nts.json) 1163 | * [php5.5.8-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.8-nts.json) 1164 | * [php5.6.7](https://github.com/nueko/scoop-php/blob/master/php5.6.7.json) 1165 | * [php5.4.32-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.32-nts.json) 1166 | * [php5.3.22-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.22-nts.json) 1167 | * [php5.2.12-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.12-nts.json) 1168 | * [php5.4.12](https://github.com/nueko/scoop-php/blob/master/php5.4.12.json) 1169 | * [php5.4.22](https://github.com/nueko/scoop-php/blob/master/php5.4.22.json) 1170 | * [php5.2.11](https://github.com/nueko/scoop-php/blob/master/php5.2.11.json) 1171 | * [php5.3.1](https://github.com/nueko/scoop-php/blob/master/php5.3.1.json) 1172 | * [php5.3.28](https://github.com/nueko/scoop-php/blob/master/php5.3.28.json) 1173 | * [php5.6.11-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.11-nts.json) 1174 | * [php7.1-nts](https://github.com/nueko/scoop-php/blob/master/php7.1-nts.json) 1175 | * [php3.0.13](https://github.com/nueko/scoop-php/blob/master/php3.0.13.json) 1176 | * [php4.3.9](https://github.com/nueko/scoop-php/blob/master/php4.3.9.json) 1177 | * [php5.3.16](https://github.com/nueko/scoop-php/blob/master/php5.3.16.json) 1178 | * [php5.4.26](https://github.com/nueko/scoop-php/blob/master/php5.4.26.json) 1179 | * [php5.4.38-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.38-nts.json) 1180 | * [php5.4.9-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.9-nts.json) 1181 | * [php5.4.44](https://github.com/nueko/scoop-php/blob/master/php5.4.44.json) 1182 | * [php3.0.11](https://github.com/nueko/scoop-php/blob/master/php3.0.11.json) 1183 | * [php5.6.26-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.26-nts.json) 1184 | * [php7.0.13-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.13-nts.json) 1185 | * [php5.6.7-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.7-nts.json) 1186 | * [php5.5.4](https://github.com/nueko/scoop-php/blob/master/php5.5.4.json) 1187 | * [php5.5.18-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.18-nts.json) 1188 | * [php5.4.28](https://github.com/nueko/scoop-php/blob/master/php5.4.28.json) 1189 | * [php5.5.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.6-nts.json) 1190 | * [php5.4.3](https://github.com/nueko/scoop-php/blob/master/php5.4.3.json) 1191 | * [php5.5.7-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.7-nts.json) 1192 | * [php5.5.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.4-nts.json) 1193 | * [php5.4.23](https://github.com/nueko/scoop-php/blob/master/php5.4.23.json) 1194 | * [php5.6.25](https://github.com/nueko/scoop-php/blob/master/php5.6.25.json) 1195 | * [php7.0.11](https://github.com/nueko/scoop-php/blob/master/php7.0.11.json) 1196 | * [php5.4.27-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.27-nts.json) 1197 | * [php5.2.9](https://github.com/nueko/scoop-php/blob/master/php5.2.9.json) 1198 | * [php5.3.12](https://github.com/nueko/scoop-php/blob/master/php5.3.12.json) 1199 | * [php5.4.16-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.16-nts.json) 1200 | * [php5.4.18-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.18-nts.json) 1201 | * [php5.0.5](https://github.com/nueko/scoop-php/blob/master/php5.0.5.json) 1202 | * [php4.3.10](https://github.com/nueko/scoop-php/blob/master/php4.3.10.json) 1203 | * [php5.6.27](https://github.com/nueko/scoop-php/blob/master/php5.6.27.json) 1204 | * [php4.3.5](https://github.com/nueko/scoop-php/blob/master/php4.3.5.json) 1205 | * [php5.5.21-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.21-nts.json) 1206 | * [php7.1.4-nts](https://github.com/nueko/scoop-php/blob/master/php7.1.4-nts.json) 1207 | * [php5.3.3](https://github.com/nueko/scoop-php/blob/master/php5.3.3.json) 1208 | * [php7.0.8](https://github.com/nueko/scoop-php/blob/master/php7.0.8.json) 1209 | * [php5.4.25](https://github.com/nueko/scoop-php/blob/master/php5.4.25.json) 1210 | * [php5.4.20-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.20-nts.json) 1211 | * [php7.0.10](https://github.com/nueko/scoop-php/blob/master/php7.0.10.json) 1212 | * [php5.4.34](https://github.com/nueko/scoop-php/blob/master/php5.4.34.json) 1213 | * [php5.6.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.6-nts.json) 1214 | * [php5.5.7](https://github.com/nueko/scoop-php/blob/master/php5.5.7.json) 1215 | * [php5.5.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.3-nts.json) 1216 | * [php4.0.3](https://github.com/nueko/scoop-php/blob/master/php4.0.3.json) 1217 | * [php5.6.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.4-nts.json) 1218 | * [php5.4.31-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.31-nts.json) 1219 | * [php5.0.3](https://github.com/nueko/scoop-php/blob/master/php5.0.3.json) 1220 | * [php3.0.17](https://github.com/nueko/scoop-php/blob/master/php3.0.17.json) 1221 | * [php5.6.9-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.9-nts.json) 1222 | * [php5.6.1-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.1-nts.json) 1223 | * [php5.3.21-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.21-nts.json) 1224 | * [php5.2.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.5-nts.json) 1225 | * [php4.0.1](https://github.com/nueko/scoop-php/blob/master/php4.0.1.json) 1226 | * [php5.3.9-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.9-nts.json) 1227 | * [php7.0.1](https://github.com/nueko/scoop-php/blob/master/php7.0.1.json) 1228 | * [php5.3.29-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.29-nts.json) 1229 | * [php5.4.21-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.21-nts.json) 1230 | * [php5.6.17](https://github.com/nueko/scoop-php/blob/master/php5.6.17.json) 1231 | * [php5.5.31-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.31-nts.json) 1232 | * [php5.4.34-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.34-nts.json) 1233 | * [php4.0.0](https://github.com/nueko/scoop-php/blob/master/php4.0.0.json) 1234 | * [php5.4.39-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.39-nts.json) 1235 | * [php5.2.16](https://github.com/nueko/scoop-php/blob/master/php5.2.16.json) 1236 | * [php4.4.5](https://github.com/nueko/scoop-php/blob/master/php4.4.5.json) 1237 | * [php5.0.4](https://github.com/nueko/scoop-php/blob/master/php5.0.4.json) 1238 | * [php5.5.18](https://github.com/nueko/scoop-php/blob/master/php5.5.18.json) 1239 | * [php7.0.7-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.7-nts.json) 1240 | * [php5.6.28-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.28-nts.json) 1241 | * [php5.4.11-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.11-nts.json) 1242 | * [php5.4.14-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.14-nts.json) 1243 | * [php4.3.4](https://github.com/nueko/scoop-php/blob/master/php4.3.4.json) 1244 | * [php5.3.6](https://github.com/nueko/scoop-php/blob/master/php5.3.6.json) 1245 | * [php5.4.24-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.24-nts.json) 1246 | * [php5.2.17-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.17-nts.json) 1247 | * [php5.3.22](https://github.com/nueko/scoop-php/blob/master/php5.3.22.json) 1248 | * [php3.0.15](https://github.com/nueko/scoop-php/blob/master/php3.0.15.json) 1249 | * [php5.6.24](https://github.com/nueko/scoop-php/blob/master/php5.6.24.json) 1250 | * [php5.2.10-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.10-nts.json) 1251 | * [php5.6.29-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.29-nts.json) 1252 | * [php4.0.4](https://github.com/nueko/scoop-php/blob/master/php4.0.4.json) 1253 | * [php5.6.22-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.22-nts.json) 1254 | * [php5.3.29](https://github.com/nueko/scoop-php/blob/master/php5.3.29.json) 1255 | * [php5.6.22](https://github.com/nueko/scoop-php/blob/master/php5.6.22.json) 1256 | * [php5.6.10](https://github.com/nueko/scoop-php/blob/master/php5.6.10.json) 1257 | * [php5.3.13](https://github.com/nueko/scoop-php/blob/master/php5.3.13.json) 1258 | * [php5.6.19-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.19-nts.json) 1259 | * [php5.6.8-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.8-nts.json) 1260 | * [php5.6.8](https://github.com/nueko/scoop-php/blob/master/php5.6.8.json) 1261 | * [php5.5.34-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.34-nts.json) 1262 | * [php7.1.4](https://github.com/nueko/scoop-php/blob/master/php7.1.4.json) 1263 | * [php5.1.1](https://github.com/nueko/scoop-php/blob/master/php5.1.1.json) 1264 | * [php5.4.25-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.25-nts.json) 1265 | * [php5.3.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.3-nts.json) 1266 | * [php4.4.4](https://github.com/nueko/scoop-php/blob/master/php4.4.4.json) 1267 | * [php5.4.19](https://github.com/nueko/scoop-php/blob/master/php5.4.19.json) 1268 | * [php4.3.3](https://github.com/nueko/scoop-php/blob/master/php4.3.3.json) 1269 | * [php5.2.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.6-nts.json) 1270 | * [php7.0.18-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.18-nts.json) 1271 | * [php5.6.26](https://github.com/nueko/scoop-php/blob/master/php5.6.26.json) 1272 | * [php5.2.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.4-nts.json) 1273 | * [php5.5.28-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.28-nts.json) 1274 | * [php5.4.26-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.26-nts.json) 1275 | * [php5.4.15-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.15-nts.json) 1276 | * [php5.5](https://github.com/nueko/scoop-php/blob/master/php5.5.json) 1277 | * [php5.2.8](https://github.com/nueko/scoop-php/blob/master/php5.2.8.json) 1278 | * [php5.2.3](https://github.com/nueko/scoop-php/blob/master/php5.2.3.json) 1279 | * [php5.3.14-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.14-nts.json) 1280 | * [php5.5.3](https://github.com/nueko/scoop-php/blob/master/php5.5.3.json) 1281 | * [php5.4.32](https://github.com/nueko/scoop-php/blob/master/php5.4.32.json) 1282 | * [php5.4.42-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.42-nts.json) 1283 | * [php5.3.26](https://github.com/nueko/scoop-php/blob/master/php5.3.26.json) 1284 | * [php5.3.0](https://github.com/nueko/scoop-php/blob/master/php5.3.0.json) 1285 | * [php5.1.3](https://github.com/nueko/scoop-php/blob/master/php5.1.3.json) 1286 | * [php5.6.19](https://github.com/nueko/scoop-php/blob/master/php5.6.19.json) 1287 | * [php5.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.6-nts.json) 1288 | * [php5.5.8](https://github.com/nueko/scoop-php/blob/master/php5.5.8.json) 1289 | * [php7.0.15-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.15-nts.json) 1290 | * [php4.4.3](https://github.com/nueko/scoop-php/blob/master/php4.4.3.json) 1291 | * [php5.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.3-nts.json) 1292 | * [php5.5.15](https://github.com/nueko/scoop-php/blob/master/php5.5.15.json) 1293 | * [php4.2.1](https://github.com/nueko/scoop-php/blob/master/php4.2.1.json) 1294 | * [php5.4.42](https://github.com/nueko/scoop-php/blob/master/php5.4.42.json) 1295 | * [php7.0](https://github.com/nueko/scoop-php/blob/master/php7.0.json) 1296 | * [php7.0.17-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.17-nts.json) 1297 | * [php5.6.0](https://github.com/nueko/scoop-php/blob/master/php5.6.0.json) 1298 | * [php5.2.8-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.8-nts.json) 1299 | * [php5.5.19-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.19-nts.json) 1300 | * [php4.1.1](https://github.com/nueko/scoop-php/blob/master/php4.1.1.json) 1301 | * [php5.2.0](https://github.com/nueko/scoop-php/blob/master/php5.2.0.json) 1302 | * [php5.5.35](https://github.com/nueko/scoop-php/blob/master/php5.5.35.json) 1303 | * [php5.4.39](https://github.com/nueko/scoop-php/blob/master/php5.4.39.json) 1304 | * [php5.4.10](https://github.com/nueko/scoop-php/blob/master/php5.4.10.json) 1305 | * [php5.6.5](https://github.com/nueko/scoop-php/blob/master/php5.6.5.json) 1306 | * [php7.0.10-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.10-nts.json) 1307 | * [php5.4.6](https://github.com/nueko/scoop-php/blob/master/php5.4.6.json) 1308 | * [php5.6.11](https://github.com/nueko/scoop-php/blob/master/php5.6.11.json) 1309 | * [php5.6.20-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.20-nts.json) 1310 | * [php7.1.1-nts](https://github.com/nueko/scoop-php/blob/master/php7.1.1-nts.json) 1311 | * [php5.4.40-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.40-nts.json) 1312 | * [php5.4.37-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.37-nts.json) 1313 | * [php5.2.16-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.16-nts.json) 1314 | * [php4.3.1](https://github.com/nueko/scoop-php/blob/master/php4.3.1.json) 1315 | * [php5.3.14](https://github.com/nueko/scoop-php/blob/master/php5.3.14.json) 1316 | * [php4.4.0](https://github.com/nueko/scoop-php/blob/master/php4.4.0.json) 1317 | * [php5.5.29](https://github.com/nueko/scoop-php/blob/master/php5.5.29.json) 1318 | * [php5.5.24-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.24-nts.json) 1319 | * [php7.0-nts](https://github.com/nueko/scoop-php/blob/master/php7.0-nts.json) 1320 | * [php5.4.13-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.13-nts.json) 1321 | * [php5.3.27-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.27-nts.json) 1322 | * [php5.2.9-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.9-nts.json) 1323 | * [php5.6.15](https://github.com/nueko/scoop-php/blob/master/php5.6.15.json) 1324 | * [php5.5.12](https://github.com/nueko/scoop-php/blob/master/php5.5.12.json) 1325 | * [php5.3.25-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.25-nts.json) 1326 | * [php5.5.31](https://github.com/nueko/scoop-php/blob/master/php5.5.31.json) 1327 | * [php5.5.14-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.14-nts.json) 1328 | * [php5.2.4](https://github.com/nueko/scoop-php/blob/master/php5.2.4.json) 1329 | * [php5.5.33-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.33-nts.json) 1330 | * [php5.3.23-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.23-nts.json) 1331 | * [php5.5.16-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.16-nts.json) 1332 | * [php5.4.15](https://github.com/nueko/scoop-php/blob/master/php5.4.15.json) 1333 | * [php5.3.24-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.24-nts.json) 1334 | * [php5.6.27-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.27-nts.json) 1335 | * [php7.0.16-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.16-nts.json) 1336 | * [php5.3.7-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.7-nts.json) 1337 | * [php5.4.33](https://github.com/nueko/scoop-php/blob/master/php5.4.33.json) 1338 | * [php5.4.23-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.23-nts.json) 1339 | * [php5.5.10](https://github.com/nueko/scoop-php/blob/master/php5.5.10.json) 1340 | * [php4.2.2](https://github.com/nueko/scoop-php/blob/master/php4.2.2.json) 1341 | * [php5.4.35](https://github.com/nueko/scoop-php/blob/master/php5.4.35.json) 1342 | * [php7.0.5](https://github.com/nueko/scoop-php/blob/master/php7.0.5.json) 1343 | * [php5.3.19](https://github.com/nueko/scoop-php/blob/master/php5.3.19.json) 1344 | * [php5.3.25](https://github.com/nueko/scoop-php/blob/master/php5.3.25.json) 1345 | * [php5.5.22](https://github.com/nueko/scoop-php/blob/master/php5.5.22.json) 1346 | * [php5.4.14](https://github.com/nueko/scoop-php/blob/master/php5.4.14.json) 1347 | * [php5.4.0-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.0-nts.json) 1348 | * [php5.3.26-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.26-nts.json) 1349 | * [php5.3.20](https://github.com/nueko/scoop-php/blob/master/php5.3.20.json) 1350 | * [php5.4.20](https://github.com/nueko/scoop-php/blob/master/php5.4.20.json) 1351 | * [php5.4.7](https://github.com/nueko/scoop-php/blob/master/php5.4.7.json) 1352 | * [php5.4.16](https://github.com/nueko/scoop-php/blob/master/php5.4.16.json) 1353 | * [php5.2.7](https://github.com/nueko/scoop-php/blob/master/php5.2.7.json) 1354 | * [php5.6.25-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.25-nts.json) 1355 | * [php5.6.23-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.23-nts.json) 1356 | * [php5.5.2](https://github.com/nueko/scoop-php/blob/master/php5.5.2.json) 1357 | * [php5.4.44-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.44-nts.json) 1358 | * [php7.0.13](https://github.com/nueko/scoop-php/blob/master/php7.0.13.json) 1359 | * [php7.0.1-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.1-nts.json) 1360 | * [php5.2.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.3-nts.json) 1361 | * [php7.1.0](https://github.com/nueko/scoop-php/blob/master/php7.1.0.json) 1362 | * [php5.2.13-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.13-nts.json) 1363 | * [php4.2.3](https://github.com/nueko/scoop-php/blob/master/php4.2.3.json) 1364 | * [php5.3.11-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.11-nts.json) 1365 | * [php5.5.9-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.9-nts.json) 1366 | * [php5.4.33-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.33-nts.json) 1367 | * [php5.5.0-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.0-nts.json) 1368 | * [php5.3.9](https://github.com/nueko/scoop-php/blob/master/php5.3.9.json) 1369 | * [php5.2](https://github.com/nueko/scoop-php/blob/master/php5.2.json) 1370 | * [php5.6.16](https://github.com/nueko/scoop-php/blob/master/php5.6.16.json) 1371 | * [php5.1.2](https://github.com/nueko/scoop-php/blob/master/php5.1.2.json) 1372 | * [php7.0.18](https://github.com/nueko/scoop-php/blob/master/php7.0.18.json) 1373 | * [php5.2.17](https://github.com/nueko/scoop-php/blob/master/php5.2.17.json) 1374 | * [php4.3.11](https://github.com/nueko/scoop-php/blob/master/php4.3.11.json) 1375 | * [php5.5.30](https://github.com/nueko/scoop-php/blob/master/php5.5.30.json) 1376 | * [php5.5.26-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.26-nts.json) 1377 | * [php5.4.29](https://github.com/nueko/scoop-php/blob/master/php5.4.29.json) 1378 | * [php7.1.3](https://github.com/nueko/scoop-php/blob/master/php7.1.3.json) 1379 | * [php5.4.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.4-nts.json) 1380 | * [php5.4.1-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.1-nts.json) 1381 | * [php5.4.37](https://github.com/nueko/scoop-php/blob/master/php5.4.37.json) 1382 | * [php7.1.0-nts](https://github.com/nueko/scoop-php/blob/master/php7.1.0-nts.json) 1383 | * [php5.4.38](https://github.com/nueko/scoop-php/blob/master/php5.4.38.json) 1384 | * [php5.6.6](https://github.com/nueko/scoop-php/blob/master/php5.6.6.json) 1385 | * [php5.4.41](https://github.com/nueko/scoop-php/blob/master/php5.4.41.json) 1386 | * [php5.5.32-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.32-nts.json) 1387 | * [php5.2.5](https://github.com/nueko/scoop-php/blob/master/php5.2.5.json) 1388 | * [php5.5.37](https://github.com/nueko/scoop-php/blob/master/php5.5.37.json) 1389 | * [php5.5.33](https://github.com/nueko/scoop-php/blob/master/php5.5.33.json) 1390 | * [php5.2.1-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.1-nts.json) 1391 | * [php5.6.13](https://github.com/nueko/scoop-php/blob/master/php5.6.13.json) 1392 | * [php3.0.16](https://github.com/nueko/scoop-php/blob/master/php3.0.16.json) 1393 | * [php5.5.20](https://github.com/nueko/scoop-php/blob/master/php5.5.20.json) 1394 | * [php7.0.6-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.6-nts.json) 1395 | * [php7.1.2](https://github.com/nueko/scoop-php/blob/master/php7.1.2.json) 1396 | * [php5.3.12-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.12-nts.json) 1397 | * [php7.0.3](https://github.com/nueko/scoop-php/blob/master/php7.0.3.json) 1398 | * [php5.5.25-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.25-nts.json) 1399 | * [php5.5.11](https://github.com/nueko/scoop-php/blob/master/php5.5.11.json) 1400 | * [php5.4.18](https://github.com/nueko/scoop-php/blob/master/php5.4.18.json) 1401 | * [php7.0.4-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.4-nts.json) 1402 | * [php5.4.36](https://github.com/nueko/scoop-php/blob/master/php5.4.36.json) 1403 | * [php5.5.30-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.30-nts.json) 1404 | * [php7.0.11-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.11-nts.json) 1405 | * [php5.5.10-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.10-nts.json) 1406 | * [php5.3.28-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.28-nts.json) 1407 | * [php5.4.11](https://github.com/nueko/scoop-php/blob/master/php5.4.11.json) 1408 | * [php7.1.2-nts](https://github.com/nueko/scoop-php/blob/master/php7.1.2-nts.json) 1409 | * [php5.5.17](https://github.com/nueko/scoop-php/blob/master/php5.5.17.json) 1410 | * [php5.4.8](https://github.com/nueko/scoop-php/blob/master/php5.4.8.json) 1411 | * [php7.0.14](https://github.com/nueko/scoop-php/blob/master/php7.0.14.json) 1412 | * [php5.4.2](https://github.com/nueko/scoop-php/blob/master/php5.4.2.json) 1413 | * [php5.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.5-nts.json) 1414 | * [php5.4.3-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.3-nts.json) 1415 | * [php5.3.19-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.19-nts.json) 1416 | * [php5.5.26](https://github.com/nueko/scoop-php/blob/master/php5.5.26.json) 1417 | * [php5.6.14](https://github.com/nueko/scoop-php/blob/master/php5.6.14.json) 1418 | * [php5.6.15-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.15-nts.json) 1419 | * [php5.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.4-nts.json) 1420 | * [php5.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.2-nts.json) 1421 | * [php7.0.12-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.12-nts.json) 1422 | * [php5.4.9](https://github.com/nueko/scoop-php/blob/master/php5.4.9.json) 1423 | * [php3.0.14](https://github.com/nueko/scoop-php/blob/master/php3.0.14.json) 1424 | * [php5.5.35-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.35-nts.json) 1425 | * [php5.2.11-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.11-nts.json) 1426 | * [php5.2.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.2-nts.json) 1427 | * [php5.5.20-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.20-nts.json) 1428 | * [php5.5.1](https://github.com/nueko/scoop-php/blob/master/php5.5.1.json) 1429 | * [php5.3.0-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.0-nts.json) 1430 | * [php5.6.13-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.13-nts.json) 1431 | * [php5.3.18-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.18-nts.json) 1432 | * [php5.3.4-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.4-nts.json) 1433 | * [php5.6.18-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.18-nts.json) 1434 | * [php5.3.20-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.20-nts.json) 1435 | * [php7.0.2](https://github.com/nueko/scoop-php/blob/master/php7.0.2.json) 1436 | * [php5.4.45](https://github.com/nueko/scoop-php/blob/master/php5.4.45.json) 1437 | * [php7.0.5-nts](https://github.com/nueko/scoop-php/blob/master/php7.0.5-nts.json) 1438 | * [php5.6.23](https://github.com/nueko/scoop-php/blob/master/php5.6.23.json) 1439 | * [php4.0.5](https://github.com/nueko/scoop-php/blob/master/php4.0.5.json) 1440 | * [php5.6.20](https://github.com/nueko/scoop-php/blob/master/php5.6.20.json) 1441 | * [php4.3.7](https://github.com/nueko/scoop-php/blob/master/php4.3.7.json) 1442 | * [php5.4.29-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.29-nts.json) 1443 | * [php5.3.10-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.10-nts.json) 1444 | * [php5.3.6-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.6-nts.json) 1445 | * [php5.5.37-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.37-nts.json) 1446 | * [php5.6.0-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.0-nts.json) 1447 | * [php5.4.1](https://github.com/nueko/scoop-php/blob/master/php5.4.1.json) 1448 | * [php7.2](https://github.com/nueko/scoop-php/blob/master/php7.2.json) 1449 | * [php4.3.0](https://github.com/nueko/scoop-php/blob/master/php4.3.0.json) 1450 | * [php5.4.43-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.43-nts.json) 1451 | * [php5.4.10-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.10-nts.json) 1452 | * [php7.0.12](https://github.com/nueko/scoop-php/blob/master/php7.0.12.json) 1453 | * [php7.0.15](https://github.com/nueko/scoop-php/blob/master/php7.0.15.json) 1454 | * [php4.1.0](https://github.com/nueko/scoop-php/blob/master/php4.1.0.json) 1455 | * [php5.4.7-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.7-nts.json) 1456 | * [php5.2.14](https://github.com/nueko/scoop-php/blob/master/php5.2.14.json) 1457 | * [php5.3.1-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.1-nts.json) 1458 | * [php5.6.28](https://github.com/nueko/scoop-php/blob/master/php5.6.28.json) 1459 | * [php5.5.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.5-nts.json) 1460 | * [php5.3.15-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.15-nts.json) 1461 | * [php5.3.17-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.17-nts.json) 1462 | * [php5.6.3](https://github.com/nueko/scoop-php/blob/master/php5.6.3.json) 1463 | * [php5.1.6](https://github.com/nueko/scoop-php/blob/master/php5.1.6.json) 1464 | * [php5.6.14-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.14-nts.json) 1465 | * [php5.2.15](https://github.com/nueko/scoop-php/blob/master/php5.2.15.json) 1466 | * [php5.4.41-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.41-nts.json) 1467 | * [php7.0.17](https://github.com/nueko/scoop-php/blob/master/php7.0.17.json) 1468 | * [php5.5.5](https://github.com/nueko/scoop-php/blob/master/php5.5.5.json) 1469 | * [php5.4.24](https://github.com/nueko/scoop-php/blob/master/php5.4.24.json) 1470 | * [php5.4.35-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.35-nts.json) 1471 | * [php5.4.2-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.2-nts.json) 1472 | * [php5.6.24-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.24-nts.json) 1473 | * [php5.3.8-nts](https://github.com/nueko/scoop-php/blob/master/php5.3.8-nts.json) 1474 | * [php5.4.30](https://github.com/nueko/scoop-php/blob/master/php5.4.30.json) 1475 | * [php5.6.21-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.21-nts.json) 1476 | * [php5.4.12-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.12-nts.json) 1477 | * [php5.6.1](https://github.com/nueko/scoop-php/blob/master/php5.6.1.json) 1478 | * [php5.3.4](https://github.com/nueko/scoop-php/blob/master/php5.3.4.json) 1479 | * [php5.1.0](https://github.com/nueko/scoop-php/blob/master/php5.1.0.json) 1480 | * [php5.6.5-nts](https://github.com/nueko/scoop-php/blob/master/php5.6.5-nts.json) 1481 | * [php5.2.7-nts](https://github.com/nueko/scoop-php/blob/master/php5.2.7-nts.json) 1482 | * [php5.4.17-nts](https://github.com/nueko/scoop-php/blob/master/php5.4.17-nts.json) 1483 | * [php5.5.1-nts](https://github.com/nueko/scoop-php/blob/master/php5.5.1-nts.json) 1484 | * [php5.3.17](https://github.com/nueko/scoop-php/blob/master/php5.3.17.json) 1485 | 1486 | 1487 | 1488 | [https://github.com/nueko/php-ext-bucket](https://github.com/nueko/php-ext-bucket) 1489 | * [php71-phalcon](https://github.com/nueko/php-ext-bucket/blob/master/php71-phalcon.json) 1490 | * [php71-timezonedb](https://github.com/nueko/php-ext-bucket/blob/master/php71-timezonedb.json) 1491 | * [php71-rdkafka](https://github.com/nueko/php-ext-bucket/blob/master/php71-rdkafka.json) 1492 | * [php71-sqlsrv](https://github.com/nueko/php-ext-bucket/blob/master/php71-sqlsrv.json) 1493 | * [php71-weakref](https://github.com/nueko/php-ext-bucket/blob/master/php71-weakref.json) 1494 | * [php71-mailparse](https://github.com/nueko/php-ext-bucket/blob/master/php71-mailparse.json) 1495 | * [php71-redis](https://github.com/nueko/php-ext-bucket/blob/master/php71-redis.json) 1496 | * [php71-pdo_sqlsrv](https://github.com/nueko/php-ext-bucket/blob/master/php71-pdo_sqlsrv.json) 1497 | * [php71-zmq](https://github.com/nueko/php-ext-bucket/blob/master/php71-zmq.json) 1498 | * [php71-doublemetaphone](https://github.com/nueko/php-ext-bucket/blob/master/php71-doublemetaphone.json) 1499 | * [php71-taint](https://github.com/nueko/php-ext-bucket/blob/master/php71-taint.json) 1500 | * [php71-dio](https://github.com/nueko/php-ext-bucket/blob/master/php71-dio.json) 1501 | * [php71-scrypt](https://github.com/nueko/php-ext-bucket/blob/master/php71-scrypt.json) 1502 | * [php71-translit](https://github.com/nueko/php-ext-bucket/blob/master/php71-translit.json) 1503 | * [php71-win32service](https://github.com/nueko/php-ext-bucket/blob/master/php71-win32service.json) 1504 | * [php71-apcu_bc](https://github.com/nueko/php-ext-bucket/blob/master/php71-apcu_bc.json) 1505 | * [php71-hprose](https://github.com/nueko/php-ext-bucket/blob/master/php71-hprose.json) 1506 | * [php71-igbinary](https://github.com/nueko/php-ext-bucket/blob/master/php71-igbinary.json) 1507 | * [php71-oci8](https://github.com/nueko/php-ext-bucket/blob/master/php71-oci8.json) 1508 | * [php71-msgpack](https://github.com/nueko/php-ext-bucket/blob/master/php71-msgpack.json) 1509 | * [php71-xxtea](https://github.com/nueko/php-ext-bucket/blob/master/php71-xxtea.json) 1510 | * [php71-couchbase](https://github.com/nueko/php-ext-bucket/blob/master/php71-couchbase.json) 1511 | * [php71-yar](https://github.com/nueko/php-ext-bucket/blob/master/php71-yar.json) 1512 | * [php71-stem](https://github.com/nueko/php-ext-bucket/blob/master/php71-stem.json) 1513 | * [php71-lzf](https://github.com/nueko/php-ext-bucket/blob/master/php71-lzf.json) 1514 | * [php71-stomp](https://github.com/nueko/php-ext-bucket/blob/master/php71-stomp.json) 1515 | * [php71-apcu](https://github.com/nueko/php-ext-bucket/blob/master/php71-apcu.json) 1516 | * [php71-bitset](https://github.com/nueko/php-ext-bucket/blob/master/php71-bitset.json) 1517 | * [php71-mongodb](https://github.com/nueko/php-ext-bucket/blob/master/php71-mongodb.json) 1518 | * [php71-ds](https://github.com/nueko/php-ext-bucket/blob/master/php71-ds.json) 1519 | * [php71-event](https://github.com/nueko/php-ext-bucket/blob/master/php71-event.json) 1520 | * [php71-imagick](https://github.com/nueko/php-ext-bucket/blob/master/php71-imagick.json) 1521 | * [php71-trader](https://github.com/nueko/php-ext-bucket/blob/master/php71-trader.json) 1522 | * [php71-varnish](https://github.com/nueko/php-ext-bucket/blob/master/php71-varnish.json) 1523 | * [php71-amqp](https://github.com/nueko/php-ext-bucket/blob/master/php71-amqp.json) 1524 | * [php71-gender](https://github.com/nueko/php-ext-bucket/blob/master/php71-gender.json) 1525 | * [php71-xdiff](https://github.com/nueko/php-ext-bucket/blob/master/php71-xdiff.json) 1526 | * [php71-ui](https://github.com/nueko/php-ext-bucket/blob/master/php71-ui.json) 1527 | * [php71-propro](https://github.com/nueko/php-ext-bucket/blob/master/php71-propro.json) 1528 | * [php71-geoip](https://github.com/nueko/php-ext-bucket/blob/master/php71-geoip.json) 1529 | * [php71-vld](https://github.com/nueko/php-ext-bucket/blob/master/php71-vld.json) 1530 | * [php71-oauth](https://github.com/nueko/php-ext-bucket/blob/master/php71-oauth.json) 1531 | * [php71-libsodium](https://github.com/nueko/php-ext-bucket/blob/master/php71-libsodium.json) 1532 | * [php71-solr](https://github.com/nueko/php-ext-bucket/blob/master/php71-solr.json) 1533 | * [php71-xmldiff](https://github.com/nueko/php-ext-bucket/blob/master/php71-xmldiff.json) 1534 | * [php71-crypto](https://github.com/nueko/php-ext-bucket/blob/master/php71-crypto.json) 1535 | * [php71-ssh2](https://github.com/nueko/php-ext-bucket/blob/master/php71-ssh2.json) 1536 | * [php71-pcs](https://github.com/nueko/php-ext-bucket/blob/master/php71-pcs.json) 1537 | * [php71-zip](https://github.com/nueko/php-ext-bucket/blob/master/php71-zip.json) 1538 | * [php71-fann](https://github.com/nueko/php-ext-bucket/blob/master/php71-fann.json) 1539 | * [php71-seaslog](https://github.com/nueko/php-ext-bucket/blob/master/php71-seaslog.json) 1540 | * [php71-yac](https://github.com/nueko/php-ext-bucket/blob/master/php71-yac.json) 1541 | * [php71-lua](https://github.com/nueko/php-ext-bucket/blob/master/php71-lua.json) 1542 | * [php71-rrd](https://github.com/nueko/php-ext-bucket/blob/master/php71-rrd.json) 1543 | 1544 | 1545 | 1546 | [https://github.com/AStupidBear/scoop-bear](https://github.com/AStupidBear/scoop-bear) 1547 | * [wgestures](https://github.com/AStupidBear/scoop-bear/blob/master/wgestures.json) 1548 | * [anaconda3](https://github.com/AStupidBear/scoop-bear/blob/master/anaconda3.json) 1549 | * [histcite](https://github.com/AStupidBear/scoop-bear/blob/master/histcite.json) 1550 | * [wkhtmltopdf](https://github.com/AStupidBear/scoop-bear/blob/master/wkhtmltopdf.json) 1551 | * [dimscreen](https://github.com/AStupidBear/scoop-bear/blob/master/dimscreen.json) 1552 | * [cmdmarkdown](https://github.com/AStupidBear/scoop-bear/blob/master/cmdmarkdown.json) 1553 | * [potplayer](https://github.com/AStupidBear/scoop-bear/blob/master/potplayer.json) 1554 | * [cb2bib](https://github.com/AStupidBear/scoop-bear/blob/master/cb2bib.json) 1555 | * [pdfxedit](https://github.com/AStupidBear/scoop-bear/blob/master/pdfxedit.json) 1556 | * [dashing](https://github.com/AStupidBear/scoop-bear/blob/master/dashing.json) 1557 | * [csvsplitter](https://github.com/AStupidBear/scoop-bear/blob/master/csvsplitter.json) 1558 | * [bcompare](https://github.com/AStupidBear/scoop-bear/blob/master/bcompare.json) 1559 | * [sstap](https://github.com/AStupidBear/scoop-bear/blob/master/sstap.json) 1560 | * [tad](https://github.com/AStupidBear/scoop-bear/blob/master/tad.json) 1561 | * [cwrsync](https://github.com/AStupidBear/scoop-bear/blob/master/cwrsync.json) 1562 | * [pycharmpro](https://github.com/AStupidBear/scoop-bear/blob/master/pycharmpro.json) 1563 | * [uninstalltool](https://github.com/AStupidBear/scoop-bear/blob/master/uninstalltool.json) 1564 | * [iobitunlocker](https://github.com/AStupidBear/scoop-bear/blob/master/iobitunlocker.json) 1565 | * [docker-toolbox](https://github.com/AStupidBear/scoop-bear/blob/master/docker-toolbox.json) 1566 | * [miniconda2](https://github.com/AStupidBear/scoop-bear/blob/master/miniconda2.json) 1567 | * [aardio](https://github.com/AStupidBear/scoop-bear/blob/master/aardio.json) 1568 | * [prince](https://github.com/AStupidBear/scoop-bear/blob/master/prince.json) 1569 | * [verysync](https://github.com/AStupidBear/scoop-bear/blob/master/verysync.json) 1570 | * [pdftkbuilder](https://github.com/AStupidBear/scoop-bear/blob/master/pdftkbuilder.json) 1571 | * [capture2text](https://github.com/AStupidBear/scoop-bear/blob/master/capture2text.json) 1572 | * [duplicati](https://github.com/AStupidBear/scoop-bear/blob/master/duplicati.json) 1573 | * [gurobi](https://github.com/AStupidBear/scoop-bear/blob/master/gurobi.json) 1574 | * [filetypesman](https://github.com/AStupidBear/scoop-bear/blob/master/filetypesman.json) 1575 | * [autosub](https://github.com/AStupidBear/scoop-bear/blob/master/autosub.json) 1576 | * [cpdf](https://github.com/AStupidBear/scoop-bear/blob/master/cpdf.json) 1577 | * [reset-permission](https://github.com/AStupidBear/scoop-bear/blob/master/reset-permission.json) 1578 | * [wiznote](https://github.com/AStupidBear/scoop-bear/blob/master/wiznote.json) 1579 | * [miniconda3](https://github.com/AStupidBear/scoop-bear/blob/master/miniconda3.json) 1580 | * [glade](https://github.com/AStupidBear/scoop-bear/blob/master/glade.json) 1581 | * [libav](https://github.com/AStupidBear/scoop-bear/blob/master/libav.json) 1582 | * [fscapture](https://github.com/AStupidBear/scoop-bear/blob/master/fscapture.json) 1583 | * [bulk-rename-utility](https://github.com/AStupidBear/scoop-bear/blob/master/bulk-rename-utility.json) 1584 | * [xyplorerpro](https://github.com/AStupidBear/scoop-bear/blob/master/xyplorerpro.json) 1585 | * [hdfview](https://github.com/AStupidBear/scoop-bear/blob/master/hdfview.json) 1586 | * [cameyo](https://github.com/AStupidBear/scoop-bear/blob/master/cameyo.json) 1587 | * [csvfileview](https://github.com/AStupidBear/scoop-bear/blob/master/csvfileview.json) 1588 | * [bat2exe](https://github.com/AStupidBear/scoop-bear/blob/master/bat2exe.json) 1589 | * [origin](https://github.com/AStupidBear/scoop-bear/blob/master/origin.json) 1590 | * [borg](https://github.com/AStupidBear/scoop-bear/blob/master/borg.json) 1591 | * [qttabbar](https://github.com/AStupidBear/scoop-bear/blob/master/qttabbar.json) 1592 | * [eudic](https://github.com/AStupidBear/scoop-bear/blob/master/eudic.json) 1593 | * [julia](https://github.com/AStupidBear/scoop-bear/blob/master/julia.json) 1594 | * [epicpen](https://github.com/AStupidBear/scoop-bear/blob/master/epicpen.json) 1595 | * [scihub](https://github.com/AStupidBear/scoop-bear/blob/master/scihub.json) 1596 | * [subdownloader](https://github.com/AStupidBear/scoop-bear/blob/master/subdownloader.json) 1597 | * [navicat](https://github.com/AStupidBear/scoop-bear/blob/master/navicat.json) 1598 | * [update-qttabbar](https://github.com/AStupidBear/scoop-bear/blob/master/update-qttabbar.json) 1599 | * [listarypro](https://github.com/AStupidBear/scoop-bear/blob/master/listarypro.json) 1600 | * [sumatrapdf-prerelease](https://github.com/AStupidBear/scoop-bear/blob/master/sumatrapdf-prerelease.json) 1601 | * [regworkshop](https://github.com/AStupidBear/scoop-bear/blob/master/regworkshop.json) 1602 | * [llvm](https://github.com/AStupidBear/scoop-bear/blob/master/llvm.json) 1603 | * [regextester](https://github.com/AStupidBear/scoop-bear/blob/master/regextester.json) 1604 | * [woodpecker](https://github.com/AStupidBear/scoop-bear/blob/master/woodpecker.json) 1605 | 1606 | 1607 | 1608 | [https://github.com/Rigellute/scoop-bucket](https://github.com/Rigellute/scoop-bucket) 1609 | * [spotify-tui](https://github.com/Rigellute/scoop-bucket/blob/master/spotify-tui.json) 1610 | 1611 | 1612 | 1613 | [https://github.com/snyk/scoop-snyk](https://github.com/snyk/scoop-snyk) 1614 | * [snyk](https://github.com/snyk/scoop-snyk/blob/master/snyk.json) 1615 | 1616 | 1617 | 1618 | [https://github.com/yuanying1199/scoopbucket](https://github.com/yuanying1199/scoopbucket) 1619 | * [schema](https://github.com/yuanying1199/scoopbucket/blob/master/schema.json) 1620 | 1621 | 1622 | 1623 | [https://github.com/janet-lang/scoop](https://github.com/janet-lang/scoop) 1624 | * [janet](https://github.com/janet-lang/scoop/blob/master/janet.json) 1625 | 1626 | 1627 | 1628 | [https://github.com/TianXiaTech/scoop-txt](https://github.com/TianXiaTech/scoop-txt) 1629 | * [app-list](https://github.com/TianXiaTech/scoop-txt/blob/master/app-list.json) 1630 | 1631 | 1632 | 1633 | [https://github.com/maman/scoop-bucket](https://github.com/maman/scoop-bucket) 1634 | * [vim-nox](https://github.com/maman/scoop-bucket/blob/master/vim-nox.json) 1635 | * [android-sdk](https://github.com/maman/scoop-bucket/blob/master/android-sdk.json) 1636 | * [heroku-toolbelt](https://github.com/maman/scoop-bucket/blob/master/heroku-toolbelt.json) 1637 | * [android-platform-tools](https://github.com/maman/scoop-bucket/blob/master/android-platform-tools.json) 1638 | * [phantomjs19](https://github.com/maman/scoop-bucket/blob/master/phantomjs19.json) 1639 | * [otto](https://github.com/maman/scoop-bucket/blob/master/otto.json) 1640 | * [screenfetch](https://github.com/maman/scoop-bucket/blob/master/screenfetch.json) 1641 | 1642 | 1643 | 1644 | [https://github.com/jmcarbo/scoopbucket](https://github.com/jmcarbo/scoopbucket) 1645 | * [rclone](https://github.com/jmcarbo/scoopbucket/blob/master/rclone.json) 1646 | * [removedrive](https://github.com/jmcarbo/scoopbucket/blob/master/removedrive.json) 1647 | * [pt](https://github.com/jmcarbo/scoopbucket/blob/master/pt.json) 1648 | * [rufus](https://github.com/jmcarbo/scoopbucket/blob/master/rufus.json) 1649 | * [cmder](https://github.com/jmcarbo/scoopbucket/blob/master/cmder.json) 1650 | * [minioclient](https://github.com/jmcarbo/scoopbucket/blob/master/minioclient.json) 1651 | 1652 | 1653 | 1654 | [https://github.com/raisercostin/raiser-scoop-bucket](https://github.com/raisercostin/raiser-scoop-bucket) 1655 | * [docker-ee](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/docker-ee.json) 1656 | * [pidgin](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/pidgin.json) 1657 | * [kscript](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/kscript.json) 1658 | * [yed](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/yed.json) 1659 | * [picasa](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/picasa.json) 1660 | * [raisercostin-utils](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/raisercostin-utils.json) 1661 | * [pidgin-facebook](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/pidgin-facebook.json) 1662 | * [pidgin-full](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/pidgin-full.json) 1663 | * [wireguard](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/wireguard.json) 1664 | * [latencymon](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/latencymon.json) 1665 | * [pidgin-telegram](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/pidgin-telegram.json) 1666 | * [picasa-starter](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/picasa-starter.json) 1667 | * [riot](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/riot.json) 1668 | * [cutepdf](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/cutepdf.json) 1669 | * [tortoisegit](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/tortoisegit.json) 1670 | * [freeplane](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/freeplane.json) 1671 | * [hello](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/hello.json) 1672 | * [chansort](https://github.com/raisercostin/raiser-scoop-bucket/blob/master/chansort.json) 1673 | 1674 | 1675 | 1676 | [https://github.com/svkoh/scoop-bucket](https://github.com/svkoh/scoop-bucket) 1677 | * [tortoisegit](https://github.com/svkoh/scoop-bucket/blob/master/tortoisegit.json) 1678 | 1679 | 1680 | 1681 | [https://github.com/replit/scoop-bucket](https://github.com/replit/scoop-bucket) 1682 | * [upm](https://github.com/replit/scoop-bucket/blob/master/upm.json) 1683 | 1684 | 1685 | 1686 | [https://github.com/rohitnarayanan/scoop-apps](https://github.com/rohitnarayanan/scoop-apps) 1687 | * [soapui](https://github.com/rohitnarayanan/scoop-apps/blob/master/soapui.json) 1688 | * [visualvm](https://github.com/rohitnarayanan/scoop-apps/blob/master/visualvm.json) 1689 | * [sql-developer](https://github.com/rohitnarayanan/scoop-apps/blob/master/sql-developer.json) 1690 | * [mpmanager](https://github.com/rohitnarayanan/scoop-apps/blob/master/mpmanager.json) 1691 | * [zipdiff](https://github.com/rohitnarayanan/scoop-apps/blob/master/zipdiff.json) 1692 | * [dbvis](https://github.com/rohitnarayanan/scoop-apps/blob/master/dbvis.json) 1693 | * [kse](https://github.com/rohitnarayanan/scoop-apps/blob/master/kse.json) 1694 | 1695 | 1696 | 1697 | [https://github.com/kentork/scoop-leaky-bucket](https://github.com/kentork/scoop-leaky-bucket) 1698 | * [a5m2](https://github.com/kentork/scoop-leaky-bucket/blob/master/a5m2.json) 1699 | * [rapture](https://github.com/kentork/scoop-leaky-bucket/blob/master/rapture.json) 1700 | * [rlogin](https://github.com/kentork/scoop-leaky-bucket/blob/master/rlogin.json) 1701 | 1702 | 1703 | 1704 | [https://github.com/NSIS-Dev/scoop-nsis](https://github.com/NSIS-Dev/scoop-nsis) 1705 | * [package-lock](https://github.com/NSIS-Dev/scoop-nsis/blob/master/package-lock.json) 1706 | * [package](https://github.com/NSIS-Dev/scoop-nsis/blob/master/package.json) 1707 | 1708 | 1709 | 1710 | [https://github.com/hulucc/bucket](https://github.com/hulucc/bucket) 1711 | * [dapr](https://github.com/hulucc/bucket/blob/master/dapr.json) 1712 | * [depot_tools](https://github.com/hulucc/bucket/blob/master/depot_tools.json) 1713 | * [vim81](https://github.com/hulucc/bucket/blob/master/vim81.json) 1714 | * [xkb-switch](https://github.com/hulucc/bucket/blob/master/xkb-switch.json) 1715 | * [stern](https://github.com/hulucc/bucket/blob/master/stern.json) 1716 | * [calico](https://github.com/hulucc/bucket/blob/master/calico.json) 1717 | * [sentry-cli](https://github.com/hulucc/bucket/blob/master/sentry-cli.json) 1718 | * [zookeeper](https://github.com/hulucc/bucket/blob/master/zookeeper.json) 1719 | * [presto](https://github.com/hulucc/bucket/blob/master/presto.json) 1720 | * [gn](https://github.com/hulucc/bucket/blob/master/gn.json) 1721 | * [android-sdk](https://github.com/hulucc/bucket/blob/master/android-sdk.json) 1722 | * [cpptools](https://github.com/hulucc/bucket/blob/master/cpptools.json) 1723 | * [nebula](https://github.com/hulucc/bucket/blob/master/nebula.json) 1724 | * [neo4j](https://github.com/hulucc/bucket/blob/master/neo4j.json) 1725 | 1726 | 1727 | 1728 | [https://github.com/dooteeen/scoop-for-jp](https://github.com/dooteeen/scoop-for-jp) 1729 | * [cica](https://github.com/dooteeen/scoop-for-jp/blob/master/cica.json) 1730 | * [nkf](https://github.com/dooteeen/scoop-for-jp/blob/master/nkf.json) 1731 | * [emacs-nt](https://github.com/dooteeen/scoop-for-jp/blob/master/emacs-nt.json) 1732 | * [myrica-m](https://github.com/dooteeen/scoop-for-jp/blob/master/myrica-m.json) 1733 | * [winmerge-jp](https://github.com/dooteeen/scoop-for-jp/blob/master/winmerge-jp.json) 1734 | * [jp-util-font](https://github.com/dooteeen/scoop-for-jp/blob/master/jp-util-font.json) 1735 | * [source-han-code-jp](https://github.com/dooteeen/scoop-for-jp/blob/master/source-han-code-jp.json) 1736 | * [myrica](https://github.com/dooteeen/scoop-for-jp/blob/master/myrica.json) 1737 | * [vim-kaoriya](https://github.com/dooteeen/scoop-for-jp/blob/master/vim-kaoriya.json) 1738 | 1739 | 1740 | 1741 | [https://github.com/nickbudi/scoop-bucket](https://github.com/nickbudi/scoop-bucket) 1742 | * [bethesda](https://github.com/nickbudi/scoop-bucket/blob/master/bethesda.json) 1743 | * [elderscrollsonline](https://github.com/nickbudi/scoop-bucket/blob/master/elderscrollsonline.json) 1744 | * [lunacy](https://github.com/nickbudi/scoop-bucket/blob/master/lunacy.json) 1745 | * [vapoursynth](https://github.com/nickbudi/scoop-bucket/blob/master/vapoursynth.json) 1746 | * [ccleaner](https://github.com/nickbudi/scoop-bucket/blob/master/ccleaner.json) 1747 | * [prime95](https://github.com/nickbudi/scoop-bucket/blob/master/prime95.json) 1748 | * [furmark](https://github.com/nickbudi/scoop-bucket/blob/master/furmark.json) 1749 | * [minion](https://github.com/nickbudi/scoop-bucket/blob/master/minion.json) 1750 | * [gpmdp](https://github.com/nickbudi/scoop-bucket/blob/master/gpmdp.json) 1751 | * [uplay](https://github.com/nickbudi/scoop-bucket/blob/master/uplay.json) 1752 | * [megatools](https://github.com/nickbudi/scoop-bucket/blob/master/megatools.json) 1753 | * [everything](https://github.com/nickbudi/scoop-bucket/blob/master/everything.json) 1754 | * [mpv-git](https://github.com/nickbudi/scoop-bucket/blob/master/mpv-git.json) 1755 | * [gopass](https://github.com/nickbudi/scoop-bucket/blob/master/gopass.json) 1756 | * [mumble-portable](https://github.com/nickbudi/scoop-bucket/blob/master/mumble-portable.json) 1757 | * [authy-desktop](https://github.com/nickbudi/scoop-bucket/blob/master/authy-desktop.json) 1758 | * [bleachbit](https://github.com/nickbudi/scoop-bucket/blob/master/bleachbit.json) 1759 | * [gvim-portable](https://github.com/nickbudi/scoop-bucket/blob/master/gvim-portable.json) 1760 | * [audacity](https://github.com/nickbudi/scoop-bucket/blob/master/audacity.json) 1761 | * [wox](https://github.com/nickbudi/scoop-bucket/blob/master/wox.json) 1762 | * [streamlink-portable](https://github.com/nickbudi/scoop-bucket/blob/master/streamlink-portable.json) 1763 | * [gimp-portable](https://github.com/nickbudi/scoop-bucket/blob/master/gimp-portable.json) 1764 | * [veracrypt-portable](https://github.com/nickbudi/scoop-bucket/blob/master/veracrypt-portable.json) 1765 | * [firefox-portable](https://github.com/nickbudi/scoop-bucket/blob/master/firefox-portable.json) 1766 | * [minecraft-java](https://github.com/nickbudi/scoop-bucket/blob/master/minecraft-java.json) 1767 | * [transmission-portable](https://github.com/nickbudi/scoop-bucket/blob/master/transmission-portable.json) 1768 | * [windirstat-portable](https://github.com/nickbudi/scoop-bucket/blob/master/windirstat-portable.json) 1769 | * [obs-studio](https://github.com/nickbudi/scoop-bucket/blob/master/obs-studio.json) 1770 | * [simplewall](https://github.com/nickbudi/scoop-bucket/blob/master/simplewall.json) 1771 | * [geekuninstaller-portable](https://github.com/nickbudi/scoop-bucket/blob/master/geekuninstaller-portable.json) 1772 | * [halo2pc](https://github.com/nickbudi/scoop-bucket/blob/master/halo2pc.json) 1773 | * [vlc-portable](https://github.com/nickbudi/scoop-bucket/blob/master/vlc-portable.json) 1774 | * [epicgames](https://github.com/nickbudi/scoop-bucket/blob/master/epicgames.json) 1775 | * [sqlitebrowser](https://github.com/nickbudi/scoop-bucket/blob/master/sqlitebrowser.json) 1776 | * [gpmm](https://github.com/nickbudi/scoop-bucket/blob/master/gpmm.json) 1777 | * [crystaldiskmark-portable](https://github.com/nickbudi/scoop-bucket/blob/master/crystaldiskmark-portable.json) 1778 | * [modorganizer2](https://github.com/nickbudi/scoop-bucket/blob/master/modorganizer2.json) 1779 | 1780 | 1781 | 1782 | [https://github.com/onlyice/scoop-bucket](https://github.com/onlyice/scoop-bucket) 1783 | * [qshell](https://github.com/onlyice/scoop-bucket/blob/master/qshell.json) 1784 | * [cosupload](https://github.com/onlyice/scoop-bucket/blob/master/cosupload.json) 1785 | 1786 | 1787 | 1788 | [https://github.com/alphagocc/lampyridae](https://github.com/alphagocc/lampyridae) 1789 | * [winlibs-gcc](https://github.com/alphagocc/lampyridae/blob/master/winlibs-gcc.json) 1790 | * [mcf-gcc](https://github.com/alphagocc/lampyridae/blob/master/mcf-gcc.json) 1791 | 1792 | 1793 | 1794 | [https://github.com/jingyu9575/scoop-jingyu9575](https://github.com/jingyu9575/scoop-jingyu9575) 1795 | * [schema](https://github.com/jingyu9575/scoop-jingyu9575/blob/master/schema.json) 1796 | 1797 | 1798 | 1799 | [https://github.com/secrethub/scoop-secrethub](https://github.com/secrethub/scoop-secrethub) 1800 | * [secrethub-cli](https://github.com/secrethub/scoop-secrethub/blob/master/secrethub-cli.json) 1801 | 1802 | 1803 | 1804 | [https://github.com/tangramxyz/scoop](https://github.com/tangramxyz/scoop) 1805 | * [tangram](https://github.com/tangramxyz/scoop/blob/master/tangram.json) 1806 | 1807 | 1808 | 1809 | [https://github.com/twpayne/scoop-bucket](https://github.com/twpayne/scoop-bucket) 1810 | * [chezmoi](https://github.com/twpayne/scoop-bucket/blob/master/chezmoi.json) 1811 | 1812 | 1813 | 1814 | [https://github.com/athrunsun/scoop-bucket](https://github.com/athrunsun/scoop-bucket) 1815 | * [yarn-binary-cn-taobao-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/yarn-binary-cn-taobao-mirror.json) 1816 | * [obs-studio-cn-bfsu-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/obs-studio-cn-bfsu-mirror.json) 1817 | * [ffmpeg-btbn-gpl](https://github.com/athrunsun/scoop-bucket/blob/master/ffmpeg-btbn-gpl.json) 1818 | * [gvm](https://github.com/athrunsun/scoop-bucket/blob/master/gvm.json) 1819 | * [kangaroo-portable](https://github.com/athrunsun/scoop-bucket/blob/master/kangaroo-portable.json) 1820 | * [python-embed](https://github.com/athrunsun/scoop-bucket/blob/master/python-embed.json) 1821 | * [adoptopenjdk-8-hotspot-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-8-hotspot-cn-tuna-mirror.json) 1822 | * [file-types-man](https://github.com/athrunsun/scoop-bucket/blob/master/file-types-man.json) 1823 | * [chromium-hibbiki-x64](https://github.com/athrunsun/scoop-bucket/blob/master/chromium-hibbiki-x64.json) 1824 | * [freecad-cn-sjtu-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/freecad-cn-sjtu-mirror.json) 1825 | * [centbrowser-portable](https://github.com/athrunsun/scoop-bucket/blob/master/centbrowser-portable.json) 1826 | * [adoptopenjdk-11-openj9-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-11-openj9-cn-tuna-mirror.json) 1827 | * [maxthon6-portable](https://github.com/athrunsun/scoop-bucket/blob/master/maxthon6-portable.json) 1828 | * [mremoteng-portable](https://github.com/athrunsun/scoop-bucket/blob/master/mremoteng-portable.json) 1829 | * [go-shadowsocks2](https://github.com/athrunsun/scoop-bucket/blob/master/go-shadowsocks2.json) 1830 | * [vscodium-portable-no-context-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/vscodium-portable-no-context-cn-tuna-mirror.json) 1831 | * [maxthon5-portable](https://github.com/athrunsun/scoop-bucket/blob/master/maxthon5-portable.json) 1832 | * [python-embed-cn-taobao-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/python-embed-cn-taobao-mirror.json) 1833 | * [yarn-binary](https://github.com/athrunsun/scoop-bucket/blob/master/yarn-binary.json) 1834 | * [firefox-noinstall](https://github.com/athrunsun/scoop-bucket/blob/master/firefox-noinstall.json) 1835 | * [universal-usb-installer](https://github.com/athrunsun/scoop-bucket/blob/master/universal-usb-installer.json) 1836 | * [atom-portable-cn-taobao-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/atom-portable-cn-taobao-mirror.json) 1837 | * [adoptopenjdk-11-openj9-cn-ustc-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-11-openj9-cn-ustc-mirror.json) 1838 | * [amule](https://github.com/athrunsun/scoop-bucket/blob/master/amule.json) 1839 | * [adoptopenjdk-8-openj9-cn-ustc-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-8-openj9-cn-ustc-mirror.json) 1840 | * [powershell-core-cn-sjtu-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/powershell-core-cn-sjtu-mirror.json) 1841 | * [adoptopenjdk-11-hotspot-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-11-hotspot-cn-tuna-mirror.json) 1842 | * [annie-binary](https://github.com/athrunsun/scoop-bucket/blob/master/annie-binary.json) 1843 | * [chromium-hibbiki-x64-cn-coding-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/chromium-hibbiki-x64-cn-coding-mirror.json) 1844 | * [blue-screen-view](https://github.com/athrunsun/scoop-bucket/blob/master/blue-screen-view.json) 1845 | * [vscodium-portable-no-context-cn-sjtu-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/vscodium-portable-no-context-cn-sjtu-mirror.json) 1846 | * [sublime-text-no-context](https://github.com/athrunsun/scoop-bucket/blob/master/sublime-text-no-context.json) 1847 | * [kangaroo-portable-cn-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/kangaroo-portable-cn-mirror.json) 1848 | * [clash](https://github.com/athrunsun/scoop-bucket/blob/master/clash.json) 1849 | * [git-with-openssh-cn-taobao-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/git-with-openssh-cn-taobao-mirror.json) 1850 | * [httpie-go](https://github.com/athrunsun/scoop-bucket/blob/master/httpie-go.json) 1851 | * [maxthon4-portable](https://github.com/athrunsun/scoop-bucket/blob/master/maxthon4-portable.json) 1852 | * [vscodium-portable-no-context-cn-bfsu-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/vscodium-portable-no-context-cn-bfsu-mirror.json) 1853 | * [vscode-portable-no-context](https://github.com/athrunsun/scoop-bucket/blob/master/vscode-portable-no-context.json) 1854 | * [centbrowser](https://github.com/athrunsun/scoop-bucket/blob/master/centbrowser.json) 1855 | * [adoptopenjdk-8-openj9-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/adoptopenjdk-8-openj9-cn-tuna-mirror.json) 1856 | * [uninstall-view](https://github.com/athrunsun/scoop-bucket/blob/master/uninstall-view.json) 1857 | * [powershell-core](https://github.com/athrunsun/scoop-bucket/blob/master/powershell-core.json) 1858 | * [atom-portable](https://github.com/athrunsun/scoop-bucket/blob/master/atom-portable.json) 1859 | * [git-with-openssh-cn-tuna-mirror](https://github.com/athrunsun/scoop-bucket/blob/master/git-with-openssh-cn-tuna-mirror.json) 1860 | * [ffmpeg-btbn-lgpl](https://github.com/athrunsun/scoop-bucket/blob/master/ffmpeg-btbn-lgpl.json) 1861 | * [baidupcs-go](https://github.com/athrunsun/scoop-bucket/blob/master/baidupcs-go.json) 1862 | * [vscodium-portable-no-context](https://github.com/athrunsun/scoop-bucket/blob/master/vscodium-portable-no-context.json) 1863 | 1864 | 1865 | 1866 | [https://github.com/comp500/scoop-comp500](https://github.com/comp500/scoop-comp500) 1867 | * [titledumper](https://github.com/comp500/scoop-comp500/blob/master/titledumper.json) 1868 | * [famitracker](https://github.com/comp500/scoop-comp500/blob/master/famitracker.json) 1869 | * [cemu](https://github.com/comp500/scoop-comp500/blob/master/cemu.json) 1870 | * [cemu-shortcut](https://github.com/comp500/scoop-comp500/blob/master/cemu-shortcut.json) 1871 | * [powdertoy](https://github.com/comp500/scoop-comp500/blob/master/powdertoy.json) 1872 | * [cemuhook](https://github.com/comp500/scoop-comp500/blob/master/cemuhook.json) 1873 | * [syncplay](https://github.com/comp500/scoop-comp500/blob/master/syncplay.json) 1874 | 1875 | 1876 | 1877 | [https://github.com/goreleaser/scoop-bucket](https://github.com/goreleaser/scoop-bucket) 1878 | * [goreleaser-pro](https://github.com/goreleaser/scoop-bucket/blob/master/goreleaser-pro.json) 1879 | * [goreleaser](https://github.com/goreleaser/scoop-bucket/blob/master/goreleaser.json) 1880 | * [nfpm](https://github.com/goreleaser/scoop-bucket/blob/master/nfpm.json) 1881 | 1882 | 1883 | 1884 | [https://github.com/ondr3j/scoop-misc](https://github.com/ondr3j/scoop-misc) 1885 | * [c-client](https://github.com/ondr3j/scoop-misc/blob/master/c-client.json) 1886 | * [libjpeg](https://github.com/ondr3j/scoop-misc/blob/master/libjpeg.json) 1887 | * [rsvg-convert](https://github.com/ondr3j/scoop-misc/blob/master/rsvg-convert.json) 1888 | * [glib](https://github.com/ondr3j/scoop-misc/blob/master/glib.json) 1889 | * [zlib](https://github.com/ondr3j/scoop-misc/blob/master/zlib.json) 1890 | * [file](https://github.com/ondr3j/scoop-misc/blob/master/file.json) 1891 | * [libpng](https://github.com/ondr3j/scoop-misc/blob/master/libpng.json) 1892 | * [libsasl](https://github.com/ondr3j/scoop-misc/blob/master/libsasl.json) 1893 | * [coffimplib](https://github.com/ondr3j/scoop-misc/blob/master/coffimplib.json) 1894 | * [libxpm](https://github.com/ondr3j/scoop-misc/blob/master/libxpm.json) 1895 | * [libffi](https://github.com/ondr3j/scoop-misc/blob/master/libffi.json) 1896 | * [openssl](https://github.com/ondr3j/scoop-misc/blob/master/openssl.json) 1897 | * [dub](https://github.com/ondr3j/scoop-misc/blob/master/dub.json) 1898 | * [dirent](https://github.com/ondr3j/scoop-misc/blob/master/dirent.json) 1899 | * [freetype](https://github.com/ondr3j/scoop-misc/blob/master/freetype.json) 1900 | * [libiconv](https://github.com/ondr3j/scoop-misc/blob/master/libiconv.json) 1901 | * [zip](https://github.com/ondr3j/scoop-misc/blob/master/zip.json) 1902 | * [libxslt](https://github.com/ondr3j/scoop-misc/blob/master/libxslt.json) 1903 | * [lzo](https://github.com/ondr3j/scoop-misc/blob/master/lzo.json) 1904 | * [elevate](https://github.com/ondr3j/scoop-misc/blob/master/elevate.json) 1905 | * [acpica](https://github.com/ondr3j/scoop-misc/blob/master/acpica.json) 1906 | * [libssh2](https://github.com/ondr3j/scoop-misc/blob/master/libssh2.json) 1907 | * [libargon2](https://github.com/ondr3j/scoop-misc/blob/master/libargon2.json) 1908 | * [libintl](https://github.com/ondr3j/scoop-misc/blob/master/libintl.json) 1909 | * [fciv](https://github.com/ondr3j/scoop-misc/blob/master/fciv.json) 1910 | * [re2c](https://github.com/ondr3j/scoop-misc/blob/master/re2c.json) 1911 | * [icu](https://github.com/ondr3j/scoop-misc/blob/master/icu.json) 1912 | * [dmd](https://github.com/ondr3j/scoop-misc/blob/master/dmd.json) 1913 | * [libbzip2](https://github.com/ondr3j/scoop-misc/blob/master/libbzip2.json) 1914 | * [xz](https://github.com/ondr3j/scoop-misc/blob/master/xz.json) 1915 | * [curl](https://github.com/ondr3j/scoop-misc/blob/master/curl.json) 1916 | * [lzop](https://github.com/ondr3j/scoop-misc/blob/master/lzop.json) 1917 | * [libmcrypt](https://github.com/ondr3j/scoop-misc/blob/master/libmcrypt.json) 1918 | * [wineditline](https://github.com/ondr3j/scoop-misc/blob/master/wineditline.json) 1919 | * [bison](https://github.com/ondr3j/scoop-misc/blob/master/bison.json) 1920 | * [flex](https://github.com/ondr3j/scoop-misc/blob/master/flex.json) 1921 | * [libxml2](https://github.com/ondr3j/scoop-misc/blob/master/libxml2.json) 1922 | * [ldc](https://github.com/ondr3j/scoop-misc/blob/master/ldc.json) 1923 | 1924 | 1925 | 1926 | [https://github.com/kingchang/scoop-buckets](https://github.com/kingchang/scoop-buckets) 1927 | * [intellij-idea-ce](https://github.com/kingchang/scoop-buckets/blob/master/intellij-idea-ce.json) 1928 | * [intellij-idea](https://github.com/kingchang/scoop-buckets/blob/master/intellij-idea.json) 1929 | 1930 | [https://github.com/pgollangi/scoop-bucket](https://github.com/pgollangi/scoop-bucket) 1931 | * [netselect](https://github.com/pgollangi/scoop-bucket/blob/master/netselect.json) 1932 | 1933 | -------------------------------------------------------------------------------- /maintenance/github-crawler.py: -------------------------------------------------------------------------------- 1 | import os 2 | import requests 3 | import pickle 4 | from git import Repo 5 | from datetime import datetime 6 | from jinja2 import Template,Environment, FileSystemLoader 7 | 8 | dir_path = os.path.dirname(os.path.realpath(__file__)) 9 | 10 | def fetchjson(urlstr): 11 | #Fetch results 12 | response = requests.get(url=urlstr) 13 | return response.json() 14 | 15 | 16 | #load cache 17 | try: 18 | with open(os.path.join(dir_path,'cache.pickle'), "rb") as input_file: 19 | cache = pickle.load(input_file) 20 | except (EnvironmentError,EOFError): 21 | cache = {} 22 | cache['last_run'] = datetime(2000,1,1).strftime('%Y-%m-%dT%H:%M:%SZ') 23 | 24 | last_run = datetime.strptime(cache['last_run'],'%Y-%m-%dT%H:%M:%SZ') 25 | 26 | # import pprint 27 | # pprint.pprint(cache) 28 | # exit() 29 | 30 | i = 0 31 | for repo in fetchjson('https://api.github.com/search/repositories?q=scoop+buckets&per_page=500')['items']: 32 | 33 | name = repo['name'] 34 | repofoldername = repo['full_name'].replace('/','+') 35 | git_clone_url = repo['git_url'] 36 | html_url = repo['html_url'] 37 | repo_score = repo['score'] 38 | last_updated = datetime.strptime(repo['updated_at'],'%Y-%m-%dT%H:%M:%SZ') 39 | 40 | if(not repofoldername in cache): 41 | #Delete folder if exists 42 | #clone repo to cache folder 43 | i += 1 44 | Repo.clone_from(git_clone_url, os.path.join(dir_path,'cache',repofoldername)) 45 | cache[repofoldername] = {'name':name,'url':html_url,'score':float(repo_score),'entries':[]} 46 | 47 | elif repofoldername in cache and (last_updated > last_run ): 48 | i += 1 49 | repo = Repo(os.path.join(dir_path, 'cache', repofoldername)) 50 | o = repo.remotes.origin 51 | o.pull() 52 | 53 | if(not os.path.isdir(os.path.join(dir_path,'cache',repofoldername))): 54 | continue 55 | 56 | cache[repofoldername]['entries'] = [] 57 | for f in os.listdir(os.path.join(dir_path,'cache',repofoldername)): 58 | file_path = os.path.join(dir_path,'cache',repofoldername,f) 59 | if(os.path.isfile(file_path) and os.path.splitext(file_path)[1] == '.json'): 60 | cache[repofoldername]['entries'].append(os.path.splitext(f)[0]) 61 | 62 | 63 | #update last run 64 | cache['last_run'] = datetime.strftime(datetime.now().replace(hour=0, minute=0, second=0),'%Y-%m-%dT%H:%M:%SZ') 65 | 66 | try: 67 | with open(os.path.join(dir_path,'cache.pickle'), "wb") as input_file: 68 | pickle.dump(cache,input_file) 69 | except EnvironmentError: 70 | pass 71 | print(i,' repos updated') 72 | 73 | 74 | #Sort Repos by github score 75 | repos = [repo for repo in cache.keys()] 76 | actual_repos = [ repo for repo in repos if (repo != 'last_run' and len(cache[repo]['entries']) > 0) ] 77 | sorted(actual_repos, key=lambda repo:cache[repo]['score']) 78 | print(str(len(actual_repos)) + 'valid repositories found.') 79 | 80 | #Update Readme file 81 | TEMPLATE_ENVIRONMENT = Environment( 82 | autoescape=False, 83 | loader=FileSystemLoader(os.path.join(dir_path, 'template')), 84 | trim_blocks=False) 85 | context = { 86 | 'sortedrepos':actual_repos, 87 | 'cache': cache 88 | } 89 | markdown_content = TEMPLATE_ENVIRONMENT.get_template('ReadmeTemplate.tpl').render(context) 90 | with open(os.path.join(dir_path,'..','README.md'), "w") as readme_file: 91 | readme_file.write(markdown_content) 92 | 93 | print('[INFO] Script Finished...') -------------------------------------------------------------------------------- /maintenance/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2017.4.17 2 | chardet==3.0.4 3 | gitdb2==2.0.2 4 | GitPython==2.1.5 5 | idna==2.5 6 | Jinja2>=2.10.1 7 | MarkupSafe==1.1.0 8 | requests==2.20.0 9 | smmap2==2.0.3 10 | urllib3==1.24.2 11 | -------------------------------------------------------------------------------- /maintenance/template/ReadmeTemplate.tpl: -------------------------------------------------------------------------------- 1 | # awesome-scoop 2 | A collection of awesome resource for the scoop package manager for windows 3 | 4 | # Build Status 5 | ![Build Status](https://travis-ci.org/tapannallan/awesome-scoop.svg?branch=master) 6 | 7 | # Third party buckets by popularity 8 | {% for repo in sortedrepos %} 9 | [{{cache[repo]['url']}}]({{cache[repo]['url']}}) 10 | {% for entry in cache[repo]['entries'] -%} 11 | {{" * [" + entry + "]("+ cache[repo]['url'] + "/blob/master/" + entry + ".json)"}} 12 | {% endfor -%} 13 | {{'\n'}} 14 | {% endfor -%} 15 | --------------------------------------------------------------------------------