%global __brp_check_rpaths %{nil} %global __requires_exclude ^libmpi %global packname REndo %global packver 2.4.9 %global rlibdir /usr/local/lib/R/library Name: R-CRAN-%{packname} Version: 2.4.9 Release: 1%{?dist}%{?buildtag} Summary: Fitting Linear Models with Endogenous Regressors using Latent Instrumental Variables License: GPL-3 URL: https://cran.r-project.org/package=%{packname} Source0: %{url}&version=%{packver}#/%{packname}_%{packver}.tar.gz BuildRequires: R-devel >= 3.4 Requires: R-core >= 3.4 BuildRequires: R-methods >= 3.4 BuildRequires: R-stats >= 3.4 BuildRequires: R-utils >= 3.4 BuildRequires: R-CRAN-optimx >= 2013.8.7 BuildRequires: R-CRAN-corpcor >= 1.6.9 BuildRequires: R-CRAN-AER >= 1.2.5 BuildRequires: R-CRAN-Matrix >= 1.2.14 BuildRequires: R-CRAN-Formula >= 1.2 BuildRequires: R-CRAN-data.table >= 1.11.8 BuildRequires: R-CRAN-lme4 >= 1.1.18.1 BuildRequires: R-CRAN-mvtnorm >= 1.0.8 BuildRequires: R-CRAN-Rcpp >= 1.0.3 BuildRequires: R-CRAN-lmtest >= 0.9.35 BuildRequires: R-CRAN-RcppEigen Requires: R-methods >= 3.4 Requires: R-stats >= 3.4 Requires: R-utils >= 3.4 Requires: R-CRAN-optimx >= 2013.8.7 Requires: R-CRAN-corpcor >= 1.6.9 Requires: R-CRAN-AER >= 1.2.5 Requires: R-CRAN-Matrix >= 1.2.14 Requires: R-CRAN-Formula >= 1.2 Requires: R-CRAN-data.table >= 1.11.8 Requires: R-CRAN-lme4 >= 1.1.18.1 Requires: R-CRAN-mvtnorm >= 1.0.8 Requires: R-CRAN-Rcpp >= 1.0.3 Requires: R-CRAN-lmtest >= 0.9.35 %description Fits linear models with endogenous regressor using latent instrumental variable approaches. The methods included in the package are Lewbel's (1997) higher moments approach as well as Lewbel's (2012) heteroscedasticity approach, Park and Gupta's (2012) joint estimation method that uses Gaussian copula and Kim and Frees's (2007) multilevel generalized method of moment approach that deals with endogeneity in a multilevel setting. These are statistical techniques to address the endogeneity problem where no external instrumental variables are needed. See the publication related to this package in the Journal of Statistical Software for more details: . Note that with version 2.0.0 sweeping changes were introduced which greatly improve functionality and usability but break backwards compatibility. %prep %setup -q -c -n %{packname} # fix end of executable files find -type f -executable -exec grep -Iq . {} \; -exec sed -i -e '$a\' {} \; # prevent binary stripping [ -d %{packname}/src ] && find %{packname}/src -type f -exec \ sed -i 's@/usr/bin/strip@/usr/bin/true@g' {} \; || true [ -d %{packname}/src ] && find %{packname}/src/Make* -type f -exec \ sed -i 's@-g0@@g' {} \; || true # don't allow local prefix in executable scripts find -type f -executable -exec sed -Ei 's@#!( )*/usr/local/bin@#!/usr/bin@g' {} \; %build %install mkdir -p %{buildroot}%{rlibdir} %{_bindir}/R CMD INSTALL -l %{buildroot}%{rlibdir} %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -f %{buildroot}%{rlibdir}/R.css # remove buildroot from installed files find %{buildroot}%{rlibdir} -type f -exec sed -i "s@%{buildroot}@@g" {} \; %files %{rlibdir}/%{packname}