<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/skyr-url, branch aws-lambda-cpp</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Changed version number to 1.13.0 (#13617)</title>
<updated>2020-09-21T03:08:34+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-09-21T03:08:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=23933f367153af8f0490a763a8139d19f793aaa9'/>
<id>23933f367153af8f0490a763a8139d19f793aaa9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Changed version number to 1.12.0 (#12214)</title>
<updated>2020-07-06T19:53:29+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-07-06T19:53:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=63cd5bf5600874c668560afaae7875a5b77259d0'/>
<id>63cd5bf5600874c668560afaae7875a5b77259d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Updated version number of skyr-url (#11911)</title>
<updated>2020-06-18T23:27:17+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-06-18T23:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ee17a685087a6886e5681e355d36cd784f0dd2c8'/>
<id>ee17a685087a6886e5681e355d36cd784f0dd2c8</id>
<content type='text'>
* [skyr-url] Updated version number of skyr-url

* Updated HEAD_REF value</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [skyr-url] Updated version number of skyr-url

* Updated HEAD_REF value</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Changed version number for skyr-url (#11774)</title>
<updated>2020-06-05T18:59:49+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-06-05T18:59:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=957d9072dac70a6349700543bf9552042c4a56fa'/>
<id>957d9072dac70a6349700543bf9552042c4a56fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Changed version number to 1.9.0 (#11568)</title>
<updated>2020-05-27T04:01:54+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-05-27T04:01:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b08757ea9a74f2857e7cecdf5a1fe74b9a1b7a06'/>
<id>b08757ea9a74f2857e7cecdf5a1fe74b9a1b7a06</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Update skyr-url to 1.7.5 (#11153)</title>
<updated>2020-05-08T06:31:49+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-05-08T06:31:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=263ba43c6d8136d883d6ab253389e1695fed706c'/>
<id>263ba43c6d8136d883d6ab253389e1695fed706c</id>
<content type='text'>
* [skyr-url] Changed skyr-url version number to 1.7.5

* [skyr-url] Updated Git tag for fixes to CI breakages</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [skyr-url] Changed skyr-url version number to 1.7.5

* [skyr-url] Updated Git tag for fixes to CI breakages</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Updated port to use version 1.7.3 (#10954)</title>
<updated>2020-04-23T20:46:57+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-04-23T20:46:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6c13c24d44e94a1a5d63160a1a1359795381f00a'/>
<id>6c13c24d44e94a1a5d63160a1a1359795381f00a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skyr-url] Bump version to 1.7.0 (#10868)</title>
<updated>2020-04-21T20:26:20+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-04-21T20:26:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=1c3cab4405003ea8a057d8eb37c4824644901197'/>
<id>1c3cab4405003ea8a057d8eb37c4824644901197</id>
<content type='text'>
* Updated version of skyr-url

* Applied requested change for PR</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Updated version of skyr-url

* Applied requested change for PR</pre>
</div>
</content>
</entry>
<entry>
<title>Bumped version number of skyr-url because of fix to CI error</title>
<updated>2020-04-07T19:25:35+00:00</updated>
<author>
<name>Glyn Matthews</name>
<email>glyn.matthews@gmail.com</email>
</author>
<published>2020-04-07T19:25:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=495dc65823fd297f7c08611e1495ef0ea0349b8b'/>
<id>495dc65823fd297f7c08611e1495ef0ea0349b8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
