forked from pool/python-EditorConfig
- Update to 0.12.3 * Update 0.12.3 to final version * Add Python 3.9 support * Fix fnmatch adjacent nested curly braces (#33) * tests: bump to master (#32) * editorconfig as a module (#31) * setup.py: read version without installing (#30) * travis: support Python 3.8 * Fix deprecation warnings coming with Python 3.7 * Add (c) to copyright notices per @xuhdev's request OBS-URL: https://build.opensuse.org/request/show/914558 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-EditorConfig?expand=0&rev=10
57 lines
1.8 KiB
RPMSpec
57 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package python-EditorConfig
|
|
#
|
|
# Copyright (c) 2021 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-EditorConfig
|
|
Version: 0.12.3
|
|
Release: 0
|
|
Summary: File Locator and Interpreter for Python
|
|
License: BSD-2-Clause AND Python-2.0
|
|
URL: https://editorconfig.org
|
|
Source0: https://files.pythonhosted.org/packages/source/E/EditorConfig/EditorConfig-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
EditorConfig Python Core provides the same functionality as the
|
|
EditorConfig C Core. EditorConfig Python core can be used as a
|
|
command line program or as an importable library.
|
|
|
|
%prep
|
|
%setup -q -n EditorConfig-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
# remove executable that is already supplied by the editorconfig package
|
|
rm -rf %{buildroot}%{_bindir}
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.* COPYING
|
|
%doc README.rst
|
|
%{python_sitelib}/editorconfig
|
|
%{python_sitelib}/EditorConfig-%{version}-py%{python_version}.egg-info
|
|
|
|
%changelog
|