Compare commits

..

No commits in common. "rawhide" and "f29" have entirely different histories.
rawhide ... f29

4 changed files with 55 additions and 104 deletions

6
.gitignore vendored
View File

@ -2,9 +2,3 @@
/curl_3.1.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

View File

@ -1,18 +1,19 @@
%bcond_with bootstrap
%bcond_with network
%global packname curl
%global packver 4.3.2
%global packname curl
%global rlibdir %{_libdir}/R/library
# Dependency loops and/or not yet packaged.
%global with_doc 1
# These all require the network at the moment + dependency loop.
%global with_test 0
Name: R-%{packname}
Version: 4.3.2
Release: %autorelease
Version: 3.3
Release: 1%{?dist}
Summary: A Modern and Flexible Web Client for R
License: MIT
URL: https://CRAN.R-project.org/package=%{packname}
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:
# Depends:
@ -21,33 +22,33 @@ Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.
# LinkingTo:
# Enhances:
Suggests: R-httpuv >= 1.4.4
BuildRequires: R-devel
BuildRequires: tex(latex)
BuildRequires: pkgconfig(libcurl)
%if %{without bootstrap}
BuildRequires: R-spelling
BuildRequires: R-testthat >= 1.0.0
BuildRequires: R-jsonlite
BuildRequires: R-httpuv >= 1.4.4
%if %{with_doc}
BuildRequires: R-knitr
BuildRequires: glyphicons-halflings-fonts
BuildRequires: R-rmarkdown
BuildRequires: R-magrittr
%if %{with network}
BuildRequires: R-webutils
%endif
%if %{with_test}
BuildRequires: R-webutils
%endif
%description
The curl() and curl_download() functions provide highly configurable drop-in
replacements for base url() and download.file() with better performance,
support for encryption (https, ftps), gzip compression, authentication, and
other 'libcurl' goodies. The core of the package implements a framework for
performing fully customized requests where data can be processed either in
memory, on disk, or streaming via the callback or connection interfaces. Some
knowledge of 'libcurl' is recommended; for a more-user-friendly web client see
the 'httr' package which builds on this package with http specific tools and
logic.
The curl() and curl_download() functions provide highly configurable
drop-in replacements for base url() and download.file() with better
performance, support for encryption (https, ftps), gzip compression,
authentication, and other 'libcurl' goodies. The core of the package
implements a framework for performing fully customized requests where
data can be processed either in memory, on disk, or streaming via the
callback or connection interfaces. Some knowledge of 'libcurl' is
recommended; for a more-user-friendly web client see the 'httr' package
which builds on this package with http specific tools and logic.
%prep
@ -65,17 +66,16 @@ rm -f %{buildroot}%{rlibdir}/R.css
%check
%if %{without bootstrap}
export LANG=C.UTF-8
ARGS=
%if %{without network}
%if ! %{with_test}
export _R_CHECK_FORCE_SUGGESTS_=0
ARGS="$ARGS --no-tests --no-examples --ignore-vignettes"
ARGS="$ARGS --no-tests --no-examples"
%endif
%if ! %{with_doc}
export _R_CHECK_FORCE_SUGGESTS_=0
ARGS="$ARGS --ignore-vignettes"
%{_bindir}/R CMD check %{packname} $ARGS
%endif
%{_bindir}/R CMD check %{packname} $ARGS
%files
@ -90,10 +90,37 @@ ARGS="$ARGS --ignore-vignettes"
%{rlibdir}/%{packname}/Meta
%{rlibdir}/%{packname}/R
%{rlibdir}/%{packname}/help
%{rlibdir}/%{packname}/data
%{rlibdir}/%{packname}/WORDLIST
%dir %{rlibdir}/%{packname}/libs
%{rlibdir}/%{packname}/libs/%{packname}.so
%changelog
%autochangelog
* 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

View File

@ -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

View File

@ -1 +1 @@
SHA512 (curl_4.3.2.tar.gz) = 7b8e9b136f206733a3314a876de21bf7d52b9bcef1c8c399fc9b0e1983a12853da18bd7ce06959fdd83957cd3637a11fc9246154187427a3c6479101cc492322
SHA512 (curl_3.3.tar.gz) = d5919a683005726001b4ed97948e606d74c0f82abb36d6ab5740a2ee0fb5d60be504422bdbeae38a7afe3a43a218c5dd3e10283c4392223cc54b99a326e77d35