Add default list_url for GitLab, BitBucket, and CRAN (#4439)

* Add default list_url for GitLab, BitBucket, and CRAN

* Fix flake and doc tests
This commit is contained in:
Adam J. Stewart 2017-06-09 12:28:39 -05:00 committed by GitHub
parent 218992862c
commit 36b8ea2f92
237 changed files with 42 additions and 246 deletions

View file

@ -63,16 +63,49 @@
# "path" seemed like the most generic term.
#
def find_list_url(url):
"""Finds a good list URL for the supplied URL. This depends on
the site. By default, just assumes that a good list URL is the
dirname of an archive path. For github URLs, this returns the
URL of the project's releases page.
"""Finds a good list URL for the supplied URL.
By default, returns the dirname of the archive path.
Provides special treatment for the following websites, which have a
unique list URL different from the dirname of the download URL:
========= =======================================================
GitHub https://github.com/<repo>/<name>/releases
GitLab https://gitlab.\*/<repo>/<name>/tags
BitBucket https://bitbucket.org/<repo>/<name>/downloads/?tab=tags
CRAN https://\*.r-project.org/src/contrib/Archive/<name>
========= =======================================================
Parameters:
url (str): The download URL for the package
Returns:
str: The list URL for the package
"""
url_types = [
# GitHub
# e.g. https://github.com/llnl/callpath/archive/v1.0.1.tar.gz
(r'(.*github\.com/[^/]+/[^/]+)',
lambda m: m.group(1) + '/releases')]
lambda m: m.group(1) + '/releases'),
# GitLab
# e.g. https://gitlab.dkrz.de/k202009/libaec/uploads/631e85bcf877c2dcaca9b2e6d6526339/libaec-1.0.0.tar.gz
(r'(.*gitlab[^/]+/[^/]+/[^/]+)',
lambda m: m.group(1) + '/tags'),
# BitBucket
# e.g. https://bitbucket.org/eigen/eigen/get/3.3.3.tar.bz2
(r'(.*bitbucket.org/[^/]+/[^/]+)',
lambda m: m.group(1) + '/downloads/?tab=tags'),
# CRAN
# e.g. https://cran.r-project.org/src/contrib/Rcpp_0.12.9.tar.gz
# e.g. https://cloud.r-project.org/src/contrib/rgl_0.98.1.tar.gz
(r'(.*\.r-project\.org/src/contrib)/([^_]+)',
lambda m: m.group(1) + '/Archive/' + m.group(2)),
]
for pattern, fun in url_types:
match = re.search(pattern, url)

View file

@ -32,7 +32,6 @@ class Eigen(CMakePackage):
homepage = 'http://eigen.tuxfamily.org/'
url = 'https://bitbucket.org/eigen/eigen/get/3.3.3.tar.bz2'
list_url = 'https://bitbucket.org/eigen/eigen/downloads/?tab=tags'
version('3.3.3', 'b2ddade41040d9cf73b39b4b51e8775b')
version('3.3.1', 'edb6799ef413b0868aace20d2403864c')

View file

@ -40,9 +40,8 @@ class HoomdBlue(CMakePackage):
git = "https://bitbucket.org/glotzer/hoomd-blue"
# TODO: There is a bug in Spack that requires a url to be defined
# even if it isn't used. These URLs can hopefully be removed someday.
# even if it isn't used. This URL can hopefully be removed someday.
url = "https://bitbucket.org/glotzer/hoomd-blue/get/v2.1.6.tar.bz2"
list_url = "https://bitbucket.org/glotzer/hoomd-blue/downloads/?tab=tags"
version('develop', git=git, submodules=True)

View file

@ -36,6 +36,5 @@ class PerlTermReadkey(PerlPackage):
homepage = "http://search.cpan.org/perldoc/Term::ReadKey"
url = "http://www.cpan.org/authors/id/J/JS/JSTOWE/TermReadKey-2.37.tar.gz"
list_url = "http://www.cpan.org/authors/id/J/JS/JSTOWE"
version('2.37', 'e8ea15c16333ac4f8d146d702e83cc0c')

View file

@ -33,6 +33,5 @@ class RAbind(RPackage):
homepage = "https://cran.r-project.org/"
url = "https://cran.r-project.org/src/contrib/abind_1.4-3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/abind"
version('1.4-3', '10fcf80c677b991bf263d38be35a1fc5')

View file

@ -30,7 +30,6 @@ class RAdabag(RPackage):
homepage = "https://cran.r-project.org/package=adabag"
url = "https://cran.r-project.org/src/contrib/adabag_4.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/adabag"
version('4.1', '2e019f053d49f62ebb3b1697bbb50afa')

View file

@ -31,7 +31,6 @@ class RAde4(RPackage):
homepage = "http://pbil.univ-lyon1.fr/ADE-4"
url = "https://cran.r-project.org/src/contrib/ade4_1.7-6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ade4"
version('1.7-6', '63401ca369677538c96c3d7b75b3f4a1')

View file

@ -38,7 +38,6 @@ class RAdegenet(RPackage):
homepage = "https://github.com/thibautjombart/adegenet/wiki"
url = "https://cran.r-project.org/src/contrib/adegenet_2.0.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/adegenet"
version('2.0.1', 'ecb1220ce7c9affaba2987bc7f38adda')

View file

@ -44,7 +44,6 @@ class RApe(RPackage):
homepage = "http://ape-package.ird.fr/"
url = "https://cran.r-project.org/src/contrib/ape_4.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ape"
version('4.1', 'a9ed416d6d172d4b9682556cf692d7c2')

View file

@ -33,6 +33,5 @@ class RAssertthat(RPackage):
homepage = "https://cran.r-project.org/package=assertthat"
url = "https://cran.r-project.org/src/contrib/assertthat_0.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/assertthat"
version('0.1', '59f9d7f7c00077ea54d763b78eeb5798')

View file

@ -31,6 +31,5 @@ class RBase64enc(RPackage):
homepage = "http://www.rforge.net/base64enc"
url = "https://cran.r-project.org/src/contrib/base64enc_0.1-3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/base64enc"
version('0.1-3', '0f476dacdd11a3e0ad56d13f5bc2f190')

View file

@ -43,6 +43,5 @@ class RBh(RPackage):
homepage = "https://cran.r-project.org/web/packages/BH/index.html"
url = "https://cran.r-project.org/src/contrib/BH_1.60.0-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/BH"
version('1.60.0-2', 'b50fdc85285da05add4e9da664a2d551')

View file

@ -31,6 +31,5 @@ class RBitops(RPackage):
homepage = "https://cran.r-project.org/package=bitops"
url = "https://cran.r-project.org/src/contrib/bitops_1.0-6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/bitops"
version('1.0-6', 'fba16485a51b1ccd354abde5816b6bdd')

View file

@ -32,6 +32,5 @@ class RBoot(RPackage):
homepage = "https://cran.r-project.org/package=boot"
url = "https://cran.r-project.org/src/contrib/boot_1.3-18.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/boot"
version('1.3-18', '711dd58af14e1027eb8377d9202e9b6f')

View file

@ -32,6 +32,5 @@ class RBrew(RPackage):
homepage = "https://cran.r-project.org/package=brew"
url = "https://cran.r-project.org/src/contrib/brew_1.0-6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/brew"
version('1.0-6', '4aaca5e6ec145e0fc0fe6375ce1f3806')

View file

@ -31,8 +31,7 @@ class RC50(RPackage):
homepage = "https://cran.r-project.org/package=C50"
url = "https://cran.r-project.org/src/contrib/C50_0.1.0-24.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/C50"
version('0.1.0-24', '42631e65c5c579532cc6edf5ea175949')
depends_on('r-partykit', type=('build','run'))
depends_on('r-partykit', type=('build', 'run'))

View file

@ -31,7 +31,6 @@ class RCar(RPackage):
homepage = "https://r-forge.r-project.org/projects/car/"
url = "https://cran.r-project.org/src/contrib/car_2.1-4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/car"
version('2.1-4', 'a66c307e8ccf0c336ed197c0f1799565')
version('2.1-2', '0f78ad74ef7130126d319acec23951a0')

View file

@ -31,7 +31,6 @@ class RCaret(RPackage):
homepage = "https://github.com/topepo/caret/"
url = "https://cran.r-project.org/src/contrib/caret_6.0-73.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/caret"
version('6.0-73', 'ca869e3357b5358f028fb926eb62eb70')
version('6.0-70', '202d7abb6a679af716ea69fb2573f108')

View file

@ -34,8 +34,7 @@ class RCatools(RPackage):
homepage = "https://cran.r-project.org/package=caTools"
url = "https://cran.r-project.org/src/contrib/caTools_1.17.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/caTools"
version('1.17.1', '5c872bbc78b177b306f36709deb44498')
depends_on('r-bitops', type=('build','run'))
depends_on('r-bitops', type=('build', 'run'))

View file

@ -33,7 +33,6 @@ class RCheckpoint(RPackage):
homepage = "https://cran.r-project.org/package=checkpoint"
url = "https://cran.r-project.org/src/contrib/checkpoint_0.3.18.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/checkpoint"
version('0.3.18', '021d7faeb72c36167951e103b2b065ea')
version('0.3.15', 'a4aa8320338f1434a330d984e97981ea')

View file

@ -30,6 +30,5 @@ class RChron(RPackage):
homepage = "https://cran.r-project.org/package=chron"
url = "https://cran.r-project.org/src/contrib/chron_2.3-47.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/chron"
version('2.3-47', 'b8890cdc5f2337f8fd775b0becdcdd1f')

View file

@ -31,8 +31,7 @@ class RClass(RPackage):
homepage = "http://www.stats.ox.ac.uk/pub/MASS4/"
url = "https://cran.r-project.org/src/contrib/class_7.3-14.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/class"
version('7.3-14', '6a21dd206fe4ea29c55faeb65fb2b71e')
depends_on('r-mass', type=('build','run'))
depends_on('r-mass', type=('build', 'run'))

View file

@ -32,7 +32,6 @@ class RCluster(RPackage):
homepage = "https://cran.r-project.org/web/packages/cluster/index.html"
url = "https://cran.r-project.org/src/contrib/cluster_2.0.5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/cluster"
version('2.0.5', '7330f209ebce960bdee1a6d6679cb85a')
version('2.0.4', 'bb4deceaafb1c42bb1278d5d0dc11e59')

View file

@ -33,7 +33,6 @@ class RCoda(RPackage):
homepage = "https://cran.r-project.org/web/packages/coda/index.html"
url = "https://cran.r-project.org/src/contrib/coda_0.19-1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/coda"
version('0.19-1', '0d2aca6a5a3bdae9542708817c1ec001')

View file

@ -30,7 +30,6 @@ class RCodetools(RPackage):
homepage = "https://cran.r-project.org/web/packages/codetools/index.html"
url = "https://cran.r-project.org/src/contrib/codetools_0.2-15.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/codetools"
version('0.2-15', '37419cbc3de81984cf6d9b207d4f62d4')
version('0.2-14', '7ec41d4f8bd6ba85facc8c5e6adc1f4d')

View file

@ -32,7 +32,6 @@ class RCoin(RPackage):
homepage = "https://cran.r-project.org/package=coin"
url = "https://cran.r-project.org/src/contrib/coin_1.1-3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/coin"
version('1.1-3', '97d3d21f1e4a5762e36dd718dd2d0661')

View file

@ -33,7 +33,6 @@ class RColorspace(RPackage):
homepage = "https://cran.r-project.org/web/packages/colorspace/index.html"
url = "https://cran.r-project.org/src/contrib/colorspace_1.3-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/colorspace"
version('1.3-2', '63000bab81d995ff167df76fb97b2984')
version('1.2-6', 'a30191e9caf66f77ff4e99c062e9dce1')

View file

@ -31,6 +31,5 @@ class RCorrplot(RPackage):
homepage = "https://cran.r-project.org/package=corrplot"
url = "https://cran.r-project.org/src/contrib/corrplot_0.77.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/corrplot"
version('0.77', '2a5d54fd5c65618b9afba1a32f6b4542')

View file

@ -34,6 +34,5 @@ class RCrayon(RPackage):
homepage = "https://github.com/gaborcsardi/crayon"
url = "https://cran.r-project.org/src/contrib/crayon_1.3.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/crayon"
version('1.3.2', 'fe29c6204d2d6ff4c2f9d107a03d0cb9')

View file

@ -30,6 +30,5 @@ class RCubature(RPackage):
homepage = "https://cran.r-project.org/package=cubature"
url = "https://cran.r-project.org/src/contrib/cubature_1.1-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/cubature"
version('1.1-2', '5617e1d82baa803a3814d92461da45c9')

View file

@ -30,7 +30,6 @@ class RCubist(RPackage):
homepage = "https://cran.r-project.org/package=Cubist"
url = "https://cran.r-project.org/src/contrib/Cubist_0.0.19.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/Cubist"
version('0.0.19', 'bf9364f655536ec03717fd2ad6223a47')

View file

@ -38,7 +38,6 @@ class RCurl(RPackage):
homepage = "https://github.com/jeroenooms/curl"
url = "https://cran.r-project.org/src/contrib/curl_2.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/curl"
version('2.3', '7250ee8caed98ba76906ab4d32da60f8')
version('1.0', '93d34926d6071e1fba7e728b482f0dd9')

View file

@ -33,7 +33,6 @@ class RDataTable(RPackage):
homepage = "https://github.com/Rdatatable/data.table/wiki"
url = "https://cran.r-project.org/src/contrib/data.table_1.10.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/data.table"
version('1.10.0', 'f0e08dd5ba1b3f46c59dd1574fe497c1')
version('1.9.6', 'b1c0c7cce490bdf42ab288541cc55372')

View file

@ -32,6 +32,5 @@ class RDbi(RPackage):
homepage = "https://github.com/rstats-db/DBI"
url = "https://cran.r-project.org/src/contrib/DBI_0.4-1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/DBI"
version('0.4-1', 'c7ee8f1c5037c2284e99c62698d0f087')

View file

@ -34,7 +34,6 @@ class RDeldir(RPackage):
homepage = "https://CRAN.R-project.org/package=deldir"
url = "https://cran.r-project.org/src/contrib/deldir_0.1-14.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/deldir"
version('0.1-14', '6a22b13d962615cd9d51b6eae403409f')

View file

@ -30,7 +30,6 @@ class RDendextend(RPackage):
homepage = "https://CRAN.R-project.org/package=dendextend"
url = "https://cran.r-project.org/src/contrib/dendextend_1.5.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/dendextend"
version('1.5.2', '1134869d94005727c63cf3037e2f1bbf')

View file

@ -32,6 +32,5 @@ class RDeoptim(RPackage):
homepage = "https://cran.r-project.org/package=DEoptim"
url = "https://cran.r-project.org/src/contrib/DEoptim_2.2-3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/DEoptim"
version('2.2-3', 'ed406e6790f8f1568aa9bec159f80326')

View file

@ -30,7 +30,6 @@ class RDevtools(RPackage):
homepage = "https://github.com/hadley/devtools"
url = "https://cran.r-project.org/src/contrib/devtools_1.12.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/devtools"
version('1.12.0', '73b46c446273566e5b21c9f5f72aeca3')
version('1.11.1', '242672ee27d24dddcbdaac88c586b6c2')

View file

@ -30,7 +30,6 @@ class RDiagrammer(RPackage):
homepage = "https://github.com/rich-iannone/DiagrammeR"
url = "https://cran.r-project.org/src/contrib/DiagrammeR_0.8.4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/DiagrammeR"
version('0.8.4', '9ee295c744f5d4ba9a84289ca7bdaf1a')

View file

@ -31,6 +31,5 @@ class RDichromat(RPackage):
homepage = "https://cran.r-project.org/web/packages/dichromat/index.html"
url = "https://cran.r-project.org/src/contrib/dichromat_2.0-0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/dichromat"
version('2.0-0', '84e194ac95a69763d740947a7ee346a6')

View file

@ -45,7 +45,6 @@ class RDigest(RPackage):
homepage = "http://dirk.eddelbuettel.com/code/digest.html"
url = "https://cran.r-project.org/src/contrib/digest_0.6.12.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/digest"
version('0.6.12', '738efd4d9a37c5a4001ae66e954ce07e')
version('0.6.11', '52a864f55846b48b3cab0b5d0304a82a')

View file

@ -30,6 +30,5 @@ class RDiptest(RPackage):
homepage = "https://CRAN.R-project.org/package=diptest"
url = "https://cran.r-project.org/src/contrib/diptest_0.75-7.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/diptest"
version('0.75-7', '1a4a958fda763f7c99cb485dbe5954ab')

View file

@ -31,7 +31,6 @@ class RDomc(RPackage):
homepage = "https://cran.r-project.org/package=doMC"
url = "https://cran.r-project.org/src/contrib/doMC_1.3.4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/doMC"
version('1.3.4', 'f965b09add9056e84f99a831dc3af7d1')

View file

@ -31,7 +31,6 @@ class RDoparallel(RPackage):
homepage = "https://cran.r-project.org/web/packages/doParallel/index.html"
url = "https://cran.r-project.org/src/contrib/doParallel_1.0.10.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/doParallel"
version('1.0.10', 'd9fbde8f315d98d055483ee3493c9b43')

View file

@ -31,7 +31,6 @@ class RDplyr(RPackage):
homepage = "https://github.com/hadley/dplyr"
url = "https://cran.r-project.org/src/contrib/dplyr_0.5.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/dplyr"
version('0.5.0', '1fcafcacca70806eea2e6d465cdb94ef')

View file

@ -33,7 +33,6 @@ class RDt(RPackage):
homepage = "http://rstudio.github.io/DT"
url = "https://cran.r-project.org/src/contrib/DT_0.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/DT/"
version('0.1', '5c8df984921fa484784ec4b8a4fb6f3c')

View file

@ -34,7 +34,6 @@ class RDygraphs(RPackage):
homepage = "https://cran.r-project.org/web/packages/dygraphs/index.html"
url = "https://cran.r-project.org/src/contrib/dygraphs_0.9.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/dygraphs"
version('0.9', '7f0ce4312bcd3f0a58b8c03b2772f833')

View file

@ -32,7 +32,6 @@ class RE1071(RPackage):
homepage = "https://cran.r-project.org/package=e1071"
url = "https://cran.r-project.org/src/contrib/e1071_1.6-7.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/e1071"
version('1.6-7', 'd109a7e3dd0c905d420e327a9a921f5a')

View file

@ -31,7 +31,6 @@ class REllipse(RPackage):
homepage = "https://cran.r-project.org/package=ellipse"
url = "https://cran.r-project.org/src/contrib/ellipse_0.3-8.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ellipse"
version('0.3-8', '385f5ec5e49bcda4317ca9dffd33f771')

View file

@ -32,7 +32,6 @@ class RErgm(RPackage):
homepage = "http://statnet.org"
url = "https://cran.r-project.org/src/contrib/ergm_3.7.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ergm"
version('3.7.1', '431ae430c76b2408988f469831d80126')

View file

@ -33,7 +33,6 @@ class REvaluate(RPackage):
homepage = "https://github.com/hadley/evaluate"
url = "https://cran.rstudio.com/src/contrib/evaluate_0.9.tar.gz"
list_url = "https://cran.rstudio.com/src/contrib/Archive/evaluate"
version('0.10', 'c49326babf984a8b36e7e276da370ad2')
version('0.9', '877d89ce8a9ef7f403b1089ca1021775')

View file

@ -31,6 +31,5 @@ class RExpm(RPackage):
homepage = "http://R-Forge.R-project.org/projects/expm"
url = "https://cran.r-project.org/src/contrib/expm_0.999-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/expm"
version('0.999-2', 'e05fa3f995754af92bd03227625da984')

View file

@ -31,7 +31,6 @@ class RFactoextra(RPackage):
homepage = "http://www.sthda.com/english/rpkgs/factoextra"
url = "https://cran.r-project.org/src/contrib/factoextra_1.0.4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/factoextra"
version('1.0.4', 'aa4c81ca610f17fdee0c9f3379e35429')

View file

@ -30,7 +30,6 @@ class RFactominer(RPackage):
homepage = "http://factominer.free.fr"
url = "https://cran.r-project.org/src/contrib/FactoMineR_1.35.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/FactoMineR"
version('1.35', 'bef076181ce942016114dd7a6f5c2348')

View file

@ -38,6 +38,5 @@ class RFilehash(RPackage):
homepage = 'https://cran.r-project.org/'
url = "https://cran.r-project.org/src/contrib/filehash_2.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/filehash"
version('2.3', '01fffafe09b148ccadc9814c103bdc2f')

View file

@ -30,7 +30,6 @@ class RFlashclust(RPackage):
homepage = "https://CRAN.R-project.org/package=flashClust"
url = "https://cran.r-project.org/src/contrib/flashClust_1.01-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/flashClust"
version('1.01-2', '23409aeeef98bf35d0b3d5dd755fdeff')

View file

@ -30,7 +30,6 @@ class RFlexmix(RPackage):
homepage = "https://CRAN.R-project.org/package=flexmix"
url = "https://cran.r-project.org/src/contrib/flexmix_2.3-14.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/flexmix"
version('2.3-14', '5be4f7764e6a697f4586e60c2bf6e960')

View file

@ -36,7 +36,6 @@ class RForeach(RPackage):
homepage = "https://cran.r-project.org/web/packages/foreach/index.html"
url = "https://cran.r-project.org/src/contrib/foreach_1.4.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/foreach"
version('1.4.3', 'ef45768126661b259f9b8994462c49a0')

View file

@ -32,6 +32,5 @@ class RForeign(RPackage):
homepage = "https://cran.r-project.org/web/packages/foreign/index.html"
url = "https://cran.r-project.org/src/contrib/foreign_0.8-66.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/foreign"
version('0.8-66', 'ff12190f4631dca31e30ca786c2c8f62')

View file

@ -35,7 +35,6 @@ class RFormatr(RPackage):
homepage = "http://yihui.name/formatR"
url = "https://cran.r-project.org/src/contrib/formatR_1.4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/formatR"
version('1.4', '98b9b64b2785b35f9df403e1aab6c73c')

View file

@ -32,6 +32,5 @@ class RFormula(RPackage):
homepage = "https://cran.r-project.org/package=Formula"
url = "https://cran.r-project.org/src/contrib/Formula_1.2-1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/Formula"
version('1.2-1', '2afb31e637cecd0c1106317aca1e4849')

View file

@ -30,7 +30,6 @@ class RFpc(RPackage):
homepage = "http://www.homepages.ucl.ac.uk/~ucakche"
url = "https://cran.r-project.org/src/contrib/fpc_2.1-10.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/fpc"
version('2.1-10', '75e5340e416cd13d7751e06f1c07866b')

View file

@ -46,7 +46,6 @@ class RGdata(RPackage):
homepage = "https://cran.r-project.org/package=gdata"
url = "https://cran.r-project.org/src/contrib/gdata_2.17.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gdata"
version('2.17.0', 'c716b663b9dc16ad8cafe6acc781a75f')

View file

@ -32,7 +32,6 @@ class RGeosphere(RPackage):
homepage = "https://cran.r-project.org/package=geosphere"
url = "https://cran.r-project.org/src/contrib/geosphere_1.5-5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/geosphere"
version('1.5-5', '28efb7a8e266c7f076cdbcf642455f3e')

View file

@ -33,7 +33,6 @@ class RGgmap(RPackage):
homepage = "https://github.com/dkahle/ggmap"
url = "https://cran.r-project.org/src/contrib/ggmap_2.6.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggmap"
version('2.6.1', '25ad414a3a1c6d59a227a9f22601211a')

View file

@ -36,7 +36,6 @@ class RGgplot2(RPackage):
homepage = "http://ggplot2.org/"
url = "https://cran.r-project.org/src/contrib/ggplot2_2.2.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggplot2"
version('2.2.1', '14c5a3507bc123c6e7e9ad3bef7cee5c')
version('2.1.0', '771928cfb97c649c720423deb3ec7fd3')

View file

@ -30,7 +30,6 @@ class RGgpubr(RPackage):
homepage = "http://www.sthda.com/english/rpkgs/ggpubr"
url = "https://cran.r-project.org/src/contrib/ggpubr_0.1.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggpubr"
version('0.1.2', '42a5749ae44121597ef511a7424429d1')

View file

@ -30,7 +30,6 @@ class RGgrepel(RPackage):
homepage = "http://github.com/slowkow/ggrepel"
url = "https://cran.r-project.org/src/contrib/ggrepel_0.6.5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggrepel"
version('0.6.5', '7e2732cd4840efe2dc9e4bc689cf1ee5')

View file

@ -31,7 +31,6 @@ class RGgsci(RPackage):
homepage = "https://github.com/road2stat/ggsci"
url = "https://cran.r-project.org/src/contrib/ggsci_2.4.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggsci"
version('2.4', '8e5dc2fcf84352cacbb91363e26c7175')

View file

@ -32,7 +32,6 @@ class RGgvis(RPackage):
homepage = "http://ggvis.rstudio.com/"
url = "https://cran.r-project.org/src/contrib/ggvis_0.4.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ggvis"
version('0.4.2', '039f45e5c7f1e0652779163d7d99f922')

View file

@ -36,7 +36,6 @@ class RGistr(RPackage):
homepage = "https://github.com/ropensci/gistr"
url = "https://cran.r-project.org/src/contrib/gistr_0.3.6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gistr"
version('0.3.6', '49d548cb3eca0e66711aece37757a2c0')

View file

@ -32,7 +32,6 @@ class RGit2r(RPackage):
homepage = "https://github.com/ropensci/git2r"
url = "https://cran.r-project.org/src/contrib/git2r_0.18.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/git2r"
version('0.18.0', 'fb5741eb490c3d6e23a751a72336f24d')
version('0.15.0', '57658b3298f9b9aadc0dd77b4ef6a1e1')

View file

@ -35,7 +35,6 @@ class RGlmnet(RPackage):
homepage = "http://www.jstatsoft.org/v33/i01/"
url = "https://cran.r-project.org/src/contrib/glmnet_2.0-5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/glmnet"
version('2.0-5', '049b18caa29529614cd684db3beaec2a')

View file

@ -30,7 +30,6 @@ class RGmodels(RPackage):
homepage = "http://www.sf.net/projects/r-gregmisc"
url = "https://cran.r-project.org/src/contrib/gmodels_2.16.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gmodels"
version('2.16.2', 'f13e5feb2a8b9f0cd47fdf25ddc74228')

View file

@ -32,7 +32,6 @@ class RGmp(RPackage):
homepage = "http://mulcyber.toulouse.inra.fr/projects/gmp"
url = "https://cran.r-project.org/src/contrib/gmp_0.5-13.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gmp"
version('0.5-13.1', '4a45d45e53bf7140720bd44f10b075ed')

View file

@ -34,7 +34,6 @@ class RGooglevis(RPackage):
homepage = "https://github.com/mages/googleVis#googlevis"
url = "https://cran.r-project.org/src/contrib/googleVis_0.6.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/googleVis"
version('0.6.0', 'ec36fd2a6884ddc7baa894007d0d0468')

View file

@ -30,6 +30,5 @@ class RGridbase(RPackage):
homepage = "https://cran.r-project.org/web/packages/gridBase/index.html"
url = "https://cran.r-project.org/src/contrib/gridBase_0.4-7.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gridBase"
version('0.4-7', '6d5064a85f5c966a92ee468ae44c5f1f')

View file

@ -31,7 +31,6 @@ class RGridextra(RPackage):
homepage = "https://github.com/baptiste/gridextra"
url = "https://cran.r-project.org/src/contrib/gridExtra_2.2.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gridExtra"
version('2.2.1', '7076c2122d387c7ef3add69a1c4fc1b2')

View file

@ -30,6 +30,5 @@ class RGtable(RPackage):
homepage = "https://cran.r-project.org/web/packages/gtable/index.html"
url = "https://cran.r-project.org/src/contrib/gtable_0.2.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gtable"
version('0.2.0', '124090ae40b2dd3170ae11180e0d4cab')

View file

@ -49,6 +49,5 @@ class RGtools(RPackage):
homepage = "https://cran.r-project.org/package=gtools"
url = "https://cran.r-project.org/src/contrib/gtools_3.5.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/gtools"
version('3.5.0', '45f8800c0336d35046641fbacc56bdbb')

View file

@ -32,7 +32,6 @@ class RHexbin(RPackage):
homepage = "http://github.com/edzer/hexbin"
url = "https://cran.r-project.org/src/contrib/hexbin_1.27.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/hexbin"
version('1.27.1', '7f380390c6511e97df10a810a3b3bb7c')

View file

@ -33,6 +33,5 @@ class RHighr(RPackage):
homepage = "https://github.com/yihui/highr"
url = "https://cran.r-project.org/src/contrib/highr_0.6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/highr"
version('0.6', 'bf47388c5f57dc61962362fb7e1d8b16')

View file

@ -30,7 +30,6 @@ class RHtmltools(RPackage):
homepage = "https://github.com/rstudio/htmltools"
url = "https://cran.r-project.org/src/contrib/htmltools_0.3.5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/htmltools"
version('0.3.5', '5f001aff4a39e329f7342dcec5139724')

View file

@ -32,7 +32,6 @@ class RHtmlwidgets(RPackage):
homepage = "https://github.com/ramnathv/htmlwidgets"
url = "https://cran.r-project.org/src/contrib/htmlwidgets_0.6.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/htmlwidgets"
version('0.6', '7fa522d2eda97593978021bda9670c0e')

View file

@ -36,7 +36,6 @@ class RHttpuv(RPackage):
homepage = "https://github.com/rstudio/httpuv"
url = "https://cran.r-project.org/src/contrib/httpuv_1.3.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/httpuv"
version('1.3.3', 'c78ae068cf59e949b9791be987bb4489')

View file

@ -32,7 +32,6 @@ class RHttr(RPackage):
homepage = "https://github.com/hadley/httr"
url = "https://cran.r-project.org/src/contrib/httr_1.2.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/httr"
version('1.2.1', 'c469948dedac9ab3926f23cf484b33d9')
version('1.1.0', '5ffbbc5c2529e49f00aaa521a2b35600')

View file

@ -32,7 +32,6 @@ class RIgraph(RPackage):
homepage = "http://igraph.org/"
url = "https://cran.r-project.org/src/contrib/igraph_1.0.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/igraph"
version('1.0.1', 'ea33495e49adf4a331e4ba60ba559065')

View file

@ -32,6 +32,5 @@ class RInline(RPackage):
homepage = "https://cran.r-project.org/web/packages/inline/index.html"
url = "https://cran.r-project.org/src/contrib/inline_0.3.14.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/inline"
version('0.3.14', '9fe304a6ebf0e3889c4c6a7ad1c50bca')

View file

@ -32,7 +32,6 @@ class RIpred(RPackage):
homepage = "https://cran.r-project.org/package=ipred"
url = "https://cran.r-project.org/src/contrib/ipred_0.9-5.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/ipred"
version('0.9-5', 'ce8768547a7aa9554ad3650b18ea3cbd')

View file

@ -32,7 +32,6 @@ class RIrlba(RPackage):
homepage = "https://cran.r-project.org/web/packages/irlba/index.html"
url = "https://cran.r-project.org/src/contrib/irlba_2.1.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/irlba"
version('2.1.2', '290940abf6662ed10c0c5a8db1bc6e88')
version('2.0.0', '557674cf8b68fea5b9f231058c324d26')

View file

@ -31,6 +31,5 @@ class RIterators(RPackage):
homepage = "https://cran.r-project.org/web/packages/iterators/index.html"
url = "https://cran.r-project.org/src/contrib/iterators_1.0.8.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/iterators"
version('1.0.8', '2ded7f82cddd8174f1ec98607946c6ee')

View file

@ -32,7 +32,6 @@ class RJpeg(RPackage):
homepage = "http://www.rforge.net/jpeg/"
url = "https://cran.r-project.org/src/contrib/jpeg_0.1-8.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/jpeg"
version('0.1-8', '696007451d14395b1ed1d0e9af667a57')

View file

@ -39,7 +39,6 @@ class RJsonlite(RPackage):
homepage = "https://github.com/jeroenooms/jsonlite"
url = "https://cran.r-project.org/src/contrib/jsonlite_1.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/jsonlite"
version('1.2', '80cd2678ae77254be470f5931db71c51')
version('1.0', 'c8524e086de22ab39b8ac8000220cc87')

View file

@ -33,7 +33,6 @@ class RKernlab(RPackage):
homepage = "https://cran.r-project.org/package=kernlab"
url = "https://cran.r-project.org/src/contrib/kernlab_0.9-25.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/kernlab"
version('0.9-25', '1182a2a336a79fd2cf70b4bc5a35353f')

View file

@ -30,7 +30,6 @@ class RKernsmooth(RPackage):
homepage = "https://cran.r-project.org/package=KernSmooth"
url = "https://cran.r-project.org/src/contrib/KernSmooth_2.23-15.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/KernSmooth"
version('2.23-15', '746cdf26dec72004cf19978e87dcc982')

View file

@ -31,7 +31,6 @@ class RKknn(RPackage):
homepage = "https://cran.r-project.org/package=kknn"
url = "https://cran.r-project.org/src/contrib/kknn_1.3.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/kknn"
version('1.3.1', '372cd84f618cd5005f8c4c5721755117')

View file

@ -32,7 +32,6 @@ class RKnitr(RPackage):
homepage = "http://yihui.name/knitr/"
url = "https://cran.rstudio.com/src/contrib/knitr_1.14.tar.gz"
list_url = "https://cran.rstudio.com/src/contrib/Archive/knitr"
version('1.14', 'ef0fbeaa9372f99ffbc57212a7781511')
version('0.6', 'c67d6db84cd55594a9e870c90651a3db')

View file

@ -30,6 +30,5 @@ class RLabeling(RPackage):
homepage = "https://cran.r-project.org/web/packages/labeling/index.html"
url = "https://cran.r-project.org/src/contrib/labeling_0.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/labeling"
version('0.3', 'ccd7082ec0b211aba8a89d85176bb534')

View file

@ -32,6 +32,5 @@ class RLaplacesdemon(RPackage):
homepage = "https://github.com/LaplacesDemonR/LaplacesDemon"
url = "https://cran.r-project.org/src/contrib/LaplacesDemon_16.0.1.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/LaplacesDemon"
version('16.0.1', '1e4dab2dd0e27251734d68b0bfdbe911')

View file

@ -33,6 +33,5 @@ class RLattice(RPackage):
homepage = "http://lattice.r-forge.r-project.org/"
url = "https://cran.r-project.org/src/contrib/lattice_0.20-34.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/lattice"
version('0.20-34', 'c2a648b22d4206ae7526fb70b8e90fed')

Some files were not shown because too many files have changed in this diff Show more