aboutsummaryrefslogtreecommitdiff
path: root/ports/mpfr
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 ```
2021-01-24[mpc/mpfr] Add new port / update mpfr (#13081)Alexander Neumann
* [mpc] add mpc port * [mpfr] update mpfr to use make. * [gmp] fix preprocessor define for dlls. * more fixes * fix mpfr regression on !windows * install autoconf-archive in provisioning script * change indent of patches Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * fix merge error * update PR * update baseline Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
2020-04-06[mpfr] Add mirror for mpfr at gnu.org (#10035)Michael Konečný
* add mirror for mpfr at gnu.org * remove deprecated include(vcpkg_common_functions) * update version number after modified port * update copyright handling command to install
2019-10-07[vcpkg] fatal_error when patch fails to apply (#8087)Stefano Sinigardi
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-09-24update mpfr to 4.0.2 and fix build on osx (#8324)Lennart Trunk
* update mpfr to 4.0.2
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2018-12-19[mpfr] update CMakeLists for new versionPhil Christensen
2018-12-19[mpfr] fix version in CONTROL filePhil Christensen
2018-12-13[mpfr] bump control version numberPhil Christensen
2018-12-13Update mpfr to 4.0.1 and fix compilation under gcc 7ing. Federico Fuga
gcc 7 deprecates the use of varargs.h in favour of stdarg.h. mpfr already fixes it, but the fix is enabled if stdarg is available. This patch adds the test on CMakeLists.txt and enables the fix if needed.
2017-12-26mpfr: fix download linkxoviat
2017-11-29[mpfr] bump versionxoviat
2017-11-29[mpfr] prefer ninjaxoviat
2017-11-29[mpfr] revert portfile patchxoviat
2017-11-29[mpfr] define have_stdint_hxoviat
2017-11-29[mpfr] fix source pathxoviat
2017-11-29[mpfr] fix portfilexoviat
2017-11-29[mpfr] prepend stdint to headerxoviat
2017-11-29[mpfr] add MPFR_USE_INTMAX_Txoviat
2017-11-20[mprf] add missing symbol (#2226)xoviat
* [mprf] create printf * Update CMakeLists.txt * [mpfr:portile] copy file
2017-10-10update mpfr to 3.1.6jasjuang
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-08-08[mpfr] add initial portAlbert Ziegenhagel