aboutsummaryrefslogtreecommitdiff
path: root/ports/beast/CONTROL
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 ```
2019-08-26Add homepage for beast (#7909)Dmitry Marakasov
2017-12-19Update downstream libraries to use modularized boostRobert Schumacher
2017-07-25[beast] Fix download hashRobert Schumacher
2017-07-20[beast] Update to version 84Vinnie Falco
2017-07-08[beast] Update to version 76Vinnie Falco
2017-06-23[beast] Update to version 66Vinnie Falco
2017-06-21[beast] Update to version 63Vinnie Falco
2017-06-16[beast] Update to version 59Vinnie Falco
2017-06-15[beast] Update to version 58Vinnie Falco
2017-06-13[beast] Update to version 56Vinnie Falco
2017-06-12[beast] update to version 55Vinnie Falco
2017-06-11Update Beast package to version 54Vinnie Falco
2017-05-11[beast] Update to v40Vinnie Falco
2017-03-13added beast library portJohn Hruby