autoantwort
abc27692f3
[pdal] fix cross build ( #33748 )
2023-09-18 10:00:59 -07: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
Kai Pastor
e99d61570b
[gdal] Update to 3.7.0 ( #31381 )
...
* [gdal] Update to 3.7.0
* [pdal] Fix build with gdal 3.7
2023-05-15 13:19:14 -07:00
Connor Broyles
1f7f116718
[pdal, pdal-c] Update to v2.5.3, v2.2.0 and fix GCC 13 build ( #31257 )
...
* [pdal] Update to v2.5.3
* [pdal] Update baseline
* [pdal-c] Update to v2.2.0
* [pdal-c] Update baseline
* update usage
* update version
---------
Co-authored-by: Monica <v-liumonica@microsoft.com>
2023-05-08 18:28:15 -07:00
autoantwort
b3e0a1e625
[pdal] Fix non default features builds ( #31044 )
2023-04-21 21:42:43 -07:00
Yury Bura
eb11dbb245
[libxml2] add more features ( #30154 )
...
* [libxml2] move hardcoded external dependencies (iconv, lzma, zlib) to features, disable legacy flag by default
* add version
* [libxml2] add ftp and http options
* overwrite version
* [libxml2] restore formatting, remove ftp from defaults
* overwrite version
* [libxml2] remove hhtp from default-features
* overwrite version
* [libxml2] add network future dependent on platform
* [libspatialite][pdal][spatialite-tools] define libxml2[http] dependency explicitly
* update versions
* [libspatialite] update version
* add version
* Revert "[libxml2] add network future dependent on platform"
* overwrite version
2023-03-22 16:20:43 -07:00
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