aboutsummaryrefslogtreecommitdiff
path: root/ports/xerces-c
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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 ```
2020-07-02[xercesc] rename feature from xmlch_wchar to xmlch-wchar (#12205)Johnny Willemsen
2020-04-17[xerces-c] Update to version 3.2.3 (#10779)Roger Leigh
* [xerces-c] Update to version 3.2.3 Drop patch no-symlinks-in-static-build.patch (fixed upstream) * [xerces-c] Correct version number * [xerces-c] Remove no-symlinks-in-static-build.patch
2020-01-29[xerces-c] fixed issue #9654 using git tag (#9702)Adam Mitz
2020-01-21Fix osx baseline build failures (#9726)Jack·Boos·Yu
* [xerces-c] Update REF and SHA512 * [sfml] re-trigger ci * [pcl] re-trigger ci * [boost-signals] re-trigger ci * [tmxparser] re-trigger ci * [soil2] switch repo to github * [gtest] re-trigger ci
2019-08-12[tiff][tesseract][xerces-c] Disable unmanaged optional dependencies (#7622)Robert Schumacher
2019-08-06[xercec-c] no symlinks in static build (#7490) (#7500)crusader-mike
2019-06-20[xerces-c]Replace the macro DLL_EXPORT with the macro XERCES_DLL_EXPORT (#6970)JackBoosY
* [xerces-c]Disable defining DLL_EXPORT to avoid affecting other ports * [xerces-c]Replace the macro DLL_EXPORT with the macro XERCES_DLL_EXPORT
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-21[many ports] Updates 2019.05.19 (#6524)Robert Schumacher
2019-03-30[xerces-c] Add libraries required on osx to target using wrapper (#5858)Sean Warren
* [xerces-c] Add libraries required on osx to target using wrapper * [xerces-c] Bump version number
2019-03-08[xerces-c] Add support for xmlch_wchar feature (#5602)Johnny Willemsen
* Add feature for wchar * ports/xerces-c/portfile.cmake: * Document new feature * ports/xerces-c/CONTROL: * [xerces-c] bump control version number
2018-12-12xalan-c: Remove use of obsolete unary_ and binary_function for C++17 ↵Roger Leigh
compatibility (#4575) * xalan-c: Remove use of obsolete unary_ and binary_function for C++17 compatibility * [xerces-c] Improve port stability by adding control over ICU dependency
2018-11-01[xerces-c] Avoid building executables (#4576)Robert Schumacher
2018-10-24[xerces-c] Update to 3.2.2 (#4246)Roger Leigh
* [xerces-c] Update to 3.2.2 * [xalan-c] Build against xerces-c 3.2.2 and include extra patches * [xalan-c] Use new vcpkg_extract_source_archive_ex() * [xerces-c] Use vcpkg_fixup_cmake_targets * [xerces-c] Disable vcpkg_test_cmake due to misbehavior in x64 * [xerces-c] Remove bin directory when building static * [xalan-c] Modernize
2018-03-08[msix] Initial commit of 1.0Robert Schumacher
2017-08-31Removing explicit setting of SOURCE_PATHpaercebal
2017-08-30use vcpkg_from_github insteadpaercebal
2017-08-30Update xerces-c port files to retrieve it from githubpaercebal
2017-04-09[xerces-c]: Certain headers include .c files, this commit ensures that such ↵Jackie Ng
files are also copied across
2017-04-08[xerces-c] Fixup omission in previous commit -- handle CRT as well.Robert Schumacher
2017-04-08[xerces-c] Fix packaging to also deploy the built libraryRobert Schumacher
2017-01-26Rename xercesc to xerces-c and fix copyright file placementAlexander Karatarakis