<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/ecsutil/CONTROL, 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>[many ports] 2019.09.14 Updates (#13536)</title>
<updated>2020-10-13T20:17:32+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2020-10-13T20:17:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=75bd2efe0dce862dfa025209b8cecc61a00a1852'/>
<id>75bd2efe0dce862dfa025209b8cecc61a00a1852</id>
<content type='text'>
* [many ports] 2019.09.14 Updates

* Revert failure ports

* Revert failure ports

* Revert failure ports

* [urdfdom] Fix find dependency console_bridge

* Revert failure ports

* [devil] Compatible with jasper 2.0.20

* [devil] Refix compatible with jasper functions declaration on different os

* Update ports/alembic/CONTROL

Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;

* Revert failure ports wangle

* [azure-kinect-sensor-sdk] Fix build with matroska 1.6.2

* Revert failure ports

* Revert failure ports

* [urdfdom-headers] Fix include path in config.cmake file

* upload patch

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5-imageformats] Fix missing include math.h

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5] Fix adding option PATCHES and other options when using qt_submodule_installation

* Remove updated ports version

* Commit suggestions

* [libideviceactivation] revert

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;
Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [many ports] 2019.09.14 Updates

* Revert failure ports

* Revert failure ports

* Revert failure ports

* [urdfdom] Fix find dependency console_bridge

* Revert failure ports

* [devil] Compatible with jasper 2.0.20

* [devil] Refix compatible with jasper functions declaration on different os

* Update ports/alembic/CONTROL

Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;

* Revert failure ports wangle

* [azure-kinect-sensor-sdk] Fix build with matroska 1.6.2

* Revert failure ports

* Revert failure ports

* [urdfdom-headers] Fix include path in config.cmake file

* upload patch

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5-imageformats] Fix missing include math.h

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5] Fix adding option PATCHES and other options when using qt_submodule_installation

* Remove updated ports version

* Commit suggestions

* [libideviceactivation] revert

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;
Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[ecsutil] Update ECSUtil v1.0.7.10 (#13990)</title>
<updated>2020-10-12T19:03:26+00:00</updated>
<author>
<name>jimmy hu</name>
<email>5549662+Jimmy-Hu@users.noreply.github.com</email>
</author>
<published>2020-10-12T19:03:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=45fa57c276f894a0563abb854e319a88ddb7105c'/>
<id>45fa57c276f894a0563abb854e319a88ddb7105c</id>
<content type='text'>
[ecsutil] Update ECSUtil v1.0.7.10</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ecsutil] Update ECSUtil v1.0.7.10</pre>
</div>
</content>
</entry>
<entry>
<title>[ecsutil] Update ECSUtil v1.0.7.9 (#10258)</title>
<updated>2020-03-11T00:23:25+00:00</updated>
<author>
<name>bobk2824</name>
<email>13680319+bobk2824@users.noreply.github.com</email>
</author>
<published>2020-03-11T00:23:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ffdfeef89ca9b84b91aa04db3a19aa8842643be3'/>
<id>ffdfeef89ca9b84b91aa04db3a19aa8842643be3</id>
<content type='text'>
* Update ECSUtil v1.0.7.9

* Complete PR requested changes
remove: include(vcpkg_common_functions)
use: vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX")

* added: Supports: windows&amp;(x64|x86)

Co-authored-by: Bob Kast &lt;bob.kast@emc.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update ECSUtil v1.0.7.9

* Complete PR requested changes
remove: include(vcpkg_common_functions)
use: vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX")

* added: Supports: windows&amp;(x64|x86)

Co-authored-by: Bob Kast &lt;bob.kast@emc.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[ecsuti] Update version (#8885)</title>
<updated>2019-12-03T01:21:18+00:00</updated>
<author>
<name>Cheney Wang</name>
<email>38240633+Cheney-W@users.noreply.github.com</email>
</author>
<published>2019-12-03T01:21:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=09c5fd5e1b686a73e510773448cb3fc09e5e213e'/>
<id>09c5fd5e1b686a73e510773448cb3fc09e5e213e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update for ECSUtil 1.0.7.3 (#8253)</title>
<updated>2019-09-19T22:05:23+00:00</updated>
<author>
<name>bobk2824</name>
<email>13680319+bobk2824@users.noreply.github.com</email>
</author>
<published>2019-09-19T22:05:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3bdc5d0c2fdf23aa1214cef55d31b43ac62a17c0'/>
<id>3bdc5d0c2fdf23aa1214cef55d31b43ac62a17c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ECSUtil] update library to v1.0.7.2 (#7427)</title>
<updated>2019-07-25T23:23:53+00:00</updated>
<author>
<name>bobk2824</name>
<email>13680319+bobk2824@users.noreply.github.com</email>
</author>
<published>2019-07-25T23:23:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8900146533f8e38266ef89766a2bbacffcb67836'/>
<id>8900146533f8e38266ef89766a2bbacffcb67836</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[qt5-winextras, ecsutil, soundtouch] Fix build-depends (#7298)</title>
<updated>2019-07-17T23:00:43+00:00</updated>
<author>
<name>wangli28</name>
<email>47812810+wangli28@users.noreply.github.com</email>
</author>
<published>2019-07-17T23:00:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8ac43f19f337db8aafd8187b9b7968e0655264a7'/>
<id>8ac43f19f337db8aafd8187b9b7968e0655264a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade vcpkg to ECSUtil 1.0.6.1 (#6381)</title>
<updated>2019-05-09T22:15:17+00:00</updated>
<author>
<name>bobk2824</name>
<email>13680319+bobk2824@users.noreply.github.com</email>
</author>
<published>2019-05-09T22:15:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f0d575c2f3c69abf161692b04eaf843bd3bf951f'/>
<id>f0d575c2f3c69abf161692b04eaf843bd3bf951f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>v1.0.3.1</title>
<updated>2019-01-10T22:12:29+00:00</updated>
<author>
<name>Bob Kast</name>
<email>bob.kast@emc.com</email>
</author>
<published>2019-01-10T22:12:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b85954bc3be83eb3dcaea7ae7e70d107ea37d1c0'/>
<id>b85954bc3be83eb3dcaea7ae7e70d107ea37d1c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
