Commit Graph

8 Commits

Author SHA1 Message Date
Aleksi Sapon
7176d94a0b
[date] Update to HEAD versioning (#39465) 2024-06-26 21:14:27 -07:00
autoantwort
9594d48ffa
[date] no uwp (#33815) 2023-09-18 09:19:24 -07:00
Weihang Ding
c26975658a
[date] Fix installation (#32772)
* [date] Fix installation

* update version database
2023-07-26 11:06:59 -07:00
JonLiu1993
d751358003
[date] set correct license and use vcpkg_install_copyright() (#32549) 2023-07-13 11:36:02 -07:00
JonLiu1993
1143d75d55
[date] Fix uninitialized values (#23710)
* [date] Fix uninitialized values

* update version

* add notes for patch

* update version
2022-04-05 11:18:28 -07:00
Max
febf337ad8
[date] update sha to be lowercase for windows installs (#21922)
* [date] update sha to be lowercase for windows installs

* add version

* update version

Co-authored-by: Max Christy <mchristy@precisionplanting.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-09 17:01:00 -08:00
chausner
d91e4ed055
[date] Update to 3.0.1 (#20481)
* Update date to 3.0.1

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-05 16:16:05 -07: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