-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
814 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
%global __brp_check_rpaths %{nil} | ||
%global __requires_exclude ^libmpi | ||
%global packname OPSR | ||
%global packver 0.1.2 | ||
%global rlibdir /usr/local/lib/R/library | ||
|
||
Name: R-CRAN-%{packname} | ||
Version: 0.1.2 | ||
Release: 1%{?dist}%{?buildtag} | ||
Summary: Ordinal Probit Switching Regression | ||
|
||
License: GPL (>= 3) | ||
URL: https://cran.r-project.org/package=%{packname} | ||
Source0: %{url}&version=%{packver}#/%{packname}_%{packver}.tar.gz | ||
|
||
|
||
BuildRequires: R-devel >= 3.5.0 | ||
Requires: R-core >= 3.5.0 | ||
BuildRequires: R-CRAN-Rdpack >= 0.7 | ||
BuildRequires: R-CRAN-car | ||
BuildRequires: R-CRAN-Formula | ||
BuildRequires: R-CRAN-MASS | ||
BuildRequires: R-CRAN-maxLik | ||
BuildRequires: R-methods | ||
BuildRequires: R-CRAN-mvtnorm | ||
BuildRequires: R-CRAN-Rcpp | ||
BuildRequires: R-CRAN-sandwich | ||
BuildRequires: R-stats | ||
BuildRequires: R-CRAN-texreg | ||
BuildRequires: R-utils | ||
BuildRequires: R-CRAN-RcppArmadillo | ||
Requires: R-CRAN-Rdpack >= 0.7 | ||
Requires: R-CRAN-car | ||
Requires: R-CRAN-Formula | ||
Requires: R-CRAN-MASS | ||
Requires: R-CRAN-maxLik | ||
Requires: R-methods | ||
Requires: R-CRAN-mvtnorm | ||
Requires: R-CRAN-Rcpp | ||
Requires: R-CRAN-sandwich | ||
Requires: R-stats | ||
Requires: R-CRAN-texreg | ||
Requires: R-utils | ||
|
||
%description | ||
Estimates ordinal probit switching regression models - a Heckman type | ||
selection model with an ordinal selection and continuous outcomes. | ||
Different model specifications are allowed for each treatment/regime. For | ||
more details on the method, see Wang & Mokhtarian (2024) | ||
<doi:10.1016/j.tra.2024.104072> or Chiburis & Lokshin (2007) | ||
<doi:10.1177/1536867X0700700202>. | ||
|
||
%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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
%global __brp_check_rpaths %{nil} | ||
%global __requires_exclude ^libmpi | ||
%global packname SensIAT | ||
%global packver 0.1.0 | ||
%global rlibdir /usr/local/lib/R/library | ||
|
||
Name: R-CRAN-%{packname} | ||
Version: 0.1.0 | ||
Release: 1%{?dist}%{?buildtag} | ||
Summary: Sensitivity Analysis for Irregular Assessment Times | ||
|
||
License: MIT + file LICENSE | ||
URL: https://cran.r-project.org/package=%{packname} | ||
Source0: %{url}&version=%{packver}#/%{packname}_%{packver}.tar.gz | ||
|
||
|
||
BuildRequires: R-devel >= 4.4.0 | ||
Requires: R-core >= 4.4.0 | ||
BuildRequires: R-CRAN-Rcpp >= 1.0.12 | ||
BuildRequires: R-CRAN-assertthat | ||
BuildRequires: R-CRAN-dplyr | ||
BuildRequires: R-CRAN-glue | ||
BuildRequires: R-CRAN-KernSmooth | ||
BuildRequires: R-CRAN-MASS | ||
BuildRequires: R-methods | ||
BuildRequires: R-CRAN-orthogonalsplinebasis | ||
BuildRequires: R-CRAN-pracma | ||
BuildRequires: R-CRAN-purrr | ||
BuildRequires: R-CRAN-rlang | ||
BuildRequires: R-splines | ||
BuildRequires: R-stats | ||
BuildRequires: R-CRAN-survival | ||
BuildRequires: R-CRAN-tibble | ||
BuildRequires: R-CRAN-tidyr | ||
BuildRequires: R-utils | ||
Requires: R-CRAN-Rcpp >= 1.0.12 | ||
Requires: R-CRAN-assertthat | ||
Requires: R-CRAN-dplyr | ||
Requires: R-CRAN-glue | ||
Requires: R-CRAN-KernSmooth | ||
Requires: R-CRAN-MASS | ||
Requires: R-methods | ||
Requires: R-CRAN-orthogonalsplinebasis | ||
Requires: R-CRAN-pracma | ||
Requires: R-CRAN-purrr | ||
Requires: R-CRAN-rlang | ||
Requires: R-splines | ||
Requires: R-stats | ||
Requires: R-CRAN-survival | ||
Requires: R-CRAN-tibble | ||
Requires: R-CRAN-tidyr | ||
Requires: R-utils | ||
|
||
%description | ||
Sensitivity analysis for trials with irregular and informative assessment | ||
times, based on a new influence function-based, augmented inverse | ||
intensity-weighted estimator. | ||
|
||
%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} |
Oops, something went wrong.