aboutsummaryrefslogtreecommitdiff
path: root/ports/live555
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 ```
2019-12-20[live555] Fix live555:x86-windows-static build failure (#9303)Alvin
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-02Remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS (#5937)Victor Romero
* [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-01[Live555]Update version to 'latest' (#6267)LarryIII
2019-04-23[live555] update download URL (#6176)Phil Christensen
2019-04-03[live555] Update the download path (#5919)Cheney Wang
2018-10-09[live555] fix linux build : invalid conversion socklen_t (#4403)Erwan BERNARD
2018-08-29[live555] Improve error messageAlexander Karatarakis
2018-08-29[live555] update live555Cheney-Wang
2018-08-29[Live555] Update to latestCheney-Wang
2018-08-15[live555] Update to 2018.08.05 (#4087)Cheney Wang
2018-08-03[Live555] Add missing symbols due to missing C files and copy paste bug (#4002)Marcus Asteborg
* Add missing symbols due to missing C files and copy paste bug * [live555] Bump control version to include package change
2018-07-13[live555] Update to 2018.07.07 (#3895)pravic
* [live555] Update to 2018.07.07 * [live555] Update SHA512 hash too.
2018-07-02[cmark][gl3w][libpopt][libraw][libssh][live555] Fixes, mostly around ↵Robert Schumacher
changing download locations.
2018-03-01upgrade the version of live555 (#2915)Alisayyy-Yang
2018-02-23[live555] Update and simplifyRobert Schumacher
2018-01-31update live555Alisayyy-Yang
2017-12-07[live555] Set version instead of latest and update CONTROL fileAlexander Karatarakis
2017-12-07updata live555 live555-latesthwq@peergine.com
2017-10-27[live555] Update to 2017.09.12. Resolves #2066Alexander Karatarakis
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-06-13removed testing cmake listatkawa7
2017-06-13added Live555 #19atkawa7