diff options
| author | Joe Noël <joe.noel@focusrite.com> | 2021-03-23 21:42:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-23 14:42:28 -0700 |
| commit | 3166bcc15b156b57667d9e573fba9775ceef3eb1 (patch) | |
| tree | 394ba00c53412e4e32f467fc2226291ac02e2b6f | |
| parent | 9327b5c5bf11c44f7d80c3b0fe3ad708a49299c2 (diff) | |
| download | vcpkg-3166bcc15b156b57667d9e573fba9775ceef3eb1.tar.gz vcpkg-3166bcc15b156b57667d9e573fba9775ceef3eb1.zip | |
[websocketpp] Add features to build without boost (#16675)
Run vcpkg x-add-version
Change version-string to version
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Roll boost-asio, openssl and zlip into a single feature
Overwrite version
| -rw-r--r-- | ports/websocketpp/CONTROL | 5 | ||||
| -rw-r--r-- | ports/websocketpp/vcpkg.json | 21 | ||||
| -rw-r--r-- | versions/baseline.json | 2 | ||||
| -rw-r--r-- | versions/w-/websocketpp.json | 5 |
4 files changed, 27 insertions, 6 deletions
diff --git a/ports/websocketpp/CONTROL b/ports/websocketpp/CONTROL deleted file mode 100644 index fee55c603..000000000 --- a/ports/websocketpp/CONTROL +++ /dev/null @@ -1,5 +0,0 @@ -Source: websocketpp -Version: 0.8.2 -Build-Depends: zlib, openssl, boost-asio -Homepage: https://github.com/zaphoyd/websocketpp -Description: Library that implements RFC6455 The WebSocket Protocol
\ No newline at end of file diff --git a/ports/websocketpp/vcpkg.json b/ports/websocketpp/vcpkg.json new file mode 100644 index 000000000..460fa86ca --- /dev/null +++ b/ports/websocketpp/vcpkg.json @@ -0,0 +1,21 @@ +{ + "name": "websocketpp", + "version": "0.8.2", + "port-version": 1, + "description": "Library that implements RFC6455 The WebSocket Protocol", + "homepage": "https://github.com/zaphoyd/websocketpp", + "documentation": "http://docs.websocketpp.org/", + "default-features": [ + "recommended" + ], + "features": { + "recommended": { + "description": "Use recommended dependencies", + "dependencies": [ + "boost-asio", + "openssl", + "zlib" + ] + } + } +} diff --git a/versions/baseline.json b/versions/baseline.json index b4f95458f..bbbffb6f9 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -6246,7 +6246,7 @@ }, "websocketpp": { "baseline": "0.8.2", - "port-version": 0 + "port-version": 1 }, "wepoll": { "baseline": "1.5.8", diff --git a/versions/w-/websocketpp.json b/versions/w-/websocketpp.json index 9577f7fa8..da556f2aa 100644 --- a/versions/w-/websocketpp.json +++ b/versions/w-/websocketpp.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "495a31980417d3ca202b50c1951012d699af21f6", + "version": "0.8.2", + "port-version": 1 + }, + { "git-tree": "c717c6c7fe929ef1c9cc7b2250e78700326940c4", "version-string": "0.8.2", "port-version": 0 |
