aboutsummaryrefslogtreecommitdiff
path: root/versions/n-
AgeCommit message (Collapse)Author
2021-10-13[nghttp2] v1.45.1 (#20688)7FrogTW
2021-10-13[nanodbc] Add missing include (#20668)Phoebe
2021-10-11[nmslib] Update to 2.1.1 (#20638)chausner
* Update nmslib to 2.1.1 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-11[numactl] Update to 2.0.14 (#20626)chausner
* Update numactl to 2.0.14 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-04[nanoflann] Update to 1.3.2 (#20494)chausner
* Update nanoflann to 1.3.2 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-09-29[numcpp] Update to 2.6.0 (#20397)chausner
* Update numcpp to 2.6.0 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-27[ned14-internal-quickcpplib/llfio/outcome] Update to latest release (#20171)Niall Douglas
* Update ned14-internal-quickcpplib and LLFIO to latest matching Outcome v2.2.1 (bugfixed) release. * Implement suggested changes during review. Update Outcome and LLFIO to latest. * Re x-add-version. * Fix version database. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-17[neon2sse] create a new port (#20200)Park DongHa
* [neon2sse] create a new port * [neon2sse] update baseline JSON * [neon2sse] use package name NEON2_S_SE
2021-09-13[netcdf-c] Fix build under Linux with dynamic linkage (#19981)Osyotr
* [netcdf-c] Fix build under Linux with dynamic linkage * Add delete bin on *nix comment. * Don't mark semver for unverified-semver port. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-09[nng] Update to v1.5.1 (#19478)myd7349
* [nng] Update to v1.5.1 * [nng] Bump version * [nng] Quote source path * [nng] Bump version
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-02[nlohmann-json] update to 3.10.2 (#19690)Mathis
* update to 3.10.0 * version * install pkg-config * version * fix package naming * version * apply @NancyLi1013 suggestions * version * update to new minor * version * update to 3.10.2 * version
2021-08-30[ngspice] Update to release 35 (#19542)Marek Roszko
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-08-04[macos ci] update 2021-07-27 (#19207)nicole mazzuca
* 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
2021-07-28[nghttp2] Update and fixes (#19163)Kai Pastor
* Format manifest * Update to v1.44.0 * Modernize and fix portfile * Fix usage in static windows triplets * x-add-version
2021-07-22Allow specifing the ODBC version for nanodbc. (#17974)Anthony Calandra
2021-07-22[nana]add MinGW subsystem support for nana (#18911)Liu Chenxin
* add MinGW subsystem support for nana * update port version * [nana] update versions * format-manifest Co-authored-by: Billy Robert ONeal III <bion@microsoft.com> Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-07-16[nuklear] Export unofficial target, add features (#18881)Jack·Boos·Yu
* [nuklear] Export unofficial target, add features. * update version stuff * Update ports/nuklear/portfile.cmake * Update versions/n-/nuklear.json * Update ports/nuklear/CMakeLists.txt * Update ports/nuklear/CMakeLists.txt * Update ports/nuklear/CMakeLists.txt * Update versions/n-/nuklear.json
2021-07-16Fix nativefiledialog port using build time include dir (#18923)Andrey
* Fix nativefiledialog port using build time include dir * Update ports/nativefiledialog/vcpkg.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update ports/nativefiledialog/vcpkg.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update versions/n-/nativefiledialog.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update versions/baseline.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update tree hash * Update versions/n-/nativefiledialog.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-07-14[rollup:2021-07-06] Rollup PR (#18838)nicole mazzuca
* [rollup:2021-07-06 1/8] PR #18272 (@strega-nil) [scripts-audit] vcpkg_from_* * [rollup:2021-07-06 2/8] PR #18319 (@strega-nil) [scripts-audit] add guidelines for cmake * [rollup 2021-07-06 3/8] PR #18410 (@mheyman) [vcpkg-cmake-config] documentation fix * [rollup:2021-07-06 4/8] PR #18488 (@strega-nil) [scripts-audit] vcpkg_execute_* * [rollup:2021-07-06 5/8] PR #18517 (@strega-nil) [scripts-audit] vcpkg_extract_source_archive * [rollup:2021-07-06 6/8] PR #18674 (@NancyLi1013) [vcpkg doc] Update examples * [rollup:2021-07-06 7/8] PR #18695 (@JackBoosY) [vcpkg] Update the minimum version of vcpkg * [rollup:2021-07-06 8/8] PR #18758 (@ras0219-msft) [vcpkg_from_git] Fix error if downloads folder does not exist * build docs! * fix bond:*-windows * fix nmap Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: Michael Heyman <Michael.Heyman@jhuapl.edu> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Robert Schumacher <ras0219@outlook.com>
2021-06-28[netcdf-c] Fix pc files; use features (#18120)Kai Pastor
* Format manifest * New port-version * Quote filepath expressions * Port to vcpkg-cmake ports * Remove invalid nc-config file * Fix pc files * Use features * Add feature 'tools' * x-add-version * Fix build with msys2 mingw * Update git-tree
2021-06-24[vcpkg baseline][ncurses] Fix gnu download link (#18579)Jack·Boos·Yu
* [ncurses] Fix gnu download link * update version record
2021-06-24[nuspell] Update to version 5.0.0 (#18590)Dimitrij Mijoski
* [nuspell] Update to version 5.0.0 * x-add-version nuspell
2021-06-22[nanopb] update to 0.4.5 and add generator (#18241)Mathis Logemann
* [nanopb] update to 0.4.5 and add generator * add versions * fix python install? * update version * fix python? again * version * test python * add version * fix portfile * version * Update ports/nanopb/portfile.cmake Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> * Update ports/nanopb/portfile.cmake Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> * update version Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2021-06-21[nameof] Update to 0.10.1 (#18574)Daniil Goncharov
2021-05-06[nccl] Remove NCCL auto-download due to licensing issues (#17431)Jacob Kahn
* [nccl] Only download if compatible with found CUDA version * add-version * Remove auto-download * Remove windows branch * Ran x-add-version --overwrite-version * Add hardcoded find hints in /usr * Fix version. Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
2021-05-05[cpuinfo,fbgemm,nnpack] update to latest source version and rename targets ↵Park DongHa
(#17063) * [cpuinfo] update to latest * [cpuinfo] update baseline and port SHA * Update ports/cpuinfo/fix-install.patch Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update ports/cpuinfo/fix-install.patch Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update ports/cpuinfo/portfile.cmake Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Update ports/cpuinfo/fix-install.patch Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * [cpuinfo] update port SHA * [cpuinfo] recover find_package * fixup target path to `share/unofficial-cpuinfo` * change IMPORTED target name to `unofficial::cpuinfo::cpuinfo` * [fbgemm] resolve failure after cpuinfo rename * change cpuinfo::cpuinfo to unofficial * [fbgemm] update port version * [nnpack] use changes target name * [nnpack] update port-version Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-04-30[ncurses] Add new port (#17226)Adam Johnson
* [ncurses] Add new port. * x-add-version * Test ncurses port against CMake.
2021-04-28[Nettle] add cflags to build tools (#17421)Ilya Arzhannikov
* add cflags for build tools * ./vcpkg x-add-version nettle Co-authored-by: Ilya Arzhannikov <iarzhannikov@artec3d.com>
2021-04-23[Outcome] update to v2.2.0 release. (#17362)Niall Douglas
* Outcome v2.2.0 release. * LLFIO matching updated Outcome and its dependencies at https://github.com/microsoft/vcpkg/pull/17362. Also update usage docs, because a user complained about their incompleteness.
2021-04-12[vcpkg baseline] [nowide] update to 11.1.2 (#17209)autoantwort
* [nowide] update to 11.1.2 * add version files * Trigger Build
2021-04-07[nnpack] create a new port (#16344)Park DongHa
* [psimd] create a new port * [psimd] update baseline and port SHA * [fp16] create a new port * [fp16] update baseline and port SHA * [fxdiv] create a new port * [fxdiv] update baseline and port SHA * [pthreadpool] create a new port * [pthreadpool] update baseline and port SHA * [nnpack] create a new port * [nnpack] update baseline and port SHA * [nnpack] use version-date * [nnpack] disable windows * there are no config for windows * [nnpack] enforce psimd backend There is a 'neon' backend, but it won't be considered for now * [nnpack] update supports * use more correct expression
2021-04-07[nuklear] Upgrade from 2020-09-14 to 2021-03-18 version and switch repo (#17082)Samuel Marks
* [nuklear] Upgrade from 2020-09-14 to 2021-03-18 version and switch repo * Ran `vcpkg x-add-version --all`
2021-03-30[outcome] Replace Outcome single header based port with full fat cmake ↵Niall Douglas
install port (#15603) * Replace Outcome single header based port with full fat cmake install port. * [outcome] Improve portfile.cmake * update baseline * Refactor @JackBoosY's changes to make the dependency SHA feature chosen. * update baseline * Fix outcome features so they actually work. * update baseline * [outcome] install usage * update baseline * [outcome] Always use vcpkg copies of dependencies * DO NOT MERGE YET, ONLY FOR INSPECTION BY PR REVIEW. 1. Break out these dependencies into standalone ports: - ned14-internal-quickcpplib - status-code 2. Add port for LLFIO. 3. Add dependency smoke tests for Outcome and LLFIO as per instructions. * Fix all remaining issues, including link failure. This changeset is now ready to merge into vcpkg. * Update versions. * Have LLFIO not build static or shared libs according to VCPKG_LIBRARY_LINKAGE. * Fix last commit breaking everything :) * Update versions. * Disable uwp support for LLFIO. * versions * Fix status code on GCC 6 and 7 * Don't download ntkernel-error-category if not on Windows. * Fix status-code on UWP. * Update versions. * Fix MSVC on ARM. * Apply all the feedback from the PR review, more or less. * versions * Update to latest, disable UWP for Outcome. Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-03-29[nowide] Upgrade to 11.1.1 (#16913)Tatsunori Uchino
2021-03-26Nanodbc/fix/config cmake files path linux (#16045)Samuel Toussay
* [nanodbc] Fix CMake config files install path on Linux * [nanodbc] Update port version Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-02-11[ngspice] fix win32 codemodel glob (#16131)Marek Roszko
* [ngspice] Fix 32-bit code models not being globbed correctly * [ngspice] update x-add-version
2021-02-08[ngspice] Update to rev 34 (#16008)Marek Roszko
* [ngspice] Update to release 34 * [ngspice] update x-add-version * Remove cppduals folder from being installed into /include * Update the x-add-version
2021-02-08[netcdf-c] Fix usage (#16085)Jack·Boos·Yu
* [netcdf-c] Fix usage * update version record
2021-02-08[nng] Update to v1.4.0 (#16120)Jackson
* Updated 'nng' to 1.4.0 * Generated version files for nng 1.4.0 Co-authored-by: Jackson Harmer <jackson.harmer@gm.com>
2021-02-03[nameof] Update to 0.10.0 (#15975)Daniil Goncharov
* [nameof] Update to 0.10.0 * x-add-version
2021-02-02[ngspice] build codemodel extension libraries (#15882)Marek Roszko
* [ngspice] build codemodel extension libraries * tabs -> spaces * [ngspice] make codemodels a feature * [ngspice] Improve portfile.cmake * update version record Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-01-27[nsync] create a new port (#15714)Park DongHa
* [nsync] create a new port * [nsync] support system name WindowsStore * [nsync] use "version" instead of "version-string" * [nsync] add version JSON * Update ports/nsync/portfile.cmake * [nsync] apply PR feedback * [nsync] update SHA of port * [nsync] extract vcpkg_replace_string to patch * update version SHA Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-01-25[ngspice] Update to rev 33 (#15837)Marek Roszko
* [ngspice] Update to rev 33 * Update ports/ngspice/CONTROL Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * x-add-version ngspice Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-01-21[vcpkg] Rename `port_versions` to `versions` (#15784)nicole mazzuca