<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/x-, 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>[xbyak] Update port to 6.00 (#20377)</title>
<updated>2021-09-28T04:07:48+00:00</updated>
<author>
<name>Ryan</name>
<email>ryan__mckenzie@hotmail.com</email>
</author>
<published>2021-09-28T04:07:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=aab8d8f30029604b0d82c1b55c8ef5b15b106f04'/>
<id>aab8d8f30029604b0d82c1b55c8ef5b15b106f04</id>
<content type='text'>
* update to 6.00

* quote cmake arguments

* update deprecated functions

* update versioning</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update to 6.00

* quote cmake arguments

* update deprecated functions

* update versioning</pre>
</div>
</content>
</entry>
<entry>
<title>many-ports: Update supports field (#20053)</title>
<updated>2021-09-17T15:20:57+00:00</updated>
<author>
<name>autoantwort</name>
<email>41973254+autoantwort@users.noreply.github.com</email>
</author>
<published>2021-09-17T15:20:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=66dc12b3fa1863bf60afe75f2cfdd41298e52ee5'/>
<id>66dc12b3fa1863bf60afe75f2cfdd41298e52ee5</id>
<content type='text'>
* many-ports: Update supports field

* Fix several "version-string"s.

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>
* many-ports: Update supports field

* Fix several "version-string"s.

Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</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>[glew/openvdb/xtensor-io] Update to latest release version (#20022)</title>
<updated>2021-09-08T14:56:56+00:00</updated>
<author>
<name>Phoebe</name>
<email>20694052+PhoebeHui@users.noreply.github.com</email>
</author>
<published>2021-09-08T14:56:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=277e9a7f4632029977626adc938a5a8bda675649'/>
<id>277e9a7f4632029977626adc938a5a8bda675649</id>
<content type='text'>
* [glew/openvdb/xtensor-io] Update to latest release version

* [glew] Update patch

* [xtensor-io] Update version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [glew/openvdb/xtensor-io] Update to latest release version

* [glew] Update patch

* [xtensor-io] Update version</pre>
</div>
</content>
</entry>
<entry>
<title>[macos ci] update 2021-07-27 (#19207)</title>
<updated>2021-08-04T20:27:40+00:00</updated>
<author>
<name>nicole mazzuca</name>
<email>mazzucan@outlook.com</email>
</author>
<published>2021-08-04T20:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ff190a561ad8903086ac72f65b05798058045435'/>
<id>ff190a561ad8903086ac72f65b05798058045435</id>
<content type='text'>
* update 2021-07-27

macOS -&gt; 11.5.1, XCode -&gt; 12.5.1

* update azure-pipelines

* update sha of macfuse

* change how macos-ci-base works

* fix build errors

* fix itpp:linux

* more fixes

* remove tab

* allow version changes in all the remove/rename-version patches

* fix libunistring for real

* robert CR</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update 2021-07-27

macOS -&gt; 11.5.1, XCode -&gt; 12.5.1

* update azure-pipelines

* update sha of macfuse

* change how macos-ci-base works

* fix build errors

* fix itpp:linux

* more fixes

* remove tab

* allow version changes in all the remove/rename-version patches

* fix libunistring for real

* robert CR</pre>
</div>
</content>
</entry>
<entry>
<title>[xlsxio] new port (#18438)</title>
<updated>2021-07-06T21:04:12+00:00</updated>
<author>
<name>Ronald</name>
<email>3665590+playgithub@users.noreply.github.com</email>
</author>
<published>2021-07-06T21:04:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8000529d6147f0ab669dbaec60306f52da7241a4'/>
<id>8000529d6147f0ab669dbaec60306f52da7241a4</id>
<content type='text'>
* add port: xlsxio

* vcpkg x-add-version xlsxio

* fix deps

* add vcpkg_fixup_pkgconfig()

* Apply suggestions from code review

To be consistent, `OUT_FEATURE_OPTIONS FEATURE_OPTIONS` in a new line, as in `vcpkg_from_git`.

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* format

* use date as version string

* vcpkg format-manifest

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* patch for dependency

* fix typo

* vcpkg x-add-version

* remove feature wide

* Update ports/xlsxio/vcpkg.json

deprecate libzip that's an alternative and imperfect

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

* Update ports/xlsxio/vcpkg.json

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

* Update versions/x-/xlsxio.json

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Remove x64-windows-cpp17 community triplet

Co-authored-by: abc &lt;a@b.com&gt;
Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@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>
* add port: xlsxio

* vcpkg x-add-version xlsxio

* fix deps

* add vcpkg_fixup_pkgconfig()

* Apply suggestions from code review

To be consistent, `OUT_FEATURE_OPTIONS FEATURE_OPTIONS` in a new line, as in `vcpkg_from_git`.

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* format

* use date as version string

* vcpkg format-manifest

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* patch for dependency

* fix typo

* vcpkg x-add-version

* remove feature wide

* Update ports/xlsxio/vcpkg.json

deprecate libzip that's an alternative and imperfect

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

* Update ports/xlsxio/vcpkg.json

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;

* Update versions/x-/xlsxio.json

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Remove x64-windows-cpp17 community triplet

Co-authored-by: abc &lt;a@b.com&gt;
Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[xtensor] update to 0.23.9 (#18206)</title>
<updated>2021-06-10T23:02:29+00:00</updated>
<author>
<name>JonLiu1993</name>
<email>63675417+JonLiu1993@users.noreply.github.com</email>
</author>
<published>2021-06-10T23:02:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=4ea49a1cf82f93784a220bc1d1d998d2c1d4180f'/>
<id>4ea49a1cf82f93784a220bc1d1d998d2c1d4180f</id>
<content type='text'>
* [xtensor] update to 0.23.9

* update version

* [xtl] update to 0.7.2

* update version

* update patch

* update version

* Update ports/xtl/portfile.cmake

* update version

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [xtensor] update to 0.23.9

* update version

* [xtl] update to 0.7.2

* update version

* update patch

* update version

* Update ports/xtl/portfile.cmake

* update version

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[xmlsec]Update to 1.2.32 (#18199)</title>
<updated>2021-06-03T19:42:49+00:00</updated>
<author>
<name>SvenPStarFinanz</name>
<email>spa@starfinanz.de</email>
</author>
<published>2021-06-03T19:42:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b121bba26ab8d1cba1828b16f80e5a986254e6d0'/>
<id>b121bba26ab8d1cba1828b16f80e5a986254e6d0</id>
<content type='text'>
* Updating xmlsec to 1.2.32. Removing the need for patching the UWP build.

* x-add-version for xmlsec

* Using correct version string in vcpkg.json.
Fixing bug on Windows build, xmlsec persists on lib prefix for the dll file.

* Updating to latest commit.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Updating xmlsec to 1.2.32. Removing the need for patching the UWP build.

* x-add-version for xmlsec

* Using correct version string in vcpkg.json.
Fixing bug on Windows build, xmlsec persists on lib prefix for the dll file.

* Updating to latest commit.</pre>
</div>
</content>
</entry>
<entry>
<title>[xmlsec] add pkgconfig files (#16908)</title>
<updated>2021-05-25T20:34:00+00:00</updated>
<author>
<name>Dawid Wróbel</name>
<email>me@dawidwrobel.com</email>
</author>
<published>2021-05-25T20:34:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a47809ed9e83af1cf31cc59da76def9fe826e83e'/>
<id>a47809ed9e83af1cf31cc59da76def9fe826e83e</id>
<content type='text'>
* [xmlsec] add pkgconfig files

- also fixes the library filename, which is actually libxmlsec1.
  This follows the upstream naming scheme.

* [xmlsec] convert CONTROL to manifest

* [xmlsec] update versions

* [xmlsec] update library name

* [xmlsec] update versions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [xmlsec] add pkgconfig files

- also fixes the library filename, which is actually libxmlsec1.
  This follows the upstream naming scheme.

* [xmlsec] convert CONTROL to manifest

* [xmlsec] update versions

* [xmlsec] update library name

* [xmlsec] update versions</pre>
</div>
</content>
</entry>
<entry>
<title>[xnnpack] create a new port (#17064)</title>
<updated>2021-05-18T06:22:24+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2021-05-18T06:22:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=968c5eba7b9f24806b27d59593c389598402bc69'/>
<id>968c5eba7b9f24806b27d59593c389598402bc69</id>
<content type='text'>
* [xnnpack] create a new port

* [xnnpack] create a patch

* [cpuinfo] update to latest

* [cpuinfo] update baseline and port SHA

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* [cpuinfo] update port SHA

* [cpuinfo] recover find_package

* fixup target path to `share/unofficial-cpuinfo`
* change IMPORTED target name to `unofficial::cpuinfo::cpuinfo`

* [fbgemm] resolve failure after cpuinfo rename

* change cpuinfo::cpuinfo to unofficial

* [fbgemm] update port version

* [nnpack] use changes target name

* [nnpack] update port-version

* [pthreadpool] support find_package

* update to latest source code

* [pthreadpool] update port version

* [pthreadpool] support uwp

* use WindowStore in platform check

* [xnnpack] support find_package

* windows: static build
* export with namespace `unofficial::`

* [xnnpack] update code to latest

* change snapshot to resolve linux compile errors

* [xnnpack] "supports" in manifest

* update baseline &amp; port SHA

* [xnnpack] use 'vcpkg-cmake' ports

* update port git-tree SHA

* [xnnpack] remove unused configure options

* [xnnpack] update code version

* snapshot: 21/04/10 -&gt; 21/05/17

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: Billy Robert ONeal III &lt;bion@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [xnnpack] create a new port

* [xnnpack] create a patch

* [cpuinfo] update to latest

* [cpuinfo] update baseline and port SHA

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/portfile.cmake

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* Update ports/cpuinfo/fix-install.patch

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;

* [cpuinfo] update port SHA

* [cpuinfo] recover find_package

* fixup target path to `share/unofficial-cpuinfo`
* change IMPORTED target name to `unofficial::cpuinfo::cpuinfo`

* [fbgemm] resolve failure after cpuinfo rename

* change cpuinfo::cpuinfo to unofficial

* [fbgemm] update port version

* [nnpack] use changes target name

* [nnpack] update port-version

* [pthreadpool] support find_package

* update to latest source code

* [pthreadpool] update port version

* [pthreadpool] support uwp

* use WindowStore in platform check

* [xnnpack] support find_package

* windows: static build
* export with namespace `unofficial::`

* [xnnpack] update code to latest

* change snapshot to resolve linux compile errors

* [xnnpack] "supports" in manifest

* update baseline &amp; port SHA

* [xnnpack] use 'vcpkg-cmake' ports

* update port git-tree SHA

* [xnnpack] remove unused configure options

* [xnnpack] update code version

* snapshot: 21/04/10 -&gt; 21/05/17

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: Billy Robert ONeal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
</feed>
