diff --git a/0003-invalid-escape-seq.patch b/0003-invalid-escape-seq.patch new file mode 100644 index 0000000..ef80a16 --- /dev/null +++ b/0003-invalid-escape-seq.patch @@ -0,0 +1,82 @@ +--- a/behave4cmd0/command_shell_proc.py ++++ b/behave4cmd0/command_shell_proc.py +@@ -251,6 +251,6 @@ + "No such file or directory: '(?P.*)'", + "[Errno 2] No such file or directory:"), # IOError + ExceptionWithPathNormalizer( +- '^\s*File "(?P.*)", line \d+, in ', ++ r'^\s*File "(?P.*)", line \d+, in ', + 'File "'), + ] +--- a/tests/unit/test_behave4cmd_command_shell_proc.py ++++ b/tests/unit/test_behave4cmd_command_shell_proc.py +@@ -1,5 +1,5 @@ + # -*- coding: UTF-8 -*- +-""" ++r""" + + Regular expressions for winpath: + http://regexlib.com/Search.aspx?k=file+name +@@ -61,7 +61,7 @@ def __call__(self, output): + + line_processor_traceback = [ + ExceptionWithPathNormalizer( +- '^\s*File "(?P.*)", line \d+, in ', ++ r'^\s*File "(?P.*)", line \d+, in ', + ' File "'), + BehaveWinCommandOutputProcessor.line_processors[4], + ] +--- a/tests/issues/test_issue0336.py ++++ b/tests/issues/test_issue0336.py +@@ -52,6 +52,7 @@ def test_issue__with_default_encoding(self): + assert file_line_text in text2 + + # @require_python2 ++ @pytest.mark.filterwarnings("ignore:invalid escape sequence") + def test__problem_exists_with_problematic_encoding(self): + """Test ensures that problem exists with encoding=unicode-escape""" + # -- NOTE: Explicit use of problematic encoding +--- a/tests/issues/test_issue0495.py ++++ b/tests/issues/test_issue0495.py +@@ -46,7 +46,7 @@ + def test_issue(log_message): + @capture(level=logging.INFO) + def hook_after_scenario(context, message): +- logging.warn(message) ++ logging.warning(message) + raise RuntimeError() + + # -- PREPARE: +--- a/test/test_parser.py ++++ b/test/test_parser.py +@@ -2,7 +2,7 @@ + + from __future__ import absolute_import + from nose.tools import * +- ++import pytest + from behave import i18n, model, parser + + class Common(object): +@@ -529,16 +529,17 @@ + ('then', 'Then', 'stuff is in buckets', None, None), + ]) + ++ @pytest.mark.filterwarnings("ignore:invalid escape sequence") + def test_parses_feature_with_table_and_escaped_pipe_in_cell_values(self): + doc = u''' + Feature: + Scenario: + Given we have special cell values: + | name | value | +- | alice | one\|two | +- | bob |\|one | +- | charly | one\|| +- | doro | one\|two\|three\|four | ++ | alice | one\\|two | ++ | bob |\\|one | ++ | charly | one\\|| ++ | doro | one\\|two\\|three\\|four | + '''.lstrip() + feature = parser.parse_feature(doc) + assert(len(feature.scenarios) == 1) diff --git a/changelog b/changelog new file mode 100644 index 0000000..6c01e8b --- /dev/null +++ b/changelog @@ -0,0 +1,193 @@ +* Fri Jul 22 2022 Fedora Release Engineering - 1.2.6-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 27 2022 Ali Erdinc Koroglu - 1.2.6-16 +- Rebuilt for RHBZ #2046224 + +* Mon Jun 13 2022 Python Maint - 1.2.6-15 +- Rebuilt for Python 3.11 + +* Fri Jan 21 2022 Fedora Release Engineering - 1.2.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 1.2.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 1.2.6-12 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 1.2.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 1.2.6-9 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 28 2020 Fedora Release Engineering - 1.2.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 1.2.6-7 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.2.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Aug 19 2019 Miro Hrončok - 1.2.6-4 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 1.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Aug 22 2018 Miro Hrončok - 1.2.6-1 +- Update to 1.2.6 +- Drop python2 subpackage +- Drop downstream only patches adding functionality + +* Fri Jul 13 2018 Fedora Release Engineering - 1.2.5-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 1.2.5-24 +- Rebuilt for Python 3.7 + +* Fri Apr 13 2018 Kalev Lember - 1.2.5-23 +- Fix python-behave obsoletes/provides + +* Wed Feb 07 2018 Iryna Shcherbina - 1.2.5-22 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Thu Jul 27 2017 Fedora Release Engineering - 1.2.5-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.2.5-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 1.2.5-19 +- Rebuild for Python 3.6 + +* Wed Sep 21 2016 Matěj Cepl - 1.2.5-18.0.MC +- Rewrite the patch using six :( + +* Tue Sep 20 2016 Matěj Cepl - 1.2.5-18 +- Add patch 0003-unicode_fixes.patch + +* Fri Aug 12 2016 Igor Gnatenko - 1.2.5-17 +- Modernize spec +- Backport patch to put label into sphinx before step + +* Tue Jul 19 2016 Fedora Release Engineering - 1.2.5-16 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Tue Jul 12 2016 Matěj Cepl - 1.2.5-15 +- Recover the build on RHEL-7 again. + +* Wed Jun 22 2016 Matěj Cepl - 1.2.5-14 +- Add a symlink /usr/bin/behave unconditionally (fix #1348872) + +* Fri Jun 03 2016 Igor Gnatenko - 1.2.5-13 +- Update packaging to be compliant with new guidelines +- Fix building manpage +- Really run tests for python3 +- Proper handling for binaries + +* Wed Mar 23 2016 Matěj Cepl - 1.2.5-12 +- it works a way better when the symlink actually points to somewhere. + +* Wed Mar 23 2016 Matěj Cepl - 1.2.5-11 +- /usr/bin/behave belongs to python2 package still (#1319632) + +* Fri Mar 04 2016 Miro Hrončok - 1.2.5-10 +- Move python3 requires to python3 subpackage (#1314741) + +* Mon Feb 29 2016 Matěj Cepl - 1.2.5-9 +- RHEL-7 doesn't have py3k toolchain. + +* Mon Feb 29 2016 Matěj Cepl - 1.2.5-8 +- Fix wrong %%if conditions. + +* Thu Feb 25 2016 Miro Hrončok - 1.2.5-7 +- Make Python 3 the default version for the binary and provide a binary for 2 as well + +* Thu Feb 04 2016 Fedora Release Engineering - 1.2.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Sun Nov 15 2015 Björn Esser - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Tue Nov 03 2015 Matěj Cepl - 1.2.5-3 +- Build also python3 packages (fix #1276923). + +* Thu Jun 18 2015 Fedora Release Engineering - 1.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu May 21 2015 Matej Cepl - 1.2.5-2 +- Add a patch for embeding video in HTML formatted report + +* Wed Apr 29 2015 Matej Cepl - 1.2.5-1 +- Upgrade to the latest release (fix #1214767) + +* Fri Sep 12 2014 Matěj Cepl - 1.2.4-4 +- Add another patch to fix an Unicode error (thanks for vbenes for + fixing my earlier proposal). + +* Thu Jul 17 2014 Matěj Cepl - 1.2.4-2 +- Build documentation even on EPEL-7. + +* Thu Jun 19 2014 Matěj Cepl - 1.2.4-1 +- New upstream release + +* Sat Jun 07 2014 Fedora Release Engineering - 1.2.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 09 2014 Matěj Cepl - 1.2.3-13 +- Remove bundled compatibility libraries and add Requires + (fix #1096220). + +* Mon Apr 07 2014 Matěj Cepl - 1.2.3-12 +- Add python-setuptools dependency (fix #1084996) + +* Wed Mar 19 2014 Matěj Cepl - 1.2.3-11 +- Another fix for RHBZ# 1067388 by Vadim Rutkovsky + +* Wed Mar 12 2014 Matěj Cepl - 1.2.3-10 +- Fix Patch 1 + +* Wed Mar 12 2014 Matěj Cepl - 1.2.3-9 +- Add two patches provided by Vadim Rutkovsky (fix #1058371 and + #1067388) + +* Tue Oct 29 2013 Matěj Cepl - 1.2.3-8 +- Add Vadim Rutkovsky’s HTML Formatter patch (fix #1024023) + +* Wed Oct 23 2013 Matěj Cepl - 1.2.3-7 +- Make generating of docs conditional again. + +* Wed Oct 23 2013 Björn Esser - 1.2.3-6 +- fixed all remaining issues as mentioned in rhbz# 987622 c# 16 +- added needed conditionals for building on el6. + +* Tue Oct 22 2013 Matěj Cepl - 1.2.3-5 +- Generate sphinx documentation + +* Tue Oct 22 2013 Matěj Cepl - 1.2.3-4 +- Fix spelling to en_US (apparently reviewer doesn't understand proper + English ;)) +- Add specific python2 marcros +- Fix files in _bindir to refer to python2 explicitly. +- Run testsuite + +* Mon Oct 21 2013 Matěj Cepl - 1.2.3-3 +- Update generation of manpage from --help output. + +* Sun Jul 28 2013 Matěj Cepl - 1.2.3-2 +- Fix changelog +- Give up on Python3 module ATM + (https://bugzilla.redhat.com/show_bug.cgi?id=987622#c2 and + https://github.com/behave/behave/issues/119) +- noarch package doesn't need CFLAGS set + +* Tue Jul 23 2013 Matěj Cepl - 1.2.3-1 +- initial package for Fedora diff --git a/python-behave.spec b/python-behave.spec index 83eca04..2b06ff3 100644 --- a/python-behave.spec +++ b/python-behave.spec @@ -1,58 +1,57 @@ %global srcname behave +%global desc %{expand: \ +Behavior-driven development (or BDD) is an agile software development +technique that encourages collaboration between developers, QA and +non-technical or business participants in a software project. + +behave uses tests written in a natural language style, backed up by +Python code.} Name: python-%{srcname} Version: 1.2.6 -Release: 17%{?dist} +Release: %autorelease Summary: Tools for the behavior-driven development, Python style -License: BSD +License: BSD-2-Clause URL: http://pypi.python.org/pypi/%{srcname} Source0: https://github.com/behave/behave/archive/v%{version}/%{srcname}-%{version}.tar.gz + # This patch is backport of upstream commits solving https://bugzilla.redhat.com/show_bug.cgi?id=1706085 # Upstream issue: https://github.com/behave/behave/issues/755 Patch0: 0001-Backport-for-py38-fixes.patch # This patch is backport of upstream commit solving issues with pytest 5.0 and newer # Upstream issue: https://github.com/behave/behave/issues/864 Patch1: 0002-Tweak-tests-required-by-pytest-5.0.patch +# Invalid escape sequence warnings fixes +Patch2: 0003-invalid-escape-seq.patch + BuildArch: noarch -%?python_enable_dependency_generator +BuildRequires: make +BuildRequires: help2man +BuildRequires: python3-devel +BuildRequires: python3-hamcrest +BuildRequires: python3-nose +BuildRequires: python3-pytest +BuildRequires: python3-sphinx +BuildRequires: python3-sphinx-bootstrap-theme +Conflicts: python2-behave < 1.2.6 -%global _description \ -Behavior-driven development (or BDD) is an agile software development\ -technique that encourages collaboration between developers, QA and non-\ -technical or business participants in a software project.\ -\ -%{srcname} uses tests written in a natural language style, backed up\ -by Python code. -%description %{_description} +%description +%{desc} %package -n python3-%{srcname} Summary: %{summary} -%{?python_provide:%python_provide python3-%{srcname}} -BuildRequires: make -BuildRequires: python3-devel -BuildRequires: python3-setuptools -BuildRequires: python3-hamcrest -BuildRequires: python3-mock -BuildRequires: python3-nose -BuildRequires: python3-parse -BuildRequires: python3-parse_type >= 0.4.2 -BuildRequires: python3-pytest -BuildRequires: python3-six -Conflicts: python2-behave < 1.2.6 - -%description -n python3-%{srcname} %{_description} + +%description -n python3-%{srcname} +%{desc} %package doc Summary: Documentation for %{name} -BuildRequires: help2man -BuildRequires: python3-sphinx -BuildRequires: python3-sphinx-bootstrap-theme -%description doc %{_description} +%description doc %{desc} This package contains documentation in reST and HTML formats and some brief feature-examples. @@ -64,8 +63,21 @@ brief feature-examples. # setup command: use_2to3 is invalid sed -i '/use_2to3/d' setup.py +# Use the standard library instead of a backport +sed -i -e 's/^import mock/from unittest import mock/' \ + -e 's/^from mock import /from unittest.mock import /' \ + test/*.py test/reporters/*.py tests/api/*.py tests/unit/*.py + +sed -i '/mock/d' py.requirements/testing.txt +sed -i '/mock/d' setup.py +sed -i '/mock/d' tox.ini + +%generate_buildrequires +%pyproject_buildrequires + + %build -%py3_build +%pyproject_wheel make SPHINXBUILD=sphinx-build-3 html -C docs rm -rf build/docs/html/.buildinfo @@ -74,7 +86,8 @@ rm -rf build/docs/html/.buildinfo %install mkdir -p %{buildroot}%{_mandir}/man1 -%py3_install +%pyproject_install +%pyproject_save_files %{srcname} PYTHONPATH=%{buildroot}%{python3_sitelib} help2man \ --no-info \ @@ -86,16 +99,13 @@ install -Dpm0644 %{srcname}.1 %{buildroot}%{_mandir}/man1/ %check -%{__python3} -m pytest -v +%pytest -v -%files -n python3-%{srcname} -%license LICENSE +%files -n python3-%{srcname} -f %{pyproject_files} %doc README.rst %doc %{_mandir}/man1/%{srcname}.1* %{_bindir}/%{srcname} -%{python3_sitelib}/%{srcname}-*.egg-info/ -%{python3_sitelib}/%{srcname}/ %{python3_sitelib}/setuptools_%{srcname}.py %{python3_sitelib}/__pycache__/setuptools_%{srcname}.* @@ -106,196 +116,4 @@ install -Dpm0644 %{srcname}.1 %{buildroot}%{_mandir}/man1/ %changelog -* Fri Jul 22 2022 Fedora Release Engineering - 1.2.6-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Mon Jun 27 2022 Ali Erdinc Koroglu - 1.2.6-16 -- Rebuilt for RHBZ #2046224 - -* Mon Jun 13 2022 Python Maint - 1.2.6-15 -- Rebuilt for Python 3.11 - -* Fri Jan 21 2022 Fedora Release Engineering - 1.2.6-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 1.2.6-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Fri Jun 04 2021 Python Maint - 1.2.6-12 -- Rebuilt for Python 3.10 - -* Wed Jan 27 2021 Fedora Release Engineering - 1.2.6-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Aug 01 2020 Fedora Release Engineering - 1.2.6-9 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 1.2.6-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue May 26 2020 Miro Hrončok - 1.2.6-7 -- Rebuilt for Python 3.9 - -* Thu Jan 30 2020 Fedora Release Engineering - 1.2.6-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Mon Aug 19 2019 Miro Hrončok - 1.2.6-4 -- Rebuilt for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 1.2.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Feb 02 2019 Fedora Release Engineering - 1.2.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Aug 22 2018 Miro Hrončok - 1.2.6-1 -- Update to 1.2.6 -- Drop python2 subpackage -- Drop downstream only patches adding functionality - -* Fri Jul 13 2018 Fedora Release Engineering - 1.2.5-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Tue Jun 19 2018 Miro Hrončok - 1.2.5-24 -- Rebuilt for Python 3.7 - -* Fri Apr 13 2018 Kalev Lember - 1.2.5-23 -- Fix python-behave obsoletes/provides - -* Wed Feb 07 2018 Iryna Shcherbina - 1.2.5-22 -- Update Python 2 dependency declarations to new packaging standards - (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) - -* Thu Jul 27 2017 Fedora Release Engineering - 1.2.5-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 1.2.5-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Dec 19 2016 Miro Hrončok - 1.2.5-19 -- Rebuild for Python 3.6 - -* Wed Sep 21 2016 Matěj Cepl - 1.2.5-18.0.MC -- Rewrite the patch using six :( - -* Tue Sep 20 2016 Matěj Cepl - 1.2.5-18 -- Add patch 0003-unicode_fixes.patch - -* Fri Aug 12 2016 Igor Gnatenko - 1.2.5-17 -- Modernize spec -- Backport patch to put label into sphinx before step - -* Tue Jul 19 2016 Fedora Release Engineering - 1.2.5-16 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Tue Jul 12 2016 Matěj Cepl - 1.2.5-15 -- Recover the build on RHEL-7 again. - -* Wed Jun 22 2016 Matěj Cepl - 1.2.5-14 -- Add a symlink /usr/bin/behave unconditionally (fix #1348872) - -* Fri Jun 03 2016 Igor Gnatenko - 1.2.5-13 -- Update packaging to be compliant with new guidelines -- Fix building manpage -- Really run tests for python3 -- Proper handling for binaries - -* Wed Mar 23 2016 Matěj Cepl - 1.2.5-12 -- it works a way better when the symlink actually points to somewhere. - -* Wed Mar 23 2016 Matěj Cepl - 1.2.5-11 -- /usr/bin/behave belongs to python2 package still (#1319632) - -* Fri Mar 04 2016 Miro Hrončok - 1.2.5-10 -- Move python3 requires to python3 subpackage (#1314741) - -* Mon Feb 29 2016 Matěj Cepl - 1.2.5-9 -- RHEL-7 doesn't have py3k toolchain. - -* Mon Feb 29 2016 Matěj Cepl - 1.2.5-8 -- Fix wrong %%if conditions. - -* Thu Feb 25 2016 Miro Hrončok - 1.2.5-7 -- Make Python 3 the default version for the binary and provide a binary for 2 as well - -* Thu Feb 04 2016 Fedora Release Engineering - 1.2.5-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Sun Nov 15 2015 Björn Esser - 1.2.5-5 -- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 - -* Tue Nov 03 2015 Matěj Cepl - 1.2.5-3 -- Build also python3 packages (fix #1276923). - -* Thu Jun 18 2015 Fedora Release Engineering - 1.2.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Thu May 21 2015 Matej Cepl - 1.2.5-2 -- Add a patch for embeding video in HTML formatted report - -* Wed Apr 29 2015 Matej Cepl - 1.2.5-1 -- Upgrade to the latest release (fix #1214767) - -* Fri Sep 12 2014 Matěj Cepl - 1.2.4-4 -- Add another patch to fix an Unicode error (thanks for vbenes for - fixing my earlier proposal). - -* Thu Jul 17 2014 Matěj Cepl - 1.2.4-2 -- Build documentation even on EPEL-7. - -* Thu Jun 19 2014 Matěj Cepl - 1.2.4-1 -- New upstream release - -* Sat Jun 07 2014 Fedora Release Engineering - 1.2.3-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Fri May 09 2014 Matěj Cepl - 1.2.3-13 -- Remove bundled compatibility libraries and add Requires - (fix #1096220). - -* Mon Apr 07 2014 Matěj Cepl - 1.2.3-12 -- Add python-setuptools dependency (fix #1084996) - -* Wed Mar 19 2014 Matěj Cepl - 1.2.3-11 -- Another fix for RHBZ# 1067388 by Vadim Rutkovsky - -* Wed Mar 12 2014 Matěj Cepl - 1.2.3-10 -- Fix Patch 1 - -* Wed Mar 12 2014 Matěj Cepl - 1.2.3-9 -- Add two patches provided by Vadim Rutkovsky (fix #1058371 and - #1067388) - -* Tue Oct 29 2013 Matěj Cepl - 1.2.3-8 -- Add Vadim Rutkovsky’s HTML Formatter patch (fix #1024023) - -* Wed Oct 23 2013 Matěj Cepl - 1.2.3-7 -- Make generating of docs conditional again. - -* Wed Oct 23 2013 Björn Esser - 1.2.3-6 -- fixed all remaining issues as mentioned in rhbz# 987622 c# 16 -- added needed conditionals for building on el6. - -* Tue Oct 22 2013 Matěj Cepl - 1.2.3-5 -- Generate sphinx documentation - -* Tue Oct 22 2013 Matěj Cepl - 1.2.3-4 -- Fix spelling to en_US (apparently reviewer doesn't understand proper - English ;)) -- Add specific python2 marcros -- Fix files in _bindir to refer to python2 explicitly. -- Run testsuite - -* Mon Oct 21 2013 Matěj Cepl - 1.2.3-3 -- Update generation of manpage from --help output. - -* Sun Jul 28 2013 Matěj Cepl - 1.2.3-2 -- Fix changelog -- Give up on Python3 module ATM - (https://bugzilla.redhat.com/show_bug.cgi?id=987622#c2 and - https://github.com/behave/behave/issues/119) -- noarch package doesn't need CFLAGS set - -* Tue Jul 23 2013 Matěj Cepl - 1.2.3-1 -- initial package for Fedora +%autochangelog