<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/libzippp, 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>[libzippp] update to 5.0-1.8.0 (#19433)</title>
<updated>2021-08-09T16:09:22+00:00</updated>
<author>
<name>Cédric Tabin</name>
<email>tabin.cedric@gmail.com</email>
</author>
<published>2021-08-09T16:09:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cf03dac5c25dd5a8d207d0b7d546f24424898418'/>
<id>cf03dac5c25dd5a8d207d0b7d546f24424898418</id>
<content type='text'>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[libzippp] Update to 4.1-1.8.0 (#18553)</title>
<updated>2021-07-06T21:05:52+00:00</updated>
<author>
<name>Cédric Tabin</name>
<email>tabin.cedric@gmail.com</email>
</author>
<published>2021-07-06T21:05:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a0fa6aeb82b3956a2f52ec455061ba1916076d53'/>
<id>a0fa6aeb82b3956a2f52ec455061ba1916076d53</id>
<content type='text'>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[libzippp] fix find lzma (#15486)</title>
<updated>2021-01-08T20:03:08+00:00</updated>
<author>
<name>General Jack O'Neill</name>
<email>StarGate_One@outlook.com</email>
</author>
<published>2021-01-08T20:03:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=31b95c6b4f99ac77a410a1d31ff0e556175ded5d'/>
<id>31b95c6b4f99ac77a410a1d31ff0e556175ded5d</id>
<content type='text'>
* Adds patch to fix find lzma after changes to use upstream CMakeLists.txt
* Reference Issue: [libzippp] x64-windows build failure after liblzma use upstream CMakeLists.txt + Add pkgconfig. (#14615) #14679 https://github.com/microsoft/vcpkg/issues/14679
* Reference Commit: PR [liblzma] use upstream CMakeLists.txt + Add pkgconfig. (#14615) https://github.com/microsoft/vcpkg/commit/eb895b95aac6fd7485373702f29f508c42a180a0</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Adds patch to fix find lzma after changes to use upstream CMakeLists.txt
* Reference Issue: [libzippp] x64-windows build failure after liblzma use upstream CMakeLists.txt + Add pkgconfig. (#14615) #14679 https://github.com/microsoft/vcpkg/issues/14679
* Reference Commit: PR [liblzma] use upstream CMakeLists.txt + Add pkgconfig. (#14615) https://github.com/microsoft/vcpkg/commit/eb895b95aac6fd7485373702f29f508c42a180a0</pre>
</div>
</content>
</entry>
<entry>
<title>[LibZippp] add encryption feature (#14295)</title>
<updated>2020-10-30T22:06:22+00:00</updated>
<author>
<name>Giuseppe Massaro</name>
<email>giuse.massaro@gmail.com</email>
</author>
<published>2020-10-30T22:06:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c39b1ae3d233b6cef9a31a533fc1e9d9ee52ec0a'/>
<id>c39b1ae3d233b6cef9a31a533fc1e9d9ee52ec0a</id>
<content type='text'>
=</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
=</pre>
</div>
</content>
</entry>
<entry>
<title>[libzippp] Use VCPKG_TARGET_IS_WINDOWS rather than WIN32 and avoid libzip default features (#14063)</title>
<updated>2020-10-21T23:34:07+00:00</updated>
<author>
<name>NancyLi1013</name>
<email>46708020+NancyLi1013@users.noreply.github.com</email>
</author>
<published>2020-10-21T23:34:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0901f066c5d143a5b3c09f7c231e1b47e0ef8659'/>
<id>0901f066c5d143a5b3c09f7c231e1b47e0ef8659</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to libzippp-4.0-1.7.3 (#13620)</title>
<updated>2020-10-09T06:27:05+00:00</updated>
<author>
<name>Cédric Tabin</name>
<email>tabin.cedric@gmail.com</email>
</author>
<published>2020-10-09T06:27:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e040433ae09963ab8860c1491ad90b4cec58892e'/>
<id>e040433ae09963ab8860c1491ad90b4cec58892e</id>
<content type='text'>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[libzippp] Update to libzippp-v3.1-1.6.1 (#10893)</title>
<updated>2020-04-21T20:21:33+00:00</updated>
<author>
<name>Cédric Tabin</name>
<email>tabin.cedric@gmail.com</email>
</author>
<published>2020-04-21T20:21:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=54b98494d4b3c0c15b2315ed0cf128586f7c4a0f'/>
<id>54b98494d4b3c0c15b2315ed0cf128586f7c4a0f</id>
<content type='text'>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Cédric Tabin &lt;cedric.tabin@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: [libzippp] New port: C++ wrapper for libzip (#6801)</title>
<updated>2019-07-22T17:40:11+00:00</updated>
<author>
<name>Philipp Hasper</name>
<email>opensource@ioxp.de</email>
</author>
<published>2019-07-22T17:40:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=042f96413f4e9ff6bdefa8727a6e8d066e622d0a'/>
<id>042f96413f4e9ff6bdefa8727a6e8d066e622d0a</id>
<content type='text'>
* [libzippp] New port: C++ wrapper for libzip

Closes #6600

* [libzippp] Fixed lookup of included libraries

* [libzippp] Build system replacement

* [libzippp] Add find_dependency(LIBZIP) to config file

* [libzippp] Use upstream CMake
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [libzippp] New port: C++ wrapper for libzip

Closes #6600

* [libzippp] Fixed lookup of included libraries

* [libzippp] Build system replacement

* [libzippp] Add find_dependency(LIBZIP) to config file

* [libzippp] Use upstream CMake
</pre>
</div>
</content>
</entry>
</feed>
