aboutsummaryrefslogtreecommitdiff
path: root/ports/libigl/CONTROL
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-03[libigl] fix imgui feature (#19746)Dorq
* [libigl] fix imgui feature * run x-add-version
2021-02-08[libigl] Always install as header-only library (#14888)Fabien Péan
* [libigl] Always build as header-only library * [libigl] Always build header-only Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-11-11[libigl] Fix dynamic build and enable header-only mode (#14376)Fabien Péan
* [libigl] Fix dynamic build and enable header-only mode * Update portfile.cmake Co-authored-by: Lily <47812810+LilyWangL@users.noreply.github.com>
2020-09-11[libigl] Re-fix install extra headers (#13471)Jack·Boos·Yu
2020-09-09[libigl] Install extra headers when feature selected (#13424)Jack·Boos·Yu
2020-08-24[libigl] fix imgui feature (#12691)nicole mazzuca
2020-08-01[libigl] Fix configure error and dependencies (#10252)Jack·Boos·Yu
* [libigl] Fix configure error and dependencies * convert patch EOL * [libigl] Update to 2.2.0 * Update ports/libigl/CONTROL Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2020-04-30[imgui] Add feature bindings and remove feature example (#10253)Jack·Boos·Yu
* [imgui] Separate feature tools from feature example * [imgui] Separate feature tools from feature example Co-authored-by: JackBoosY <yuzaiyang@microsoft.com>
2019-10-29[libigl]Add port libigl, add features. (#8607)JackBoosY
* [libigl]Add port libigl, add features. * [libigl]Re-generate patch. * Trigger CI. * [libigl]Correct homepage.