Commit Graph

31 Commits

Author SHA1 Message Date
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
Robert Schumacher
75bd2efe0d
[many ports] 2019.09.14 Updates (#13536)
* [many ports] 2019.09.14 Updates

* Revert failure ports

* Revert failure ports

* Revert failure ports

* [urdfdom] Fix find dependency console_bridge

* Revert failure ports

* [devil] Compatible with jasper 2.0.20

* [devil] Refix compatible with jasper functions declaration on different os

* Update ports/alembic/CONTROL

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* Revert failure ports wangle

* [azure-kinect-sensor-sdk] Fix build with matroska 1.6.2

* Revert failure ports

* Revert failure ports

* [urdfdom-headers] Fix include path in config.cmake file

* upload patch

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5-imageformats] Fix missing include math.h

* [urdfdom-headers] Refix include path in config.cmake file

* [qt5] Fix adding option PATCHES and other options when using qt_submodule_installation

* Remove updated ports version

* Commit suggestions

* [libideviceactivation] revert

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-10-13 13:17:32 -07:00
JonLiu1993
64a281b865
[range-v3] Update to 0.11.0 (#13630)
* [range-v3] Update to 3.11.0

* [range-v3] Update to 0.11.0
2020-09-27 18:00:17 -07:00
Christopher Di Bella
c6d69984ed
updates range-v3 (#12346)
Tip-of-trunk range-v3 more closely resembles C++20.
2020-07-09 10:23:13 -07:00
Casey Carter
d4c6dd4808
[range-v3] Update to HEAD to fix /std:c++17 regressions. (#11031) 2020-04-27 06:58:39 -07:00
NancyLi1013
b9794a59a3
[range-v3] Update to 0.10.0 (#10002) 2020-02-13 22:51:45 -08:00
Robert Schumacher
08c951fef9
[many ports] Upgrades to 2020.02.08 (#9986)
* [many ports] Upgrades to 2020.02.08

* Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl

* Update ci baseline file

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2020-02-10 16:08:57 -08:00
Daniel Marshall
19e0169637 Update CONTROL file 2019-10-14 07:19:07 +01:00
Daniel Marshall
7df6a2d037 Update range-v3 to 0.9.1 2019-10-13 18:57:21 +01:00
Casey Carter
9c69826345 Update range-v3 reference (#7845)
To fix breakage in VS2019 16.3p2 with the range-v3 0.5.0 (latest) release.
2019-08-23 08:28:37 -07:00
Daniel Marshall
faf17a0f4a Fix homepage for range-v3(-vs2015) (#7049) 2019-06-26 10:34:19 -07:00
pravic
18b029a5e3 [WIP] Add a Homepage URL entry for vcpkg ports (#2933)
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Casey Carter
969ed5fbc1 [range-v3] Update to 0.5.0 (#6283) 2019-05-02 09:20:45 -07:00
Casey Carter
f9c461cece [range-v3] Update to latest (#5365) 2019-02-14 18:36:29 -08:00
Casey Carter
4c6950adcb [range-v3] Update to cf8add9 (#4865)
...which works around LWG 3170.
2018-11-29 19:24:40 -08:00
Casey Carter
f0093f7475 Update range-v3 reference (#4801) 2018-11-22 19:44:57 -08:00
Casey Carter
bcac1dc581 Update range-v3 upstream commit (#4741) 2018-11-15 14:30:24 -08:00
Casey Carter
5b41d50f97 range-v3: update the commit; don't build tests 2018-10-31 14:58:06 -07:00
Alexander Karatarakis
70cf49fac2 [range-v3] Update. Use ericniebler/range-v3 even for Windows 2018-10-30 14:10:41 -07:00
Robert Schumacher
4d28651f9e [range-v3] Split ports to enable newer range-v3 versions on linux 2018-05-01 01:45:38 -07:00
Casey Carter
3f43b56bd9 Update Range-V3-VS2015. 2017-12-18 20:59:31 -08:00
Casey Carter
eac9ab7fab [range-v3] update version
...and don't bother with the "get upstream and then patch" dance.
2017-05-30 18:10:37 -07:00
Voskrese
506f396a84 File does not have expected hash
File path: [ E:/tools/vcpkg/downloads/range-v3-fork_base_to_00ed689bac7a9dcd8601dbde382758675516799d.diff ]
      Expected hash: [ 615a53ebac22df03e865bdcc86580914c4505ec5fc691b6a2f864f7bf63690b99d0da0db2d5b1026e34b0a3f7557f30dfa0cad65643bae0b53c0ec066af9eb8e ]
        Actual hash: [ 6158cd9ee1f5957294a26dc780c881839e0bae8610688a618cd11d47df34d5e543fa09ac9a3b33d4a65af8eceae0a6a3055621206c291ef75f982e7915daf91a ]

  Please delete the file and retry if this file should be downloaded again.
2017-05-30 17:57:00 +03:00
Casey Carter
73eeec2d3c Update to latest revision of Range-V3-VS2015 2017-03-27 13:41:51 -07:00
Alexander Karatarakis
afc5d0837b [range-v3] Mark as header-only library 2016-10-26 19:31:53 -07:00
Casey Carter
fe1b146eec Change version to "20150729-vcpkg2"
...to reflect this is based on the upstream sources as of 20150729, and
the second release of the patch based on that same upstream.
2016-10-18 15:53:20 -07:00
Casey Carter
6fb82365f4 range-v3 builds from 2 distinct pieces:
* Upstream sources from the fork point (6eb5c831ff)
* Separate patch that applies MSVC workarounds from https://github.com/Microsoft/Range-V3-VS2015
2016-10-17 17:11:42 -07:00
Alexander Karatarakis
3679955544 Introduce SOURCE_PATH to almost all portfiles 2016-09-28 17:05:56 -07:00
Ninetainedo
930d0a7ded URL and MIRRORS are now URLS
Updated all portfiles accordingly.
2016-09-25 00:23:04 +02:00
Ninetainedo
fc26083995 Second part of updated portfiles 2016-09-22 22:13:09 +02:00
Alexander Karatarakis
ccca198c1b Initial commit 2016-09-18 20:54:03 -07:00