<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/dimcli, branch master</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>[dimcli/draco/refprop-headers/coolprop] Update version (#13679)</title>
<updated>2020-09-28T00:59:45+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-09-28T00:59:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=460b6d5f20c46385f323a5ccc436e8d85059e1b4'/>
<id>460b6d5f20c46385f323a5ccc436e8d85059e1b4</id>
<content type='text'>
* [manyports] Update version 5

* [coolprop] Update version

* Update CONTROL

* Update ports/refprop-headers/CONTROL

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;
Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [manyports] Update version 5

* [coolprop] Update version

* Update CONTROL

* Update ports/refprop-headers/CONTROL

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;
Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] Upgrade to version 5.0.1</title>
<updated>2019-09-03T02:53:38+00:00</updated>
<author>
<name>wangli28</name>
<email>wangli28@beyondsoft.com</email>
</author>
<published>2019-09-03T02:53:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d9c301bd3f6e72954a676d048aa6e9a42dfada74'/>
<id>d9c301bd3f6e72954a676d048aa6e9a42dfada74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] Update library to 5.0.0 (#7785)</title>
<updated>2019-08-20T17:24:28+00:00</updated>
<author>
<name>Ehsan</name>
<email>mohammadi.ehsan1994@gmail.com</email>
</author>
<published>2019-08-20T17:24:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=573bebe6b76d6efc88bf3652ca9b1e62f0f3f85b'/>
<id>573bebe6b76d6efc88bf3652ca9b1e62f0f3f85b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] Fix build error C2220 (#7651)</title>
<updated>2019-08-13T21:48:21+00:00</updated>
<author>
<name>Lily</name>
<email>47812810+wangli28@users.noreply.github.com</email>
</author>
<published>2019-08-13T21:48:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e6a21e1b421e8231f3eb46d8af574a990b5da8c8'/>
<id>e6a21e1b421e8231f3eb46d8af574a990b5da8c8</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>Updates 2018.12.14</title>
<updated>2019-01-09T20:27:19+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2018-12-15T01:00:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bb1bb1c94a72b891883efa6522791620ef3bbc0f'/>
<id>bb1bb1c94a72b891883efa6522791620ef3bbc0f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] Update to 4.0.1 (#4549)</title>
<updated>2018-10-25T22:27:36+00:00</updated>
<author>
<name>Glen Knowles</name>
<email>gknowles@ieee.org</email>
</author>
<published>2018-10-25T22:27:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8174938d508e052f20fc0fb0e2d258a21d9f1d84'/>
<id>8174938d508e052f20fc0fb0e2d258a21d9f1d84</id>
<content type='text'>
* [dimcli] update to 3.1.1

* [dimcli] Update to 4.0.1

* [dimcli] Remove quotes around project name
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [dimcli] update to 3.1.1

* [dimcli] Update to 4.0.1

* [dimcli] Remove quotes around project name
</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] Fix Windows builds. Avoid writing to source directory.</title>
<updated>2018-06-27T05:31:25+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2018-06-27T05:31:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=9e9fc7a9b357c94b265a04ddeffdcb7f57b6cb84'/>
<id>9e9fc7a9b357c94b265a04ddeffdcb7f57b6cb84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[dimcli] update to 3.1.1</title>
<updated>2017-11-13T08:00:35+00:00</updated>
<author>
<name>gknowles</name>
<email>gknowles@ieee.org</email>
</author>
<published>2017-11-11T07:46:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8bf974b0add21961b85bd2c4c47b01db6655a119'/>
<id>8bf974b0add21961b85bd2c4c47b01db6655a119</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
