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 |
|
JonLiu1993
|
cff97f99e5
|
[reproc] update to 14.2.1 (#15751)
* [reproc] Update to 14.2.1
* Update port_version
* Update version
* [reproc] update to 14.2.1
|
2021-01-19 22:12:23 -08:00 |
|
Robert Schumacher
|
75bd2efe0d
|
[many ports] 2019.09.14 Updates (#13536)
* [many ports] 2019.09.14 Updates
* Revert failure ports
* Revert failure ports
* Revert failure ports
* [urdfdom] Fix find dependency console_bridge
* Revert failure ports
* [devil] Compatible with jasper 2.0.20
* [devil] Refix compatible with jasper functions declaration on different os
* Update ports/alembic/CONTROL
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* Revert failure ports wangle
* [azure-kinect-sensor-sdk] Fix build with matroska 1.6.2
* Revert failure ports
* Revert failure ports
* [urdfdom-headers] Fix include path in config.cmake file
* upload patch
* [urdfdom-headers] Refix include path in config.cmake file
* [qt5-imageformats] Fix missing include math.h
* [urdfdom-headers] Refix include path in config.cmake file
* [qt5] Fix adding option PATCHES and other options when using qt_submodule_installation
* Remove updated ports version
* Commit suggestions
* [libideviceactivation] revert
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
2020-10-13 13:17:32 -07:00 |
|
Daan De Meyer
|
9ffd7c4886
|
[reproc] Update to version 12.0.0 (#10594)
|
2020-04-03 10:27:19 -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 |
|
Daan De Meyer
|
cf2ecd51ef
|
reproc: Update to v10.0.2. (#9544)
|
2020-01-09 14:34:22 -08:00 |
|
Daan De Meyer
|
1ac57d42ac
|
Update reproc to 9.0.0. (#8411)
- Update description.
- Remove unused REPROC++_INSTALL option.
- Stop installing pkgconfig files.
- Remove explicit REPROC_INSTALL option as its enabled by default in
this scenario.
|
2019-10-02 16:02:55 -07:00 |
|
Ehsan
|
3ec4ad0eeb
|
[reproc] Update library to 8.0.1 (#7807)
|
2019-08-21 07:53:59 -07:00 |
|
wangli28
|
503521b77d
|
[reproc] Fix reproc++ installation path (#7208)
|
2019-07-09 11:34:48 -07:00 |
|
Alexej Harm
|
e251b22f26
|
[reproc] Enabled C++ target for version 6.0.0. (#6711)
* enabled reproc++ target
* added version suffix
|
2019-06-01 07:28:38 -07:00 |
|
Robert Schumacher
|
33af90d42a
|
[many ports] Updates 2019.05.19 (#6524)
|
2019-05-21 21:00:24 -07:00 |
|
Tom Henoch
|
2db456f44a
|
Reproc initial port (#4263)
* reproc initial port
* Remove portfile debug output
* Fix Cmake files path
* [reproc] Update to v1.0.0
* [reproc] Fix hash for v1.0.0
|
2018-10-22 09:08:19 -07:00 |
|