aboutsummaryrefslogtreecommitdiff
path: root/ports/libzippp/CONTROL
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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 ```
2021-08-09[libzippp] update to 5.0-1.8.0 (#19433)Cédric Tabin
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2021-07-06[libzippp] Update to 4.1-1.8.0 (#18553)Cédric Tabin
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2021-01-08[libzippp] fix find lzma (#15486)General Jack O'Neill
* 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
2020-10-30[LibZippp] add encryption feature (#14295)Giuseppe Massaro
=
2020-10-21[libzippp] Use VCPKG_TARGET_IS_WINDOWS rather than WIN32 and avoid libzip ↵NancyLi1013
default features (#14063)
2020-10-08Update to libzippp-4.0-1.7.3 (#13620)Cédric Tabin
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2020-04-21[libzippp] Update to libzippp-v3.1-1.6.1 (#10893)Cédric Tabin
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2019-07-22WIP: [libzippp] New port: C++ wrapper for libzip (#6801)Philipp Hasper
* [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