aboutsummaryrefslogtreecommitdiff
path: root/versions/g-
AgeCommit message (Collapse)Author
2021-10-14[google-cloud-cpp] fix backwards compatibility package files (#20723)Carlos O'Ryan
2021-10-12[graphviz] new port (#20564)Akash
* Add graphviz * Address bot feedback * Add python3 dep and fix pkgconf var * Acquire python3 program * Specify python3 executable * Move bison earlier in path * Add bison executable as var * Add other deps as var * Fix formatting * Apply suggestions from code review Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com> * Update to 2.49.1 Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-10-11[greatest] Update to 1.5.0 (#20643)chausner
* Update greatest to 1.5.0 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-11[gdal] add hdf5 support on windows (#20540)Zheng Xueke
* add gdal hdf5 format support on windows * add gdal hdf5 format support on windows:run x-add-version * remove lib EXISTS check Co-authored-by: Billy O'Neal <bion@microsoft.com> * remove lib EXISTS check : fix git-tree * Delete ports/gdal/dependency_win.cmake extra Spaces Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * delete unnecessary blank lines: update git-tree Co-authored-by: Billy O'Neal <bion@microsoft.com> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-10-06[google-cloud-cpp] update to latest release (v1.32.1) (#20561)Carlos O'Ryan
* [google-cloud-cpp] update to latest release (v1.32.1) * Argh, this was sitting in my workspace
2021-10-05[geos] Install pc file also for Windows (#20502)Kai Pastor
* Install pc file for msvc * Fix warning about unused cmake variable * Update version Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-05[gstreamer, gst-rtsp-server] update and add port (#20474)Mathis
* update gstreamer, add gst-rtsp-server * format * versions * update description * verison
2021-10-05[google-cloud-cpp] migrate to vcpkg_cmake_config_fixup() (#20521)Carlos O'Ryan
* [google-cloud-cpp] migrate to vcpkg_cmake_config_fixup() * Address review comments
2021-10-01[gsl-lite] Update to 0.39.0 (#20450)Moritz Beutel
* [gsl-lite] Update to 0.39.0, update portfile * [gsl-lite] Update version registry
2021-10-01[google-cloud-cpp] update to latest release (v1.32.0) (#20463)Carlos O'Ryan
* [google-cloud-cpp] update to latest release (v1.32.0) * Update from deprecated vcpkg functions * Undo migration to `vcpkg_cmake_config_fixup()` I could not get this to work. I will ask in the discord channel because I must be using it wrong.
2021-09-29[gemmlowp] create a new port (#20403)Park DongHa
* [gemmlowp] create a new port * update baseline JSON * [gemmlowp] support find_pacakge * export `unofficial::` targets * [gemmlowp] add HEAD_REF * [gemmlowp] use latest sources * remove patches to support find_package
2021-09-28[Guilite] Add new port (#20156)Samuel Marks
* [ports/guilite] Init * ./vcpkg x-add-version
2021-09-24[grpc] yet another library missing in pkg-config files (#20308)Carlos O'Ryan
2021-09-22[gsl] Update to 2.7 (#20268)misirlou-tg
* Update gsl to version 2.7 * Updating portfile to remove deprecated functions These were the github-actions bot recommendations * Quoting string parameters, fixing version * Run x-add-version
2021-09-20[gmp] Enable C++ support on Unix (#20205)Dawid Wróbel
* [gmp] enable C++ support * [gmp] update versions
2021-09-17many-ports: Update supports field (#20053)autoantwort
* many-ports: Update supports field * Fix several "version-string"s. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-16[gettext] Remove `SUBPATH`, add iconv linking info (#20090)Kai Pastor
* Replace SUBPATH argument * Add iconv to libintl link libraries * x-add-version * Fix tools build on mingw-dynamic * Update versions * [skip actions] Trigger CI
2021-09-16[gflags]: Fix targets gflags::* not being globally visible (#20011)Jafar Abdi
* [gflags]: Fix targets gflags::* not globally visible * Add the target as interface * vcpkg x-add-version --all Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-16[amqpcpp/leptonica/glibmm] Update to latest version (#20069)Cheney Wang
* [amqpcpp/leptonica/glibmm] Update to latest version * Modify the include dir path * Modify version schemes Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-13[gdal] Make building executables optional (#19243)Matthias Kuhn
* [gdal] Optional "tool" feature to build executables Fixes #19189 * x-add-version * Fix remove of tools * Always delete the debug tools * Add patch to make tools build optional (non-windows) * Update patch to make tools build optional (windows) * Update git-tree * Update tools patch * Update git-tree * Revise windows tools handling * x-add-version * Remove empty bin dir * Update git-tree * Remove obsolete static tools patch * Update git-tree * update * reindent * x-add-version * restore version Co-authored-by: Kai Pastor <dg0yt@darc.de>
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-08[glew/openvdb/xtensor-io] Update to latest release version (#20022)Phoebe
* [glew/openvdb/xtensor-io] Update to latest release version * [glew] Update patch * [xtensor-io] Update version
2021-09-07[google-cloud-cpp] update to latest release (v1.31.1) (#19957)Carlos O'Ryan
2021-09-07[libmediainfo/glslang] Update to the latest version (#19917)NancyLi1013
* [libmediainfo/glslang] Update to the latest version * Update version files Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-02[google-cloud-cpp] update to latest release (v1.31.0) (#19889)Carlos O'Ryan
2021-09-02[geos,librttopo] Fix linkage and other quirks (#19492)Kai Pastor
* [geos] Minor portfile maintenance * [geos] Export implicit C++ lib dependencies * [geos] x-add-version * [librttopo] New port version, format manifest * [librttopo] Modernize portfile * [librttopo] Fix mingw build * [librttopo] Use geos-config, allow dynamic linkage for non-windows * [librttopo] Fix pc file * [librttopo] Use pristine download from osgeo.org * [librttopo] x-add-version
2021-09-02Fix target_link_libraries on repeated inclusion of wrappers (#19120)Kai Pastor
* Fix repeated inclusion of wrappers * x-add-version
2021-08-30[google-cloud-cpp] use features to stop package growth (#19600)Carlos O'Ryan
* [google-cloud-cpp] use features to stop package growth We have plans to grow `google-cloud-cpp`, but we think the build times are large enough already. This creates "features" to at least stop the package growth as new features are added. The "default-features" reflects the current features in the package. * Remove versions created during development * Address review comments
2021-08-27[glog] Fixed gflags dependency (#18739)bucurb
2021-08-27[gettext] Add "autopoint" tool to gettext[core] (#17317)Kai Pastor
2021-08-26[ginkgo] Update to 1.4.0 (#19731)Tobias Ribizel
* [ginkgo] add release 1.4.0 * [ginkgo] x-add-version * Update ports/ginkgo/usage * [ginkgo] download large patch on demand * [ginkgo] x-add-version
2021-08-13[google-cloud-cpp] update to latest release (v1.30.1) (#19507)Carlos O'Ryan
2021-08-05[google-cloud-cpp] update to latest version (v1.30.0) (#19336)Carlos O'Ryan
2021-07-27[grpc] fix generated pkg-config file (#19174)Carlos O'Ryan
gRPC uses `upb`, but normally it vendors-in the dependency. The vendored-in version uses a single library artifact, and the generated pkg-config file simply adds `-lupb`. In `vcpkg` we use the `upb` package. This has more libraries, and thus more `-lupb_*` options are needed. Ideally we would use a `upb.pc` file, but that does not exist.
2021-07-26[gdal] Fix GDAL_LIBRARY passing by cache variable (#19119)Kai Pastor
* Fix GDAL_LIBRARY passing by cache variable * x-add-version
2021-07-24[gettext] Add gettext cmake wrapper (#18159)Kai Pastor
* Add gettext cmake wrapper * x-add-version * Make kf5i18n use gettext[tools]:host * x-add-version * Revise wrapper source names * Update git-tree * Provide host tools via port config, not wrapper * Enable tools on linux * Fix linux libintl.h hint * Update git-tree * Update git-tree * Revise vcpkg port config * Revise linux libintl.h message * Revise cmake style * Build only release variant of tools * Cache configuration for faster build * Update git-tree * Fix typo * Revise options * Add top-level Makefile for tools * Remove non-libintl libs and includes * Update git-tree * Update port-version * x-add-version * [gettext] Address PR comments Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-07-23[gdal] Repair gdal wrapper (#19105)Kai Pastor
* Repair gdal wrapper * x-add-version
2021-07-23[gdal] Fix build for non-Windows targets (#17698)Kai Pastor
* Remove obsolete GDAL_VERSION_LIB * Build mingw with configure/make * Rearrange CONF_OPTS, expose tiff dependency * Revise linkage configuration * Rearrange GDAL_PATCHES * Put optional drivers into non-default feature * Fix gdal build * Update vcpkg.json * Re-enable netcdf support * Revise cmake wrapper * Final portfile cleanup * Remove curl osx system dependencies * Verify configuration results before building * Update and revise configure.ac patch * Fix dllexport for mingw-dynamic * Fix pc file * Add dependencies to cmake wrapper * Increment port-version * x-add-version * Fix typo * Update git-tree * strega-nil CRs Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2021-07-23[giflib] Update to 5.2.1 (#18836)Kai Pastor
* Update to 5.2.1 * Modernize portfile * Enable shared lib * Handle system reallocarray * x-add-version * Disable GifDrawBoxedText8x8 on windows * Update git-tree * Add separate patch for GifDrawBoxedText8x8 * Update git-tree
2021-07-15[glslang] Update to 11.1.0 (#15719)Luke
* [shaderc] remove port since it does not build * [glslang] updated to version 11.1.0 * [glslang] Add python path * [glslang] baseline.json and glslang.json updated * Update portfile.cmake * Update CONTROL * Update port_versions * Update port_versions * Update port_versions * Update port_versions * Update port_versions * [glslang] port update to version 11.4.0 * [glslang] port version removed from json * [glslang] remove shaderc * [glslang] baseline update * [glslang] versions hash update * [glslang] portfile format fix + use of ${PORT} * [glslang] new hash * [glslang] revert portfile back * [glslang] portfile apply changes * [glslang] update hash for x86 windows * [glslang] update to 1.5.0 * [glslang] git-tree hash update * [glslang] remove old version 1.4.0 * [glslang] git-tree hash update * [glslang][shaderc] Update and fix targets to match upstream * Update versions Co-authored-by: Lukas Lipp <llipp@cg.tuwien.ac.at> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: JonLiu1993 <13720414433@163.com> Co-authored-by: Robert Schumacher <ras0219@outlook.com>
2021-07-14Update to Ubuntu 20.04. (#18892)Billy O'Neal
* Update Ubuntu to 20.04. * [tfhe] Disable -Wall -Werror * [sophus] Disable -Werror. * Fix typo in deployment of CUDA. * Add libxxf86vm-dev for opensubdiv. * [opensubdiv] Fix OpenCL search on Ubuntu 20.04, and document libxxf86vm-dev dependency * [msgpack11] Disable -Werror. * [qtwayland, qt5wayland] Add system library notice. * Add python-is-python3 to unbreak tensorflow, v8, and others * [graphqlparser] Remove directive rejected by Bison 3.5.1 * [ogdf] Mark as failing in ci.baseline.txt. Issue filed https://github.com/microsoft/vcpkg/issues/18936 * [bde] Mark failing in ci.baseline.txt, issue filed https://github.com/microsoft/vcpkg/issues/18937 * [soem] Patch out -Werror * Update pool.
2021-07-08[gli] upgrade the gli to latest (#18715)Xing Ji
* upgrade the gli to latest * update the version of gli * update the version of gli * [gli] Revert patch, use date scheme Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-07-07Download khrplatform.h with vcpkg instead of gl3w_gen.py so that our ↵Billy O'Neal
downloader settings are used (#18858) Alternative resolution of https://github.com/microsoft/vcpkg/pull/18846/
2021-07-07[glew] Improve messages for system opengl dependency (#18672)Phoebe
* [glew] Fix the dependency * Update baseline version * Adress the review suggestions * Update the baseline revision
2021-07-06[google-cloud-cpp] update to latest release (v1.29.0) (#18759)Carlos O'Ryan
2021-07-01[geographiclib] Update to version 1.52 (#18694)Charles Karney
* [geographiclib] Update to version 1.52 * run ./vcpkg x-add-version geographiclib * ports/geographiclib/vcpkg.json: version-string -> version * Another iteration with x-add-version
2021-06-24[gstreamer] create a new port (#17394)Park DongHa
* [gstreamer] create port with meson * initial build config * nodownload in vcpkg_configure_meson needs be removed * [gstreamer] remove duplicated GL headers * 1st check for deps in windows * mac: fix regex for bison * [gstreamer] more detailed options * remove glib usage Will use WIP changes in microsoft/vcpkg * [gstreamer] build with glib port * [gstreamer] extract plugins to features * fix some config errors in windows * fails to find z.lib. this should be zlib.lib * [gstreamer] create patches to search 'zlib' * update tool list * [vcpkg meson] add path of GIT * use append for LINKER_FLAGS Allow injection of LINKER_FLAGS to vcpkg_configure_meson * [gstreamer] update baseline and port SHA * [gstreamer] zlib is required for Windows * Revert "[vcpkg meson] add path of GIT" This reverts commit 8a67fbd1d287fa769cf516b834981ea175463492. * [gstreamer] make git visible in meson * [gstreamer] fix platform expression * [gstreamer] revert change of vcpkg_configure_meson * [gstreamer] modify build.ninja after configure * [gstreamer] drop unknown flag with vcpkg_replace_string * [gstreamer] disable 'devtools' option * [gstreamer] remove dylib * [gstreamer] move dll,pdb after install * [gstreamer] remove 'nls' feature Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
2021-06-21[gtest] Update to 1.11.0 (#18509)SvenPStarFinanz
* [gtest] Update to release version 1.11.0 * x-add-version * Update ports/gtest/vcpkg.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * renewal of x-add-version. Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-06-11[gamenetworkingsockets] update to 1.3.0 (#18313)Dorq
* [gamenetworkingsockets] update to v1.3.0 * [gamenetworkingsockets] run x-add-version * requested changes * [gamenetworkingsockets] fix hash
2021-06-09[gettext] Fix building for android (#18128)Matthias Kuhn
* Fix building gettext for android Taken from https://github.com/navit-gps/navit/pull/1087/files * Bump gettext port version