chausner
|
8a9ad06a84
|
[zstr] Update to 1.0.7 (#29254)
* Update zstr to 1.0.7
* Update CI baseline
* Apply suggestions from code review
Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
* Update CI baseline
---------
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
|
2023-01-31 13:27:53 -08:00 |
|
dan9er
|
504acb9383
|
[zstr] Fix include issues, add usage message override, add homepage and zlib dependency to vcpkg.json (#18068)
* [zstr] Add zstr_make_unique_polyfill.h to install list
Fixes microsoft#16402
* [zstr] Install inside include/ instead of include/zstr/
Fixes microsoft#18067
* [zstr] Replace CONTROL with vcpkg.json
* format manifest file
* Update ports/zstr/vcpkg.json
* update version
* [zstr] Run format-manifest
* [zstr] Update port-version
* [zstr] Run x-add-version
* [zstr] Add usage msg override
* [zstr] Rerun x-add-version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
|
2021-11-09 11:51:17 -08: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 |
|
Seeker
|
32df14e1c8
|
[zstr] update to 1.0.4 (#14452)
|
2020-11-09 14:38:37 -08:00 |
|
Billy O'Neal
|
09a647a526
|
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)
|
2020-10-28 14:18:07 -07:00 |
|
NancyLi1013
|
d7c61a4215
|
[zstr] Add new port (#6773)
|
2019-06-06 18:58:40 -07:00 |
|