Merge branch 'develop' into f/env-location
This commit is contained in:
commit
0ac6dfa8f3
@ -38,7 +38,7 @@ A build matrix showing which packages are working on which systems is shown belo
|
||||
|
||||
.. tab-item:: RHEL
|
||||
|
||||
.. note::
|
||||
.. code-block:: console
|
||||
|
||||
yum update -y
|
||||
yum install -y epel-release
|
||||
|
@ -15,15 +15,27 @@ class Bear(CMakePackage):
|
||||
url = "https://github.com/rizsotto/Bear/archive/2.0.4.tar.gz"
|
||||
maintainers = ["vmiheer", "trws"]
|
||||
|
||||
version("3.0.20", sha256="45cfcdab07f824f6c06c9776701156f7a04b23eadd25ecbc88c188789a447cc7")
|
||||
version("3.0.19", sha256="2fcfe2c6e029182cfc54ed26b3505c0ef12b0f43df03fb587f335afdc2ca9431")
|
||||
version("3.0.18", sha256="ae94047c79b4f48462b66981f66a67b6a833d75d4c40e7afead491b1865f1142")
|
||||
version("3.0.0", sha256="7b68aad69e887d945ad20f8e9f3a8c33cf2d59cc80da7e52d931d8c685fe2f79")
|
||||
version("2.2.0", sha256="6bd61a6d64a24a61eab17e7f2950e688820c72635e1cf7ea8ea7bf9482f3b612")
|
||||
version("2.0.4", sha256="33ea117b09068aa2cd59c0f0f7535ad82c5ee473133779f1cc20f6f99793a63e")
|
||||
|
||||
depends_on("pkgconf", when="@3:")
|
||||
depends_on("fmt", when="@3.0.0:")
|
||||
depends_on("grpc", when="@3.0.0:")
|
||||
depends_on("nlohmann-json", when="@3.0.0:")
|
||||
depends_on("spdlog", when="@3.0.0:")
|
||||
depends_on("cmake@2.8:", type="build")
|
||||
depends_on("python", type="build")
|
||||
depends_on("googletest", type="test", when="@3:")
|
||||
|
||||
patch("rpath-handling-3.0.20.patch", when="@3.0.20:")
|
||||
|
||||
def cmake_args(self):
|
||||
return [
|
||||
"-DENABLE_UNIT_TESTS={}".format("ON" if self.run_tests else "OFF"),
|
||||
"-DENABLE_FUNC_TESTS=OFF",
|
||||
"-DENABLE_MULTILIB=OFF",
|
||||
]
|
||||
|
@ -0,0 +1,13 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 9e29d10..16795bc 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -55,6 +55,8 @@ ExternalProject_Add(BearSource
|
||||
-DENABLE_MULTILIB:BOOL=${ENABLE_MULTILIB}
|
||||
-DPKG_CONFIG_EXECUTABLE:PATH=${PKG_CONFIG_EXECUTABLE}
|
||||
CMAKE_CACHE_ARGS
|
||||
+ -DCMAKE_INSTALL_RPATH:STRING=${CMAKE_INSTALL_RPATH}
|
||||
+ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=${CMAKE_INSTALL_RPATH_USE_LINK_PATH}
|
||||
-DCMAKE_PROJECT_VERSION:STRING=${CMAKE_PROJECT_VERSION}
|
||||
-DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
|
||||
-DCMAKE_TOOLCHAIN_FILE:PATH=${CMAKE_TOOLCHAIN_FILE}
|
@ -3,10 +3,10 @@
|
||||
@@ -122,7 +122,7 @@ void LoadNCDualMeshPar(Mesh &mesh, const std::string fname) {
|
||||
local_grid_start = my_start*grid_dims[0];
|
||||
}
|
||||
|
||||
|
||||
- int local_grid_dims[2] = {grid_dims[0], my_num > 0 ? my_num+1 : 0};
|
||||
+ int local_grid_dims[2] = {grid_dims[0], (int) my_num > 0 ? (int) my_num+1 : 0};
|
||||
|
||||
|
||||
Par::Out() << "min_row=" << min_row << ", max_row=" << max_row << std::endl;
|
||||
Par::Out() << "local_grid_start=" << local_grid_start << ", local_grid_size:" << local_grid_size << std::endl;
|
||||
--- old/src/Infrastructure/Mesh/src/Legacy/ESMCI_WriteWeightsPar.C
|
||||
@ -14,9 +14,9 @@
|
||||
@@ -229,7 +229,7 @@ static void get_nc_grid_file1(nc_grid_file1 &ncf, const std::string &ncfile, boo
|
||||
ncf.local_grid_size = local_grid_size;
|
||||
ncf.local_grid_start = local_grid_start;
|
||||
|
||||
|
||||
- int local_grid_dims[2] = {grid_dims[0], my_num > 0 ? my_num+1 : 0};
|
||||
+ int local_grid_dims[2] = {grid_dims[0], (int) my_num > 0 ? (int) my_num+1 : 0};
|
||||
|
||||
|
||||
Par::Out() << "min_row=" << min_row << ", max_row=" << max_row << std::endl;
|
||||
Par::Out() << "local_grid_start=" << local_grid_start << ", local_grid_size:" << local_grid_size << std::endl;
|
@ -23,6 +23,11 @@ class Esmf(MakefilePackage):
|
||||
|
||||
# Develop is a special name for spack and is always considered the newest version
|
||||
version("develop", branch="develop")
|
||||
# generate chksum with spack checksum esmf@x.y.z
|
||||
version(
|
||||
"8.3.1",
|
||||
sha256="6c39261e55dcdf9781cdfa344417b9606f7f961889d5ec626150f992f04f146d",
|
||||
)
|
||||
version(
|
||||
"8.3.0",
|
||||
sha256="0ff43ede83d1ac6beabd3d5e2a646f7574174b28a48d1b9f2c318a054ba268fd",
|
||||
@ -56,7 +61,7 @@ class Esmf(MakefilePackage):
|
||||
description="Build with external LAPACK support",
|
||||
)
|
||||
variant("netcdf", default=True, description="Build with NetCDF support")
|
||||
variant("pnetcdf", default=True, description="Build with pNetCDF support")
|
||||
variant("pnetcdf", default=True, description="Build with pNetCDF support", when="+mpi")
|
||||
variant("xerces", default=True, description="Build with Xerces support")
|
||||
variant(
|
||||
"parallelio",
|
||||
@ -111,7 +116,8 @@ class Esmf(MakefilePackage):
|
||||
patch("mvapich2.patch", when="@:7.0")
|
||||
|
||||
# explicit type cast of variables from long to int
|
||||
patch("cce.patch", when="@:8.4.0 %cce@13.99:")
|
||||
patch("longtoint.patch", when="@:8.3.2 %cce@14:")
|
||||
patch("longtoint.patch", when="@:8.3.2 %oneapi@2022:")
|
||||
|
||||
# Allow different directories for creation and
|
||||
# installation of dynamic libraries on OSX:
|
||||
@ -194,7 +200,7 @@ def edit(self, spec, prefix):
|
||||
"."
|
||||
)[0]
|
||||
)
|
||||
elif self.compiler.name == "intel":
|
||||
elif self.compiler.name == "intel" or self.compiler.name == "oneapi":
|
||||
os.environ["ESMF_COMPILER"] = "intel"
|
||||
elif self.compiler.name in ["clang", "apple-clang"]:
|
||||
os.environ["ESMF_COMPILER"] = "gfortranclang"
|
||||
@ -207,6 +213,8 @@ def edit(self, spec, prefix):
|
||||
os.environ["ESMF_COMPILER"] = "nag"
|
||||
elif self.compiler.name == "pgi":
|
||||
os.environ["ESMF_COMPILER"] = "pgi"
|
||||
elif self.compiler.name == "nvhpc":
|
||||
os.environ["ESMF_COMPILER"] = "nvhpc"
|
||||
elif self.compiler.name == "cce":
|
||||
os.environ["ESMF_COMPILER"] = "cce"
|
||||
else:
|
||||
|
@ -15,6 +15,8 @@ class Infernal(AutotoolsPackage):
|
||||
homepage = "http://eddylab.org/infernal/"
|
||||
url = "http://eddylab.org/infernal/infernal-1.1.2.tar.gz"
|
||||
|
||||
version("1.1.4", sha256="f9493c7dee9fbf25f6405706818883d24b9f5e455121a0662c96c8f0307f95fc")
|
||||
version("1.1.3", sha256="3b98a6a3a0e7b01aa077a0caf1e958223c4d8f80a69a4eb602ca59a3475da85e")
|
||||
version("1.1.2", sha256="ac8c24f484205cfb7124c38d6dc638a28f2b9035b9433efec5dc753c7e84226b")
|
||||
|
||||
variant("mpi", default=False, description="Enable MPI parallel support")
|
||||
|
@ -197,6 +197,16 @@ def extend_config_flags(self):
|
||||
# _ld_library_path because it looks like the only rpath that needs to be
|
||||
# injected is self.component_prefix.linux.compiler.lib.intel64_lin.
|
||||
flags_list = ["-Wl,-rpath,{}".format(d) for d in self._ld_library_path()]
|
||||
|
||||
# Older versions trigger -Wunused-command-line-argument warnings whenever
|
||||
# linker flags are passed in preprocessor (-E) or compilation mode (-c).
|
||||
# The cfg flags are treated as command line flags apparently. Newer versions
|
||||
# do not trigger these warnings. In some build systems these warnings can
|
||||
# cause feature detection to fail, so we silence them with -Wno-unused-...
|
||||
if self.spec.version < Version("2022.1.0"):
|
||||
flags_list.append("-Wno-unused-command-line-argument")
|
||||
|
||||
# Make sure that underlying clang gets the right GCC toolchain by default
|
||||
flags_list.append("--gcc-toolchain={}".format(self.compiler.prefix))
|
||||
flags = " ".join(flags_list)
|
||||
for cmp in [
|
||||
|
@ -13,6 +13,8 @@ class Libvterm(Package):
|
||||
homepage = "http://www.leonerd.org.uk/code/libvterm/"
|
||||
url = "http://www.leonerd.org.uk/code/libvterm/libvterm-0.1.3.tar.gz"
|
||||
|
||||
version("0.3", sha256="61eb0d6628c52bdf02900dfd4468aa86a1a7125228bab8a67328981887483358")
|
||||
version("0.2", sha256="4c5150655438cfb8c57e7bd133041140857eb04defd0e544521c0e469258e105")
|
||||
version("0.1.4", sha256="bc70349e95559c667672fc8c55b9527d9db9ada0fb80a3beda533418d782d3dd")
|
||||
version("0.1.3", sha256="e41724466a4658e0f095e8fc5aeae26026c0726dce98ee71d6920d06f7d78e2b")
|
||||
version(
|
||||
|
39
var/spack/repos/builtin/packages/man-db/gnulib.patch
Normal file
39
var/spack/repos/builtin/packages/man-db/gnulib.patch
Normal file
@ -0,0 +1,39 @@
|
||||
From 84863a1c4dc8cca8fb0f6f670f67779cdd2d543b Mon Sep 17 00:00:00 2001
|
||||
From: Bruno Haible <bruno@clisp.org>
|
||||
Date: Sat, 30 Apr 2022 14:09:00 +0200
|
||||
Subject: [PATCH] string: Avoid syntax error on glibc systems with GCC 11.
|
||||
|
||||
Reported by Tom Tromey <tromey@adacore.com> in
|
||||
<https://lists.gnu.org/archive/html/bug-gnulib/2022-04/msg00075.html>
|
||||
and by Satadru Pramanik <satadru@umich.edu> in
|
||||
<https://lists.gnu.org/archive/html/bug-gnulib/2022-04/msg00076.html>.
|
||||
|
||||
* lib/string.in.h (strndup): Don't rededeclare strndup if it is defined
|
||||
as a macro.
|
||||
---
|
||||
ChangeLog | 10 ++++++++++
|
||||
lib/string.in.h | 4 ++--
|
||||
2 files changed, 12 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/lib/string.in.h b/lib/string.in.h
|
||||
index b6840fa91..33160b252 100644
|
||||
--- a/lib/string.in.h
|
||||
+++ b/lib/string.in.h
|
||||
@@ -583,7 +583,7 @@ _GL_FUNCDECL_RPL (strndup, char *,
|
||||
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE);
|
||||
_GL_CXXALIAS_RPL (strndup, char *, (char const *__s, size_t __n));
|
||||
# else
|
||||
-# if !@HAVE_DECL_STRNDUP@ || __GNUC__ >= 11
|
||||
+# if !@HAVE_DECL_STRNDUP@ || (__GNUC__ >= 11 && !defined strndup)
|
||||
_GL_FUNCDECL_SYS (strndup, char *,
|
||||
(char const *__s, size_t __n)
|
||||
_GL_ARG_NONNULL ((1))
|
||||
@@ -593,7 +593,7 @@ _GL_CXXALIAS_SYS (strndup, char *, (char const *__s, size_t __n));
|
||||
# endif
|
||||
_GL_CXXALIASWARN (strndup);
|
||||
#else
|
||||
-# if __GNUC__ >= 11
|
||||
+# if __GNUC__ >= 11 && !defined strndup
|
||||
/* For -Wmismatched-dealloc: Associate strndup with free or rpl_free. */
|
||||
_GL_FUNCDECL_SYS (strndup, char *,
|
||||
(char const *__s, size_t __n)
|
@ -30,6 +30,10 @@ class ManDb(AutotoolsPackage):
|
||||
depends_on("gdbm")
|
||||
depends_on("groff", type=("build", "link", "run"))
|
||||
|
||||
# gnulib bug introduced in commit cbdb5ea63cb5348d9ead16dc46bedda77a4c3d7d.
|
||||
# fix is from commit 84863a1c4dc8cca8fb0f6f670f67779cdd2d543b
|
||||
patch("gnulib.patch", when="@2.10.2", working_dir="gl")
|
||||
|
||||
# TODO: add gzip support via a new package.
|
||||
# man pages are typically compressed, include all available
|
||||
# compression libraries
|
||||
|
@ -18,6 +18,7 @@ class Meson(PythonPackage):
|
||||
|
||||
maintainers = ["eli-schwartz", "michaelkuhn"]
|
||||
|
||||
version("0.63.3", sha256="7c516c2099b762203e8a0a22412aa465b7396e6f9b1ab728bad6e6db44dc2659")
|
||||
version("0.63.2", sha256="023a3f7c74e68991154c3205a6975705861eedbf8130e013d15faa1df1af216e")
|
||||
version("0.63.1", sha256="f355829f0e8c714423f03a06604c04c216d4cbe3586f3154cb2181076b19207a")
|
||||
version("0.62.2", sha256="97108f4d9bb16bc758c44749bd25ec7d42c6a762961efbed8b7589a2a3551ea6")
|
||||
|
@ -17,6 +17,7 @@ class Neovim(CMakePackage):
|
||||
|
||||
version("master", branch="master")
|
||||
version("stable", tag="stable")
|
||||
version("0.8.0", sha256="505e3dfb71e2f73495c737c034a416911c260c0ba9fd2092c6be296655be4d18")
|
||||
version("0.7.2", sha256="ccab8ca02a0c292de9ea14b39f84f90b635a69282de38a6b4ccc8565bc65d096")
|
||||
version("0.7.0", sha256="792a9c55d5d5f4a5148d475847267df309d65fb20f05523f21c1319ea8a6c7df")
|
||||
version(
|
||||
@ -117,7 +118,7 @@ class Neovim(CMakePackage):
|
||||
depends_on("libvterm@0.1:")
|
||||
depends_on("unibilium@2.0:")
|
||||
depends_on("msgpack-c@1.0.0:")
|
||||
with when("@0.5:,stable,master"):
|
||||
with when("@0.5:"):
|
||||
depends_on("libuv@1.42:")
|
||||
depends_on("tree-sitter")
|
||||
with when("@0.6:"):
|
||||
@ -127,11 +128,13 @@ class Neovim(CMakePackage):
|
||||
depends_on("libtermkey@0.22:")
|
||||
depends_on("libvterm@0.1.4:")
|
||||
depends_on("msgpack-c@3.0.0:")
|
||||
with when("@0.6:,master"):
|
||||
with when("@0.7:"):
|
||||
depends_on("gettext@0.20.1:")
|
||||
depends_on("libluv@1.43.0:")
|
||||
depends_on("libuv@1.44.1:")
|
||||
depends_on("tree-sitter@0.20.6:")
|
||||
with when("@0.8:"):
|
||||
depends_on("libvterm@0.3:")
|
||||
|
||||
@when("^lua")
|
||||
def cmake_args(self):
|
||||
|
@ -131,6 +131,8 @@ class NetcdfC(AutotoolsPackage):
|
||||
conflicts("+parallel-netcdf", when="@:4.0")
|
||||
conflicts("+hdf4", when="@:4.0")
|
||||
|
||||
filter_compiler_wrappers("nc-config", relative_root="bin")
|
||||
|
||||
@property
|
||||
def force_autoreconf(self):
|
||||
# The patch for 4.7.0 touches configure.ac.
|
||||
@ -245,6 +247,22 @@ def configure_args(self):
|
||||
|
||||
return config_args
|
||||
|
||||
def setup_dependent_build_environment(self, env, dependent_spec):
|
||||
# Some packages, e.g. ncview, refuse to build if the compiler path returned by nc-config
|
||||
# differs from the path to the compiler that the package should be built with. Therefore,
|
||||
# we have to shadow nc-config from self.prefix.bin, which references the real compiler,
|
||||
# with a backed up version, which references Spack compiler wrapper.
|
||||
if os.path.exists(self._nc_config_backup_dir):
|
||||
env.prepend_path("PATH", self._nc_config_backup_dir)
|
||||
|
||||
@run_after("install")
|
||||
def backup_nc_config(self):
|
||||
# We expect this to be run before filter_compiler_wrappers:
|
||||
nc_config_file = self.prefix.bin.join("nc-config")
|
||||
if os.path.exists(nc_config_file):
|
||||
mkdirp(self._nc_config_backup_dir)
|
||||
install(nc_config_file, self._nc_config_backup_dir)
|
||||
|
||||
def check(self):
|
||||
# h5_test fails when run in parallel
|
||||
make("check", parallel=False)
|
||||
@ -253,3 +271,7 @@ def check(self):
|
||||
def libs(self):
|
||||
shared = "+shared" in self.spec
|
||||
return find_libraries("libnetcdf", root=self.prefix, shared=shared, recursive=True)
|
||||
|
||||
@property
|
||||
def _nc_config_backup_dir(self):
|
||||
return join_path(self.metadata_dir, "spack-nc-config")
|
||||
|
@ -29,6 +29,8 @@ class NetcdfCxx4(AutotoolsPackage):
|
||||
|
||||
depends_on("doxygen", when="+doc", type="build")
|
||||
|
||||
filter_compiler_wrappers("ncxx4-config", relative_root="bin")
|
||||
|
||||
def flag_handler(self, name, flags):
|
||||
if name == "cflags" and "+pic" in self.spec:
|
||||
flags.append(self.compiler.cc_pic_flag)
|
||||
|
@ -62,6 +62,8 @@ class NetcdfFortran(AutotoolsPackage):
|
||||
# derived from https://github.com/Unidata/netcdf-fortran/pull/211
|
||||
patch("no_parallel_build.patch", when="@4.5.2")
|
||||
|
||||
filter_compiler_wrappers("nf-config", relative_root="bin")
|
||||
|
||||
def flag_handler(self, name, flags):
|
||||
if name == "cflags":
|
||||
if "+pic" in self.spec:
|
||||
|
@ -16,6 +16,7 @@ class PyAwkward(PythonPackage):
|
||||
maintainers = ["vvolkl"]
|
||||
|
||||
version("master", branch="master")
|
||||
version("1.9.0", sha256="cad799237e4370b50f77e716e78dd3565a7b3fd82fcd5a41a76aa1512d51075d")
|
||||
version("1.8.0", sha256="6655fa22d1b1d1dcb9ccee0d502350ab90c53467a10b540b7624422b594d2e72")
|
||||
version("1.7.0", sha256="e4e642dfe496d2acb245c90e37dc18028e25d5e936421e7371ea6ba0fde6435a")
|
||||
version("1.5.1", sha256="c0357c62223fefcfc7a7565389dbd4db900623bf10eccf2bc8e87586ec59b38d")
|
||||
@ -28,15 +29,20 @@ class PyAwkward(PythonPackage):
|
||||
version("1.0.2", sha256="3468cb80cab51252a1936e5e593c7df4588ea0e18dcb6fb31e3d2913ba883928")
|
||||
|
||||
patch("pybind11.patch", when="@:1.2.2")
|
||||
patch("pybind11_02.patch", when="@1.2.3:")
|
||||
patch("pybind11_02.patch", when="@1.2.3:1.8.0")
|
||||
|
||||
depends_on("py-setuptools@42.0:", type=("build", "run"))
|
||||
depends_on("py-pyyaml", type="build")
|
||||
|
||||
depends_on("python@2.7:2.8,3.5:", type=("build", "run"))
|
||||
depends_on("python@3.6:", when="@1.9.0:", type=("build", "run"))
|
||||
depends_on("py-numpy@1.13.1:", type=("build", "run"))
|
||||
depends_on("py-pybind11", type=("build", "link"))
|
||||
depends_on("dlpack", when="@1.0.0:")
|
||||
depends_on("rapidjson")
|
||||
depends_on("cmake@3.13:", type="build")
|
||||
depends_on("py-wheel@0.36.0:", type="build", when="@:1.7.0")
|
||||
depends_on("py-wheel@0.36.0:", when="@:1.7.0", type="build")
|
||||
|
||||
@when("@1.9.0:")
|
||||
def setup_build_environment(self, env):
|
||||
env.set("CMAKE_ARGS", "-DAWKWARD_EXTERNAL_PYBIND11=TRUE")
|
||||
|
@ -27,3 +27,10 @@ class PyPoetryCore(PythonPackage):
|
||||
depends_on("py-typing@3.7.4.1:3", when="^python@2.7", type=("build", "run"))
|
||||
depends_on("py-enum34@1.1.10:1", when="^python@2.7", type=("build", "run"))
|
||||
depends_on("py-functools32@3.2.3-2:3", when="^python@2.7", type=("build", "run"))
|
||||
|
||||
# https://github.com/python-poetry/poetry/issues/5547
|
||||
def setup_build_environment(self, env):
|
||||
env.set("GIT_DIR", self.stage.source_path)
|
||||
|
||||
def setup_dependent_build_environment(self, env, dependent_spec):
|
||||
env.set("GIT_DIR", dependent_spec.package.stage.source_path)
|
||||
|
@ -15,6 +15,7 @@ class PyPrettytable(PythonPackage):
|
||||
homepage = "https://github.com/jazzband/prettytable"
|
||||
pypi = "prettytable/prettytable-0.7.2.tar.gz"
|
||||
|
||||
version("3.4.1", sha256="7d7dd84d0b206f2daac4471a72f299d6907f34516064feb2838e333a4e2567bd")
|
||||
version("3.2.0", sha256="ae7d96c64100543dc61662b40a28f3b03c0f94a503ed121c6fca2782c5816f81")
|
||||
version("2.4.0", sha256="18e56447f636b447096977d468849c1e2d3cfa0af8e7b5acfcf83a64790c0aca")
|
||||
version("0.7.2", sha256="2d5460dc9db74a32bcc8f9f67de68b2c4f4d2f01fa3bd518764c69156d9cacd9")
|
||||
|
@ -11,6 +11,7 @@ class PySphinxcontribBibtex(PythonPackage):
|
||||
|
||||
pypi = "sphinxcontrib-bibtex/sphinxcontrib-bibtex-0.3.5.tar.gz"
|
||||
|
||||
version("2.5.0", sha256="71b42e5db0e2e284f243875326bf9936aa9a763282277d75048826fef5b00eaa")
|
||||
version("2.4.2", sha256="65b023ee47f35f1f03ac4d71c824e67c624c7ecac1bb26e83623271a01f9da86")
|
||||
version("2.2.1", sha256="00d474092e04b1d941e645cf6c027632a975cd0b9337cf47d379f63a5928f334")
|
||||
version("2.2.0", sha256="7500843e154d76983c23bca5ca7380965e0725c46b8f484c1322d0b58a6ce3b2")
|
||||
@ -36,3 +37,4 @@ class PySphinxcontribBibtex(PythonPackage):
|
||||
depends_on("py-oset@0.1.3:", type=("build", "run"), when="@:2.0.0")
|
||||
depends_on("py-docutils@0.8:", type=("build", "run"), when="@2.1.0:")
|
||||
depends_on("py-dataclasses", when="@2.2.0: ^python@:3.6", type=("build", "run"))
|
||||
depends_on("py-importlib-metadata@3.6:", when="@2.5.0: ^python@:3.9", type=("build", "run"))
|
||||
|
@ -23,6 +23,7 @@ class PyUproot(PythonPackage):
|
||||
|
||||
tags = ["hep"]
|
||||
|
||||
version("4.3.5", sha256="5d18e1a7af07d367e900ab746aba24676ac29849718ea1a9c8b652f95af8509a")
|
||||
version("4.3.4", sha256="45457307ebda62b1afa4838f60c1d05e04a1c703bb15f0fb37504de9bd2dd8f8")
|
||||
version("4.3.3", sha256="766a02fe5a51b9fe1965dea5548bada3b3e2574ba5c66848c8be9576ab3adfb9")
|
||||
version("4.3.2", sha256="33bb2da3f1969a4e248369b60a3a42a3828c5c6376011c44640c0b75d59816b1")
|
||||
|
@ -21,6 +21,7 @@ class RAdegenet(RPackage):
|
||||
|
||||
cran = "adegenet"
|
||||
|
||||
version("2.1.8", sha256="80d72c3eefe077723dec91c98b7d46815b9659ab7196581d18b6e9d6c27f5025")
|
||||
version("2.1.6", sha256="7823de4933634cb887481fe4b12cf2faacbaa1b4b66939584d10fcb7ce2da26b")
|
||||
version("2.1.5", sha256="e4eee8c41dae6cb0841db74ec6f9adb2580873f3e313471f37df58324c1857f2")
|
||||
version("2.1.3", sha256="0790114ecb22642683b5be1f4b3a6a49856e06dc2f9e21b9cba4390c2257f6c6")
|
||||
|
@ -17,6 +17,7 @@ class RAdespatial(RPackage):
|
||||
|
||||
cran = "adespatial"
|
||||
|
||||
version("0.3-19", sha256="db50f1c42961e40bcef6d714a89a09b1345dab2dd013cea8e2122fdf99d5d223")
|
||||
version("0.3-16", sha256="987bd6e0bc6a32ac8e678338ffbbd88580007c4916129b51da681c331818a821")
|
||||
version("0.3-14", sha256="a2ef7549c1ed7a23651716c633b25eaff468af8ccbf2e9fcd164e485984cbfbf")
|
||||
version("0.3-8", sha256="e3fd3209ce3f0a862a0794187e8c884f1697c87c96e569a2f51f252e00022906")
|
||||
|
@ -15,6 +15,7 @@ class RAer(RPackage):
|
||||
|
||||
cran = "AER"
|
||||
|
||||
version("1.2-10", sha256="650a5fb54a8addf8c86f1e0f88f4fac5349731bc5bf34762a991022140eedbdc")
|
||||
version("1.2-9", sha256="3b79390b14766419fc1e8912689bc462d4beb01aff9dad26d628aed69d04540d")
|
||||
version("1.2-7", sha256="3aee5c606313710c2dca6c1e9b2c20a145aa33f2a3ecc5cfcec66c8e91838a93")
|
||||
version("1.2-6", sha256="653c3a2d253819e0ce8c2cf12cff2ab222bf3d19dbf382b7c4b4c3d762469474")
|
||||
|
@ -19,6 +19,7 @@ class RAls(RPackage):
|
||||
|
||||
cran = "ALS"
|
||||
|
||||
version("0.0.7", sha256="57a195e8c5a3d856cd543c99ae532cc25c83b3b444f513b74447bf4a72378da0")
|
||||
version("0.0.6", sha256="ca90d27115ae9e476967f521bf6935723e410a3bf92477e7570e14bfd3b099eb")
|
||||
|
||||
depends_on("r@2.10:", type=("build", "run"))
|
||||
|
@ -18,6 +18,7 @@ class RAplot(RPackage):
|
||||
|
||||
cran = "aplot"
|
||||
|
||||
version("0.1.7", sha256="f6250f5f6d1addc8d5717be80a92c569bfd83d35bce2e3dbeb251c9ae1be8616")
|
||||
version("0.1.6", sha256="7d69d1968bc613d8ceccc05c53362b0f62b632e1c6ef5100c91b65b15afa200c")
|
||||
version("0.1.4", sha256="cde9dfc1c6b38e370c1f7338651c37727efa57d52b646fec6b021855809492ac")
|
||||
version("0.1.2", sha256="899c4d101ddcedb1eba9803d78cf02288b63de25e2879add8add1165167509f0")
|
||||
|
@ -15,12 +15,15 @@ class RArgparse(RPackage):
|
||||
|
||||
cran = "argparse"
|
||||
|
||||
version("2.1.6", sha256="2ad7faad795878b88969ac5d91ba38f4e96deb85dfea7148c3510f0eaa3de592")
|
||||
version("2.1.5", sha256="83e112beb47733849980b286d93ac930f0cbe6ac78fcb94fc9f6b0eea882658d")
|
||||
version("2.1.3", sha256="aeda31a54a8d7a0a511cfbf7c5868637e129922671d43938165867437fb6a66e")
|
||||
version("2.0.3", sha256="d26139c610ea0adf8d6632699cd34c4595ae3e7963bfc7a00cb3b7504f2059b0")
|
||||
version("2.0.1", sha256="949843920d14fc7c162aedab331a936499541736e7dafbb103fbfd79be8147ab")
|
||||
version("1.1.1", sha256="441449f0816411a868fd1b15cf4b2bc45931bbd4b67d6592dbe48875905cf93b")
|
||||
|
||||
depends_on("r@3.6.0:", type=("build", "run"), when="@2.1.6:")
|
||||
|
||||
depends_on("r-r6", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-findpython", type=("build", "run"))
|
||||
depends_on("r-jsonlite", type=("build", "run"))
|
||||
|
@ -15,6 +15,7 @@ class RBase64(RPackage):
|
||||
|
||||
cran = "base64"
|
||||
|
||||
version("2.0.1", sha256="4d22687c0195c2049e0af2c613b1ebcb908037010ad6e550bf47d69e842535f1")
|
||||
version("2.0", sha256="8e259c2b12446197d1152b83a81bab84ccb5a5b77021a9b5645dd4c63c804bd1")
|
||||
|
||||
depends_on("r-openssl", type=("build", "run"))
|
||||
|
@ -14,6 +14,7 @@ class RBbmisc(RPackage):
|
||||
|
||||
cran = "BBmisc"
|
||||
|
||||
version("1.13", sha256="1145dcf9fed15e7beeaa4a5c7075d8a8badd17c8246838cd63e40cd9551e4405")
|
||||
version("1.12", sha256="900a633f69b7d9b13d58709eeae2fca2c1bc510765d778623a2af32cc870053e")
|
||||
version("1.11", sha256="1ea48c281825349d8642a661bb447e23bfd651db3599bf72593bfebe17b101d2")
|
||||
|
||||
|
@ -13,8 +13,11 @@ class RBibtex(RPackage):
|
||||
|
||||
cran = "bibtex"
|
||||
|
||||
version("0.5.0", sha256="ec81b4ee5b43f2114afd18d266f4633451abe20013422eb03848f00924b79167")
|
||||
version("0.4.2.3", sha256="7bad194920b412781ac9754ad41058d52d3cd7186e1851c2bce3640490e9bc6d")
|
||||
version("0.4.2", sha256="1f06ab3660c940405230ad16ff6e4ba38d4418a59cd9b16d78a4349f8b488372")
|
||||
|
||||
depends_on("r@3.0.2:", type=("build", "run"))
|
||||
depends_on("r-backports@1.4.0:", type=("build", "run"), when="@0.5.0:")
|
||||
depends_on("r-stringr", type=("build", "run"))
|
||||
depends_on("r-stringr", when="@:0.4.2.3")
|
||||
|
@ -14,6 +14,7 @@ class RBlockmodeling(RPackage):
|
||||
|
||||
cran = "blockmodeling"
|
||||
|
||||
version("1.1.3", sha256="5f705f92c9b96dcbdd6f109c6a99f88d70c576485369700b82391b6a75afbda6")
|
||||
version("1.0.5", sha256="18c227bb52f28aff4dae8929563474e3e006e238438c823b67dc6baa897f88ed")
|
||||
version("1.0.0", sha256="f10c41fff56dc7dc46dffbceacb8ff905eca06578d610a5a590fb408f0149cfc")
|
||||
version("0.3.4", sha256="a269c83669dd5294cff0adddab36bc023db6a276a06b74b1fa94b7e407486987")
|
||||
|
@ -14,6 +14,7 @@ class RBookdown(RPackage):
|
||||
|
||||
cran = "bookdown"
|
||||
|
||||
version("0.29", sha256="5b4e3dc44a5c6574e3d9e19ebe7897d3ddcf6eaffe8214e1d272b545929ff723")
|
||||
version("0.26", sha256="c6207288cb72ea7c555cbad449c61278e94b742cac1f610879fb3f2d60b2b185")
|
||||
version("0.24", sha256="8bead2a20542d05f643fe77a949689a17b0ae9ff23efbb918ddab47597db1be3")
|
||||
version("0.21", sha256="47c0fa7a65da83753c2f445e0e972913f9203460f1daae3ab255d0d4b30eba76")
|
||||
@ -24,10 +25,12 @@ class RBookdown(RPackage):
|
||||
depends_on("r-htmltools@0.3.6:", type=("build", "run"))
|
||||
depends_on("r-knitr@1.22:", type=("build", "run"))
|
||||
depends_on("r-knitr@1.31:", type=("build", "run"), when="@0.24:")
|
||||
depends_on("r-knitr@1.38:", type=("build", "run"), when="@0.29:")
|
||||
depends_on("r-rmarkdown@1.12:", type=("build", "run"))
|
||||
depends_on("r-rmarkdown@2.4:", type=("build", "run"), when="@0.21:")
|
||||
depends_on("r-rmarkdown@2.9:", type=("build", "run"), when="@0.24:")
|
||||
depends_on("r-rmarkdown@2.13:", type=("build", "run"), when="@0.26:")
|
||||
depends_on("r-rmarkdown@2.14:", type=("build", "run"), when="@0.29:")
|
||||
depends_on("r-jquerylib", type=("build", "run"), when="@0.24:")
|
||||
depends_on("r-xfun@0.6:", type=("build", "run"))
|
||||
depends_on("r-xfun@0.13:", type=("build", "run"), when="@0.21:")
|
||||
|
@ -15,5 +15,6 @@ class RBrew(RPackage):
|
||||
|
||||
cran = "brew"
|
||||
|
||||
version("1.0-8", sha256="11652d5a7042d645cc5be5f9f97ff4d46083cea7d3ad2dd6ad1570b52c097826")
|
||||
version("1.0-7", sha256="38b859c1dca63479f6937c593da8f806f2b3279585bb6e20ecff1b898469e76e")
|
||||
version("1.0-6", sha256="d70d1a9a01cf4a923b4f11e4374ffd887ad3ff964f35c6f9dc0f29c8d657f0ed")
|
||||
|
@ -27,6 +27,7 @@ class RBrms(RPackage):
|
||||
|
||||
cran = "brms"
|
||||
|
||||
version("2.18.0", sha256="63914be03cd1c4e6333317d22d7827ba2dc0414cb0dc88337cf74763ba07e111")
|
||||
version("2.17.0", sha256="24e5a3a40b81bea558e8f660d0de7fd1a4c2080c7553baac98f34dd2682ece71")
|
||||
version("2.16.3", sha256="68302b10b5264f72d163d01c17792c002306cf37f0ee778dcec4c7e118f923e1")
|
||||
version("2.16.1", sha256="749efbd9fb061fe207cf2e729c1387d9a8538b922f12ceec4e82a9f8dd9c1bc4")
|
||||
|
@ -20,6 +20,7 @@ class RBroom(RPackage):
|
||||
|
||||
cran = "broom"
|
||||
|
||||
version("1.0.1", sha256="4b5e5aa485f0e23ed993088fc84159e31a00087e3a12327071dda25193382892")
|
||||
version("0.8.0", sha256="66a1095d4430450dc810a5cea61cd7e7bee0e23739dcf5ddc5b57c9894fcf999")
|
||||
version("0.7.12", sha256="04fac12b2546689603a474fb92a0572f4241ae87b51b21b0808814a489227bd9")
|
||||
version("0.7.11", sha256="9e3999d2635ac72e8f4c3a81decd50ee5d464c001c155375b5a970a629ba2e19")
|
||||
|
@ -16,6 +16,7 @@ class RBslib(RPackage):
|
||||
|
||||
cran = "bslib"
|
||||
|
||||
version("0.4.0", sha256="fbea4ecec726f23618e825624f1d9c03939f765ca5a490b171ebf95b815475c2")
|
||||
version("0.3.1", sha256="5f5cb56e5cab9039a24cd9d70d73b69c2cab5b2f5f37afc15f71dae0339d9849")
|
||||
|
||||
depends_on("r@2.10:", type=("build", "run"))
|
||||
@ -24,3 +25,5 @@ class RBslib(RPackage):
|
||||
depends_on("r-sass@0.4.0:", type=("build", "run"))
|
||||
depends_on("r-jquerylib@0.1.3:", type=("build", "run"))
|
||||
depends_on("r-rlang", type=("build", "run"))
|
||||
depends_on("r-memoise", type=("build", "run"), when="@0.4.0:")
|
||||
depends_on("r-cachem", type=("build", "run"), when="@0.4.0:")
|
||||
|
@ -25,6 +25,7 @@ class RCairo(RPackage):
|
||||
|
||||
cran = "Cairo"
|
||||
|
||||
version("1.6-0", sha256="c762ac1d8daa4af527342360c256ed742de4e3031d997e9e59c9a369fcafb7d3")
|
||||
version("1.5-15", sha256="bb3ab1ff6431c15eb01a66ddf90695cd9a2af3d5a384753f5180cd0401d2e89d")
|
||||
version("1.5-14", sha256="067751face3b5771e72f9fb49bfeefb3a7bbecc060b672ab4393cb5935204c7b")
|
||||
version("1.5-12.2", sha256="dd524105c83b82b5c3b3ee2583ef90d4cafa54b0c29817dac48b425b79f90f92")
|
||||
|
@ -15,6 +15,7 @@ class RCallr(RPackage):
|
||||
|
||||
cran = "callr"
|
||||
|
||||
version("3.7.2", sha256="12da8a212679e450d8d43c3c6e61ed09b82047f376f316f6f6392f1638580307")
|
||||
version("3.7.0", sha256="d67255148595c6d0ba4c4d241bc9f6b5e00cafe25fdc13e38c10acc38653360a")
|
||||
version("3.5.1", sha256="ce338c648cc9ab501168a55f93e68fc81e31dc5ec881e908b5b4a9d6f5bd8696")
|
||||
version("3.4.3", sha256="01b7277f20c1d662c6bebbfa2798d179922b36d4148b4298853579aeda0382b5")
|
||||
@ -23,6 +24,9 @@ class RCallr(RPackage):
|
||||
version("3.0.0", sha256="e36361086c65660a6ecbbc09b5ecfcddee6b59caf75e983e48b21d3b8defabe7")
|
||||
version("1.0.0", sha256="2c56808c723aba2ea8a8b6bbdc9b8332c96f59b119079861dd52f5988c27f715")
|
||||
|
||||
depends_on("r@3.4:", type=("build", "run"), when="@3.7.2:")
|
||||
|
||||
depends_on("r-processx@3.4.0:", type=("build", "run"), when="@3.0.0:")
|
||||
depends_on("r-processx@3.5.0:", type=("build", "run"), when="@3.6.0:")
|
||||
depends_on("r-processx@3.6.1:", type=("build", "run"), when="@3.7.2:")
|
||||
depends_on("r-r6", type=("build", "run"), when="@3.0.0:")
|
||||
|
@ -14,6 +14,7 @@ class RCar(RPackage):
|
||||
|
||||
cran = "car"
|
||||
|
||||
version("3.1-0", sha256="bd52b4eaea46ce828fccd93445301d06ebd265e2ffff796064875a8c0f0aea21")
|
||||
version("3.0-13", sha256="d35ae8da80284c9e4471ff13e7100c3cdc1809fd06f813cd223a3958e29e47eb")
|
||||
version("3.0-12", sha256="b899a6efae3842a90a2349d381dbcf4b4ed36bd03108ebe7380e81120e457302")
|
||||
version("3.0-11", sha256="b32c927206f515631ff276dbb337b0f22e9b2d851f4abb1d2c272e534c19542c")
|
||||
|
@ -14,6 +14,7 @@ class RCaret(RPackage):
|
||||
|
||||
cran = "caret"
|
||||
|
||||
version("6.0-93", sha256="4c156b88879d390436a54779ea19ffbae3f476533d83caaf30400d76130c4a07")
|
||||
version("6.0-92", sha256="1d814a2a921a23ad8b9a7da6f788e6abc06f5668b3918bd440d4355bc4b81511")
|
||||
version("6.0-90", sha256="e851a4ed7d939c665e57e3551a5464b09fe4285e7c951236efdd890b0da866bc")
|
||||
version("6.0-86", sha256="da4a1c7c3fbf645c5b02871e563a77404622b83623f0d1c5dc1425de7aa4ce37")
|
||||
|
@ -13,6 +13,7 @@ class RChron(RPackage):
|
||||
|
||||
cran = "chron"
|
||||
|
||||
version("2.3-58", sha256="057fc628cde330c22b9d20365316d3632c2d217f4f2f97d39b1d1a2c93f766d0")
|
||||
version("2.3-57", sha256="9645d86a84d1afc12a0accf4f826fdd40e6d050a313424ad70f8085e8f19c232")
|
||||
version("2.3-56", sha256="863ecbb951a3da994761ea9062fa96d34e94e19fbc4122521ac179274dfa3f5d")
|
||||
version("2.3-53", sha256="521814b46ba958eae28e29d8766aebd285da5e6fa16c5806603df3ae39f77309")
|
||||
|
@ -14,6 +14,7 @@ class RClassint(RPackage):
|
||||
|
||||
cran = "classInt"
|
||||
|
||||
version("0.4-8", sha256="6ae9617f5b71bbecfa204a4f36b5972808bafd060d87a4a5bac17f3ad2ca59b3")
|
||||
version("0.4-3", sha256="9ede7a2a7a6b6c114919a3315a884fb592e33b037a50a4fe45cbd4fe2fc434ac")
|
||||
version("0.4-1", sha256="39c63f8e37b379033d73d57929b5b8ea41b0023626cc1cec648d66bade5d0103")
|
||||
version("0.3-3", sha256="a93e685ef9c40d5977bb91d7116505a25303b229897a20544722a94ea1365f30")
|
||||
|
@ -18,6 +18,7 @@ class RCli(RPackage):
|
||||
|
||||
cran = "cli"
|
||||
|
||||
version("3.4.1", sha256="1c585efbfd8b8685c66fac34bcb60f28c351691bb4b9931df214e6e47fd9744e")
|
||||
version("3.3.0", sha256="c3a9ebbcb9017fb9aeda4f7df5ca981e42b169cbd7ce13e592cda2cd74250d63")
|
||||
version("3.2.0", sha256="cd5a1b754d09de33f088f25ecdb0494100f9a42bc0a66622bfd7d8ec5498e862")
|
||||
version("3.1.1", sha256="c8b3e6014ad60593ba21897255acfe90c0e3f98bd4f7e22c1f3acb2644cf54cf")
|
||||
@ -31,9 +32,10 @@ class RCli(RPackage):
|
||||
|
||||
depends_on("r@2.10:", type=("build", "run"))
|
||||
depends_on("r@3,4:", type=("build", "run"), when="@3.3.0:")
|
||||
depends_on("r-glue", type=("build", "run"), when="@2:")
|
||||
depends_on("r-glue@1.6.0:", type=("build", "run"), when="@3.3.0:")
|
||||
|
||||
depends_on("r-assertthat", type=("build", "run"), when="@:2.3")
|
||||
depends_on("r-crayon@1.3.4:", type=("build", "run"), when="@:2.2")
|
||||
depends_on("r-fansi", type=("build", "run"), when="@2:2.2")
|
||||
depends_on("r-glue", type=("build", "run"), when="@2:")
|
||||
depends_on("r-glue@1.6.0:", type=("build", "run"), when="@3.3.0:")
|
||||
depends_on("r-glue", when="@:3.3.0")
|
||||
|
@ -15,6 +15,7 @@ class RCluster(RPackage):
|
||||
|
||||
cran = "cluster"
|
||||
|
||||
version("2.1.4", sha256="c6f10ceca29a176ba833f24ebf71fd451629052c2338398ba286df5689d6f5b6")
|
||||
version("2.1.3", sha256="a3ad7a9455d634c4e0c6ccf8ea7a3a392a0ecf9c2bdb368d127ffa68a93164a9")
|
||||
version("2.1.2", sha256="5c8aa760fb6dda4fcfe6196e561ffcd2dc12b1a6c7659cb90be2cde747311499")
|
||||
version("2.1.0", sha256="eaf955bef8f616ea563351ec7f597c445aec43e65991ca975e382ef1fd70aa14")
|
||||
|
@ -16,6 +16,7 @@ class RConquer(RPackage):
|
||||
|
||||
cran = "conquer"
|
||||
|
||||
version("1.3.1", sha256="14c28ab47b60c39696f34ee6fdd737bdcd2d28d05b3641c0e89960ab14a8bcd5")
|
||||
version("1.3.0", sha256="ac354e18c9ad6f41ed5200fad1c99fa5b124fc6fa5bba8f3434be2478f53d5fa")
|
||||
version("1.2.1", sha256="1354f90f962a2124e155227cdc0ed2c6e54682f1e08934c49a827e51dc112f45")
|
||||
version("1.0.2", sha256="542f6154ce1ffec0c1b4dd4e1f5b86545015f4b378c4c66a0840c65c57d674ff")
|
||||
|
@ -24,6 +24,7 @@ class RCopula(RPackage):
|
||||
|
||||
cran = "copula"
|
||||
|
||||
version("1.1-0", sha256="9ab76e6256534db2a18d3880143b8c67e385767010de861bbde25212aa75d924")
|
||||
version("1.0-1", sha256="d09b2ccffc7379e48b00952aa6b282baf502feebaf55cc44e93f881d7b909742")
|
||||
version("0.999-20", sha256="7d3d47bce2dacb05b94a772f84dbf3d83c99ac2ac11e5f1b4b03d50d9d5c0fb0")
|
||||
|
||||
|
@ -15,6 +15,7 @@ class RCorhmm(RPackage):
|
||||
|
||||
cran = "corHMM"
|
||||
|
||||
version("2.8", sha256="d6e46641f5b2b15720c8bb6c51d715220519dd8a6ba44171d13ef75bfa2eb6df")
|
||||
version("2.7", sha256="0d54ba0f6b3f884343bcc26919d8febc05efb0b739cb962d3072ca0bc0ce270a")
|
||||
version("2.6", sha256="726de9707ede8ef447915171a3abe1003a0e42fe8e17eb440442cac9adf8cdcf")
|
||||
version("1.22", sha256="d262fa1183eab32087afb70f1789fabae6fb49bec01d627974c54a088a48b10d")
|
||||
|
@ -19,6 +19,7 @@ class RCovr(RPackage):
|
||||
|
||||
cran = "covr"
|
||||
|
||||
version("3.6.1", sha256="ffbe15438c1a4f274c14cacfb944480e284f1ab60808d5e840c015cc57c51157")
|
||||
version("3.5.1", sha256="a54cfc3623ea56084158ac5d7fe33f216f45191f6dcddab9c9ed4ec1d9d8ac6c")
|
||||
version("3.5.0", sha256="cb919912018130164a40803ac573a37dde2186678c058c03c6303d79604979df")
|
||||
version("3.3.0", sha256="c0aa0bd7b2dc05effdc2367c59d45294f46858930d1b14efb393b205021fc65a")
|
||||
|
@ -17,6 +17,7 @@ class RCrayon(RPackage):
|
||||
|
||||
cran = "crayon"
|
||||
|
||||
version("1.5.2", sha256="70a9a505b5b3c0ee6682ad8b965e28b7e24d9f942160d0a2bad18eec22b45a7a")
|
||||
version("1.5.1", sha256="c025c73b78a8e88e8e4363c8e1a941da5089a7baea39e59ea5342ab9ebe45df9")
|
||||
version("1.4.2", sha256="ee34397f643e76e30588068d4c93bd3c9afd2193deacccacb3bffcadf141b857")
|
||||
version("1.4.1", sha256="08b6e42e748d096960b2f32b7ffe690c25742e29fe14c19d1834cd6ff43029c7")
|
||||
|
@ -18,6 +18,7 @@ class RCrul(RPackage):
|
||||
|
||||
cran = "crul"
|
||||
|
||||
version("1.3", sha256="8058617d8b3724acb5b89d0e6e63f381df5c56565128b250a65eceb2b8081e2d")
|
||||
version("1.2.0", sha256="be1a149b21cf219ef55adfb56a6a5eb9892a9acf0d5f5421a22e52f2a7066f8c")
|
||||
version("1.0.0", sha256="2ade500f6cf89b2d0ca8496b8d4df9937d6f802a35c9ad10d9fab8632cdb1027")
|
||||
version("0.8.4", sha256="dbd950ad3b68402e5a5955615b1abcb5c9bdc846c93aa25f96a7a58913d04c8b")
|
||||
|
@ -18,6 +18,7 @@ class RCubature(RPackage):
|
||||
|
||||
cran = "cubature"
|
||||
|
||||
version("2.0.4.5", sha256="a81f118e5b7950a4a29e5509f8a40d7b87544fb25783917242000561379c9023")
|
||||
version("2.0.4.4", sha256="087b3b2c4f25d873fa95e9d38766a17a7201d03a6f4960f1e080a8db8b67d569")
|
||||
version("2.0.4.2", sha256="605bdd9d90fb6645359cccd1b289c5afae235b46360ef5bdd2001aa307a7694e")
|
||||
version("2.0.4.1", sha256="383fbdf49d1cdf760ad5d88d353e69118c7c663cde126c5bdd33b6fecc50d400")
|
||||
|
@ -21,6 +21,7 @@ class RCurl(RPackage):
|
||||
|
||||
cran = "curl"
|
||||
|
||||
version("4.3.3", sha256="3567b6acad40dad68acfe07511c853824839d451a50219a96dd6d125ed617c9e")
|
||||
version("4.3.2", sha256="90b1facb4be8b6315bb3d272ba2dd90b88973f6ea1ab7f439550230f8500a568")
|
||||
version("4.3", sha256="7406d485bb50a6190e3ed201e3489063fd249b8b3b1b4f049167ac405a352edb")
|
||||
version("4.0", sha256="09a99c9c86666449188fbb211cb1e9fbdb5108ab56f0d09322cd0ae50e926171")
|
||||
|
@ -15,6 +15,7 @@ class RDbi(RPackage):
|
||||
|
||||
cran = "DBI"
|
||||
|
||||
version("1.1.3", sha256="38bb33753da5bddb78893a5228a5d269dae3bf16f21dc5d9853ac9c24d31428d")
|
||||
version("1.1.2", sha256="56ec377d471c76ac234ddfd313bd01a050c99fb6fa5f704f5333b34a5d714f58")
|
||||
version("1.1.1", sha256="572ab3b8a6421d0ac3e7665c4c842826f1723af98fca25d4f43edb419e771344")
|
||||
version("1.1.0", sha256="a96db7fa39a58f1ed34c6e78d8f5f7e4cf0882afb301323b5c6975d6729203e4")
|
||||
|
@ -16,6 +16,7 @@ class RDbplyr(RPackage):
|
||||
|
||||
cran = "dbplyr"
|
||||
|
||||
version("2.2.1", sha256="a6f3f644c068fe1a3b3e99a3a10de55a150d43ef20b5130e6724d142afcb0df7")
|
||||
version("2.1.1", sha256="aba4cf47b85ab240fd3ec4cd8d512f6e1958201e151577c1a2ebc3d6ebc5bc08")
|
||||
version("2.0.0", sha256="ecd71936ecfefbdda0fad24e52653ac9c0913e01126e467c92c8ba9de37b4069")
|
||||
version("1.4.2", sha256="b783f0da2c09a1e63f41168b02c0715b08820f02a351f7ab0aaa688432754de0")
|
||||
@ -28,19 +29,25 @@ class RDbplyr(RPackage):
|
||||
depends_on("r@3.1:", type=("build", "run"))
|
||||
depends_on("r-assertthat@0.2.0:", type=("build", "run"))
|
||||
depends_on("r-blob@1.2.0:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-cli@3.3.0:", type=("build", "run"), when="@2.2.1:")
|
||||
depends_on("r-dbi@1.0.0:", type=("build", "run"))
|
||||
depends_on("r-dplyr@0.8.0:", type=("build", "run"))
|
||||
depends_on("r-dplyr@1.0.3:", type=("build", "run"), when="@2.1.0")
|
||||
depends_on("r-dplyr@1.0.4:", type=("build", "run"), when="@2.1.1:")
|
||||
depends_on("r-ellipsis", type=("build", "run"), when="@2.1:")
|
||||
depends_on("r-dplyr@1.0.9:", type=("build", "run"), when="@2.2.1:")
|
||||
depends_on("r-glue@1.2.0:", type=("build", "run"))
|
||||
depends_on("r-lifecycle", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-lifecycle@1.0.0:", type=("build", "run"), when="@2.1.1:")
|
||||
depends_on("r-magrittr", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-pillar@1.5.0:", type=("build", "run"), when="@2.2.1:")
|
||||
depends_on("r-purrr@0.2.5:", type=("build", "run"))
|
||||
depends_on("r-r6@2.2.2:", type=("build", "run"))
|
||||
depends_on("r-rlang@0.2.0:", type=("build", "run"))
|
||||
depends_on("r-rlang@1.0.0:", type=("build", "run"), when="@2.2.1:")
|
||||
depends_on("r-tibble@1.4.2:", type=("build", "run"))
|
||||
depends_on("r-tidyselect@0.2.4:", type=("build", "run"))
|
||||
depends_on("r-vctrs", type=("build", "run"), when="@2.1:")
|
||||
depends_on("r-vctrs@0.4.1:", type=("build", "run"), when="@2.2.1:")
|
||||
depends_on("r-withr", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-ellipsis", type=("build", "run"), when="@2.1:")
|
||||
depends_on("r-ellipsis", when="@:2.1.1")
|
||||
|
@ -17,6 +17,7 @@ class RDendextend(RPackage):
|
||||
|
||||
cran = "dendextend"
|
||||
|
||||
version("1.16.0", sha256="ec2fd09c31a2a93292d87a9bd5bfc261840de941dfded79d6c2fe87116708466")
|
||||
version("1.15.2", sha256="4ba3885b66694589d455ffef31c218fe653fa25aff3efb7e8db6c25008d2921b")
|
||||
version("1.14.0", sha256="3789461bc474e146b077ad26566b1fa05be32fc7e57ab1fb5e78bdabcc797858")
|
||||
version("1.12.0", sha256="b487fed8c1878a23b9e28394ee11f16a1831b76c90793eb486e6963c7162fa55")
|
||||
|
@ -14,6 +14,7 @@ class RDesc(RPackage):
|
||||
|
||||
cran = "desc"
|
||||
|
||||
version("1.4.2", sha256="758acf14be478c09ba7e84ade3a7ce512becf35d44e5e6a997b932065f2a227c")
|
||||
version("1.4.1", sha256="8f9ebb51eccf925b2e76bc65ecf495e8f3882b8c0053023f396622f0402d6f54")
|
||||
version("1.4.0", sha256="8220e4c706449b8121b822e70b1414f391ef419aed574836a234c63b83e5d649")
|
||||
version("1.2.0", sha256="e66fb5d4fc7974bc558abcdc107a1f258c9177a29dcfcf9164bc6b33dd08dae8")
|
||||
|
@ -23,6 +23,7 @@ class RDesolve(RPackage):
|
||||
|
||||
cran = "deSolve"
|
||||
|
||||
version("1.33", sha256="71de979e05ce7e472308ac5218e97efe976051364ba579b10940dc1fe4c8b684")
|
||||
version("1.32", sha256="74670f16eaafddd044a3ac1813acd5d164aed3f862b87aa1ac275b600e27d9ad")
|
||||
version("1.30", sha256="39f65d7af6b4d85eb023cce2a200c2de470644b22d45e210c5b7d558c3abf548")
|
||||
version("1.28", sha256="4c55ef4cae841df91034382d277b483985af120240f87af587ff82177fdb5a49")
|
||||
|
@ -13,6 +13,7 @@ class RDevtools(RPackage):
|
||||
|
||||
cran = "devtools"
|
||||
|
||||
version("2.4.4", sha256="acd6759d269f30893eda173a738b1ce6537a11313c8e8e12e116452c4296934d")
|
||||
version("2.4.3", sha256="e42159a9bca0b219170e76c282862e27ca283649d6cbf6a868175d8982e06b4f")
|
||||
version("2.3.2", sha256="e5086106baef6bb925445dfdddb3cd5ff4f8fff96353365b135aba5618d1986d")
|
||||
version("2.3.0", sha256="4fc375c171335c67bd71df4e0b1b3dff2ae3aa17b3e0566b790ba0808b39dcd0")
|
||||
@ -22,63 +23,71 @@ class RDevtools(RPackage):
|
||||
version("1.11.1", sha256="51c876f9ddbfdf611f6ea0b06c0b46da8cefcb8cc98d60e06d576b61f0a06346")
|
||||
|
||||
depends_on("r@3.0.2:", type=("build", "run"))
|
||||
depends_on("r-urlchecker@1.0.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-profvis@0.3.7:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-pkgdown@2.0.6:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-miniui@0.1.1.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-usethis@1.5.0:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-usethis@1.6.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-usethis@1.6.3:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-usethis@2.0.1:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-callr", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-callr@3.4.3:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-callr@3.4.4:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-callr@3.4.4:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-callr@3.6.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-usethis@2.1.6:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-cli", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-cli@2.0.2:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-cli@3.0.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-covr@3.5.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-covr@3.5.1:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-cli@3.3.0:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-desc@1.2.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-desc@1.3.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-desc@1.4.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-ellipsis@0.3.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-ellipsis@0.3.1:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-ellipsis@0.3.2:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-fs@1.5.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-httr@0.4:", type=("build", "run"))
|
||||
depends_on("r-httr@1.4.1:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-httr@1.4.2:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-fs@1.5.2:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-lifecycle@1.0.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-lifecycle@1.0.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-memoise@1.0.0:", type=("build", "run"))
|
||||
depends_on("r-memoise@1.1.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-memoise@2.0.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-memoise@2.0.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-pkgbuild@1.0.3:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-pkgbuild@1.0.6:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-pkgbuild@1.1.0:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-pkgbuild@1.2.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-pkgbuild@1.3.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-pkgload@1.0.2:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-pkgload@1.1.0:", type=("build", "run"), when="@2.0.2:")
|
||||
depends_on("r-pkgload@1.2.1:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-pkgload@1.3.0:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-rcmdcheck@1.3.3:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-rcmdcheck@1.4.0:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-remotes@2.1.0:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-remotes@2.1.1:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-remotes@2.2.0:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-remotes@2.3.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-remotes@2.4.2:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-rlang@0.4.5:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-rlang@0.4.7:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-rlang@0.4.10:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-rlang@1.0.4:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-roxygen2@6.1.1:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-roxygen2@7.1.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-roxygen2@7.1.1:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-rstudioapi@0.7.0:", type=("build", "run"))
|
||||
depends_on("r-rstudioapi@0.11:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-rstudioapi@0.13:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-roxygen2@7.2.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-rversions@2.0.1:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-rversions@2.0.2:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-rversions@2.1.1:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-sessioninfo@1.1.1:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-sessioninfo@1.2.2:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-testthat@2.1.1:", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-testthat@2.3.2:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-testthat@3.0.2:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-testthat@3.1.4:", type=("build", "run"), when="@2.4.4:")
|
||||
depends_on("r-withr", type=("build", "run"))
|
||||
depends_on("r-withr@2.1.2:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-withr@2.2.0:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-withr@2.4.1:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-withr@2.5.0:", type=("build", "run"), when="@2.4.4:")
|
||||
|
||||
depends_on("r-crayon@1.3.4:", type=("build", "run"), when="@2.3.0")
|
||||
depends_on("r-digest", type=("build", "run"), when="@:2.3.0")
|
||||
@ -92,3 +101,20 @@ class RDevtools(RPackage):
|
||||
depends_on("r-jsonlite", type=("build", "run"), when="@:2.3.2")
|
||||
depends_on("r-jsonlite@1.6.1:", type=("build", "run"), when="@2.3.0")
|
||||
depends_on("r-jsonlite@1.7.1:", type=("build", "run"), when="@2.3.2")
|
||||
depends_on("r-callr", type=("build", "run"), when="@2.0.0:")
|
||||
depends_on("r-callr@3.4.3:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-callr@3.4.4:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-callr@3.4.4:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-callr@3.6.0:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-callr", when="@:2.4.3")
|
||||
depends_on("r-covr@3.5.0:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-covr@3.5.1:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-covr", when="@:2.4.3")
|
||||
depends_on("r-httr@0.4:", type=("build", "run"))
|
||||
depends_on("r-httr@1.4.1:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-httr@1.4.2:", type=("build", "run"), when="@2.3.2:")
|
||||
depends_on("r-httr", when="@:2.4.3")
|
||||
depends_on("r-rstudioapi@0.7.0:", type=("build", "run"))
|
||||
depends_on("r-rstudioapi@0.11:", type=("build", "run"), when="@2.3.0:")
|
||||
depends_on("r-rstudioapi@0.13:", type=("build", "run"), when="@2.4.3:")
|
||||
depends_on("r-rstudioapi", when="@:2.4.3")
|
||||
|
@ -15,14 +15,19 @@ class RDismo(RPackage):
|
||||
|
||||
cran = "dismo"
|
||||
|
||||
version("1.3-9", sha256="3924521db67716b004a4c870985c65d037edfe926b14222740fd6c2b2093beee")
|
||||
version("1.3-5", sha256="812e1932d42c0f40acf2ab5c5b2d068f93128caf648626e1d11baf1a09340ee7")
|
||||
version("1.3-3", sha256="fd65331ac18a4287ba0856b90508ddd0e2738c653eecc5f3eb2b14e1d06949ca")
|
||||
version("1.1-4", sha256="f2110f716cd9e4cca5fd2b22130c6954658aaf61361d2fe688ba22bbfdfa97c8")
|
||||
|
||||
depends_on("r@3.2.0:", type=("build", "run"))
|
||||
depends_on("r@4.0.0:", type=("build", "run"), when="@1.3-5:")
|
||||
depends_on("r@3.6.3:", type=("build", "run"), when="@1.3-9:")
|
||||
depends_on("r-raster@2.5-2:", type=("build", "run"))
|
||||
depends_on("r-raster@3.5-2:", type=("build", "run"), when="@1.3-5:")
|
||||
depends_on("r-raster@3.5-21:", type=("build", "run"), when="@1.3-9:")
|
||||
depends_on("r-sp@1.2-0:", type=("build", "run"))
|
||||
depends_on("r-sp@1.4-5:", type=("build", "run"), when="@1.3-5:")
|
||||
depends_on("r-terra@1.5-34:", type=("build", "run"), when="@1.3-9:")
|
||||
depends_on("r-rcpp", type=("build", "run"), when="@1.3-9:")
|
||||
depends_on("java@8:", when="@1.3-3:")
|
||||
|
@ -19,16 +19,18 @@ class RDistributional(RPackage):
|
||||
|
||||
cran = "distributional"
|
||||
|
||||
version("0.3.1", sha256="727e56cbcf0c8a8adacca8030214ddbd14f68ee28d0aad716467bd68b027235f")
|
||||
version("0.3.0", sha256="fab36c7346617d8f2ca4b3cd0e3c9da93cb2f95fb7f102a3ae88670e694751d6")
|
||||
version("0.2.2", sha256="028e5a91aabe3a676eb7b7f3dc907f7f34735a123fe0d9adcabc03476504435f")
|
||||
|
||||
depends_on("r-vctrs@0.3.0:", type=("build", "run"))
|
||||
depends_on("r-rlang@0.4.5:", type=("build", "run"))
|
||||
depends_on("r-generics", type=("build", "run"))
|
||||
depends_on("r-ellipsis", type=("build", "run"))
|
||||
depends_on("r-numderiv", type=("build", "run"))
|
||||
depends_on("r-ggplot2", type=("build", "run"))
|
||||
depends_on("r-scales", type=("build", "run"))
|
||||
depends_on("r-farver", type=("build", "run"))
|
||||
depends_on("r-digest", type=("build", "run"))
|
||||
depends_on("r-lifecycle", type=("build", "run"))
|
||||
depends_on("r-ellipsis", type=("build", "run"))
|
||||
depends_on("r-ellipsis", when="@:0.3.0")
|
||||
|
@ -18,6 +18,7 @@ class RDotcall64(RPackage):
|
||||
|
||||
cran = "dotCall64"
|
||||
|
||||
version("1.0-2", sha256="e0c7728aebbea5ebf06dfeefae4fc0a240e6dde7c2bf13f2ed041b91d337a4ac")
|
||||
version("1.0-1", sha256="f10b28fcffb9453b1d8888a72c8fd2112038b5ac33e02a481492c7bd249aa5c6")
|
||||
version("1.0-0", sha256="69318dc6b8aecc54d4f789c8105e672198363b395f1a764ebaeb54c0473d17ad")
|
||||
|
||||
|
@ -14,6 +14,7 @@ class RDplyr(RPackage):
|
||||
|
||||
cran = "dplyr"
|
||||
|
||||
version("1.0.10", sha256="3ab639f627b4e439052df18f193f0ccab223225a4ae2ff8c18aba4f9807e0f2b")
|
||||
version("1.0.9", sha256="e2e1f7312618b4e32ada9a1da79cef32eaec12acd408c973a6b069c6be4fb46b")
|
||||
version("1.0.7", sha256="d2fe3aedbce02fdddce09a8a80f85f5918a9d1f15f792ad4a98f254959d7123d")
|
||||
version("1.0.3", sha256="28a1a9d87e99154d4d1542ef9da9fd70f869a173dc9709f4583a5770bae58441")
|
||||
@ -33,7 +34,6 @@ class RDplyr(RPackage):
|
||||
depends_on("r@3.2.0:", type=("build", "run"), when="@0.8.1:")
|
||||
depends_on("r@3.3.0:", type=("build", "run"), when="@1.0.3:")
|
||||
depends_on("r@3.4.0:", type=("build", "run"), when="@1.0.9:")
|
||||
depends_on("r-ellipsis", type=("build", "run"), when="@1.0.3:")
|
||||
depends_on("r-generics", type=("build", "run"), when="@1.0.3:")
|
||||
depends_on("r-glue@1.3.0:", type=("build", "run"))
|
||||
depends_on("r-glue@1.3.2:", type=("build", "run"), when="@1.0.3:")
|
||||
@ -61,3 +61,5 @@ class RDplyr(RPackage):
|
||||
depends_on("r-rcpp@1.0.1:", type=("build", "run"), when="@:0.8.3")
|
||||
depends_on("r-bh", type=("build", "run"), when="@:0.8.3")
|
||||
depends_on("r-plogr@0.2.0:", type=("build", "run"), when="@0.7.0:0.8.3")
|
||||
depends_on("r-ellipsis", type=("build", "run"), when="@1.0.3:")
|
||||
depends_on("r-ellipsis", when="@:1.0.9")
|
||||
|
@ -16,6 +16,7 @@ class RDt(RPackage):
|
||||
|
||||
cran = "DT"
|
||||
|
||||
version("0.25", sha256="0dfc8713062e1fe4e0428936367f35a0a41616c27b6d9b002bdfda58091c442b")
|
||||
version("0.23", sha256="360ae2fcb1141125a1b16448570fc37d14c4dd3f78a872c26df4fda1787cdc70")
|
||||
version("0.20", sha256="c66d7f49ec101fdbb91c6d26c06fb1373f9ebdefe29fe99f2ae1a641220aba9f")
|
||||
version("0.17", sha256="e3430292421dcc2b6ad5f2deda729f0603da4eb31f86d071833e6e11abf3fb56")
|
||||
|
@ -15,6 +15,7 @@ class RDtplyr(RPackage):
|
||||
|
||||
cran = "dtplyr"
|
||||
|
||||
version("1.2.2", sha256="f85928fe63701bc3a0cadf705ba660834a2aaeab37cf20addab406430e53e2d4")
|
||||
version("1.2.1", sha256="2640e9cde4eaa06f02cff29e3f2b99fdd08488df07ea2e6629b2ed6a8285d0f3")
|
||||
version("1.2.0", sha256="a6dedfb6dd80dfc1d29d005ab634c060b7bfda8cb49835ece84d3b7d12077414")
|
||||
version("1.1.0", sha256="99681b7285d7d5086e5595ca6bbeebf7f4e2ee358a32b694cd9d35916cdfc732")
|
||||
|
@ -19,6 +19,7 @@ class RDtw(RPackage):
|
||||
|
||||
cran = "dtw"
|
||||
|
||||
version("1.23-1", sha256="6ed6a3b52be673ce2617b8d48723c7c488c95aab88fe2912d7e00507838e826d")
|
||||
version("1.22-3", sha256="df7cf9adf613422ddb22a160597eb5f5475ab6c67c0d790092edb7f72ba98f00")
|
||||
version("1.20-1", sha256="43ca1a47a7c81a2b5d5054da1be8b8af79a85d6f9ce7b4512e9ed91f790f60f0")
|
||||
version("1.18-1", sha256="d9dab25bdf61705f9f28dc5ca1c96a7465b269233e878516c52c01b5a0da21ad")
|
||||
|
@ -16,6 +16,7 @@ class RE1071(RPackage):
|
||||
|
||||
cran = "e1071"
|
||||
|
||||
version("1.7-11", sha256="48c18e10e7cabc742d37b563672e2eddb6061f2378b69e5563be79ab9948d92f")
|
||||
version("1.7-9", sha256="9bf9a15e7ce0b9b1a57ce3048d29cbea7f2a5bb2e91271b1b6aaafe07c852226")
|
||||
version("1.7-4", sha256="e6ab871b06f500dc65f8f781cc7253f43179698784c06dab040b4aa6592f2309")
|
||||
version("1.7-2", sha256="721c299ce83047312acfa3e0c4b3d4c223d84a4c53400c73465cca2c92913752")
|
||||
|
@ -14,6 +14,7 @@ class REffects(RPackage):
|
||||
|
||||
cran = "effects"
|
||||
|
||||
version("4.2-2", sha256="2fee322cee8f6eb634bcd54e7793a750c8196443cac176c6793ea854553a925a")
|
||||
version("4.2-1", sha256="5397254214d55eb0e0441786f9329f9e3e3ef864366c0a93f0adb941da147640")
|
||||
version("4.2-0", sha256="6833dfbc65f3f33191a24e9b0d2aa0c964caeebb6c4fd2036ad94ed2723a7a46")
|
||||
|
||||
|
@ -19,6 +19,7 @@ class REmmeans(RPackage):
|
||||
|
||||
cran = "emmeans"
|
||||
|
||||
version("1.8.1-1", sha256="79fc5e44255427b038d0dbe2c9887d84984baacb11bb9a9078cd8d0dca2e6577")
|
||||
version("1.7.4-1", sha256="f7a33a2b54ad13d6e39ee6c58004f83a9edb06e8dc8282180440610eb18be721")
|
||||
version("1.7.2", sha256="d3e51c2a4b6c74dd9840efebe241a53072172f269f4324421f28f68db71721bc")
|
||||
version("1.7.1-1", sha256="6b01eaad1ea0f96245db8563cc77929a3c3b96cd61c24ce1d452308d6e0250de")
|
||||
@ -26,7 +27,9 @@ class REmmeans(RPackage):
|
||||
version("1.6.0", sha256="201bb7b008dde94231ed60bcc6a32749442faaab4baeea99ad28b97c951b3c1e")
|
||||
|
||||
depends_on("r@3.5.0:", type=("build", "run"))
|
||||
depends_on("r@4.1.0:", type=("build", "run"), when="@1.8.1-1:")
|
||||
depends_on("r-estimability@1.3:", type=("build", "run"))
|
||||
depends_on("r-estimability@1.4.1:", type=("build", "run"), when="@1.8.1-1:")
|
||||
depends_on("r-numderiv", type=("build", "run"))
|
||||
depends_on("r-mvtnorm", type=("build", "run"))
|
||||
depends_on("r-xtable@1.8-2:", type=("build", "run"))
|
||||
|
@ -17,6 +17,7 @@ class RErgm(RPackage):
|
||||
|
||||
cran = "ergm"
|
||||
|
||||
version("4.2.3", sha256="35d15373d4a8445872eb3713c81c6c6ac34b72096e0cdb04292a468e65ae9288")
|
||||
version("4.2.2", sha256="ced92b0a32c78c85546d665c32fb3993fe77a3809aa88f43c3eee39e2577f2f0")
|
||||
version("4.2.1", sha256="484769eb69d127a9e9adf5c1c8c88106d5fbaf4aaf2f915621d7f043c7cab0f5")
|
||||
version("4.1.2", sha256="1abc6ef53376a4132530c376ce477ae7a2590e95fe8feb011c0da9cfb4d49ba0")
|
||||
@ -29,6 +30,7 @@ class RErgm(RPackage):
|
||||
depends_on("r@4.0:", type=("build", "run"), when="@4.2.1:")
|
||||
depends_on("r-network@1.15:", type=("build", "run"))
|
||||
depends_on("r-network@1.17:", type=("build", "run"), when="@4.1.2:")
|
||||
depends_on("r-network@1.17.0:", type=("build", "run"), when="@4.2.3:")
|
||||
depends_on("r-robustbase@0.93-5:", type=("build", "run"))
|
||||
depends_on("r-robustbase@0.93-7:", type=("build", "run"), when="@4.1.2:")
|
||||
depends_on("r-coda@0.19-2:", type=("build", "run"))
|
||||
@ -55,11 +57,12 @@ class RErgm(RPackage):
|
||||
depends_on("r-tibble@3.1.0:", type=("build", "run"), when="@4.1.2:")
|
||||
depends_on("r-magrittr@2.0.1:", type=("build", "run"), when="@4.2.1:")
|
||||
depends_on("r-knitr", type=("build", "run"), when="@4.2.1:")
|
||||
depends_on("r-digest", type=("build", "run"), when="@4.2.1:")
|
||||
depends_on("r-stringr", type=("build", "run"), when="@4.2.1:")
|
||||
|
||||
depends_on("r-dplyr@0.8.0.1:", type=("build", "run"), when="@3.10.0:3.10.4")
|
||||
depends_on("r-lpsolve@5.6.13:", type=("build", "run"), when="@:3.11.0")
|
||||
depends_on("r-digest", type=("build", "run"), when="@4.2.1:")
|
||||
depends_on("r-digest", when="@:4.2.2")
|
||||
|
||||
# The CRAN page list OpenMPI as a dependency but this is not a dependency
|
||||
# for using the package. If one wishes to use MPI, simply load an MPI
|
||||
|
@ -17,4 +17,5 @@ class REstimability(RPackage):
|
||||
|
||||
cran = "estimability"
|
||||
|
||||
version("1.4.1", sha256="c65aaf1e452f3947013d3ce05ae674d48492081f615a942592dc91db780f1124")
|
||||
version("1.3", sha256="a33179c5fbd6a1a623d90cb6f1743148f92c09429fac466867f3ea70946a2e32")
|
||||
|
@ -14,6 +14,7 @@ class REvaluate(RPackage):
|
||||
|
||||
cran = "evaluate"
|
||||
|
||||
version("0.17", sha256="49c743c94cb967911af0e5555861a3762cd840b98578882671b583cff86ba963")
|
||||
version("0.15", sha256="885aee530a8b6aa7fd3acaa1ecd94ab58b71038c879ca37405f948e105907c5d")
|
||||
version("0.14", sha256="a8c88bdbe4e60046d95ddf7e181ee15a6f41cdf92127c9678f6f3d328a3c5e28")
|
||||
version("0.10.1", sha256="c9a763895d3f460dbf87c43a6469e4b41a251a74477df8c5d7e7d2b66cdd1b1c")
|
||||
|
@ -17,5 +17,6 @@ class REvd(RPackage):
|
||||
|
||||
cran = "evd"
|
||||
|
||||
version("2.3-6.1", sha256="662c592d3f5c5693dbf1c673d1137c4a60a347e330b71be1f3933f201d2c8971")
|
||||
version("2.3-6", sha256="8edb8bc4f06d246c4343fd923bb5d5df99724d6db8821bfd996220343a834cb6")
|
||||
version("2.3-3", sha256="2fc5ef2e0c3a2a9392425ddd45914445497433d90fb80b8c363877baee4559b4")
|
||||
|
@ -14,6 +14,7 @@ class RExactextractr(RPackage):
|
||||
|
||||
cran = "exactextractr"
|
||||
|
||||
version("0.9.0", sha256="705a355534f427dc832af2a294aaf928c10c72d6335d38aed86da64d814eb18d")
|
||||
version("0.8.2", sha256="cc32ab3af8d881a7e7836c296ea42f3fdabf3373ec1de0b154dbfe9870ee8a74")
|
||||
version("0.7.2", sha256="2eb2b5eb2156cca875e7004b80687589217abd6fce5ebb7d8acb7fa71f6e6958")
|
||||
version("0.5.1", sha256="47ddfb4b9e42e86957e03b1c745d657978d7c4bed12ed3aa053e1bc89f20616d")
|
||||
|
@ -20,6 +20,7 @@ class RFactominer(RPackage):
|
||||
|
||||
cran = "FactoMineR"
|
||||
|
||||
version("2.6", sha256="81261608c097b863e004a0c6cdc4bdfd6e7bf49c6ec20e211233eda2e5268f75")
|
||||
version("2.4", sha256="b9e3adce9a66b4daccc85fa67cb0769d6be230beeb126921b386ccde5db2e851")
|
||||
version("1.42", sha256="4cd9efb3681767c3bd48ddc3504ebead1493fcbbc0a9f759a00955b16c3481fa")
|
||||
version("1.41", sha256="a9889d69e298b8a01e8d0a5a54260730e742c95681e367d759829aad9a8740c0")
|
||||
@ -31,14 +32,17 @@ class RFactominer(RPackage):
|
||||
|
||||
depends_on("r@3.0.0:", type=("build", "run"))
|
||||
depends_on("r@3.5.0:", type=("build", "run"), when="@2.4:")
|
||||
depends_on("r@4.0:", type=("build", "run"), when="@2.6:")
|
||||
depends_on("r-car", type=("build", "run"))
|
||||
depends_on("r-cluster", type=("build", "run"))
|
||||
depends_on("r-dt", type=("build", "run"), when="@2.4:")
|
||||
depends_on("r-ellipse", type=("build", "run"))
|
||||
depends_on("r-emmeans", type=("build", "run"), when="@2.6:")
|
||||
depends_on("r-flashclust", type=("build", "run"))
|
||||
depends_on("r-lattice", type=("build", "run"))
|
||||
depends_on("r-leaps", type=("build", "run"))
|
||||
depends_on("r-mass", type=("build", "run"))
|
||||
depends_on("r-multcompview", type=("build", "run"), when="@2.6:")
|
||||
depends_on("r-scatterplot3d", type=("build", "run"))
|
||||
depends_on("r-ggplot2", type=("build", "run"), when="@2.4:")
|
||||
depends_on("r-ggrepel", type=("build", "run"), when="@2.4:")
|
||||
|
@ -19,6 +19,7 @@ class RFarver(RPackage):
|
||||
|
||||
cran = "farver"
|
||||
|
||||
version("2.1.1", sha256="0dcfda6ca743f465372790bcff1bcbc6a7145fdac1c682b021f654e8c6c996ce")
|
||||
version("2.1.0", sha256="e5c8630607049f682fb3002b99ca4f5e7c6b94f8b2a4342df594e7853b77cef4")
|
||||
version("2.0.3", sha256="0e1590df79ec6078f10426411b96216b70568a4eaf3ffd84ca723add0ed8e5cc")
|
||||
version("2.0.1", sha256="71473e21727357084c6aec4bb9bb258a6797a0f676b4b27504a03f16aa2f4e54")
|
||||
|
@ -28,6 +28,7 @@ class RFastmatrix(RPackage):
|
||||
|
||||
cran = "fastmatrix"
|
||||
|
||||
version("0.4-1245", sha256="ee2e12b5dcda4585cca21f2c0ac144706f6fd26024586e91d622c6cd66d1d873")
|
||||
version("0.4-1", sha256="494a1aad38dcec28956eba8d095c964b20c5388dfb6dc2a23848ae37ea61cde5")
|
||||
version("0.3-8196", sha256="72fae07c627b995a091ccc3e14b2b2167474e3b1f14d723e87252538cf978fb6")
|
||||
version("0.3", sha256="d92e789454a129db5f6f5b23e0d2245f3d55ff34b167427af265b9a6331e7c21")
|
||||
|
@ -17,6 +17,7 @@ class RFda(RPackage):
|
||||
|
||||
cran = "fda"
|
||||
|
||||
version("6.0.5", sha256="14445776fc65284cd6cae98e5b4dd14c2626d96db5f78c0fcc6aabce5419b8f1")
|
||||
version("6.0.3", sha256="205814b9812664e8201221f99e0e8391aa49dba2ae287dc404c57c0c492477d3")
|
||||
version("5.5.1", sha256="dcaa2f6ae226d35855bc79c6967f60d45404b984c0afaec215b139c4b8dea23a")
|
||||
|
||||
|
@ -36,11 +36,13 @@ class RFields(RPackage):
|
||||
|
||||
cran = "fields"
|
||||
|
||||
version("14.1", sha256="57c4c5592443d2ee869014b3199989b5edd1aff52e24f1cd313b8f9b34a95434")
|
||||
version("13.3", sha256="c652838b1ae7eb368831522824bfbc1d1db7b9d1db5e9bb52b194098549944c3")
|
||||
version("11.6", sha256="8600d1d992c40668cc2ab01b3c17d0e1bd44a001ec7ba9f468bc0e9ef87c59db")
|
||||
version("9.9", sha256="262f03c630773b580c7162ab2a031c894ca489fd83989fd8a2f67573306e78e1")
|
||||
|
||||
depends_on("r@3.0:", type=("build", "run"))
|
||||
depends_on("r@3.5.0:", type=("build", "run"), when="@14.1:")
|
||||
depends_on("r-spam", type=("build", "run"))
|
||||
depends_on("r-viridis", type=("build", "run"), when="@13.3:")
|
||||
depends_on("r-maps", type=("build", "run"))
|
||||
|
@ -17,6 +17,7 @@ class RFlexmix(RPackage):
|
||||
|
||||
cran = "flexmix"
|
||||
|
||||
version("2.3-18", sha256="462201ef49088845c83083e4ed6725cf069aafb12a814041618aaf09ebd69b51")
|
||||
version("2.3-17", sha256="36019b7833032409ac61720dd625fa5a581a1d8bcba9045b04979c90907b5649")
|
||||
version("2.3-15", sha256="ba444c0bfe33ab87d440ab590c06b03605710acd75811c1622253171bb123f43")
|
||||
version("2.3-14", sha256="837c7f175a211b3c484b2c7b81ec9729889a614c5c6e7d70c95a2c1d60ff846a")
|
||||
|
@ -17,6 +17,7 @@ class RFontawesome(RPackage):
|
||||
|
||||
cran = "fontawesome"
|
||||
|
||||
version("0.3.0", sha256="4deefcf4d4580d84213f863351c2a23c39adbd2f8762d7477ec2faa8235a1a31")
|
||||
version("0.2.2", sha256="572db64d1b3c9be301935e0ca7baec69f3a6e0aa802e23f1f224b3724259df64")
|
||||
|
||||
depends_on("r@3.3.0:", type=("build", "run"))
|
||||
|
@ -16,6 +16,7 @@ class RForcats(RPackage):
|
||||
|
||||
cran = "forcats"
|
||||
|
||||
version("0.5.2", sha256="14a60a43183f82da0fbf42633cee446d21dcbb98a8c37361b5c8061a4da86141")
|
||||
version("0.5.1", sha256="c4fb96e874e2bedaa8a1aa32ea22abdee7906d93b5c5c7b42c0894c0c5b6a289")
|
||||
version("0.5.0", sha256="8f960e789333ec597ddf2d653a64e330f03b86f465e9b71f6779f227355d90c4")
|
||||
version("0.4.0", sha256="7c83cb576aa6fe1379d7506dcc332f7560068b2025f9e3ab5cd0a5f28780d2b2")
|
||||
@ -24,7 +25,13 @@ class RForcats(RPackage):
|
||||
|
||||
depends_on("r@3.1:", type=("build", "run"))
|
||||
depends_on("r@3.2:", type=("build", "run"), when="@0.5.0:")
|
||||
depends_on("r@3.4:", type=("build", "run"), when="@0.5.2:")
|
||||
depends_on("r-cli", type=("build", "run"), when="@0.5.2:")
|
||||
depends_on("r-ellipsis", type=("build", "run"), when="@0.4.0:")
|
||||
depends_on("r-lifecycle", type=("build", "run"), when="@0.5.2:")
|
||||
depends_on("r-glue", type=("build", "run"), when="@0.5.2:")
|
||||
depends_on("r-magrittr", type=("build", "run"))
|
||||
depends_on("r-rlang", type=("build", "run"), when="@0.4.0:")
|
||||
depends_on("r-rlang@1.0.0:", type=("build", "run"), when="@0.5.2:")
|
||||
depends_on("r-tibble", type=("build", "run"))
|
||||
depends_on("r-withr", type=("build", "run"), when="@0.5.2:")
|
||||
|
@ -15,6 +15,7 @@ class RForecast(RPackage):
|
||||
|
||||
cran = "forecast"
|
||||
|
||||
version("8.18", sha256="5920baa8d9d81988000d0e2edcea61c05126b5cb923cb5921a6fcd7bc312d8dd")
|
||||
version("8.16", sha256="9f01eb895a883a7e1e23725b167b46edc1b0b152fd4120278aaa5f7b2621767f")
|
||||
version("8.15", sha256="c73aabed083095b457ed875c240716686fbd41d1cbafa116b7b890a54b919174")
|
||||
version("8.13", sha256="490e3a2beb71c238dd26e7afa0b33394b9906dd0dc54712d4808894d5aa1386f")
|
||||
@ -23,8 +24,10 @@ class RForecast(RPackage):
|
||||
version("8.2", sha256="eb3fab64ed139d068e7d026cd3880f1b623f4153a832fb71845488fa75e8b812")
|
||||
|
||||
depends_on("r@3.0.2:", type=("build", "run"))
|
||||
depends_on("r@3.5.0:", type=("build", "run"), when="@8.18:")
|
||||
depends_on("r-colorspace", type=("build", "run"))
|
||||
depends_on("r-fracdiff", type=("build", "run"))
|
||||
depends_on("r-generics@0.1.2:", type=("build", "run"), when="@8.18:")
|
||||
depends_on("r-ggplot2@2.2.1:", type=("build", "run"))
|
||||
depends_on("r-lmtest", type=("build", "run"))
|
||||
depends_on("r-magrittr", type=("build", "run"))
|
||||
|
@ -16,6 +16,7 @@ class RForeign(RPackage):
|
||||
|
||||
cran = "foreign"
|
||||
|
||||
version("0.8-83", sha256="87eae73f780b6bbcf0a45b3e21d1c87be0404aa2d5b455df92ab45516030721b")
|
||||
version("0.8-82", sha256="f8ed0684d59bec7f3a39cde1aa5ec7b3e6e36aaecacb28120c9c54f7b13f80fb")
|
||||
version("0.8-81", sha256="1ae8f9f18f2a037697fa1a9060417ff255c71764f0145080b2bd23ba8262992c")
|
||||
version("0.8-72", sha256="439c17c9cd387e180b1bb640efff3ed1696b1016d0f7b3b3b884e89884488c88")
|
||||
|
@ -22,6 +22,8 @@ class RFpcompare(RPackage):
|
||||
|
||||
maintainers = ["dorton21"]
|
||||
|
||||
version("0.2.4", sha256="7189842a123e67b2d5d4b1dd72901959b821ec086d61cabc1dad9eae23f52570")
|
||||
version("0.2.3", sha256="f89be3568544a3a44e4f01b5050ed03705805308ec1aa4add9a5e1b5b328dbdf")
|
||||
|
||||
depends_on("r@3.3:", type=("build", "run"))
|
||||
depends_on("r@3.4:", type=("build", "run"), when="@0.2.4:")
|
||||
|
@ -19,6 +19,7 @@ class RFutureApply(RPackage):
|
||||
|
||||
cran = "future.apply"
|
||||
|
||||
version("1.9.1", sha256="4f22ccd5caa62077581c6adc4d35543451e547220270aed3f1abcbaa6a202133")
|
||||
version("1.9.0", sha256="6166c1c5ce30b9745059c3d30c8110f7c1d51871e58aa414f195cb1f91c467f5")
|
||||
version("1.8.1", sha256="0d5bc3cb0289665bb27ae4ccad51fcc5ebf6dca46872b0a4e57790b9dc0aa6c7")
|
||||
version("1.7.0", sha256="2ffa6adb55f239918ce9679b7eac8dcc4bf2e6bed35c9cbedf4bf90d906345db")
|
||||
@ -29,6 +30,8 @@ class RFutureApply(RPackage):
|
||||
depends_on("r-future@1.17.0:", type=("build", "run"), when="@1.7.0:")
|
||||
depends_on("r-future@1.21.0:", type=("build", "run"), when="@1.8.1:")
|
||||
depends_on("r-future@1.22.1:", type=("build", "run"), when="@1.9.0:")
|
||||
depends_on("r-future@1.27.0:", type=("build", "run"), when="@1.9.1:")
|
||||
depends_on("r-globals@0.12.4:", type=("build", "run"))
|
||||
depends_on("r-globals@0.12.5:", type=("build", "run"), when="@1.7.0:")
|
||||
depends_on("r-globals@0.14.0:", type=("build", "run"), when="@1.8.1:")
|
||||
depends_on("r-globals@0.16.1:", type=("build", "run"), when="@1.9.1:")
|
||||
|
@ -26,6 +26,7 @@ class RFuture(RPackage):
|
||||
|
||||
cran = "future"
|
||||
|
||||
version("1.28.0", sha256="6fdda66acd9a255e5baa70ff5dacd3c57ab2ecc2d87fd6abeebdfb939c051bf6")
|
||||
version("1.26.1", sha256="a35c0bdae86265ebe86119231802b6fbf7b1d533b57cb423d8483fbe779390d5")
|
||||
version("1.24.0", sha256="7b8b212ba0e9d6303bfc15c512e6cf9b5db3a7aa0b2462d2e15cdd84dd09b276")
|
||||
version("1.23.0", sha256="d869c80e837c0937a414b8050deff081aefeac586b796f3d634d64f0f4fdb8f8")
|
||||
@ -38,8 +39,10 @@ class RFuture(RPackage):
|
||||
depends_on("r-globals@0.13.1:", type=("build", "run"), when="@1.21.0:")
|
||||
depends_on("r-globals@0.14.0:", type=("build", "run"), when="@1.22.0:")
|
||||
depends_on("r-globals@0.15.0:", type=("build", "run"), when="@1.26.1:")
|
||||
depends_on("r-globals@0.16.0:", type=("build", "run"), when="@1.28.0:")
|
||||
depends_on("r-listenv@0.7.0:", type=("build", "run"))
|
||||
depends_on("r-listenv@0.8.0:", type=("build", "run"), when="@1.21.0:")
|
||||
depends_on("r-parallelly@1.21.0:", type=("build", "run"), when="@1.21.0:")
|
||||
depends_on("r-parallelly@1.26.1:", type=("build", "run"), when="@1.22.0:")
|
||||
depends_on("r-parallelly@1.30.0:", type=("build", "run"), when="@1.24.0:")
|
||||
depends_on("r-parallelly@1.32.1:", type=("build", "run"), when="@1.28.0:")
|
||||
|
@ -21,6 +21,7 @@ class RGamlssDist(RPackage):
|
||||
|
||||
cran = "gamlss.dist"
|
||||
|
||||
version("6.0-5", sha256="0f88afdfb148de79d3ece66bf4631ea0dc3ecf1188680802abffd6bc7139a20e")
|
||||
version("6.0-3", sha256="ec90ea83cd81b894c73f987f69814077697be33abf0708e0f3e2a39d02c912bf")
|
||||
version("6.0-1", sha256="b563b4de6bcedcfa4f8d29198a47004e38fd2de6e0509c788015d4e3feb18154")
|
||||
version("5.1-7", sha256="9871c38c893a8df7874c533351858dfe4e7587c71021dbbf88c0c76ff3c0ef5b")
|
||||
|
@ -16,9 +16,11 @@ class RGargle(RPackage):
|
||||
|
||||
cran = "gargle"
|
||||
|
||||
version("1.2.1", sha256="f367e2c82f403167ae84058303a4fb0402664558a2abf0b495474a7ef1a2f020")
|
||||
version("1.2.0", sha256="4d46ca2933f19429ca5a2cfe47b4130a75c7cd9931c7758ade55bac0c091d73b")
|
||||
|
||||
depends_on("r@3.3:", type=("build", "run"))
|
||||
depends_on("r@3.5:", type=("build", "run"), when="@1.2.1:")
|
||||
depends_on("r-cli@3.0.0:", type=("build", "run"))
|
||||
depends_on("r-fs@1.3.1:", type=("build", "run"))
|
||||
depends_on("r-glue@1.3.0:", type=("build", "run"))
|
||||
@ -26,5 +28,6 @@ class RGargle(RPackage):
|
||||
depends_on("r-jsonlite", type=("build", "run"))
|
||||
depends_on("r-rappdirs", type=("build", "run"))
|
||||
depends_on("r-rlang@0.4.9:", type=("build", "run"))
|
||||
depends_on("r-rlang@1.0.0:", type=("build", "run"), when="@1.2.1:")
|
||||
depends_on("r-rstudioapi", type=("build", "run"))
|
||||
depends_on("r-withr", type=("build", "run"))
|
||||
|
@ -18,6 +18,7 @@ class RGbm(RPackage):
|
||||
|
||||
cran = "gbm"
|
||||
|
||||
version("2.1.8.1", sha256="8d2456124552658ee9500707c4e9992cf42cb88705008c32ea258efb4f2be80b")
|
||||
version("2.1.8", sha256="7d5de3b980b8f23275e86ac9bed48a497c9aa53c58e407dfd676309f38272ec1")
|
||||
version("2.1.5", sha256="06fbde10639dfa886554379b40a7402d1f1236a9152eca517e97738895a4466f")
|
||||
version("2.1.3", sha256="eaf24be931d762f1ccca4f90e15997719d01005f152160a3d20d858a0bbed92b")
|
||||
|
@ -15,6 +15,7 @@ class RGenerics(RPackage):
|
||||
|
||||
cran = "generics"
|
||||
|
||||
version("0.1.3", sha256="75046163bfa8b8a4f4214c1b689e796207f6447182f2e5062cf570302387d053")
|
||||
version("0.1.2", sha256="63eab37a9148f820ce2d67bda3dab6dedb9db6890baa5284949c39ab1b4c5898")
|
||||
version("0.1.1", sha256="a2478ebf1a0faa8855a152f4e747ad969a800597434196ed1f71975a9eb11912")
|
||||
version("0.1.0", sha256="ab71d1bdbb66c782364c61cede3c1186d6a94c03635f9af70d926e2c1ac88763")
|
||||
|
@ -21,6 +21,7 @@ class RGeometry(RPackage):
|
||||
|
||||
cran = "geometry"
|
||||
|
||||
version("0.4.6.1", sha256="52c87a43cdf414c08b8183441c44497039cba92a9cff719debf09ad8d5d7f472")
|
||||
version("0.4.6", sha256="910465a8c8043faca73bcc7c81c9249b9938677ee6649468003b438a6503f5d8")
|
||||
|
||||
depends_on("r@3.0.0:", type=("build", "run"))
|
||||
|
@ -16,6 +16,7 @@ class RGeomorph(RPackage):
|
||||
|
||||
cran = "geomorph"
|
||||
|
||||
version("4.0.4", sha256="dfded29070bc06bf1dc0d6fedaa16fea9f8eef76f0a7443a11f2835c328c6b0a")
|
||||
version("4.0.3", sha256="8fd77bedf2ee85f1e4aaac4b22253810d12dba0b79d78d67695d237b7184e263")
|
||||
version("4.0.1", sha256="9d54fba96dd8b8f2dcc8d0e4c427f6232bed1934da41f25084c16ec0b2c71117")
|
||||
version("3.3.2", sha256="5f1d17cb98c54e40c4bbc650f7ccb5cb26e8d63934f810644facc69e91c1b7b7")
|
||||
|
@ -15,6 +15,7 @@ class RGeor(RPackage):
|
||||
|
||||
cran = "geoR"
|
||||
|
||||
version("1.9-2", sha256="7ce3f5256a33a9de71b22a08caba634e77344889aac7d9eed02625a90254b9d9")
|
||||
version("1.8-1", sha256="990647804590b925a50f72897b24bbabd331cebef0be1696a60528b2f79d6fd3")
|
||||
version("1.7-5.2.1", sha256="3895e49c005a5745738d190ccaad43bb0aa49c74465d4d0b4dd88c5850ed63b9")
|
||||
|
||||
@ -24,3 +25,4 @@ class RGeor(RPackage):
|
||||
depends_on("r-sp", type=("build", "run"))
|
||||
depends_on("r-splancs", type=("build", "run"))
|
||||
depends_on("r-randomfields", type=("build", "run"))
|
||||
depends_on("r-randomfields", when="@:1.8-1")
|
||||
|
@ -17,6 +17,7 @@ class RGert(RPackage):
|
||||
|
||||
cran = "gert"
|
||||
|
||||
version("1.9.1", sha256="751d18760a08ae00b8de73dc3e564cf4e76b1f47c7179101320e1b70152e1fdd")
|
||||
version("1.6.0", sha256="8c440aeebabf1cb3b57124ec9280e0f46b2ab56f2bca07d72b5c7a7f4edc2964")
|
||||
version("1.5.0", sha256="9fc330893b0cb43360905fd204e674813e1906449a95dc4037fe8802bd74a2ae")
|
||||
version("1.0.2", sha256="36687ab98291d50a35752fcb2e734a926a6b845345c18d36e3f48823f68304d3")
|
||||
@ -24,6 +25,7 @@ class RGert(RPackage):
|
||||
depends_on("r-askpass", type=("build", "run"))
|
||||
depends_on("r-credentials@1.2.1:", type=("build", "run"))
|
||||
depends_on("r-openssl@1.4.1:", type=("build", "run"))
|
||||
depends_on("r-openssl@2.0.3:", type=("build", "run"), when="@1.9.1:")
|
||||
depends_on("r-rstudioapi@0.11:", type=("build", "run"))
|
||||
depends_on("r-sys", type=("build", "run"), when="@1.5.0:")
|
||||
depends_on("r-zip@2.1.0:", type=("build", "run"))
|
||||
|
@ -17,12 +17,14 @@ class RGgforce(RPackage):
|
||||
|
||||
cran = "ggforce"
|
||||
|
||||
version("0.4.1", sha256="b44219fb63c45fa003c64bca323452f16dcace635204bc0127d3244c0f451873")
|
||||
version("0.3.3", sha256="2a283bb409da6b96929863a926b153bcc59b2c6f00551805db1d1d43e5929f2f")
|
||||
version("0.3.2", sha256="4cce8acb60ce06af44c1c76bbacd7de129eed9b51ed6a85e03a9bf55b0eff4d2")
|
||||
version("0.3.1", sha256="a05271da9b226c12ae5fe6bc6eddb9ad7bfe19e1737e2bfcd6d7a89631332211")
|
||||
|
||||
depends_on("r@3.3.0:", type=("build", "run"))
|
||||
depends_on("r-ggplot2@3.0.0:", type=("build", "run"))
|
||||
depends_on("r-ggplot2@3.3.6:", type=("build", "run"), when="@0.4.1:")
|
||||
depends_on("r-rcpp@0.12.2:", type=("build", "run"))
|
||||
depends_on("r-scales", type=("build", "run"))
|
||||
depends_on("r-mass", type=("build", "run"))
|
||||
@ -32,4 +34,8 @@ class RGgforce(RPackage):
|
||||
depends_on("r-polyclip", type=("build", "run"))
|
||||
depends_on("r-tidyselect", type=("build", "run"))
|
||||
depends_on("r-withr", type=("build", "run"))
|
||||
depends_on("r-systemfonts", type=("build", "run"), when="@0.4.1:")
|
||||
depends_on("r-vctrs", type=("build", "run"), when="@0.4.1:")
|
||||
depends_on("r-cli", type=("build", "run"), when="@0.4.1:")
|
||||
depends_on("r-lifecycle", type=("build", "run"), when="@0.4.1:")
|
||||
depends_on("r-rcppeigen", type=("build", "run"))
|
||||
|
@ -14,6 +14,7 @@ class RGgfun(RPackage):
|
||||
|
||||
cran = "ggfun"
|
||||
|
||||
version("0.0.7", sha256="a83b5fb95f61e366f96d6d8e6b04dafff8e885e7c80c913614876b50ebb8e174")
|
||||
version("0.0.6", sha256="59989ed260fcc71cd95487cf3493113a2d8a47d273d9a2f3e5e842609620511b")
|
||||
version("0.0.5", sha256="b1e340a8932d2cffbbbf6070ce96c9356599e9955a2b6534fcb17e599c575783")
|
||||
version("0.0.4", sha256="5926365f9a90baf47320baf48c40f515ef570f9c767484adea5f04219964d21e")
|
||||
|
@ -17,6 +17,7 @@ class RGgraph(RPackage):
|
||||
|
||||
cran = "ggraph"
|
||||
|
||||
version("2.0.6", sha256="7b0ac90d834a3ce5641b4bca159d59d09607ddaab592908361b75cffb648d40a")
|
||||
version("2.0.5", sha256="e36ad49dba92ee8652e18b1fb197be0ceb9f0a2f8faee2194453a62578449654")
|
||||
version("2.0.4", sha256="9c6092d9a98b7b116f9c765ba44de7a34ceff2f584e776ef7a2082ad1d717dc8")
|
||||
version("2.0.0", sha256="4307efe85bfc6a0496797f6b86d6b174ba196538c51b1a6b6af55de0d4e04762")
|
||||
|
@ -15,6 +15,7 @@ class RGgridges(RPackage):
|
||||
|
||||
cran = "ggridges"
|
||||
|
||||
version("0.5.4", sha256="2bf71c2034804cec637e6748dc51d8cadad01d3ea4d14ace754327f082e8d851")
|
||||
version("0.5.3", sha256="f5eafab17f2d4a8a2a83821ad3e96ae7c26b62bbce9de414484c657383c7b42e")
|
||||
version("0.5.1", sha256="01f87cdcdf2052ed9c078d9352465cdeda920a41e2ca55bc154c1574fc651c36")
|
||||
version("0.5.0", sha256="124bc84044e56728fa965682f8232fc868f2af7d3eb7276f6b0df53be8d2dbfe")
|
||||
@ -24,6 +25,7 @@ class RGgridges(RPackage):
|
||||
depends_on("r@3.2:", type=("build", "run"))
|
||||
depends_on("r-ggplot2@2.2.0:", type=("build", "run"))
|
||||
depends_on("r-ggplot2@3.0.0:", type=("build", "run"), when="@0.5.3:")
|
||||
depends_on("r-plyr@1.8.0:", type=("build", "run"))
|
||||
depends_on("r-scales@0.4.1:", type=("build", "run"))
|
||||
depends_on("r-withr@2.1.1:", type=("build", "run"), when="@0.5.0:")
|
||||
depends_on("r-plyr@1.8.0:", type=("build", "run"))
|
||||
depends_on("r-plyr", when="@:0.5.3")
|
||||
|
@ -13,13 +13,17 @@ class RGh(RPackage):
|
||||
|
||||
cran = "gh"
|
||||
|
||||
version("1.3.1", sha256="fbaea2abdeceb03d28839fd0e58c2eea01092f9ef92dcc044718ef0d298612ef")
|
||||
version("1.3.0", sha256="a44039054e8ca56496f2d9c7a10cdadf4a7383bc91086e768ba7e7f1fbcaed1c")
|
||||
version("1.2.0", sha256="2988440ed2ba4b241c8ffbafbfdad29493574980a9aeba210521dadda91f7eff")
|
||||
version("1.1.0", sha256="de9faf383c3fe5e87a75391d82cf71b1331b3c80cd00c4203146a303825d89ad")
|
||||
version("1.0.1", sha256="f3c02b16637ae390c3599265852d94b3de3ef585818b260d00e7812595b391d2")
|
||||
|
||||
depends_on("r@3.4:", type=("build", "run"), when="@1.3.1:")
|
||||
|
||||
depends_on("r-cli", type=("build", "run"), when="@1.1.0:")
|
||||
depends_on("r-cli@2.0.1:", type=("build", "run"), when="@1.2.0:")
|
||||
depends_on("r-cli@3.0.1:", type=("build", "run"), when="@1.3.1:")
|
||||
depends_on("r-gitcreds", type=("build", "run"), when="@1.2.0:")
|
||||
depends_on("r-httr", type=("build", "run"))
|
||||
depends_on("r-httr@1.2:", type=("build", "run"), when="@1.1.0:")
|
||||
|
@ -16,6 +16,9 @@ class RGitcreds(RPackage):
|
||||
|
||||
cran = "gitcreds"
|
||||
|
||||
version("0.1.2", sha256="41c6abcca5635062b123ffb5af2794770eca5ebd97b05c5a64b24fa1c803c75d")
|
||||
version("0.1.1", sha256="b14aaf4e910a9d2d6c65c93e645f0b0159c00898e669f917f83c03dfedb1dfea")
|
||||
|
||||
depends_on("r@3.4:", type=("build", "run"), when="@0.1.2:")
|
||||
|
||||
depends_on("git", type="run")
|
||||
|
@ -17,6 +17,7 @@ class RGlobals(RPackage):
|
||||
|
||||
cran = "globals"
|
||||
|
||||
version("0.16.1", sha256="f7f63a575a3dd518c6afeabb4116bd26692a2a250df113059bc1a5b4711a1e95")
|
||||
version("0.15.0", sha256="f83689a420590b0d62b049c40a944c1c8c7202b3f1cc12102712c63104e99496")
|
||||
version("0.14.0", sha256="203dbccb829ca9cc6aedb6f5e79cb126ea31f8dd379dff9111ec66e3628c32f3")
|
||||
version("0.12.4", sha256="7985356ad75afa1f795f8267a20dee847020c0207252dc075c614cef55d8fe6b")
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user