Compare commits

..

9 Commits
f36 ... rawhide

Author SHA1 Message Date
Tom Callaway
058c9cdb97 1.1.1 2023-04-29 10:44:38 -04:00
Iñaki Úcar
dceabc5d80 R-maint-sig mass rebuild 2023-04-21 14:16:58 +02:00
Tom Callaway
846aca8775 1.1.0 2023-03-14 11:09:17 -04:00
Fedora Release Engineering
bb9778f5e8 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-18 20:52:39 +00:00
spotrh
3f3cf677c4 1.0.6 2022-09-24 12:07:27 -04:00
aekoroglu
2076221733 update to 1.0.5 (RHBZ #2015338) 2022-09-17 17:38:33 +03:00
Iñaki Úcar
c054fc344c Disable bootstrap 2022-09-04 13:33:26 +02:00
Tom spot Callaway
24f7e7230c update to 1.0.4, bootstrap on, rebuild for R 4.2.1 2022-08-18 13:39:45 -04:00
Fedora Release Engineering
73f70ea80a Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-20 19:54:38 +00:00
4 changed files with 49 additions and 38 deletions

19
.gitignore vendored
View File

@ -1,18 +1 @@
/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
/rlang_0.4.10.tar.gz
/rlang_0.4.11.tar.gz
/rlang_*.tar.gz

View File

@ -16,8 +16,8 @@ index 4484e88f..4a4d549e 100644
--- a/src/Makevars
+++ b/src/Makevars
@@ -1,4 +1,4 @@
-PKG_CPPFLAGS = -I./lib/
+PKG_CPPFLAGS = -I./lib/ $(pkgconf --cflags libxxhash)
-PKG_CPPFLAGS = -I./rlang/
+PKG_CPPFLAGS = -I./rlang/ $(pkgconf --cflags libxxhash)
PKG_CFLAGS = $(C_VISIBILITY)
lib-files = \

View File

@ -1,26 +1,24 @@
# When we are bootstrapping, we drop some dependencies, and/or build time tests.
%bcond_with bootstrap
%bcond_with suggests
%global packname rlang
%global packver 0.4.11
%global packver 1.1.1
%global rlibdir %{_libdir}/R/library
Name: R-%{packname}
Version: 0.4.11
Release: 4%{?dist}
Version: %{packver}
Release: 1%{?dist}
Summary: Functions for Base Types and Core R and 'Tidyverse' Features
License: MIT
URL: https://CRAN.R-project.org/package=%{packname}
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
Source0: %{url}&version=%{version}#/%{packname}_%{version}.tar.gz
Patch0001: 0001-Unbundle-libxxhash.patch
# https://github.com/r-lib/rlang/pull/1084
Patch0002: 0002-Add-test-hashes-for-big-endian-machines.patch
# Here's the R view of the dependencies world:
# Depends:
# Imports: R-utils
# Suggests: R-cli, R-covr, R-crayon, R-glue, R-magrittr, R-methods, R-pak, R-pillar, R-rmarkdown, R-testthat >= 3.0.0, R-vctrs >= 0.2.3, R-withr
# 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
# LinkingTo:
# Enhances:
@ -28,16 +26,20 @@ BuildRequires: pkgconfig(libxxhash)
BuildRequires: R-devel
BuildRequires: tex(latex)
BuildRequires: R-utils
%if %{without bootstrap}
BuildRequires: R-cli
BuildRequires: R-testthat >= 3.0.0
%if %{with suggests}
BuildRequires: R-cli >= 3.1.0
BuildRequires: R-crayon
BuildRequires: R-fs
BuildRequires: R-glue
BuildRequires: R-knitr
BuildRequires: R-magrittr
BuildRequires: R-methods
BuildRequires: R-pak
BuildRequires: R-pillar
BuildRequires: R-rmarkdown
BuildRequires: R-testthat >= 3.0.0
BuildRequires: R-stats
BuildRequires: R-tibble
BuildRequires: R-usethis
BuildRequires: R-vctrs >= 0.2.3
BuildRequires: R-withr
%endif
@ -51,9 +53,7 @@ system, and core 'Tidyverse' features like tidy evaluation.
%setup -q -c -n %{packname}
pushd %{packname}
%patch0001 -p1
# Upstream now skips these tests if big endian
# %%patch0002 -p1
%patch -P0001 -p1
# Don't need coverage; it's not packaged either.
sed -i 's/covr, //g' DESCRIPTION
@ -72,8 +72,10 @@ rm -f %{buildroot}%{rlibdir}/R.css
%check
export LANG=C.UTF-8
%if %{without bootstrap}
%if %{with suggests}
%{_bindir}/R CMD check %{packname}
%else
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes
%endif
@ -94,6 +96,32 @@ export LANG=C.UTF-8
%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

View File

@ -1 +1 @@
SHA512 (rlang_0.4.11.tar.gz) = 0448a104034a9f14dd735b1abfd3aa823abaad9a7ee96ca89393b15f2c54dd24f27712cb59e30393c3afeccb834471f3940259e864236212b3b4c797008d79b4
SHA512 (rlang_1.1.1.tar.gz) = 7d585dc7295a9f1dac66d2bb51c10ff46887e3334b156e6194932b4010d22ebd8cf176c62ef7766b480ca6375d39ab13e969aff3cbb26e615c913da0ece4f12b