Jia Yue Hua
856e200a12
[mpfr] update to 4.2.1 ( #34177 )
2023-10-02 17:39:04 -07:00
Chuck Walbourn
5d2a0a9814
Update xbox supports expressions for failing ports with copyleft licenses ( #31770 )
...
* Xbox triplets should not support ports with only copyleft licenses
* Reverted ports that build with xbox currently
* Fix conflict and rebase
* Update baseline
* Update baseline
2023-06-15 14:49:00 -07:00
Cheney Wang
79c9b3074a
[mpfr] Update to 4.2.0 ( #28910 )
2023-01-19 17:59:49 -08:00
Łukasz Moroz
154fa56748
[mpfr] Update to 4.1.1 ( #27976 )
2022-12-28 13:12:11 -08:00
Lily Wang
68ad399d55
[mpfr] Add hint to install autoconf-archive for OSX ( #27634 )
...
* [mpfr] Add hint to install autoconf-archive for OSX
* x-add-version
* fix deprecated function
* x-add-version
* apply suggestion
* x-add-version
2022-11-04 14:56:43 -07:00
Mengna Li
3af5e21083
fix usage ( #26509 )
2022-08-25 10:38:49 -07:00
Thomas1664
67029c5d3d
[mpfr] Remove docs ( #26018 )
...
* [mpfr] Remove docs
* version
* license
* version
2022-07-29 12:53:41 -07:00
Alexander Neumann
2aa0d83ee7
[gmp] Switch sources on windows away from SMP fork. ( #23466 )
...
* [gmp] use native buildsystem on windows
* fix stuff from merge
* fix version
* version stuff
* trying patching some symbols for dynamic builds
* fix nettle build
* fix more dependent ports using gmpd
* fix uwp builds by copying tools
* missing host dep
* fix mpfr
* version-string nettle
* port-version mpfr
* version stuff
* remove patch from portfile
* version stuff
Co-authored-by: Alexander Neumann <you@example.com>
2022-03-23 12:14:40 -07:00
Kai Pastor
55e666af39
[mpfr] Skip doc and examples ( #22859 )
...
* Trim build
* Update license info
* Update versions
* Remove mpfr from ci baseline
2022-02-16 12:56:41 -08:00
LilyWangLL
c6e208fccf
[mpfr] Add warning message on Linux ( #21940 )
...
* [mpfr] Add warning message on Linux
* update version
* Update portfile.cmake
* update version
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-10 14:01:15 -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
Alexander Neumann
f2ec6c5a7c
[mpc/mpfr] Add new port / update mpfr ( #13081 )
...
* [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>
2021-01-24 23:01:16 -08:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00