Commit Graph

45 Commits

Author SHA1 Message Date
Thomas1664
01c9942610
[sciter] escape quotes (#23752)
* [sciter] escape quotes

* version

* update vcpkg.json

* update vcpkg.json

* update vcpkg.json

Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-03-25 12:52:30 -07:00
VuYeK
52d5c9b07e
[New port] Added Sciter.JS port (version 4.4.8.16) (#18951)
* Added Sciter.JS port (version 4.4.8.10), deprecated Sciter port

* Update ports/sciter-js/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update ports/sciter-js/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update ports/sciter-js/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update ports/sciter-js/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Added Sciter.JS port (version 4.4.8.10), deprecated Sciter port

* Added Sciter.JS port (version 4.4.8.16)

* Update ports/sciter/portfile.cmake

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update ports/sciter/vcpkg.json

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Removed trailing comma

* SHA update

* Updated ci.baseline

* Updated sciter homepage

* Updated sciter SHA

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-11-15 08:58:46 -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
VuYeK
6809996808
[sciter ] Updated sciter version to 4.4.8.3 (#18924)
* Updated sciter version to 4.4.8.3

* Update CONTROL

* Update baseline.json

* Update sciter.json

* Update portfile.cmake

* Fixed git tree hash
2021-07-14 15:10:29 -07:00
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
pravic
894baabf5c
[sciter] Update to 4.4.3.20.7852 (#11723)
* [sciter] Update to 4.4.3.20.7852

* [sciter] A feature to install windowless variants of the library.

* Update ports/sciter/CONTROL

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-06-11 01:58:31 -07:00
pravic
d2c3dbf6ec
[sciter] Update to 4.4.3.18.7817 (#11393) 2020-05-18 11:09:48 -07:00
pravic
d11cac0152
[sciter] Update to 4.4.3.15.7771 (#11161) 2020-05-04 15:26:04 -07:00
pravic
f29a191d0a
[sciter] Update to 4.4.1.5 (#10071)
* [sciter] Fix executable permissions on OSX.

* [sciter] Update to 4.4.0.8.7427

* [sciter] Update to 4.4.1.0.7439

* [sciter] Update to 4.4.1.5.7587
2020-04-03 10:34:50 -07:00
pravic
110ed91c05
[sciter] Update to 4.4.0.7.7393 (#10022) 2020-02-11 23:19:34 -08:00
Phil Christensen
e62d136128
[vcpkg] Add Supports: field. Use contents of triplets instead of names for dependency resolution. (#8601)
* remove unfinished "supports" tag

* extract "supports" from control files
But do nothing with the value

* Start `Supports` documentation

* Use Supports in a bunch of control files

I only tried matching the already existing logic in the portfile.cmake.

* Cmake var provider (#8)

* Cmake var provider (#9)

* fix windows build (#10)

* Add missing files to build

* Fix test (#11)

* adding hooks for cmake variables in expressions

* Adding hooks for 'supports' in CI test

* Fix test (#12)

* Add overrides to evaluation environment

* use "supported" tag in CI testing

* cleanup comment

* Fix issues with PR

* [var_provider] Get library linkage variables from triplet

* Fix compilation errors in tests

* Add unimplemented functions

* Fix unit tests part 1

* Fix issue when buildtrees dir does not exist

* Change binary output hash

* Fix handling of * feature

* Add core feature when using *

* Do not add Default-Features when installing 'core'

* [vcpkg] WIP. 6 failing tests.

* [vcpkg] WIP. 1 failing tests.

* [vcpkg] WIP. 0 failing tests.

* [vcpkg] Removed 'remove_graph'. 0 failing tests.

* [vcpkg] Removed 'install_graph'. 0 failing tests.

* [vcpkg] Remove AnyAction; replace with ActionPlan

* [vcpkg] Minor cleanup.

* [vcpkg][z3][qt5-connectivity][qt5-purchasing] Improve error messages while parsing. Fix a few trivial port issues.

* [vcpkg] Work around ICE with MSVC v140

* [vcpkg] Add purge on fail to decompress for CI

* [vcpkg] Fix parsing of nested parentheses in qualifiers

* [vcpkg] Fix Linux builds (explicit qualification in declaration)

* [vcpkg] Fix Build-Depends implying default features. Fix qualified dependencies regression.

* [mmx] Add to skip list and full rebuild -- mmx causes problems by installing 'sched.h'

* [libpqxx][mqtt-cpp] Prevent installing include/CMakeLists.txt

* [cppitertools] Fix installed include namespace (should be include/cppitertools)

* [libsoundio] Move headers into soundio/ subdirectory as per original cmake

* [ci.baseline] Temporarily skip charls due to conflict with dcmtk

* [vcpkg] Add restricted include files post build check -- bump global abi version

* [libsoundio] Hotfix stray line in portfile

* [vcpkg] Fix regression: CMake information was not being displayed for build-and-install actions

* [jsonnet] Fix installation of internal headers; use system nlohmann-json

* [grpc][upb] Teach grpc to use packaged upb. Add find_package(upb). Remove inappropriate upb features.

* [zfp] Move problematic 'include/bitstream.h' to 'include/zfp/bitstream.h'

* [x265] Bump control version to trigger rebuild after zfp conflict

* [akali] Disable parallel configure

* [dirent][dlfcn-win32][getopt-win32][pthreads] Grandfather into VCPKG_POLICY_ALLOW_RESTRICTED_HEADERS

* [ci.baseline] Update baseline for improved upb support

* [tgui] Disable parallel configure

* [libiconv] Enable VCPKG_POLICY_ALLOW_RESTRICTED_HEADERS

* [aws-sdk-cpp] Disable parallel configure

* [vcpkg] Implement policy VCPKG_POLICY_ALLOW_RESTRICTED_HEADERS

* [aws-sdk-cpp] Fix amount of escaping semicolons -- Note: I do not know the root cause requiring this change

* [libodb-sqlite] Fix configuring into source directory

* [gettext] Grandfather into VCPKG_POLICY_ALLOW_RESTRICTED_HEADERS

* [libodb] DISABLE_PARALLEL_CONFIGURE

* [vcpkg] Add 'config.h' and 'local.h' to restricted header list

* [mcpp] Remove unused and problematic include 'config.h' from installed files

* [teemo] Move installed headers into subdirectory to prevent conflicts with x265

* [ci.baseline] Update current OSX. Skip libmesh on all platforms due to heavy conflicts.

* [vcpkg] Add 'slice.h' as a restricted header

* [osg] Improve accuracy of dependencies (disable some, add some to Depends)

* [vcpkg] Skip invoking a subprocess for 0 specs in load_tag_vars

* [ci.baseline] Skip mongo-c-driver on osx due to flakiness

* [teemo] Fix incorrect include file read

* [osg] Fix dependency typo: glut -> freeglut

* [vcpkg] Recover some lost performance with the addition of vcpkg_get_tags.

A huge performance cost was loading the triplet files over and over; instead, we splice the sources into a macro and load it once, then just call that macro for each port.
Remove use of hashing because we aren't cross-process-safe anyway (global static will do instead).

* [vcpkg] Change Supports atom 'windows' to include UWP. Improve Supports field documentation.

* [vcpkg] Add docs for VCPKG_ENV_PASSTHROUGH and VCPKG_DEP_INFO_OVERRIDE_VARS

* Fix typo

Co-authored-by: Curtis J Bezault <curtbezault@gmail.com>
Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-02-03 14:22:52 -08:00
Stefano Sinigardi
726c111481 [vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -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
Victor Romero
050e71d01d
Remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS (#5937)
* [various ports] remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS

* [alac,benchmark,capnproto] Fix  check_linkage call

* [fastlz] Fix SHA512

* [coroutine] Fix dynamic build

* [folly] Find double-conversion

* [gamma] Use vcpkg_from_github

* [librsync] Enable static builds

* [netcdf-cxx4] Fix SHA512

* [octomap] Fix static build

* [tidy-html5] Fix static build

* [various ports] remove custom messages for shared/static builds, modernize some scripts in the meantime

* [folly] Use ras0219's fix for link paths

* [octomap] Fix exported targets

* [uvatlas] Set tool download SHA512

* [duktape+python2] fix portfile to call configure with correct python version, manage python2 also outside win32

* [suitesparse] osx fix

* [gtkmm] Call vcpkg_check_linkage after including vcpkg functions

* [duktape] Resolve conflicts

* [duktape] FIxed typo in Python paths

* [wangle] Find zlib

* [openssl-uwp] Fix SHA512

* [glib] Allow static builds on non-Windows

* [suitesparse] Fix build on Windows

* [multiple ports] Bump CONTROL version

* [multiple ports] Fix description indent

* [directxtk] Fix CONTROL file

* [bde,duktape,qpid-proton] Build packages with python2 installed

* [binn] remove CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS

* [gdal,live555,uriparser] Fix regressions

* [live555] Update to 2019.04.24
2019-05-02 22:57:43 -07:00
pravic
6db1a55827 [sciter] Update to 4.2.4.6184 (#4260)
* [sciter] Update to 4.2.0.6064

* [sciter] Update to 4.2.1.6085

* [sciter] Update to 4.2.2.6090

* [sciter] Update to 4.2.3.6108

* [sciter] Update to 4.2.4.6184

* Update sciter to 4.2.6.9
2019-01-14 12:09:51 -08:00
pravic
3bb973a17b [sciter] Update to 4.2.2.6090 (#3964)
* [sciter] Update to 4.2.0.6064

* [sciter] Update to 4.2.1.6085

* [sciter] Update to 4.2.2.6090
2018-07-30 11:56:08 -07:00
pravic
a008fa29ae [sciter] Update to 4.1.11.6037 (#3849) 2018-07-08 22:32:39 -07:00
pravic
fe23b30178 [sciter] Update to 4.1.10.5987 (#3760) 2018-07-03 18:03:21 -07:00
pravic
89f6c81429 [sciter] Update to 4.1.9.5981 2018-06-05 23:55:40 +03:00
pravic
9bb5ec7891 [sciter] Support Linux and Darwin targets. 2018-05-21 16:00:12 +03:00
pravic
8c69ff5836 [sciter] Update to 4.1.8.5918 2018-05-21 07:48:43 +03:00
pravic
5ee8177e50 [sciter] Update to 4.1.7.5890 2018-04-29 12:30:04 +03:00
pravic
810f79302b [sciter] Update to 4.1.6.5883 2018-04-24 07:37:05 +03:00
pravic
55d79020c4 [sciter] Update to 4.1.5.5856 (#3186) 2018-04-02 16:21:40 -07:00
pravic
c806505933 [sciter] Update to 4.1.4.5838 (#3110) 2018-03-22 08:01:42 -07:00
pravic
1874e0108f [sciter] Update to 4.1.3.5728 (#2835) 2018-02-19 08:23:03 -08:00
pravic
de2396035a [sciter] Update to 4.1.2.5717 2018-01-25 07:57:33 +03:00
pravic
950918b9fb [sciter] Update to 4.1.1.5703 2018-01-15 21:23:40 +03:00
pravic
96aa26ebad [sciter] Update to 4.1.0.5687 2018-01-10 12:47:53 +03:00
pravic
e57bd44d28 [sciter] Update to 4.0.8.5649 2017-12-23 17:47:11 +03:00
pravic
476dab7615 [sciter] Update to 4.0.7.5637 2017-12-20 08:56:32 +03:00
pravic
fb3aefa4e6 [sciter] Update to 4.0.6.5590 2017-12-04 17:57:19 +03:00
pravic
c8412ae017 [sciter] Update to 4.0.5.5520 2017-11-15 17:57:43 +03:00
pravic
d0d135489e [sciter] Update to 4.0.5.5482 2017-10-23 16:21:19 +03:00
pravic
a958a8b50a [sciter] Update to 4.0.4.5428 2017-10-08 07:35:09 +03:00
pravic
e30466b08c [sciter] Update to 4.0.4.5413 2017-10-08 07:33:25 +03:00
Alexander Karatarakis
cb239b92c0 Fix several port hashes due to github tar.gz change
It looks like github changed the version (or the generally the way)
they do tars, causing some hash mismatches. This fixes the affected
ports.
2017-09-12 13:32:26 -07:00
pravic
c867fc8587 [sciter] Update to 4.0.3.5348 2017-09-11 10:47:46 +03:00
pravic
b7201507ff [sciter] Update to 4.0.2.5262 2017-08-07 10:42:49 +03:00
pravic
faf0d669d7 [sciter] Update to 4.0.1.1 2017-06-12 10:07:31 +03:00
pravic
b8db426e03 [sciter] Update to 4.0.1.0 2017-05-23 16:38:16 +03:00
Robert Schumacher
7af80812ae [sciter] Massage LIBRARY_LINKAGE checks. 2017-05-17 03:05:54 -07:00
pravic
1ce540b52f [sciter] Apply fixes according to review of #1077. 2017-05-11 21:33:52 +03:00
pravic
8155559263 [sciter] Update to 4.0.0.9 2017-05-11 09:03:31 +03:00
pravic
73134f9af4 [sciter] Add Sciter 4.x package. 2017-05-11 09:03:31 +03:00