* Initialize logger as a child of the Kivy's one
* Add support request automation (as other kivy projects)
* Add support for Python 3.11
* Remove Python 2 support, six dependency
* Removes some Python2-era complexity
* Remove Python 3.6 from supported and test matrix, as it
reached EOL
- drop python-pyjnius-no-python2.patch (upstream)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyjnius?expand=0&rev=11
74 lines
2.2 KiB
RPMSpec
74 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-pyjnius
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-pyjnius
|
|
Version: 1.5.0
|
|
Release: 0
|
|
Summary: Access Java classes from Python
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/kivy/pyjnius
|
|
Source: https://github.com/kivy/pyjnius/archive/%{version}.tar.gz#/pyjnius-%{version}.tar.gz
|
|
BuildRequires: %{python_module Cython with %python-Cython < 3}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: ant
|
|
BuildRequires: fdupes
|
|
BuildRequires: java-devel
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Cython
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: javapackages-local
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Access Java classes from Python.
|
|
|
|
%prep
|
|
%setup -q -n pyjnius-%{version}
|
|
sed -i 's:python:python3:' tests/test_jvm_options.py
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%python_build
|
|
ant jar test-compile
|
|
mv build/test-classes tests
|
|
|
|
%install
|
|
%python_install
|
|
%{python_expand rm -f %{buildroot}%{$python_sitearch}/setup_sdist.py %{buildroot}%{$python_sitearch}/__pycache__/setup_sdist.*
|
|
%fdupes %{buildroot}%{$python_sitearch}
|
|
}
|
|
|
|
%check
|
|
mv jnius jnius.hide
|
|
%{python_expand export CLASSPATH="${PWD}/tests/test-classes:${PWD}/jnius.hide/src"
|
|
export PYTHONPATH=${PWD}:%{buildroot}%{$python_sitearch}
|
|
# https://github.com/kivy/pyjnius/issues/617
|
|
$python -m pytest -k 'not test_jvm_options'
|
|
}
|
|
|
|
%files %{python_files}
|
|
%doc README.md CHANGELOG.md
|
|
%license LICENSE
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|