Cheney Wang
a7d78e010e
[live555] update to 2024-05-15 ( #38924 )
...
Fixes https://github.com/microsoft/vcpkg/issues/38912
No feature needs to be tested.
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md ).
- [x] SHA512s are updated for each updated download.
- [ ] ~The "supports" clause reflects platforms that may be fixed by
this new version.~
- [ ] ~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt )
entries are removed from that file.~
- [ ] ~Any patches that are no longer applied are deleted from the
port's directory.~
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-05-27 14:29:27 -07:00
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
Alvin
c77c1cd861
[live555] Fix live555:x86-windows-static build failure ( #9303 )
2019-12-20 12:00:56 -08: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
Victor Romero
050e71d01d
Remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ( #5937 )
...
* [various ports] remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS
* [alac,benchmark,capnproto] Fix check_linkage call
* [fastlz] Fix SHA512
* [coroutine] Fix dynamic build
* [folly] Find double-conversion
* [gamma] Use vcpkg_from_github
* [librsync] Enable static builds
* [netcdf-cxx4] Fix SHA512
* [octomap] Fix static build
* [tidy-html5] Fix static build
* [various ports] remove custom messages for shared/static builds, modernize some scripts in the meantime
* [folly] Use ras0219's fix for link paths
* [octomap] Fix exported targets
* [uvatlas] Set tool download SHA512
* [duktape+python2] fix portfile to call configure with correct python version, manage python2 also outside win32
* [suitesparse] osx fix
* [gtkmm] Call vcpkg_check_linkage after including vcpkg functions
* [duktape] Resolve conflicts
* [duktape] FIxed typo in Python paths
* [wangle] Find zlib
* [openssl-uwp] Fix SHA512
* [glib] Allow static builds on non-Windows
* [suitesparse] Fix build on Windows
* [multiple ports] Bump CONTROL version
* [multiple ports] Fix description indent
* [directxtk] Fix CONTROL file
* [bde,duktape,qpid-proton] Build packages with python2 installed
* [binn] remove CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS
* [gdal,live555,uriparser] Fix regressions
* [live555] Update to 2019.04.24
2019-05-02 22:57:43 -07:00
LarryIII
1e0b106d15
[Live555]Update version to 'latest' ( #6267 )
2019-05-01 11:54:01 -07:00
Phil Christensen
3e6a41dbc9
[live555] update download URL ( #6176 )
2019-04-23 12:44:41 -07:00
Cheney Wang
c8844f5e40
[live555] Update the download path ( #5919 )
2019-04-03 10:18:04 -07:00
Erwan BERNARD
9e0a9c4347
[live555] fix linux build : invalid conversion socklen_t ( #4403 )
2018-10-09 00:44:45 -07:00
Alexander Karatarakis
a6cff2bd57
[live555] Improve error message
2018-08-29 16:43:10 -07:00
Cheney-Wang
cfbd6d93d4
[live555] update live555
2018-08-29 16:27:24 -07:00
Cheney-Wang
66f09a0b60
[Live555] Update to latest
2018-08-29 16:27:24 -07:00
Cheney Wang
85c2fa9f0a
[live555] Update to 2018.08.05 ( #4087 )
2018-08-15 11:24:36 -07:00
Marcus Asteborg
7ed58da3ae
[Live555] Add missing symbols due to missing C files and copy paste bug ( #4002 )
...
* Add missing symbols due to missing C files and copy paste bug
* [live555] Bump control version to include package change
2018-08-03 00:17:36 -07:00
pravic
d7f41c9070
[live555] Update to 2018.07.07 ( #3895 )
...
* [live555] Update to 2018.07.07
* [live555] Update SHA512 hash too.
2018-07-13 14:26:55 -07:00
Robert Schumacher
b08e78b07d
[cmark][gl3w][libpopt][libraw][libssh][live555] Fixes, mostly around changing download locations.
2018-07-02 22:16:47 -07:00
Alisayyy-Yang
87c45c0b53
upgrade the version of live555 ( #2915 )
2018-03-01 08:30:47 -08:00
Robert Schumacher
2f25ab678a
[live555] Update and simplify
2018-02-23 23:00:39 -08:00
Alisayyy-Yang
39e3fa9360
update live555
2018-01-31 02:29:44 -08:00
Alexander Karatarakis
7efd70488c
[live555] Set version instead of latest and update CONTROL file
2017-12-07 13:20:05 -08:00
hwq@peergine.com
af8e296db5
updata live555 live555-latest
2017-12-07 12:12:35 +08:00
Alexander Karatarakis
adea63389a
[live555] Update to 2017.09.12. Resolves #2066
2017-10-27 15:27:21 -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
atkawa7
b20acde02c
removed testing cmake list
2017-06-13 17:16:51 -07:00
atkawa7
9a409006cf
added Live555 #19
2017-06-13 17:11:23 -07:00