Compare commits
No commits in common. "rawhide" and "f33" have entirely different histories.
17
.gitignore
vendored
17
.gitignore
vendored
@ -1 +1,16 @@
|
||||
/rlang_*.tar.gz
|
||||
/rlang_0.2.0.tar.gz
|
||||
/rlang_0.2.1.tar.gz
|
||||
/rlang_0.2.2.tar.gz
|
||||
/rlang_0.3.1.tar.gz
|
||||
/rlang_0.3.2.tar.gz
|
||||
/rlang_0.3.3.tar.gz
|
||||
/rlang_0.3.4.tar.gz
|
||||
/rlang_0.4.0.tar.gz
|
||||
/rlang_0.4.1.tar.gz
|
||||
/rlang_0.4.2.tar.gz
|
||||
/rlang_0.4.4.tar.gz
|
||||
/rlang_0.4.5.tar.gz
|
||||
/rlang_0.4.6.tar.gz
|
||||
/rlang_0.4.7.tar.gz
|
||||
/rlang_0.4.8.tar.gz
|
||||
/rlang_0.4.9.tar.gz
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,32 +0,0 @@
|
||||
From 5feac2b6b427905cdb73dc947973aabfdb825f0d Mon Sep 17 00:00:00 2001
|
||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
Date: Thu, 31 Dec 2020 02:45:14 -0500
|
||||
Subject: [PATCH 2/2] Add test hashes for big-endian machines.
|
||||
|
||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
---
|
||||
tests/testthat/test-hash.R | 12 +++++++++---
|
||||
1 file changed, 9 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/tests/testthat/test-hash.R b/tests/testthat/test-hash.R
|
||||
index c43c82ba..fb74d14c 100644
|
||||
--- a/tests/testthat/test-hash.R
|
||||
+++ b/tests/testthat/test-hash.R
|
||||
@@ -1,5 +1,11 @@
|
||||
test_that("simple hashes with no ALTREP and no attributes are reproducible", {
|
||||
- expect_identical(hash(1), "a3f7d4a39b65b170005aafbbeed05106")
|
||||
- expect_identical(hash("a"), "4d52a7da68952b85f039e85a90f9bbd2")
|
||||
- expect_identical(hash(1:5 + 0L), "0d26bf75943b8e13c080c6bab12a7440")
|
||||
+ if (.Platform$endian == "little") {
|
||||
+ expect_identical(hash(1), "a3f7d4a39b65b170005aafbbeed05106")
|
||||
+ expect_identical(hash("a"), "4d52a7da68952b85f039e85a90f9bbd2")
|
||||
+ expect_identical(hash(1:5 + 0L), "0d26bf75943b8e13c080c6bab12a7440")
|
||||
+ } else {
|
||||
+ expect_identical(hash(1), "e102171758b6df27bab06e4b99ad7d61")
|
||||
+ expect_identical(hash("a"), "49a20bac2e944a3b87d0f5f70b8b5553")
|
||||
+ expect_identical(hash(1:5 + 0L), "f24b071216a7d95ccbfcf28616107d64")
|
||||
+ }
|
||||
})
|
||||
--
|
||||
2.29.2
|
||||
|
86
R-rlang.spec
86
R-rlang.spec
@ -1,45 +1,37 @@
|
||||
%bcond_with suggests
|
||||
# When we are bootstrapping, we drop some dependencies, and/or build time tests.
|
||||
%bcond_with bootstrap
|
||||
|
||||
%global packname rlang
|
||||
%global packver 1.1.1
|
||||
%global packver 0.4.9
|
||||
%global rlibdir %{_libdir}/R/library
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: %{packver}
|
||||
Version: 0.4.9
|
||||
Release: 1%{?dist}
|
||||
Summary: Functions for Base Types and Core R and 'Tidyverse' Features
|
||||
|
||||
License: MIT
|
||||
License: GPLv3
|
||||
URL: https://CRAN.R-project.org/package=%{packname}
|
||||
Source0: %{url}&version=%{version}#/%{packname}_%{version}.tar.gz
|
||||
|
||||
Patch0001: 0001-Unbundle-libxxhash.patch
|
||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-utils
|
||||
# Suggests: R-cli >= 3.1.0, R-covr, R-crayon, R-fs, R-glue, R-knitr, R-magrittr, R-methods, R-pillar, R-rmarkdown, R-stats, R-testthat >= 3.0.0, R-tibble, R-usethis, R-vctrs >= 0.2.3, R-withr
|
||||
# Imports:
|
||||
# Suggests: R-cli, R-covr, R-crayon, R-glue, R-magrittr, R-methods, R-pillar, R-rmarkdown, R-testthat >= 2.3.0, R-vctrs >= 0.2.3, R-withr
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
BuildRequires: pkgconfig(libxxhash)
|
||||
BuildRequires: R-devel
|
||||
BuildRequires: tex(latex)
|
||||
BuildRequires: R-utils
|
||||
BuildRequires: R-testthat >= 3.0.0
|
||||
%if %{with suggests}
|
||||
BuildRequires: R-cli >= 3.1.0
|
||||
%if %{without bootstrap}
|
||||
BuildRequires: R-cli
|
||||
BuildRequires: R-crayon
|
||||
BuildRequires: R-fs
|
||||
BuildRequires: R-glue
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-magrittr
|
||||
BuildRequires: R-methods
|
||||
BuildRequires: R-pillar
|
||||
BuildRequires: R-rmarkdown
|
||||
BuildRequires: R-stats
|
||||
BuildRequires: R-tibble
|
||||
BuildRequires: R-usethis
|
||||
BuildRequires: R-testthat >= 2.3.0
|
||||
BuildRequires: R-vctrs >= 0.2.3
|
||||
BuildRequires: R-withr
|
||||
%endif
|
||||
@ -52,12 +44,8 @@ system, and core 'Tidyverse' features like tidy evaluation.
|
||||
%prep
|
||||
%setup -q -c -n %{packname}
|
||||
|
||||
pushd %{packname}
|
||||
%patch -P0001 -p1
|
||||
|
||||
# Don't need coverage; it's not packaged either.
|
||||
sed -i 's/covr, //g' DESCRIPTION
|
||||
popd
|
||||
sed -i 's/covr, //g' %{packname}/DESCRIPTION
|
||||
|
||||
|
||||
%build
|
||||
@ -72,10 +60,8 @@ rm -f %{buildroot}%{rlibdir}/R.css
|
||||
|
||||
%check
|
||||
export LANG=C.UTF-8
|
||||
%if %{with suggests}
|
||||
%if %{without bootstrap}
|
||||
%{_bindir}/R CMD check %{packname}
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes
|
||||
%endif
|
||||
|
||||
|
||||
@ -84,7 +70,6 @@ _R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes
|
||||
%doc %{rlibdir}/%{packname}/html
|
||||
%{rlibdir}/%{packname}/DESCRIPTION
|
||||
%doc %{rlibdir}/%{packname}/NEWS.md
|
||||
%license %{rlibdir}/%{packname}/LICENSE
|
||||
%{rlibdir}/%{packname}/INDEX
|
||||
%{rlibdir}/%{packname}/NAMESPACE
|
||||
%{rlibdir}/%{packname}/Meta
|
||||
@ -96,51 +81,6 @@ _R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Apr 29 2023 Tom Callaway <spot@fedoraproject.org> - 1.1.1-1
|
||||
- update to 1.1.1
|
||||
|
||||
* Fri Apr 21 2023 Iñaki Úcar <iucar@fedoraproject.org> - 1.1.0-2
|
||||
- R-maint-sig mass rebuild
|
||||
|
||||
* Tue Mar 14 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.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Sep 24 2022 Tom Callaway <spot@fedoraproject.org> - 1.0.6-1
|
||||
- update to 1.0.6
|
||||
|
||||
* Sat Sep 17 2022 Ali Erdinc Koroglu <aekoroglu@fedoraproject.org> - 1.0.5-1
|
||||
- Update to 1.0.5 (RHBZ #2015338)
|
||||
|
||||
* Thu Aug 18 2022 Tom Callaway <spot@fedoraproject.org> - 1.0.4-1
|
||||
- update to 1.0.4
|
||||
- rebuild for R 4.2.1
|
||||
- bootstrap on
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.11-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.11-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.11-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jun 17 2021 Tom Callaway <spot@fedoraproject.org> - 0.4.11-2
|
||||
- bootstrap off
|
||||
|
||||
* Mon Jun 7 2021 Tom Callaway <spot@fedoraproject.org> - 0.4.11-1
|
||||
- Rebuilt for R 4.1.0
|
||||
- update to 0.4.11
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Dec 30 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.4.10-1
|
||||
- Update to latest version (#1911718)
|
||||
|
||||
* Sat Nov 28 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.4.9-1
|
||||
- Update to latest version (#1901765)
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (rlang_1.1.1.tar.gz) = 7d585dc7295a9f1dac66d2bb51c10ff46887e3334b156e6194932b4010d22ebd8cf176c62ef7766b480ca6375d39ab13e969aff3cbb26e615c913da0ece4f12b
|
||||
SHA512 (rlang_0.4.9.tar.gz) = cf8d1c12918449dc0104bc27e76a13057b68d3f8bd31c06ddbf2df811ee366cc34287cad69d6d695bfedddc85b9dd6e0fe9d6878cf130a295c15cebc075d362a
|
||||
|
Loading…
Reference in New Issue
Block a user