From 0ba319226c81f5145bd6ff77d5d908cb8320e5f1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 09 2019 13:25:48 +0000 Subject: Release 5.0.0 Signed-off-by: Pierre-Yves Chibon --- diff --git a/R2spec.spec b/R2spec.spec index ee58fe7..9bb44f2 100644 --- a/R2spec.spec +++ b/R2spec.spec @@ -2,7 +2,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: R2spec -Version: 4.2.1 +Version: 5.0.0 Release: 1%{?dist} Summary: Python script to generate R spec file @@ -56,6 +56,18 @@ rm -rf %{buildroot} %{_mandir}/man1/R2rpm.1.gz %changelog +* Mon Sep 09 2019 Pierre-Yves Chibon - 5.0.0-1 +- Update to 5.0.0 +- Port to python3 +- Use textwrap to format package description +- Update the spec file for more recent standards +- Use https links +- Use rpm Suggests for R Suggests +- Disable explicit Requires/Suggests by default +- Use encoding from DESCRIPTION when reading it +- Update CRAN URL to use canonical form +- Check NeedsCompilation for arch dependence if available + * Thu Jun 04 2015 Pierre-Yves Chibon - 4.2.1-1 - Bump the version diff --git a/r2spec/__init__.py b/r2spec/__init__.py index e9d29b6..91abb56 100644 --- a/r2spec/__init__.py +++ b/r2spec/__init__.py @@ -28,7 +28,7 @@ from subprocess import Popen, PIPE logging.basicConfig() LOG = logging.getLogger('R2spec') -VERSION = '4.2.1' +VERSION = '5.0.0' def get_logger():