15
0
Files
python-inflection/python-inflection.spec
Sebastian Wagner 58b38fd678 - update to version 0.4.0:
- BREAKING CHANGES
  - Drop support for Python 2.6 and 3.3 (2dfa5f6)
  - Drop support for Python 2.7 (a826dac)
  - Drop support for Python 3.4 (351a0f5)
  - Drop support for PyPy (88a0a5f)
 - Features
  - Include docs in releases (4c85b45)
  - Add universal wheel distribution (2daa3c7)
  - Add support for Python 3.5 and 3.6 (2dfa5f6)
  - Add support for Python 3.7 and 3.8 (09efb13)
  - Add support for PyPy 3 (2d2d379)
  - Move Changelog to GitHub releases (5181192)
 - Bug Fixes
  - Fix typo in camelize docs (5f44276)
  - Fix doctest blocks in docstrings (1d6c78f) (#11)
  - Fix "passerby" pluralized as "passerbys" and not "passersby (1969b3a) (#40)
  - Fix titleize() capitalizing only words starting with A-Z (e32443b) (#33)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-inflection?expand=0&rev=5
2020-04-07 07:39:40 +00:00

62 lines
1.8 KiB
RPMSpec

#
# spec file for package python-inflection
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-inflection
Version: 0.4.0
Release: 0
Summary: A port of Ruby on Rails inflector to Python
License: MIT
Group: Development/Languages/Python
URL: http://github.com/jpvanhal/inflection
Source: https://files.pythonhosted.org/packages/source/i/inflection/inflection-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
BuildArch: noarch
%python_subpackages
%description
Inflection is a string transformation library. It singularizes and pluralizes
English words, and transforms strings from CamelCase to underscored string.
Inflection is a port of `Ruby on Rails`_' `inflector`_ to Python.
%prep
%setup -q -n inflection-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec setup.py test
%files %{python_files}
%doc README.rst
%%license LICENSE
%{python_sitelib}/*
%changelog