Fix alpha case of dependencies.

A while ago I was asked to convert packages to all lowercase. That was
done but some dependencies did not get converted in the specification.
This commit fixes that as well as a couple of urls that need to be made
explicit and a missing dependency on jdk.
This commit is contained in:
Glenn Johnson
2016-07-21 19:58:04 -05:00
parent e389afedaa
commit e083c91d5e
9 changed files with 15 additions and 11 deletions

View File

@@ -32,11 +32,12 @@ class RXlconnectjars(Package):
url = "https://cran.r-project.org/src/contrib/XLConnectJars_0.2-9.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/XLConnectJars"
version('0.2-9', 'e6d6b1acfede26acaa616ee421bd30fb')
version('0.2-9', 'e6d6b1acfede26acaa616ee421bd30fb',
url='https://cran.r-project.org/src/contrib/Archive/XLConnectJars/XLConnectJars_0.2-9.tar.gz')
extends('R')
depends_on('r-rJava')
depends_on('r-rjava')
def install(self, spec, prefix):
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),