Commit Graph

8 Commits

Author SHA1 Message Date
Jia Yue Hua
3e1ca9d1f6
[leveldb] update to 1.23 (#34179) 2023-10-02 17:37:58 -07:00
JonLiu1993
280e7673e7
[leveldb] Install util header files (#22650)
* [leveldb] Install util header files

* update version

* update patch

* update version

* update version

* update version

* update patch

* update version

* update patch

* update version

* Apply review suggestion

* update version

* Fix conflict files

* update version

* update version

* [leveldb] Install util header files

* update version

* Add patch

* update version

---------

Co-authored-by: Zhao Liu <v-zhli17@microsoft.com>
2023-09-20 09:51:12 -07:00
Thomas1664
ee3980f5fc
[leveldb] Disable tests and benchmarks (#27463)
* [leveldb] Disable tests and benchmarks

* version

* format

* version
2022-10-25 21:11:27 -07:00
MacroFake
a81c4838bc
[leveldb] Fix homepage (#23180)
Follow up to commit 578139ece7, which
changed the upstream.
2022-02-22 12:13:26 -08:00
LilyWangLL
3ab5fc5925
[leveldb] Fix target "Threads::Threads" was not found (#23126)
* [leveldb] Fix target "Threads::Threads" was not found

* update version

* add dependency pthreads

* update version

* remove pthreads

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-02-18 14:37:04 -08:00
Jack·Boos·Yu
81d6c5ec18
[leveldb] Fix find and use depencencies (#23048)
* [leveldb] Fix find and use depencencies

* version

* Update ports/leveldb/portfile.cmake

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* Update ports/leveldb/portfile.cmake

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* Update versions/l-/leveldb.json

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
2022-02-15 20:34:42 -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