vcpkg/versions/c-
Billy O'Neal ff5afbab34
[geogram, ccfits, chartdir] Build fixes discovered by CI on 2021-10-01 (#20518)
* REGRESSION: chartdir:x64-linux. If expected, add chartdir:x64-linux=fail to .\scripts\ci.baseline.txt.

-- Note: chartdir only supports dynamic library linkage. Building dynamic library.
-- Downloading http://www.advsofteng.net/chartdir_cpp_linux_64.tar.gz -> chartdir_cpp_linux_64-7.0.0.tar.gz...
[DEBUG] Feature flag 'binarycaching' unset
[DEBUG] Feature flag 'manifests' = off
[DEBUG] Feature flag 'compilertracking' unset
[DEBUG] Feature flag 'registries' unset
[DEBUG] Feature flag 'versions' unset
[DEBUG] popen(curl --fail -L "https://vcpkgassetcache.blob.core.windows.net/assets/e7e71b64b3a756b6df174758c392ab4c9310b4d265e521dccbd009eeefd46e021a74572e7212de5564725df20ddf189e1599e88a116b426f1256f7d34b0131aa?sp=racwl&st=2021-06-29T20:09:46Z&se=2021-10-02T04:09:46Z&spr=https&sv=2020-08-04&sr=c&sig=g3shlIpD0R923OUzfIsrTwjX0vc6OzNXGEDO3URXmYc%3D" --create-dirs --output /mnt/vcpkg-ci/downloads/chartdir_cpp_linux_64-7.0.0.tar.gz.1003174.part 2>&1)
[DEBUG] cmd_execute_and_stream_data() returned 5632 after    31162 us
[DEBUG] popen(curl --fail -L http://www.advsofteng.net/chartdir_cpp_linux_64.tar.gz --create-dirs --output /mnt/vcpkg-ci/downloads/chartdir_cpp_linux_64-7.0.0.tar.gz.1003174.part 2>&1)
[DEBUG] cmd_execute_and_stream_data() returned 0 after  8512565 us
Error: Failed to download from mirror set:
https://vcpkgassetcache.blob.core.windows.net/assets/e7e71b64b3a756b6df174758c392ab4c9310b4d265e521dccbd009eeefd46e021a74572e7212de5564725df20ddf189e1599e88a116b426f1256f7d34b0131aa?*** SECRET ***:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.

File does not have the expected hash:
             url : [ http://www.advsofteng.net/chartdir_cpp_linux_64.tar.gz ]
       File path : [ /mnt/vcpkg-ci/downloads/chartdir_cpp_linux_64-7.0.0.tar.gz.1003174.part ]
   Expected hash : [ e7e71b64b3a756b6df174758c392ab4c9310b4d265e521dccbd009eeefd46e021a74572e7212de5564725df20ddf189e1599e88a116b426f1256f7d34b0131aa ]
     Actual hash : [ ea2e05f28dd9647fed49feaf130d8034065067463965f144b3fae4eae482579b1ecf528dc86d1b3602887d5ca0c3b1569404489b0f4cb2300b798fed940cd467 ]

Updated SHAs and added quotes. These are the changes made by upstream:

```
diff --git a/new_sha/ChartDirector/cppdemo/surfacetexture/surfacetexture.cpp b/old_sha/ChartDirector/cppdemo/surfacetexture/surfacetexture.cpp
index 79f15be..302eb78 100644
--- a/new_sha/ChartDirector/cppdemo/surfacetexture/surfacetexture.cpp
+++ b/old_sha/ChartDirector/cppdemo/surfacetexture/surfacetexture.cpp
@@ -108,7 +108,9 @@ void createChart(int chartIndex, const char *filename)
     const int dataZ_size = dataX_size * dataY_size;
     double dataZ[dataZ_size];
     for(int yIndex = 0; yIndex < dataY_size; ++yIndex) {
+        double y = dataY[yIndex];
         for(int xIndex = 0; xIndex < dataX_size; ++xIndex) {
+            double x = dataX[xIndex];
             dataZ[yIndex * dataX_size + xIndex] = dataX[xIndex] * dataY[yIndex];
         }
     }
@@ -176,7 +178,7 @@ void createChart(int chartIndex, const char *filename)
         // Use a DrawArea to load the image
         DrawArea* d = new DrawArea();
         d->load("maptexture.png");
-        d->resize(c->getPlotRegionWidth(), c->getPlotRegionDepth());
+        d->resize(240, 210);

         // Set the DrawArea as a resource
         c->setResource("texture", d);
diff --git a/new_sha/ChartDirector/lib/libchartdir.so.7.0.0 b/old_sha/ChartDirector/lib/libchartdir.so.7.0.0
index b1ea97f..bfb1d4b 100644
Binary files a/new_sha/ChartDirector/lib/libchartdir.so.7.0.0 and b/old_sha/ChartDirector/lib/libchartdir.so.7.0.0 differ
diff --git a/new_sha/ChartDirector/qtdemo/helloworld/qchartviewer.cpp b/old_sha/ChartDirector/qtdemo/helloworld/qchartviewer.cpp
index 5736d60..423120f 100644
--- a/new_sha/ChartDirector/qtdemo/helloworld/qchartviewer.cpp
+++ b/old_sha/ChartDirector/qtdemo/helloworld/qchartviewer.cpp
@@ -107,9 +107,9 @@ private:
     QCursor *hZoomOutCursor;
     QCursor *hNoZoomCursor;

-    QCursor &getZoomCursor(QCursor **cache, double scale, int flags)
+    QCursor &getZoomCursor(QCursor *cache, double scale, int flags)
     {
-        if (0 == *cache)
+        if (0 == cache)
         {
             DrawArea d;
             d.setSize(32, 32, Chart::Transparent);
@@ -127,9 +127,9 @@ private:
             MemBlock m = d.outPNG();
             QImage img = QImage::fromData((const uchar*)m.data, m.len);
             img.setDevicePixelRatio(scale);
-            *cache = new QCursor(QPixmap::fromImage(img), 15, 15);
+            cache = new QCursor(QPixmap::fromImage(img), 15, 15);
         }
-        return **cache;
+        return *cache;
     }

 public:
@@ -145,15 +145,15 @@ public:
     }
     QCursor &getZoomInCursor(double scale)
     {
-        return getZoomCursor(&hZoomInCursor, scale, 3);
+        return getZoomCursor(hZoomInCursor, scale, 3);
     }
     QCursor &getZoomOutCursor(double scale)
     {
-        return getZoomCursor(&hZoomOutCursor, scale, 1);
+        return getZoomCursor(hZoomOutCursor, scale, 1);
     }
     QCursor &getNoZoomCursor(double scale)
     {
-        return getZoomCursor(&hNoZoomCursor, scale, 0);
+        return getZoomCursor(hNoZoomCursor, scale, 0);
     }
 } cursorManager;

diff --git a/new_sha/ChartDirector/qtdemo/qtdemo/democharts.cpp b/old_sha/ChartDirector/qtdemo/qtdemo/democharts.cpp
index a3b7962..d706853 100644
--- a/new_sha/ChartDirector/qtdemo/qtdemo/democharts.cpp
+++ b/old_sha/ChartDirector/qtdemo/qtdemo/democharts.cpp
@@ -10954,7 +10954,9 @@ void surfacetexture(QChartViewer *viewer, int chartIndex)
     const int dataZ_size = dataX_size * dataY_size;
     double dataZ[dataZ_size];
     for(int yIndex = 0; yIndex < dataY_size; ++yIndex) {
+        double y = dataY[yIndex];
         for(int xIndex = 0; xIndex < dataX_size; ++xIndex) {
+            double x = dataX[xIndex];
             dataZ[yIndex * dataX_size + xIndex] = dataX[xIndex] * dataY[yIndex];
         }
     }
@@ -11022,7 +11024,7 @@ void surfacetexture(QChartViewer *viewer, int chartIndex)
         // Use a DrawArea to load the image
         DrawArea* d = new DrawArea();
         d->load("@/images/maptexture.png");
-        d->resize(c->getPlotRegionWidth(), c->getPlotRegionDepth());
+        d->resize(240, 210);

         // Set the DrawArea as a resource
         c->setResource("texture", d);
@@ -12304,6 +12306,11 @@ void treemapcolors(QChartViewer *viewer, int /* chartIndex */)

 void treemaplayout(QChartViewer *viewer, int chartIndex)
 {
+    // Labels for the tree map
+    const char* energy_types[] = {"Coal", "Oil", "Gas", "Nuclear", "Hydro", "Solar", "Wind",
+        "Biomass", "Geothermal", "Wave"};
+    const int energy_types_size = (int)(sizeof(energy_types)/sizeof(*energy_types));
+
     // Random data for the tree map
     RanSeries* r = new RanSeries(3);
     DoubleArray data = r->getSeries(20, 20, 400);
@@ -14163,10 +14170,7 @@ void circularbarmeter2(QChartViewer *viewer, int chartIndex)
     m->setCap(0, Chart::Transparent);

     // In this example, the circular bar has 20 segments
-    int segmentCount = 20;
-
-    // The angular step
-    double angleStep = 360.0 / segmentCount;
+    int angleStep = 360 / 20;

     // The gap between segments is 4.5 degrees
     double angleGap = 4.5;
@@ -14205,39 +14209,28 @@ void circularbarmeter2(QChartViewer *viewer, int chartIndex)
             stepColorScale_size));
     }

-    //
-    // Now we draw the segments of the bar meter
-    //
-
-    // The segment that contains the value
-    int currentSegment = (int)(angle / angleStep);
-
-    // Segments after the current segment is colored with the blank color
-    for(int i = currentSegment + 1; i < segmentCount; ++i) {
-        m->addRingSector(radius, radius - 20, i * angleStep, (i + 1) * angleStep - angleGap,
-            blankColor);
+    // Draw the blank part of the circular bar
+    if (angle < 360) {
+        // Iterate the segments in the blank part of the circular bar
+        for(int startAngle = (int)(angle / angleStep) * angleStep; startAngle < 360; startAngle +=
+            angleStep) {
+            // The first segment may be partially filled
+            double partialAngle = (startAngle >= angle ? 0 : (angle - startAngle) * (1 - angleGap /
+                angleStep));
+            m->addRingSector(radius, radius - 20, startAngle + partialAngle, startAngle + angleStep
+                 - angleGap, blankColor);
         }
-
-    // Segments before the current segment is colored with the fill color
-    for(int i = 0; i < currentSegment; ++i) {
-        m->addRingSector(radius, radius - 20, i * angleStep, (i + 1) * angleStep - angleGap,
-            fillColor);
     }

-    // Segment that contains the angle will be partially filled and partially blank. We need to
-    // adjust the angle to compensated for the angle gap.
-    double adjustedAngle = currentSegment * angleStep + (angle - currentSegment * angleStep) * (1 -
-        angleGap / angleStep);
-
-    // The blank part of the segment
-    if ((currentSegment + 1) * angleStep > angle) {
-        m->addRingSector(radius, radius - 20, adjustedAngle, (currentSegment + 1) * angleStep -
-            angleGap, blankColor);
+    // Draw the fill part of the circular bar
+    if (angle > 0) {
+        // Iterate the segments in the fill part of the circular bar
+        for(int startAngle = 0; startAngle < angle; startAngle += angleStep) {
+            // The last segment may be partially filled
+            double angleSpan = (angleStep - angleGap) * (angle >= startAngle + angleStep ? 1 : (
+                angle - startAngle) / angleStep);
+            m->addRingSector(radius, radius - 20, startAngle, startAngle + angleSpan, fillColor);
         }
-
-    // The filled part of the segment.
-    if (angle > currentSegment * angleStep) {
-        m->addRingSector(radius, radius - 20, currentSegment * angleStep, adjustedAngle, fillColor);
     }

     // Add a label at the center to display the value
diff --git a/new_sha/ChartDirector/qtdemo/qtdemo/financedemo.cpp b/old_sha/ChartDirector/qtdemo/qtdemo/financedemo.cpp
index 7b8c1f5..b029776 100644
--- a/new_sha/ChartDirector/qtdemo/qtdemo/financedemo.cpp
+++ b/old_sha/ChartDirector/qtdemo/qtdemo/financedemo.cpp
@@ -315,13 +315,6 @@ void FinanceDemo::onLineEditChanged()
     int new_avgPeriod2 = m_MovAvg2->text().toInt();

     QString tickerKey = m_TickerSymbol->text();
-    if (tickerKey.isEmpty())
-    {
-        // Default tickerKey
-        tickerKey = "ASE";
-        m_TickerSymbol->setText(tickerKey);
-    }
-
     QString compareKey = m_CompareWith->text();

     bool needReloadData = (m_tickerKey != tickerKey) || (m_compareKey != compareKey);
@@ -367,16 +360,12 @@ void FinanceDemo::loadData(const QString& ticker, const QString& compare)
     if (m_compareKey != compare)
     {
         m_compareKey = compare;
-        if (m_compareKey.isEmpty())
-            m_dailyPrice.compareData.clear();
-        else
-        {
+
         // Simulator to generate realistic random OHLC values
         FinanceSimulator db2(compare.toUtf8().data(), Chart::chartTime(2010, 1, 1),
             Chart::chartTime(2020, 12, 31), 86400);
         m_dailyPrice.compareData = arrayToVector(db2.getCloseData());
     }
-    }

     // In this example, we will compute the weekly and monthly prices on demand. We just
     // need to clear the old data here.
diff --git a/new_sha/ChartDirector/qtdemo/qtdemo/qchartviewer.cpp b/old_sha/ChartDirector/qtdemo/qtdemo/qchartviewer.cpp
index 5736d60..423120f 100644
--- a/new_sha/ChartDirector/qtdemo/qtdemo/qchartviewer.cpp
+++ b/old_sha/ChartDirector/qtdemo/qtdemo/qchartviewer.cpp
@@ -107,9 +107,9 @@ private:
     QCursor *hZoomOutCursor;
     QCursor *hNoZoomCursor;

-    QCursor &getZoomCursor(QCursor **cache, double scale, int flags)
+    QCursor &getZoomCursor(QCursor *cache, double scale, int flags)
     {
-        if (0 == *cache)
+        if (0 == cache)
         {
             DrawArea d;
             d.setSize(32, 32, Chart::Transparent);
@@ -127,9 +127,9 @@ private:
             MemBlock m = d.outPNG();
             QImage img = QImage::fromData((const uchar*)m.data, m.len);
             img.setDevicePixelRatio(scale);
-            *cache = new QCursor(QPixmap::fromImage(img), 15, 15);
+            cache = new QCursor(QPixmap::fromImage(img), 15, 15);
         }
-        return **cache;
+        return *cache;
     }

 public:
@@ -145,15 +145,15 @@ public:
     }
     QCursor &getZoomInCursor(double scale)
     {
-        return getZoomCursor(&hZoomInCursor, scale, 3);
+        return getZoomCursor(hZoomInCursor, scale, 3);
     }
     QCursor &getZoomOutCursor(double scale)
     {
-        return getZoomCursor(&hZoomOutCursor, scale, 1);
+        return getZoomCursor(hZoomOutCursor, scale, 1);
     }
     QCursor &getNoZoomCursor(double scale)
     {
-        return getZoomCursor(&hNoZoomCursor, scale, 0);
+        return getZoomCursor(hNoZoomCursor, scale, 0);
     }
 } cursorManager;

```

* REGRESSION: ccfits:arm64-windows. If expected, add ccfits:arm64-windows=fail to .\scripts\ci.baseline.txt.

REGRESSION: ccfits:x64-linux. If expected, add ccfits:x64-linux=fail to .\scripts\ci.baseline.txt.
REGRESSION: ccfits:x64-osx. If expected, add ccfits:x64-osx=fail to .\scripts\ci.baseline.txt.
REGRESSION: ccfits:x64-windows-static-md. If expected, add ccfits:x64-windows-static-md=fail to .\scripts\ci.baseline.txt.
REGRESSION: ccfits:x64-windows-static. If expected, add ccfits:x64-windows-static=fail to .\scripts\ci.baseline.txt.
REGRESSION: ccfits:x64-windows. If expected, add ccfits:x64-windows=fail to .\scripts\ci.baseline.txt.
REGRESSION: ccfits:x86-windows. If expected, add ccfits:x86-windows=fail to .\scripts\ci.baseline.txt.

>[DEBUG] popen(curl --fail -L https://heasarc.gsfc.nasa.gov/fitsio/ccfits/CCfits-2.5.tar.gz --create-dirs --output /Users/bion/vcpkg/downloads/CCfits-2.5.tar.gz.15183.part 2>&1)
>[DEBUG] cmd_execute_and_stream_data() returned 5632 after   415053 us
>Error: Failed to download from mirror set:
>https://heasarc.gsfc.nasa.gov/fitsio/ccfits/CCfits-2.5.tar.gz:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
>                                 Dload  Upload   Total   Spent    Left  Speed
>  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
>curl: (22) The requested URL returned error: 404 Not Found

Fixed link and modernized portfile.

* REGRESSION: geogram:x64-linux. If expected, add geogram:x64-linux=fail to .\scripts\ci.baseline.txt.
REGRESSION: geogram:x64-osx. If expected, add geogram:x64-osx=fail to .\scripts\ci.baseline.txt.
REGRESSION: geogram:x64-windows-static-md. If expected, add geogram:x64-windows-static-md=fail to .\scripts\ci.baseline.txt.
REGRESSION: geogram:x64-windows-static. If expected, add geogram:x64-windows-static=fail to .\scripts\ci.baseline.txt.
REGRESSION: geogram:x64-windows. If expected, add geogram:x64-windows=fail to .\scripts\ci.baseline.txt.
REGRESSION: geogram:x86-windows. If expected, add geogram:x86-windows=fail to .\scripts\ci.baseline.txt.

Upstream is gone:

https://gforge.inria.fr/frs/download.php/file/38314/geogram_1.7.5.tar.gz:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (60) SSL: no alternative certificate subject name matches target host name 'gforge.inria.fr'
More details here: https://curl.haxx.se/docs/sslcerts.html

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.

[DEBUG] /agent/_work/1/s/buildtrees/_vcpkg/src/vcpkg-tool-2021-09-10/src/vcpkg/base/downloads.cpp(626)
[DEBUG] Exiting after 583.7 ms us (582562 us)

CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:83 (message):

      Failed to download file with error: 1
      If you use a proxy, please check your proxy setting. Possible causes are:

      1. You are actually using an HTTP proxy, but setting HTTPS_PROXY variable
         to `https://address:port`. This is not correct, because `https://` prefix
         claims the proxy is an HTTPS proxy, while your proxy (v2ray, shadowsocksr
         , etc..) is an HTTP proxy. Try setting `http://address:port` to both
         HTTP_PROXY and HTTPS_PROXY instead.

      2. You are using Fiddler. Currently a bug (https://github.com/microsoft/vcpkg/issues/17752)
         will set HTTPS_PROXY to `https://fiddler_address:port` which lead to problem 1 above.
         Workaround is open Windows 10 Settings App, and search for Proxy Configuration page,
         Change `http=address:port;https=address:port` to `address`, and fill the port number.

      3. You proxy's remote server is out of service.

      In future vcpkg releases, if you are using Windows, you no longer need to set
      HTTP(S)_PROXY environment variables. Vcpkg will simply apply Windows IE Proxy
      Settings set by your proxy software. See (https://github.com/microsoft/vcpkg-tool/pull/49)
      and (https://github.com/microsoft/vcpkg-tool/pull/77)

      Otherwise, please submit an issue at https://github.com/Microsoft/vcpkg/issues

Call Stack (most recent call first):
  scripts/cmake/vcpkg_download_distfile.cmake:274 (z_vcpkg_download_distfile_show_proxy_and_fail)
  ports/geogram/portfile.cmake:4 (vcpkg_download_distfile)
  scripts/ports.cmake:141 (include)

Skipped in ci.baseline.txt.
2021-10-05 22:14:35 -07:00
..
c4core.json [c4core] builds on mac (#19269) 2021-08-05 03:12:31 -07:00
c-ares.json [many ports] Add vcpkg_fixup_pkgconfig (#19721) 2021-08-26 10:09:08 -07:00
caf.json [many ports] Apply host dependencies (#16479) 2021-03-26 12:55:34 -07:00
caffe2.json [protobuf] upgrade to latest release (v3.18.0) (#20208) 2021-09-22 13:09:55 -07:00
cairo.json [cairo] Fix static cairo builds (#18103) 2021-07-15 16:01:16 -07:00
cairomm.json [glib up to gtk] update and make it work with meson (#13100) 2021-04-26 10:28:21 -07:00
calceph.json [calceph] Add new port (#19759) 2021-09-20 10:53:19 -07:00
camport3.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
capnproto.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
capstone.json [rollup] Rollup PR 2021-07-16 (#19001) 2021-07-20 10:24:58 -07:00
cartographer.json [glib up to gtk] update and make it work with meson (#13100) 2021-04-26 10:28:21 -07:00
casclib.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
catch2.json [catch2] Guard build type for Catch2 (#19793) 2021-09-03 17:01:51 -07:00
catch-classic.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
catch.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cccapstone.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ccd.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ccfits.json [geogram, ccfits, chartdir] Build fixes discovered by CI on 2021-10-01 (#20518) 2021-10-05 22:14:35 -07:00
cctag.json [cctag] Add new port (#16719) 2021-07-07 14:15:45 -07:00
cctz.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
celero.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cello.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cereal.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ceres.json [rollup] Rollup PR 2021-07-16 (#19001) 2021-07-20 10:24:58 -07:00
cfitsio.json [cfitsio] Fix pc files (#17696) 2021-05-21 01:12:28 -07:00
cgal.json [CGAL] Upgrade to 5.3 (#18392) 2021-07-26 10:55:23 -07:00
cgicc.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cgl.json [botan/bitsery/cgl] Update to latest release (#20132) 2021-09-13 20:24:22 -07:00
cgltf.json [audiofile/cgltf/libsbml] Update to the latest version (#20066) 2021-09-13 20:20:15 -07:00
cgns.json [CGNS|VTK-M|VTK|ParaView] Update ports (#18248) 2021-08-30 10:03:01 -07:00
chaiscript.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
chakracore.json [ChakraCore] Add Linux support (#18476) 2021-07-22 22:58:17 -07:00
charls.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
chartdir.json [geogram, ccfits, chartdir] Build fixes discovered by CI on 2021-10-01 (#20518) 2021-10-05 22:14:35 -07:00
check.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
chipmunk.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
chmlib.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
chromaprint.json Update VMs, CMake to 3.20.1, CUDA to 11.3, and pwsh to 7.1.3 (#17331) 2021-04-26 10:27:45 -07:00
chromium-base.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cimg.json [cimg/libgd/libfabric] Update to latest release version (#20068) 2021-09-14 12:01:57 -07:00
cityhash.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
civetweb.json [civetweb] Update to version 1.15 (#20078) 2021-09-09 21:18:53 -07:00
cjson.json [cjson] Updating to 1.7.15 (#20279) 2021-09-23 17:50:47 -07:00
clamav.json [vcpkg baseline][many ports] Fix build error (#17983) 2021-05-19 14:05:43 -07:00
clapack.json [Faiss] Fix dependencies (#18780) 2021-07-16 12:03:54 -07:00
clara.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clblas.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clblast.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clfft.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cli11.json [cli11] Update to 2.1.0 (#20304) 2021-09-29 08:46:03 -07:00
cli.json [cli] update to v.2.0.0 (#19744) 2021-08-30 10:25:27 -07:00
clickhouse-cpp.json [clickhouse-cpp] update to 1.5.0 (#18330) 2021-09-17 07:53:30 -07:00
clipp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clockutils.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clrng.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
clue.json [clue] Update to 1.0.0 (#20329) 2021-09-27 19:50:26 -07:00
cmark.json [cmark] update to 0.30.1 (#18938) 2021-09-15 14:12:57 -07:00
cmcstl2.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cmocka.json [vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00
cnl.json [vcpkg baseline][cnl] Disable tests (#18767) 2021-07-06 13:29:20 -07:00
co.json update co to v2.0.2 (#20500) 2021-10-05 18:42:39 -07:00
coin.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
coinutils.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
collada-dom.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
colmap.json [baseline][colmap] Fix find dependency freeimage (#15886) 2021-01-27 18:18:22 -08:00
comms-ublox.json [comms,commsdsl,comms-ublox] update ports (#19581) 2021-08-30 18:25:10 -07:00
comms.json [comms,commsdsl,comms-ublox] update ports (#19581) 2021-08-30 18:25:10 -07:00
commsdsl.json [comms,commsdsl,comms-ublox] update ports (#19581) 2021-08-30 18:25:10 -07:00
concurrencpp.json [David-Haim/concurrencpp] Add new port (#19997) 2021-09-10 14:18:06 -07:00
concurrentqueue.json [concurrentqueue] Update to 1.0.3 (#16404) 2021-02-26 13:14:35 -08:00
console-bridge.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
constexpr-contracts.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
constexpr.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
continuable.json [continuable] add a new port (#16261) 2021-02-19 13:02:46 -08:00
coolprop.json [coolprop] Fix usage, re-fix installation (#18305) 2021-06-11 09:21:54 -07:00
coroutine.json [macos ci] update 2021-07-27 (#19207) 2021-08-04 13:27:40 -07:00
corrade.json [corrade/magnum/-plugins] Fix build, minor cleanup and minor warning fix in vcpkg CMake scripts (#19435) 2021-09-02 13:24:33 -07:00
cpp-base64.json [cpp-base64] Upgrade to V2.rc.08 (#18278) 2021-06-11 08:49:57 -07:00
cpp-httplib.json [cpp-httplib] Update library to 0.9.4 (#20116) 2021-09-13 15:57:56 -07:00
cpp-ipc.json [cpp-ipc] Add new port (#19360) 2021-09-07 14:12:35 -07:00
cpp-netlib.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cpp-peglib.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cpp-redis.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cpp-taskflow.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cpp-timsort.json [New port] Add cpp-TimSort 2.1.0 (#20275) 2021-09-23 17:48:42 -07:00
cppad.json [cppad/cpuid] Update to latest version (#20187) 2021-09-16 10:45:05 -07:00
cppcms.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppcodec.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppcoro.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppfs.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppgraphqlgen.json [cppgraphqlgen] bump version to 3.6.0 (#18200) 2021-06-03 12:40:41 -07:00
cppitertools.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppkafka.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppmicroservices.json [cppmicroservices] Update to 3.6.0 (#20375) 2021-09-27 21:06:58 -07:00
cpprestsdk.json [cpprestsdk] Bump version to 2.10.18 (#16065) 2021-02-11 00:23:00 -08:00
cpptoml.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppunit.json [vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00
cpputest.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cppwinrt.json [vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00
cppzmq.json [cppzmq] Update to 4.8.1 (#20490) 2021-10-05 16:14:20 -07:00
cpr.json [cpr] Update to 1.6.2 (#18386) 2021-06-21 14:23:26 -07:00
cpu-features.json [cpu-features] Fixed and updated cpu-features. (#18101) 2021-06-01 12:17:00 -07:00
cpuid.json [cppad/cpuid] Update to latest version (#20187) 2021-09-16 10:45:05 -07:00
cpuinfo.json [cpuinfo,fbgemm,nnpack] update to latest source version and rename targets (#17063) 2021-05-05 13:37:53 -07:00
cr.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
crashpad.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
crashrpt.json [rollup] Rollup PR 2021-07-16 (#19001) 2021-07-20 10:24:58 -07:00
crc32c.json [crc32c] update to latest release (1.1.2) (#20534) 2021-10-05 16:34:40 -07:00
crfsuite.json [vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00
croncpp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
crossguid.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
crow.json [crow] fix sha-512 sum (#19637) 2021-08-27 16:55:40 -07:00
cryptopp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cspice.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ctbignum.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ctemplate.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ctp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
ctre.json [ctre] Update to 3.4.1 (#19614) 2021-08-30 10:28:20 -07:00
cub.json [cub] update to 1.12.0 (#17355) 2021-04-23 15:26:16 -07:00
cuda.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cudnn.json [cudnn] Add library path (#18005) 2021-05-24 15:41:57 -07:00
cunit.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
curl.json [curl] Update to 7.79.1 (#20291) 2021-09-23 17:51:23 -07:00
curlpp.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cute-headers.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cutelyst2.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
cwalk.json [vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00
cxxopts.json Bulk convert control files. (#19986) 2021-09-09 01:24:04 -07:00
czmq.json [czmq] Update to v4.2.1 (#17989) 2021-07-15 14:55:58 -07:00