Commit Graph

39 Commits

Author SHA1 Message Date
autoantwort
76e276ecfb
[ecsutil] use support expression (#28852) 2023-01-11 23:15:16 -08:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. (#22770)
* Bulk remove vcpkg_fail_port_install calls.

Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",

In support of https://github.com/microsoft/vcpkg/pull/21502

* Update version database.

* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728

* Repair version database.
2022-01-25 10:31:15 -08: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
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
jimmy hu
45fa57c276
[ecsutil] Update ECSUtil v1.0.7.10 (#13990)
[ecsutil] Update ECSUtil v1.0.7.10
2020-10-12 12:03:26 -07:00
bobk2824
ffdfeef89c
[ecsutil] Update ECSUtil v1.0.7.9 (#10258)
* Update ECSUtil v1.0.7.9

* Complete PR requested changes
remove: include(vcpkg_common_functions)
use: vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX")

* added: Supports: windows&(x64|x86)

Co-authored-by: Bob Kast <bob.kast@emc.com>
2020-03-10 17:23:25 -07:00
Cheney Wang
09c5fd5e1b [ecsuti] Update version (#8885) 2019-12-02 17:21:18 -08:00
bobk2824
3bdc5d0c2f update for ECSUtil 1.0.7.3 (#8253) 2019-09-19 15:05:23 -07:00
bobk2824
8900146533 [ECSUtil] update library to v1.0.7.2 (#7427) 2019-07-25 16:23:53 -07:00
wangli28
8ac43f19f3 [qt5-winextras, ecsutil, soundtouch] Fix build-depends (#7298) 2019-07-17 16:00:43 -07:00
bobk2824
f0d575c2f3 Upgrade vcpkg to ECSUtil 1.0.6.1 (#6381) 2019-05-09 15:15:17 -07:00
Bob Kast
b85954bc3b v1.0.3.1 2019-01-10 17:12:29 -05:00
Bob Kast
6ca4f2ff9c fixed v1.0.2.1: incorrect version was tagged 2019-01-09 12:20:36 -05:00
Bob Kast
5c2af38729 ecsutil: fix hash 2019-01-07 19:06:19 -05:00
Bob Kast
c82073fae4 Update ECSUtil library to 1.0.2.1 2019-01-07 18:58:20 -05:00
Phil Christensen
e712374b28 Merge branch 'master' of https://github.com/microsoft/vcpkg into dev/philc/4889 2018-12-04 14:05:12 -08:00
Bob Kast
23384daca6 Support ECSUtil 1.0.1.4 2018-12-03 12:24:45 -05:00
Bob Kast
d31d385e64 Merge branch 'master' of https://github.com/EMCECS/vcpkg 2018-11-13 15:51:30 -05:00
Bob Kast
90f4901b23 fixed setversion.exe so patch is not necessary 2018-11-13 15:50:45 -05:00
bobk2824
a4403276a2 New package: Native Windows C++ library for EMC ECS S3 REST support (#4035)
* [ecsutil] Initial commit of 1.0.1.2

* [ecsutil] Simplify and use vcpkg_install_msbuild

* [ecsutil] Commit missing patch

* [ecsutil] Remove empty bin directories
2018-10-25 12:00:40 -07:00
Robert Schumacher
ffa114aaa4 [ecsutil] Remove empty bin directories 2018-10-24 12:41:19 -07:00
Bob Kast
230d795ae3 Merge branch 'master' of https://github.com/EMCECS/vcpkg
# Conflicts:
#	ports/ecsutil/CONTROL
#	ports/ecsutil/portfile.cmake
2018-10-23 09:06:58 -04:00
Robert Schumacher
9b21ff9612 [ecsutil] Commit missing patch 2018-10-19 03:00:39 -07:00
Robert Schumacher
13ec697c39 [ecsutil] Simplify and use vcpkg_install_msbuild 2018-10-19 02:55:52 -07:00
Robert Schumacher
1d59b34d6f [ecsutil] Initial commit of 1.0.1.2 2018-10-19 02:34:26 -07:00
Bob Kast
3d1fbeb7de ECSUtil 1.0.1.2 2018-10-09 14:54:40 -04:00
Bob Kast
d01501d1f5 ECSUtil v1.0.1.1 2018-09-25 15:35:39 -04:00
Bob Kast
cdffc66b40 ECSUtil 1.0.0.2 release 2018-08-15 10:34:35 -04:00
Bob Kast
4fe0eebb97 Update to ECSUtil v1.0.0.1 2018-08-15 10:34:35 -04:00
Bob Kast
d0077a0183 ECSUtil 0.9.0.9 2018-08-15 10:34:35 -04:00
Bob Kast
1cf6af248f 0.9.0.8 2018-08-15 10:34:34 -04:00
Bob Kast
ac49561986 ECSUtil 0.9.0.7 2018-08-15 10:34:34 -04:00
Bob Kast
bc0e122517 ecsutil 0.9.0.6 2018-08-15 10:34:34 -04:00
Bob Kast
341eabc0d1 0.9.0.5 2018-08-15 10:34:34 -04:00
Bob Kast
f3590c096a 0.9.0.4 2018-08-15 10:34:34 -04:00
Bob Kast
74cf390368 0.9.0.3 2018-08-15 10:34:34 -04:00
Bob Kast
a908b2506f 0.9.0.2 2018-08-15 10:34:34 -04:00
Bob Kast
93759be2fa add x86/x64-windows-static-md configurations 2018-08-15 10:34:34 -04:00
Bob Kast
55b7ec23f9 Initial vcpkg support for ECSUtil. 2018-08-15 10:34:33 -04:00