14
0
Files
python-EditorConfig/python-EditorConfig.spec
Matej Cepl 4c27a46e71 - Update to version 0.17.0+git.1743012229.8dca1b6:
* chore(deps): update dependency setuptools to v78 (#70)
  * chore(deps): update dependency setuptools to >=77.0.3 (#69)
  * chore(deps): update dependency setuptools to v77 (#68)
  * chore(deps): update dependency setuptools to >=76.1.0 (#66)
  * chore(deps): update dependency setuptools to v76 (#67)
  * chore(deps): update dependency setuptools to >=75.8.2 (#65)
  * chore(deps): update dependency setuptools to >=75.8.1 (#64)
  * chore(deps): update tests digest to 38e1f14 (#63)
  * chore(deps): update tests digest to 7d75ceb (#62)
  * chore(deps): update dependency setuptools to >=75.8.0 (#61)
  * chore(deps): update dependency setuptools to v75 (#60)
  * Add renovate for auto updating dependencies (#58)
  * Bump version to 0.17.0 (#57)
  * Use alpine 3.21 (CMake 3.21), bump tests (#56)
  * Use alpine instead of Debian image for testing (#55)
  * Move the metadata into `PEP 621`-compliant `pyproject.toml` (#54)
  * Add CI for Runtime Test (#53)
  * Require CMake 3.16.3 (#52)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-EditorConfig?expand=0&rev=17
2025-03-29 21:16:30 +00:00

69 lines
2.2 KiB
RPMSpec

#
# spec file for package python-EditorConfig
#
# Copyright (c) 2025 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/
#
%define modname editorconfig
Name: python-EditorConfig
Version: 0.17.0+git.1743012229.8dca1b6
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/%%{modname}/%%{modname}-%%{version}.tar.gz
Source0: editorconfig-core-py-%{version}.tar.xz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: cmake
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
%autosetup -p1 -n editorconfig-core-py-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
# remove executable that is already supplied by the editorconfig package
rm -rf %{buildroot}%{_bindir}
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export PYTHONDONTWRITEBYTECODE=1
# Still not resolved issues with tests, gh#editorconfig/editorconfig-core-py#37
%{python_expand cmake .
export PYTHONPATH=%{buildroot}%{$python_sitelib}
ctest -VV --output-on-failure . || /bin/true
}
%files %{python_files}
%license LICENSE.* COPYING
%doc README.rst
%{python_sitelib}/editorconfig
%{python_sitelib}/editorconfig-%(echo %{version}|cut -d+ -f 1)*-info
%changelog