aboutsummaryrefslogtreecommitdiff
path: root/ports/graphicsmagick/CONTROL
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-13[graphicsmagick] update to version 1.3.36 (#15600)Josue Andrade Gomes
2020-12-31[graphicsmagick] Add delegates.mgk (#15245)NancyLi1013
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-06-26[vcpkg] Add vcpkg_from_sourceforge (1/2) (#11899)Jack·Boos·Yu
2020-06-18[graphicsmagick] fix Magick++.h header location. (#11926)Sean Yen
* fix Magick++.h location. * Update CONTROL
2020-03-04[graphicsmagick] update to 1.3.35 (#10281)nicole mazzuca
2020-01-10[graphicsmagick] Updated to GraphicsMagick-1.3.34 (#9596)Josue Andrade Gomes
* Updated to GraphicsMagick-1.3.34 * Fixes after review
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-19[graphicsmagick] updated to 1.3.33 (#8256)Josue Andrade Gomes
2019-07-31Add PREFER_NINJA to many ports (#7468)Phoebe
* Add PREFER_NINJA to many ports
2019-06-18Graphicsmagick 1.3.32 (#6947)Josue Andrade Gomes
* GraphicsMagick 1.3.32 * Fix missing header install
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-13[graphicsmagick] Linux/MacOS support (#6408)Josue Andrade Gomes
2018-11-28Update to GraphicsMagick 1.3.31 (#4847)Josue Andrade Gomes
2018-09-24[cairo][expat][fontconfig][graphicsmagick][libjpeg-turbo][pixman][tiff] Add ↵Robert Schumacher
unofficial targets and usage information
2018-07-03[graphicsmagick] version 1.3.30 (#3824)Josue Andrade Gomes
2018-06-16GraphicsMagick 1.3.29 (#3732)Josue Andrade Gomes
2018-04-04GraphicsMagick 1.3.28Josue Andrade Gomes
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-08-04[graphicsmagick] build fixesJosue Andrade Gomes
2017-08-01GraphicsMagick 1.3.26Josue Andrade Gomes
2017-04-23GraphicsMagick portJosue Andrade Gomes