<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/azure-macro-utils-c/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>[vcpkg, azure-macro-utils-c] Fix SHA and add FILE_DISAMBIGUATOR for vcpkg_from_github (#14343)</title>
<updated>2020-11-06T01:25:46+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-11-06T01:25:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f7b9fc0b3c0a1ec21063ef3670ecf8fa05e70806'/>
<id>f7b9fc0b3c0a1ec21063ef3670ecf8fa05e70806</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update C port files (#12013)</title>
<updated>2020-06-18T22:23:54+00:00</updated>
<author>
<name>Tye Tinsley</name>
<email>44010845+ttins@users.noreply.github.com</email>
</author>
<published>2020-06-18T22:23:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=05c7e2c7de8adf5da0a9230666852115edc39610'/>
<id>05c7e2c7de8adf5da0a9230666852115edc39610</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Azure-IoT-Sdk for C LTS release 2020-02-04 (lts_02_2020)</title>
<updated>2020-02-04T23:03:19+00:00</updated>
<author>
<name>Ewerton Scaboro da Silva</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2020-02-04T23:03:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f6023255d1cffc0527d3690bd74afb915eaff6f8'/>
<id>f6023255d1cffc0527d3690bd74afb915eaff6f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Azure-IoT-Sdk for C release 2020-01-22 (#9805)</title>
<updated>2020-01-31T19:42:32+00:00</updated>
<author>
<name>ewertons</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2020-01-31T19:42:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7aebb481085de7387f8a9975652c26f9053f66df'/>
<id>7aebb481085de7387f8a9975652c26f9053f66df</id>
<content type='text'>
* Azure-IoT-Sdk for C release 2020-01-22

* [azure-c-shared-utility] Patch conditionals in azure_c_shared_utilityFunctions.cmake

Co-authored-by: Victor Romero &lt;romerosanchezv@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Azure-IoT-Sdk for C release 2020-01-22

* [azure-c-shared-utility] Patch conditionals in azure_c_shared_utilityFunctions.cmake

Co-authored-by: Victor Romero &lt;romerosanchezv@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[azure-iot-sdk-c] Update macro-utils and umock-c to differentiate master and public-preview installations (#9117)</title>
<updated>2019-12-10T19:11:46+00:00</updated>
<author>
<name>ewertons</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2019-12-10T19:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=837fcab0ef8395b6da130c04c81f640d96669276'/>
<id>837fcab0ef8395b6da130c04c81f640d96669276</id>
<content type='text'>
* [azure-iot-sdk-c] Update macro-utils and umock-c to differentiate master and public-preview installations

* [azure-c-shared-utility]Terminate the build process when building uwp.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [azure-iot-sdk-c] Update macro-utils and umock-c to differentiate master and public-preview installations

* [azure-c-shared-utility]Terminate the build process when building uwp.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "[azure] Update azure-iot-sdk-c for 07/2019 LTS refresh (#8686)" (#8731)</title>
<updated>2019-10-24T22:47:53+00:00</updated>
<author>
<name>ewertons</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2019-10-24T22:47:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c258d0947de8bfb0a41b792958ef3d5f8f199bab'/>
<id>c258d0947de8bfb0a41b792958ef3d5f8f199bab</id>
<content type='text'>
This reverts commit bc11674db1f109bd72d2bc4c0786c6ca078c4cf0.

The LTS release broke the regular port of azure-iot-sdk-c.
This will be fixed and re-published.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit bc11674db1f109bd72d2bc4c0786c6ca078c4cf0.

The LTS release broke the regular port of azure-iot-sdk-c.
This will be fixed and re-published.</pre>
</div>
</content>
</entry>
<entry>
<title>[azure] Update azure-iot-sdk-c for 07/2019 LTS refresh (#8686)</title>
<updated>2019-10-21T22:18:33+00:00</updated>
<author>
<name>ewertons</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2019-10-21T22:18:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bc11674db1f109bd72d2bc4c0786c6ca078c4cf0'/>
<id>bc11674db1f109bd72d2bc4c0786c6ca078c4cf0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[azure] Update azure-iot-sdk-c for release of 2019-10-07</title>
<updated>2019-10-09T16:01:16+00:00</updated>
<author>
<name>Ewerton Scaboro da Silva</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2019-10-08T17:30:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3a619c1af8c8a4e9948a37710fa64cb03d5329bd'/>
<id>3a619c1af8c8a4e9948a37710fa64cb03d5329bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[azure-iot] vcpkg update for master/public-preview release (#7791)</title>
<updated>2019-08-20T21:54:36+00:00</updated>
<author>
<name>ewertons</name>
<email>ewertons@microsoft.com</email>
</author>
<published>2019-08-20T21:54:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bad7798afedadadc34c3f18244f88c53d294b0dc'/>
<id>bad7798afedadadc34c3f18244f88c53d294b0dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
