├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── question.md └── workflows │ ├── ci-daily.yml │ └── ci.yml ├── .gitignore ├── .snyk ├── LICENSE ├── Makefile ├── README.md ├── docker ├── alpine-3.19 │ └── Dockerfile ├── alpine-3.20 │ └── Dockerfile ├── alpine-3.21 │ └── Dockerfile ├── alpine-edge │ └── Dockerfile ├── bookworm │ └── Dockerfile ├── centos7 │ └── Dockerfile ├── centos8 │ └── Dockerfile ├── fedora41 │ └── Dockerfile ├── focal │ └── Dockerfile ├── jammy │ └── Dockerfile ├── noble │ └── Dockerfile ├── opensuse156 │ └── Dockerfile ├── rockylinux10 │ └── Dockerfile ├── rockylinux8 │ └── Dockerfile ├── rockylinux9 │ └── Dockerfile └── sid │ └── Dockerfile ├── eslint.config.mjs ├── generate-schema.js ├── package.json ├── rules ├── Abseil.json ├── QuantLib.json ├── apparmor.json ├── atk.json ├── automake.json ├── berkeleydb.json ├── blender.json ├── blosc.json ├── boost.json ├── bowtie2.json ├── bwidget.json ├── cairo.json ├── chrome.json ├── cln.json ├── cmake.json ├── coin-or-clp.json ├── coinor-symphony.json ├── cuda.json ├── dcraw.json ├── eigen.json ├── exiftool.json ├── fftw3.json ├── flint.json ├── fluidsynth.json ├── fontconfig.json ├── freetype.json ├── fribidi.json ├── gdal.json ├── geos.json ├── ggobi.json ├── ginac.json ├── git.json ├── glib.json ├── glpk.json ├── glu.json ├── gmp.json ├── gnumake.json ├── gpgme.json ├── grpcpp.json ├── gsl.json ├── gtk.json ├── harfbuzz.json ├── haveged.json ├── hdf5.json ├── hiredis.json ├── imagej.json ├── imagemagick.json ├── jags.json ├── java.json ├── latex.json ├── leptonica.json ├── libarchive.json ├── libavfilter.json ├── libbsd.json ├── libbz2.json ├── libcurl.json ├── libgit2.json ├── libicu.json ├── libjpeg.json ├── libjq.json ├── liblzma.json ├── libmagic.json ├── libmecab.json ├── libmysqlclient.json ├── libpng.json ├── libprotobuf.json ├── librsvg2.json ├── libsecret.json ├── libsndfile.json ├── libsodium.json ├── libssh.json ├── libssh2.json ├── libtiff.json ├── libtool.json ├── libwebp.json ├── libxml2.json ├── libxslt.json ├── libzstd.json ├── mongodb.json ├── mpfr.json ├── mysql.json ├── netcdf4.json ├── nlopt.json ├── odbc.json ├── openbabel.json ├── opencl.json ├── opencv.json ├── opengl.json ├── openmpi.json ├── openmpt.json ├── openssl.json ├── osmium-tool.json ├── pandoc-citeproc.json ├── pandoc.json ├── pango.json ├── pari-gp.json ├── patch.json ├── perl.json ├── pkg-config.json ├── poppler-glib.json ├── poppler.json ├── postgresql.json ├── proj.json ├── protobuf-compiler.json ├── protobuf-grpc.json ├── python.json ├── python3.json ├── qgis.json ├── redland.json ├── rust.json ├── saga.json ├── saint.json ├── sasl.json ├── sdl2.json ├── sqlite3.json ├── suitesparse.json ├── swftools.json ├── tcltk.json ├── tesseract.json ├── tk.json ├── tktable.json ├── udunits2.json ├── v8.json ├── wget.json ├── x11.json ├── xft.json ├── xz.json ├── zeromq.json └── zlib.json ├── schema.json ├── schema.template.json ├── scripts └── centos_epel.sh ├── systems.json └── test ├── get-sysreqs.R ├── sysreqs.json ├── test-packages.sh └── test-patterns.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/ci-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.github/workflows/ci-daily.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /.idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/.snyk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/README.md -------------------------------------------------------------------------------- /docker/alpine-3.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/alpine-3.19/Dockerfile -------------------------------------------------------------------------------- /docker/alpine-3.20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/alpine-3.20/Dockerfile -------------------------------------------------------------------------------- /docker/alpine-3.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/alpine-3.21/Dockerfile -------------------------------------------------------------------------------- /docker/alpine-edge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/alpine-edge/Dockerfile -------------------------------------------------------------------------------- /docker/bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/bookworm/Dockerfile -------------------------------------------------------------------------------- /docker/centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/centos7/Dockerfile -------------------------------------------------------------------------------- /docker/centos8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/centos8/Dockerfile -------------------------------------------------------------------------------- /docker/fedora41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/fedora41/Dockerfile -------------------------------------------------------------------------------- /docker/focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/focal/Dockerfile -------------------------------------------------------------------------------- /docker/jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/jammy/Dockerfile -------------------------------------------------------------------------------- /docker/noble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/noble/Dockerfile -------------------------------------------------------------------------------- /docker/opensuse156/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/opensuse156/Dockerfile -------------------------------------------------------------------------------- /docker/rockylinux10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/rockylinux10/Dockerfile -------------------------------------------------------------------------------- /docker/rockylinux8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/rockylinux8/Dockerfile -------------------------------------------------------------------------------- /docker/rockylinux9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/rockylinux9/Dockerfile -------------------------------------------------------------------------------- /docker/sid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/docker/sid/Dockerfile -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generate-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/generate-schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/package.json -------------------------------------------------------------------------------- /rules/Abseil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/Abseil.json -------------------------------------------------------------------------------- /rules/QuantLib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/QuantLib.json -------------------------------------------------------------------------------- /rules/apparmor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/apparmor.json -------------------------------------------------------------------------------- /rules/atk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/atk.json -------------------------------------------------------------------------------- /rules/automake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/automake.json -------------------------------------------------------------------------------- /rules/berkeleydb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/berkeleydb.json -------------------------------------------------------------------------------- /rules/blender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/blender.json -------------------------------------------------------------------------------- /rules/blosc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/blosc.json -------------------------------------------------------------------------------- /rules/boost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/boost.json -------------------------------------------------------------------------------- /rules/bowtie2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/bowtie2.json -------------------------------------------------------------------------------- /rules/bwidget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/bwidget.json -------------------------------------------------------------------------------- /rules/cairo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/cairo.json -------------------------------------------------------------------------------- /rules/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/chrome.json -------------------------------------------------------------------------------- /rules/cln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/cln.json -------------------------------------------------------------------------------- /rules/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/cmake.json -------------------------------------------------------------------------------- /rules/coin-or-clp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/coin-or-clp.json -------------------------------------------------------------------------------- /rules/coinor-symphony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/coinor-symphony.json -------------------------------------------------------------------------------- /rules/cuda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/cuda.json -------------------------------------------------------------------------------- /rules/dcraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/dcraw.json -------------------------------------------------------------------------------- /rules/eigen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/eigen.json -------------------------------------------------------------------------------- /rules/exiftool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/exiftool.json -------------------------------------------------------------------------------- /rules/fftw3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/fftw3.json -------------------------------------------------------------------------------- /rules/flint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/flint.json -------------------------------------------------------------------------------- /rules/fluidsynth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/fluidsynth.json -------------------------------------------------------------------------------- /rules/fontconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/fontconfig.json -------------------------------------------------------------------------------- /rules/freetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/freetype.json -------------------------------------------------------------------------------- /rules/fribidi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/fribidi.json -------------------------------------------------------------------------------- /rules/gdal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gdal.json -------------------------------------------------------------------------------- /rules/geos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/geos.json -------------------------------------------------------------------------------- /rules/ggobi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/ggobi.json -------------------------------------------------------------------------------- /rules/ginac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/ginac.json -------------------------------------------------------------------------------- /rules/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/git.json -------------------------------------------------------------------------------- /rules/glib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/glib.json -------------------------------------------------------------------------------- /rules/glpk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/glpk.json -------------------------------------------------------------------------------- /rules/glu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/glu.json -------------------------------------------------------------------------------- /rules/gmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gmp.json -------------------------------------------------------------------------------- /rules/gnumake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gnumake.json -------------------------------------------------------------------------------- /rules/gpgme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gpgme.json -------------------------------------------------------------------------------- /rules/grpcpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/grpcpp.json -------------------------------------------------------------------------------- /rules/gsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gsl.json -------------------------------------------------------------------------------- /rules/gtk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/gtk.json -------------------------------------------------------------------------------- /rules/harfbuzz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/harfbuzz.json -------------------------------------------------------------------------------- /rules/haveged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/haveged.json -------------------------------------------------------------------------------- /rules/hdf5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/hdf5.json -------------------------------------------------------------------------------- /rules/hiredis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/hiredis.json -------------------------------------------------------------------------------- /rules/imagej.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/imagej.json -------------------------------------------------------------------------------- /rules/imagemagick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/imagemagick.json -------------------------------------------------------------------------------- /rules/jags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/jags.json -------------------------------------------------------------------------------- /rules/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/java.json -------------------------------------------------------------------------------- /rules/latex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/latex.json -------------------------------------------------------------------------------- /rules/leptonica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/leptonica.json -------------------------------------------------------------------------------- /rules/libarchive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libarchive.json -------------------------------------------------------------------------------- /rules/libavfilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libavfilter.json -------------------------------------------------------------------------------- /rules/libbsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libbsd.json -------------------------------------------------------------------------------- /rules/libbz2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libbz2.json -------------------------------------------------------------------------------- /rules/libcurl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libcurl.json -------------------------------------------------------------------------------- /rules/libgit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libgit2.json -------------------------------------------------------------------------------- /rules/libicu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libicu.json -------------------------------------------------------------------------------- /rules/libjpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libjpeg.json -------------------------------------------------------------------------------- /rules/libjq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libjq.json -------------------------------------------------------------------------------- /rules/liblzma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/liblzma.json -------------------------------------------------------------------------------- /rules/libmagic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libmagic.json -------------------------------------------------------------------------------- /rules/libmecab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libmecab.json -------------------------------------------------------------------------------- /rules/libmysqlclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libmysqlclient.json -------------------------------------------------------------------------------- /rules/libpng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libpng.json -------------------------------------------------------------------------------- /rules/libprotobuf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libprotobuf.json -------------------------------------------------------------------------------- /rules/librsvg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/librsvg2.json -------------------------------------------------------------------------------- /rules/libsecret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libsecret.json -------------------------------------------------------------------------------- /rules/libsndfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libsndfile.json -------------------------------------------------------------------------------- /rules/libsodium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libsodium.json -------------------------------------------------------------------------------- /rules/libssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libssh.json -------------------------------------------------------------------------------- /rules/libssh2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libssh2.json -------------------------------------------------------------------------------- /rules/libtiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libtiff.json -------------------------------------------------------------------------------- /rules/libtool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libtool.json -------------------------------------------------------------------------------- /rules/libwebp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libwebp.json -------------------------------------------------------------------------------- /rules/libxml2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libxml2.json -------------------------------------------------------------------------------- /rules/libxslt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libxslt.json -------------------------------------------------------------------------------- /rules/libzstd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/libzstd.json -------------------------------------------------------------------------------- /rules/mongodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/mongodb.json -------------------------------------------------------------------------------- /rules/mpfr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/mpfr.json -------------------------------------------------------------------------------- /rules/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/mysql.json -------------------------------------------------------------------------------- /rules/netcdf4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/netcdf4.json -------------------------------------------------------------------------------- /rules/nlopt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/nlopt.json -------------------------------------------------------------------------------- /rules/odbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/odbc.json -------------------------------------------------------------------------------- /rules/openbabel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/openbabel.json -------------------------------------------------------------------------------- /rules/opencl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/opencl.json -------------------------------------------------------------------------------- /rules/opencv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/opencv.json -------------------------------------------------------------------------------- /rules/opengl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/opengl.json -------------------------------------------------------------------------------- /rules/openmpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/openmpi.json -------------------------------------------------------------------------------- /rules/openmpt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/openmpt.json -------------------------------------------------------------------------------- /rules/openssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/openssl.json -------------------------------------------------------------------------------- /rules/osmium-tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/osmium-tool.json -------------------------------------------------------------------------------- /rules/pandoc-citeproc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/pandoc-citeproc.json -------------------------------------------------------------------------------- /rules/pandoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/pandoc.json -------------------------------------------------------------------------------- /rules/pango.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/pango.json -------------------------------------------------------------------------------- /rules/pari-gp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/pari-gp.json -------------------------------------------------------------------------------- /rules/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/patch.json -------------------------------------------------------------------------------- /rules/perl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/perl.json -------------------------------------------------------------------------------- /rules/pkg-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/pkg-config.json -------------------------------------------------------------------------------- /rules/poppler-glib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/poppler-glib.json -------------------------------------------------------------------------------- /rules/poppler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/poppler.json -------------------------------------------------------------------------------- /rules/postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/postgresql.json -------------------------------------------------------------------------------- /rules/proj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/proj.json -------------------------------------------------------------------------------- /rules/protobuf-compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/protobuf-compiler.json -------------------------------------------------------------------------------- /rules/protobuf-grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/protobuf-grpc.json -------------------------------------------------------------------------------- /rules/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/python.json -------------------------------------------------------------------------------- /rules/python3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/python3.json -------------------------------------------------------------------------------- /rules/qgis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/qgis.json -------------------------------------------------------------------------------- /rules/redland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/redland.json -------------------------------------------------------------------------------- /rules/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/rust.json -------------------------------------------------------------------------------- /rules/saga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/saga.json -------------------------------------------------------------------------------- /rules/saint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/saint.json -------------------------------------------------------------------------------- /rules/sasl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/sasl.json -------------------------------------------------------------------------------- /rules/sdl2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/sdl2.json -------------------------------------------------------------------------------- /rules/sqlite3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/sqlite3.json -------------------------------------------------------------------------------- /rules/suitesparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/suitesparse.json -------------------------------------------------------------------------------- /rules/swftools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/swftools.json -------------------------------------------------------------------------------- /rules/tcltk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/tcltk.json -------------------------------------------------------------------------------- /rules/tesseract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/tesseract.json -------------------------------------------------------------------------------- /rules/tk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/tk.json -------------------------------------------------------------------------------- /rules/tktable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/tktable.json -------------------------------------------------------------------------------- /rules/udunits2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/udunits2.json -------------------------------------------------------------------------------- /rules/v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/v8.json -------------------------------------------------------------------------------- /rules/wget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/wget.json -------------------------------------------------------------------------------- /rules/x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/x11.json -------------------------------------------------------------------------------- /rules/xft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/xft.json -------------------------------------------------------------------------------- /rules/xz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/xz.json -------------------------------------------------------------------------------- /rules/zeromq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/zeromq.json -------------------------------------------------------------------------------- /rules/zlib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/rules/zlib.json -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/schema.json -------------------------------------------------------------------------------- /schema.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/schema.template.json -------------------------------------------------------------------------------- /scripts/centos_epel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/scripts/centos_epel.sh -------------------------------------------------------------------------------- /systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/systems.json -------------------------------------------------------------------------------- /test/get-sysreqs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/test/get-sysreqs.R -------------------------------------------------------------------------------- /test/sysreqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/test/sysreqs.json -------------------------------------------------------------------------------- /test/test-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/test/test-packages.sh -------------------------------------------------------------------------------- /test/test-patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/r-system-requirements/HEAD/test/test-patterns.js --------------------------------------------------------------------------------