Commit Graph

7 Commits

Author SHA1 Message Date
Daniel Schürmann
abb073fc56
[qtkeychain] Fix the CMake export target on windows (#25018)
* [qtkeychain] Fix the CMake export target on windows

* [qtkeychain-qt6] Fix the CMake export target on windows
2022-06-02 15:18:27 -07:00
Daniel Schürmann
6960e3f076
[qtkeychain] Update to 0.13.2+2 to fix the exported CMake target (#24013)
This allows to link the target application using CMake < 3.18
and fixing a regression since v0.13.0
2022-04-13 11:13:15 -07:00
Vitaly
3989093626
[qtkeychain] Support to build with less dependencies (#21965)
* [qtkeychain] Support to build with less dependencies

* Update version database
2021-12-13 12:22:14 -08:00
Be
7939be217b
[qtkeychain(-qt6)] update to 0.13.2 (#21529)
This allows to remove the nonstandard QTKEYCHAIN_STATIC variable.
2021-11-19 22:19:18 -08:00
Robert Schumacher
48030200e1
[qtkeychain] update to 0.13.1 (#21420)
and add libsecret as a dependency for Linux

Co-authored-by: Be <be@mixxx.org>
2021-11-15 08:53:52 -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
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00