r-nloptr: Create new package. (#6063)

This commit is contained in:
lingnanyuan 2017-10-31 19:30:49 -05:00 committed by Christoph Junghans
parent cfb685aa32
commit 1ec8f6ea3f

View file

@ -26,15 +26,19 @@
class RNloptr(RPackage): class RNloptr(RPackage):
"""nloptr is an R interface to NLopt. NLopt is a free/open-source library """nloptr is an R interface to NLopt. NLopt is a free/open-source
for nonlinear optimization, providing a common interface for a number of library for nonlinear optimization, providing a common interface
different free optimization routines available online as well as original for a number of different free optimization routines available
implementations of various other algorithms. See online as well as original implementations of various other
http://ab-initio.mit.edu/wiki/index.php/NLopt_Introduction for more algorithms. See http://ab-initio.mit.edu/wiki/index.php/NLopt
information on the available algorithms. During installation on Unix the _Introduction for more information on the available algorithms.
NLopt code is downloaded and compiled from the NLopt website.""" During installation on Unix the NLopt code is downloaded and
compiled from the NLopt website."""
homepage = "https://cran.r-project.org/package=nloptr" homepage = "https://cran.r-project.org/package=nloptr"
url = "https://cran.r-project.org/src/contrib/nloptr_1.0.4.tar.gz" url = "https://cran.rstudio.com/src/contrib/nloptr_1.0.4.tar.gz"
list_url = "https://cran.rstudio.com/src/contrib/Archive/nloptr"
version('1.0.4', '9af69a613349b236fd377d0a107f484c') version('1.0.4', 'f2775dfb4f7f5552d46937a04c062b0d')
depends_on('r-testthat', type=('build', 'run'))