<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/date/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>[date] Fix vcpkg_fixup_cmake_targets for mingw (#15994)</title>
<updated>2021-02-03T19:40:02+00:00</updated>
<author>
<name>Long Nguyen</name>
<email>nguyen.long.908132@gmail.com</email>
</author>
<published>2021-02-03T19:40:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e2fc73ec5c6d6e30dd6ea56312c49d7aa3fdb744'/>
<id>e2fc73ec5c6d6e30dd6ea56312c49d7aa3fdb744</id>
<content type='text'>
* [date] Fix vcpkg_fixup_cmake_targets for mingw

* [vcpkg baseline] Update date port-version

* [date] Tweak Windows detection

Co-authored-by: Alexander Neumann &lt;30894796+Neumann-A@users.noreply.github.com&gt;

* [vcpkg baseline] Update date port-version again

Co-authored-by: Alexander Neumann &lt;30894796+Neumann-A@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [date] Fix vcpkg_fixup_cmake_targets for mingw

* [vcpkg baseline] Update date port-version

* [date] Tweak Windows detection

Co-authored-by: Alexander Neumann &lt;30894796+Neumann-A@users.noreply.github.com&gt;

* [vcpkg baseline] Update date port-version again

Co-authored-by: Alexander Neumann &lt;30894796+Neumann-A@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[date] Fix config.cmake and usage (#12739)</title>
<updated>2020-08-07T18:44:42+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-08-07T18:44:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6718a4a703607ce42cd587353b1151688e7ade0b'/>
<id>6718a4a703607ce42cd587353b1151688e7ade0b</id>
<content type='text'>
* [date] Fix config.cmake and usage

* Correct fix

* Remove wrapper and usage</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [date] Fix config.cmake and usage

* Correct fix

* Remove wrapper and usage</pre>
</div>
</content>
</entry>
<entry>
<title>[date] Update to 3.0.0 (#11968)</title>
<updated>2020-06-23T20:37:41+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-06-23T20:37:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2c280eed4296da5b512987e03c5abb2485e0438f'/>
<id>2c280eed4296da5b512987e03c5abb2485e0438f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[date] update to latest version</title>
<updated>2019-11-21T08:28:56+00:00</updated>
<author>
<name>Alexej Harm</name>
<email>alexej.h@xiphos.de</email>
</author>
<published>2019-11-14T06:14:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b8f5c26e85e931224065e873ee8d06b13e89906b'/>
<id>b8f5c26e85e931224065e873ee8d06b13e89906b</id>
<content type='text'>
[date] added cmake 3.14 backwards compatibility patch
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[date] added cmake 3.14 backwards compatibility patch
</pre>
</div>
</content>
</entry>
<entry>
<title>[date] Add official CMake targets support (#8151)</title>
<updated>2019-09-17T18:39:29+00:00</updated>
<author>
<name>Alexej Harm</name>
<email>alexej.h@xiphos.de</email>
</author>
<published>2019-09-17T18:39:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d4ac0789529a6a5701e33052506d5fb381113d8f'/>
<id>d4ac0789529a6a5701e33052506d5fb381113d8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[date] fix issue 6530 (#7399)</title>
<updated>2019-07-24T17:20:15+00:00</updated>
<author>
<name>Phoebe</name>
<email>925731795@qq.com</email>
</author>
<published>2019-07-24T17:20:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=02f5ef72a2f064dadcb726cdcfdeabb4e0f11cc0'/>
<id>02f5ef72a2f064dadcb726cdcfdeabb4e0f11cc0</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>Vcpkg update Howard Hinnant [date] port to latest (#6501)</title>
<updated>2019-05-17T18:13:22+00:00</updated>
<author>
<name>muriukip</name>
<email>50638552+muriukip@users.noreply.github.com</email>
</author>
<published>2019-05-17T18:13:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0e7d61f18b47be33bd758acb8279164b2e494207'/>
<id>0e7d61f18b47be33bd758acb8279164b2e494207</id>
<content type='text'>
* Update vcpkg to include latest version of HowardHinnant-date code. To
fix windowsZones.xml URL change.

* [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from
HowardHinnant/date

* Revert "[date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from"

This reverts commit 1d71b07aec57d11f07641ff2b2b3c65a717b4ad4.

* [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from HowardHinnant/date
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update vcpkg to include latest version of HowardHinnant-date code. To
fix windowsZones.xml URL change.

* [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from
HowardHinnant/date

* Revert "[date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from"

This reverts commit 1d71b07aec57d11f07641ff2b2b3c65a717b4ad4.

* [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from HowardHinnant/date
</pre>
</div>
</content>
</entry>
<entry>
<title>[date] Update the version to the latest commit. (#6131)</title>
<updated>2019-04-29T09:42:35+00:00</updated>
<author>
<name>NancyLi1013</name>
<email>46708020+NancyLi1013@users.noreply.github.com</email>
</author>
<published>2019-04-29T09:42:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bed4a4c9c01b6e6bb5fcdd8fe809d7302bacefae'/>
<id>bed4a4c9c01b6e6bb5fcdd8fe809d7302bacefae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
