On Friday, 3 July 2020 18.36.17 WEST Iñaki Ucar wrote:
> Nice! What if we create a group "R" on Pagure and a repo
> "fedora-scripts" or something like that?

I would like to improve the scripts but FWIW here it comes a rough version of 
the script I used.

The python script loads the csv file and constructs a directed graph and it 
starts to remove the leave packages (pruning or trimming if you take a 
gardening analogy).

The csv files has the dependency of the packages. It is always possible to go 
to the packages that remain after the first stage and using a bootstrap mode 
to remove most of the dependencies and then to run the code again.

This procedure was enough to process all the packages.
-- 
José Abílio
# -*- coding: utf-8 -*-
"""
Process csv files removing several files outside of R modules:
    R-devel
    non R related packages
"""

# from pprint import pprint
import networkx as nx

RCORE = ['R', 'R-core', 'R-java', 'R-KernSmooth',
         'R-MASS', 'R-Matrix', 'R-base', 'R-boot',
         'R-class', 'R-cluster', 'R-codetools',
         'R-compiler', 'R-datasets', 'R-foreign',
         'R-grDevices', 'R-graphics', 'R-grid',
         'R-lattice', 'R-methods', 'R-mgcv', 'R-nlme',
         'R-nnet', 'R-parallel', 'R-rpart', 'R-spatial',
         'R-splines', 'R-stats', 'R-stats4', 'R-survival',
         'R-tcltk', 'R-tools', 'R-translations', 'R-utils',
         'R-rpm-macros']

depnet = {};
DG = nx.DiGraph()
for line in open('r-packages-dependencies.csv'):
    line = line[:-1];
    fields = line.split(',');
    
    package = fields[0];
    DG.add_node(package)

    pkgd = []
    for pkg in fields[1:]:
        if not pkg.startswith('R-'):
            continue
        pkg = pkg.split(' ')[0].replace('-devel', '')
        if pkg in RCORE:
            continue
        pkgd.append(pkg)
        DG.add_edge(package, pkg)
    depnet[package]=pkgd

# pprint(depnet)

# Try to identify batches of builds

iter = 0
while True:
    batch = [x for x in DG if len(DG[x]) == 0]
    if len(batch) == 0: break

    iter += 1
    print(f'# round {iter}')
    for x in sorted(batch):
        print(x)
        DG.remove_node(x)

if len(DG):
    print("#Unresolved dependencies: {}".format(len(DG)))
    print(list(DG))
    
    print()
    print("#Number of cycles {}".format(len(list(nx.simple_cycles(DG)))))
    
    print("Cycles:")
    print(list(nx.simple_cycles(DG)))
