Commit Graph

8 Commits

Author SHA1 Message Date
Koby Kahane
202ef0de5d
[re2] update to 2023-07-01 (#32595) 2023-07-26 10:49:15 -07:00
jim wang
6b8fd05982
[re2] update to 2023-02-01 (#29747)
* [re2] update to 2023-02-01

* [re2] update to 2023-02-01

* [re2] update to 2023-02-01

* [re2] update to 2023-02-01
2023-02-21 08:09:59 -08:00
chausner
883a437946
[re2] Update to 2022-12-01 (#29098)
* Update re2 to 2022-12-01

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2023-01-23 16:01:32 -08:00
JulZimmermann
e82778a710
[re2] set license (#28259)
* set license in re2

* run x-add-version

Co-authored-by: Julian Zimmermann <julian.zimmermann@gti.de>
2022-12-13 19:39:25 -08:00
chausner
3c4257b9af
[re2] Update to 2021-11-01 (#21373)
* Update re2 to 2021-11-01

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-11-15 16:33:47 -08:00
NancyLi1013
1cea69e191
[re2] Fix hash as lowercase (#21050) 2021-10-29 01:22:51 -07:00
chausner
481a0cde8c
[re2] Update to 2021-09-01 (#20349)
* Update re2 to 2021-09-01

* Update CI baseline

* update vcpkg.json

* update version

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-27 20:52:24 -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