Commit Graph

6225 Commits

Author SHA1 Message Date
Alexander Karatarakis
2eaf0ecfbf
Merge pull request #3451 from Elekhyr/dev/elekhyr/imgui
[imgui] Update to 1.60
2018-05-07 19:06:13 -07:00
Alexander Karatarakis
90ecc3c44d
Merge pull request #3442 from sanxiyn/vlpp-linux
[vlpp] Fix Linux build
2018-05-07 16:00:58 -07:00
Thomas Margier
ee1b4d525a [imgui] Update to 1.60 2018-05-07 21:08:01 +02:00
Seo Sanghyeon
ee469d525d [vlpp] Fix Linux build 2018-05-07 15:23:11 +09:00
Coraline
1c49195f78 physfs: fix-up CONTROL for v3.0.1 (#3421)
Changed [Version] in .../ports/physfs/CONTROL to match current version in portfile.cmake
2018-05-05 16:44:48 -07:00
Erwan BERNARD
541f2e2ea5 [inja] add inja (#3428) 2018-05-05 16:44:32 -07:00
Nicolai Grodzitski
44b8943262 Update RESTinio (#3423)
* Make restinio port. First implementation (find-module files are not
installed yet).

* Add current status of a port files (not working).

* Prepare restinio port files.

* Change restinio archive URL.

* [restinio] Slim portfile

* Update RESTinio version.
2018-05-05 16:42:06 -07:00
Alexander Karatarakis
ab58f531cc git for linux/osx version moved to vcpkgTools.xml 2018-05-04 18:14:54 -07:00
Alexander Karatarakis
9265fe76bf unix_root -> UNIX_ROOT static const 2018-05-04 16:49:07 -07:00
Robert Schumacher
120f444af3 [vcpkg] Add missing debug statement and fix libc++ Filesystem TS issue. 2018-05-03 15:51:02 -07:00
Robert Schumacher
8f0ebdf8d5 [vcpkg] Remove utf16 usage from non-Windows 2018-05-03 15:03:35 -07:00
Jay Carlson
6ec3a48633 [treehopper] Add package for Treehopper C++ API (#3330)
* Add package definition for Treehopper's C++ API

* Bump to 1.11.2

* Bump to 1.11.3

* [treehopper] Fix cmake targets. Block non-dynamic usage.
2018-05-02 22:38:08 -07:00
yyzybb537
68447ced17 Add libgo library packge (#3394)
* Add libgo library packge

* [libgo] Fix Windows and adjust cmake usage information
2018-05-02 22:36:19 -07:00
Seo Sanghyeon
e011ec2993 Add cmark port (#3406)
* Add cmark port

* [cmark] Only build one of static/dynamic
2018-05-02 22:31:21 -07:00
Nicolai Grodzitski
d0aeb24a44 Add RESTinio port. (#3410)
* Make restinio port. First implementation (find-module files are not
installed yet).

* Add current status of a port files (not working).

* Prepare restinio port files.

* Change restinio archive URL.

* [restinio] Slim portfile
2018-05-02 22:29:46 -07:00
Alexander Karatarakis
b4217a9468
Merge pull request #3405 from jasjuang/alembic
[alembic] update to 1.7.8
2018-05-02 20:12:58 -07:00
Alexander Karatarakis
eb048e16a1
Merge pull request #3407 from Squareys/magnum-2018-04
[magnum] Update to v2018.04
2018-05-02 18:14:00 -07:00
Squareys
eee5939689 [magnum,-plugins,-integration,-extras] Update to v2018.04
Signed-off-by: Squareys <squareys@googlemail.com>
2018-05-02 15:02:39 +02:00
Squareys
3338ab613c [magnum,-plugins] Also install headers for dynamically built plugins
While before there was no use for linking the plugins directly or using
them as libraries in some other way when built dynamically, there now are
intra-dependencies between plugins which to be detected, require the
headers to be installed.

Additionally, the folders lib/magnum and debug/lib/magnum-d are no longer
empty, as we put the plugin deploy scripts there. Removing them is
therefore superfluous.

(Prepares upcoming release/head build)

Signed-off-by: Squareys <squareys@googlemail.com>
2018-05-02 13:42:51 +02:00
Squareys
3e0901a904 [corrade] Update to v2018.04
Signed-off-by: Squareys <squareys@googlemail.com>
2018-05-02 13:42:44 +02:00
Seo Sanghyeon
1e41c4377f Add yajl port (#3379)
* Add yajl port

* [yajl] Patch cmake to fix install directories and avoid overwriting compiler flags
2018-05-02 01:37:15 -07:00
Robert Schumacher
6bff657152 [poco] Upgrade to version 1.9.0 2018-05-02 01:17:33 -07:00
jasjuang
ae4cd42aab [alembic] update to 1.7.8 2018-05-01 22:52:18 -07:00
Robert Schumacher
64c32687f3 [box2d] Replace buildsystem with CMake for better cross-platform support 2018-05-01 16:29:40 -07:00
Robert Schumacher
8eac561107 [abseil][aws-sdk-cpp][directxmesh][directxtex][directxtk][discord-rpc][exiv2][folly][jsonnet][libuv][ms-gsl][nuklear][rocksdb][rs-core-lib][thrift][unicorn][zeromq] Upgrades 2018-05-01 15:49:11 -07:00
Jozef Izso
316a3cb245 Clarify toolset numbers and Visual Studio versions (#3355) 2018-05-01 01:48:16 -07:00
Robert Schumacher
4d28651f9e [range-v3] Split ports to enable newer range-v3 versions on linux 2018-05-01 01:45:38 -07:00
Robert Schumacher
39d38f5aea [poco] Suffix binaries with mt when building against static CRT 2018-05-01 01:41:44 -07:00
Mateusz Loskot
793019b9cd [GEOS] Generate debug library names with d suffix (#3371)
* [GEOS] Generate debug library names with `d` suffix

Currently geos.lib name is used for both, debug and optimised
GEOS libraries. This leads to situation when:
```
find_library(GEOS_LIBRARY_DEBUG NAMES geos)
find_library(GEOS_LIBRARY_RELEASE NAMES geos)
```

finds the same library for both
```
GEOS_LIBRARY_DEBUG=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
GEOS_LIBRARY_RELEASE=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
```

This is minimal patch that works around the problem.

Next, complete fix should be submitted to GEOS upstream,
preferably using exported targets.

* [libspatialite] Add missing geos suffixes in static builds
2018-05-01 01:14:18 -07:00
Robert Schumacher
c4caf29213 [vcpkg] Fix temporary download directory when vcpkg is located at the root of a drive 2018-05-01 00:27:23 -07:00
Alexander Karatarakis
e3997dcd10
Merge pull request #3359 from jasjuang/cgal
[cgal] update to 4.12
2018-04-30 21:01:15 -07:00
Alexander Karatarakis
4e51473849
Merge pull request #3376 from pravic/sciter-update
[sciter] Update to 4.1.7.5890
2018-04-30 21:00:28 -07:00
Alexander Karatarakis
aaad944e5a
Merge pull request #3358 from fbudin69500/DetectAllOldVersionsOfGCC
Require the version of g++ to be at least 6
2018-04-30 20:40:50 -07:00
Robert Schumacher
827c893b8e [sfml] Support Linux 2018-04-30 16:00:29 -07:00
Robert Schumacher
286c400417 [docs] Update docs 2018-04-30 14:54:50 -07:00
Alexander Karatarakis
7a01d4b392 [yato] Bump CONTROL file version 2018-04-30 13:45:31 -07:00
Alexander Karatarakis
a59307436e
Merge pull request #3392 from agruzdev/dev/agruzdev/yato
[yato] Bugfix
2018-04-30 13:44:29 -07:00
Alexey Gruzdev
c72e6326dd Merge remote-tracking branch 'remotes/origin/master' into dev/agruzdev/yato 2018-04-30 19:31:00 +01:00
Alexey Gruzdev
5897e96f93 [yato] Fixed artifacts copying for non-windows platforms 2018-04-30 19:30:29 +01:00
pravic
5ee8177e50 [sciter] Update to 4.1.7.5890 2018-04-29 12:30:04 +03:00
Robert Schumacher
a9d989ec05 [vcpkg-integrate-install] Add vcpkg.path.txt to localappdata for more generic consumption. 2018-04-28 14:17:52 -07:00
Paul T
ed3f943259 Add Visual Studio 2013 Support for Qt5 (#3361)
Add case for toolset v120 which corresponds to visual studio 2013.
2018-04-28 07:34:57 -07:00
Alexej Harm
38d139ceb8 [openssl] added support for platforms without libdl (#3368) 2018-04-28 07:30:51 -07:00
Alexander Karatarakis
039abe258b [ci] Don't block binarycaching = false 2018-04-27 22:52:55 -07:00
Alexander Karatarakis
468bfeb56e [Clean patching] Each portref-patchset combo gets its own hash-based directory 2018-04-27 22:52:55 -07:00
Alexander Karatarakis
08afae2a7a Bump version of git to 2.17.0 (was 2.16.2) 2018-04-27 16:18:03 -07:00
Alexander Karatarakis
98b015939c
Merge pull request #3288 from W1m0k/master
[uwebsockets] Update to 0.14.8
2018-04-27 15:26:01 -07:00
Francois Budin
540a32c841 Require the version of g++ to be at least 6
On Ubuntu 16.04, old versions of g++ such as 4.9 are available. Other
Linux distributions may also ship with g++ versions older than 5. With
the previous test, the bootstrap script was not failing fast and instead
was starting to compile vcpkg before it encountered the unsupported flag
-std=c++1z. The error message was not very explicit and that was making
it difficult to the developer to understand what the problem was. However,
when using g++ 5, an clear error message was printed to help the user.
This commit shows the helpful error message anytime g++ is older than
version 6.
2018-04-27 13:00:41 -04:00
jasjuang
576f28edf3 [cgal] update to 4.12 2018-04-27 08:32:43 -07:00
jiefangxuanyan
da1805f3c0 Fix #3250 (#3284)
* [rapidjson] Fix CMake target (#3250)

* [rapidjson] Bump control version. Add usage information.
2018-04-26 23:16:47 -07:00