Ilya Lavrenov
|
2161f290af
|
[ade] updated to 0.1.2d (#34602)
* [ade] updated to 0.1.2d
* updated version database
|
2023-10-20 09:50:31 -07:00 |
|
Ilya Lavrenov
|
1597438167
|
[ade] updated to 0.1.2c (#33726)
* [ade] updated to 0.1.2c
* updated version database
|
2023-09-26 00:29:58 -07:00 |
|
jimmyhu
|
3d4c020278
|
[ade] Update to v0.1.2 (#32873)
* Update ade package to v0.1.2
Update ade package to v0.1.2
* Update vcpkg.json file
Update vcpkg.json file
* Update port-version
Update port-version
* Update version information
Update version information
* Update ade.json file
Update ade.json file
|
2023-08-02 08:58:46 -07:00 |
|
Jack·Boos·Yu
|
a6cb7292c4
|
[many ports]switch to vcpkg-cmake / vckg-cmake-config part 1 (#29880)
* [many ports]switch to vcpkg-cmake / vckg-cmake-config
* version
* Missing changes
* version
* typo
* version
* typo
* version
* fix typo
* version
* deprecate vcpkg_extract_source_archive_ex
* version
* fix arguments
* version
---------
Co-authored-by: jyu49 <yu_jack@apple.com>
|
2023-03-06 15:44:04 -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 |
|
Stefano Sinigardi
|
93dc667223
|
[ade] fix single config triplets (#17935)
* [ade] fix single config triplets
* [ade] fix version references
|
2021-05-18 15:26:14 -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 |
|
Ehsan
|
fc7b1ff7a7
|
[ade] Update library to 0.1.1f (#7628)
|
2019-08-13 10:49:59 -07:00 |
|
Ehsan
|
feeaa65cdc
|
Update some ports version (#7494)
* [ade] Update library to 0.1.1e
* [libpmemobj-cpp] Update library to 1.7
* [msgpack] Update library to 3.2.0
* [protobuf] Update library to 3.9.0
* [string-theory] Update library to 2.2
* [harfbuzz] Update library to 2.5.3
|
2019-08-01 17:40:29 -07:00 |
|
Victor Romero
|
8996d0ce0a
|
[ade] Add port (taken from PR 5169 by @cenit) (#6129)
* [ade] Add port (taken from PR 5169 by @cenit)
* [ade] Fix for non-Windows
* [ade] Fix indentation
|
2019-04-24 11:44:38 -07:00 |
|