From e5c74597fd0d3457aadc6d0ed5585763e5d5ba11 Mon Sep 17 00:00:00 2001 From: conda-forge-admin Date: Thu, 20 Apr 2023 09:17:50 +0000 Subject: [PATCH] Removed recipe (range-v3) after converting into feedstock. [ci skip] --- recipes/range-v3/bld.bat | 21 --------------------- recipes/range-v3/build.sh | 24 ------------------------ recipes/range-v3/meta.yaml | 34 ---------------------------------- 3 files changed, 79 deletions(-) delete mode 100644 recipes/range-v3/bld.bat delete mode 100644 recipes/range-v3/build.sh delete mode 100644 recipes/range-v3/meta.yaml diff --git a/recipes/range-v3/bld.bat b/recipes/range-v3/bld.bat deleted file mode 100644 index b57cbb8150879..0000000000000 --- a/recipes/range-v3/bld.bat +++ /dev/null @@ -1,21 +0,0 @@ -mkdir build -cd build - -:: Generator can be removed once https://github.com/conda-forge/conda-forge-pinning-feedstock/pull/4357 is in -cmake -G "NMake Makefiles" ^ - -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^ - -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -DBUILD_TESTING=YES ^ - -DRANGES_ASSERTIONS=NO ^ - -DRANGES_BUILD_CALENDAR_EXAMPLE=NO ^ - -DRANGES_DEBUG_INFO=NO ^ - -DRANGE_V3_DOCS=NO ^ - -DRANGE_V3_EXAMPLES=NO ^ - -DRANGE_V3_TESTS=YES ^ - .. - -cmake --build . --config Release - -ctest --output-on-failure -j%CPU_COUNT% -V -C Release - -cmake --build . --config Release --target install diff --git a/recipes/range-v3/build.sh b/recipes/range-v3/build.sh deleted file mode 100644 index f41960a33f581..0000000000000 --- a/recipes/range-v3/build.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash - -mkdir build -cd build - -cmake ${CMAKE_ARGS} \ - -DCMAKE_PREFIX_PATH=$PREFIX \ - -DCMAKE_INSTALL_PREFIX=$PREFIX \ - -DBUILD_TESTING=YES \ - -DCMAKE_BUILD_TYPE=Release \ - -DRANGES_ASSERTIONS=NO \ - -DRANGES_BUILD_CALENDAR_EXAMPLE=NO \ - -DRANGES_DEBUG_INFO=NO \ - -DRANGE_V3_DOCS=NO \ - -DRANGE_V3_EXAMPLES=NO \ - -DRANGE_V3_TESTS=YES \ - .. - - -make -j${CPU_COUNT} VERBOSE=1 - -ctest -j${CPU_COUNT} --output-on-failure - -make install diff --git a/recipes/range-v3/meta.yaml b/recipes/range-v3/meta.yaml deleted file mode 100644 index 5e5ed226d3a0b..0000000000000 --- a/recipes/range-v3/meta.yaml +++ /dev/null @@ -1,34 +0,0 @@ -{% set version = "0.12.0" %} - -package: - name: range-v3 - version: {{ version }} - -source: - url: https://github.com/ericniebler/range-v3/archive/refs/tags/{{ version }}.tar.gz - sha256: 015adb2300a98edfceaf0725beec3337f542af4915cec4d0b89fa0886f4ba9cb - -build: - number: 0 - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake - - make # [unix] - -test: - commands: - - test -f $PREFIX/include/range/v3/all.hpp # [unix] - - if not exist %PREFIX%\\Library\\include\\range\\v3\\all.hpp exit 1 # [win] - -about: - home: https://github.com/ericniebler/range-v3 - license: BSL-1.0 - license_file: LICENSE.txt - summary: Range library for C++14/17/20, basis for C++20's std::ranges - -extra: - recipe-maintainers: - - bluescarni