Cédric Tabin
a0786f6a81
Update to libzippp v7.1-1.10.1 ( #36692 )
2024-02-12 14:33:44 -08:00
Cédric Tabin
b5c59f51ce
Update to libzippp v7.0-1.10.1 ( #33807 )
2023-09-19 09:49:01 -07:00
Cédric Tabin
da6a91bb0b
Update to libzippp v6.1-1.9.2 ( #31194 )
2023-05-01 15:18:43 -07:00
Cédric Tabin
cbe6dc7a4c
[libzippp] Update to v6.0-1.9.2 ( #28276 )
2022-12-12 14:25:36 -08:00
Cédric Tabin
24881cdfea
[libzippp] Update to 5.1-1.8.0 ( #24885 )
2022-05-25 12:22:08 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
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-09-09 01:24:04 -07:00
Cédric Tabin
cf03dac5c2
[libzippp] update to 5.0-1.8.0 ( #19433 )
...
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2021-08-09 09:09:22 -07:00
Cédric Tabin
a0fa6aeb82
[libzippp] Update to 4.1-1.8.0 ( #18553 )
...
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2021-07-06 14:05:52 -07:00
General Jack O'Neill
31b95c6b4f
[libzippp] fix find lzma ( #15486 )
...
* 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 ) eb895b95aa
2021-01-08 12:03:08 -08:00
Giuseppe Massaro
c39b1ae3d2
[LibZippp] add encryption feature ( #14295 )
...
=
2020-10-30 15:06:22 -07:00
NancyLi1013
0901f066c5
[libzippp] Use VCPKG_TARGET_IS_WINDOWS rather than WIN32 and avoid libzip default features ( #14063 )
2020-10-21 16:34:07 -07:00
Cédric Tabin
e040433ae0
Update to libzippp-4.0-1.7.3 ( #13620 )
...
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2020-10-08 23:27:05 -07:00
Cédric Tabin
54b98494d4
[libzippp] Update to libzippp-v3.1-1.6.1 ( #10893 )
...
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
2020-04-21 13:21:33 -07:00
Philipp Hasper
042f96413f
WIP: [libzippp] New port: C++ wrapper for libzip ( #6801 )
...
* [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
2019-07-22 10:40:11 -07:00