<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/openssl-unix, 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>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>[openssl] Add build depends to deprecated openssl ports (#14457)</title>
<updated>2020-11-08T05:48:19+00:00</updated>
<author>
<name>Alexander Neumann</name>
<email>30894796+Neumann-A@users.noreply.github.com</email>
</author>
<published>2020-11-08T05:48:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=179bdd1697e03663869c2c3341343396c3ac6dfb'/>
<id>179bdd1697e03663869c2c3341343396c3ac6dfb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[OpenSSL] refactor openssl ports. (#14308)</title>
<updated>2020-11-04T06:59:02+00:00</updated>
<author>
<name>Alexander Neumann</name>
<email>30894796+Neumann-A@users.noreply.github.com</email>
</author>
<published>2020-11-04T06:59:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=63dccf771d0bf84f8a1e111c8b53a4057d4c0a18'/>
<id>63dccf771d0bf84f8a1e111c8b53a4057d4c0a18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl] Update to 1.1.1h (#13956)</title>
<updated>2020-10-13T20:44:22+00:00</updated>
<author>
<name>Kevin Lu</name>
<email>6320810+kevinlul@users.noreply.github.com</email>
</author>
<published>2020-10-13T20:44:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ee736e7656e0e323f4156dd928e6b1732f262bcb'/>
<id>ee736e7656e0e323f4156dd928e6b1732f262bcb</id>
<content type='text'>
* [openssl] Update to 1.1.1h

* Update ports/openssl-unix/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

* Update ports/openssl-uwp/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

* Update ports/openssl-windows/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;
Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [openssl] Update to 1.1.1h

* Update ports/openssl-unix/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

* Update ports/openssl-uwp/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

* Update ports/openssl-windows/CONTROL

Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;
Co-authored-by: Adam Johnson &lt;AdamJohnso@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl-unix] use xcrun for iOS triplet build (#12527)</title>
<updated>2020-08-25T04:20:02+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-08-25T04:20:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6ed0bc982bf9bdca25439d538f7f272786a7af4d'/>
<id>6ed0bc982bf9bdca25439d538f7f272786a7af4d</id>
<content type='text'>
* [openssl] use xcrun for iOS triplet build

* config for iOS simulator architecture
* use .dylib suffix for iOS shared is used

* [openssl-unix] increase port version in CONTROL

* Update CONTROL

* [openssl-unix] update port version

* prevent collision with #12544

* [openssl-unix] make disable platform specific

* [openssl-unix] replace set to list(APPEND)

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [openssl] use xcrun for iOS triplet build

* config for iOS simulator architecture
* use .dylib suffix for iOS shared is used

* [openssl-unix] increase port version in CONTROL

* Update CONTROL

* [openssl-unix] update port version

* prevent collision with #12544

* [openssl-unix] make disable platform specific

* [openssl-unix] replace set to list(APPEND)

Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl-unix] Fix #12919 (#12986)</title>
<updated>2020-08-20T02:45:15+00:00</updated>
<author>
<name>Long Nguyen</name>
<email>nguyen.long.908132@gmail.com</email>
</author>
<published>2020-08-20T02:45:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=48309ace3e29146a79708dfc4b2e20099221a205'/>
<id>48309ace3e29146a79708dfc4b2e20099221a205</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl] Interrupt the build process when files conflict (#12867)</title>
<updated>2020-08-18T23:49:57+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-08-18T23:49:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=547af512d0f79864faaed927fa2d2e7c9b89a526'/>
<id>547af512d0f79864faaed927fa2d2e7c9b89a526</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl-unix] Add mingw with dynamic libs support - take 2 (#12544)</title>
<updated>2020-08-02T04:22:54+00:00</updated>
<author>
<name>Long Nguyen</name>
<email>nguyen.long.908132@gmail.com</email>
</author>
<published>2020-08-02T04:22:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c0f23c6c31ea7af5a751ea48a043dc64a872f4a0'/>
<id>c0f23c6c31ea7af5a751ea48a043dc64a872f4a0</id>
<content type='text'>
* [openssl-unix] Add mingw with dynamic libs support

* Use new Port-Version

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;

* Fix indenting

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>
* [openssl-unix] Add mingw with dynamic libs support

* Use new Port-Version

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;

* Fix indenting

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl] Update openssl 1.1.1g - continued from PR #11003 (#11882)</title>
<updated>2020-06-29T21:43:51+00:00</updated>
<author>
<name>Septarius</name>
<email>1136966+Septarius@users.noreply.github.com</email>
</author>
<published>2020-06-29T21:43:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3c34afc1c44efd67f080b6fd6354f32e9ed182f0'/>
<id>3c34afc1c44efd67f080b6fd6354f32e9ed182f0</id>
<content type='text'>
* [openssl] Update version to 1.1.1g

* [openssl] Disable build tests

* [openssl-unix][openssl-uwp] use vcpkg_fail_port_install

* [openssl] Applying PR #11003 Suggestions

The suggested changes from PR #11003

Along with one additional to remove the deprecated vcpkg_test_cmake from openssl-uwp\portfile.cmake as well.

* Update ports/openssl-uwp/portfile.cmake

Co-authored-by: crackedmind &lt;digital.stream.of.mind@gmail.com&gt;
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>
* [openssl] Update version to 1.1.1g

* [openssl] Disable build tests

* [openssl-unix][openssl-uwp] use vcpkg_fail_port_install

* [openssl] Applying PR #11003 Suggestions

The suggested changes from PR #11003

Along with one additional to remove the deprecated vcpkg_test_cmake from openssl-uwp\portfile.cmake as well.

* Update ports/openssl-uwp/portfile.cmake

Co-authored-by: crackedmind &lt;digital.stream.of.mind@gmail.com&gt;
Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[openssl-unix] Fix openssl-unix android build (#11344)</title>
<updated>2020-06-11T08:13:48+00:00</updated>
<author>
<name>majaeger</name>
<email>majaeger@microsoft.com</email>
</author>
<published>2020-06-11T08:13:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=4050a5b27906753b2a9250396a7e966ea2d7545a'/>
<id>4050a5b27906753b2a9250396a7e966ea2d7545a</id>
<content type='text'>
* Fix openssl-unix android build

* Update version. Remove deprecated functions

* Update pacman before installing updates (perl fails to install otherwise)

* Update vcpkg_acquire_msys to (successfully) update pacman and bash before updating anything else

* Undo whitepsace remove</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix openssl-unix android build

* Update version. Remove deprecated functions

* Update pacman before installing updates (perl fails to install otherwise)

* Update vcpkg_acquire_msys to (successfully) update pacman and bash before updating anything else

* Undo whitepsace remove</pre>
</div>
</content>
</entry>
</feed>
