| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
MacPorts is one of the "Missing package managers for OS X". The original build scripts only supported Homebrew and it is inadvised to have both installed on a same system. This change makes the build script use whatever package manager is currently installed, or direct the user to download one of them if neither is present.
Sorry, something went wrong.
There was a problem hiding this comment.
See comments
Sorry, something went wrong.
|
There is a spelling error. Here is my function to test spelling. function Test-Spelling
{
param(
[string[]]
$Paths,
[switch]
$Fix
)
if(!(Get-Command mdspell -ErrorAction SilentlyContinue))
{
brew install yarn
sudo yarn global add 'markdown-spellcheck@0.11.0'
}
$fileList = @()
foreach($path in $Paths)
{
if($path -match '^\.[/\\]')
{
$fileList += ($path -replace '^\.[/\\]')
}
else {
$fileList += $path
}
}
$extraParams = @()
if(!$Fix.IsPresent)
{
$extraParams += '--report'
}
Write-Verbose "Testing spelling for $fileList" -Verbose
mdspell $fileList --ignore-numbers --ignore-acronyms @extraParams --en-us --no-suggestions
} |
Sorry, something went wrong.
The script only complains about the words "2.x" (referring to the required .net core version) and "MacPorts". Looks like false positives to me. |
Sorry, something went wrong.
|
Spelling errors must be fixed for the PR to be accepted. Please run the tool and add the words to the dictionary. There is a fix switch in my script which will prompt you to add it to the dictionary |
Sorry, something went wrong.
|
There was a random failure verifying a URL. I retried that task. |
Sorry, something went wrong.
|
PoshChan-Bot (@PoshChan) Please remind me in 1 hour |
Sorry, something went wrong.
There was a problem hiding this comment.
Hold for compliance review
Sorry, something went wrong.
|
@Lucius-Q-User To explain what triggered the review, MacPorts license is not clearly declared on GitHub (image below). So, I'm waiting on a manual review of the use of this software in our project. They don't give me a specific ETA. MacPro LicenseMIT License |
Sorry, something went wrong.
|
Travis Plunk (@TravisEz13), this is the reminder you requested 1 hour ago |
Sorry, something went wrong.
|
@Lucius-Q-User I'm monitoring the compliance review and I'd expect an answer within a week at this point. Ping me if we don't get an answer by that time. |
Sorry, something went wrong.
|
🎉v7.0.0-preview.5 has been released which incorporates this pull request.:tada: Handy links: |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
PR Summary
Add MacPorts support to the build system
PR Context
MacPorts is one of the "Missing package managers for OS X".
The original build scripts only supported Homebrew and it is inadvised to have
both installed on a same system.
This change makes the build script use whatever package manager is currently
installed, or direct the user to download one of them if neither is present.
The build documentation has been updated to reflect that another package
manager is now also supported.
PR Checklist