Matej Cepl
1e6e878348
- Fix the pypi declared python versions - Add some more documentation - a security policy, and a contributing guide. - Minor bugfix release, but due to lack of CI environments supporting old Python versions, only Python 3.7+ is supported. Otherwise: - @Snape3058 found some refcount issues (see issue #35), these have been fixed. - Tested and enabled Python 3.10 support, dropped < 3.7. - Move fully to setuptools (where available), in preparation for 3.12 dropping distutils support. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyxattr?expand=0&rev=12
66 lines
2.0 KiB
RPMSpec
66 lines
2.0 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2023 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/
|
|
#
|
|
|
|
|
|
%global mod_name pyxattr
|
|
%define github_url https://github.com/iustin/%{mod_name}/releases/download
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-%{mod_name}
|
|
Version: 0.8.1
|
|
Release: 0
|
|
Summary: Filesystem extended attributes for python
|
|
License: LGPL-2.1-or-later
|
|
URL: https://pyxattr.k1024.org/
|
|
Source0: %{github_url}/v%{version}/%{mod_name}-%{version}.tar.gz
|
|
Source1: %{github_url}/v%{version}/%{mod_name}-%{version}.tar.gz.asc
|
|
Source2: https://k1024.org/files/key.asc#/%{name}.keyring
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc
|
|
BuildRequires: libattr-devel
|
|
BuildRequires: python-rpm-macros
|
|
%python_subpackages
|
|
|
|
%description
|
|
This is a C extension module for Python which
|
|
implements extended attributes manipulation. It is a wrapper on top
|
|
of the attr C library - see attr(5).
|
|
|
|
%prep
|
|
%autosetup -n pyxattr-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%check
|
|
# Tests are mostly disabled because for gh#iustin/pyxattr#34
|
|
%pytest_arch tests || /bin/true
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%files %{python_files}
|
|
%{python_sitearch}/xattr*
|
|
%{python_sitearch}/pyxattr-%{version}*-info
|
|
%license COPYING
|
|
%doc NEWS.md README.md
|
|
|
|
%changelog
|