Commit Graph

16 Commits

Author SHA1 Message Date
Frank
88b81397bb
[live555] Pass options to fix osx (#36120)
* [live555] Pass options to fix osx

* format

* version

* EOL

* version
2024-01-12 10:25:19 -08:00
Cheney Wang
f1a46998ae
[live555] update to 2023.11.30 (#35774) 2023-12-19 21:12:16 -08:00
Mengna Li
40771be0a0
update to 2023-11-08 (#35150) 2023-11-17 11:07:28 -08:00
Xander Stokes
ede03bad51
[live555] Update to 2023-7-24 release (#33349)
* portfile and json update

* New version

---------

Co-authored-by: Xander Stokes <xander.c.stokes@gmail.com>
2023-08-24 10:44:04 -07:00
jim wang
61c166277f
[live555] update to 2023-06-20 (#32414)
* update version

* update version

* update version

* update version

* fix the use of operator

* update version
2023-07-07 09:04:03 -07:00
Chuck Walbourn
5d2a0a9814
Update xbox supports expressions for failing ports with copyleft licenses (#31770)
* Xbox triplets should not support ports with only copyleft licenses

* Reverted ports that build with xbox currently

* Fix conflict and rebase

* Update baseline

* Update baseline
2023-06-15 14:49:00 -07:00
Billy O'Neal
bb2642e663
[live555] Update (#31972) 2023-06-13 19:05:57 -07:00
Frank
3f6bfedb80
[live555] Update version to 2023.5.10 (#31487)
* [live555] Update version to 2023.5.10

* version
2023-05-18 11:19:38 -07:00
Mengna Li
fde611671e
Update to 2023-03-30 (#30649) 2023-04-04 15:41:15 -07:00
Billy O'Neal
d02bde4898
[live555] Update to 2023-01-19 (#29072) 2023-01-19 18:23:25 -08:00
Jack·Boos·Yu
6ee116c59e
[live555] Export unofficial targets (#28252)
* [live555] Export unofficial targets

* version

* typo

* version

Co-authored-by: jyu49 <yu_jack@apple.com>
2022-12-12 14:35:22 -08:00
Cheney Wang
1844cd5f4f
[live555] Update to 2022-12-01 (#28183)
* [live555] Update to 2022-12-01

* Modify deprecated functions
2022-12-06 12:01:41 -08:00
Jack·Boos·Yu
592158c502
[live555] Update to 2022-07-14 (#26144)
* [live555] Update to 2022-07-14

* version

* Update ports/live555/vcpkg.json

Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>

* Update versions/l-/live555.json

Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
2022-08-04 10:38:23 -07:00
Cheney Wang
8b63797138
[live555/guilite/polymorphic-value] Update version (#24555)
* [live555/guilite] Update version

* [polymorphic-value] Update version

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-05-06 16:54:57 -07:00
JonLiu1993
d0920bbf7a
[live555] Fix install head failed (#22190)
* [live555] Fix install head failed

* update version

* update live555 to the latest version

* update version
2021-12-28 15:04:54 -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