From a1c5e8f01b12f8ff641f555ce905867107cdbd4a Mon Sep 17 00:00:00 2001 From: conda-forge-admin Date: Sun, 26 Dec 2021 21:44:26 +0000 Subject: [PATCH] Removed recipes (r-rcppspdlog, r-zipfr) after converting into feedstocks. [ci skip] --- recipes/r-rcppspdlog/bld.bat | 2 - recipes/r-rcppspdlog/build.sh | 41 ---------------- recipes/r-rcppspdlog/meta.yaml | 88 ---------------------------------- recipes/r-zipfr/bld.bat | 2 - recipes/r-zipfr/build.sh | 3 -- recipes/r-zipfr/meta.yaml | 70 --------------------------- 6 files changed, 206 deletions(-) delete mode 100644 recipes/r-rcppspdlog/bld.bat delete mode 100644 recipes/r-rcppspdlog/build.sh delete mode 100644 recipes/r-rcppspdlog/meta.yaml delete mode 100644 recipes/r-zipfr/bld.bat delete mode 100644 recipes/r-zipfr/build.sh delete mode 100644 recipes/r-zipfr/meta.yaml diff --git a/recipes/r-rcppspdlog/bld.bat b/recipes/r-rcppspdlog/bld.bat deleted file mode 100644 index b7ea01dadee67..0000000000000 --- a/recipes/r-rcppspdlog/bld.bat +++ /dev/null @@ -1,2 +0,0 @@ -"%R%" CMD INSTALL --build . -IF %ERRORLEVEL% NEQ 0 exit /B 1 diff --git a/recipes/r-rcppspdlog/build.sh b/recipes/r-rcppspdlog/build.sh deleted file mode 100644 index 4a1b8cf15a933..0000000000000 --- a/recipes/r-rcppspdlog/build.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -set -o errexit -o pipefail - -if [[ ${target_platform} =~ linux.* ]] || [[ ${target_platform} == win-32 ]] || [[ ${target_platform} == win-64 ]] || [[ ${target_platform} == osx-64 ]]; then - export DISABLE_AUTOBREW=1 - mv DESCRIPTION DESCRIPTION.old - grep -va '^Priority: ' DESCRIPTION.old > DESCRIPTION - ${R} CMD INSTALL --build . -else - mkdir -p "${PREFIX}"/lib/R/library/RcppSpdlog - mv ./* "${PREFIX}"/lib/R/library/RcppSpdlog - - if [[ ${target_platform} == osx-64 ]]; then - pushd "${PREFIX}" - for libdir in lib/R/lib lib/R/modules lib/R/library lib/R/bin/exec sysroot/usr/lib; do - pushd "${libdir}" || exit 1 - while IFS= read -r -d '' SHARED_LIB - do - echo "fixing SHARED_LIB ${SHARED_LIB}" - install_name_tool -change /Library/Frameworks/R.framework/Versions/3.5.0-MRO/Resources/lib/libR.dylib "${PREFIX}"/lib/R/lib/libR.dylib "${SHARED_LIB}" || true - install_name_tool -change /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libR.dylib "${PREFIX}"/lib/R/lib/libR.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/local/clang4/lib/libomp.dylib "${PREFIX}"/lib/libomp.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/local/gfortran/lib/libgfortran.3.dylib "${PREFIX}"/lib/libgfortran.3.dylib "${SHARED_LIB}" || true - install_name_tool -change /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libquadmath.0.dylib "${PREFIX}"/lib/libquadmath.0.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/local/gfortran/lib/libquadmath.0.dylib "${PREFIX}"/lib/libquadmath.0.dylib "${SHARED_LIB}" || true - install_name_tool -change /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libgfortran.3.dylib "${PREFIX}"/lib/libgfortran.3.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libgcc_s.1.dylib "${PREFIX}"/lib/libgcc_s.1.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libiconv.2.dylib "${PREFIX}"/sysroot/usr/lib/libiconv.2.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libncurses.5.4.dylib "${PREFIX}"/sysroot/usr/lib/libncurses.5.4.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libicucore.A.dylib "${PREFIX}"/sysroot/usr/lib/libicucore.A.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libexpat.1.dylib "${PREFIX}"/lib/libexpat.1.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libcurl.4.dylib "${PREFIX}"/lib/libcurl.4.dylib "${SHARED_LIB}" || true - install_name_tool -change /usr/lib/libc++.1.dylib "${PREFIX}"/lib/libc++.1.dylib "${SHARED_LIB}" || true - install_name_tool -change /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libc++.1.dylib "${PREFIX}"/lib/libc++.1.dylib "${SHARED_LIB}" || true - done < <(find . \( -type f -iname "*.dylib" -or -iname "*.so" -or -iname "R" \) -print0) - popd - done - popd - fi -fi diff --git a/recipes/r-rcppspdlog/meta.yaml b/recipes/r-rcppspdlog/meta.yaml deleted file mode 100644 index 565c2106639fa..0000000000000 --- a/recipes/r-rcppspdlog/meta.yaml +++ /dev/null @@ -1,88 +0,0 @@ -{% set version = '0.0.7' %} - -{% set posix = 'm2-' if win else '' %} -{% set native = 'm2w64-' if win else '' %} - -package: - name: r-rcppspdlog - version: {{ version|replace("-", "_") }} - -source: - url: - - {{ cran_mirror }}/src/contrib/RcppSpdlog_{{ version }}.tar.gz - - {{ cran_mirror }}/src/contrib/Archive/RcppSpdlog/RcppSpdlog_{{ version }}.tar.gz - sha256: db3e22a5e76e1b045196ed9793187a120fcd985e5eccfd6a7c1756646a43968d - -build: - merge_build_host: True # [win] - number: 0 - rpaths: - - lib/R/lib/ - - lib/ - -requirements: - build: - - {{ compiler('c') }} # [not win] - - {{ compiler('m2w64_c') }} # [win] - - {{ compiler('cxx') }} # [not win] - - {{ compiler('m2w64_cxx') }} # [win] - - {{ posix }}filesystem # [win] - - {{ posix }}make - - {{ posix }}sed # [win] - - {{ posix }}coreutils # [win] - - {{ posix }}zip # [win] - - host: - - r-base - - r-rcpp - - run: - - r-base - - {{ native }}gcc-libs # [win] - - r-rcpp - -test: - commands: - - $R -e "library('RcppSpdlog')" # [not win] - - "\"%R%\" -e \"library('RcppSpdlog')\"" # [win] - -about: - home: https://github.com/eddelbuettel/rcppspdlog, https://dirk.eddelbuettel.com/code/rcpp.spdlog.html - license: GPL-2.0-or-later - summary: The mature and widely-used C++ logging library 'spdlog' by Gabi Melman provides many - desirable features. This package bundles these header files for easy use by R packages - via a simple 'LinkingTo:' inclusion. - license_file: - - '{{ environ["PREFIX"] }}/lib/R/share/licenses/GPL-2' - -extra: - recipe-maintainers: - - conda-forge/r - - raivivek - -# The original CRAN metadata for this package was: - -# Package: RcppSpdlog -# Type: Package -# Title: 'spdlog' C++ Header Library for Logging -# Version: 0.0.7 -# Date: 2021-12-05 -# License: GPL (>= 2) -# Author: Dirk Eddelbuettel -# Maintainer: Dirk Eddelbuettel -# Description: The mature and widely-used C++ logging library 'spdlog' by Gabi Melman provides many desirable features. This package bundles these header files for easy use by R packages via a simple 'LinkingTo:' inclusion. -# URL: https://github.com/eddelbuettel/rcppspdlog, https://dirk.eddelbuettel.com/code/rcpp.spdlog.html -# BugReports: https://github.com/eddelbuettel/rcppspdlog/issues -# LinkingTo: Rcpp -# Imports: Rcpp -# Suggests: simplermarkdown -# VignetteBuilder: simplermarkdown -# RoxygenNote: 6.0.1 -# NeedsCompilation: yes -# Packaged: 2021-12-05 15:16:24 UTC; edd -# Repository: CRAN -# Date/Publication: 2021-12-05 15:40:02 UTC - -# See -# https://docs.conda.io/projects/conda-build for -# more information about meta.yaml diff --git a/recipes/r-zipfr/bld.bat b/recipes/r-zipfr/bld.bat deleted file mode 100644 index 01bc5eadf1152..0000000000000 --- a/recipes/r-zipfr/bld.bat +++ /dev/null @@ -1,2 +0,0 @@ -"%R%" CMD INSTALL --build . %R_ARGS% -IF %ERRORLEVEL% NEQ 0 exit /B 1 diff --git a/recipes/r-zipfr/build.sh b/recipes/r-zipfr/build.sh deleted file mode 100644 index b8d2635525637..0000000000000 --- a/recipes/r-zipfr/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -export DISABLE_AUTOBREW=1 -${R} CMD INSTALL --build . ${R_ARGS} diff --git a/recipes/r-zipfr/meta.yaml b/recipes/r-zipfr/meta.yaml deleted file mode 100644 index 9218289948bce..0000000000000 --- a/recipes/r-zipfr/meta.yaml +++ /dev/null @@ -1,70 +0,0 @@ -{% set version = '0.6-70' %} -{% set posix = 'm2-' if win else '' %} -{% set native = 'm2w64-' if win else '' %} - -package: - name: r-zipfr - version: {{ version|replace("-", "_") }} - -source: - url: - - {{ cran_mirror }}/src/contrib/zipfR_{{ version }}.tar.gz - - {{ cran_mirror }}/src/contrib/Archive/zipfR/zipfR_{{ version }}.tar.gz - sha256: 0c318569cf5dd13ab5ea22f7cf797a2daeda09d8332d89ba54fd2d7c643ecf96 - -build: - merge_build_host: True # [win] - number: 0 - noarch: generic - rpaths: - - lib/R/lib/ - - lib/ - -requirements: - build: - - {{ posix }}zip # [win] - - cross-r-base {{ r_base }} # [build_platform != target_platform] - host: - - r-base - run: - - r-base - -test: - commands: - - $R -e "library('zipfR')" # [not win] - - "\"%R%\" -e \"library('zipfR')\"" # [win] - -about: - home: https://zipfR.R-Forge.R-project.org/ - license: GPL-3.0-only - summary: Statistical models and utilities for the analysis of word frequency distributions. - The utilities include functions for loading, manipulating and visualizing word frequency - data and vocabulary growth curves. The package also implements several statistical - models for the distribution of word frequencies in a population. (The name of this - package derives from the most famous word frequency distribution, Zipf's law.) - license_family: GPL3 - license_file: - - '{{ environ["PREFIX"] }}/lib/R/share/licenses/GPL-3' - -extra: - recipe-maintainers: - - conda-forge/r - - mfansler - -# Package: zipfR -# Type: Package -# Title: Statistical Models for Word Frequency Distributions -# Version: 0.6-70 -# Depends: R (>= 3.0.0) -# Imports: methods, utils, stats, graphics, grDevices, parallel -# Date: 2020-10-10 -# Author: Stefan Evert , Marco Baroni -# Maintainer: Stefan Evert -# Description: Statistical models and utilities for the analysis of word frequency distributions. The utilities include functions for loading, manipulating and visualizing word frequency data and vocabulary growth curves. The package also implements several statistical models for the distribution of word frequencies in a population. (The name of this package derives from the most famous word frequency distribution, Zipf's law.) -# License: GPL-3 -# URL: https://zipfR.R-Forge.R-project.org/ -# LazyData: yes -# NeedsCompilation: no -# Packaged: 2020-10-11 18:25:21 UTC; evert -# Repository: CRAN -# Date/Publication: 2020-10-11 19:40:02 UTC