aboutsummaryrefslogtreecommitdiff
path: root/versions/h-
AgeCommit message (Collapse)Author
2021-10-04[hidapi] update to 0.11.0; switch to CMake (#20460)Be
2021-09-30[hypodermic] added version 2.5.3, updated baseline (#20414)Lassi
* added 2.5.3, updated baseline * added quotes and fixed how license installation is done * updated portfile based on bots recommendations * Change version-semver to version. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
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[h3/jaeger-client-cpp] Update to the latest version (#20008)NancyLi1013
* [h3/jaeger-client-cpp] Update to the latest version * Remove CONTROL files * Update version files * Update patch * Update versions/j-/jaeger-client-cpp.json
2021-09-07[harfbuzz] update to 2.9.0 (#19817)JonLiu1993
* [harfbuzz] update to 2.9.0 * update version * update version to version-semver * update version * remove fontconfig option * update version
2021-09-03[hazelcast-cpp-client] update to v4.2.0 (#19853)yemreinci
* update hazelcast-cpp-client to 4.2.0 * run x-add-version
2021-09-03[hexl] Update version to 1.2.1 (#19468)Gelila Seifu
* update HEXL v1.2 * added x-add-version output * rename intel-hexl to hexl * update x-add-version output * update homepage * Update version database * update portfile * update portfile * add find GIT * Update version database * Update ports/hexl/portfile.cmake * use MSBUILD for Windows * Update version database * set generator * Update version database * update typo * Update version database * Fix build error * Update ports/hexl/portfile.cmake * Re-fix the dependencies * update hexl version * Update version database * locate git, remove unused file * Update version database * update version, add dependency * update dependency * Update version database * update HEXL to 1.2.1 * Update version database * Fix version database. Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-08-30[harfbuzz] update to 2.8.2 (#19615)JonLiu1993
* [harfbuzz] update to 2.8.2 * update version * revert patch format * update version
2021-08-18Adapting for HPX V1.7.1 (#19585)Hartmut Kaiser
2021-08-09[harfbuzz] Set CMP0057 to New to make this port usable in old CMake projects ↵Daniel Schürmann
(#19444)
2021-08-04[vcpkg baseline][hunspell] Fix usage when building static (#19323)Jack·Boos·Yu
2021-07-15Adapting for HPX V1.7.0 (#18966)Hartmut Kaiser
2021-07-06[hdf5] Fix linking order in pc file (#18825)Kai Pastor
* Fix link order in pc file * x-add-version
2021-07-01[halide] Fix several issues with the Halide port after v12 (#18747)Alex Reinking
* Fix several issues with the Halide port after v12 1. Use vcpkg-cmake and vcpkg-cmake-config ports 2. Fix usage file to point to relevant documentation 3. Remove OpenGL feature (Halide 12 dropped support) 4. Drop VCPKG_POLICY_EMPTY_PACKAGE 5. Set new Halide packaging variables for better vcpkg compliance. * update versions
2021-06-29[llvm] update to 12.0.0, enable zlib and libxml2 (#17302)Yury Bura
* [llvm] update to 12.0.0, enable zlib and libxml2 * [llvm] disable libxml2 by default, arm64-windows should be supported * [llvm] try to fix build with ffi on Windows #17663 * [llvm] re-enable libxml2 * [llvm] fix formatting * [llvm] overwrite version * [mesa] update to v21.1.0 * [llvm] update ci.baseline * [halide] update to the latest master commit * [llvm] disable libxml2 port until complete PR #15390 * update versions * [llvm] fix disabling of external libraries * update version * update ci.baseline * update ci.baseline * fix typo * [llvm] fix libxml2 (depends on #17945) * revert "[halide] update to the latest master commit" * update versions * [halide] fix zlib dependency for tools * update versions * [halide] update to official release v12.0.0 * update versions * [halide] update to v12.0.1 * update version * [mesa] remove llvm from defaults * update version * update ci.baseline * [mesa] update to v21.1.2 and fix build with LLVM on Windows * [llvm] allow to build libunwind project on Windows * update versions * [mesa] update ci.baseline.txt to disable x64-windows-static-md, may be fixed in the PR #18495
2021-06-21[seal]Updated to version 3.6.6. Replaced CONTROL with manifest file. (#18457)Wei Dai
* Updated seal to version 3.6.6. Replaced CONTROL with manifest file. * Changed version-string to version-semver. * Updated versions/s-/seal.json. * Added a missing CMake arguement. * Updated versioning. * Fixed hexl config file. * Updated versioning. * Fixed hexl not finding dependency. * Updated versioning.
2021-06-11[hazelcast-cpp-client] update to v4.1.1 (#18318)yemreinci
* update hazelcast-cpp-client to v4.1.1 * ran
2021-06-09Added a new port hexl. (#18043)Wei Dai
2021-06-09[hunspell] Fix build error on Windows (#18037)NancyLi1013
* [hunspell] Fix build error on Windows * Update ports/hunspell/portfile.cmake * re-factory win build * Drop support with UWP since the upstream doesn't add app bitset in vcxproj * update baseline * Update port-version * Update version files * Update version-string field as version * Re update versions/h-/hunspell.json Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-06-09[highfive] Update to v2.3 (#17990)myd7349
* [highfive] Update to v2.3 * [highfive] x-add-version highfive * [highfive] Modernize * [highfive] x-add-version --overwrite-version highfive * [highfive] Do not build docs * [highfive] Bump version * [highfive] Update * [highfive] Bump version
2021-06-09[szip, hdf5] Fix mingw import lib names, control linkage (#17941)Kai Pastor
* Format manifest, make port version explicit * Use standard mingw import lib names * Choose either static or shared binaries * Insert macro for dynamic linkage * Add szip pc file * Quote path expressions * Port away from deprecated cmake functions * x-add-version * Begin of hdf5 changes * Remove obsolete variables (complements 23eadeae) * Fix indentation and quoting expressions * Handle single-linkage szip configuration * Use mingw import lib names for hdf5 * Move dependencies to Requires in pc file * Port away from deprecated cmake functions * x-add-version hdf5 * Apply szip review comments * Update version * Improve pkgconfig patch to handle lists * Update git-tree
2021-05-21[HarfBuzz] Update Port to 2.8.1 (#17273)Kirawi
* wip * wip * wip * wip * update version * fix port git-tree sha * wip * restart ci * restart ci * update to 2.8.1 * retry * Update harfbuzz.json Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-05-13[hazelcast-cpp-client] update for new release version 4.1.0 (#17724)ihsan demir
* Added the new hazelcast-cpp-client version 4.1.0. * added the `git-tree` for hazelcast-cpp-client 4.1.0 version.
2021-05-07[Hedley] Update to v15 (#17675)Pratik Chowdhury
* [Hedley] Update to v15 * Apply suggestions from code review Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2021-05-06[hdf5] fix pc files (#17598)Alexander Neumann
* [libctl] add new port * [meep] add new port * [meep|libctl] support only linux for now * [meep] add msys2 win32 handling * fix autoconfig missing flags in configure_make * [meep] move to autoconfig also on linux * [libct] enable autoconfig; [meep] disabled fixup pkgconfig files, routines is not able to fully clean up include paths from libraries * [hdf5] trying to fix pkgconfig files * [CI] add guile to linux image when provisioned * [msys2] add libguile dependency for libctl * [libctl] working on the windows port * add missing msys2 packages * add osx support * add guile on osx VMSS provisioning file * prepend msys2 to path * apply format.diff from PR automated test * revert skript changes * more hdf5 stuff * remove meep and libctl * more pc fixes for hdf5 * version stuff * reset doc changes * reset x264 changes * fix version stuff Co-authored-by: Stefano Sinigardi <stesinigardi@hotmail.com>
2021-05-01[hidapi] fix mac build (#17610)autoantwort
* [hidapi] fix mac os build * add version files
2021-04-30[hidapi] Add support linux and osx (#17231)NancyLi1013
* [hidapi] Add support linux and osx * Update versions * Remove duplicate AC_CONFIG_MACRO_DIR * Update versions/h-/hidapi.json
2021-04-26[glib up to gtk] update and make it work with meson (#13100)Alexander Neumann
* update glib to meson * update ci baseline * update glib to 2.66.3 remove cmakelists * fix some minor meson issue but meson is still a mess * add_bin_to_path to vcpkg_install_meson * regen docs * try fixing/touching all glib dependent ports * fix libsigcpp-3 version * fix glibmm * fix gmime * fix libcroco * update libnice * fix atk build * update harfbuzz * fix few builds * update libxmlpp * fix gdk-pixbuf * fix gts * gts add patch * remove old libsigcpp * add missing comma * fix supports logic * fix name mismatch * restore original ci baseline. * fix a lot of small details. increment controls. * fix harfbuzz & glib * bump port version * update port_versions * fix version field * update versions * fix glib in harfbuzz * update port versions * silly uppercase type * update port-versions * fix cairo build * update version * fix atk * update atk port-verisons * fix gts public includes * update versions * fix cairomm * fix pango * fix ignition * update versions. * fix gtk * fix librsvg * update versions * fix atk linux * fix libgpod * update versions * fix lcm * fix librsvg * update pango and pangomm * update pango to meson * more updates * update pixman * fix cairo * fix cairo * some fixes * reorder meson a bit * add none.txt for meson * fix x86_x64 to x86 "cross" builds * add tiff pkgconfig * update gdk-pixbuf * fix tiff and jpeg * add graphene * fix gdk-pixbuf * add sassc * update gtk * fix cairo complete build * add harfbuzz inlcude in pango since meson does not add it into pkgconfig. * fix gtk build. Remaining issue fix install script. * fix gtk build * fix io2d * add supports field * fix cartographer? * fix librsvg build * fix gtk build * fix cartographer * fix sassc on linux * fix tiff and libjpeg pc files * fix pixman x86 * _isnanf is undefined on arm- * merge fix for make on arm64 * fix gdk-pixbuf on arm64-windows * pixman remove test/demos. should fix it on osx. * [vcpkg_install_meson] add bin to path to run code generators * [vcpkg_configure_meson] deactivate native compiler in cross builds make x86 on x86_x64 a native instead of a cross build (as long as we are not building for UWP) * pixman reenable UWP support. * pixman reenable arm support * add pixman:arm-uwp=fail to baseline * update gtkmm * remove double whitespaces * gtk baseline gtk dependency on cairo x11 remove double spaces in flags * fix linux build * native none again * cairo fix cairo-script.pc * comment out patch since the cairo changes should have fixed it. * disable wayland backend in GTK since CI is missing system packages * silly typo in cairo pc file correction install lzo pc on windows * remove double spaces in _FLAGS remove unnecessary comments * actually disabling wayland backend * fix glib codegen issue having the wrong path * try to fix paths in glib codegen * integrate changes form #12860 * add the uwp patch back in * deactivate extra harfbuzz shapers. * vcpkg x-add-version --all --overwrite-version * remove patches in tesseract. * fix version * rerun add-version * add libgpod:x64-linux=fail to baseline due to missing system tools/libraries * change regex to take double - into account. * run x-add-version * run format-manifest * add missing removal of multiple spaces back into the regex * remove ws diff change * fix gtkmm the upstream way * remove ws to reduce diff * make glib build on osx * format manifest * run x-add-version * add pthread dependency * update baseline due to glib compiling on osx now. * add meson as a dep to glib * - add glib host dependencies - switch to manifest of touched ports * switch to manifest. * [libxml2] add gnuinstalldirs * [libxml2] add missing include of GNUInstallDirs * add version info * add include dir to pc files .... * update version * add UWP as crosscompiling target * Apply suggestions from code review * trying to fix cairo pthread detection on osx. * fix libmicrohttpd by adding the required system frameworks on osx * fix poppler by not removing the CXX standard * fix missing coretext header from harfbuzz in pano * fix formating issues * fix librsvg on osx * revert version changes * bump version * version stuff. * fix graphene version stuff * fix version stuff * removing ports from ci baseline to cause me pain * move cairomm:x64-linux=fail to gtkmm:x64-linx=fail remove pangomm:x64-osx=fail * fix typo * revert ws changes to vcpkg_install_meson * update port version after merge * version stuff * fix fluidsynth by adding vcpkg_check_features * move cairo to ci baseline on osx * version stuff * fluidsynth corrections * more version stuff * apply code review changes * clean version stuff. * update version stuff * code review cleanup * version stuff * formating * update version stuff again * remove gdi again * version stuff * version stuff * version baseline * Apply strega-nil suggestions from code review * run x-add-version * reset versions to upstream/master * v8 CONTROL -> json * reset fluidsynth to upstream/master * first batch of version-string -> version conversion * second and last batch of version-string -> version conversions * update version stuff * disable gdi feature in harfbuzz (missing user32 linkage in qt5-base) * version stuff * Apply suggestions from code review Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * more CR stuff * update versions * back out provision changes so that pr can be merged. Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-04-23[hdf5] threadsafe support (#17371)Matthieu Penant
* hdf5 threadsafe support fixes #17260 * baseline + sha
2021-04-12[hypodermic] Add new port - Hypodermic v2.5.2 (#17208) (#17208)Oliver Dick
2021-04-09[hunspell] switch to make to enable build of hunspell tools (#17148)Alexander Neumann
* [hunspell] switch to make to enable build of hunspell tools * version stuff
2021-03-22[happly] add new port (#16788)autoantwort
* [happly] add new port * add version files
2021-03-11[harfbuzz] work around upstream SameFileError (#16621)Robert Adam
During the configuration of harfbuzz several Python scripts are invoked that are supposed to copy some files. For some reason however the scripts end up being instructed to copy files to themselves at which point a SameFileError is risen, causing the build to fail. This is a workaround for the underlaying issue that is deemed to be usptream. The upstream issues are - https://github.com/mesonbuild/meson/issues/8375 - https://github.com/harfbuzz/harfbuzz/issues/2870 The workaround is to add a patch that makes sure these scripts check whether source and target file are the same and only invoking the copy action if they are not. Fixes #16262
2021-03-11[hazelcast-cpp-client] New version update to 4.0.1 (#16593)ihsan demir
* Updated the `hazelcast-cpp-client` version to 4.0.1 since we released this new patch release. * Updated the version for the latest commit using the command `./vcpkg x-add-version --overwrite-version hazelcast-cpp-client`. * [hazelcast-cpp-client] Restore version 4.0.0 to the db Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-03-10[hiredis] Fix include path (#16512)NancyLi1013
* [hiredis] Fix include path * Update versions * Update ports/hiredis/vcpkg.json * Update versions/h-/hiredis.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-02-24[hazelcast-cpp-client] Add new port (#16235)ihsan demir
* Added Hazelcast C++ client (https://github.com/hazelcast/hazelcast-cpp-client) port for Hazelcast in-memory database. * Fixed the patch (The generated cmake files destination is corrected.) * Updated the patch. see https://github.com/hazelcast/hazelcast-cpp-client/pull/812 * Disable uwp support. * Added the missing version file for hazelcast-cpp-client. * [hazelcast-cpp-client] Avoid checking in large patch file * Format vcpkg.json * Updated the version for the latest commit using the command `./vcpkg x-add-version --overwrite-version hazelcast-cpp-client`. Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-02-20[hpx] Adding HPX V1.6.0 (#16264)Hartmut Kaiser
2021-02-19[halide] Update Halide to 11.0.1 (#16246)Alex Reinking
* Update Halide to 11.0.0 * test PR branch * run vcpkg x-add-version halide * switch back to release/11.x * rerun x-add-version * update usage * update Halide to 11.0.1 * ./vcpkg x-add-version halide --overwrite-version
2021-01-25[harfbuzz] Use meson and update to 2.7.0 (#12860)Martin Vejdarski
* [harfbuzz] Use meson * [harfbuzz] Add config file for CMake * [harfbuzz,pango] Remove glib option for harfbuzz * [libass,libmupdf,qt5-base,skia] Fix for harfbuzz * Back out meson edit already applied in https://github.com/microsoft/vcpkg/pull/15258 * [harfbuzz] Fixup pkgconfig * [libass] Bump port version * Revert "[libass,libmupdf,qt5-base,skia] Fix for harfbuzz" This reverts commit 3ba27c6c1c10a2889a8c5e028d010916f91418e3. * [harfbuzz] Update to 2.7.4 * update baseline record * Restore glib feature for harfbuzz and remove vagrant change * Update port version * Change over to manifests * Update port version Co-authored-by: Ebrahim Byagowi <ebrahim@gnu.org> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-01-21[vcpkg] Rename `port_versions` to `versions` (#15784)nicole mazzuca