Billy O'Neal
a4275b7eee
Update macOS machines for May 2024 ( #38834 )
...
* Run through the macOS update instructions one more time. I think
they're in a pretty good state now since this is the first attempt to
rerun them since we dropped Vagrant.
* Removed Parallels references for arm64.
* Removed references to removing Vagrant because it's no longer on any
of the hosts.
* Update macOS to 14.5.
* Update XCode CLT to 14.3.
2024-06-04 13:35:41 -07:00
Thomas1664
6266585fcd
[clockutils] Fix x64-windows-static-md ( #23965 )
...
* [clockutils] Fix x64-windows-static-md
* version
* fix version
* version
* use version
* version
2022-04-08 15:31:27 -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
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. ( #13065 )
2020-10-28 14:18:07 -07:00
pravic
18b029a5e3
[WIP] Add a Homepage URL entry for vcpkg ports ( #2933 )
...
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
wangli28
e54af58986
[many ports]Remove double builds ( #6472 )
2019-05-17 16:10:31 -07:00
Alexander Karatarakis
0a3f7be8b2
[clockutils] Use vcpkg_from_github()
2018-05-31 13:52:52 -07:00
Larry-Hu
55ed2f6ed8
Fix warning C4643 in clockutils
2018-05-31 13:52:52 -07:00
Alexander Karatarakis
26516fe485
vcpkg_configure_cmake (and _meson) now embed debug symbols within static libs (/Z7)
2017-09-09 00:12:54 -07:00
Alexander Karatarakis
7ae6c21526
[clockutils] Update to fix build issue. Resolves #677
2017-02-17 17:46:34 -08:00
Alexander Karatarakis
1ecf03e2b0
[clockutils] Remove stray LICENSE file
...
Fixes post-build checks
2017-02-15 17:45:02 -08:00
Alexander Karatarakis
9fdb1f8fe8
[clockutils] Remove copy of LICENSE
2016-11-26 16:11:27 -08:00
Alexander Karatarakis
660797c22c
[clockutils] Call vcpkg_copy_pdbs()
2016-11-26 13:35:26 -08:00
Daniel Bonrath
469b819fdf
#339 added clockUtils port
2016-11-26 19:36:25 +01:00