Compare commits
32 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
c0d2e625f8 | ||
|
a02674e874 | ||
|
d2ff96f2d0 | ||
|
b2c3501f1b | ||
|
01a1a93de9 | ||
|
0360971cdc | ||
|
8a6716c784 | ||
|
b0fc744cdc | ||
|
964170383a | ||
|
43a540c074 | ||
|
dc8958f7a2 | ||
|
51bf0ae77a | ||
|
7c11e71de7 | ||
|
2c97da0a90 | ||
|
d491e7af54 | ||
|
43f7a05c9b | ||
|
98192786c3 | ||
|
b8e07c9b7a | ||
|
51b3003746 | ||
|
1c9fdae9dc | ||
|
540c413e9f | ||
|
ccf6003e82 | ||
|
6cc6a0ba92 | ||
|
4c965a26a0 | ||
|
a8b6a17b68 | ||
|
fe67571b01 | ||
|
9b0a5a369e | ||
|
aac333dbd1 | ||
|
25cd0d8b9e | ||
|
6ab6df7b1a | ||
|
f054087650 | ||
|
abe8d42207 |
7
.gitignore
vendored
7
.gitignore
vendored
@ -2,3 +2,10 @@
|
||||
/dplyr_0.8.3.tar.gz
|
||||
/dplyr_0.8.4.tar.gz
|
||||
/dplyr_0.8.5.tar.gz
|
||||
/dplyr_1.0.2.tar.gz
|
||||
/dplyr_1.0.4.tar.gz
|
||||
/dplyr_1.0.5.tar.gz
|
||||
/dplyr_1.0.6.tar.gz
|
||||
/dplyr_1.0.10.tar.gz
|
||||
/dplyr_1.1.0.tar.gz
|
||||
/dplyr_1.1.2.tar.gz
|
||||
|
182
R-dplyr.spec
182
R-dplyr.spec
@ -1,12 +1,13 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
%global packname dplyr
|
||||
%global packver 0.8.5
|
||||
%global packver 1.1.2
|
||||
%global rlibdir %{_libdir}/R/library
|
||||
|
||||
# When we are bootstrapping, we drop some dependencies, and/or build time tests.
|
||||
%bcond_without bootstrap
|
||||
%global __suggests_exclude ^R\\((Lahman|RMySQL|RPostgreSQL)\\)
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: 0.8.5
|
||||
Version: %{packver}
|
||||
Release: 1%{?dist}
|
||||
Summary: A Grammar of Data Manipulation
|
||||
|
||||
@ -16,108 +17,65 @@ Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-ellipsis, R-assertthat >= 0.2.0, R-glue >= 1.3.0, R-magrittr >= 1.5, R-methods, R-pkgconfig, R-R6, R-Rcpp >= 1.0.1, R-rlang >= 0.4.0, R-tibble >= 2.0.0, R-tidyselect >= 0.2.5, R-utils
|
||||
# Suggests: R-bit64, R-callr, R-covr, R-crayon >= 1.3.4, R-DBI, R-dbplyr, R-dtplyr, R-ggplot2, R-hms, R-knitr, R-Lahman, R-lubridate, R-MASS, R-mgcv, R-microbenchmark, R-nycflights13, R-rmarkdown, R-RMySQL, R-RPostgreSQL, R-RSQLite, R-testthat, R-withr, R-broom, R-purrr, R-readr
|
||||
# LinkingTo: R-BH, R-plogr >= 0.2.0, R-Rcpp >= 1.0.1
|
||||
# Imports: R-cli >= 3.4.0, R-generics, R-glue >= 1.3.2, R-lifecycle >= 1.0.3, R-magrittr >= 1.5, R-methods, R-pillar >= 1.5.1, R-R6, R-rlang >= 1.0.6, R-tibble >= 2.1.3, R-tidyselect >= 1.2.0, R-utils, R-vctrs >= 0.5.2
|
||||
# Suggests: R-bench, R-broom, R-callr, R-covr, R-DBI, R-dbplyr >= 2.2.1, R-ggplot2, R-knitr, R-Lahman, R-lobstr, R-microbenchmark, R-nycflights13, R-purrr, R-rmarkdown, R-RMySQL, R-RPostgreSQL, R-RSQLite, R-stringi >= 1.7.6, R-testthat >= 3.1.5, R-tidyr >= 1.3.0, R-withr
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
Requires: R-ellipsis
|
||||
Requires: R-assertthat >= 0.2.0
|
||||
Requires: R-glue >= 1.3.0
|
||||
Requires: R-magrittr >= 1.5
|
||||
Requires: R-methods
|
||||
Requires: R-pkgconfig
|
||||
Requires: R-R6
|
||||
Requires: R-Rcpp >= 1.0.1
|
||||
Requires: R-rlang >= 0.4.0
|
||||
Requires: R-tibble >= 2.0.0
|
||||
Requires: R-tidyselect >= 0.2.5
|
||||
Requires: R-utils
|
||||
Suggests: R-bit64
|
||||
Suggests: R-callr
|
||||
Suggests: R-crayon >= 1.3.4
|
||||
Suggests: R-DBI
|
||||
Suggests: R-dbplyr
|
||||
Suggests: R-dtplyr
|
||||
Suggests: R-ggplot2
|
||||
Suggests: R-hms
|
||||
Suggests: R-knitr
|
||||
Suggests: R-Lahman
|
||||
Suggests: R-lubridate
|
||||
Suggests: R-MASS
|
||||
Suggests: R-mgcv
|
||||
Suggests: R-microbenchmark
|
||||
Suggests: R-nycflights13
|
||||
Suggests: R-rmarkdown
|
||||
Suggests: R-RMySQL
|
||||
Suggests: R-RPostgreSQL
|
||||
Suggests: R-RSQLite
|
||||
Suggests: R-testthat
|
||||
Suggests: R-withr
|
||||
Suggests: R-broom
|
||||
Suggests: R-purrr
|
||||
Suggests: R-readr
|
||||
BuildRequires: R-devel
|
||||
BuildRequires: tex(latex)
|
||||
BuildRequires: R-ellipsis
|
||||
BuildRequires: R-assertthat >= 0.2.0
|
||||
BuildRequires: R-glue >= 1.3.0
|
||||
BuildRequires: R-cli >= 3.4.0
|
||||
BuildRequires: R-generics
|
||||
BuildRequires: R-glue >= 1.3.2
|
||||
BuildRequires: R-lifecycle >= 1.0.3
|
||||
BuildRequires: R-magrittr >= 1.5
|
||||
BuildRequires: R-methods
|
||||
BuildRequires: R-pkgconfig
|
||||
BuildRequires: R-pillar >= 1.9.0
|
||||
BuildRequires: R-R6
|
||||
BuildRequires: R-Rcpp-devel >= 1.0.1
|
||||
BuildRequires: R-rlang >= 0.4.0
|
||||
BuildRequires: R-tibble >= 2.0.0
|
||||
BuildRequires: R-tidyselect >= 0.2.5
|
||||
BuildRequires: R-rlang >= 1.1.0
|
||||
BuildRequires: R-tibble >= 3.2.0
|
||||
BuildRequires: R-tidyselect >= 1.2.0
|
||||
BuildRequires: R-utils
|
||||
BuildRequires: R-BH-devel
|
||||
BuildRequires: R-plogr-devel >= 0.2.0
|
||||
BuildRequires: R-bit64
|
||||
BuildRequires: R-vctrs >= 0.6.0
|
||||
BuildRequires: R-callr
|
||||
BuildRequires: R-crayon >= 1.3.4
|
||||
BuildRequires: R-DBI
|
||||
BuildRequires: R-hms
|
||||
BuildRequires: R-ggplot2
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-lubridate
|
||||
BuildRequires: R-MASS
|
||||
BuildRequires: R-mgcv
|
||||
BuildRequires: R-lobstr
|
||||
BuildRequires: R-microbenchmark
|
||||
BuildRequires: R-purrr
|
||||
BuildRequires: R-rmarkdown
|
||||
BuildRequires: R-RSQLite
|
||||
BuildRequires: R-testthat
|
||||
BuildRequires: R-stringi >= 1.7.6
|
||||
BuildRequires: R-testthat >= 3.1.5
|
||||
BuildRequires: R-withr
|
||||
BuildRequires: R-purrr
|
||||
BuildRequires: R-readr
|
||||
%if %{without bootstrap}
|
||||
BuildRequires: R-dbplyr
|
||||
BuildRequires: R-dtplyr
|
||||
BuildRequires: R-ggplot2
|
||||
BuildRequires: R-Lahman
|
||||
BuildRequires: R-nycflights13
|
||||
BuildRequires: R-RMySQL
|
||||
BuildRequires: R-RPostgreSQL
|
||||
BuildRequires: R-bench
|
||||
BuildRequires: R-broom
|
||||
BuildRequires: R-dbplyr >= 2.2.1
|
||||
BuildRequires: R-nycflights13
|
||||
BuildRequires: R-tidyr >= 1.3.0
|
||||
BuildRequires: R-ggplot2
|
||||
%endif
|
||||
|
||||
Obsoletes: %{name}-devel < 0.8.5-4
|
||||
|
||||
%description
|
||||
A fast, consistent tool for working with data frame like objects, both in
|
||||
memory and out of memory.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Development files for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -c -n %{packname}
|
||||
|
||||
# Don't need coverage; it's not packaged either.
|
||||
sed -i 's/covr, //g' %{packname}/DESCRIPTION
|
||||
# Lahman is not yet packaged.
|
||||
# RMySQL/RPostgreSQL are old wrappers, so won't be packaged by me at least.
|
||||
sed -i \
|
||||
-e 's/covr, //g' \
|
||||
-e 's/Lahman, //g' \
|
||||
-e 's/RMySQL, RPostgreSQL, //g' \
|
||||
%{packname}/DESCRIPTION
|
||||
|
||||
|
||||
%build
|
||||
@ -133,9 +91,9 @@ rm -f %{buildroot}%{rlibdir}/R.css
|
||||
%check
|
||||
export LANG=C.UTF-8
|
||||
%if %{without bootstrap}
|
||||
%{_bindir}/R CMD check %{packname}
|
||||
%{_bindir}/R CMD check --ignore-vignettes %{packname}
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname}
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check --ignore-vignettes %{packname}
|
||||
%endif
|
||||
|
||||
|
||||
@ -155,19 +113,77 @@ _R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname}
|
||||
%dir %{rlibdir}/%{packname}/libs
|
||||
%{rlibdir}/%{packname}/libs/%{packname}.so
|
||||
|
||||
%files devel
|
||||
%{rlibdir}/%{packname}/include
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Apr 21 2023 Iñaki Úcar <iucar@fedoraproject.org> - 1.1.2-1
|
||||
- R-maint-sig mass rebuild
|
||||
- Update to the latest version
|
||||
|
||||
* Mon Feb 27 2023 Tom Callaway <spot@fedoraproject.org> - 1.1.0-1
|
||||
- update to 1.1.0
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Sep 1 2022 Tom Callaway <spot@fedoraproject.org> - 1.0.10-1
|
||||
- update to 1.0.10
|
||||
- rebuild for R 4.2.1
|
||||
- bootstrap on
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jun 17 2021 Tom Callaway <spot@fedoraproject.org> - 1.0.6-2
|
||||
- bootstrap off
|
||||
|
||||
* Tue Jun 15 2021 Tom Callaway <spot@fedoraproject.org> - 1.0.6-1
|
||||
- update to 1.0.6
|
||||
- bootstrap
|
||||
- Rebuilt for R 4.1.0
|
||||
|
||||
* Sat Mar 06 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.5-1
|
||||
- Update to latest version (#1935731)
|
||||
|
||||
* Sun Feb 07 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.4-1
|
||||
- Update to latest version (#1916807)
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Sep 12 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.2-1
|
||||
- Update to latest version (#1841868)
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sun Jun 7 2020 Tom Callaway <spot@fedoraproject.org> - 0.8.5-2
|
||||
- rebuild for R 4
|
||||
- broom is now an R package so it does not need to be excluded
|
||||
- remove from BuildRequires other packages that are not yet available
|
||||
|
||||
* Sun Mar 15 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.8.5-1
|
||||
- Update to latest version
|
||||
|
||||
* Mon Feb 24 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.8.4-1
|
||||
- Update to latest version
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sun Aug 25 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.8.3-1
|
||||
- Update to latest version
|
||||
|
||||
* Sun Aug 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.8.0.1-3
|
||||
- Remove explicit dependencies provided by automatic dependency generator
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Mar 06 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.8.0.1-1
|
||||
- initial package for Fedora
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (dplyr_0.8.5.tar.gz) = 08269e59c43aacc5959d516c1fed45d3dbbe0912aa92263ff8eda6454f216a739ea5989088852cf2ab60bf06fc8aea524557258df786e16b81f5f785cb627105
|
||||
SHA512 (dplyr_1.1.2.tar.gz) = 62ebede505506a410111189073bb35efb971aad9b09f4622f34b9dcbf8e739c07f1b85a68d95ac9d76a1df2d800358ff4b3b79e4cf3df9911683e2cf472c9aa5
|
||||
|
Loading…
Reference in New Issue
Block a user