Commit Graph

12 Commits

Author SHA1 Message Date
SunBlack
5e25268284
[nanoflann] Update to 1.6.1 (#40648) 2024-08-27 01:27:42 -07:00
SunBlack
b705360162
[nanoflann] Update to 1.6.0 (#39924) 2024-07-15 13:28:51 -04:00
SunBlack
bb73c2eb7f
[nanoflann] Update to 1.5.5 (#38853) 2024-05-24 19:20:07 -07:00
Mengna Li
e13d13cf84
update to 1.5.1 (#35388) 2023-11-28 21:40:40 -08:00
MonicaLiu
bf7748b51a
[nanoflann] update to 1.5.0 (#32093)
* update nanoflann

* update version

* fix dependency nanoflann

* update version

* Modify EOF to LF

* update git-tree

* Modify MAYBE_UNUSED_VARIABLES

* update git-tree

---------

Co-authored-by: Monica <v-liumonica@microsoft.com>
2023-06-21 17:59:59 -07:00
Frank
3472e57850
[nanoflann] Update to 1.4.3 (#29378)
* [nanoflann] Update to 1.4.3

* update version

* use New function

* vdb
2023-02-02 19:57:45 -08:00
Thomas1664
72910aae4f
[nanoflann] Update to 1.4.2 (#24158)
* [nanoflann] Update to 1.4.2

* version
2022-04-15 13:28:03 -07:00
autoantwort
e7e328cf9d
[many ports] call vcpkg_fixup_pkgconfig() (#20953)
* [many ports] call vcpkg_fixup_pkgconfig()

The ports generate pc files, but don't call vcpkg_fixup_pkgconfig() so that there are absolute paths in the pc files

* Update port-version for armadillo and polyclipping.

* Update version database.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-27 15:19:28 -07:00
chausner
83261448a0
[nanoflann] Update to 1.3.2 (#20494)
* Update nanoflann to 1.3.2

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-04 17:14:16 -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
AlvinZhangH
cc34029989 [nanoflann]Add parameter PREFER_NINJA to function vcpkg_configure_cmake. 2019-11-21 15:35:42 +08:00
AlvinZhangH
8cf275110c [nanoflann]Add new port. 2019-11-11 11:00:23 +08:00