aboutsummaryrefslogtreecommitdiff
path: root/ports/wt/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 ```
2020-12-15[wt] Update to 4.5.0 (#15136)Roel Standaert
2020-08-21[wt] Update to 4.4.0 (#13005)Roel Standaert
2020-03-27[wt] Update to 4.2.2 (#10459)quatmax
2020-02-10[many ports] Upgrades to 2020.02.08 (#9986)Robert Schumacher
* [many ports] Upgrades to 2020.02.08 * Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl * Update ci baseline file Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2019-11-22[wt]Upgrade to 4.1.1. (#8903)JackBoosY
2019-06-17[wt] Fix XML file installation path (#6925)wangli28
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-03-05Revert "[wt] Fix absolute paths in installed share/wt/*.cmake files (#5083)" ↵Victor Romero
(#5555) This reverts commit 334eb170b1c243f69bba58ce70ec6b828c8d3a60.
2019-03-05[wt] Fix absolute paths in installed share/wt/*.cmake files (#5083)Todor Prokopov
2019-01-09Updates 2018.12.14Robert Schumacher
2018-12-17Wt Linux fixes (#4927)Todor Prokopov
* [harfbuzz] Fix build on Linux * [cairo] Fix build on Linux * [pango] Fix build on Linux * [wt] Fix build on Linux * [wt] Fix linking with -lcrypto
2018-09-19Upgrades 2018.09.18Robert Schumacher
2018-06-29[wt] Fix missing boost-interprocess dependency.Robert Schumacher
2018-04-19[breakpad][jsonnet][nuklear][parson][thrift][wt][zeromq] UpgradesRobert Schumacher
2018-02-23[wt] UpgradeRobert Schumacher
2017-12-19Update downstream libraries to use modularized boostRobert Schumacher
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-06-09[wt] Fix static builds. Enable sqlite3, postgres, and pango backends.Robert Schumacher
2017-05-03[wt] Update to 3.3.7Robert Schumacher
2017-02-03[wt] Apply upstream patch to fix boost 1.63 compat. Fixes #626.Robert Schumacher
2017-01-24[wt] Suppress reliance on boost autolinkingRobert Schumacher
Fixes #558
2016-10-23Add Wt portStephan Kaiser