MAGIC icon indicating copy to clipboard operation
MAGIC copied to clipboard

Rmagic was removed from the CRAN repository

Open kuang-da opened this issue 3 years ago • 3 comments

Describe the bug

Hello, based on the following URL, it seems Package ‘Rmagic’ was removed from the CRAN repository? Are we considering reuploading it?

https://cran.r-project.org/web/packages/Rmagic/index.html

kuang-da avatar Jan 30 '23 04:01 kuang-da

Despite being removed, the package can still be installed from an archived version at https://cran.r-project.org/src/contrib/Archive/Rmagic/

To install the latest version:

  1. Download the archived package from https://cran.r-project.org/src/contrib/Archive/Rmagic/Rmagic_2.0.3.tar.gz
  2. Install in R: install.packages("~/Downloads/Rmagic_2.0.3.tar.gz")

george-hall-ucl avatar Mar 08 '23 16:03 george-hall-ucl

Any prevision on when is it going to be back to cran?

marencc avatar Mar 17 '23 13:03 marencc

Here is a quick way to install from the CRAN archive from within R:

install.packages("https://cran.r-project.org/src/contrib/Archive/Rmagic/Rmagic_2.0.3.tar.gz", type = "source", repos = NULL)

FerrenaAlexander avatar Feb 27 '24 01:02 FerrenaAlexander