| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-09-09 | Bulk 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-02-26 | [libwebm] apply upstream changes to support Android NDK r15b and later (#16398) | Jesse Towner | |
| * [libwebm] upstream changes for Android NDK r15b This applies upstream changes from master to libwebm 1.0.0.27 to support building with Android NDK r15b and later up through Android NDK r23 beta. Commits taken from https://chromium.googlesource.com/webm/libwebm master branch: 0ae757087f5e6eb01dfea16cc09205b2425cfb74 Fix android build failure with NDK r15b. 90967863b2f67962f52595a26abb8e4fa4105d44 mkvparser: fix float conversion warning * [libwebm] update control file * [libwebm] update versions * Update ports/libwebm/CONTROL Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update versions/baseline.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update versions/l-/libwebm.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update versions/baseline.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [libpx] use file INSTALL instead of COPY & RENAME * [libvpx] update versions Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> | |||
| 2020-10-28 | Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) | Billy O'Neal | |
| 2019-06-15 | [WIP] Add a Homepage URL entry for vcpkg ports (#2933) | pravic | |
| * [vcpkg] Add "Homepage" field to the CONTROL files. | |||
| 2019-05-26 | Added debug postfix in libwebm and reverted debug files rename. (#6626) | Krzysztof Kawa | |
| 2019-03-04 | [libwebm] Fix no-postfix in debug for dll/lib/pdb (#5516) | LarryIII | |
| 2018-10-25 | [libwebm] Avoid building executables | Robert Schumacher | |
| 2017-09-09 | vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵ | Alexander Karatarakis | |
| libs (/Z7) | |||
| 2017-03-15 | [libwebm] add version 1.0.0.27 | Mikhail Paulyshka | |
