<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/openmvs, 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>[OpenMVS] restore deprecated cmake scripts for configure, build &amp; fixup targets (#20422)</title>
<updated>2021-10-07T03:57:42+00:00</updated>
<author>
<name>Stefano Sinigardi</name>
<email>stesinigardi@hotmail.com</email>
</author>
<published>2021-10-07T03:57:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b1e54e881bf317f5ce3b58020a8e53a5a4c3ad19'/>
<id>b1e54e881bf317f5ce3b58020a8e53a5a4c3ad19</id>
<content type='text'>
* [OpenMVS] restore deprecated cmake scripts

* [OpenMVS] fix references

* switch back to vcpkg_cmake_*

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [OpenMVS] restore deprecated cmake scripts

* [OpenMVS] fix references

* switch back to vcpkg_cmake_*

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[openmvs] Update to 1.1.1 (#20373)</title>
<updated>2021-09-28T18:50:35+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-28T18:50:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bc503ddb8b00b7fb8ac83b8d8772c0bb1dc9d8e0'/>
<id>bc503ddb8b00b7fb8ac83b8d8772c0bb1dc9d8e0</id>
<content type='text'>
* Update openmvs to 1.1.1

* Update CI baseline

* Update patch

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@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>
* Update openmvs to 1.1.1

* Update CI baseline

* Update patch

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[boost] update to 1.77.0 (#19556)</title>
<updated>2021-09-28T00:12:39+00:00</updated>
<author>
<name>Yury Bura</name>
<email>yurybura@gmail.com</email>
</author>
<published>2021-09-28T00:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cc471dc0f59b7b2066d6172c2893419412327a7a'/>
<id>cc471dc0f59b7b2066d6172c2893419412327a7a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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>[OpenMVS] fix OpenMP feature on linux for downstream projects (#13330)</title>
<updated>2020-09-28T01:50:20+00:00</updated>
<author>
<name>Stefano Sinigardi</name>
<email>stesinigardi@hotmail.com</email>
</author>
<published>2020-09-28T01:50:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ed26fc681fc0d154036199d36e1f8d9ba88b0048'/>
<id>ed26fc681fc0d154036199d36e1f8d9ba88b0048</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[OpenMVS] add missing include directories for downstream projects (#13233)</title>
<updated>2020-08-31T16:19:43+00:00</updated>
<author>
<name>Stefano Sinigardi</name>
<email>stesinigardi@hotmail.com</email>
</author>
<published>2020-08-31T16:19:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=75d1ba664f6d22a2afd4f6837ecfae17da1a41f4'/>
<id>75d1ba664f6d22a2afd4f6837ecfae17da1a41f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[OpenMVG/OpenMVS] fix tools (#12229)</title>
<updated>2020-08-28T05:13:05+00:00</updated>
<author>
<name>Stefano Sinigardi</name>
<email>stesinigardi@hotmail.com</email>
</author>
<published>2020-08-28T05:13:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0a506f7c5e7ecc85893855fcd6bf3ace96d590ae'/>
<id>0a506f7c5e7ecc85893855fcd6bf3ace96d590ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[openmvs] use project install folder (#10265) (#10291)</title>
<updated>2020-03-04T18:15:30+00:00</updated>
<author>
<name>nicole mazzuca</name>
<email>mazzucan@outlook.com</email>
</author>
<published>2020-03-04T18:15:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=39d22e2c999ff9ae0154a4681bb0ffbb344a3ac6'/>
<id>39d22e2c999ff9ae0154a4681bb0ffbb344a3ac6</id>
<content type='text'>
* [openmvs] use project install folder (#10265)

* update scripts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [openmvs] use project install folder (#10265)

* update scripts
</pre>
</div>
</content>
</entry>
<entry>
<title>[openmvs] update to v1.1 (#10110)</title>
<updated>2020-02-29T06:31:23+00:00</updated>
<author>
<name>cDc</name>
<email>cdc.seacave@gmail.com</email>
</author>
<published>2020-02-29T06:31:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=57c7de7f24d8571c2423676e8121c26adb04ed8d'/>
<id>57c7de7f24d8571c2423676e8121c26adb04ed8d</id>
<content type='text'>
* update openmvs

* update version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update openmvs

* update version
</pre>
</div>
</content>
</entry>
<entry>
<title>[openmvs] Update to 1.0.1 (#9563)</title>
<updated>2020-01-10T18:40:42+00:00</updated>
<author>
<name>cDc</name>
<email>cdc.seacave@gmail.com</email>
</author>
<published>2020-01-10T18:40:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3b5c2ec03e8fc8864c4c259607e3ad1edc8a900e'/>
<id>3b5c2ec03e8fc8864c4c259607e3ad1edc8a900e</id>
<content type='text'>
* [openmvs] update

* fix windows static

* fix x86 windows

* Update CONTROL
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [openmvs] update

* fix windows static

* fix x86 windows

* Update CONTROL
</pre>
</div>
</content>
</entry>
</feed>
