Commit Graph

11 Commits

Author SHA1 Message Date
مهدي شينون (Mehdi Chinoune)
e5fb790328
[qtkeychain] update to 0.14.1 (#33730) 2023-09-13 15:53:40 -07:00
autoantwort
bcc2da559c
[qtkeychain] add missing dependency (#30395) 2023-03-24 22:04:16 -07:00
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
JonLiu1993
a150b774a0
[qtkeychain] update to 0.11.1 (#14011)
* [qtkeychain] update to 0.11.1

* [qtkeychain] Update to 0.11.1

* Update ports/qtkeychain/portfile.cmake

* Update ports/qtkeychain/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-10-17 02:11:19 -07:00
Alexander Neumann
3bffe1c049
[qt5] update qt to 5.15 and make ports depend on qt5-base[core]. (#11596)
* [qt5] update qt to 5.15 and make ports depend on qt5-base[core].

* [qt5] update and remove patches

* [baseline] skip qt5-canvas3d due to deprecation

* [qwt] update to 6.1.4 and fix build issues

* [qt5-webengine] remove old patches

* [qwt] fix static patch

* [qt5-location] add a message that the port has a sprious failure

* [qt5-webengine] fix filename of patch

* [qt5-webengine] add build.patch (ci is probably fast than me in checking for more errors)

* [qt5-winextras] depend on qt5-base[core]

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [qt5-base] update latest feature (latest=core)

* [baseline] remove qt5-webengine for nonstatic windows since CI can handle it now

* [qt5-base] make qt5-base fail to get logs.

* [angle] include missing egl sources.

* [qt5-base] patch egl detection logic.

* [baseline] remove qt-x11extras:x64-linux=fail

* [qt5-base] need to be explicit about xcb to build qt5-x11extras

* [CI] add necessary system libraries to linux CI

* [qt5-base] remove comment to retry on linux

* [qt5-base] add static_init patch for MSVC

* [qt5-base] refined workaround to not regress linux and osx due to

* [paraview] remove unnecessary patches with newer qt versions

* [vcpkg/baseline] add webengine back to skip

* [vtk] fix missing include regression using patch from upstream

* [vtk] fix patch

* [qt5-base] replace with patch from upstream

* [paraview] use hdf5 1.10 api.

* [paraview] bump control

* Add more packages to Linux machines.

* [qt5-base] forgot to add the patch

* Delete 6943.diff

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-07-08 15:34:35 -07:00
Long Huan
6b99a1dddc [qtkeychain]Add new port (#7760)
* new port qtkeychain

* Update CONTROL

* not build translations on linux 

Avoiding issues #7771 by not build translations on linux
2019-08-20 08:43:20 -07:00