aboutsummaryrefslogtreecommitdiff
path: root/ports/wtl
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-23[wtl] Update wtl to 10.0.10320 (#15266)Christian Ullrich
2020-08-06[wtl ] Upgrade wtl to 10.0.10077. (#12688)Christian Ullrich
* [wtl] Update to 10.0.10077. Again. * Port version. * Better version representation. * Update ports/wtl/portfile.cmake * Update ports/wtl/portfile.cmake Update filename Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-07-03[vcpkg_from_sourceforge] Add retry mirror function (2/2) (#12018)Jack·Boos·Yu
2020-06-26[vcpkg] Add vcpkg_from_sourceforge (1/2) (#11899)Jack·Boos·Yu
2020-06-23[wtl] Update to 10.0.10077 (#11893)Christian Ullrich
2020-05-25[VCPKG baseline] Fix many ports (#11559)Jack·Boos·Yu
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-09-04Update WTL to 10.0.9163. (#8005)Christian Ullrich
* Update WTL to 10.0.9163 * Update download path.
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-01-29Upgrade WTL to 10.0.8356. (#5262)chrullrich
2018-05-20[wtl] use https urlForce Charlie
2018-05-16[wtl] Fix capitalization in file copy scriptAlexej Harm
2018-03-12[WTL] Update to 10.0.7336gouranga
2016-10-26[wtl] Mark as header-only libraryAlexander Karatarakis
2016-10-26[wtl] Adding Windows Template LibraryJens Frederich
Signed-off-by: Jens Frederich <jfrederich@gmail.com>