aboutsummaryrefslogtreecommitdiff
path: root/ports/date
AgeCommit message (Collapse)Author
2021-10-05[date] Update to 3.0.1 (#20481)chausner
* Update date to 3.0.1 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
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-02-03[date] Fix vcpkg_fixup_cmake_targets for mingw (#15994)Long Nguyen
* [date] Fix vcpkg_fixup_cmake_targets for mingw * [vcpkg baseline] Update date port-version * [date] Tweak Windows detection Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> * [vcpkg baseline] Update date port-version again Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
2020-08-07[date] Fix config.cmake and usage (#12739)Jack·Boos·Yu
* [date] Fix config.cmake and usage * Correct fix * Remove wrapper and usage
2020-06-23[date] Update to 3.0.0 (#11968)Jack·Boos·Yu
2019-11-21[date] update to latest versionAlexej Harm
[date] added cmake 3.14 backwards compatibility patch
2019-09-17[date] Add official CMake targets support (#8151)Alexej Harm
2019-07-24[date] fix issue 6530 (#7399)Phoebe
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-17Vcpkg update Howard Hinnant [date] port to latest (#6501)muriukip
* Update vcpkg to include latest version of HowardHinnant-date code. To fix windowsZones.xml URL change. * [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from HowardHinnant/date * Revert "[date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from" This reverts commit 1d71b07aec57d11f07641ff2b2b3c65a717b4ad4. * [date] Update to ed0368fc75427ef05cefdf19a39b60d7bed2f039 from HowardHinnant/date
2019-04-29[date] Update the version to the latest commit. (#6131)NancyLi1013
2019-04-03[date] Fix failures in UWP with latest commit (#5932)LarryIII
2018-04-12[abseil][aws-sdk-cpp][breakpad][chakracore][cimg][date][exiv2][libzip][rs-co ↵Robert Schumacher
re-lib] Upgrades
2018-04-12[date] Fix Linux&OSX, add unofficial targetsRobert Schumacher
2018-02-12Fix date issueAlisayyy-Yang
2018-01-12[date] Update to 2.4 cont. (removed DATE_BUILD_LIB usages)Vitaliy Parinov
2018-01-11Update HowardHinnant/date to 2.4Vitaliy Parinov
2017-11-22[date] Update. Resolves #2222Alexander Karatarakis
2017-11-17[date] Update to 2.3Alexander Karatarakis
2017-08-31[date] Howard HInnant date utils initatkawa7
2017-08-15[date] init portatkawa7