Lily Wang
c581ba650b
[pdal] Fix gcc-8 compatibility ( #27163 )
...
* [pdal] Fix gcc8 compatibility
* x-add-version
2022-10-18 18:20:40 -07:00
Kai Pastor
7bd1ddfe86
[pdal] Update to 2.4.3 ( #26435 )
...
* Update to 2.4.3
* Update versions
2022-08-23 10:20:48 -07:00
Florian Albrechtskirchinger
82da19b369
[pdal] Prepare for nlohmann-json 3.11.x ( #26206 )
...
* [pdal] Prepare for nlohmann-json 3.11.x
In nlohmann-json 3.11.0, json_fwd.hpp changed.
Replace PDAL's internal copy of the file as part of the de-vendoring
process.
* [pdal] Bump port version
* [pdal] Add dependency nlohmann-json
* [pdal] Update versions
2022-08-08 12:07:58 -07:00
Kai Pastor
465dfc5e0f
[pdal] Update to 2.4.0 ( #24355 )
...
* Update to 2.4.0
* Update versions
* Use check, not patch, for C++17 filesystem support
* Update versions
* Update license
* De-vendor nanoflann and nlohmann-json
* Update versions
* Fix nlohmann de-vendoring
* Update versions
2022-05-06 16:30:21 -07:00
Kai Pastor
25eb51a36b
[pdal] Revise and update ( #21275 )
...
* Modernize portfile, use vcpkg_from_github
* Revise cleanup and tool installation
* Fix static linkage with gdal
* Fix static linkage with PostgreSQL
* Fix compiler options
* Fix APPLE linker flags
* Don't use /usr/local/include
* Remove pdal failure from CI baseline
* Remove outdated FindICONV.cmake
* Simplify geos package lookup
* Separate boost patch from other dependencies
* Simplify boost patching
* Update to 2.3.0
* PDAL supports only dynamic linkage
* Normalize find_library
* Dependencies, features and plugins
* Update pdalboost fixup
* Fixup pkgconfig
"Requires" in pc file is incomplete, and not needed for dynamic linkage in vcpkg.
* Override absolute plugin path
* Don't set RPATH
* Add usage
* [pdal-c] Update portfile
* [pdal-c] Don't enforce pdal features
* [pdal-c] Update to v2.1.0
* Update versions
* Convert tabs
* Update versions
* Patch NOMINMAX definition
* Update versions
* Use project include instead of patch
* Update versions
* Update 'supports' field
* Update versions
2022-01-11 14:56:08 -08:00
Kai Pastor
369878e686
[libgeotiff] Update to 1.7.0, revise features and config ( #21253 )
...
* Update to 1.7.0
* Refresh patches, drop fix-proj4.patch
* Restore GeoTIFF cmake package name (reverts #15750 )
* Add usage (reason: #15723 )
* Remove zlib dependency, transitive usage only
* Move tools to optional feature
* Modernize portfile, fix copyright
* Don't install doc and man files
* Trim main patch
* Allow reduced tiff dependencies
* Update versions
* Remove libgeotiff uwp failure from CI baseline
* Update GeoTIFF in gdal wrapper
* Update versions
* Update GeoTIFF in pdal config
* Update versions
* Switch to 'version' field
* Update versions
2021-11-10 14:54:19 -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
NancyLi1013
82a9a8436e
[libgeotiff] Fix packagename via find_package ( #15750 )
...
* [libgeotiff] Fix packagename via find_package
* Update port_versions
* Update portfile.cmake
* Update patch
* [libgeotiff] Fix packagename via find_package
* Update port_versions
* Update patch
* [pdal] Fix geotiff package name
* Update versions
* [pdal] Update dependency
* Update versions/p-/pdal.json
2021-01-28 19:26:11 -08:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00