| Age | Commit message (Collapse) | Author |
|
* libarchive 3.5.1
attempt to create package - error on libiconv.
* update sha based on build error
* Turn off the CMAKE_USE_SYSTEM_LIBARCHIVE option
* remove unused patches
* remove empty patches
* Update scripts/test_ports/cmake/portfile.cmake
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
* revisit control file -> vcpkg.json
* recover patch files
* remove port version per auto-review
* restore INCLUDE(CreatePkgConfigFile)
* update git-tree after merge
* patches not referenced #facepalm
* Update libarchive.json
* added missing FEATURES keyword
* update git-tree + merge fix
* Update libarchive.json
* Update libarchive.json
* Update libarchive.json
* libarchive 3.5.2
* formatting + git-tree
* Update libarchive.json
* should not remove wrapper ?
* Update libarchive.json
* revert patch original EOF
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: Seika <seika@machinex.ca>
|
|
* Drop unused xxhash dependency
* Modernize portfile
* Install pc file
* x-add-version
* Switch to 'version' field
* Update versions
* Fix liblz4 pc file name
* Update versions
|
|
|
|
* [vcpkg baseline][pangolin] Add features, fix dependency pybind11
* Fix dependency name realsense2
* Remove default-feature gles
* Re-generated patch, add MAYBE_UNUSED_VARIABLES, fix build with core
* version
* Fix desc, add more MAYBE_UNUSED_VARIABLES
* version
* more MAYBE_UNUSED_VARIABLES
* version
* Remove some CMAKE_DISABLE_FIND_PACKAGE_*
* version
* Remove more CMAKE_DISABLE_FIND_* since they are disabled
* Remove BUILD_FOR_GLES_2
* version
* Restore BUILD_FOR_GLES_2
* version
* Fix more dependencies
* [libuvc]Fix build type, fix usage
* version
* Re-make patch
* version
* Use libjpeg macros instead of target name to avoid use `find_dependency`
* version
* Fix usage on non-Windows
* version
* commit suggestions
* version
* Apply suggestion
* version
* Re-fix JPEG
* version
* typo
* format
* version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
```
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
```
|
|
* 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
|
|
* 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.
|
|
|
|
* [libfort/libgit2/cli11] update to the latest version
* update version
* delete useless dependencies
* update version
|
|
* [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>
|
|
|
|
* 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>
|
|
* [libuv/librsync/libqrencode] Update to latest release version
* Update the baseline version
* [libuv] Add new source file epoll.c
* Update the source
* Small changes
|
|
* [libmediainfo/glslang] Update to the latest version
* Update version files
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
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
|
|
* 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>
|
|
* [libigl] fix imgui feature
* run x-add-version
|
|
* [libmupdf/liblinear/libkeyfinder] Update to latest version
* update version
* update vcpkg.json format
* update version
|
|
* [libosmium/libxlsxwriter] Update to the latest version
* Update version files
* Update versions/l-/libosmium.json
* Attempt to fix version database again.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [libdatachannel] update to version 0.14.3, fixing linking errors
* [libdatachannel] correctly format manifest
* [libdatachannel]: x-add-version --all
|
|
* add lager port
* run `vcpkg x-add-version --all`
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [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
|
|
* Fix repeated inclusion of wrappers
* x-add-version
|
|
* added features for vpx to enable realtime, highbitdepth and pic
* output of vcpkg format-manifest
* added port version
* ran format-manifest again
* changed to port version 1 as implicit version is 0
* added updated version files
* removed pic feature and instead set --enable-pic as default option
* updated version database
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [libvpx] Add pkgconfig check
* Update version files
* Add vpx.pc.in on Windows
* Update versions/l-/libvpx.json
* Remove -lm from vpx.pc.in file
* Update versions/l-/libvpx.json
* Remove debug messages
* Update versions/l-/libvpx.json
|
|
|
|
* Fix filenames for linux vs windows in liblo portfile
* Removed deprecated call and now using vcpkg_copy_tools
* Upgraded to manifest file
* Increment port-version
* Remove now working builds from ci.baseline
* Updated versioning files
* Fixed type for vcpkg.json
* Updated sha for liblo version
|
|
* Use -llibffi on Windows
Replace -lffi with -llibffi for Windows development, not just mingw
* Update portfile.cmake
* Update baseline.json
* Update libffi.json
* Add port-version and make path quoted
* Update version files
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
|
|
* [libmt32emu] update from 2.5.0 to 2.5.3
* update version
|
|
* [libpmemobj-cpp] update to 1.13.0
* update version
|
|
|
|
* [libunifex] create a new port
* [libunifex] update version/baseline
* [libunifex] fix wrong support expression
* update version SHA
* [libunifex] more warning comments
* [libunifex] use `unofficial::` namespace
* [libunifex] allow warnings in build
* simplify the patch file
* Update ports/libunifex/vcpkg.json
Co-authored-by: ras0219 <533828+ras0219@users.noreply.github.com>
* [libunifex] update patch files
* [libunifex] replace INCLUDEDIR to include
Co-authored-by: ras0219 <533828+ras0219@users.noreply.github.com>
|
|
|
|
* [lapack-reference] Fix copy openblas's pkgconfig file
* version
* Use vcpkg-cmake and vcpkg-cmake-config instead
* version stuff
* Restore the changes about vcpkg-cmake-configure / vcpkg-cmake-install
* update version keyword
* version
|
|
* [many ports]Add vcpkg_fixup_pkgconfig
* version
* Update ports/libepoxy/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update versions/l-/libepoxy.json
* Update versions/l-/libepoxy.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* remove "find_path(STDINT_H stdint.h)". On clang/macos, this picks up the kernel headers version of stdint.h, instead of the C standard library, breaking compilation
* only define YY_NO_UNISTD_H and YY_USE_CONST on Windows, like the upstream CMakeLists.txt
* set the C standard to C99, like the upstream CMakeLists.txt
* update to 1.7.3
* remove the "fail" line from ci.baseline.txt
* run ./vcpkg x-add-version --all to update metadata files
* reset port-version
|
|
* [lua] Add error message to the cpp selection feature when building uwp.
* version
|
|
* [OpenCV] update to v4.5.3 and to v3.4.15
* [OpenCV] update refs
* [libxml2] add missing find_dependency(Iconv)
[libiconv] update cmake wrapper
* [libiconv] fix hints
* [opencv4] do not require cudnn if cuda enabled
* [opencv] update refs
* [OpenCV] increase CI coverage even more
* [vcpkg-ci-opencv] trying to restore x64-uwp ci tests
* restore previous patches to avoid unnecessary modifications
* [OpenCV] fix refs
* [OpenCV] fix CMake Warning related to protobuf dependency
* [OpenCV] fix refs
* [libxml2] fix references
* [libxml2] restore previous cmake wrapper, new one is broken
* [libxml2] fix references
* bump versions
* update refs
* [libxml2] Update the format for vcpkg-cmake-wrapper.cmake
* Update versions/l-/libxml2.json
* [libxml2] update port version
* [libxml2] update refs
* [OpenCV] fix refs
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
|
|
|
|
* Add files via upload
* [new port] avro-cpp
* add boost-format
* remove comments
* remove comments
* upgrade libpq up to 7.6.0
* upgrade libpq up to 7.6.0
* upgrade libpq up to 7.6.0
* upgrade libpq up to 7.6.0
* upgrade libpq up to 7.6.0
* Update ports/libpqxx/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/libpqxx/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* fix remarks
* update version files
* fix
Co-authored-by: Alexander Smyslov <aleksandr.smyslov@libertexgroup.com>
Co-authored-by: Smyslov Alexander Nikolayevich <aleksandr.smyslov@fxclub.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
|
|
So far, generating libarchive.pc has been disabled by the
fix-buildsystem.patch, whereas INCLUDE(CreatePkgConfigFile) has
been removed from CMakeLists.txt
- Update fix-buildsystem.patch and allow creating the pkgconfig file
- Add vcpkg_fixup_pkgconfig() to portfile
- Add `FEATURES` keyword to vcpkg_check_features() to avoid deprecation
warning
|
|
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
|
|
* [librsvg] Remove debug postfix
* Update the baseline version
|
|
0.8.4. (#19305)
* Update libjuice and libdatachannel
* Update libjuice
* Update baseline
* Update libdatachannel to 0.14.1
Fixes *-uwp.
* Update baseline.
* Fix nettle discovery
* Fix usrsctp library path.
* Fix libdatachannel not being built SHARED.
* Update baseline.
Co-authored-by: Nemirtingas <nanaki89@hotmail.fr>
|
|
* Add libsnoretoast port
* Skip the ci check for libsnoretoast on osx and linux
* Add the version baseline
* replace deprecated cmake commands
* Update version database
* make uwp as unsupported
* Update version database
* use copy_tools and add quotes
* Update version database
* removed explicit defaults, made fail on uwp and updated the description
* Update version database
|
|
* update 2021-07-27
macOS -> 11.5.1, XCode -> 12.5.1
* update azure-pipelines
* update sha of macfuse
* change how macos-ci-base works
* fix build errors
* fix itpp:linux
* more fixes
* remove tab
* allow version changes in all the remove/rename-version patches
* fix libunistring for real
* robert CR
|
|
* [libxml2] Fix build error on uwp
* Update versions
|
|
* libgeotiff on ios
* x-add-version
|
|
* Fix for libiconv
* Update port version
|
|
* Fix port's cmake buildsystem for mingw
* Install pc file for windows
* Modernize portfile
* Increment port-version
* x-add-version
* Use libunistring for non-windows
* CR and doc changes
* Update git-tree
|