2016-02-14 18:08:31 +00:00
|
|
|
%global srcname rpy
|
|
|
|
%global sum Python interface to the R language
|
2022-11-08 21:40:50 +00:00
|
|
|
%global rmaj 4
|
2023-04-21 21:41:52 +00:00
|
|
|
%if (0%{?fedora} && 0%{?fedora} >= 38)
|
|
|
|
%global rmin 3
|
2021-07-07 08:01:32 +00:00
|
|
|
%else
|
2023-04-21 21:41:52 +00:00
|
|
|
%global rmin 2
|
2021-07-07 08:01:32 +00:00
|
|
|
%endif
|
2017-10-28 00:06:31 +00:00
|
|
|
|
2022-11-08 21:40:50 +00:00
|
|
|
%define add_rver() %{lua:
|
|
|
|
local dep = rpm.expand("%1")
|
|
|
|
local rmaj = rpm.expand("%{rmaj}")
|
|
|
|
local rmin = rpm.expand("%{rmin}")
|
|
|
|
print(dep .. " >= " .. rmaj .. "." .. rmin .. ", ")
|
|
|
|
print(dep .. " < " .. rmaj .. "." .. rmin + 1)
|
|
|
|
}
|
|
|
|
|
2007-08-29 17:36:29 +00:00
|
|
|
Name: rpy
|
2023-09-01 23:47:05 +00:00
|
|
|
Version: 3.5.14
|
2023-09-01 19:37:04 +00:00
|
|
|
Release: 1%{?dist}
|
2016-02-14 18:08:31 +00:00
|
|
|
Summary: %{sum}
|
2023-09-01 19:37:04 +00:00
|
|
|
License: GPL-2.0-or-later
|
2016-05-10 16:10:43 +00:00
|
|
|
Url: https://pypi.python.org/pypi/rpy2
|
2016-06-16 10:49:13 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/r/%{srcname}2/%{srcname}2-%{version}.tar.gz
|
2020-03-22 20:18:28 +00:00
|
|
|
|
2019-12-12 21:34:52 +00:00
|
|
|
BuildRequires: gcc
|
2022-11-08 21:40:50 +00:00
|
|
|
BuildRequires: %add_rver R-devel
|
2020-03-22 20:18:28 +00:00
|
|
|
BuildRequires: python3-devel
|
2011-07-11 20:56:42 +00:00
|
|
|
BuildRequires: readline-devel
|
2020-03-22 20:18:28 +00:00
|
|
|
BuildRequires: python3dist(setuptools)
|
|
|
|
BuildRequires: python3dist(cffi)
|
|
|
|
BuildRequires: python3dist(numpy)
|
|
|
|
BuildRequires: python3dist(pytest)
|
2021-01-11 10:22:23 +00:00
|
|
|
BuildRequires: python3dist(pandas)
|
2020-03-22 20:18:28 +00:00
|
|
|
|
2017-10-28 00:06:31 +00:00
|
|
|
Requires: python3-%{srcname} = %{version}-%{release}
|
2014-01-31 12:08:34 +00:00
|
|
|
|
2005-09-15 16:17:23 +00:00
|
|
|
%description
|
|
|
|
RPy provides a robust Python interface to the R
|
|
|
|
programming language. It can manage all kinds of R objects and can
|
|
|
|
execute arbitrary R functions. All the errors from the R language are
|
|
|
|
converted to Python exceptions.
|
|
|
|
|
2016-02-14 18:08:31 +00:00
|
|
|
%package -n python3-%{srcname}
|
|
|
|
Summary: %{sum}
|
2022-11-08 21:40:50 +00:00
|
|
|
Requires: %add_rver R-core
|
2016-02-14 18:08:31 +00:00
|
|
|
|
|
|
|
%description -n python3-%{srcname}
|
|
|
|
RPy provides a robust Python interface to the R
|
|
|
|
programming language. It can manage all kinds of R objects and can
|
|
|
|
execute arbitrary R functions. All the errors from the R language are
|
|
|
|
converted to Python exceptions.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{srcname}2-%{version}
|
2014-11-14 16:11:40 +00:00
|
|
|
|
2005-09-15 16:17:23 +00:00
|
|
|
%build
|
2019-02-12 23:53:48 +00:00
|
|
|
%py3_build
|
2005-09-15 16:17:23 +00:00
|
|
|
|
|
|
|
%install
|
2016-02-14 18:08:31 +00:00
|
|
|
%py3_install
|
2005-09-15 16:17:23 +00:00
|
|
|
|
2019-03-04 19:39:36 +00:00
|
|
|
%check
|
2021-01-11 10:22:23 +00:00
|
|
|
cd %{srcname}2
|
2021-01-11 10:39:05 +00:00
|
|
|
# rpy requires to test the installed packages
|
2021-01-11 10:55:40 +00:00
|
|
|
#PYTHONPATH=%{buildroot}%{python3_sitearch} pytest tests/
|
2019-03-04 19:39:36 +00:00
|
|
|
|
2016-02-14 18:08:31 +00:00
|
|
|
|
2019-03-04 20:47:13 +00:00
|
|
|
%files
|
2005-09-15 16:17:23 +00:00
|
|
|
|
2016-02-14 18:08:31 +00:00
|
|
|
%files -n python3-%{srcname}
|
2014-11-14 16:11:40 +00:00
|
|
|
%doc AUTHORS NEWS PKG-INFO
|
2019-02-27 11:53:30 +00:00
|
|
|
%license gpl-2.0.txt
|
2019-12-12 21:34:52 +00:00
|
|
|
%{python3_sitearch}/%{srcname}*
|
|
|
|
%{python3_sitearch}/_rinterface_cffi_abi.py
|
|
|
|
%{python3_sitearch}/_rinterface_cffi_api.abi3.so
|
|
|
|
%{python3_sitearch}/__pycache__/*
|
2014-11-14 16:11:40 +00:00
|
|
|
|
2005-09-15 16:17:23 +00:00
|
|
|
%changelog
|
2023-09-01 23:47:05 +00:00
|
|
|
* Fri Sep 1 2023 José Matos <jamatos@fedoraproject.org> - 3.5.14-1
|
|
|
|
- Update to 3.5.14
|
|
|
|
|
2023-09-01 19:37:04 +00:00
|
|
|
* Fri Sep 1 2023 José Matos <jamatos@fedoraproject.org> - 3.5.13-1
|
|
|
|
- Update to 3.5.13
|
|
|
|
- Update license tag to SPDX license identifier
|
|
|
|
- Clean package (workarounds no longer required)
|
|
|
|
|
2023-07-21 17:07:41 +00:00
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-06-28 12:06:06 +00:00
|
|
|
* Wed Jun 28 2023 Python Maint <python-maint@redhat.com> - 3.5.10-3
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
2023-04-21 10:42:24 +00:00
|
|
|
* Fri Apr 21 2023 Iñaki Úcar <iucar@fedoraproject.org> - 3.5.10-2
|
|
|
|
- R-maint-sig mass rebuild
|
|
|
|
|
2023-03-06 16:41:41 +00:00
|
|
|
* Mon Mar 6 2023 Tom Callaway <spot@fedoraproject.org> - 3.5.10-1
|
|
|
|
- update to 3.5.10
|
|
|
|
|
2023-03-03 21:33:52 +00:00
|
|
|
* Fri Mar 3 2023 Tom Callaway <spot@fedoraproject.org> - 3.5.9-1
|
|
|
|
- update to 3.5.9
|
|
|
|
|
2023-01-20 19:59:25 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-08 21:40:50 +00:00
|
|
|
* Tue Nov 08 2022 Iñaki Úcar <iucar@fedoraproject.org> - 3.5.3-2
|
|
|
|
- Rebuilt for R 4.2.2 + avoid depending on the patch version
|
|
|
|
|
2022-07-28 17:41:59 +00:00
|
|
|
* Thu Jul 28 2022 Tom Callaway <spot@fedoraproject.org> - 3.5.3-1
|
|
|
|
- update to 3.5.3
|
|
|
|
- R 4.2.1
|
|
|
|
|
2022-07-23 01:04:15 +00:00
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-15 12:01:26 +00:00
|
|
|
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 3.4.5-9
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-03-19 09:43:40 +00:00
|
|
|
* Sat Mar 19 2022 Tom Callaway <spot@fedoraproject.org> - 3.4.5-8
|
|
|
|
- R 4.1.3
|
|
|
|
|
2022-01-21 18:04:28 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-11 16:25:55 +00:00
|
|
|
* Thu Nov 11 2021 Tom Callaway <spot@fedoraproject.org> - 3.4.5-6
|
|
|
|
- R 4.1.2
|
|
|
|
|
2021-08-26 21:05:30 +00:00
|
|
|
* Thu Aug 26 2021 José Matos <jamatos@fedoraproject.org> - 3.4.5-5
|
|
|
|
- R 4.1.1
|
|
|
|
|
2021-07-23 11:38:05 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-07 08:01:32 +00:00
|
|
|
* Wed Jul 7 2021 José Matos <jamatos@fedoraproject.org> - 3.4.5-3
|
|
|
|
- make rversion conditional to cope with all Fedora releases (that have different R versions)
|
|
|
|
|
2021-06-18 10:45:23 +00:00
|
|
|
* Fri Jun 18 2021 Python Maint <python-maint@redhat.com> - 3.4.5-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-06-07 17:21:59 +00:00
|
|
|
* Mon Jun 7 2021 Tom Callaway <spot@fedoraproject.org> - 3.4.5-1
|
|
|
|
- update to 3.4.5
|
|
|
|
- R 4.1.0
|
|
|
|
|
2021-06-04 19:13:50 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.4.4-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-05-04 14:48:32 +00:00
|
|
|
* Tue May 4 2021 Tom Callaway <spot@fedoraproject.org> - 3.4.4-1
|
|
|
|
- update to 3.4.4
|
|
|
|
- R 4.0.5
|
|
|
|
|
2021-02-15 16:18:54 +00:00
|
|
|
* Mon Feb 15 2021 Tom Callaway <spot@fedoraproject.org> - 3.4.2-3
|
|
|
|
- rebuild for R 4.0.4
|
|
|
|
|
2021-01-27 15:28:53 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-11 10:22:23 +00:00
|
|
|
* Mon Jan 11 2021 José Matos <jamatos@fedoraproject.org> - 3.4.2-1
|
|
|
|
- update to 3.4.2
|
|
|
|
|
2021-01-03 12:06:07 +00:00
|
|
|
* Sun Jan 3 2021 José Matos <jamatos@fedoraproject.org> - 3.4.1-1
|
|
|
|
- update to 3.4.1
|
|
|
|
|
2020-10-13 18:13:33 +00:00
|
|
|
* Tue Oct 13 2020 Tom Callaway <spot@fedoraproject.org> - 3.3.6-1
|
|
|
|
- update to 3.3.6
|
|
|
|
- R 4.0.3
|
|
|
|
|
2020-08-01 07:58:54 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-3
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-29 05:57:04 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-08 08:49:42 +00:00
|
|
|
* Wed Jul 8 2020 José Matos <jamatos@fedoraproject.org> - 3.3.5-1
|
|
|
|
- update to 3.3.5
|
|
|
|
|
2020-06-25 11:38:49 +00:00
|
|
|
* Thu Jun 25 2020 José Matos <jamatos@fedoraproject.org> - 3.3.4-1
|
|
|
|
- update to 3.3.4
|
|
|
|
|
2020-06-23 16:11:20 +00:00
|
|
|
* Tue Jun 23 2020 Tom Callaway <spot@fedoraproject.org> - 3.3.3-6
|
|
|
|
- rebuild for R 4.0.2
|
|
|
|
|
2020-06-20 20:15:22 +00:00
|
|
|
* Sat Jun 20 2020 Dennis Gilmore <dennis@ausil.us> - 3.3.3-5
|
|
|
|
- rebuild for R 4.0.1
|
|
|
|
|
2020-06-17 15:31:50 +00:00
|
|
|
* Wed Jun 17 2020 José Matos <jamatos@fedoraproject.org> - 3.3.3-4
|
|
|
|
- rebuild to pick both python-3.9 and R-4.0
|
|
|
|
|
2020-06-03 15:01:03 +00:00
|
|
|
* Wed Jun 3 2020 Tom Callaway <spot@fedoraproject.org> - 3.3.3-3
|
|
|
|
- rebuild for R 4.0.0
|
|
|
|
|
2020-05-26 01:49:32 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 3.3.3-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-18 15:44:30 +00:00
|
|
|
* Mon May 18 2020 José Matos <jamatos@fedoraproject.org> - 3.3.3-1
|
|
|
|
- update to 3.3.3
|
|
|
|
|
2020-03-22 20:18:28 +00:00
|
|
|
* Sun Mar 22 2020 José Matos <jamatos@fedoraproject.org> - 3.2.7-2
|
2020-03-22 22:20:24 +00:00
|
|
|
- place BuildRequires in canonical form
|
2020-03-22 20:18:28 +00:00
|
|
|
- remove Requires since they are automatically provided
|
|
|
|
|
2020-03-22 19:59:07 +00:00
|
|
|
* Sun Mar 22 2020 José Matos <jamatos@fedoraproject.org> - 3.2.7-1
|
|
|
|
- update to 3.2.7
|
|
|
|
|
2020-03-03 14:49:01 +00:00
|
|
|
* Tue Mar 3 2020 Tom Callaway <spot@fedoraproject.org> - 3.2.6-2
|
|
|
|
- rebuild for R 3.6.3
|
|
|
|
|
2020-02-23 12:13:24 +00:00
|
|
|
* Sun Feb 23 2020 José Matos <jamatos@fedoraproject.org> - 3.2.6-1
|
|
|
|
- update to 3.2.6
|
|
|
|
|
2020-01-30 17:54:18 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-12 21:34:52 +00:00
|
|
|
* Thu Dec 12 2019 Tom Callaway <spot@fedoraproject.org> - 3.2.2-1
|
|
|
|
- update to 3.2.2
|
|
|
|
- package is now arch specific
|
|
|
|
|
2019-10-03 12:38:17 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-5
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-19 09:05:15 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-4
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-16 16:44:22 +00:00
|
|
|
* Fri Aug 16 2019 Tom Callaway <spot@fedoraproject.org> - 3.0.5-3
|
|
|
|
- rebuild for R 3.6.1
|
|
|
|
|
2019-07-26 18:47:56 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-17 12:53:21 +00:00
|
|
|
* Wed Jul 17 2019 José Matos <jamatos@fedoraproject.org> - 3.0.5-1
|
|
|
|
- update to 3.0.5
|
|
|
|
|
2019-05-30 17:49:09 +00:00
|
|
|
* Thu May 30 2019 Tom Callaway <spot@fedoraproject.org> - 3.0.4-2
|
|
|
|
- rebuild for R 3.6.0
|
|
|
|
|
2019-05-16 08:39:41 +00:00
|
|
|
* Thu May 16 2019 José Matos <jamatos@fedoraproject.org> - 3.0.4-1
|
|
|
|
- update to 3.0.4
|
|
|
|
|
2019-05-06 06:23:28 +00:00
|
|
|
* Mon May 6 2019 José Matos <jamatos@fedoraproject.org> - 3.0.3-1
|
|
|
|
- update to 3.0.3
|
|
|
|
|
2019-05-04 19:20:22 +00:00
|
|
|
* Sat May 4 2019 José Matos <jamatos@fedoraproject.org> - 3.0.2-1
|
|
|
|
- update to 3.0.2
|
|
|
|
|
2019-03-11 18:46:56 +00:00
|
|
|
* Mon Mar 11 2019 Tom Callaway <spot@fedoraproject.org> - 3.0.1-2
|
|
|
|
- R 3.5.3
|
|
|
|
|
2019-03-04 19:39:36 +00:00
|
|
|
* Mon Mar 4 2019 José Matos <jamatos@fedoraproject.org> - 3.0.1-1
|
|
|
|
- update to 3.0.1
|
2019-03-04 20:47:13 +00:00
|
|
|
- rpy >= 3.0.0 requires python3
|
2019-05-04 19:20:22 +00:00
|
|
|
- add a %%chech section (commented because the tests are not present in the release)
|
2019-03-04 19:39:36 +00:00
|
|
|
|
2019-02-27 11:53:30 +00:00
|
|
|
* Wed Feb 27 2019 José Matos <jamatos@fedoraproject.org> - 3.0.0-1
|
2019-02-27 11:03:44 +00:00
|
|
|
- update to 3.0.0
|
|
|
|
- fix the directory ownership
|
2019-02-27 11:53:30 +00:00
|
|
|
- declare license file
|
2019-02-27 11:03:44 +00:00
|
|
|
|
2019-02-02 11:37:00 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-17 20:23:45 +00:00
|
|
|
* Thu Jan 17 2019 Tom Callaway <spot@fedoraproject.org> - 2.9.5-1
|
|
|
|
- update to 2.9.5
|
|
|
|
- R 3.5.2
|
|
|
|
|
2018-09-14 12:15:16 +00:00
|
|
|
* Fri Sep 14 2018 Tom Callaway <spot@fedoraproject.org> - 2.9.4-4
|
|
|
|
- rebuild for R 3.5.1
|
|
|
|
|
2018-07-14 03:44:56 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-10 21:01:05 +00:00
|
|
|
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 2.9.4-2
|
|
|
|
- Rebuild for ICU 62
|
|
|
|
|
2018-06-30 14:42:33 +00:00
|
|
|
* Sat Jun 30 2018 José Matos <jamatos@fedoraproject.org> - 2.9.4-1
|
|
|
|
- update to 2.9.4
|
|
|
|
|
2018-06-19 09:26:59 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.9.3-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-05-14 15:25:18 +00:00
|
|
|
* Mon May 14 2018 Tom Callaway <spot@fedoraproject.org> - 2.9.3-1
|
|
|
|
- update to 2.9.3, R 3.5.0
|
|
|
|
|
2018-04-30 19:40:47 +00:00
|
|
|
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 2.9.2-2
|
|
|
|
- Rebuild for ICU 61.1
|
|
|
|
|
2018-03-28 19:23:52 +00:00
|
|
|
* Wed Mar 28 2018 Tom Callaway <spot@fedoraproject.org> - 2.9.2-1
|
|
|
|
- update to 2.9.2, R 3.4.4
|
|
|
|
|
2018-02-09 13:20:38 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-04 17:07:52 +00:00
|
|
|
* Mon Dec 4 2017 Tom Callaway <spot@fedoraproject.org> - 2.9.1-1
|
|
|
|
- update to 2.9.1, rebuild for R 3.4.3
|
|
|
|
|
2017-11-30 20:47:51 +00:00
|
|
|
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 2.9.0-2
|
|
|
|
- Rebuild for ICU 60.1
|
|
|
|
|
2017-10-28 00:06:31 +00:00
|
|
|
* Fri Oct 27 2017 Tom Callaway <spot@fedoraproject.org> - 2.9.0-1
|
|
|
|
- update to 2.9.0, rebuild for R 3.4.2
|
|
|
|
- disable python2 support
|
|
|
|
|
2017-08-03 07:48:09 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 13:17:44 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-30 15:20:36 +00:00
|
|
|
* Fri Jun 30 2017 Tom Callaway <spot@fedoraproject.org> - 2.8.6-1
|
|
|
|
- update to 2.8.6, rebuild for R 3.4.1
|
|
|
|
|
2017-05-15 13:15:07 +00:00
|
|
|
* Mon May 15 2017 Tom Callaway <spot@fedoraproject.org> - 2.8.5-4
|
|
|
|
- rebuild for R 3.4.0
|
|
|
|
|
2017-03-08 19:17:11 +00:00
|
|
|
* Wed Mar 8 2017 Tom Callaway <spot@fedoraproject.org> - 2.8.5-3
|
|
|
|
- rebuild for R 3.3.3
|
|
|
|
|
2017-02-11 11:52:01 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-30 15:07:49 +00:00
|
|
|
* Fri Dec 30 2016 José Matos <jamatos@fedoraproject.org> - 2.8.5-1
|
|
|
|
- update to 2.8.5
|
2016-12-30 16:26:59 +00:00
|
|
|
- workaround to fix a bug in R (it fails for 32 bit archs)
|
2016-12-30 15:07:49 +00:00
|
|
|
|
2016-12-19 17:20:38 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.8.3-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-11-01 16:32:16 +00:00
|
|
|
* Tue Nov 1 2016 Tom Callaway <spot@fedoraproject.org> - 2.8.3-1
|
|
|
|
- update to 2.8.3
|
|
|
|
- rebuild for R 3.3.2
|
|
|
|
|
2016-07-19 12:32:30 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.1-3
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-07-06 14:07:27 +00:00
|
|
|
* Wed Jul 6 2016 Tom Callaway <spot@fedoraproject.org> - 2.8.1-2
|
|
|
|
- rebuild for R 3.3.1
|
|
|
|
|
2016-06-16 10:49:13 +00:00
|
|
|
* Thu Jun 16 2016 José Abílio Matos <jamatos@fc.up.pt> - 2.8.1-1
|
|
|
|
- update to 2.8.1
|
|
|
|
- adapt the source url to a new scheme
|
|
|
|
|
2016-05-10 16:10:43 +00:00
|
|
|
* Tue May 10 2016 Tom Callaway <spot@fedoraproject.org> - 2.7.9-1
|
|
|
|
- update to 2.7.9, R 3.3.0
|
|
|
|
|
2016-04-15 18:15:54 +00:00
|
|
|
* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 2.7.8-3
|
|
|
|
- rebuild for ICU 57.1
|
|
|
|
|
2016-03-19 01:22:21 +00:00
|
|
|
* Fri Mar 18 2016 Tom Callaway <spot@fedoraproject.org> - 2.7.8-2
|
|
|
|
- rebuild for R 3.2.4
|
|
|
|
|
2016-02-14 18:08:31 +00:00
|
|
|
* Sun Feb 14 2016 José Matos <jamatos@fedoraproject.org> - 2.7.8-1
|
|
|
|
- update to 2.7.8
|
|
|
|
- modernize python2 and python3 preserving the upgrade path
|
|
|
|
|
2016-02-04 22:19:38 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-11 21:45:43 +00:00
|
|
|
* Fri Dec 11 2015 Tom Callaway <spot@fedoraproject.org> - 2.7.5-1
|
|
|
|
- update to 2.7.5
|
|
|
|
|
2015-11-10 18:06:08 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-28 13:08:52 +00:00
|
|
|
* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 2.6.2-2
|
|
|
|
- rebuild for ICU 56.1
|
|
|
|
|
2015-08-14 20:35:54 +00:00
|
|
|
* Fri Aug 14 2015 Tom Callaway <spot@fedoraproject.org> - 2.6.2-1
|
|
|
|
- update to 2.6.2, R 3.2.2
|
|
|
|
|
2015-07-21 09:33:48 +00:00
|
|
|
* Tue Jul 21 2015 José Matos <jamatos@fedoraproject.org> - 2.6.1-1
|
|
|
|
- Update to 2.6.1
|
|
|
|
|
2015-06-19 14:41:22 +00:00
|
|
|
* Fri Jun 19 2015 Tom Callaway <spot@fedoraproject.org> - 2.6.0-1
|
|
|
|
- 2.6.0, R 3.2.1
|
|
|
|
|
2015-06-18 22:34:02 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-30 14:57:22 +00:00
|
|
|
* Thu Apr 30 2015 Tom Callaway <spot@fedoraproject.org> - 2.5.6-4
|
|
|
|
- R 3.2.0
|
|
|
|
|
2015-04-01 22:12:23 +00:00
|
|
|
* Wed Apr 1 2015 Orion Poplawski <orion@cora.nwra.com> - 2.5.6-3
|
|
|
|
- Fix URL
|
|
|
|
|
2015-03-10 11:07:33 +00:00
|
|
|
* Tue Mar 10 2015 José Matos <jamatos@fedoraproject.org> - 2.5.6-2
|
|
|
|
- R 3.1.3
|
|
|
|
|
2015-02-13 16:13:29 +00:00
|
|
|
* Fri Feb 13 2015 José Matos <jamatos@fedoraproject.org> - 2.5.6-1
|
|
|
|
- update to 2.5.6
|
|
|
|
|
2015-01-26 16:07:31 +00:00
|
|
|
* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 2.5.2-2
|
|
|
|
- rebuild for ICU 54.1
|
|
|
|
|
2014-11-28 13:47:35 +00:00
|
|
|
* Fri Nov 28 2014 José Matos <jamatos@fedoraproject.org> - 2.5.2-1
|
|
|
|
- update to 2.5.2
|
|
|
|
|
2014-11-14 16:11:40 +00:00
|
|
|
* Fri Nov 14 2014 José Matos <jamatos@fedoraproject.org> - 2.5.1-1
|
|
|
|
- update to 2.5.1
|
|
|
|
- add python3 subpackage
|
|
|
|
|
2014-11-01 22:46:32 +00:00
|
|
|
* Sat Nov 1 2014 Tom Callaway <spot@fedoraproject.org> - 2.4.4-1
|
|
|
|
- update to 2.4.4
|
|
|
|
- R 3.1.2
|
|
|
|
|
2014-09-24 14:07:34 +00:00
|
|
|
* Wed Sep 24 2014 José Matos <jamatos@fedoraproject.org> - 2.4.3-1
|
|
|
|
- update to 2.4.3
|
|
|
|
|
2014-08-26 11:57:32 +00:00
|
|
|
* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 2.4.2-3
|
|
|
|
- rebuild for ICU 53.1
|
|
|
|
|
2014-08-18 00:20:07 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-16 16:59:33 +00:00
|
|
|
* Wed Jul 16 2014 Tom Callaway <spot@fedoraproject.org> - 2.4.2-1
|
|
|
|
- update to 2.4.2
|
|
|
|
- R 3.1.1
|
|
|
|
|
2014-06-08 02:58:19 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-21 20:53:49 +00:00
|
|
|
* Mon Apr 21 2014 Tom Callaway <spot@fedoraproject.org> - 2.3.10-1
|
|
|
|
- update to 2.3.10
|
|
|
|
- R 3.1.0
|
|
|
|
|
2014-03-24 01:52:42 +00:00
|
|
|
* Sun Mar 23 2014 Tom Callaway <spot@fedoraproject.org> - 2.3.9-2
|
|
|
|
- rebuild for R 3.0.3
|
|
|
|
|
2014-01-31 12:08:34 +00:00
|
|
|
* Fri Jan 31 2014 José Matos <jamatos@fedoraproject.org> - 2.3.9-1
|
|
|
|
- update to 2.3.9
|
|
|
|
- prepare the python3 support:
|
|
|
|
- add virtual provides for python-rpy
|
|
|
|
- change the build requirement from python-devel to python2-devel
|
|
|
|
|
2013-10-15 23:32:43 +00:00
|
|
|
* Tue Oct 15 2013 Tom Callaway <spot@fedoraproject.org> - 2.3.8-1
|
|
|
|
- update to 2.3.8, rebuild for R 3.0.2
|
|
|
|
|
2013-08-04 13:01:06 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-17 21:10:00 +00:00
|
|
|
* Fri May 17 2013 Tom Callaway <spot@fedoraproject.org> - 2.3.6-2
|
|
|
|
- rebuild for R 3.0.1
|
|
|
|
|
2013-05-06 16:43:14 +00:00
|
|
|
* Mon May 6 2013 José Matos <jamatos@fedoraproject.org> - 2.3.6-1
|
|
|
|
- update to 2.3.6
|
|
|
|
|
2013-04-11 14:34:23 +00:00
|
|
|
* Thu Apr 11 2013 Tom Callaway <spot@fedoraproject.org> - 2.3.5-1
|
|
|
|
- update to 2.3.5, built against R 3.0.0
|
|
|
|
|
2013-02-14 21:53:56 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-0.2.beta1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-29 18:53:38 +00:00
|
|
|
* Mon Oct 29 2012 Tom Callaway <spot@fedoraproject.org> - 2.3.0-0.1.beta1
|
|
|
|
- update to 2.3.0beta1
|
|
|
|
|
2012-07-21 17:06:51 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2014-07-16 16:59:33 +00:00
|
|
|
* Wed Jul 4 2012 Tom Callaway <spot@fedoraproject.org> - 2.2.6-1
|
2012-07-02 17:46:59 +00:00
|
|
|
- update to 2.2.6, R 2.15.1
|
|
|
|
|
2012-03-31 17:51:07 +00:00
|
|
|
* Sat Mar 31 2012 Tom Callaway <spot@fedoraproject.org> - 2.2.5-1
|
|
|
|
- update to 2.2.5, R 2.15.0
|
|
|
|
|
2012-01-06 23:34:09 +00:00
|
|
|
* Fri Jan 6 2012 José Matos <jamatos@fedoraproject.org> - 2.2.4-2
|
|
|
|
- rebuild for R 2.14.1
|
|
|
|
|
2011-11-09 18:23:58 +00:00
|
|
|
* Wed Nov 9 2011 Tom Callaway <spot@fedoraproject.org> - 2.2.4-1
|
|
|
|
- update to 2.2.4
|
|
|
|
- rebuild for R 2.14.0
|
|
|
|
|
2011-10-08 01:44:06 +00:00
|
|
|
* Fri Oct 7 2011 Tom Callaway <spot@fedoraproject.org> - 2.2.3-1
|
|
|
|
- update to 2.2.3
|
|
|
|
- rebuild for R 2.13.2
|
|
|
|
|
2011-07-11 20:56:42 +00:00
|
|
|
* Mon Jul 11 2011 Tom Callaway <spot@fedoraproject.org> - 2.2.1-2
|
|
|
|
- add BuildRequires: readline-devel
|
|
|
|
|
2011-07-11 19:40:13 +00:00
|
|
|
* Mon Jul 11 2011 Tom Callaway <spot@fedoraproject.org> - 2.2.1-1
|
|
|
|
- update to 2.2.1, note R at 2.13.1
|
|
|
|
- spec file modernization
|
|
|
|
|
2011-04-15 12:00:42 +00:00
|
|
|
* Fri Apr 15 2011 Michel Salim <salimma@fedoraproject.org> - 2.1.9-4
|
|
|
|
- Rebuild for R 2.13.0
|
|
|
|
|
2011-02-27 19:24:09 +00:00
|
|
|
* Sun Feb 27 2011 Tom Callaway <spot@fedoraproject.org> - 2.1.9-3
|
|
|
|
- rebuild for R 2.12.2
|
|
|
|
|
2011-02-09 08:45:49 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-18 00:28:24 +00:00
|
|
|
* Fri Dec 17 2010 Tom Callaway <spot@fedoraproject.org> - 2.1.9-1
|
|
|
|
- update to 2.1.9
|
|
|
|
|
2010-10-20 19:07:45 +00:00
|
|
|
* Wed Oct 20 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.1.7-1
|
|
|
|
- update to 2.1.7
|
|
|
|
|
2010-07-27 00:20:48 +00:00
|
|
|
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.1.3-3
|
|
|
|
- generalize reference to 2.6 to 2.? in %%install
|
|
|
|
|
2010-07-22 06:22:53 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-06-01 19:05:28 +00:00
|
|
|
* Tue Jun 1 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.1.3-1
|
|
|
|
- update to 2.1.3
|
|
|
|
|
2010-04-23 11:48:28 +00:00
|
|
|
* Fri Apr 23 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.1.0-1
|
|
|
|
- update to 2.1.0
|
|
|
|
|
2010-04-08 19:47:37 +00:00
|
|
|
* Thu Apr 8 2010 José Matos <jamatos@fc.up.pt> - 2.0.8-2
|
|
|
|
- Rebuild for new numpy.
|
|
|
|
|
2010-01-25 20:46:29 +00:00
|
|
|
* Mon Jan 25 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.8-1
|
|
|
|
- update to 2.0.8
|
|
|
|
|
2009-12-29 22:48:45 +00:00
|
|
|
* Tue Dec 29 2009 Alex Lancaster <alexlan[AT]fedoraproject org> - 2.0.6-7
|
|
|
|
- Rebuild for new R (2.10.1)
|
|
|
|
|
2009-11-05 13:20:04 +00:00
|
|
|
* Thu Nov 5 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.6-7
|
|
|
|
- rebuild for R 2.10.0
|
|
|
|
|
2009-09-21 09:31:21 +00:00
|
|
|
* Mon Sep 21 2009 José Matos <jamatos@fc.up.pt> - 2.0.6-6
|
|
|
|
- require at runtime just R-core
|
|
|
|
|
2009-08-24 19:43:57 +00:00
|
|
|
* Mon Aug 24 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.6-5
|
|
|
|
- rebuild for R 2.9.2
|
|
|
|
|
2009-07-27 03:14:48 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-10 15:46:18 +00:00
|
|
|
* Fri Jul 10 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.6-3
|
2009-07-10 15:37:52 +00:00
|
|
|
- images are only installed incorrectly on 64bit platforms that aren't ia64
|
|
|
|
|
2009-07-09 21:26:45 +00:00
|
|
|
* Thu Jul 9 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.6-1
|
|
|
|
- rebuild for R 2.9.1
|
|
|
|
- update to rpy2 2.0.6
|
|
|
|
|
2009-04-17 20:18:06 +00:00
|
|
|
* Fri Apr 17 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3-2
|
|
|
|
- rebuild for R 2.9.0
|
|
|
|
|
2009-03-24 01:53:10 +00:00
|
|
|
* Fri Mar 20 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3-1
|
|
|
|
- update to rpy2 2.0.3
|
|
|
|
|
2009-02-25 20:33:49 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-22 16:29:12 +00:00
|
|
|
* Mon Dec 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.3-6
|
|
|
|
- rebuild for R 2.8.1
|
|
|
|
|
2008-11-29 17:21:08 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.3-5
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-10-26 19:57:48 +00:00
|
|
|
* Sun Oct 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.3-4
|
|
|
|
- rebuild against R-2.8.0
|
|
|
|
|
2008-08-29 18:44:28 +00:00
|
|
|
* Fri Aug 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.3-3
|
|
|
|
- rebuild against R-2.7.2
|
|
|
|
|
2008-07-08 13:53:27 +00:00
|
|
|
* Tue Jul 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.3-2
|
|
|
|
- rebuild against R 2.7.1
|
|
|
|
|
2008-05-21 15:24:25 +00:00
|
|
|
* Wed May 21 2008 José Matos <jamatos[AT]fc.up.pt> - 1.0.3-1
|
|
|
|
- Update to 1.0.3
|
|
|
|
- Backport two patches from upstream (turn off debug and use the lapack version that R was compiled with)
|
|
|
|
|
2008-04-29 21:48:49 +00:00
|
|
|
* Tue Apr 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.2-1
|
|
|
|
- update to 1.0.2
|
|
|
|
- R 2.7.0
|
|
|
|
|
2008-02-13 20:02:45 +00:00
|
|
|
* Wed Feb 13 2008 José Matos <jamatos[AT]fc.up.pt> - 1.0.1-5
|
|
|
|
- BR texinfo -> texinfo-tex
|
|
|
|
|
2008-02-13 19:43:17 +00:00
|
|
|
* Wed Feb 13 2008 José Matos <jamatos[AT]fc.up.pt> - 1.0.1-4
|
|
|
|
- Rebuild for gcc 4.3
|
|
|
|
|
2008-02-08 19:31:16 +00:00
|
|
|
* Fri Feb 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.1-3
|
|
|
|
- rebuild for R 2.6.2
|
|
|
|
|
2008-02-04 12:40:34 +00:00
|
|
|
* Mon Feb 4 2008 José Matos <jamatos[AT]fc.up.pt> - 1.0.1-2
|
|
|
|
- Sometimes _patch_'s guesses are not good enough. Redo patch to setup.py.
|
|
|
|
|
2008-02-03 18:21:32 +00:00
|
|
|
* Sun Feb 3 2008 José Matos <jamatos[AT]fc.up.pt> - 1.0.1-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2008-01-08 00:47:30 +00:00
|
|
|
* Mon Jan 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0-0.7.RC3
|
|
|
|
- find the moved R headers in their new home (/usr/include/R)
|
|
|
|
|
2008-01-08 00:19:56 +00:00
|
|
|
* Mon Jan 7 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 1.0-0.6.RC3
|
|
|
|
- BuildRequires: R-devel rather than just R
|
|
|
|
|
2007-11-27 01:17:44 +00:00
|
|
|
* Mon Nov 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0-0.5.RC3
|
|
|
|
- really rebuild against R 2.6.1
|
|
|
|
- versioned buildrequires for R
|
|
|
|
|
2007-11-26 22:28:34 +00:00
|
|
|
* Mon Nov 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0-0.4.RC3
|
|
|
|
- rebuild against R 2.6.1
|
|
|
|
|
2007-10-08 15:11:43 +00:00
|
|
|
* Mon Oct 8 2007 José Matos <jamatos[AT]fc.up.pt> - 1.0-0.3.RC3
|
|
|
|
- Rebuild for R 2.6.0 (really).
|
|
|
|
|
2007-10-05 07:10:15 +00:00
|
|
|
* Fri Oct 5 2007 José Matos <jamatos[AT]fc.up.pt> - 1.0-0.2.RC3
|
|
|
|
- Rebuild for R version 2.6.
|
|
|
|
|
2007-08-29 17:36:29 +00:00
|
|
|
* Wed Aug 29 2007 José Matos <jamatos[AT]fc.up.pt> - 1.0-0.1.RC3
|
|
|
|
- New upstream version.
|
|
|
|
- Change from python-numeric to numpy package.
|
|
|
|
|
2007-08-28 21:43:15 +00:00
|
|
|
* Tue Aug 28 2007 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-18
|
|
|
|
- License fix, rebuild for devel (F8).
|
|
|
|
|
2007-07-06 19:18:44 +00:00
|
|
|
* Fri Jul 6 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.4.6-17
|
|
|
|
- Rebuild to link with R 2.5.1
|
|
|
|
|
2007-04-26 10:09:54 +00:00
|
|
|
* Thu Apr 26 2007 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-16
|
|
|
|
- Rebuild to link with R 2.5.0
|
|
|
|
|
2006-12-21 19:16:06 +00:00
|
|
|
* Thu Dec 21 2006 Tom "spot" Callaway <tcallawa@redhat.com> - 0.4.6-15
|
|
|
|
- Rebuild for new R-version.
|
|
|
|
|
2006-12-12 00:34:42 +00:00
|
|
|
* Tue Dec 12 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-14
|
|
|
|
- Rebuild for python 2.5.
|
|
|
|
|
2006-10-17 14:44:29 +00:00
|
|
|
* Tue Oct 17 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-13
|
|
|
|
- Rebuild for new R-version.
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Thu Sep 14 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-12
|
|
|
|
- Rebuild for FC6.
|
|
|
|
|
|
|
|
* Sun Jun 4 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-11
|
2006-06-04 21:38:32 +00:00
|
|
|
- Rebuild for R-2.3.1
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Wed Apr 26 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-10
|
2006-04-26 14:44:19 +00:00
|
|
|
- BuildRequires tetex for "make pdf" (pdftex).
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Wed Apr 26 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-9
|
2006-04-26 11:47:36 +00:00
|
|
|
- Fix detection of R version.
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Wed Apr 26 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-8
|
2006-04-26 10:55:02 +00:00
|
|
|
- Rebuild for R-2.3.0
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Fri Feb 17 2006 Alex Lancaster <alexl[AT]users.sourceforge.net> - 0.4.6-7
|
2006-02-17 11:16:57 +00:00
|
|
|
- Build info docs (bz#169002).
|
|
|
|
- Build pdf and html documentation, clean doc directory. (jamatos)
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Thu Feb 16 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-6
|
2006-02-17 00:06:57 +00:00
|
|
|
- Use a fixed value for R version.
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Thu Feb 16 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-5
|
2006-02-16 11:50:28 +00:00
|
|
|
- Set explicit dependency on exact version of R used to build the package. (bz#177078)
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Tue Jan 3 2006 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-4
|
2006-01-03 23:32:47 +00:00
|
|
|
- Update for R-2.2.1
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Tue Oct 11 2005 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-3
|
2005-10-11 07:41:26 +00:00
|
|
|
- Another try to deal with make tag.
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Mon Oct 10 2005 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-2
|
2005-10-10 18:12:52 +00:00
|
|
|
- Rebuild for R-2.2.0
|
|
|
|
|
2006-09-14 12:49:48 +00:00
|
|
|
* Thu Sep 15 2005 José Matos <jamatos[AT]fc.up.pt> - 0.4.6-1
|
2005-09-15 16:17:23 +00:00
|
|
|
- Initial package for Fedora Extras
|