Commit Graph

25 Commits

Author SHA1 Message Date
chausner
e075169d0f
[usockets] Update to 0.8.1 (#20517)
* Update usockets to 0.8.1

* Update CI baseline

* Minor tweaks

* Update git-tree hash

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-05 16:36:01 -07:00
chausner
3469e10df5
[uwebsockets] Update to 20.5.0 (#20513)
* Update uwebsockets to 20.5.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-05 16:16:42 -07:00
Chuck Walbourn
339d01f19c
[directxtk, directxtk12, directxtex, directxmesh, uvatlas] ports updated for September 2021 release (#20457)
* Update for September 2021 GitHub releases

* Update directx tool kit ports

* Update versions

* Convert directxmesh and uvatlas to vcpkg-cmake

* Refresh version hash
2021-10-01 17:03:20 -07:00
chausner
1ecff29caf
[uwebsockets] Update to 19.9.0 (#20331)
* Update uwebsockets to 19.9.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-09-27 20:01:51 -07:00
myd7349
5b66fdd442
[uchardet] Update to 2021-09-03 (#19980)
* [uchardet] Update to 2021-09-03

* [uchardet] Bump version

* [uchardet] Fix UWP build

* [uchardet] Overwrite version

* [uchardet] Add version

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-13 14:58:13 -07:00
autoantwort
dd94ac64c1
[usrsctp] update to 0.9.5.0 (#20028) 2021-09-09 21:16:23 -07:00
myd7349
f0679e2444
[uthash] Add new port (#19823)
* [uthash] Add new port

* [uthash] Version stuffs
2021-09-09 21:11:53 -07: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
Phoebe
bcf551b980
[fftw3/libwebsockets/uwebsockets] Update to latest release (#20051) 2021-09-08 08:02:56 -07:00
myd7349
503d17d534
[uriparser] Update to v0.9.5 (#19820)
* [uriparser] Update to 0.9.5

* [uriparser] Add new version

* Small changes

Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
2021-09-07 21:04:44 -07:00
Jack·Boos·Yu
4eebfa3bef
[urho3d] Add features, fix usage (#18975)
* [urho3d] Add features, fix usage

* update version stuff

* fix typo

* Correct installation

* fix installation

* update version

* Re-fix install

* Fix tools install

* typo

* Update versions/u-/urho3d.json
2021-07-22 14:52:17 -07:00
Phoebe
514473137d
[utf8proc] Export cmake targets (#18860)
* [utf8proc] Export cmake targets

* Update the baseline version
2021-07-08 10:50:43 -07:00
Chuck Walbourn
cdc6c6b9c8
[uvatlas, spectra] ports updated (#18404)
* [uvatlas, spectra] ports updated

* Update versions

* Minor code review

* Update version

* Code review feedback

* Update baseline
2021-06-21 14:20:45 -07:00
JonLiu1993
48b93ecb2c
[uwebsockets] update to 19.2.0 (#18525)
* [uwebsockets] update to <v19.2.0>

* update version
2021-06-18 10:55:51 -07:00
Chuck Walbourn
92b42c4c68
[directxtk, directxtk12, directxmesh, directxtex, uvatlas] ports updated for June 2021 releases (#18366)
* [directxtk, directxtk12, directxmesh, directxtex, uvatlas] ports updated for June 2021 release

* added versions
2021-06-11 10:02:03 -07:00
Rémy Tassoux
b7644f0546
[utfcpp] Update to 3.2.1 version (#18299)
* [utfcpp] Update to 3.2.1 version

* [utfcpp] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2021-06-11 08:59:54 -07:00
JonLiu1993
6dfe4ade80
[unittest-cpp] fix config.cmake file (#17122)
* [unittest-cpp] fix config.cmake file

* update version

* update vcpkg.json

* update version
2021-06-10 11:48:54 -07:00
Todor Prokopov
655e1b4dab
[urho3d] Add new port (#14538)
* [urho3d] Add new port

* [urho3d] Build master branch

* [urho3d] Fix osx build

* [urho3d] Fix windows build

* [urho3d] Update to newest version

* [urho3d] Add versions info

* [urho3d] arm and uwp are not supported

* [urho3d] Update versions info

* [urho3d] Convert CONTROL to vcpkg.json

* [urho3d] Update portfile.cmake to use newer cmake functions

* [urho3d] Fix ExternalProject_Add error

* [urho3d] Update versions info
2021-04-28 17:32:42 -07:00
Billy O'Neal
a9b27ed5df
Update VMs, CMake to 3.20.1, CUDA to 11.3, and pwsh to 7.1.3 (#17331)
* Update to CUDA 11.3 on Windows.

* Update PowerShell to 7.1.3.

* Update CUDA to 11.3 on Linux.

* "Explode" VM provisioning scripts for more consistent feedback during deploy. This resolves the deployment script often hanging with no feedback as to why.

* [libdatachannel] Fix use of deprecated result_type typedef.

Submitted upstream as https://github.com/paullouisageneau/libdatachannel/pull/413

* [libvpx] Get the libvpx outputs from the correct place.

(Perhaps VS2019 version 16.10 moved where these are placed? I've been defensive and left an attempt to find from the old location in place.)

* [chromaprint] Support implementations where lrintf is an intrinsic.

* Add provision-entire-image script.

* [cudnn] Disable download-on-the-fly due to licensing concerns.

* Add libnccl to Linux VMs.

* [wangle] Disable x64-windows due to an ICE.

* [cmake] Update cmake to 3.20.1 to avoid https://gitlab.kitware.com/cmake/cmake/-/issues/21571 race

* [libudis86] Fix passing a bogus working directory which fails on CMake 3.20.x

* [dartsim] Disable unit tests, examples, and tutorials, some of which have CMake authoring errors rejected by 3.20.1.

* Add thrust to the cuda installees.

* [tensorflow] Put .bzl in CURRENT_BUILDTREES_DIR to avoid running out of disk space in CI and to respect --clean-after-build.

* [dimcli] Skip port broken by changes in VS2019 project system.

* [upb] Disable an additional warning.

* [libhv] Fix typo DISABLE_PARALLEL => DISABLE_PARALLEL_CONFIGURE

* Update pools
2021-04-26 10:27:45 -07:00
ras0219
e4096d6c17
[grpc][upb] Update to newer versions (#17422)
* [gRPC] 1.36.4

* [upb] update to 2020-12-19

* update version

* [upb] Fix config.cmake file

* [grpc] Restore using system upb

* [grpc][upb] Version db changes

* [grpc][upb] Fix building upbdefs in grpc

Co-authored-by: Jeong YunWon <jeong@youknowone.org>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-04-23 10:40:07 -07:00
Chuck Walbourn
2d7a8443ac
[directxtex,directxmesh, directxtk, directxtk12, uvatlas] updated for April 2021 releases (#17123)
* directxmesh, directxtex, directxtk, directxtk12, uvatlas updated for April 2021 release

* Updated versions
2021-04-09 09:54:41 -07:00
Andrew
e2d4023b23
[uWebSockets] updated to 19.0.0 alpha 5 (#16672)
* [uWebSockets] updated to 19.0.0 alpha 5

* versions db update

* Versions db update
2021-03-15 11:13:02 -07:00
Andrew
924ad6ad6c
[uSockets] update to version 0.7.1 (#16697)
* [usockets] Updated to version 0.7.1

* [usockets] Updated to version 0.7.1

* [usockets] Updated to version 0.7.1

* [usockets] Updated to version 0.7.1

* Diff patch applied

* Version DB update
2021-03-15 11:01:01 -07:00
JonLiu1993
c3c77073f8
[uWebSockets] update to 19.0.0 (#16496)
* [uWebSockets] update to 19.0.0

* update versdion

* modify vcpkg.json

* update version
2021-03-10 14:00:33 -06:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00