jimmyhu
|
b4d4529356
|
[bitsery] Update to v5.2.3 (#32898)
* Update bitsery to v5.2.3
Update bitsery to v5.2.3
* Update bitsery.json file
Update bitsery.json file
* Update ports/bitsery/portfile.cmake
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
* Update bitsery.json file
Update bitsery.json file
* update hash
* version
---------
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Frank xie (Beyondsoft Corporation) <v-frankxie@microsoft.com>
Co-authored-by: Frank <1433351828@qq.com>
|
2023-08-04 06:55:27 -07:00 |
|
Phoebe
|
c702e92ef7
|
[botan/bitsery/cgl] Update to latest release (#20132)
|
2021-09-13 20:24:22 -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 |
|
Rémy Tassoux
|
385a4607c6
|
[bitsery] Update to 5.2.1 (#14722)
https://github.com/fraillt/bitsery/releases/tag/v5.2.1
|
2020-11-25 11:24:10 -08:00 |
|
Rémy Tassoux
|
20d7fe5bb2
|
[bitsery] Update to 5.1.0 version (#11912)
* [bitsery] Update to 5.1.0 version
* [bitsery] Remove unused patch
|
2020-06-18 16:26:36 -07:00 |
|
Robert Schumacher
|
08c951fef9
|
[many ports] Upgrades to 2020.02.08 (#9986)
* [many ports] Upgrades to 2020.02.08
* Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl
* Update ci baseline file
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
|
2020-02-10 16:08:57 -08:00 |
|
Rémy Tassoux
|
9b3f7a503c
|
[bitsery] Update to 5.0.1
|
2019-11-04 21:59:41 +01:00 |
|
Stefano Sinigardi
|
726c111481
|
[vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
|
2019-10-07 10:35:13 -07:00 |
|
Robert Schumacher
|
1550b9e71b
|
[many ports] Updates 2019.07.09 (#7217)
* [many ports] Upgrades 2019.07.11
* Re-generate patches and fix build errors.
* [manyport]Fix build errors.
* Fix avro-c and console-bridge failures, revert curl and tesseract
* fix botan failure
* Fix build errors and undo some ports upgrades.
* [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors
* Fix build errors.
* [angle]Undo upgrade changes.
* [directxtk]Fix UWP build error (#7233)
* Revert leptonica since it cause tesseract failed
* Revert jsonnet
* [google-cloud-cpp] Disable parallel configure due to source directory writes
* [many ports] Undo undesired changes
* [bitsery] Fix indentation
* [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff
* fix console-bridge and remove usockets unused patch
* update ogre patch
* [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge.
* [console-bridge] Fix export macro
* [avro-c] Revert upgrade; split to #7875
* [avro-c] Complete previous revert
|
2019-08-24 13:43:57 -07:00 |
|
Simon Brand
|
7b3d86b933
|
[Bitsery] New port (#6226)
|
2019-04-26 12:20:28 -07:00 |
|