forked from python-gitlab/python-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-gitlab.spec
More file actions
135 lines (117 loc) · 4.64 KB
/
python-gitlab.spec
File metadata and controls
135 lines (117 loc) · 4.64 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Copyright 2025 Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
%global debug_package %{nil}
%global source_date_epoch_from_changelog 0
Name: python-gitlab
Epoch: 100
Version: 6.1.0
Release: 1%{?dist}
BuildArch: noarch
Summary: Interact with GitLab API
License: LGPL-3.0-only
URL: https://github.com/python-gitlab/python-gitlab/tags
Source0: %{name}_%{version}.orig.tar.gz
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python3-devel
BuildRequires: python3-pip
%description
python-gitlab is a Python package providing access to the GitLab server
API. It supports the v4 API of GitLab, and provides a CLI tool (gitlab).
%prep
%autosetup -T -c -n %{name}_%{version}-%{release}
tar -zx -f %{S:0} --strip-components=1 -C .
%build
pip wheel \
--no-deps \
--no-build-isolation \
--wheel-dir=dist \
.
%install
pip install \
--no-deps \
--ignore-installed \
--root=%{buildroot} \
--prefix=%{_prefix} \
dist/*.whl
find %{buildroot}%{python3_sitelib} -type f -name '*.pyc' -exec rm -rf {} \;
fdupes -qnrps %{buildroot}%{python3_sitelib}
%check
%if 0%{?suse_version} > 1500
%package -n python%{python3_version_nodots}-gitlab
Summary: Interact with GitLab API
Requires: python3
Requires: python3-PyYAML >= 6.0.1
Requires: python3-argcomplete >= 1.10.0
Requires: python3-requests >= 2.32.0
Requires: python3-requests-toolbelt >= 1.0.0
Provides: python3-gitlab = %{epoch}:%{version}-%{release}
Provides: python3dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(python-gitlab) = %{epoch}:%{version}-%{release}
%description -n python%{python3_version_nodots}-gitlab
python-gitlab is a Python package providing access to the GitLab server
API. It supports the v4 API of GitLab, and provides a CLI tool (gitlab).
%files -n python%{python3_version_nodots}-gitlab
%license COPYING
%{_bindir}/*
%{python3_sitelib}/*
%endif
%if 0%{?sle_version} > 150000
%package -n python3-gitlab
Summary: Interact with GitLab API
Requires: python3
Requires: python3-argcomplete >= 1.10.0
Requires: python3-PyYAML >= 6.0.1
Requires: python3-requests >= 2.32.0
Requires: python3-requests-toolbelt >= 1.0.0
Provides: python3-gitlab = %{epoch}:%{version}-%{release}
Provides: python3dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(python-gitlab) = %{epoch}:%{version}-%{release}
%description -n python3-gitlab
python-gitlab is a Python package providing access to the GitLab server
API. It supports the v4 API of GitLab, and provides a CLI tool (gitlab).
%files -n python3-gitlab
%license COPYING
%{_bindir}/*
%{python3_sitelib}/*
%endif
%if !(0%{?suse_version} > 1500) && !(0%{?sle_version} > 150000)
%package -n python3-gitlab
Summary: Interact with GitLab API
Requires: python3
Requires: python3-argcomplete >= 1.10.0
Requires: python3-pyyaml >= 6.0.1
Requires: python3-requests >= 2.32.0
Requires: python3-requests-toolbelt >= 1.0.0
Provides: python3-gitlab = %{epoch}:%{version}-%{release}
Provides: python3dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(python-gitlab) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-gitlab = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(python-gitlab) = %{epoch}:%{version}-%{release}
%description -n python3-gitlab
python-gitlab is a Python package providing access to the GitLab server
API. It supports the v4 API of GitLab, and provides a CLI tool (gitlab).
%files -n python3-gitlab
%license COPYING
%{_bindir}/*
%{python3_sitelib}/*
%endif
%changelog