2020-06-03 16:28:05 +00:00
|
|
|
%bcond_with check
|
|
|
|
|
2015-11-30 19:14:47 +00:00
|
|
|
%global packname digest
|
2023-04-21 21:56:51 +00:00
|
|
|
%global packver 0.6.31
|
2015-11-30 19:14:47 +00:00
|
|
|
|
|
|
|
Name: R-%{packname}
|
|
|
|
Version: %{packver}
|
2023-04-21 21:56:51 +00:00
|
|
|
Release: 1%{?dist}
|
|
|
|
URL: https://CRAN.R-project.org/package=%{packname}
|
|
|
|
Source0: %{url}&version=%{version}#/%{packname}_%{version}.tar.gz
|
2019-11-05 18:44:37 +00:00
|
|
|
License: GPLv2+ and BSD and MIT and zlib
|
2015-11-30 19:14:47 +00:00
|
|
|
Summary: Create Cryptographic Hash Digest of R Objects
|
2023-04-21 21:56:51 +00:00
|
|
|
BuildRequires: R-devel >= 3.4.0, tex(latex), R-utils
|
2020-06-03 16:28:05 +00:00
|
|
|
%if %{with check}
|
2017-05-18 18:36:35 +00:00
|
|
|
# Test requires:
|
2022-08-03 13:49:46 +00:00
|
|
|
BuildRequires: R-simplermarkdown, R-tinytest
|
2020-06-03 16:28:05 +00:00
|
|
|
%endif
|
2015-11-30 19:14:47 +00:00
|
|
|
Provides: bundled(xxhash)
|
|
|
|
|
|
|
|
%description
|
2019-11-05 18:44:37 +00:00
|
|
|
Implementation of a function 'digest()' for the creation of hash digests of
|
|
|
|
arbitrary R objects (using the md5, sha-1, sha-256, crc32, xxhash and
|
|
|
|
murmurhash algorithms) permitting easy comparison of R language objects, as
|
|
|
|
well as a function 'hmac()' to create hash-based message authentication code.
|
|
|
|
The md5 algorithm by Ron Rivest is specified in RFC 1321, the sha-1 and
|
|
|
|
sha-256 algorithms are specified in FIPS-180-1 and FIPS-180-2, and the crc32
|
|
|
|
algorithm is described in
|
|
|
|
ftp://ftp.rocksoft.com/cliens/rocksoft/papers/crc_v3.txt. For md5, sha-1,
|
|
|
|
sha-256 and aes, this package uses small standalone implementations that were
|
|
|
|
provided by Christophe Devine. For crc32, code from the zlib library is used.
|
|
|
|
For sha-512, an implementation by Aaron D. Gifford is used. For xxHash, the
|
|
|
|
implementation by Yann Collet is used. For murmurhash, an implementation by
|
|
|
|
Shane Day is used. Please note that this package is not meant to be deployed
|
|
|
|
for cryptographic purposes for which more comprehensive (and widely tested)
|
2015-11-30 19:14:47 +00:00
|
|
|
libraries such as OpenSSL should be used.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Summary: Header files for compiling against digest
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Header files for compiling against digest.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -c -n %{packname}
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/R/library
|
|
|
|
%{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_libdir}/R/library %{packname}
|
|
|
|
test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so)
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_libdir}/R/library/R.css
|
|
|
|
|
|
|
|
%check
|
2020-06-03 16:28:05 +00:00
|
|
|
%if %{with check}
|
2019-11-06 13:31:16 +00:00
|
|
|
# s390x fails this check in spooky ways
|
|
|
|
%ifnarch s390x
|
2019-11-05 18:44:37 +00:00
|
|
|
%{_bindir}/R CMD check %{packname}
|
2019-11-06 13:31:16 +00:00
|
|
|
%endif
|
2020-06-03 16:28:05 +00:00
|
|
|
%endif
|
2015-11-30 19:14:47 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license %{_libdir}/R/library/%{packname}/GPL-2
|
|
|
|
%dir %{_libdir}/R/library/%{packname}
|
|
|
|
%doc %{_libdir}/R/library/%{packname}/html
|
|
|
|
%{_libdir}/R/library/%{packname}/DESCRIPTION
|
|
|
|
%{_libdir}/R/library/%{packname}/INDEX
|
|
|
|
%{_libdir}/R/library/%{packname}/NAMESPACE
|
|
|
|
%{_libdir}/R/library/%{packname}/Meta
|
|
|
|
%{_libdir}/R/library/%{packname}/R
|
2017-05-18 18:36:35 +00:00
|
|
|
%{_libdir}/R/library/%{packname}/doc/
|
2015-11-30 19:14:47 +00:00
|
|
|
%{_libdir}/R/library/%{packname}/help
|
|
|
|
%{_libdir}/R/library/%{packname}/libs/
|
2019-11-05 18:44:37 +00:00
|
|
|
%{_libdir}/R/library/%{packname}/demo
|
|
|
|
%{_libdir}/R/library/%{packname}/tinytest
|
2015-11-30 19:14:47 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_libdir}/R/library/%{packname}/include/
|
|
|
|
|
|
|
|
%changelog
|
2023-04-21 21:56:51 +00:00
|
|
|
* Fri Apr 21 2023 Iñaki Úcar <iucar@fedoraproject.org> - 0.6.31-1
|
2023-04-21 11:22:02 +00:00
|
|
|
- R-maint-sig mass rebuild
|
2023-04-21 21:56:51 +00:00
|
|
|
- Update to latest version
|
2023-04-21 11:22:02 +00:00
|
|
|
|
2023-01-18 20:22:51 +00:00
|
|
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.29-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-08-03 13:49:46 +00:00
|
|
|
* Wed Aug 3 2022 Tom Callaway <spot@fedoraproject.org> - 0.6.29-1
|
|
|
|
- update to 0.6.29
|
|
|
|
- rebuild for R 4.2.1
|
|
|
|
|
2022-07-20 19:24:07 +00:00
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.27-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-19 19:56:39 +00:00
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.27-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-21 16:20:25 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.27-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-07 20:03:12 +00:00
|
|
|
* Mon Jun 7 2021 Tom Callaway <spot@fedoraproject.org> - 0.6.27-2
|
|
|
|
- Rebuilt for R 4.1.0
|
|
|
|
|
2021-02-03 22:15:07 +00:00
|
|
|
* Wed Feb 3 2021 Tom Callaway <spot@fedoraproject.org> - 0.6.27-1
|
|
|
|
- update to 0.6.27
|
|
|
|
|
2021-01-25 22:55:25 +00:00
|
|
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.25-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-27 10:52:26 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.25-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-03 16:28:05 +00:00
|
|
|
* Wed Jun 3 2020 Tom Callaway <spot@fedoraproject.org> - 0.6.25-1
|
|
|
|
- conditionalize tests
|
|
|
|
- update to 0.6.25
|
|
|
|
- rebuild for R 4
|
|
|
|
|
2020-01-28 10:03:21 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.22-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-05 18:44:37 +00:00
|
|
|
* Tue Nov 5 2019 Tom Callaway <spot@fedoraproject.org> - 0.6.22-1
|
|
|
|
- update to 0.6.22
|
|
|
|
|
2019-08-12 08:42:06 +00:00
|
|
|
* Mon Aug 12 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.6.15-6
|
|
|
|
- Remove explicit dependencies provided by automatic dependency generator
|
|
|
|
|
2019-07-24 16:25:41 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.15-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-01-31 12:08:23 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.15-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-12 19:24:49 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.15-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-16 17:49:10 +00:00
|
|
|
* Wed May 16 2018 Tom Callaway <spot@fedoraproject.org> - 0.6.15-2
|
|
|
|
- rebuild for R 3.5.0
|
|
|
|
|
2018-03-23 17:40:25 +00:00
|
|
|
* Fri Mar 23 2018 Tom Callaway <spot@fedoraproject.org> - 0.6.15-1
|
|
|
|
- update to 0.6.15
|
|
|
|
|
2018-02-07 01:14:20 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.12-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-02 17:11:26 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.12-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 02:12:55 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.12-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-18 18:36:35 +00:00
|
|
|
* Thu May 18 2017 Tom Callaway <spot@fedoraproject.org> - 0.6.12-1
|
|
|
|
- update to 0.6.12, rebuild for R 3.4.0
|
|
|
|
- disable check due to missing deps
|
|
|
|
|
2017-02-10 05:27:23 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-02-03 15:43:22 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-30 19:14:47 +00:00
|
|
|
* Tue Nov 10 2015 Tom Callaway <spot@fedoraproject.org> - 0.6.8-2
|
|
|
|
- fix license tag
|
|
|
|
- fix define to be global
|
|
|
|
- add bundled provide for xxhash
|
|
|
|
|
|
|
|
* Wed Nov 4 2015 Tom Callaway <spot@fedoraproject.org> - 0.6.8-1
|
|
|
|
- Initial package
|