Compare commits
No commits in common. "rawhide" and "f27" have entirely different histories.
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,10 +1,3 @@
|
|||||||
/curl_3.0.tar.gz
|
/curl_3.0.tar.gz
|
||||||
/curl_3.1.tar.gz
|
/curl_3.1.tar.gz
|
||||||
/curl_3.2.tar.gz
|
/curl_3.2.tar.gz
|
||||||
/curl_3.3.tar.gz
|
|
||||||
/curl_4.0.tar.gz
|
|
||||||
/curl_4.1.tar.gz
|
|
||||||
/curl_4.2.tar.gz
|
|
||||||
/curl_4.3.tar.gz
|
|
||||||
/curl_4.3.1.tar.gz
|
|
||||||
/curl_4.3.2.tar.gz
|
|
||||||
|
85
R-curl.spec
85
R-curl.spec
@ -1,53 +1,52 @@
|
|||||||
%bcond_with bootstrap
|
|
||||||
%bcond_with network
|
|
||||||
|
|
||||||
%global packname curl
|
%global packname curl
|
||||||
%global packver 4.3.2
|
|
||||||
%global rlibdir %{_libdir}/R/library
|
%global rlibdir %{_libdir}/R/library
|
||||||
|
|
||||||
|
# Dependency loops and/or not yet packaged.
|
||||||
|
%global with_doc 0
|
||||||
|
# These all require the network at the moment + dependency loop.
|
||||||
|
%global with_test 0
|
||||||
|
|
||||||
Name: R-%{packname}
|
Name: R-%{packname}
|
||||||
Version: 4.3.2
|
Version: 3.2
|
||||||
Release: %autorelease
|
Release: 2%{?dist}
|
||||||
Summary: A Modern and Flexible Web Client for R
|
Summary: A Modern and Flexible Web Client for R
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://CRAN.R-project.org/package=%{packname}
|
URL: https://cran.r-project.org/web/packages/%{packname}/index.html
|
||||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
|
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
|
||||||
|
|
||||||
# Here's the R view of the dependencies world:
|
# Here's the R view of the dependencies world:
|
||||||
# Depends:
|
# Depends:
|
||||||
# Imports:
|
# Imports:
|
||||||
# Suggests: R-spelling, R-testthat >= 1.0.0, R-knitr, R-jsonlite, R-rmarkdown, R-magrittr, R-httpuv >= 1.4.4, R-webutils
|
# Suggests: R-spelling, R-testthat >= 1.0.0, R-knitr, R-jsonlite, R-rmarkdown, R-magrittr, R-httpuv, R-webutils
|
||||||
# LinkingTo:
|
# LinkingTo:
|
||||||
# Enhances:
|
# Enhances:
|
||||||
|
|
||||||
BuildRequires: R-devel
|
BuildRequires: R-devel
|
||||||
BuildRequires: tex(latex)
|
BuildRequires: tex(latex)
|
||||||
BuildRequires: pkgconfig(libcurl)
|
BuildRequires: pkgconfig(libcurl)
|
||||||
%if %{without bootstrap}
|
|
||||||
BuildRequires: R-spelling
|
|
||||||
BuildRequires: R-testthat >= 1.0.0
|
BuildRequires: R-testthat >= 1.0.0
|
||||||
|
BuildRequires: R-httpuv
|
||||||
BuildRequires: R-jsonlite
|
BuildRequires: R-jsonlite
|
||||||
BuildRequires: R-httpuv >= 1.4.4
|
%if %{with_doc}
|
||||||
BuildRequires: R-knitr
|
BuildRequires: R-knitr
|
||||||
BuildRequires: glyphicons-halflings-fonts
|
|
||||||
BuildRequires: R-rmarkdown
|
|
||||||
BuildRequires: R-magrittr
|
BuildRequires: R-magrittr
|
||||||
%if %{with network}
|
BuildRequires: R-rmarkdown
|
||||||
BuildRequires: R-webutils
|
|
||||||
%endif
|
%endif
|
||||||
|
%if %{with_test}
|
||||||
|
BuildRequires: R-webutils
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The curl() and curl_download() functions provide highly configurable drop-in
|
The curl() and curl_download() functions provide highly configurable
|
||||||
replacements for base url() and download.file() with better performance,
|
drop-in replacements for base url() and download.file() with better
|
||||||
support for encryption (https, ftps), gzip compression, authentication, and
|
performance, support for encryption (https, ftps), gzip compression,
|
||||||
other 'libcurl' goodies. The core of the package implements a framework for
|
authentication, and other 'libcurl' goodies. The core of the package
|
||||||
performing fully customized requests where data can be processed either in
|
implements a framework for performing fully customized requests where data
|
||||||
memory, on disk, or streaming via the callback or connection interfaces. Some
|
can be processed either in memory, on disk, or streaming via the callback
|
||||||
knowledge of 'libcurl' is recommended; for a more-user-friendly web client see
|
or connection interfaces. Some knowledge of 'libcurl' is recommended; for
|
||||||
the 'httr' package which builds on this package with http specific tools and
|
a more-user-friendly web client see the 'httr' package which builds on
|
||||||
logic.
|
this package with http specific tools and logic.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
@ -65,16 +64,15 @@ rm -f %{buildroot}%{rlibdir}/R.css
|
|||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{without bootstrap}
|
%if %{with_test}
|
||||||
export LANG=C.UTF-8
|
TEST=
|
||||||
ARGS=
|
%else
|
||||||
%if %{without network}
|
TEST="--no-tests --no-examples"
|
||||||
export _R_CHECK_FORCE_SUGGESTS_=0
|
|
||||||
ARGS="$ARGS --no-tests --no-examples --ignore-vignettes"
|
|
||||||
%endif
|
%endif
|
||||||
export _R_CHECK_FORCE_SUGGESTS_=0
|
%if %{with_doc}
|
||||||
ARGS="$ARGS --ignore-vignettes"
|
%{_bindir}/R CMD check %{packname} $TEST
|
||||||
%{_bindir}/R CMD check %{packname} $ARGS
|
%else
|
||||||
|
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes $TEST
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
@ -90,10 +88,27 @@ ARGS="$ARGS --ignore-vignettes"
|
|||||||
%{rlibdir}/%{packname}/Meta
|
%{rlibdir}/%{packname}/Meta
|
||||||
%{rlibdir}/%{packname}/R
|
%{rlibdir}/%{packname}/R
|
||||||
%{rlibdir}/%{packname}/help
|
%{rlibdir}/%{packname}/help
|
||||||
|
%{rlibdir}/%{packname}/data
|
||||||
%{rlibdir}/%{packname}/WORDLIST
|
%{rlibdir}/%{packname}/WORDLIST
|
||||||
%dir %{rlibdir}/%{packname}/libs
|
%dir %{rlibdir}/%{packname}/libs
|
||||||
%{rlibdir}/%{packname}/libs/%{packname}.so
|
%{rlibdir}/%{packname}/libs/%{packname}.so
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
%autochangelog
|
* Thu May 17 2018 Tom Callaway <spot@fedoraproject.org> - 3.2-2
|
||||||
|
- rebuild for R 3.5.0
|
||||||
|
|
||||||
|
* Wed Apr 25 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 3.2-1
|
||||||
|
- New upstream release.
|
||||||
|
|
||||||
|
* Fri Mar 09 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> 3.1-1
|
||||||
|
- New upstream release.
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 10 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 3.0-1
|
||||||
|
- New upstream release.
|
||||||
|
|
||||||
|
* Fri Aug 25 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 2.8.1-1
|
||||||
|
- initial package for Fedora
|
||||||
|
70
changelog
70
changelog
@ -1,70 +0,0 @@
|
|||||||
* Tue Aug 2 2022 Tom Callaway <spot@fedoraproject.org> - 4.3.1-3
|
|
||||||
- rebuild for R 4.2.1
|
|
||||||
- bootstrap on
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jun 7 2021 Tom Callaway <spot@fedoraproject.org> - 4.3.1-1
|
|
||||||
- update to 4.3.1
|
|
||||||
- disable with_doc
|
|
||||||
- Rebuilt for R 4.1.0
|
|
||||||
|
|
||||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 5 2020 Tom Callaway <spot@fedoraproject.org> - 4.3-3
|
|
||||||
- conditionalize check to break loop with httpuv
|
|
||||||
- rebuild for R 4
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 02 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.3-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Fri Sep 27 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.2-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Wed Sep 18 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.1-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Sat Aug 17 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.0-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Sun Aug 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 3.3-3
|
|
||||||
- Remove explicit dependencies provided by automatic dependency generator
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 16 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 3.3-1
|
|
||||||
- Update to latest version
|
|
||||||
- Enable documentation
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu May 17 2018 Tom Callaway <spot@fedoraproject.org> - 3.2-2
|
|
||||||
- rebuild for R 3.5.0
|
|
||||||
|
|
||||||
* Wed Apr 25 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 3.2-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Fri Mar 09 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> 3.1-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Nov 10 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 3.0-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Fri Aug 25 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 2.8.1-1
|
|
||||||
- initial package for Fedora
|
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (curl_4.3.2.tar.gz) = 7b8e9b136f206733a3314a876de21bf7d52b9bcef1c8c399fc9b0e1983a12853da18bd7ce06959fdd83957cd3637a11fc9246154187427a3c6479101cc492322
|
SHA512 (curl_3.2.tar.gz) = 48310b5134ef59aaba0012b7b5e307e01249527e5e9ef986b366907ad6d13184beb81ece4185bd4bebe7d5a027a9069c345033188e65dd06dd21e06b260906d3
|
||||||
|
Loading…
Reference in New Issue
Block a user