<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/celero, 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>[celero] Updated to Celero v2.8.0 (#16802)</title>
<updated>2021-04-02T21:18:13+00:00</updated>
<author>
<name>John Farrier</name>
<email>3240972+DigitalInBlue@users.noreply.github.com</email>
</author>
<published>2021-04-02T21:18:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=030cfaa24de9ea1bbf0a4d9c615ce7312ba77af1'/>
<id>030cfaa24de9ea1bbf0a4d9c615ce7312ba77af1</id>
<content type='text'>
* [celero] Updated to Celero v2.8.0

* [celero] Improving static linking support in VCPKG.

Celero issue #154 is tracking a fix.
https://github.com/DigitalInBlue/Celero/issues/154

* [celero] Updated to v2.8.1

* [celero] Updated version for VCPKG.

* [celero] Updates to better support VCPKG.

* [celero] Updated versions.

* Update celero.json

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [celero] Updated to Celero v2.8.0

* [celero] Improving static linking support in VCPKG.

Celero issue #154 is tracking a fix.
https://github.com/DigitalInBlue/Celero/issues/154

* [celero] Updated to v2.8.1

* [celero] Updated version for VCPKG.

* [celero] Updates to better support VCPKG.

* [celero] Updated versions.

* Update celero.json

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[celero] Updated to v2.7.2 (#16446)</title>
<updated>2021-03-02T00:07:30+00:00</updated>
<author>
<name>John Farrier</name>
<email>3240972+DigitalInBlue@users.noreply.github.com</email>
</author>
<published>2021-03-02T00:07:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b554d3ad08824800c72776af5e2ad9d6533815f9'/>
<id>b554d3ad08824800c72776af5e2ad9d6533815f9</id>
<content type='text'>
* [celero] Updated to v2.7.2

* [celero] Updated Versions file.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [celero] Updated to v2.7.2

* [celero] Updated Versions file.</pre>
</div>
</content>
</entry>
<entry>
<title>[celero] Fix some macros (#10159)</title>
<updated>2020-02-29T06:14:37+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-02-29T06:14:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=31ce75e4ae82c4c004fc7495ab68b441eb547a0c'/>
<id>31ce75e4ae82c4c004fc7495ab68b441eb547a0c</id>
<content type='text'>
WIN32 -&gt; _WIN32, and CELERO_STATIC -&gt; 1</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
WIN32 -&gt; _WIN32, and CELERO_STATIC -&gt; 1</pre>
</div>
</content>
</entry>
<entry>
<title>[celero] Updated to v2.6.0 (#8646)</title>
<updated>2019-10-18T20:20:06+00:00</updated>
<author>
<name>John Farrier</name>
<email>3240972+DigitalInBlue@users.noreply.github.com</email>
</author>
<published>2019-10-18T20:20:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ff9a7c8f54be4e21fe9187c76478e34beeba5014'/>
<id>ff9a7c8f54be4e21fe9187c76478e34beeba5014</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[WIP] Add a Homepage URL entry for vcpkg ports (#2933)</title>
<updated>2019-06-15T23:54:47+00:00</updated>
<author>
<name>pravic</name>
<email>ehysta@gmail.com</email>
</author>
<published>2019-06-15T23:54:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad'/>
<id>18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad</id>
<content type='text'>
* [vcpkg] Add "Homepage" field to the CONTROL files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [vcpkg] Add "Homepage" field to the CONTROL files.</pre>
</div>
</content>
</entry>
<entry>
<title>Celero: Update to v2.5.0 release (#6845)</title>
<updated>2019-06-11T00:25:24+00:00</updated>
<author>
<name>Mateusz Łoskot</name>
<email>mateusz@loskot.net</email>
</author>
<published>2019-06-11T00:25:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2e9ac229212bf7927d9e77a2e9726f79b9303ae8'/>
<id>2e9ac229212bf7927d9e77a2e9726f79b9303ae8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[celero] Revert changes in c6db2c880a064b29e0b38eda29f19510235fb4c9</title>
<updated>2019-01-22T23:28:35+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2019-01-22T23:28:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c646d30a71e20d62a75080779441379431e06cd4'/>
<id>c646d30a71e20d62a75080779441379431e06cd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updates 2019.01.09</title>
<updated>2019-01-18T22:08:49+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2019-01-09T20:31:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c6db2c880a064b29e0b38eda29f19510235fb4c9'/>
<id>c6db2c880a064b29e0b38eda29f19510235fb4c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update release version or commit to latest for below ports (#4957)</title>
<updated>2018-12-18T00:44:08+00:00</updated>
<author>
<name>Cheney Wang</name>
<email>38240633+Cheney-W@users.noreply.github.com</email>
</author>
<published>2018-12-18T00:44:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c094d3133c0b7776c74e1463d64cc079c9960068'/>
<id>c094d3133c0b7776c74e1463d64cc079c9960068</id>
<content type='text'>
* [botan][caf][celero][docopt][glbinding][nanodbc][sfgui]Update release version or commit to latest

* [sfml] Add find_dependency(Freetype)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [botan][caf][celero][docopt][glbinding][nanodbc][sfgui]Update release version or commit to latest

* [sfml] Add find_dependency(Freetype)
</pre>
</div>
</content>
</entry>
</feed>
