-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathnemea-pycommon.spec
77 lines (61 loc) · 2.54 KB
/
nemea-pycommon.spec
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Created by pyp2rpm-3.1.2
%global pypi_name nemea-pycommon
%global pypi_version 1.7.0
%if "x%{?python3_pkgversion}" == "x"
%global python3_pkgversion 3
%endif
Name: %{pypi_name}
Version: %{pypi_version}
Release: 1%{?dist}
Summary: Common Python modules and methods of the NEMEA system.
BuildArch: noarch
Group: Development/Libraries
License: BSD
Vendor: Vaclav Bartos, CESNET <bartos@cesnet.cz>
URL: https://github.com/CESNET/Nemea-Framework
Source0: https://github.com/CESNET/Nemea-Framework/raw/dist-packages/pycommon/%{pypi_name}-%{version}.tar.gz
%description
The module contains methods for creation and submission of incident reports in IDEA format.
%package -n python%{python3_pkgversion}-%{pypi_name}
Summary: Common Python modules and methods of the NEMEA system.
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
Requires: python%{python3_pkgversion}-nemea-pytrap
Requires: python%{python3_pkgversion}-idea-format
Requires: python%{python3_pkgversion}-typedcols
Requires: python%{python3_pkgversion}-ipranges
Requires: python%{python3_pkgversion}-pynspect
Requires: python%{python3_pkgversion}-jinja2
Requires: python%{python3_pkgversion}-ply
Requires: python%{python3_pkgversion}-yaml
Requires: python%{python3_pkgversion}-redis
Requires: redis
BuildRequires: python%{python3_pkgversion}-ply
BuildRequires: python%{python3_pkgversion}-jinja2
BuildRequires: python%{python3_pkgversion}-yaml
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-nemea-pytrap
BuildRequires: python%{python3_pkgversion}-pynspect
BuildRequires: python%{python3_pkgversion}-redis
BuildRequires: redis
%description -n python%{python3_pkgversion}-%{pypi_name}
The module contains methods for creation and submission of incident reports in IDEA format.
This package is compatible with python3.
%prep
%setup
# Remove bundled egg-info
rm -rf %{pypi_name}.egg-info
%build
%py3_build
%install
# Must do the subpackages' install first because the scripts in /usr/bin are
# overwritten with every setup.py install.
%{__python3} setup.py install --skip-build --single-version-externally-managed --root %{buildroot}
mkdir -p %{buildroot}/%{_sysconfdir}/nemea/email-templates/; cp reporter_config/default.html %{buildroot}/%{_sysconfdir}/nemea/email-templates/default.html
%check
%{__python3} setup.py test
%files -n python%{python3_pkgversion}-%{pypi_name}
%doc README
%{python3_sitelib}
%config(noreplace) %{_sysconfdir}/nemea/email-templates/default.html
%changelog