aboutsummaryrefslogtreecommitdiff
path: root/ports/ecsutil/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 ```
2020-10-13[many ports] 2019.09.14 Updates (#13536)Robert Schumacher
* [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-12[ecsutil] Update ECSUtil v1.0.7.10 (#13990)jimmy hu
[ecsutil] Update ECSUtil v1.0.7.10
2020-03-10[ecsutil] Update ECSUtil v1.0.7.9 (#10258)bobk2824
* Update ECSUtil v1.0.7.9 * Complete PR requested changes remove: include(vcpkg_common_functions) use: vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX") * added: Supports: windows&(x64|x86) Co-authored-by: Bob Kast <bob.kast@emc.com>
2019-12-02[ecsuti] Update version (#8885)Cheney Wang
2019-09-19update for ECSUtil 1.0.7.3 (#8253)bobk2824
2019-07-25[ECSUtil] update library to v1.0.7.2 (#7427)bobk2824
2019-07-17[qt5-winextras, ecsutil, soundtouch] Fix build-depends (#7298)wangli28
2019-05-09Upgrade vcpkg to ECSUtil 1.0.6.1 (#6381)bobk2824
2019-01-10v1.0.3.1Bob Kast
2019-01-07Update ECSUtil library to 1.0.2.1Bob Kast
2018-12-03Support ECSUtil 1.0.1.4Bob Kast
2018-10-23Merge branch 'master' of https://github.com/EMCECS/vcpkgBob Kast
# Conflicts: # ports/ecsutil/CONTROL # ports/ecsutil/portfile.cmake
2018-10-19[ecsutil] Commit missing patchRobert Schumacher
2018-10-19[ecsutil] Simplify and use vcpkg_install_msbuildRobert Schumacher
2018-10-19[ecsutil] Initial commit of 1.0.1.2Robert Schumacher
2018-10-09ECSUtil 1.0.1.2Bob Kast
2018-09-25ECSUtil v1.0.1.1Bob Kast
2018-08-15ECSUtil 1.0.0.2 releaseBob Kast
2018-08-15Update to ECSUtil v1.0.0.1Bob Kast
2018-08-15ECSUtil 0.9.0.9Bob Kast
2018-08-150.9.0.8Bob Kast
2018-08-15ECSUtil 0.9.0.7Bob Kast
2018-08-15ecsutil 0.9.0.6Bob Kast
2018-08-150.9.0.5Bob Kast
2018-08-150.9.0.4Bob Kast
2018-08-150.9.0.3Bob Kast
2018-08-150.9.0.2Bob Kast
2018-08-15Initial vcpkg support for ECSUtil.Bob Kast