gerard-ryan-immersaview
6db51d86a9
[vcpkg_replace_string] warn unchanged by call ( #34719 )
...
If a call to `vcpkg_replace_string` makes no changes i.e doesn't
effectively replace a string, A warning is logged.
This should also help identify ports that no longer need these calls to
fix things in `.pc` files etc.
2024-06-19 14:07:05 -07:00
Kai Pastor
bb8654acb1
[libgeotiff] Update to 1.7.3 ( #38885 )
2024-05-30 10:27:11 -07:00
Osyotr
a9e8ed2469
[gdal] Don't depend on default features of proj ( #31606 )
2023-05-25 15:08:27 -07:00
reito
8c9416f444
[multiple-ports] Fix missing usage ( #29345 )
...
* Fix missing usage
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
2023-02-09 10:59:04 -08:00
Kai Pastor
e6c8c2bc05
[gdal] Update to 3.5.1, build with CMake ( #22392 )
...
* Build with CMake [skip actions]
* Update to 3.5.0 RC1 [skip actions]
* Update to 3.5.0RC2
* Use GDAL_USE_INTERNAL_LIBS=OFF
* Use lower-case config path
* Add LERC support
* Fix tiff linkage in libgeotiff
* uwp is unsupported
* core doesn't imply lerc
* Drop legacy build
* Feature and portfile cleanup [skip actions]
* Cleanup wrapper
* Pass on libspatialite usage requirements
* Update versions
* Remove hfd5/netcdf from default for android
* Update versions
* Fix wrapper
* Update versions
* Fix libgeotiff config
* The wrapper needs pkgconf for libspatialite
* Update versions
* Remove obsolete patch
* Update to v3.5.1-RC1
* Burn host triplet into config, require pkg-config
* Fix libspatialite link libraries [skip actions]
* Update versions in manifests
* Update versions
* Remove obsolete wrapper code [skip actions]
Complements 5c4f512
.
* Update to 3.5.1RC2 [skip actions]
* Handle additional link dependencies using pkg-config [skip actions]
* GDAL's find modules rely on PkgConfig
* Update to 3.5.1
* Update versions
2022-07-07 15:05:52 -07:00
Kai Pastor
ee2fa5303c
[libgeotiff] Update to 1.7.1 ( #23446 )
...
* Update to 1.7.1
* Update versions
* CI
2022-03-23 12:24:10 -07:00
Kai Pastor
fb3416466f
[proj, proj4] Update to PROJ 9.0.0 & make proj the regular port ( #23186 )
...
* Update to PROJ 9.0.0 & make proj the regular port
* Consolidate files in share, move data to subdir
* Update versions
* Update proj to 9.0.0 RC2
* Add license fields
* Update versions
* Update to PROJ 9.0.0 release
* Update versions
* Update versions
2022-03-09 10:33:02 -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
Matthias Kuhn
ed98cae63f
[libgeotiff] fix build on ios ( #19113 )
...
* libgeotiff on ios
* x-add-version
2021-07-26 11:10:39 -07:00
Kai Pastor
fc07d6946c
[libgeotiff] Fix mingw build ( #17206 )
...
* Provide install dir parameters
Fixes a build error with MINGW.
* Update version
2021-04-12 11:14:09 -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