Commit Graph

18 Commits

Author SHA1 Message Date
autoantwort
5b11232d00
[many-ports] Don't use deprecated functions (autogenerated) (#26981)
* [libuvc,qt5-virtualkeyboard] remove duplicated dependency entry

* [many-ports] don't use deprecated functions (autogenerated)

* atkmm: Fix license.
gperftools: Reformat vcpkg_check_features call.
gsl: Fix license.
libpff: Fix license.
pangomm: Fix license.
qtbase: Revert, only comment changes.
type-lite: Reformat vcpkg_check_features and actually use the feature options.

---------

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-04-13 09:13:15 -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
Dmitry Marakasov
c3b5fd0b18 Add homepage for beast (#7909) 2019-08-26 14:09:53 -07:00
Robert Schumacher
b79395c4ad Update downstream libraries to use modularized boost 2017-12-19 10:26:27 -08:00
Robert Schumacher
4ae13d4031 [beast] Fix download hash 2017-07-25 10:46:28 -07:00
Vinnie Falco
e8b4006196 [beast] Update to version 84 2017-07-20 13:22:38 -07:00
Vinnie Falco
aa5c657ac4 [beast] Update to version 76 2017-07-08 18:55:04 -07:00
Vinnie Falco
26b4897728
[beast] Update to version 66 2017-06-23 21:06:39 -07:00
Vinnie Falco
b8e9aed383 [beast] Update to version 63 2017-06-21 10:06:24 -07:00
Vinnie Falco
ce7d0d3743 [beast] Update to version 59 2017-06-16 09:23:09 -07:00
Vinnie Falco
517b3fabbb
[beast] Update to version 58 2017-06-15 12:52:52 -07:00
Vinnie Falco
2b08a3bf21 [beast] update to version 57 2017-06-14 20:41:19 -07:00
Vinnie Falco
d81930ce36
[beast] Update to version 56 2017-06-13 17:40:30 -07:00
Vinnie Falco
191f2bde0e
[beast] update to version 55 2017-06-12 16:58:20 -07:00
Vinnie Falco
b38ff27ef5
Update Beast package to version 54 2017-06-11 20:14:40 -07:00
Vinnie Falco
eefc1311a6
[beast] Update to v40 2017-05-11 16:41:30 -07:00
Robert Schumacher
ca26510f03 [beast] Use vcpkg_from_github 2017-05-03 04:49:43 -07:00
John Hruby
327087edc3 added beast library port 2017-03-13 09:25:15 +01:00