Граф коммитов

522 Коммитов

Автор SHA1 Сообщение Дата
Alonso Schaich 860c966502
[glib] update to 2.78.0 (#34439) 2023-10-13 11:05:57 -07:00
Tobias Ribizel fa4a2a79b2
[ginkgo] Update to 1.6.0 (#34280) 2023-10-13 10:55:58 -07:00
Darren Bolduc b90d191914
[google-cloud-cpp] update to latest release (v2.17.0) (#34434) 2023-10-12 20:49:47 -07:00
talregev 98da1aa366
Update gz-cmake3 (#34010) 2023-10-12 19:34:04 -07:00
MonicaLiu 4c84b3649d
[gstreamer] Change HEAD_REF from master to main (#34345) 2023-10-09 15:37:25 -07:00
Darren Bolduc 3ee9091ed4
[google-cloud-cpp] update to latest release (v2.13.0) (#34238) 2023-10-04 11:36:32 -07:00
Kai Pastor fc3b54c757
[libgpg-error,libgcrypt,libassuan,gpgme,libgwenhywfar] Update and fix (#34135) 2023-10-03 20:34:51 -07:00
Park DongHa 057e254295
[gstreamer] disable "nvcodec" of "plugins-bad" (#34152) 2023-10-02 19:52:46 -07:00
Jia Yue Hua a633d5ef2b
[gaussianlib] update to 2023-02-17 (#34154) 2023-10-02 19:51:53 -07:00
Jia Yue Hua 05aec8f20d
[gcem] update to 1.17.0 (#34155) 2023-10-02 19:51:40 -07:00
Jia Yue Hua ac91cb6d58
[glaze] update to 1.5.1 (#34159) 2023-10-02 19:51:14 -07:00
Jia Yue Hua 38b14a05c4
[glslang] update to 13.0.0 (#34160) 2023-10-02 19:50:58 -07:00
Jia Yue Hua c3f3a57bd8
[gmmlib] update to 22.3.12 (#34161) 2023-10-02 19:50:44 -07:00
Weihang Ding 41e267049e
[getopt-win32] Bump to 1.1.0.20220925 (#33893)
* [getopt-win32] Bump to 1.1.0.20220925

* Update version database
2023-09-28 23:37:56 -07:00
Jón Bjarni 972ca20ed2
[glaze] Update to 1.4.3 (#33936)
* update glaze 1.4.3

* update versions
2023-09-26 00:02:41 -07:00
Kai Pastor 62988594de
[gdal] Update to 3.7.2 (#33960) 2023-09-25 23:48:02 -07:00
Kai Pastor 7ceccee7f8
[graphviz,librsvg,libcroco] Refresh (#33964)
* [graphviz] Cleanup

* Refresh patches

* Versions

* Disable #pragma comment lib

* DLLs without exports

* [librsvg] Modernize

* Revise vendored librsvg build

* [libcroco] Revise vendored build

* [librsvg] Revise vendored build, cont.

* [libcroco] Fix version

* [librsvg] Fix pc file

* [librsvg] Fix config polyfill

* Mingw fixes, no abs paths

* No abs paths
2023-09-25 23:47:35 -07:00
Mengna Li 14dccc69fb
update to 1.22.5 (#33863) 2023-09-20 10:19:20 -07:00
talregev a1dcb37339
Add more gz ports (#33389) 2023-09-20 10:08:06 -07:00
Lily Wang 500700a90c
[atk/gdk-pixbuf/gtk/gtk3/harfbuzz/pango] Fix dependency gobject-instrospection of feature instrospection (#33792)
* [atk/gdk-pixbuf/gtk/gtk3/harfbuzz/pango] Fix dependency gobject-instrospection of feature instrospection

* update version
2023-09-18 09:52:14 -07:00
talregev 66d350f79c
Compile graphviz 9.0.0 (#33795) 2023-09-18 09:28:07 -07:00
Frank ba3a8acdba
[glib] Update version to 2.76.5 (#33696)
* [glib] Update version to 2.76.5

* version
2023-09-13 16:39:29 -07:00
Frank d4ab44b499
[grpc] tools no uwp (#33697) 2023-09-13 16:38:15 -07:00
مهدي شينون (Mehdi Chinoune) b718abc739
[gtest] update to 1.14.0 (#33728) 2023-09-13 15:54:23 -07:00
Carlos O'Ryan 2ad55efa24
[google-cloud-cpp] upgrade to v2.15.1 (#33667) 2023-09-13 15:42:16 -07:00
Ómar Högni Guðmarsson 56f1f92a59
[glaze] update to 1.4.1 (#33588) 2023-09-06 23:43:20 -07:00
autoantwort 6d70500536
[gdal] don't use jpeg when disabled (#33566) 2023-09-05 22:42:13 -07:00
Mengna Li 6bee51db43
[gtk] update to 4.10.5 (#33526) 2023-09-05 22:33:24 -07:00
Carlos O'Ryan 4a600e9fea
[google-cloud-cpp] update to latest release (v2.14.0) (#33503) 2023-09-01 15:34:33 -07:00
Frederik Carlier ba58a3fdf2
[glib] Support cross-compiling Objective C code using Meson (#33313)
* Support cross-compiling Objective C code using Meson

The glib port uses Objective C code and the Meson build system.
You'll end up cross compiling glib when compiling for x64 osx
on an arm64 osx machine, or vice versa.

For this to work, an Objective C compiler needs to be set
in the Meson cross file.

vcpkg generates this file based on the
`scripts/buildsystems/meson/meson.template.in` template, and expects
the `MESON_OBJC` CMake variable to be set.

That's the job of `z_vcpkg_meson_set_proglist_variables` in
`scripts/cmake/vcpkg_configure_meson.cmake`.  It will only generate data
for an Objective C compiler if:

- The `Languages` argument includes `OBJC`
- CMake has detected a Objective C compiler, and has set `VCPKG_DETECTED_CMAKE_OBJC_COMPILER`

To make this work, this patch:
- Enables the OBJC and OBJCXX language on Apple platforms
- Updates the call to `vcpkg_configure_meson` in the glib port file
  to include the OBJC OBJCXX languages.

Fixes https://github.com/microsoft/vcpkg/issues/26147
Fixes https://github.com/microsoft/vcpkg/issues/20341
Based on https://github.com/microsoft/vcpkg/pull/26259
Based on 27dee354e4

Tested on an arm64 mac to compile glib for x64 macos

* Update version database
2023-08-25 12:25:28 -07:00
Kai Pastor edd3db2e3b
[libffi] Use upstream's build system (#33203)
* [libffi] Use upstream's build system

* WIP [skip actions]

* WIP [skip actions]

* WIP [skip actions]

* Finish libffi

* Fix downstream lookup

* Update versions

* [gobject-introspection] Require libffi

* Move DLLs to bin

* [libffi] Usage

* Restore azp

* Fix typo

* CI
2023-08-24 12:51:20 -07:00
Weihang Ding a880596395
[glm] Bump to 2023-06-08 & fix usage (#32685)
* [glm] Bump to 0.9.9.8+20230608 & fix usage

* switch to version-date

* update version database
2023-08-23 22:04:38 -07:00
JonLiu1993 24acb5f356
[vcpkg baseline][gdal] Fix quote variable error (#33332)
* [vcpkg baseline][gdal] Fix  quote variable error

* update version

---------

Co-authored-by: Zhao Liu <v-zhli17@microsoft.com>
2023-08-23 21:36:28 -07:00
Lily Wang 27fb19bdcc
[many ports] Fix URLS of download patch (#33309)
* [many ports] Fix URLS of download patch

* update version

* Fix opencv4 and minhook

* update version
2023-08-23 12:03:24 -07:00
autoantwort 1e85d51160
[gperftools] use supports expression (#33319) 2023-08-23 11:56:38 -07:00
Kai Pastor e91d6617db
[gettext] Handle runtime for unix tools (#33030)
* [gettext] Handle runtime for unix tools

* CI

* CI

* CI

* CI

* CI
2023-08-23 11:46:39 -07:00
jim wang c8fa8798dd
[vcpkg baseline][graphicsmagick] update to 1.3.41 (#33307)
* Generate Imath.pc

* update version

* add dependency imath minizip-ng

* updata version

* update to 1.3.41

* update version

* update version
2023-08-23 11:44:53 -07:00
Lily Wang 58c4dfaa89
[gtk/gtk3] Fix install gschemas.compiled of glib-2.0 (#33253)
* [gtk, gtk3] Fix install gschemas.compiled of glib-2.0

* update version

* Revert changes of gtk3 and disable install gschemas.compiled by gtk

* update version

* Update gtk3.json
2023-08-22 13:04:41 -07:00
autoantwort 41f14f54a9
[gdal] don't find arrow (#33224) 2023-08-17 12:59:50 -07:00
Alexander Neumann c77bce443d
[gsoap] msbuild (#33149)
* [gsoap] msbuild

* v db
2023-08-16 13:02:22 -07:00
JonLiu1993 c50238af5f
[gmsh] update to 4.11.1 (#33181)
* [gmsh] update to 4.11.1

* update version

* update hash

* update version

---------

Co-authored-by: Zhao Liu <v-zhli17@microsoft.com>
2023-08-16 12:55:38 -07:00
Ómar Högni Guðmarsson 020874c1d6
[Glaze] Update V1.3.5 (#33192)
* [Glaze] Update v1.3.5

* Update database

* Glaze remove port-version

* Update database
2023-08-16 12:26:23 -07:00
autoantwort 7247446396
[gdal] control dependency on libspatialite (#33096) 2023-08-11 11:04:06 -07:00
Osyotr c6928dfb9e
[python3] Update to 3.11.4 (#31727)
* [python3] Update to 3.11.3

* Force set PythonForBuild on windows

* Set LD_LIBRARY_PATH on unix

* Always use vcpkg_find_acquire_program(PYTHON3) on windows

* Remove LD_LIBRARY_PATH shenanigans

* [vtk] Parse python version from include folder

* Fix static builds on windows

* Pass --with-build-python on unix

* [omniorb] Fix python version in patch

* Resurrect rpath patch

* [python3] fix usage

* [gobject-introspection] don't hardcode python version

* Update vcpkg_find_aquire_program(PYTHON3)
This is also required for gobject-introspection

* [paraview] don't hardcode python version

* [vtk-dicom] don't hardcode python version

* Update python in vcpkgTools.xml

* Fix host arch detection in vcpkg_find_acquire_program(PYTHON3)

* [libpq] Don't hardcode python version

* [shiva] Don't pass python variables

* [vcpkg-get-python-packages] Delete unused file, update hardcoded python version

* [python3] update to 3.11.4

* [omniorb] Use PREPEND in vcpkg_add_to_path
So that python from vcpkg is picked before system python

* libpq quickfix

* re-fix libpq

* fix vcpkg-get-python-packages

* Make windows 7 patch compatible with unix builds

* Copy pyd files to bin
Also fixes copying files that do not belong to current build tree

* Fix static builds

* Speculatively fix osx regression

* Fix omniorb on unix

* [gobject-introspection] fix windows builds

* [vtk] Update vendored copy of mpi4py for python 3.11 support

* [mdl-sdk] Fix python

* [gobject-introspection] fix the fix of a fix...

* Update versions

* Undo changes in gobject-introspection and vcpkg_find_aquire_program(PYTHON3)

---------

Co-authored-by: root <root@DESKTOP-UIPL9V8>
2023-08-07 13:19:53 -07:00
omartijn ec183f8ab6
Add support for rtti in glslang port (#32541)
Co-authored-by: Martijn Otto <martijn@resolume.com>
2023-08-07 09:59:24 -07:00
Ridwan Abdul Hafidh 56a44f3181
[gperf] Fix error in cpp17 mode (#32980)
* fix gperf in cpp17 mode

* update version

* update version #2

* remove unused header patch file

* update version 3

---------

Co-authored-by: rdh <ridwanabdulhafidh@gmail.com>
2023-08-07 09:11:58 -07:00
Kai Pastor 2973016c49
[gmp] Avoid libm for x86 msvc host (#32984) 2023-08-07 09:10:14 -07:00
Chris W ddf8878f9a
[gperftools] Update version to 2.10 (#32974)
* [gperftools] Update version to 2.10

* [gperftools] Update version database
2023-08-07 09:02:52 -07:00
Darren Bolduc 3e7978bd02
[google-cloud-cpp] fix opentelemetry feature (#32936) 2023-08-04 06:58:38 -07:00
Scott Hart b423d24fff
[google-cloud-cpp] update to latest release (v2.14.0) (#32881) 2023-08-02 09:05:37 -07:00