%global __brp_check_rpaths %{nil} %global __requires_exclude ^libmpi %global packname stplanr %global packver 1.2.2 %global rlibdir /usr/local/lib/R/library Name: R-CRAN-%{packname} Version: 1.2.2 Release: 1%{?dist}%{?buildtag} Summary: Sustainable Transport Planning License: MIT + file LICENSE 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 BuildArch: noarch BuildRequires: R-CRAN-curl >= 3.2 BuildRequires: R-CRAN-jsonlite >= 1.5 BuildRequires: R-CRAN-httr >= 1.3.1 BuildRequires: R-CRAN-dplyr >= 0.7.6 BuildRequires: R-CRAN-sf >= 0.6.3 BuildRequires: R-CRAN-nabor >= 0.5.0 BuildRequires: R-CRAN-rlang >= 0.2.2 BuildRequires: R-CRAN-Rcpp >= 0.12.1 BuildRequires: R-CRAN-lwgeom >= 0.1.4 BuildRequires: R-CRAN-data.table BuildRequires: R-CRAN-geosphere BuildRequires: R-CRAN-magrittr BuildRequires: R-methods BuildRequires: R-CRAN-od BuildRequires: R-CRAN-pbapply BuildRequires: R-CRAN-sfheaders Requires: R-CRAN-curl >= 3.2 Requires: R-CRAN-jsonlite >= 1.5 Requires: R-CRAN-httr >= 1.3.1 Requires: R-CRAN-dplyr >= 0.7.6 Requires: R-CRAN-sf >= 0.6.3 Requires: R-CRAN-nabor >= 0.5.0 Requires: R-CRAN-rlang >= 0.2.2 Requires: R-CRAN-Rcpp >= 0.12.1 Requires: R-CRAN-lwgeom >= 0.1.4 Requires: R-CRAN-data.table Requires: R-CRAN-geosphere Requires: R-CRAN-magrittr Requires: R-methods Requires: R-CRAN-od Requires: R-CRAN-pbapply Requires: R-CRAN-sfheaders %description Tools for transport planning with an emphasis on spatial transport data and non-motorized modes. The package was originally developed to support the 'Propensity to Cycle Tool', a publicly available strategic cycle network planning tool (Lovelace et al. 2017) <doi:10.5198/jtlu.2016.862>, but has since been extended to support public transport routing and accessibility analysis (Moreno-Monroy et al. 2017) <doi:10.1016/j.jtrangeo.2017.08.012> and routing with locally hosted routing engines such as 'OSRM' (Lowans et al. 2023) <doi:10.1016/j.enconman.2023.117337>. The main functions are for creating and manipulating geographic "desire lines" from origin-destination (OD) data (building on the 'od' package); calculating routes on the transport network locally and via interfaces to routing services such as <https://cyclestreets.net/> (Desjardins et al. 2021) <doi:10.1007/s11116-021-10197-1>; and calculating route segment attributes such as bearing. The package implements the 'travel flow aggregration' method described in Morgan and Lovelace (2020) <doi:10.1177/2399808320942779> and the 'OD jittering' method described in Lovelace et al. (2022) <doi:10.32866/001c.33873>. Further information on the package's aim and scope can be found in the vignettes and in a paper in the R Journal (Lovelace and Ellison 2018) <doi:10.32614/RJ-2018-053>, and in a paper outlining the landscape of open source software for geographic methods in transport planning (Lovelace, 2021) <doi:10.1007/s10109-020-00342-2>. %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}