aboutsummaryrefslogtreecommitdiff
path: root/ports/gdcm2
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 ```
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-09[gdcm]Update to v3.0.0 and rename to gdcm. (#6348)JackBoosY
* [gdcm]Update to v3.0.0 and rename to gdcm. * [gdcm2]Add empty port "gdcm2" mapping to port gdcm
2019-04-15[many ports] Updates 2019.03.29 (#5698)Robert Schumacher
* Updates 2019.03.29 * Undo changes to 4 ports(rocksdb tbb thrift uwebsockets) due to failures * [folly] Fix target files in debug mode * Undo glog changes since it caused sophus openmvg and cartographer failures * Undo Folly changes since it cause wangle failed * Undo Folly portfile
2018-12-11[gdcm2] fix improper cmake file setup (#4880)James Chang
* move cmake files to proper location, and modify path in contents accordingly * workaround cmake script to find openjpeg package, and include openjpeg in Build-Depends list * [gdcm2] Use vcpkg_fixup_cmake_targets()
2018-10-26Upgrades 2018.10.25Robert Schumacher
2018-06-12Upgrades for 2018.06.12Robert Schumacher
2018-04-05[abseil][aws-sdk-cpp][azure-c-shared-utility][azure-iot-sdk-c][azure-uamqp-c ↵Robert Schumacher
][azure-umqtt-c][breakpad][exiv2][gdcm2][grpc][nuklear][rocksdb][rs-core-lib][thrift][zeromq] Upgrades
2018-03-21[caf][gdcm2] UpgradesRobert Schumacher
2018-02-23[azure-storage-cpp][cpp-redis][dirent][doctest][gdcm2][grpc][llvm][matio][sp ↵Robert Schumacher
dlog][yaml-cpp] Upgrades
2017-10-21Update GDCMShinya Onogi
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-05-17[GDCM2] Use vcpkg_from_github() to simplify portfileRobert Schumacher
2017-05-17[GDCM2] Update to 2.6.8Shinya Onogi
2017-03-21[gdcm2] Remove empty folders in static buildAlexander Karatarakis
2017-03-20Update portfile.cmakeShinya Onogi
Fixed the location of ${GDCM_BUILD_SHARED_LIBS}
2017-03-20Added: Selection of library linkage typeShinya Onogi
Selection of library linkage type is added
2017-03-20add a new port, GDCMShinya Onogi