forked from pool/python-django-bootstrap3
- Switch to Python 3.11 build. I considered just adding Python 3.11 to the existing Python 3 build but since python-Django is only built for Python 3.11, this seemed more appropriate. OBS-URL: https://build.opensuse.org/request/show/1146467 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-bootstrap3?expand=0&rev=6
68 lines
2.3 KiB
RPMSpec
68 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-django-bootstrap3
|
|
#
|
|
# Copyright (c) 2022 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-%{**}}
|
|
%define skip_python2 1
|
|
%define skip_python36 1
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-django-bootstrap3
|
|
Version: 14.2.0
|
|
Release: 0
|
|
Summary: Bootstrap support for Django projects
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/zostera/django-bootstrap3
|
|
# Get the published sdist from PyPI because it has the setup.py ...
|
|
Source0: https://files.pythonhosted.org/packages/source/d/django-bootstrap3/django-bootstrap3-14.2.0.tar.gz
|
|
# --- but get the test files from Github: https://github.com/zostera/django-bootstrap3/issues/492
|
|
Source1: %{url}/archive/v%{version}.tar.gz#/django-bootstrap3-%{version}-gh.tar.gz
|
|
BuildRequires: %{python_module Django}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Django
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Bootstrap support for Django projects.
|
|
|
|
%prep
|
|
%setup -q -n django-bootstrap3-%{version}
|
|
(cd ..; tar xf %{SOURCE1} django-bootstrap3-%{version}/tests)
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export DJANGO_SETTINGS_MODULE=tests.app.settings
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m django test -v1 --noinput
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{python_sitelib}/bootstrap3
|
|
%{python_sitelib}/django_bootstrap3-%{version}*-info
|
|
|
|
%changelog
|