<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/ace, 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>[ace] Added missing 'xml' feature implementation (#20032)</title>
<updated>2021-10-15T01:13:06+00:00</updated>
<author>
<name>Erik Sohns</name>
<email>esohns@users.noreply.github.com</email>
</author>
<published>2021-10-15T01:13:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a151bfd9892d096cb7ce54afdb70530c09b12e7b'/>
<id>a151bfd9892d096cb7ce54afdb70530c09b12e7b</id>
<content type='text'>
* added missing 'xml' feature implementation

* updated versions

* Update version database

* small fixes and update version database

* merged changes

* Update version database

* add version-port

* update version

* fixed [tao] feature

* updated version database

* forgot to merge this

* update version

* another small change

* update version database

* pass the same ACE features to ACEXML as well

* update version

* fixed zlib feature

* update version

* fixed x64-windows-static triplet

* update version

* incorporated requested changes after review

* update version

* updated "version" string

* updated version

* use current_install_dir

* update version

Co-authored-by: Erik Sohns &lt;erik.sohns@posteo.de&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.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>
* added missing 'xml' feature implementation

* updated versions

* Update version database

* small fixes and update version database

* merged changes

* Update version database

* add version-port

* update version

* fixed [tao] feature

* updated version database

* forgot to merge this

* update version

* another small change

* update version database

* pass the same ACE features to ACEXML as well

* update version

* fixed zlib feature

* update version

* fixed x64-windows-static triplet

* update version

* incorporated requested changes after review

* update version

* updated "version" string

* updated version

* use current_install_dir

* update version

Co-authored-by: Erik Sohns &lt;erik.sohns@posteo.de&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;
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>[ace] Upgrade to 7.0.3 (#19354)</title>
<updated>2021-08-10T08:05:55+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2021-08-10T08:05:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8b9f976fb390054095c466757a593da71dafa1b2'/>
<id>8b9f976fb390054095c466757a593da71dafa1b2</id>
<content type='text'>
* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.3

* No need to force C++11 anymore for MacOSX

    * ports/ace/portfile.cmake:

* Add ACE 7.0.3 version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.3

* No need to force C++11 anymore for MacOSX

    * ports/ace/portfile.cmake:

* Add ACE 7.0.3 version</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] Upgrade to 7.0.2 (#17933)</title>
<updated>2021-05-19T05:59:23+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2021-05-19T05:59:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5e7278a224f26c598a34cc57695cc81eb1b726b3'/>
<id>5e7278a224f26c598a34cc57695cc81eb1b726b3</id>
<content type='text'>
* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.2

* [ace] Revert change

* Ran vcpkg x-add-version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.2

* [ace] Revert change

* Ran vcpkg x-add-version</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] Upgrade to 7.0.1 (#16708)</title>
<updated>2021-03-15T22:49:04+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2021-03-15T22:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ca35082c483ef08aa1be80aad715004232a3abc5'/>
<id>ca35082c483ef08aa1be80aad715004232a3abc5</id>
<content type='text'>
* [ace] 7.0.0

* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.1

* [ace] Revert workaround for macosx, not needed anymore

* [ace] 7.0.1

* [ace] 7.0.1</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [ace] 7.0.0

* Make sure C++11 is enabled on macosx

    * ports/ace/portfile.cmake:

* [ace] Upgrade to 7.0.1

* [ace] Revert workaround for macosx, not needed anymore

* [ace] 7.0.1

* [ace] 7.0.1</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] Update to 7.0.0 (#15862)</title>
<updated>2021-01-29T03:24:25+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2021-01-29T03:24:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=db66cbe7fdcaf8197b59caacc04723db9d015d60'/>
<id>db66cbe7fdcaf8197b59caacc04723db9d015d60</id>
<content type='text'>
* [ace] 7.0.0

* [ace] 7.0.0 versions

* Update portfile.cmake

* Update ace.json</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [ace] 7.0.0

* [ace] 7.0.0 versions

* Update portfile.cmake

* Update ace.json</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] copy generated headers files for tao (#14768)</title>
<updated>2020-11-30T18:37:01+00:00</updated>
<author>
<name>victorburckel</name>
<email>victor.burckel@gmail.com</email>
</author>
<published>2020-11-30T18:37:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a61ae4f9d6c094d6c9736dfe29030e9952f0eaad'/>
<id>a61ae4f9d6c094d6c9736dfe29030e9952f0eaad</id>
<content type='text'>
* copy generated files from ace / tao release build folder

* Update port version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* copy generated files from ace / tao release build folder

* Update port version</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] 6.5.12 (#14253)</title>
<updated>2020-10-28T21:24:01+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2020-10-28T21:24:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2a2070c4b196b8ecd9e553198523edd0ec71ced0'/>
<id>2a2070c4b196b8ecd9e553198523edd0ec71ced0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] 6.5.11 (#12954)</title>
<updated>2020-08-18T16:25:55+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2020-08-18T16:25:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=72328def02133ceb6da9b88f39fb54cfaaddb908'/>
<id>72328def02133ceb6da9b88f39fb54cfaaddb908</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ace] 6.5.10 (#12183)</title>
<updated>2020-07-06T20:16:24+00:00</updated>
<author>
<name>Johnny Willemsen</name>
<email>jwillemsen@remedy.nl</email>
</author>
<published>2020-07-06T20:16:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ac4e90220adb99d7cea190c41d798ac113f20627'/>
<id>ac4e90220adb99d7cea190c41d798ac113f20627</id>
<content type='text'>
* [ace] 6.5.10

* Add version macros to make the port file easier to update

    * ports/ace/portfile.cmake:

* Updated macro names to have ACE_ prefix

    * ports/ace/portfile.cmake:

* Use string replace

    * ports/ace/portfile.cmake:</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [ace] 6.5.10

* Add version macros to make the port file easier to update

    * ports/ace/portfile.cmake:

* Updated macro names to have ACE_ prefix

    * ports/ace/portfile.cmake:

* Use string replace

    * ports/ace/portfile.cmake:</pre>
</div>
</content>
</entry>
</feed>
