<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/parallel-hashmap, 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>[parallel-hashmap] Update to 1.33 (#19863)</title>
<updated>2021-09-01T18:04:19+00:00</updated>
<author>
<name>AndrewDeanMS</name>
<email>45858683+AndrewDeanMS@users.noreply.github.com</email>
</author>
<published>2021-09-01T18:04:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c283f5748f377a7f4fce81d909d5993994baef1f'/>
<id>c283f5748f377a7f4fce81d909d5993994baef1f</id>
<content type='text'>
* Update parallel-hashmap to version 1.33

* Result or running ./vcpkg x-add-version --all

Co-authored-by: Andrew Dean &lt;Andrew.Dean@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update parallel-hashmap to version 1.33

* Result or running ./vcpkg x-add-version --all

Co-authored-by: Andrew Dean &lt;Andrew.Dean@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel-hashmap] Update parallel-hashmap version (#11420)</title>
<updated>2020-05-19T22:12:29+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2020-05-19T22:12:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=98f80d86f297bdda984e8469f3a95a0e379b448f'/>
<id>98f80d86f297bdda984e8469f3a95a0e379b448f</id>
<content type='text'>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap

* bump parallel-hashmap to latest github release

* Update parallel_hashmap version to 1.32 (current)

* Update CONTROL

* update portfile as requested</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap

* bump parallel-hashmap to latest github release

* Update parallel_hashmap version to 1.32 (current)

* Update CONTROL

* update portfile as requested</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel-hashmap] Update to 1.30 (#9519)</title>
<updated>2020-01-06T19:06:29+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2020-01-06T19:06:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f122800c086036fe5277bfaf260c1e8ef9fe3e9e'/>
<id>f122800c086036fe5277bfaf260c1e8ef9fe3e9e</id>
<content type='text'>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap

* bump parallel-hashmap to latest github release
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap

* bump parallel-hashmap to latest github release
</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel-hashmap] Update to 1.27 (#9152)</title>
<updated>2019-12-02T18:40:43+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2019-12-02T18:40:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=25ef31d00cc2f01acc9673d21e8d152323746770'/>
<id>25ef31d00cc2f01acc9673d21e8d152323746770</id>
<content type='text'>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update parallel_hashmap version

* Update portfile.cmake

* Update CONTROL

* Update portfile.cmake for parallel_hashmap
</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel-hashmap] Update library to 1.24 (#8301)</title>
<updated>2019-09-23T17:40:16+00:00</updated>
<author>
<name>Ehsan</name>
<email>mohammadi.ehsan1994@gmail.com</email>
</author>
<published>2019-09-23T17:40:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8d272fc443c9deac5f273871749cf5a2a54ef6a7'/>
<id>8d272fc443c9deac5f273871749cf5a2a54ef6a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel-hashmap] Update to current 1.23 version and include natvis file. (#6917)</title>
<updated>2019-06-17T17:35:44+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2019-06-17T17:35:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b03dd0714cb81c8e7379ddbc17045a8a346d3e96'/>
<id>b03dd0714cb81c8e7379ddbc17045a8a346d3e96</id>
<content type='text'>

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

</pre>
</div>
</content>
</entry>
<entry>
<title>[many ports] Updates 2019.05.19 (#6524)</title>
<updated>2019-05-22T04:00:24+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2019-05-22T04:00:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=33af90d42af68ef343edb00a69b1e11548a9e2e1'/>
<id>33af90d42af68ef343edb00a69b1e11548a9e2e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[parallel hashmap] increment release version (#5898)</title>
<updated>2019-04-01T18:01:59+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2019-04-01T18:01:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=81448a3035c506064c2bd2f26764505af02795c1'/>
<id>81448a3035c506064c2bd2f26764505af02795c1</id>
<content type='text'>
* update version of package
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update version of package
</pre>
</div>
</content>
</entry>
<entry>
<title>add parallel-hashmap package (#5893)</title>
<updated>2019-04-01T16:55:14+00:00</updated>
<author>
<name>Gregory Popovitch</name>
<email>greg7mdp@gmail.com</email>
</author>
<published>2019-04-01T16:55:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b33e51ab07f53a61fe2e478dcde043501201e516'/>
<id>b33e51ab07f53a61fe2e478dcde043501201e516</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
