Commit Graph

12 Commits

Author SHA1 Message Date
SportsDataPlayground
ced267328c
[wil] Update to latest v1.0.231028.1 version (#35099)
* [wil] Update to latest v1.0.231028.1 version

See https://github.com/microsoft/wil/releases/tag/v1.0.231028.1 for details

* Update wil.json
2023-11-15 15:46:34 -08:00
Theodore Tsirpanis
f7dc9c8f5e
[wil] Configure only in release mode. (#34686)
* [wil] Configure only in release mode.

* Update version database.
2023-10-24 09:20:24 -07:00
Duncan Horn
875d68a4c5
update WIL to 2023-08-24 (#33368) 2023-08-25 12:09:52 -07:00
JonLiu1993
eecae38da7
[wil] Update to v1.0.230411.1 (#30915)
* [wil] Update to v1.0.230411.1

* update version
2023-04-17 19:34:57 -07:00
Duncan Horn
52388affa0
[WIL] Update to 2023-02-02 (#29399)
* Update WIL port

* Running new command I previously didn't know about

* Update the wil port

* Update the wil port

* Update the versions file
2023-02-02 19:57:29 -08:00
Silent
8f229feaf1
[wil] Update to v1.0.220914.1 (#27185)
* [wil] Update to v1.0.220914.1

* Add version
2022-10-14 16:31:24 -07:00
Charles Milette
1695bf690b
[wil] update (#22192)
* [wil] update

* [wil] update versions
2021-12-28 15:05:09 -08:00
Jack·Boos·Yu
1ac3a7f078
[wil] Fix usage (#21151)
* [wil] Fix usage

* version

* Apply suggestions

* version
2021-12-13 11:47:30 -08:00
Billy O'Neal
b295670e4b
Bulk convert control files. (#19986)
```
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-09-09 01:24:04 -07:00
Duncan Horn
7f3e714768
[wil] Update wil to the latest commit (#19343)
* Update WIL port

* Running new command I previously didn't know about
2021-08-05 03:03:51 -07:00
anaaru
f5bfe6dc18
[wil] Updating WIL version to match its nuget package version (#16575)
* [wil] Updating WIL version to match its nuget package version

* Removing port version from CONTROL file

* Revert "Removing port version from CONTROL file"

Reverting because PR tests are failing.

This reverts commit 28ffcba04b.

* Updating baseline.json and w-/wil.json

* update version

* modify portfile.cmake

* update version

Co-authored-by: Anand Arumugam <anand.arumug@gmail.com>
Co-authored-by: Anand Arumugam <anaaru@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-03-10 13:29:45 -06:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00