Initial commit (#1862895).
This commit is contained in:
parent
6bb913418c
commit
21575b283f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/magick_2.4.0.tar.gz
|
107
R-magick.spec
Normal file
107
R-magick.spec
Normal file
@ -0,0 +1,107 @@
|
||||
%global packname magick
|
||||
%global packver 2.4.0
|
||||
%global rlibdir %{_libdir}/R/library
|
||||
|
||||
%bcond_without bootstrap
|
||||
%global __suggests_exclude ^R\\((gifski|tesseract)\\)
|
||||
|
||||
# Examples and vignettes require the network.
|
||||
%bcond_with network
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: 2.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Advanced Graphics and Image-Processing in R
|
||||
|
||||
License: MIT
|
||||
URL: https://CRAN.R-project.org/package=%{packname}
|
||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-Rcpp >= 0.12.12, R-magrittr, R-curl
|
||||
# Suggests: R-av >= 0.3, R-spelling, R-jsonlite, R-methods, R-knitr, R-rmarkdown, R-rsvg, R-webp, R-pdftools, R-ggplot2, R-gapminder, R-IRdisplay, R-tesseract >= 2.0, R-gifski
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
BuildRequires: R-devel
|
||||
BuildRequires: tex(latex)
|
||||
BuildRequires: R-Rcpp-devel >= 0.12.12
|
||||
BuildRequires: R-magrittr
|
||||
BuildRequires: R-curl
|
||||
BuildRequires: R-spelling
|
||||
BuildRequires: R-jsonlite
|
||||
BuildRequires: R-methods
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-rmarkdown
|
||||
BuildRequires: R-rsvg
|
||||
BuildRequires: R-webp
|
||||
BuildRequires: R-ggplot2
|
||||
BuildRequires: R-gapminder
|
||||
BuildRequires: R-IRdisplay
|
||||
%if %{without bootstrap}
|
||||
BuildRequires: R-pdftools
|
||||
BuildRequires: R-tesseract >= 2.0
|
||||
%endif
|
||||
BuildRequires: pkgconfig(Magick++)
|
||||
|
||||
# Uses rust, so unlikely to package it soon.
|
||||
# BuildRequires: R-gifski
|
||||
# Uses ffmpeg, so won't ever be in Fedora.
|
||||
# BuildRequires: R-av >= 0.3
|
||||
|
||||
%description
|
||||
Bindings to 'ImageMagick': the most comprehensive open-source image processing
|
||||
library available. Supports many common formats (png, jpeg, tiff, pdf, etc) and
|
||||
manipulations (rotate, scale, crop, trim, flip, blur, etc). All operations are
|
||||
vectorized via the Magick++ STL meaning they operate either on a single frame
|
||||
or a series of frames for working with layers, collages, or animation. In
|
||||
RStudio images are automatically previewed when printed to the console,
|
||||
resulting in an interactive editing environment. The latest version of the
|
||||
package includes a native graphics device for creating in-memory graphics or
|
||||
drawing onto images using pixel coordinates.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -c -n %{packname}
|
||||
|
||||
|
||||
%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
|
||||
|
||||
|
||||
%check
|
||||
%if %{with network}
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname}
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --no-examples --no-vignettes
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
%dir %{rlibdir}/%{packname}
|
||||
%doc %{rlibdir}/%{packname}/doc
|
||||
%doc %{rlibdir}/%{packname}/html
|
||||
%{rlibdir}/%{packname}/DESCRIPTION
|
||||
%doc %{rlibdir}/%{packname}/NEWS
|
||||
%license %{rlibdir}/%{packname}/LICENSE
|
||||
%{rlibdir}/%{packname}/INDEX
|
||||
%{rlibdir}/%{packname}/NAMESPACE
|
||||
%{rlibdir}/%{packname}/Meta
|
||||
%{rlibdir}/%{packname}/R
|
||||
%{rlibdir}/%{packname}/help
|
||||
%dir %{rlibdir}/%{packname}/libs
|
||||
%{rlibdir}/%{packname}/libs/%{packname}.so
|
||||
%{rlibdir}/%{packname}/WORDLIST
|
||||
%{rlibdir}/%{packname}/images
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Aug 03 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2.4.0-1
|
||||
- initial package for Fedora
|
Loading…
Reference in New Issue
Block a user