Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3e1995335d | ||
|
caf19c22fd | ||
|
f615cc1b77 | ||
|
caf9bd276b | ||
|
0b37c78534 | ||
|
3176794c87 | ||
|
fe18f038c2 | ||
|
e85035214f | ||
|
29f4b000a1 | ||
|
2d1422d76f | ||
|
bfd46d2673 | ||
|
56a2df001a | ||
|
4eab561e6d | ||
|
d4e981a2a5 | ||
|
dd316a6fcc | ||
|
8f9fe05944 | ||
|
b09a744db4 | ||
|
b5e12d13fe | ||
|
bb8458d05a | ||
|
4cd6b1cf91 | ||
|
7f85a73684 | ||
|
d3d2a987d7 | ||
|
d9ee3004ae | ||
|
4793c68a18 | ||
|
1e44829a7a | ||
|
7bfc7ab83a | ||
|
e4172f2036 | ||
|
98465fa3d0 | ||
|
d1bfb753e6 | ||
|
786c2eba22 | ||
|
93b4f99bcd |
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,3 +1,10 @@
|
||||
/curl_3.0.tar.gz
|
||||
/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
|
||||
|
87
R-curl.spec
87
R-curl.spec
@ -1,52 +1,53 @@
|
||||
%global packname curl
|
||||
%bcond_with bootstrap
|
||||
%bcond_with network
|
||||
|
||||
%global packname curl
|
||||
%global packver 4.3.2
|
||||
%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}
|
||||
Version: 3.2
|
||||
Release: 2%{?dist}
|
||||
Version: 4.3.2
|
||||
Release: %autorelease
|
||||
Summary: A Modern and Flexible Web Client for R
|
||||
|
||||
License: MIT
|
||||
URL: https://cran.r-project.org/web/packages/%{packname}/index.html
|
||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
|
||||
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:
|
||||
# Suggests: R-spelling, R-testthat >= 1.0.0, R-knitr, R-jsonlite, R-rmarkdown, R-magrittr, R-httpuv, R-webutils
|
||||
# Suggests: R-spelling, R-testthat >= 1.0.0, R-knitr, R-jsonlite, R-rmarkdown, R-magrittr, R-httpuv >= 1.4.4, R-webutils
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
BuildRequires: R-devel
|
||||
BuildRequires: tex(latex)
|
||||
BuildRequires: pkgconfig(libcurl)
|
||||
%if %{without bootstrap}
|
||||
BuildRequires: R-spelling
|
||||
BuildRequires: R-testthat >= 1.0.0
|
||||
BuildRequires: R-httpuv
|
||||
BuildRequires: R-jsonlite
|
||||
%if %{with_doc}
|
||||
BuildRequires: R-httpuv >= 1.4.4
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-magrittr
|
||||
BuildRequires: glyphicons-halflings-fonts
|
||||
BuildRequires: R-rmarkdown
|
||||
%endif
|
||||
%if %{with_test}
|
||||
BuildRequires: R-magrittr
|
||||
%if %{with network}
|
||||
BuildRequires: R-webutils
|
||||
%endif
|
||||
%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
|
||||
@ -64,15 +65,16 @@ rm -f %{buildroot}%{rlibdir}/R.css
|
||||
|
||||
|
||||
%check
|
||||
%if %{with_test}
|
||||
TEST=
|
||||
%else
|
||||
TEST="--no-tests --no-examples"
|
||||
%if %{without bootstrap}
|
||||
export LANG=C.UTF-8
|
||||
ARGS=
|
||||
%if %{without network}
|
||||
export _R_CHECK_FORCE_SUGGESTS_=0
|
||||
ARGS="$ARGS --no-tests --no-examples --ignore-vignettes"
|
||||
%endif
|
||||
%if %{with_doc}
|
||||
%{_bindir}/R CMD check %{packname} $TEST
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes $TEST
|
||||
export _R_CHECK_FORCE_SUGGESTS_=0
|
||||
ARGS="$ARGS --ignore-vignettes"
|
||||
%{_bindir}/R CMD check %{packname} $ARGS
|
||||
%endif
|
||||
|
||||
|
||||
@ -88,27 +90,10 @@ _R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --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
|
||||
* 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
|
||||
%autochangelog
|
||||
|
70
changelog
Normal file
70
changelog
Normal file
@ -0,0 +1,70 @@
|
||||
* 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_3.2.tar.gz) = 48310b5134ef59aaba0012b7b5e307e01249527e5e9ef986b366907ad6d13184beb81ece4185bd4bebe7d5a027a9069c345033188e65dd06dd21e06b260906d3
|
||||
SHA512 (curl_4.3.2.tar.gz) = 7b8e9b136f206733a3314a876de21bf7d52b9bcef1c8c399fc9b0e1983a12853da18bd7ce06959fdd83957cd3637a11fc9246154187427a3c6479101cc492322
|
||||
|
Loading…
Reference in New Issue
Block a user