Kai Pastor
|
bd4cdff20a
|
[libxmlmm] Fix exported config (#41770)
|
2024-10-26 02:15:57 -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 |
|
Thomas1664
|
c37cc7836a
|
[many ports] Fix use of Readme as copyright (#24201)
* [jack2] Update to 1.9.21
* [libxmlmm] Fix license
* [volk] Fix license
* [tmxlite] Fix license
* [tinyxml2] Fix license
* [stb] Fix license
* [rtmidi] Fix license
* [pugixml] Update to 1.12.1
* [physx] Fix license
* [physx] License expression
* version
* lowercase
* null
* Format
* Remove version-string
* stb
* Format
* version
* Format
* version
* [tinyxml] port version
* version
* Fix license
* version
* [rtmidi] remove patch
* version
* [pugixml] Remove unused variable
* version
* [physx] Remove from CI baseline for testing
* [physx] update supports statement
* version
* [tmxlite] add final newline
* version
* [libxmlmm] Don't use own copyright file
* version
* Fix license copy
* version
|
2022-04-19 14:31:08 -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 |
|
Sean Farrell
|
2045a0e1dd
|
[libxmlmm ] Add new port libxmlmm 0.6.0 (#13139)
|
2020-08-31 17:58:24 -07:00 |
|