R-AUC,R-devel,tex(latex)
R-AnnotationDbi,R-Biobase >= 1.17.0,R-BiocGenerics >= 0.29.2,R-DBI,R-IRanges-devel,R-RSQLite,R-S4Vectors-devel >= 0.9.25,R-devel >= 2.7.0,R-methods,R-stats4,R-utils,tetex-latex
R-AsioHeaders,R-devel,tex(latex)
R-BH,R-devel >= 3.0.0,tetex-latex
R-BSgenome,R-BiocGenerics >= 0.13.8,R-Biostrings-devel >= 2.47.6,R-GenomeInfoDb >= 1.23.9,R-GenomicRanges >= 1.31.10,R-IRanges-devel >= 2.13.16,R-Rsamtools,R-S4Vectors-devel >= 0.17.28,R-XVector-devel,R-devel >= 3.0.0,R-matrixStats,R-methods,R-rtracklayer >= 1.39.7,R-stats,R-utils,tex(latex)
R-Bessel,R-Rmpfr,R-devel,R-gsl,R-methods,R-sfsmisc,tex(latex)
R-Biobase,R-BiocGenerics >= 0.27.1,R-devel >= 3.4.0,R-methods,R-tkWidgets,R-utils,tex(latex)
R-BiocFileCache,R-DBI,R-RSQLite,R-curl,R-dbplyr >= 1.0.0,R-devel >= 3.4.0,R-dplyr,R-httr,R-knitr,R-methods,R-rappdirs,R-rmarkdown,R-rtracklayer,R-stats,R-testthat,R-utils,tetex-latex
R-BiocGenerics,R-devel >= 3.6.0,R-graphics,R-methods,R-parallel,R-stats,R-utils,tex(latex)
R-BiocParallel,R-BH-devel,R-devel >= 3.0.0,R-futile.logger,R-methods,R-parallel,R-snow,R-stats,R-utils,autoconf,automake,gcc,gcc-c++
R-Biostrings,R-Biobase,R-BiocGenerics >= 0.31.5,R-IRanges-devel >= 2.21.6,R-S4Vectors-devel >= 0.25.14,R-XVector-devel >= 0.27.2,R-crayon,R-devel >= 3.5.0,R-grDevices,R-graphics,R-methods,R-stats,R-utils,tex(latex)
R-BufferedMatrix,R-devel >= 3.4.0,R-methods,tex(latex)
R-Cairo,R-devel,R-grDevices,R-graphics,R-png,cairo-devel >= 1.2,libXt-devel,tex(latex)
R-DBI,R-devel >= 3.4.0,R-methods,texlive-latex
R-DelayedArray,R-BiocGenerics >= 0.31.5,R-BiocParallel,R-IRanges-devel >= 2.17.3,R-S4Vectors-devel >= 0.25.15,R-devel >= 3.4.0,R-matrixStats,R-methods,R-stats4,tetex-latex
R-DynDoc,R-devel >= 3.0.0,R-methods,R-utils,tex(latex)
R-FMStable,R-devel,tex(latex)
R-GenomeInfoDb,R-BiocGenerics >= 0.13.8,R-GenomeInfoDbData,R-IRanges-devel >= 2.13.12,R-RCurl,R-S4Vectors-devel >= 0.25.12,R-devel >= 3.1.0,R-methods,R-stats,R-stats4,R-utils
R-GenomeInfoDbData,R-devel >= 3.5.0,tetex-latex
R-GenomicAlignments,R-BiocGenerics >= 0.15.3,R-BiocParallel,R-Biostrings >= 2.47.6,R-GenomeInfoDb >= 1.13.1,R-GenomicRanges >= 1.37.2,R-IRanges-devel >= 2.15.12,R-Rsamtools-devel >= 1.31.2,R-S4Vectors-devel >= 0.23.19,R-SummarizedExperiment >= 1.9.13,R-devel >= 3.5.0,R-methods,R-stats,R-utils,tetex-latex
R-GenomicRanges,R >= 3.4.0,R-BiocGenerics >= 0.25.3,R-GenomeInfoDb >= 1.15.2,R-IRanges-devel >= 2.21.6,R-S4Vectors-devel >= 0.25.14,R-XVector-devel >= 0.27.2,R-devel,R-methods,R-stats,R-stats4,R-utils,tex(latex)
R-IRanges,R-BiocGenerics >= 0.25.3,R-RUnit,R-S4Vectors-devel >= 0.25.14,R-devel >= 3.5.0,R-methods,R-stats,R-stats4,R-utils,tex(latex)
R-IRdisplay,R-devel,R-methods,R-repr >= 0.18,R-testthat,R-withr,tex(latex)
R-IRkernel,R-IRdisplay >= 0.3.0.9999,R-crayon,R-devel,R-digest,R-evaluate >= 0.10,R-jsonlite >= 0.9.6,R-methods,R-pbdZMQ >= 0.2.1,R-repr >= 0.4.99,R-roxygen2,R-testthat,R-uuid,python3dist(jupyter-kernel-test),python3dist(ndjson-testrunner),tex(latex)
R-NISTunits,R-devel,tex(latex)
R-R.cache,R-R.methodsS3 >= 1.7.1,R-R.oo >= 1.23.0,R-R.utils >= 2.8.0,R-devel,R-digest >= 0.6.13,R-utils,tex(latex)
R-R.devices,R-Cairo >= 1.5.9,R-R.methodsS3 >= 1.7.1,R-R.oo >= 1.21.0,R-R.utils >= 2.6.0,R-base64enc >= 0.1.2,R-devel,R-digest >= 0.6.13,R-grDevices,tex(latex)
R-R.methodsS3,R-codetools,R-devel,R-utils,tex(latex)
R-R.oo,R-R.methodsS3 >= 1.7.1,R-devel,R-methods,R-tools,R-utils,tex(latex)
R-R.rsp,R-R.cache >= 0.13.0,R-R.devices >= 2.15.1,R-R.methodsS3 >= 1.7.1,R-R.oo >= 1.22.0,R-R.utils,R-ascii >= 2.1,R-base64enc >= 0.1.2,R-devel,R-digest >= 0.6.13,R-knitr >= 1.9,R-markdown >= 0.8,R-methods,R-stats,R-tcltk,R-tools,R-utils,tex(latex)
R-R.utils,R-R.methodsS3 >= 1.7.1,R-R.oo >= 1.23.0,R-devel,R-digest >= 0.6.10,R-methods,R-tools,R-utils,tex(latex)
R-R6,R-devel >= 3.0.0,R-testthat,tetex-latex
R-RColorBrewer,R-devel,tex(latex)
R-RCurl,R-bitops,R-devel >= 3.4.0,R-methods,libcurl-devel,make
R-RInside,R-Rcpp-devel,R-core-devel,R-rpm-macros
R-RM2,R-devel >= 3.0.0,R-msm,R-mvtnorm,tetex-latex
R-RODBC,R-devel >= 3.0.0,tetex-latex,texinfo-tex,unixODBC-devel
R-RSQLite,R-BH-devel,R-DBI >= 1.0.0,R-Rcpp-devel >= 0.12.7,R-bit64,R-blob >= 1.2.0,R-devel >= 3.4.0,R-memoise,R-methods,R-pkgconfig,R-plogr-devel >= 0.2.0,sqlite-devel,tetex-latex
R-RUnit,R-XML >= 3.1.0,R-devel,R-graphics >= 2.5.0,R-methods >= 2.5.0,R-utils >= 2.5.0,tex(latex)
R-Rcompression,R-devel >= 3.4.0,autoconf,automake,bzip2-devel,libtool,zlib-devel
R-Rcpp,R-core-devel,R-inline,R-rpm-macros,dos2unix,gcc-c++
R-RcppCCTZ,R-Rcpp-devel >= 0.11.0,R-devel,R-tinytest,cctz-devel,tex(latex)
R-RhpcBLASctl,R-devel,tex(latex)
R-Rhtslib,R-devel >= 3.0.0,bzip2-devel,libcurl-devel,xz-devel,zlib-devel
R-Rmpfr,R-Bessel,R-MASS,R-Matrix,R-devel,R-gmp >= 0.5.8,R-methods,R-polynom,R-sfsmisc >= 1.0.20,R-stats,R-utils,gmp-devel >= 4.2.3,mpfr-devel >= 3.0.0,tex(hanging.sty),tex(latex)
R-Rsamtools,R-BiocGenerics >= 0.25.1,R-BiocParallel,R-Biostrings-devel >= 2.47.6,R-GenomeInfoDb >= 1.1.3,R-GenomicRanges >= 1.31.8,R-IRanges-devel >= 2.13.12,R-Rhtslib-devel >= 1.17.7,R-S4Vectors-devel >= 0.17.25,R-XVector-devel >= 0.19.7,R-bitops,R-devel >= 3.0.0,R-methods,R-stats,R-utils,libcurl-devel,tex(latex)
R-Rsolid,R-devel >= 3.4.0,hdf5-devel,tex(latex)
R-S4Vectors,R-BiocGenerics >= 0.31.1,R-devel >= 3.4.0,R-methods,R-stats,R-stats4,R-utils,tex(latex)
R-SummarizedExperiment,R-Biobase,R-BiocGenerics >= 0.15.3,R-DelayedArray >= 0.3.20,R-GenomeInfoDb >= 1.13.1,R-GenomicRanges >= 1.33.6,R-IRanges-devel >= 2.21.6,R-Matrix,R-S4Vectors-devel >= 0.25.14,R-devel >= 3.2.0,R-methods,R-stats,R-tools,R-utils,texlive-latex
R-TH-data,R-devel,R-dplyr,R-gdata,R-plyr,tex(latex),tex(upquote.sty)
R-V8,R-Rcpp-devel >= 0.12.12,R-curl >= 1.0,R-devel,R-jsonlite >= 1.0,R-knitr,R-rmarkdown,R-testthat,R-utils,glyphicons-halflings-fonts,js-underscore,tex(latex),v8-devel,web-assets-devel
R-XML,R-RCurl,R-bitops,R-devel,R-methods,R-utils,libxml2-devel,tex(latex)
R-XVector,R-BiocGenerics >= 0.19.2,R-IRanges-devel >= 2.21.6,R-S4Vectors-devel >= 0.25.14,R-devel >= 3.4.0,R-methods,R-utils,tex(latex)
R-abind,R-devel >= 3.0.0,R-methods,R-utils
R-acepack,R-devel >= 3.4.0,R-testthat,gcc-gfortran
R-affyio,R-devel >= 3.4.0,R-methods,tex(latex),zlib-devel
R-ape,R-Rcpp-devel >= 0.12.0,R-devel,R-expm,R-gee,R-graphics,R-igraph,R-lattice,R-methods,R-nlme,R-parallel,R-stats,R-tools,R-utils,tex(latex)
R-argon2,R-devel,libargon2-devel >= 20161029,libb2-devel,tex(latex)
R-ascii,R-devel,R-methods,R-survival,R-utils,tex(latex)
R-askpass,R-devel,R-sys >= 2.1,R-testthat,tex(latex)
R-assertthat,R-devel,R-tools,tex(latex)
R-backports,R-devel,R-utils,tex(latex)
R-base64enc,R-devel,tex(latex)
R-biglm,R-DBI,R-RODBC,R-RSQLite,R-devel >= 3.4.0,tetex-latex
R-bindr,R-devel,R-testthat,tex(latex)
R-bindrcpp,R-Rcpp-devel >= 0.12.16,R-bindr >= 0.1.1,R-devel,R-plogr-devel,R-testthat,tex(latex)
R-biomaRt,R-AnnotationDbi,R-BiocFileCache,R-XML,R-devel >= 3.0.0,R-httr,R-openssl,R-progress,R-rappdirs,R-stringr,R-utils
R-bit,R-devel,tex(latex)
R-bit64,R-bit >= 1.1.12,R-devel,R-methods,R-stats,R-utils,tex(latex)
R-bitops,R-devel >= 3.4.0,tex(latex)
R-blob,R-devel >= 3.0.0,R-methods,R-prettyunits,R-rlang,R-vctrs >= 0.2.0,texlive-latex
R-brew,R-devel,tex(latex)
R-broom,R-AUC,R-MASS,R-Matrix,R-backports,R-biglm,R-boot,R-car,R-coda,R-devel,R-dplyr,R-gamlss.dist,R-generics >= 0.0.2,R-ggplot2,R-knitr,R-lmodel2,R-lmtest,R-maps,R-methods,R-mgcv,R-multcomp,R-nlme,R-nnet,R-orcutt >= 2.2,R-plyr,R-purrr,R-reshape2,R-rgeos,R-rmarkdown,R-sp,R-statnet.common,R-stringr,R-survival,R-testthat,R-tibble >= 3.0.0,R-tidyr,R-zoo,tex(latex)
R-caTools,R-MASS,R-bitops,R-devel >= 3.6.0,R-rpart,tex(latex)
R-callr,R-R6,R-devel,R-processx >= 3.4.0,R-utils,tex(latex)
R-car,R-devel,tex(latex)
R-cellranger,R-devel,R-knitr,R-rematch,R-rmarkdown,R-testthat >= 1.0.0,R-tibble,tex(latex)
R-chron,R-devel,R-graphics,R-stats,tex(latex)
R-cli,R-assertthat,R-crayon >= 1.3.4,R-devel,R-fansi,R-glue,R-methods,R-utils,tex(latex)
R-cliapp,R-R6,R-callr,R-cli,R-crayon,R-devel,R-fansi,R-glue >= 1.3.0,R-prettycode,R-progress >= 1.2.0,R-rstudioapi,R-selectr,R-testthat,R-utils,R-withr,R-xml2,tex(latex)
R-clipr,R-devel,R-knitr,R-rmarkdown,R-rstudioapi >= 0.5,R-testthat >= 2.0.0,R-utils,tex(latex),xorg-x11-server-Xvfb,xsel
R-clisymbols,R-devel,R-testthat,tex(latex)
R-coda,R-devel,R-lattice,tex(latex)
R-colorspace,R-devel,R-grDevices,R-graphics,R-methods,R-stats,tex(latex)
R-combinat,R-devel >= 3.0.0,tex(latex)
R-commonmark,R-devel,R-testthat,R-xml2,tex(latex)
R-corpus,R-Matrix,R-devel,R-knitr,R-stats,R-testthat,R-utf8 >= 1.1.0,tex(latex)
R-crayon,R-devel >= 3.0.0,R-grDevices,R-methods,R-utils,tetex-latex
R-curl,R-devel,pkgconfig(libcurl),tex(latex)
R-cyclocomp,R-callr,R-crayon,R-desc,R-devel,R-remotes,R-testthat,R-withr,tex(latex)
R-data.table,R-R.utils,R-bit64,R-curl,R-devel,R-knitr,R-methods,R-yaml,R-zoo,tex(latex)
R-date,R-devel,R-graphics,tex(latex)
R-dbplyr,R-DBI >= 1.0.0,R-R6 >= 2.2.2,R-RSQLite >= 2.1.0,R-assertthat >= 0.2.0,R-bit64,R-devel,R-dplyr >= 0.8.0,R-glue >= 1.2.0,R-knitr,R-lifecycle,R-methods,R-nycflights13,R-purrr >= 0.2.5,R-rlang >= 0.2.0,R-rmarkdown,R-testthat >= 2.0.0,R-tibble >= 1.4.2,R-tidyselect >= 0.2.4,R-utils,tex(latex)
R-debugme,R-R6,R-crayon,R-devel,R-grDevices,R-mockery,R-testthat,R-withr,tex(latex)
R-deldir,R-devel,R-grDevices,R-graphics,R-polyclip,tex(latex)
R-desc,R-R6,R-assertthat,R-crayon,R-devel,R-rprojroot,R-utils,tex(latex)
R-devtools,R-MASS,R-Rcpp >= 0.10.0,R-bitops,R-callr,R-cli,R-crayon,R-curl >= 0.9,R-devel,R-digest,R-evaluate,R-foghorn >= 1.1.0,R-git2r >= 0.23.0,R-gmailr > 0.7.0,R-httr >= 0.4,R-jsonlite,R-knitr,R-lintr >= 0.2.1,R-memoise >= 1.0.0,R-mockery,R-pingr,R-pkgbuild >= 1.0.3,R-pkgdown,R-pkgload >= 1.0.2,R-rcmdcheck >= 1.3.3,R-remotes >= 2.1.0,R-rhub >= 1.0.2,R-rmarkdown,R-roxygen2 >= 6.1.1,R-rstudioapi >= 0.7,R-rversions,R-sessioninfo >= 1.1.1,R-spelling >= 1.1,R-stats,R-testthat >= 2.1.1,R-tools,R-usethis >= 1.5.0,R-utils,R-whisker,R-withr,tex(latex)
R-dichromat,R-devel,R-stats,tex(latex)
R-diffobj,R-crayon >= 1.3.2,R-devel,R-knitr,R-methods,R-rmarkdown,R-stats,R-testthat,R-tools,R-utils,tex(latex)
R-digest,R-devel >= 3.4.0,tetex-latex
R-disposables,R-devel,R-methods,R-testthat,R-utils,tex(latex)
R-doParallel,R-RUnit,R-devel,R-foreach >= 1.2.0,R-iterators >= 1.0.0,R-mlbench,R-parallel,R-rpart,R-utils,tex(latex)
R-dplyr,R-BH-devel,R-DBI,R-MASS,R-R6,R-RSQLite,R-Rcpp-devel >= 1.0.1,R-assertthat >= 0.2.0,R-bit64,R-callr,R-crayon >= 1.3.4,R-devel,R-ellipsis,R-glue >= 1.3.0,R-hms,R-knitr,R-lubridate,R-magrittr >= 1.5,R-methods,R-mgcv,R-microbenchmark,R-pkgconfig,R-plogr-devel >= 0.2.0,R-purrr,R-readr,R-rlang >= 0.4.0,R-rmarkdown,R-testthat,R-tibble >= 2.0.0,R-tidyselect >= 0.2.5,R-utils,R-withr,tex(latex)
R-dtplyr,R-crayon,R-data.table >= 1.12.4,R-devel,R-dplyr >= 0.8.1,R-knitr,R-rlang,R-rmarkdown,R-testthat >= 2.1.0,R-tibble,R-tidyselect,tex(latex)
R-ellipsis,R-devel,R-rlang >= 0.3.0,tex(latex)
R-errors,R-devel >= 3.0.0,R-testthat
R-evaluate,R-devel,R-methods,tex(latex)
R-expm,R-Matrix,R-devel >= 3.4.0,R-methods,tetex-latex
R-fansi,R-devel,tex(latex)
R-farver,R-devel,R-testthat >= 2.0.1,tex(latex)
R-fastmap,R-devel,R-testthat >= 2.1.1,tex(latex)
R-fastmatch,R-devel,tex(latex)
R-filehash,R-devel,R-methods,tex(latex)
R-foghorn,R-clisymbols >= 1.0.0,R-crayon >= 1.3.2,R-curl >= 2.2,R-devel,R-dplyr,R-httr >= 1.2.1,R-jsonlite >= 1.5,R-knitr,R-progress,R-rmarkdown,R-rvest >= 0.3.2,R-testthat,R-tibble >= 1.2,R-xml2 >= 1.0.0,tex(latex)
R-fontBitstreamVera,R-devel,bitstream-vera-fonts-all,tex(latex)
R-fontLiberation,R-devel,liberation-mono-fonts >= 2.00.1,liberation-sans-fonts >= 2.00.1,liberation-serif-fonts >= 2.00.1,tex(latex)
R-forcats,R-devel,R-dplyr,R-ellipsis,R-ggplot2,R-knitr,R-magrittr,R-readr,R-rlang,R-rmarkdown,R-testthat,R-tibble,tex(latex)
R-foreach,R-codetools,R-devel,R-iterators,R-utils,tex(latex)
R-formatR,R-codetools,R-devel,R-knitr,R-rmarkdown,R-testit,tex(latex)
R-fortunes,R-devel,R-utils,tex(latex)
R-fs,R-Rcpp-devel,R-crayon,R-devel,R-knitr,R-methods,R-pillar >= 1.0.0,R-rmarkdown,R-spelling,R-testthat,R-tibble >= 1.1.0,R-withr,pkgconfig(libuv) >= 1.18.0,tex(latex)
R-fts,R-BH-devel,R-devel,R-stats,R-utils,R-zoo,tex(latex)
R-futile.logger,R-devel >= 3.0.0,R-futile.options,R-lambda.r >= 1.1.0,R-testthat,R-utils,tetex-latex
R-futile.options,R-devel >= 3.0.0,tetex-latex
R-future,R-R.rsp,R-RhpcBLASctl,R-devel,R-digest,R-globals >= 0.12.5,R-listenv >= 0.8.0,R-markdown,R-parallel,R-utils,tex(latex)
R-gamlss.dist,R-MASS,R-devel,R-grDevices,R-graphics,R-methods,R-stats,tex(latex)
R-gapminder,R-devel,R-dplyr,R-ggplot2,R-testthat,R-tibble,tex(latex)
R-gargle,R-devel,R-fs >= 1.3.1,R-glue >= 1.3.0,R-httr >= 1.4.0,R-jsonlite,R-knitr,R-rlang >= 0.4.2,R-rmarkdown,R-sodium,R-spelling,R-stats,R-testthat >= 2.3.2,R-withr,tex(latex)
R-gdata,R-RUnit,R-devel,R-gtools,R-methods,R-stats,R-utils,perl(lib),perl-interpreter,tex(latex)
R-gdtools,R-Rcpp-devel >= 0.12.12,R-devel,R-htmltools,R-systemfonts >= 0.1.1,R-testthat,cairo-devel,tex(latex)
R-gee,R-MASS,R-devel,R-stats,tex(latex)
R-geepack,R-MASS,R-broom,R-devel,R-magrittr,R-methods,tex(boxedminipage.sty),tex(latex)
R-generics,R-devel,R-methods,tex(latex)
R-getPass,R-argon2,R-devel,R-rstudioapi,R-utils,tex(latex)
R-ggplot2,R-MASS,R-devel,R-digest,R-dplyr,R-ggplot2movies,R-grDevices,R-grid,R-gtable >= 0.1.1,R-hexbin,R-knitr,R-lattice,R-lazyeval,R-mapproj,R-maps,R-mgcv,R-multcomp,R-munsell,R-nlme,R-reshape2,R-rgeos,R-rlang >= 0.3.0,R-rmarkdown,R-rpart,R-scales >= 0.5.0,R-stats,R-svglite >= 1.2.0.9001,R-testthat >= 0.11.0,R-tibble,R-viridisLite,R-withr >= 2.0.0,tex(latex)
R-ggplot2movies,R-devel,tex(latex)
R-gh,R-devel,R-httr,R-ini,R-jsonlite,R-pingr,R-testthat,tex(latex)
R-git2r,R-devel,R-getPass,R-graphics,R-utils,pkgconfig(libgit2) >= 0.26.0,tex(latex)
R-globals,R-codetools,R-devel,tex(latex)
R-glue,R-devel,R-methods,tex(latex)
R-gmailr,R-base64enc,R-crayon,R-devel,R-gargle,R-httr,R-jsonlite,R-knitr,R-lifecycle,R-magrittr,R-methods,R-mime,R-rematch2,R-rmarkdown,R-sodium,R-testthat,R-xml2,tex(latex)
R-gmp,R-devel,R-methods,gmp-devel >= 4.2.3,tex(latex)
R-gplots,R-KernSmooth,R-MASS,R-caTools,R-devel,R-gdata,R-grid,R-gtools,R-knitr,R-stats,tex(latex)
R-gsl,R-devel,gsl-devel >= 2.1,tex(latex)
R-gss,R-devel,R-stats,tex(latex)
R-gtable,R-devel,R-grid,tex(latex)
R-gtools,R-devel,R-methods,R-stats,R-utils,tex(latex)
R-haven,R-Rcpp-devel >= 0.11.4,R-cli,R-crayon,R-devel,R-forcats >= 0.2.0,R-fs,R-hms,R-knitr,R-methods,R-pillar >= 1.4.0,R-readr >= 0.1.0,R-rlang >= 0.4.0,R-rmarkdown,R-testthat,R-tibble,R-tidyselect,R-vctrs >= 0.3.0,tex(latex)
R-here,R-devel,R-rprojroot >= 1.2,tex(latex)
R-hexbin,R-Biobase,R-devel,R-grDevices,R-graphics,R-grid,R-knitr,R-lattice,R-methods,R-stats,R-utils,tex(latex)
R-highlight,R-core-devel,R-rpm-macros
R-highr,R-devel,R-testit,tex(latex)
R-hms,R-crayon,R-devel,R-lubridate,R-methods,R-pillar >= 1.1.0,R-pkgconfig,R-rlang,R-testthat,R-vctrs >= 0.2.1,tex(latex)
R-htmltools,R-Rcpp-devel,R-devel,R-digest,R-markdown,R-rlang,R-testthat,R-utils,R-withr,tex(latex)
R-htmlwidgets,R-devel,R-grDevices,R-htmltools >= 0.3,R-jsonlite >= 0.9.16,R-yaml,tex(latex)
R-httpuv,R-BH-devel,R-R6,R-Rcpp-devel >= 0.11.0,R-callr,R-curl,R-devel,R-later-devel >= 0.8.0,R-promises,R-testthat,R-utils,R-websocket,libuv-devel >= 1.37.0,tex(latex)
R-httr,R-R6,R-curl >= 3.0.0,R-devel,R-httpuv,R-jpeg,R-jsonlite,R-knitr,R-mime,R-openssl >= 0.8,R-png,R-rmarkdown,R-testthat >= 0.8.0,R-xml2,tex(latex)
R-hunspell,R-Rcpp-devel,R-devel,R-digest,R-knitr,R-pdftools,R-rmarkdown,R-testthat,tex(latex)
R-igraph,R-Matrix,R-devel,R-digest,R-grDevices,R-graphics,R-magrittr,R-methods,R-pkgconfig >= 2.0.0,R-stats,R-stats4,R-tcltk,R-testthat,R-utils,R-withr,glpk-devel,gmp-devel,libuuid-devel,libxml2-devel,openblas-devel,tex(latex)
R-import,R-devel,R-knitr,tex(latex)
R-ini,R-devel,R-testthat,tex(latex)
R-inline,R-core-devel,R-rpm-macros
R-iterators,R-devel,R-utils,tex(latex)
R-itertools,R-devel,R-foreach,R-iterators >= 1.0.0,R-parallel,tex(latex)
R-jose,R-devel,R-jsonlite,R-knitr,R-openssl >= 1.2.1,R-rmarkdown,R-spelling,R-testthat,tex(latex)
R-jpeg,R-devel,libjpeg-devel,tex(latex)
R-jqr,R-devel,R-jsonlite,R-knitr,R-lazyeval,R-magrittr,R-rmarkdown,R-roxygen2 >= 6.1.0,R-testthat,jq-devel,tex(latex)
R-jsonlite,R-devel,R-methods,R-plyr,R-sp,R-testthat,tex(latex)
R-knitr,R-devel,R-evaluate >= 0.10,R-highr,R-markdown,R-methods,R-stringr >= 0.6,R-tools,R-xfun,R-yaml >= 2.1.19,tex(latex)
R-labeling,R-devel,tex(latex)
R-lambda.r,R-RUnit,R-devel >= 3.0.0,R-formatR,R-testit,tetex-latex
R-later,R-BH-devel,R-Rcpp-devel >= 0.12.9,R-devel,R-knitr,R-rlang,R-rmarkdown,R-testthat,tex(latex)
R-lazyeval,R-devel,R-knitr,R-rmarkdown >= 0.2.65,R-testthat,tex(latex)
R-lifecycle,R-crayon,R-devel,R-glue,R-knitr,R-rlang >= 0.4.0,R-rmarkdown,R-testthat >= 2.1.0,tex(latex)
R-lintr,R-codetools,R-crayon,R-cyclocomp,R-devel,R-digest,R-httr >= 1.2.1,R-jsonlite,R-knitr,R-mockery,R-rex,R-rmarkdown,R-rstudioapi >= 0.2,R-stats,R-testthat >= 2.2.1,R-utils,R-xml2 >= 1.0.0,R-xmlparsedata >= 1.0.3,tex(latex)
R-listenv,R-R.rsp,R-R.utils,R-devel,R-markdown,tex(latex)
R-littler,R-core-devel,R-knitr,R-rpm-macros
R-lmodel2,R-devel,tex(latex),tex(sidecap.sty)
R-lmtest,R-devel >= 3.0.0,R-stats,R-zoo-devel,tex(latex)
R-lokern,R-devel,R-grDevices,R-graphics,R-sfsmisc >= 1.0.12,R-stats,R-utils,tex(latex)
R-lubridate,R-Rcpp-devel >= 0.12.13,R-devel,R-generics,R-knitr,R-methods,R-testthat,cctz-devel,tex(latex)
R-mAr,R-devel >= 3.0.0,tetex-latex
R-magrittr,R-devel >= 3.0.0,tetex-latex
R-mapproj,R-devel,R-graphics,R-maps >= 2.3.0,R-stats,tex(latex)
R-maps,R-devel,R-graphics,R-sp,R-utils,tex(latex)
R-markdown,R-devel,R-mime >= 0.3,R-utils,R-xfun,tex(latex)
R-matrixStats,R-devel >= 3.4.0
R-measurements,R-devel,tex(latex)
R-memoise,R-devel >= 3.0.0,R-digest-devel,tetex-latex
R-microbenchmark,R-RUnit,R-devel,R-ggplot2,R-graphics,R-multcomp,R-stats,tex(latex)
R-mime,R-devel,R-tools,tex(latex)
R-miniUI,R-devel,R-htmltools >= 0.3,R-shiny >= 0.13,R-utils,tex(latex)
R-mlbench,R-devel,R-lattice,tex(latex)
R-mnormt,R-devel,tex(latex)
R-mockery,R-R6,R-devel,R-testthat,tex(latex)
R-mockr,R-devel,R-lazyeval,R-testthat,tex(latex)
R-modelr,R-broom,R-compiler,R-devel,R-ggplot2,R-magrittr,R-purrr >= 0.2.2,R-rlang >= 0.2.0,R-testthat,R-tibble,R-tidyr >= 0.8.0,R-tidyselect,R-vctrs,tex(latex)
R-msm,R-devel >= 3.4.0,R-expm,R-mvtnorm-devel,R-survival,tetex-latex
R-multcomp,R-TH-data >= 1.0.2,R-codetools,R-devel >= 3.0.0,R-graphics,R-lmtest,R-mvtnorm >= 1.0.10,R-sandwich >= 2.3.0,R-stats,R-survival >= 2.39.4,tex(latex)
R-munsell,R-colorspace,R-devel,R-methods,R-testthat,tex(latex)
R-mvtnorm,R-devel >= 3.5.0,R-methods,R-stats,gcc-gfortran,tex(latex)
R-nanotime,R-RUnit,R-RcppCCTZ >= 0.2.3,R-bit64,R-data.table,R-devel,R-methods,R-zoo,tex(latex)
R-ncdf4,R-devel,chrpath,netcdf-devel >= 4.1,tex(latex)
R-nws,R-devel >= 3.0.0,tetex-latex
R-nycflights13,R-devel,R-dplyr,R-tibble,tex(latex)
R-openssl,R-askpass,R-devel,R-sodium,R-testthat,openssl-devel >= 1.0.1,tex(latex)
R-orcutt,R-devel,R-lmtest,R-stats,tex(latex)
R-packrat,R-devel,R-httr,R-knitr,R-rmarkdown,R-testthat >= 0.7,R-tools,R-utils,tex(latex)
R-parsedate,R-devel,R-rematch2,R-testthat,R-withr,tex(latex)
R-pbdRPC,R-devel,R-tools,openssh-clients,tex(latex)
R-pbdZMQ,R-R6,R-devel,R-pbdRPC,tex(latex),zeromq-devel >= 4.0.4
R-pdftools,R-Rcpp-devel >= 0.12.12,R-devel,R-jpeg,R-png,R-qpdf,R-testthat,R-webp,poppler-cpp-devel,poppler-data,tex(latex)
R-pillar,R-cli,R-crayon >= 1.3.4,R-devel,R-fansi,R-rlang >= 0.3.0,R-utf8 >= 1.1.0,R-vctrs >= 0.2.0,tex(latex)
R-pingr,R-devel,R-processx,R-testthat,R-utils,tex(latex)
R-pkgbuild,R-R6,R-callr >= 3.2.0,R-cli,R-crayon,R-desc,R-devel,R-prettyunits,R-rprojroot,R-withr >= 2.1.2,tex(latex)
R-pkgconfig,R-devel,R-disposables >= 1.0.3,R-testthat,R-utils,tex(latex)
R-pkgdown,R-MASS,R-callr >= 2.0.2,R-cli,R-crayon,R-desc,R-devel,R-digest,R-evaluate,R-fansi,R-fs >= 1.3.0,R-highlight,R-htmlwidgets,R-httr,R-jsonlite,R-knitr,R-magrittr,R-memoise,R-openssl,R-pkgload >= 1.0.2,R-processx,R-purrr,R-rematch2,R-rlang >= 0.3.0,R-rmarkdown >= 1.1.9007,R-rsconnect,R-rstudioapi,R-testthat >= 2.1.0,R-tibble,R-tools,R-whisker,R-withr,R-xml2 >= 1.3.1,R-yaml,tex(latex)
R-pkgload,R-desc,R-devel,R-methods,R-pkgbuild,R-rlang,R-rprojroot,R-rstudioapi,R-utils,R-withr,tex(latex)
R-plogr,R-Rcpp-devel,R-devel >= 3.0.0,tetex-latex
R-plyr,R-Rcpp-devel >= 0.11.0,R-abind,R-devel,R-testthat,tex(latex)
R-png,R-devel,libpng-devel,tex(latex)
R-poLCA,R-MASS,R-devel,R-scatterplot3d,tex(latex)
R-polyclip,R-devel,polyclipping-devel,tex(latex)
R-polynom,R-devel,R-graphics,R-knitr,R-rmarkdown,R-stats,tex(amsmath.sty),tex(fouriernc.sty),tex(fullpage.sty),tex(hyperref.sty),tex(inputenc.sty),tex(latex),tex(parskip.sty),tex(titling.sty)
R-praise,R-devel >= 3.0.0,texlive-latex
R-preprocessCore,R-devel >= 3.4.0,R-stats,autoconf,automake,gcc,libtool,tex(latex)
R-prettycode,R-crayon,R-devel,R-mockery,R-rstudioapi,R-testthat,R-utils,R-withr,tex(latex)
R-prettydoc,R-KernSmooth,R-devel,R-knitr,R-rmarkdown >= 1.17,open-sans-fonts,tex(latex)
R-prettyunits,R-devel >= 3.0.0,texlive-latex
R-processx,R-R6,R-devel,R-ps >= 1.2.0,R-utils,tex(latex)
R-profvis,R-devel,R-devtools,R-ggplot2,R-htmltools,R-htmlwidgets >= 0.3.2,R-knitr,R-rmarkdown,R-shiny,R-stringr,R-testthat,js-jquery1 >= 1.12.4,tex(latex)
R-progress,R-R6,R-Rcpp-devel,R-crayon,R-devel,R-hms,R-prettyunits,R-testthat,R-withr,tex(latex)
R-promises,R-R6,R-Rcpp-devel,R-devel,R-future,R-knitr,R-later-devel,R-magrittr,R-rlang,R-rmarkdown,R-stats,R-testthat,tex(latex)
R-ps,R-devel,R-utils,tex(latex)
R-purrr,R-crayon,R-devel,R-knitr,R-magrittr >= 1.5,R-rlang >= 0.3.1,R-rmarkdown,R-testthat,tex(latex)
R-qcc,R-devel >= 3.0.0,R-knitr >= 1.12,R-rmarkdown >= 0.9,tex(latex)
R-qpdf,R-Rcpp-devel,R-askpass,R-curl,R-devel,R-testthat,qpdf-devel >= 8.1.0,tex(latex)
R-qtl,R-core-devel >= 3.1.1,R-grDevices,R-graphics,R-parallel,R-rpm-macros,R-stats,R-testthat,R-utils,tex(fullpage.sty)
R-quadprog,R-devel,tex(latex)
R-quantities,R-Rcpp-devel >= 0.12.10,R-devel >= 3.1.0,R-errors >= 0.3.0,R-testthat,R-units >= 0.6.1,R-utils
R-qvalue,R-devel >= 3.0.0,R-ggplot2,R-grid,R-knitr,R-reshape2,R-splines,tex(latex)
R-rappdirs,R-devel,R-methods,R-roxygen2,R-testthat,tex(latex)
R-rcmdcheck,R-R6,R-callr >= 3.1.1.9000,R-cli >= 1.1.0,R-crayon,R-desc >= 1.2.0,R-devel,R-digest,R-knitr,R-mockery,R-pkgbuild,R-prettyunits,R-rmarkdown,R-rprojroot,R-sessioninfo >= 1.1.1,R-testthat,R-utils,R-withr,R-xopen,tex(latex)
R-readr,R-BH-devel,R-R6,R-Rcpp-devel >= 0.12.0.5,R-clipr,R-crayon,R-curl,R-devel,R-hms >= 0.4.1,R-knitr,R-methods,R-rmarkdown,R-spelling,R-stringi,R-testthat,R-tibble,tex(latex)
R-readxl,R-Rcpp-devel >= 0.12.18,R-cellranger,R-devel,R-knitr,R-progress-devel,R-rmarkdown,R-rprojroot >= 1.1,R-testthat,R-tibble >= 1.3.1,R-utils,libxls-devel >= 1.5.0,tex(latex)
R-rematch,R-devel,R-testthat,tex(latex)
R-rematch2,R-devel,R-testthat,R-tibble,tex(latex)
R-remotes,R-brew,R-callr,R-codetools,R-curl,R-devel,R-git2r >= 0.23.0,R-knitr,R-methods,R-mockery,R-pingr,R-pkgbuild >= 1.0.1,R-rmarkdown,R-rprojroot,R-stats,R-testthat,R-tools,R-utils,R-withr,tex(latex)
R-repr,R-Cairo,R-base64enc,R-devel,R-diffobj >= 0.2.3,R-grDevices,R-highr,R-htmltools,R-jsonlite,R-methods,R-pillar >= 1.4.0,R-stringr,R-testthat,R-utils,tex(latex)
R-reprex,R-callr >= 2.0.0,R-clipr >= 0.4.0,R-devel,R-fortunes,R-fs,R-knitr,R-rlang,R-rmarkdown,R-rprojroot,R-rstudioapi,R-shiny,R-testthat >= 2.0.0,R-utils,R-whisker,R-withr,pandoc >= 1.12.3,tex(latex)
R-repurrrsive,R-devel,R-gapminder,R-jsonlite,R-purrr,R-rprojroot,R-testthat >= 2.1.0,R-tibble,R-utils,R-wesanderson,R-xml2,tex(latex)
R-reshape,R-devel,R-plyr,tex(latex)
R-reshape2,R-Rcpp-devel,R-devel,R-lattice,R-plyr >= 1.8.1,R-stringr,R-testthat >= 0.8.0,tex(latex)
R-reticulate,R-Matrix,R-Rcpp-devel >= 0.12.7,R-callr,R-devel,R-graphics,R-jsonlite,R-knitr,R-methods,R-rappdirs,R-rmarkdown,R-testthat,R-utils,python3-devel,python3-docutils,python3-numpy,python3-pandas,python3dist(docutils),python3dist(matplotlib),python3dist(numpy),python3dist(pandas),python3dist(scipy),tex(latex)
R-rex,R-devel,R-knitr,R-lazyeval,R-magrittr,R-rmarkdown,R-testthat,tex(latex)
R-rgdal,R-devel,R-grDevices,R-graphics,R-methods,R-sp-devel >= 1.1.0,R-stats,R-utils,gdal-devel >= 1.11.4,proj-devel >= 4.8.0,sqlite-devel,tex(latex)
R-rgeos,R-XML,R-devel,R-graphics,R-methods,R-rgdal,R-sp-devel >= 1.1.0,R-stats,R-testthat,R-utils,geos-devel >= 3.2.0,tex(latex)
R-rhub,R-R6,R-assertthat,R-callr,R-cli >= 1.1.0,R-crayon,R-desc,R-devel,R-digest,R-httr,R-jsonlite,R-knitr,R-parsedate,R-pillar,R-prettyunits,R-processx,R-rappdirs,R-rcmdcheck >= 1.2.1,R-rematch,R-rmarkdown,R-testthat,R-tibble,R-utils,R-uuid,R-whoami,R-withr,tex(latex)
R-rlang,R-cli,R-crayon,R-devel,R-glue,R-magrittr,R-methods,R-pillar,R-rmarkdown,R-testthat >= 2.3.0,R-vctrs >= 0.2.3,tex(latex)
R-rlecuyer,R-devel >= 3.4.0,tex(latex)
R-rmarkdown,R-base64enc,R-callr >= 2.0.0,R-devel,R-digest,R-evaluate >= 0.13,R-htmltools >= 0.3.5,R-jsonlite,R-knitr >= 1.22,R-methods,R-mime,R-stringr >= 1.2.0,R-testthat,R-tinytex >= 0.11,R-tools,R-utils,R-xfun,R-yaml >= 2.1.19,adobe-source-code-pro-fonts,adobe-source-sans-pro-fonts,git-core,glyphicons-halflings-fonts,google-roboto-fonts,impallari-raleway-fonts,js-jquery1 = 1.12.4,lato-fonts,open-sans-fonts,pandoc >= 1.12.3,pandoc-citeproc,tex(latex),ycssmin
R-roxygen2,R-R.methodsS3,R-R.oo,R-R6 >= 2.1.2,R-Rcpp-devel >= 0.11.0,R-brew,R-commonmark,R-desc >= 1.2.0,R-devel,R-digest,R-knitr,R-methods,R-pkgload >= 1.0.2,R-purrr >= 0.3.3,R-rlang,R-rmarkdown,R-stringi,R-stringr >= 1.0.0,R-testthat >= 2.1.0,R-utils,R-xml2,tex(latex)
R-rprintf,R-devel,R-knitr,R-stringi,R-testthat,tex(latex)
R-rprojroot,R-backports,R-devel,tex(latex)
R-rsconnect,R-RCurl,R-callr,R-curl,R-devel,R-digest,R-httpuv,R-jsonlite,R-knitr,R-openssl,R-packrat >= 0.4.8.1,R-reticulate,R-rmarkdown >= 1.1,R-rstudioapi >= 0.5,R-shiny,R-sourcetools,R-testthat,R-xtable,R-yaml >= 2.1.5,tex(latex)
R-rstudioapi,R-devel,tex(latex)
R-rsvg,R-devel,librsvg2-devel,tex(latex)
R-rtracklayer,R-BiocGenerics >= 0.25.1,R-Biostrings-devel >= 2.47.6,R-GenomeInfoDb >= 1.15.2,R-GenomicAlignments >= 1.15.6,R-GenomicRanges >= 1.37.2,R-IRanges-devel >= 2.13.13,R-RCurl >= 1.4.2,R-Rsamtools-devel >= 1.31.2,R-S4Vectors-devel >= 0.23.18,R-XML >= 1.98.0,R-XVector-devel >= 0.19.7,R-devel >= 3.3.0,R-methods,R-tools,openssl-devel,zlib-devel
R-rversions,R-curl,R-devel,R-mockery,R-testthat,R-utils,R-xml2 >= 1.0.0,tex(latex)
R-rvest,R-devel,R-httr >= 0.5,R-knitr,R-magrittr,R-png,R-rmarkdown,R-selectr,R-spelling,R-stringi >= 0.3.1,R-testthat,R-xml2,tex(latex)
R-sandwich,R-devel >= 2.15.0,R-stats,R-utils,R-zoo,tex(latex)
R-scales,R-R6,R-RColorBrewer,R-bit64,R-devel,R-dichromat,R-farver >= 2.0.3,R-hms >= 0.5.0,R-labeling,R-lifecycle,R-munsell >= 0.5,R-testthat >= 2.1.0,R-viridisLite,tex(latex)
R-scatterplot3d,R-devel,R-grDevices,R-graphics,R-stats,tex(latex)
R-sciplot,R-devel >= 3.0.0,tex(latex)
R-selectr,R-R6,R-XML,R-devel,R-methods,R-stringr,R-testthat,R-xml2,tex(latex)
R-sessioninfo,R-callr,R-cli,R-devel,R-mockery,R-testthat,R-tools,R-utils,R-withr,tex(latex)
R-sfsmisc,R-MASS,R-Matrix,R-cluster,R-datasets,R-devel,R-grDevices,R-lattice,R-methods,R-nlme,R-stats,R-tcltk,R-utils,procps-ng,tex(latex)
R-shiny,R-Cairo >= 1.5.5,R-R6 >= 2.0,R-crayon,R-datasets,R-devel,R-digest,R-fastmap >= 1.0.0,R-ggplot2,R-grDevices,R-htmltools >= 0.4.0,R-httpuv >= 1.5.2,R-jsonlite >= 0.9.16,R-knitr >= 1.6,R-later >= 1.0.0,R-magrittr,R-markdown,R-methods,R-mime >= 0.3,R-promises >= 1.1.0,R-rlang >= 0.4.0,R-rmarkdown,R-sourcetools,R-testthat >= 2.1.1,R-tools,R-utils,R-xtable,R-yaml,js-jquery >= 1.12.4,nodejs-showdown >= 0.3.1,tex(latex),xstatic-bootstrap-datepicker-common,xstatic-datatables-common >= 1.10.5,xstatic-jquery-ui-common
R-showtext,R-curl,R-devel,R-grDevices,R-jsonlite,R-knitr,R-prettydoc,R-rmarkdown,R-showtextdb >= 2.0,R-sysfonts >= 0.7.1,pkgconfig(freetype2),pkgconfig(libpng),pkgconfig(zlib),tex(latex)
R-showtextdb,R-curl,R-devel,R-sysfonts >= 0.7.1,R-utils,tex(latex),wqy-microhei-fonts
R-simmer,R-BH-devel >= 1.62.0.1,R-Rcpp-devel >= 0.12.9,R-devel >= 3.1.2,R-magrittr,R-testthat
R-snow,R-devel >= 3.0.0,R-utils,tetex-latex
R-sodium,R-devel,R-knitr,R-rmarkdown,pkgconfig(libsodium),tex(latex)
R-sourcetools,R-devel,R-testthat,tex(latex)
R-sp,R-devel,R-grDevices,R-graphics,R-grid,R-lattice,R-methods,R-stats,R-utils,tex(latex)
R-spelling,R-commonmark,R-devel,R-hunspell >= 3.0,R-knitr,R-pdftools,R-xml2,tex(latex)
R-statnet.common,R-coda,R-devel,R-methods,R-parallel,R-tools,R-utils,tex(latex)
R-stringdist,R-devel,R-parallel,R-tinytest,tex(latex)
R-stringi,R-devel,R-stats,R-tools,R-utils,libicu-devel >= 52,tex(latex)
R-stringr,R-devel,R-glue >= 1.2.0,R-htmltools,R-htmlwidgets,R-magrittr,R-stringi >= 1.1.7,R-testthat,tex(latex)
R-styler,R-R.cache >= 0.14.0,R-backports >= 1.1.0,R-cli >= 1.1.0,R-devel,R-digest,R-dplyr,R-here,R-knitr,R-magrittr >= 1.0.1,R-prettycode,R-purrr >= 0.2.3,R-rematch2 >= 2.0.1,R-rlang >= 0.1.1,R-rmarkdown,R-rprojroot >= 1.1,R-rstudioapi >= 0.7,R-testthat >= 2.1.0,R-tibble >= 1.4.2,R-tools,R-withr >= 1.0.0,R-xfun >= 0.1,tex(latex)
R-svglite,R-BH-devel,R-Rcpp-devel,R-devel,R-gdtools-devel >= 0.1.6,R-htmltools,R-knitr,R-rmarkdown,R-testthat,R-xml2 >= 1.0.0,tex(latex)
R-sys,R-devel,tex(latex)
R-sysfonts,R-curl,R-devel,R-jsonlite,liberation-mono-fonts,liberation-sans-fonts,liberation-serif-fonts,pkgconfig(freetype2),pkgconfig(libpng),pkgconfig(zlib),tex(latex)
R-systemfit,R-Matrix,R-car,R-devel >= 3.0.0,R-lmtest,R-sandwich,tex(latex)
R-systemfonts,R-devel,R-knitr,R-rmarkdown,R-testthat >= 2.1.0,R-tools,pkgconfig(fontconfig),tex(latex)
R-testit,R-devel,R-rstudioapi,tex(latex)
R-testthat,R-R6 >= 2.2.0,R-cli,R-crayon >= 1.3.4,R-devel >= 3.4.0,R-digest,R-ellipsis,R-evaluate,R-magrittr,R-methods,R-pkgload,R-praise,R-rlang >= 0.4.1,R-withr >= 2.0.0,tetex-latex
R-tibble,R-bit64,R-blob,R-cli,R-crayon >= 1.3.4,R-devel,R-ellipsis >= 0.2.0,R-evaluate,R-fansi >= 0.4.0,R-hms,R-htmltools,R-import,R-knitr,R-lifecycle >= 0.2.0,R-magrittr,R-methods,R-mockr,R-pillar >= 1.4.3,R-pkgconfig,R-purrr,R-rlang >= 0.4.3,R-rmarkdown,R-testthat >= 2.1.0,R-utils,R-vctrs >= 0.2.4,R-withr,tex(latex)
R-tidyr,R-Rcpp-devel,R-devel,R-dplyr >= 0.8.2,R-ellipsis >= 0.1.0,R-glue,R-jsonlite,R-knitr,R-lifecycle,R-magrittr,R-purrr,R-readr,R-repurrrsive >= 1.0.0,R-rlang,R-rmarkdown,R-stringi,R-testthat >= 2.1.0,R-tibble >= 2.1.1,R-tidyselect >= 1.1.0,R-utils,R-vctrs >= 0.3.0,tex(latex)
R-tidyselect,R-crayon,R-devel,R-ellipsis,R-glue >= 1.3.0,R-knitr,R-magrittr,R-purrr >= 0.3.2,R-rlang >= 0.4.6,R-rmarkdown,R-testthat >= 2.3.0,R-tibble >= 2.1.3,R-vctrs >= 0.2.2,R-withr,tex(latex)
R-tikzDevice,R-devel,R-evaluate,R-filehash >= 2.3,R-lattice,R-png,R-stringr,R-testthat >= 0.8.1,R-withr,tex(latex),tex(preview.sty),texlive-pgf >= 2.0
R-timeDate,R-RUnit,R-date,R-devel >= 3.0.0,R-graphics,R-methods,R-stats,R-utils,tex(latex)
R-timeSeries,R-RUnit,R-devel,R-grDevices,R-graphics,R-methods,R-stats,R-timeDate >= 2150.95,R-utils,tex(latex)
R-tinytest,R-devel,R-parallel,R-utils,tex(latex),tex(sectsty.sty)
R-tinytex,R-devel,R-rstudioapi,R-testit,R-xfun >= 0.5,tex(latex)
R-tkWidgets,R-DynDoc >= 1.3.0,R-devel >= 3.0.0,R-widgetTools >= 1.1.7,tcl-devel,tex(latex),tk-devel
R-tkrplot,R-devel,R-grDevices,R-tcltk,tex(latex)
R-tufte,R-devel,R-htmltools,R-knitr >= 1.22,R-rmarkdown >= 1.12,R-xfun >= 0.6,tex(latex)
R-tweenr,R-Rcpp-devel >= 0.12.3,R-devel,R-farver,R-grDevices,R-magrittr,R-rlang,R-testthat,tex(latex)
R-udunits2,R-devel,tex(latex),udunits2-devel
R-unitizer,R-crayon >= 1.3.2,R-devel,R-diffobj >= 0.1.5.9000,R-knitr,R-methods,R-rmarkdown,R-stats,R-testthat,R-utils,tex(latex)
R-units,R-Rcpp-devel,R-devel >= 3.0.0,R-testthat,udunits2-devel
R-unix,R-devel,R-testthat,tex(latex)
R-usethis,R-clipr >= 0.3.0,R-clisymbols,R-crayon,R-curl >= 2.7,R-desc,R-devel,R-fs >= 1.3.0,R-gh,R-git2r >= 0.23,R-glue >= 1.3.0,R-knitr,R-pkgdown >= 1.1.0,R-purrr,R-rlang,R-rmarkdown,R-roxygen2,R-rprojroot >= 1.2,R-rstudioapi,R-spelling >= 1.2,R-stats,R-styler >= 1.0.2,R-testthat >= 2.1.0,R-utils,R-whisker,R-withr,R-yaml,tex(latex)
R-utf8,R-devel,R-testthat,tex(latex)
R-uuid,R-devel,libuuid-devel,tex(latex)
R-vctrs,R-devel,R-digest,R-ellipsis >= 0.2.0,R-glue,R-rlang >= 0.4.5,tex(latex)
R-viridisLite,R-devel,R-hexbin,R-testthat,tex(latex)
R-waveslim,R-devel,gcc-gfortran,tetex-latex
R-wavethresh,R-MASS,R-devel >= 3.4.0,tetex-latex
R-webp,R-devel,R-jpeg,R-png,libwebp-devel,tex(latex)
R-websocket,R-AsioHeaders-devel,R-BH-devel,R-R6,R-Rcpp-devel,R-devel,R-knitr,R-later,R-rmarkdown,R-testthat,pkgconfig(openssl),pkgconfig(websocketpp),python3dist(websockets),tex(latex)
R-webutils,R-curl >= 2.5,R-devel,R-httpuv,R-jsonlite,R-testthat,tex(latex)
R-wesanderson,R-devel,R-ggplot2,tex(latex)
R-whisker,R-devel,R-markdown,tex(latex)
R-whoami,R-devel,R-httr,R-jsonlite,R-mockery,R-testthat,R-utils,R-withr,tex(latex)
R-widgetTools,R-devel >= 3.0.0,R-methods,R-utils,tcl-devel,tex(latex),tk-devel
R-withr,R-devel,R-grDevices,R-graphics,R-stats,tex(latex)
R-xfun,R-devel,R-stats,R-tools,tex(latex)
R-xml2,R-devel,R-magrittr,R-methods,R-mockery,R-testthat >= 2.1.0,libxml2-devel,tex(latex)
R-xmlparsedata,R-devel,R-testthat,R-xml2,tex(latex)
R-xopen,/usr/bin/xdg-open,R-devel,R-processx,R-ps,R-testthat,tex(latex)
R-xtable,R-devel >= 3.0.0,R-knitr,R-stats,R-survival,R-utils,R-zoo,tex(framed.sty),tex(hardwrap.sty),tex(latex),tex(tufte-handout.cls)
R-yaml,R-RUnit,R-devel,tex(latex)
R-zeallot,R-devel,R-knitr,R-magrittr,R-purrr,R-rmarkdown,R-testthat,tex(latex)
R-zoo,R-devel,R-grDevices,R-graphics,R-lattice,R-utils,tex(latex)
_______________________________________________
R-SIG-Fedora mailing list
R-SIG-Fedora@r-project.org
https://stat.ethz.ch/mailman/listinfo/r-sig-fedora

Reply via email to