Import F42
This commit is contained in:
commit
33b791d2cb
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/proto-plus-python-1.22.3.tar.gz
|
1
.python-proto-plus.metadata
Normal file
1
.python-proto-plus.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
2be2669f578ac1a1d5e0108f0534feee17e56dde SOURCES/proto-plus-python-1.22.3.tar.gz
|
170
SPECS/python-proto-plus.spec
Normal file
170
SPECS/python-proto-plus.spec
Normal file
@ -0,0 +1,170 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.7.3)
|
||||||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||||||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||||
|
release_number = 7;
|
||||||
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||||
|
print(release_number + base_release_number - 1);
|
||||||
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||||
|
## END: Set by rpmautospec
|
||||||
|
|
||||||
|
# tests are enabled by default
|
||||||
|
%bcond_without tests
|
||||||
|
|
||||||
|
%global srcname proto-plus
|
||||||
|
%global forgeurl https://github.com/googleapis/proto-plus-python
|
||||||
|
Version: 1.22.3
|
||||||
|
%forgemeta
|
||||||
|
|
||||||
|
Name: python-%{srcname}
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: Python wrapper around protocol buffers
|
||||||
|
|
||||||
|
License: Apache-2.0
|
||||||
|
URL: %forgeurl
|
||||||
|
Source0: %forgesource
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
BuildRequires: python3dist(pytest)
|
||||||
|
BuildRequires: python3dist(pytz)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
This is a wrapper around protocol buffers. Protocol buffers is a specification
|
||||||
|
format for APIs, such as those inside Google. This library provides protocol
|
||||||
|
buffer message classes and objects that largely behave like native Python
|
||||||
|
types.}
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
|
|
||||||
|
|
||||||
|
%package -n python3-%{srcname}
|
||||||
|
Summary: %{summary}
|
||||||
|
%description -n python3-%{srcname} %{_description}
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%forgeautosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%pyproject_buildrequires -x testing
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%pyproject_wheel
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%pyproject_install
|
||||||
|
%pyproject_save_files proto
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pyproject_check_import
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
%pytest
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%files -n python3-%{srcname} -f %{pyproject_files}
|
||||||
|
%doc README.rst CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md CONTRIBUTING.rst
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
## START: Generated by rpmautospec
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.3-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 1.22.3-5
|
||||||
|
- Rebuilt for Python 3.13
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 06 2023 Major Hayden <major@redhat.com> - 1.22.3-1
|
||||||
|
- Update to 1.22.3 rhbz#2216799
|
||||||
|
|
||||||
|
* Thu Jun 29 2023 Python Maint <python-maint@redhat.com> - 1.22.2-2
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Major Hayden <major@redhat.com> - 1.22.2-1
|
||||||
|
- Update to 1.22.2
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Sep 01 2022 Major Hayden <major@redhat.com> - 1.22.1-1
|
||||||
|
- Update to 1.22.1 rhbz#2122634
|
||||||
|
|
||||||
|
* Wed Aug 10 2022 Major Hayden <major@redhat.com> - 1.22.0-1
|
||||||
|
- Update to 1.22.0 rhbz#2117345
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.6-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 28 2022 Miro Hrončok <miro@hroncok.cz> - 1.20.6-3
|
||||||
|
- Python 3.11.0b3 support
|
||||||
|
|
||||||
|
* Thu Jun 16 2022 Python Maint <python-maint@redhat.com> - 1.20.6-2
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Tue Jun 14 2022 Major Hayden <major@redhat.com> - 1.20.6-1
|
||||||
|
- Update to 1.20.6
|
||||||
|
|
||||||
|
* Fri May 27 2022 Major Hayden <major@mhtx.net> - 1.20.5-1
|
||||||
|
- Update to 1.20.5
|
||||||
|
|
||||||
|
* Thu May 19 2022 Major Hayden <major@mhtx.net> - 1.20.4-1
|
||||||
|
- 🚀 Update to 1.20.4
|
||||||
|
|
||||||
|
* Thu Feb 17 2022 Major Hayden <major@redhat.com> - 1.20.2-1
|
||||||
|
- Update to 1.20.2
|
||||||
|
|
||||||
|
* Tue Feb 15 2022 Major Hayden <major@redhat.com> - 1.20.1-1
|
||||||
|
- Update to 1.20.1
|
||||||
|
|
||||||
|
* Mon Feb 07 2022 Major Hayden <major@redhat.com> - 1.20.0-1
|
||||||
|
- Update to 1.20.0
|
||||||
|
|
||||||
|
* Wed Jan 26 2022 Major Hayden <major@redhat.com> - 1.19.9-1
|
||||||
|
- Update to 1.19.9
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Nov 08 2021 Major Hayden <major@redhat.com> - 1.19.7-1
|
||||||
|
- Update to 1.19.7
|
||||||
|
|
||||||
|
* Mon Oct 25 2021 Major Hayden <major@mhtx.net> - 1.19.6-1
|
||||||
|
- Update to 1.19.6
|
||||||
|
|
||||||
|
* Tue Oct 12 2021 Major Hayden <major@mhtx.net> - 1.19.5-1
|
||||||
|
- Update to 1.19.5
|
||||||
|
|
||||||
|
* Mon Oct 11 2021 Major Hayden <major@mhtx.net> - 1.19.4-1
|
||||||
|
- Update to 1.19.4
|
||||||
|
|
||||||
|
* Wed Sep 29 2021 Major Hayden <major@mhtx.net> - 1.19.2-1
|
||||||
|
- Update to 1.19.2
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 16 2021 Major Hayden <major@mhtx.net> - 1.19.0-1
|
||||||
|
- Initial import (#1982800)
|
||||||
|
## END: Generated by rpmautospec
|
Loading…
Reference in New Issue
Block a user