blob: c75576aef3784d3681a1483e7a29a25f910968a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
%global srcname django-mailman3
Name: python-%{srcname}
Version: 1.3.7
Release: %autorelease
Summary: Django library to help interaction with Mailman
License: GPLv3+
URL: https://gitlab.com/mailman/django-mailman3
Source0: %{pypi_source %{srcname}}
Patch0: %{srcname}-localdeps.patch
BuildArch: noarch
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-setuptools
%global _description %{expand:
This package contains libraries and templates for Django-based interfaces
interacting with Mailman.
To use this application, add django_mailman3 to the INSTALLED_APPS list in your
Django server’s settings file.}
%description %{_description}
%package -n python%{python3_pkgversion}-%{srcname}
Summary: %{summary}
%description -n python%{python3_pkgversion}-%{srcname} %{_description}
%prep
%autosetup -p1 -n %{srcname}-%{version}
%generate_buildrequires
%pyproject_buildrequires -t
%build
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files django_mailman3
%check
# Tests want to be run locally
PYTHONPATH=.:${PYTHONPATH} %tox
%files -n python%{python3_pkgversion}-%{srcname} -f %{pyproject_files}
%license COPYING.txt
%doc README.rst
%changelog
%autochangelog
|