autoantwort
dd94ac64c1
[usrsctp] update to 0.9.5.0 ( #20028 )
2021-09-09 21:16:23 -07:00
Dawid Wróbel
b614a40e3c
[kf5i18n] static builds fixes ( #20016 )
...
* [kf5i18n] fix libiconv transient dependency
* [kf5i18n] update versions
2021-09-09 21:15:36 -07:00
myd7349
b74d9b2519
[nng] Update to v1.5.1 ( #19478 )
...
* [nng] Update to v1.5.1
* [nng] Bump version
* [nng] Quote source path
* [nng] Bump version
2021-09-09 21:12:21 -07:00
myd7349
f0679e2444
[uthash] Add new port ( #19823 )
...
* [uthash] Add new port
* [uthash] Version stuffs
2021-09-09 21:11:53 -07:00
JonLiu1993
a07c1574af
[sqlite3] update to 3.36.0 ( #19847 )
...
* [sqlite3] update to 3.36.0
* update version
2021-09-09 21:06:12 -07:00
Jack·Boos·Yu
d3d8dad4b4
[openimageio] Fix find and use dependencies ( #19916 )
...
* [openimageio] Fix find and use dependencies
* version
* Restore FindOpenEXR.cmake
* version
* Update ports/openimageio/portfile.cmake
* Update versions/o-/openimageio.json
* Re-make patch
* version
* Update versions/o-/openimageio.json
* Update ports/openimageio/portfile.cmake
* version
2021-09-09 21:05:50 -07:00
NancyLi1013
d251db7f96
[freeimage] Enable version information in FreeImage.dll ( #19610 )
...
* [freeimage] Add version in FreeImage.dll
* Add version files
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-09 20:41:22 -07:00
Chris Djali
d4aa0d2bfe
[angle] Enable ANGLE's desktop GL backend ( #19891 )
...
* Enable ANGLE's desktop GL backend
Only the D3D and GLES backends were available, but getting desktop GL to
work is trivial.
The Vulkan backend would be a much bigger task, unfortunately.
* x-add-version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-09 14:11:10 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
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-09 01:24:04 -07:00
Azure SDK Bot
7e044226c8
[azure-core-cpp] Update to 1.2.1 ( #19943 )
...
## 1.2.1 (2021-09-02)
### Bugs Fixed
- [2785](https://github.com/Azure/azure-sdk-for-cpp/issues/2785 ) Fix to build on g++ 5.5.
### Other Changes
- Fixed compilation error on POSIX platforms where OpenSSL was not available.
- Support CMake version 3.12
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-08 15:43:23 -07:00
Kai Pastor
c759b997ba
[libjpeg-turbo] Update wrapper to correctly find debug/release variant ( #19319 )
...
* Format manifest
* Fix cmake wrapper
* Drop windows debug lib renaming
* Fix build warnings
* x-add-version
* Consolidate azure-kinect-sensor-sdk patches
* Fix jpegturbo dependency
* x-add-version
* Fix wrapper message
* x-add-version
2021-09-08 15:28:41 -07:00
autoantwort
3f4c4a61eb
[aubio] Add support for find_package ( #19996 )
...
* [aubio] Add support for find_package
* Add include(CMakeFindDependencyMacro)
* x-add-version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-08 14:58:24 -07:00
Billy O'Neal
cd54580d1f
[libbson, mongo-c-driver] Convert to vcpkg.json. ( #20039 )
...
* Fixes source writes rather than using DISABLE_PARALLEL_CONFIGURE
* Fixes to use modern vcpkg helpers.
* Fixes to install to the correct include path rather than moving the resulting includes after the fact.
* Remove do-nothign renames.
* Fixes to make static cmake configs find the correct bits.
2021-09-08 11:56:06 -07:00
Phoebe
bcf551b980
[fftw3/libwebsockets/uwebsockets] Update to latest release ( #20051 )
2021-09-08 08:02:56 -07:00
myd7349
e239a6fa6e
[simdjson] Update to v1.0.0 ( #20052 )
...
* [simdjson] Update to 1.0.0
* [simdjson] Bump version
2021-09-08 08:02:07 -07:00
NancyLi1013
6ea34201f3
[h3/jaeger-client-cpp] Update to the latest version ( #20008 )
...
* [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-08 08:00:54 -07:00
Phoebe
277e9a7f46
[glew/openvdb/xtensor-io] Update to latest release version ( #20022 )
...
* [glew/openvdb/xtensor-io] Update to latest release version
* [glew] Update patch
* [xtensor-io] Update version
2021-09-08 07:56:56 -07:00
JonLiu1993
f4f8bba9d4
[libfort/libgit2/cli11] update to the latest version ( #20024 )
...
* [libfort/libgit2/cli11] update to the latest version
* update version
* delete useless dependencies
* update version
2021-09-08 07:55:21 -07:00
Vitalii Koshura
f4a827c2a7
[rappture] Update port to use vcpkg.json instead of CONTROL ( #20049 )
...
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2021-09-08 07:54:48 -07:00
Mathis
b91abc4eda
[imgui] update to 1.84.2 ( #20012 )
...
* update imgui
* version
* use correct ref for docking
* version
* update commit for dockiung
* version
2021-09-08 07:54:28 -07:00
eao197
7df5a3efef
[so5extra] Update to 1.4.1.1 ( #20004 )
...
* so5extra updated to the latest version.
* Fix for so5extra's manifest format.
* so5extra version added to baseline.
* Accepting suggestion for so5extra's manifest.
* Update for so5extra version in baseline.
2021-09-08 07:51:54 -07:00
Be
4304bada11
[vamp-sdk] fix library filenames to match upstream build systems ( #20002 )
...
* [vamp-sdk] fix library filenames to match upstream build systems
There were two problems:
1. The port added a `d` suffix for debug builds that upstream did
not. This caused
`find_library(VampHostSDK_LIBRARY NAMES vamp-sdk)`
to fail to find the debug library.
2. The port used the same file name for libraries on every OS but
that is not what upstream does.
* [vamp-sdk] fix capitalization of Vamp
Vamp is not an acronym.
2021-09-08 07:51:30 -07:00
NancyLi1013
5b2ac1fed8
[libhsplasma/libpcap/lv2/libcrafter] Update to the latest version ( #19965 )
...
* [libhsplasma/libpcap/lv2] Update to the latest version
* [libpcap] Remove unused comments
* Update version files
* [lv2] Fix usage
[libpcap] Update ci.baseline.txt
* [libhsplasma] Remove x64-windows-static=fail from ci.baseline.txt
* [libcrafter] Update to 1.0
* [libcrafter] Add vcpkg.json
* Update version files
* Add CRT check for libpcap and update version as versin-semver for libpcap
* Update version files
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-08 07:45:37 -07:00
evpobr
615547c1d5
[libsamplerate] Update 0.2.1 -> 0.2.2 ( #20003 )
2021-09-07 21:49:35 -07:00
Jafar Abdi
e8661320ba
[libharu] Fix renaming library when one of the build type is selected ( #19979 )
...
* libharu: Fix renaming library when build type is either release or debug
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* Run vcpkg x-add-version --all
* Small changes
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-09-07 21:48:24 -07:00
JonLiu1993
d1657f4c9b
[arcus/any-lite/aixlog] Update to the latest version ( #19977 )
...
* [arcus/any-lite/aixlog] Update to the latest version
* update version
* Apply requested changes
* update version
* update vcpkg.json
* update version
2021-09-07 21:41:40 -07:00
Phoebe
8ef3e28099
[libuv/librsync/libqrencode] Update to latest release version ( #19972 )
...
* [libuv/librsync/libqrencode] Update to latest release version
* Update the baseline version
* [libuv] Add new source file epoll.c
* Update the source
* Small changes
2021-09-07 21:40:10 -07:00
Cheney Wang
4814a51290
[openimageio] update version to 2.3.7.2 ( #19961 )
...
* [openimageio] update version to 2.3.7.2
* Disable the test in vcpkg
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-07 21:09:32 -07:00
Phoebe
f63a6a53b4
[ms-gltf] Update to latest release r1.9.5.4 ( #19958 )
...
* [ms-gltf] Fix the wrong homepage
* Update pdb file path
* Pass WINDOWS_USE_MSBUILD to vcpkg_cmake_configure
* Update to latest release r1.9.5.4
2021-09-07 21:09:06 -07:00
Carlos O'Ryan
b5865bfeba
[google-cloud-cpp] update to latest release (v1.31.1) ( #19957 )
2021-09-07 21:06:57 -07:00
NancyLi1013
e5b6ec234b
[libmediainfo/glslang] Update to the latest version ( #19917 )
...
* [libmediainfo/glslang] Update to the latest version
* Update version files
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-07 21:06:30 -07:00
myd7349
503d17d534
[uriparser] Update to v0.9.5 ( #19820 )
...
* [uriparser] Update to 0.9.5
* [uriparser] Add new version
* Small changes
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
2021-09-07 21:04:44 -07:00
JonLiu1993
c126a7817c
[harfbuzz] update to 2.9.0 ( #19817 )
...
* [harfbuzz] update to 2.9.0
* update version
* update version to version-semver
* update version
* remove fontconfig option
* update version
2021-09-07 21:04:22 -07:00
Geoff Evans
4d8cf181f1
proj4 uwp improvments ( #18323 )
...
* Remove prior arm/uwp patch since host dependencies now allow for proj database generation, and add a new patch that repairs Win32 API calls to use UWP counterparts in UWP builds
* Update ci baseline for port changes
* Update port version
* Fix patch list for PR
* Bump port-version, disable some broken downstream libs
* Update port version commit
2021-09-07 21:02:10 -07:00
Phoebe
6a8dea1ace
[icu] Fix tool path ( #19726 )
...
* [icu] Fix tool path
* Update the baseline version
* Apply the review suggestions
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-07 15:19:28 -07:00
Wolfgang Stöggl
7fae7f5923
[lcms] Update to 2.12 ( #19551 )
...
In addition to updating the version to 2.12, the following
modifications were applied to the port:
- Use the name lcms2 for the library, as it is called upstream since
version 2 of Little-CMS.
Remark: In the past, the library has already been called lcms2 for
a while in vcpkg (1e53c60
until 726c111
).
The ports in vcpkg, which currently require the port lcms
(devil, libraw and opencolorio), use and support lcms2 include/lib.
- Add generating a pkg-config file
- Add quotes to file commands in portfile.cmake
2021-09-07 15:19:07 -07:00
autoantwort
8307923c6a
[yaml-cpp] fix cmake and pkgconfig files ( #19703 )
2021-09-07 14:17:18 -07:00
Buck Yeh
adad924a91
[buck-yeh-bux] add port ( #19670 )
...
* [bux] Add new port
* Corrections according to Create Pull Request suggested questions
* SHA512
* Mark fails into .\scripts\ci.baseline.txt
* Mark fails into .\scripts\ci.baseline.txt
* No need of "port-version": 1 in vcpkg.json
* Update version database
* Update ports/bux/portfile.cmake
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/bux/portfile.cmake
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/bux/portfile.cmake
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/bux/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update bux.json
* Update ports/bux/vcpkg.json
* update version
* Update scripts/ci.baseline.txt
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* update bux support
* update version
* update version
* Rename bux to buck-yeh-bux
* Update version database
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-07 14:13:35 -07:00
winsoft666
ac2bcf0d6b
[cpp-ipc] Add new port ( #19360 )
...
* [teemo] Update version to v2.3.
* [teemo] Modify version to v2.2
* [teemo] Run `vcpkg x-add-version teemo` to add version info.
* [teemo] Update Build-Depends.
* Update versions/t-/teemo.json
* [libipc] Add new library.
* [libipc] Run ./vcpkg x-add-version --all
* [libipc] Fix compile error.
* update version
* Update ports/libipc/CONTROL
* update version
* Update ports/libipc/portfile.cmake
Co-authored-by: Billy O'Neal <bion@microsoft.com>
* Update ports/libipc/portfile.cmake
Co-authored-by: Billy O'Neal <bion@microsoft.com>
* [cpp-ipc] rename libipc to cpp-ipc
* [cpp-ipc] Run vcpkg x-add-version --all
* [cpp-ipc] Remove old libipc
* update cpp-ipc
* update version
* delet libipc.json
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy O'Neal <bion@microsoft.com>
2021-09-07 14:12:35 -07:00
Kai Pastor
642d1ccb27
[kealib] Update, revise features ( #19118 )
...
* Convert manifest to JSON
* Remove purely transitive dependencies
* Parallel is unsupported with HDF5 C++
* Revise portfile
* Update to 1.4.14
* x-add-version
2021-09-07 11:56:42 -07:00
JonLiu1993
e67f76161c
[fmt] update to 8.0.1 ( #18581 )
...
* [fmt] update to 8.0.0
* update version
* revert patch foramt
* update version
* update version
* [fmt] update to 8.0.0
* update version
* [fmt] update to 8.0.1
* update version
* Apply suggested change
* update version
2021-09-07 11:55:54 -07:00
7FrogTW
71422c6272
[sentencepiece] v0.1.95 ( #19858 )
2021-09-05 09:49:17 -07:00
Liu Chenxin
210240b399
[libssh] add static build support for MinGW subsystem ( #19854 )
...
* add MinGW subsystem support for nana
* update port version
* [nana] update versions
* format-manifest
* add static build support for MingW subsystem
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-03 22:36:23 -07:00
Stefano Sinigardi
09019cbc9a
[OpenCV] fix protobuf references ( #19770 )
...
* [OpenCV] fix protobuf targets
* [OpenCV] fix port versions
* [OpenCV] fix references
2021-09-03 22:25:12 -07:00
Dawid Wróbel
698ffe5d25
[kf5solid] Fix CMake config; some extra fixes ( #19810 )
...
* [kf5solid] require bison >= 3.0
* [kf5solid] fix CMake config file
* [kf5solid] some apps actually use solid-hardware5
diff --git a/ports/kf5solid/portfile.cmake b/ports/kf5solid/portfile.cmake
index b876b00c0..53cf1841b 100644
--- a/ports/kf5solid/portfile.cmake
+++ b/ports/kf5solid/portfile.cmake
@@ -44,6 +44,11 @@ vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/KF5Solid)
vcpkg_copy_pdbs()
+vcpkg_copy_tools(
+ TOOL_NAMES solid-hardware5
+ AUTO_CLEAN
+ )
+
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
@@ -51,9 +56,6 @@ endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/etc")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
-# solid-hardware and solid-power are a non-dev tools allowing to list hardware and power managament status of one's system. No need to keep them.
-file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}")
-file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}")
file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/qml" "${CURRENT_PACKAGES_DIR}/debug/qml")
file(RENAME "${CURRENT_PACKAGES_DIR}/lib/qml" "${CURRENT_PACKAGES_DIR}/qml")
* [kf5solid] /etc is empty, no need to remove it
* [kf5solid] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5solid] update versions
2021-09-03 22:20:10 -07:00
Billy O'Neal
690f41497a
[simdutf] Disable benchmarks and tests. ( #19987 )
2021-09-03 22:16:43 -07:00
Dorq
a4d0471091
[libigl] fix imgui feature ( #19746 )
...
* [libigl] fix imgui feature
* run x-add-version
2021-09-03 17:38:46 -07:00
Vitalii Koshura
bde7e87f48
[sentry-native] Update port to use new vcpkg cmake scripts ( #19839 )
...
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2021-09-03 17:37:59 -07:00
JonLiu1993
fbc1e4178a
[libmupdf/liblinear/libkeyfinder] Update to latest version ( #19959 )
...
* [libmupdf/liblinear/libkeyfinder] Update to latest version
* update version
* update vcpkg.json format
* update version
2021-09-03 17:37:20 -07:00
Dawid Wróbel
14f6b67e42
[kf5globalaccel] new port ( #19757 )
...
* Add kf5globalaccel port
* Revert "Add kf5globalaccel port"
This reverts commit f1ac3db8e2
.
* Add kf5globalaccel port
* Fixed kf5globalaccel for windows
* [kf5globalaccel] update to 5.75.0
* [kf5globalaccel] update to 5.84.0
* [kf5globalaccel] use vcpkg_copy_tools
* [kf5globalaccel] only remove what's needed
* [kf5globalaccel] wrap paths in quotes
* [kf5globalaccel] use semVer
* [kf5globalaccel] update versions
* [kf5globalaccel] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5globalaccel] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-09-03 17:17:46 -07:00