aboutsummaryrefslogtreecommitdiff
path: root/ports/antlr4
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` function Convert-Control { Param($full) .\vcpkg.exe format-manifest $full $root = $full.Substring(0, $full.Length - 7) # CONTROL $new = $root + 'vcpkg.json' $content = Get-Content -Raw $new $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100 $oldVersion = $asJson['port-version'] if ($null -eq $oldVersion) { $oldVersionFull = $asJson['version-string'] Write-Host "Got version $oldVersionFull" $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$') if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) { $newFullVersion = [string]$match.Groups[1].Value $oldVersion = [int]$match.Groups[2].Value Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion" $newVersion = $oldVersion + 1 $asJson['version-string'] = $newFullVersion Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion" } else { Write-Host "No previous version for $full -- setting 1" $newVersion = 1 } } else { $newVersion = [int]$oldVersion + 1 Write-Host "New version for $full : $newVersion" } $asJson['port-version'] = $newVersion $content = ConvertTo-Json $asJson -Depth 100 Set-Content -Path $new -Value $content .\vcpkg.exe format-manifest $new } Get-ChildItem ports\CONTROL -Recurse | Foreach-Object { Convert-Control $_.FullName } git commit -am "this message" .\vcpkg.exe x-add-version -all git commit -a --amend ```
2021-04-01[antlr4] update to 4.9.1 (#16383)Nick Strupat
* [antlr4] update to 4.9.1 * update version * [antlr4] fix utfcpp dependency issue * fix version SHA to account for utfcpp patch * [antlr4] Minimize patch Co-authored-by: Jonliu1993 <13720414433@163.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-12-29[antlr4,python3] Resolve cross port conflicts (#15378)Billy O'Neal
* [python3] Add vcpkg's include directories to the end rather than to the beginning. This is safe because vcpkg never hydrates python3's $(PySrcDir)\externals directory, so it wasn't using vendored dependencies at all. * [antlr4] Install antlr headers in antlr4-runtime rather than the root to avoid stomping on common name token.h. This is consistent with the ubuntu packages.
2020-10-17[antlr4] update to 4.8 (#14036)Akihisa Yagi
* [antlr4] update to 4.8 * [antlr4] Add supports * [antlr4] Regenerate patch files * [antlr4] Remove spaces from patch files Co-authored-by: wangli28 <wangli28@beyondsoft.com>
2019-10-07[vcpkg] fatal_error when patch fails to apply (#8087)Stefano Sinigardi
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-03-08[antlr4] Support build on Linux and MacOS (#5606)Victor Romero
* Patch VS project file with CRT linkage * [antlr4] Support build on Linux and MacOS
2018-12-19[antlr4] fix copyright download namePhil Christensen
2018-12-19[antlr4] change portfile to trigger testingPhil Christensen
2018-12-18[antlr4] move to vcpkg_extract_source_archive_exPhil Christensen
2018-12-13[antlr4] bump dash version in control filePhil Christensen
Done to force test to run
2018-12-12[antlr4] Upgrade to antlr 4.7.1Albert Fong
2017-11-26[ports] Mark several ports as unbuildable on UWPRobert Schumacher
2017-11-03[antlr4] bump version to 4.7sdcb
2017-11-03[antlr] upgrade to antlr4.7sdcb
2017-10-12[several ports] Remove CMake double expansions inside if() directivesRobert Schumacher
2017-05-05Force LF line endings for patch filesMartin Müller
2017-03-21[antlr4] Fix building with Visual Studio 2017. Resolves #804Alexander Karatarakis
2017-02-14[antlr4] Make identation consistentAlexander Karatarakis
2017-02-14[antlr4] Fix downloading of LICENSE fileAlexander Karatarakis
2016-12-25[antlr4] initial commitflysha