Commit Graph

6 Commits

Author SHA1 Message Date
John Willard
3975146c8a
[json-c] update to 0.17 2023-08-12 (#34381)
* [json-c] update to version 0.17 2023-08-12

* [json-c] update version database

* [clamav] update to version 0.103.11

* [clamav] update version db

* [clamav] add patch to compile isnt.cpp on windows

* [clamav] update version db

* [clamav] remove extra port version

* [clamav] update version db

* fix cmakelists.txt

* update version

* fix cmakelists.txt

* update git-tree

* remove fix-cmakelists.patch

* update git-tree

* format

* update git-tree

---------

Co-authored-by: Monica <liuyumei01@beyondsoft.com>
2024-02-06 12:45:43 -08:00
Frank
691dd562b5
[json-c] Fix build with clang (#30632)
* [json-c] Fix build with clang

* version

* add c-flags

* v db
2023-04-10 14:23:42 -07:00
Kai Pastor
3a484e1e7f
[json-c] Disable tests (#26450)
* Disable json-c tests

* Update versions
2022-08-22 09:35:38 -07:00
Alexander Neumann
c9bbaff157
[json-c] clang-cl fix. (#26254)
* [json-c] fix clang-cl builds

* v db
2022-08-10 11:25:10 -07:00
Luiz
a7f0aca862
[json-c] Updated to the version 2022-06-22 (#25565)
* [json-c] Updated to the latest version

* [json-c] Change

* [json-c] Fixes

* [json-c] Changes that have been requested

* [json-c] Formatted and x-add-version

* [json-c] Changes that have been requested

* [json-c] Changes that have been requested

* [json-c] Fix SHA
2022-07-07 14:19:24 -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