diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2022-02-24 01:30:11 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2022-02-24 01:30:11 +0000 |
commit | b8178e13937f68d681cd9b6c34f7326a29120af5 (patch) | |
tree | c6ac603e48386182b2668bc719e3548c191a7431 | |
parent | d59de5a201750048dd3c9e6441f61c01698b5ede (diff) |
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | R-CRAN-logmult.spec | 26 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 18 insertions, 11 deletions
@@ -1 +1,2 @@ /logmult_0.7.3.tar.gz +/logmult_0.7.4.tar.gz diff --git a/R-CRAN-logmult.spec b/R-CRAN-logmult.spec index 8f01b29..d8ae64e 100644 --- a/R-CRAN-logmult.spec +++ b/R-CRAN-logmult.spec @@ -1,9 +1,10 @@ +%global __brp_check_rpaths %{nil} %global packname logmult -%global packver 0.7.3 +%global packver 0.7.4 %global rlibdir /usr/local/lib/R/library Name: R-CRAN-%{packname} -Version: 0.7.3 +Version: 0.7.4 Release: 1%{?dist}%{?buildtag} Summary: Log-Multiplicative Models, Including Association Models @@ -33,14 +34,17 @@ Functions to fit log-multiplicative models using 'gnm', with support for convenient printing, plots, and jackknife/bootstrap standard errors. For complex survey data, models can be fitted from design objects from the 'survey' package. Currently supported models include UNIDIFF (Erikson & -Goldthorpe), a.k.a. log-multiplicative layer effect model (Xie), and -several association models: Goodman's row-column association models of the -RC(M) and RC(M)-L families with one or several dimensions; two -skew-symmetric association models proposed by Yamaguchi and by van der -Heijden & Mooijaart. Functions allow computing the intrinsic association -coefficient (and therefore the Altham index), including via the Bayes -shrinkage estimator proposed by Zhou; and the RAS/IPF/Deming-Stephan -algorithm. +Goldthorpe, 1992), a.k.a. log-multiplicative layer effect model (Xie, +1992) <doi:10.2307/2096242>, and several association models: Goodman +(1979) <doi:10.2307/2286971> row-column association models of the RC(M) +and RC(M)-L families with one or several dimensions; two skew-symmetric +association models proposed by Yamaguchi (1990) <doi:10.2307/271086> and +by van der Heijden & Mooijaart (1995) <doi:10.1177/0049124195024001002> +Functions allow computing the intrinsic association coefficient (see +Bouchet-Valat (2022) <doi:10.1177/0049124119852389>) and the Altham (1970) +index <doi:10.1111/j.2517-6161.1970.tb00816.x>, including via the Bayes +shrinkage estimator proposed by Zhou (2015) +<doi:10.1177/0081175015570097>; and the RAS/IPF/Deming-Stephan algorithm. %prep %setup -q -c -n %{packname} @@ -50,6 +54,8 @@ 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' {} \; @@ -1 +1 @@ -3abf789c5a6108356e44466654b0fd2b logmult_0.7.3.tar.gz +aeb4fb29ef3a98fa287ee7a1dfb6431d logmult_0.7.4.tar.gz |