aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-04-14 16:01:19 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-04-14 16:01:19 -0700
commit1c08a42091cb0addd1e0c1daf27d24bf4e9d237f (patch)
treef8c69e701dfae791fe180a8c24b35a4195668afd /ports
parent23366aede0cb1ccfeac85a28308bc722811b18bc (diff)
parentb3541eff15847b2cc90736a609b8c6f99ce74a9d (diff)
downloadvcpkg-1c08a42091cb0addd1e0c1daf27d24bf4e9d237f.tar.gz
vcpkg-1c08a42091cb0addd1e0c1daf27d24bf4e9d237f.zip
Merge from master
Diffstat (limited to 'ports')
-rw-r--r--ports/libbson/CONTROL2
-rw-r--r--ports/libbson/portfile.cmake8
-rw-r--r--ports/mongo-c-driver/CONTROL2
-rw-r--r--ports/mongo-c-driver/bson.patch25
-rw-r--r--ports/mongo-c-driver/portfile.cmake9
-rw-r--r--ports/mongo-cxx-driver/CONTROL2
-rw-r--r--ports/mongo-cxx-driver/portfile.cmake8
-rw-r--r--ports/picojson/CONTROL4
-rw-r--r--ports/picojson/portfile.cmake19
-rw-r--r--ports/uwebsockets/CONTROL2
-rw-r--r--ports/uwebsockets/portfile.cmake4
11 files changed, 54 insertions, 31 deletions
diff --git a/ports/libbson/CONTROL b/ports/libbson/CONTROL
index 7ad8cb25b..0edf7847c 100644
--- a/ports/libbson/CONTROL
+++ b/ports/libbson/CONTROL
@@ -1,3 +1,3 @@
Source: libbson
-Version: 1.5.1-3
+Version: 1.6.2
Description: libbson is a library providing useful routines related to building, parsing, and iterating BSON documents. \ No newline at end of file
diff --git a/ports/libbson/portfile.cmake b/ports/libbson/portfile.cmake
index 1292dd9a3..58513498e 100644
--- a/ports/libbson/portfile.cmake
+++ b/ports/libbson/portfile.cmake
@@ -1,10 +1,10 @@
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libbson-1.5.1)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libbson-1.6.2)
vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/mongodb/libbson/archive/1.5.1.tar.gz"
- FILENAME "libbson-1.5.1.tar.gz"
- SHA512 b641e23ca041e532fe566167ad0292d12934e0fae2c110f81bf6ca3b71b5d01b651a604a7ce6da0d1b54b98cd95674ef331ef4e23c2dedfc706f371eac4efaec
+ URLS "https://github.com/mongodb/libbson/archive/1.6.2.tar.gz"
+ FILENAME "libbson-1.6.2.tar.gz"
+ SHA512 c5848984d5db5ab62e698a0185139b20834d83fd7befef72336997097f639ef13e81053531385e96c7ba1fe3f3fe4ded517f5b8ee58f0914c5c807a9cb43766d
)
vcpkg_extract_source_archive(${ARCHIVE})
diff --git a/ports/mongo-c-driver/CONTROL b/ports/mongo-c-driver/CONTROL
index f509493ee..8d77eeca5 100644
--- a/ports/mongo-c-driver/CONTROL
+++ b/ports/mongo-c-driver/CONTROL
@@ -1,4 +1,4 @@
Source: mongo-c-driver
-Version: 1.5.1-1
+Version: 1.6.2
Build-Depends: libbson, openssl [uwp]
Description: Client library written in C for MongoDB. \ No newline at end of file
diff --git a/ports/mongo-c-driver/bson.patch b/ports/mongo-c-driver/bson.patch
index 83291d699..6ef5451b8 100644
--- a/ports/mongo-c-driver/bson.patch
+++ b/ports/mongo-c-driver/bson.patch
@@ -1,24 +1,23 @@
diff --git a/build/cmake/FindBSON.cmake b/build/cmake/FindBSON.cmake
-index 4ac39ea..d11aa1f 100644
+index 06fd82e..3ac549d 100644
--- a/build/cmake/FindBSON.cmake
+++ b/build/cmake/FindBSON.cmake
-@@ -12,6 +12,7 @@ endif ()
+@@ -11,15 +11,15 @@ endif ()
+
find_path(BSON_INCLUDE_DIR
NAMES
- libbson-1.0/bson.h
-+ bson.h
+- libbson-1.0/bson.h
++ bson.h
HINTS
${BSON_ROOT_DIR}
- ${_BSON_INCLUDEDIR}
-@@ -19,7 +20,10 @@ find_path(BSON_INCLUDE_DIR
+ PATH_SUFFIXES
include
++ libbson-1.0
++ include/libbson-1.0
)
-set(BSON_INCLUDE_DIR "${BSON_INCLUDE_DIR}/libbson-1.0")
-+set(BSON_INCLUDE_DIR "${BSON_INCLUDE_DIR}")
-+if (NOT EXISTS ${BSON_INCLUDE_DIR}/bson.h)
-+ set(BSON_INCLUDE_DIR "${BSON_INCLUDE_DIR}/libbson-1.0")
-+endif()
-
- if(WIN32 AND NOT CYGWIN)
- if(MSVC)
+-
+ find_library(BSON
+ NAMES
+ "bson-1.0"
diff --git a/ports/mongo-c-driver/portfile.cmake b/ports/mongo-c-driver/portfile.cmake
index 0cdb9611b..4376f324a 100644
--- a/ports/mongo-c-driver/portfile.cmake
+++ b/ports/mongo-c-driver/portfile.cmake
@@ -1,15 +1,16 @@
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/mongo-c-driver-1.5.1)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/mongo-c-driver-1.6.2)
vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/mongodb/mongo-c-driver/archive/1.5.1.tar.gz"
- FILENAME "mongo-c-driver-1.5.1.tar.gz"
- SHA512 2977e6e1fb3c45256161d2c9bd711fea69b9f8c9ff15362fa636068e0a347c42e10d72fed5649504b552c8212f21cb1ae74d2dc8ca3d1388f49e63b2baf6e16d
+ URLS "https://github.com/mongodb/mongo-c-driver/archive/1.6.2.tar.gz"
+ FILENAME "mongo-c-driver-1.6.2.tar.gz"
+ SHA512 3533fed665c70b71f0e9473156bab1575f60b0b3db412f19c0a625e1e35683a3077f96b8a0ba337fd755675029f47b68dc3a5fc8f39254bb0be589da57cffad3
)
vcpkg_extract_source_archive(${ARCHIVE})
vcpkg_apply_patches(
SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
PATCHES
${CMAKE_CURRENT_LIST_DIR}/bson.patch
${CMAKE_CURRENT_LIST_DIR}/fix-uwp.patch
diff --git a/ports/mongo-cxx-driver/CONTROL b/ports/mongo-cxx-driver/CONTROL
index ba3b1c7e0..9b7e29ba3 100644
--- a/ports/mongo-cxx-driver/CONTROL
+++ b/ports/mongo-cxx-driver/CONTROL
@@ -1,4 +1,4 @@
Source: mongo-cxx-driver
-Version: 3.0.3-2
+Version: 3.1.1
Build-Depends: boost, libbson, mongo-c-driver
Description: MongoDB C++ Driver. \ No newline at end of file
diff --git a/ports/mongo-cxx-driver/portfile.cmake b/ports/mongo-cxx-driver/portfile.cmake
index e024c9a21..fd978a271 100644
--- a/ports/mongo-cxx-driver/portfile.cmake
+++ b/ports/mongo-cxx-driver/portfile.cmake
@@ -1,10 +1,10 @@
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/mongo-cxx-driver-r3.1.0)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/mongo-cxx-driver-r3.1.1)
vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/mongodb/mongo-cxx-driver/archive/r3.1.0.tar.gz"
- FILENAME "mongo-cxx-driver-r3.1.0.tar.gz"
- SHA512 2c9323f5e28304057b6ed6fc8bf33aad14db1313e234eaa74a96fb4cf93e99d24fd8c7c3f20b4b29cda7b1fe5c58f08dcb5cddcffbf62259c08334312fda4fba
+ URLS "https://github.com/mongodb/mongo-cxx-driver/archive/r3.1.1.tar.gz"
+ FILENAME "mongo-cxx-driver-r3.1.1.tar.gz"
+ SHA512 ba8a735e5645cbce4497df71a4577e891d507f577dbd5270ec8a82e54c39c2806bf2ff4848b621f18b36d31fb6031e5b4211972b661c43009bff0ed7ab6cf338
)
vcpkg_extract_source_archive(${ARCHIVE})
diff --git a/ports/picojson/CONTROL b/ports/picojson/CONTROL
new file mode 100644
index 000000000..a871ae3d4
--- /dev/null
+++ b/ports/picojson/CONTROL
@@ -0,0 +1,4 @@
+Source: picojson
+Version: 1.3.0
+Description: A header-file-only, JSON parser serializer in C++.
+
diff --git a/ports/picojson/portfile.cmake b/ports/picojson/portfile.cmake
new file mode 100644
index 000000000..c155275d3
--- /dev/null
+++ b/ports/picojson/portfile.cmake
@@ -0,0 +1,19 @@
+
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/picojson-rel-v1.3.0)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/kazuho/picojson/archive/rel/v1.3.0.zip"
+ FILENAME "picojson-1.3.0.zip"
+ SHA512 d1da5748b6a03e92ca4fa475a918842f5eede955f747359fa4d9d85f9ed9efac8b3748a306c2f9f71b9924099ba5e1f8f949e50cdf6f26bc3778865121725ddf
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+# Put the licence file where vcpkg expects it
+file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/picojson)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/picojson/LICENSE ${CURRENT_PACKAGES_DIR}/share/picojson/copyright)
+
+# Copy the header files
+file(INSTALL ${SOURCE_PATH}/picojson.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/picojson)
+
+vcpkg_copy_pdbs()
+
diff --git a/ports/uwebsockets/CONTROL b/ports/uwebsockets/CONTROL
index 8387b72e4..39441586b 100644
--- a/ports/uwebsockets/CONTROL
+++ b/ports/uwebsockets/CONTROL
@@ -1,4 +1,4 @@
Source: uwebsockets
-Version: 0.14.1
+Version: 0.14.2
Build-Depends: libuv, openssl, zlib, boost
Description: Highly scalable cross-platform WebSocket & HTTP library for C++11 and Node.js
diff --git a/ports/uwebsockets/portfile.cmake b/ports/uwebsockets/portfile.cmake
index e435f0204..1de6762d4 100644
--- a/ports/uwebsockets/portfile.cmake
+++ b/ports/uwebsockets/portfile.cmake
@@ -1,10 +1,10 @@
include(vcpkg_common_functions)
-set(VERSION 0.14.1)
+set(VERSION 0.14.2)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/uwebsockets-${VERSION})
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/uWebSockets/uWebSockets/archive/v${VERSION}.zip"
FILENAME "uwebsockets-v${VERSION}.zip"
- SHA512 1fb798ba49b45c48991ef3c657da9ef8f46d18009c77d9a2c6b98345f97ad7d7806e5490dc478dd5d05bc92bbeb849ac5a300fb91028f786274da89587c04c6e
+ SHA512 b6389a00a310d77ec55273c1b9499679b13f5e430c31fbc5dd5847780455115d95d5a439cd82dddc537d85c4afb5db4cacefb6db5b3f9681ff142d6ab9ef5024
)
vcpkg_extract_source_archive(${ARCHIVE})