Kai Pastor
b01fbe8d6f
[tidy-html5] Update to 5.8.0, dynamic linkage, unique link lib name ( #25478 )
...
* Update to 5.8.0
* Revise portfile
* Disable doc
* Enable shared linkage
* Fix debug pc file
* Fix PDB installation
* Update versions
* Revert lost version
2022-07-07 14:33:38 -07:00
Kai Pastor
5a8ff0088a
[libxml2,libxslt] Revise dependency handling ( #24935 )
...
* Update mingw support expressions
* Update versions
* Use pkg-config for complete libgcrypt dependencies
* Remove crypto from default features
Align with CMake build system defaults.
* Drop unused liblzma dependency
* Update versions
* Skip installation of docs
* Update versions
* Restructure patches
* Update versions
* CI [skip actions]
* Revise libxml2 wrapper
* Omit CONFIG from find_package(LibXml2)
* Test libxml2 with, and fix for, CMake 3.7
* Update versions
* More libxml2 wrapper changes
* libxslt gcrypt variable name changes
* Install usage
* Trim portfile
* [openscap] Use vcpkg pkg-config database
* [openscap] Unbreak find_package(Threads)
* Update versions
* Update CI baseline
* REQUIRED is a literal
* Update versions
* Always load libxml2 config instead of find module [skip actions]
* [libxmlmm] Fix linking to libxml2
libxml2 needs iconv include dir on Windows.
* [libxmlmm] License field and processing
* [libxmlmm] Export unofficial CMake config
* [libxmlmm] Change target prefix, not global default
* Revert cmake-user changes
* Set LIBXML2_FOUND
* Update versions
* Fix xslt-config
* Update versions
* Adjust tidy-html5
* Update versions
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-07-06 14:30:42 -07:00
Alexander Neumann
e9558a41e1
[baseline] fix tidy-html5 ( #23566 )
...
* fix tidy-html5 in CI
* version stuff
* version stuff
* copy to share/${PORT}
Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>
* version stuff
Co-authored-by: Alexander Neumann <you@example.com>
Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>
2022-03-16 11:48:58 -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
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
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00