[packit] 0.6.0 upstream release
Upstream tag: 0.6.0 Upstream commit: 42dc2924 Signed-off-by: Nikola Forró <nforro@redhat.com>
This commit is contained in:
parent
4fcaba6fc0
commit
d2678f28f1
10 changed files with 288 additions and 0 deletions
94
python-specfile.spec
Normal file
94
python-specfile.spec
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
%if 0%{?rhel} == 9
|
||||
# RHEL 9 is missing python-flexmock
|
||||
%bcond_with tests
|
||||
%else
|
||||
%bcond_without tests
|
||||
%endif
|
||||
|
||||
|
||||
%global desc %{expand:
|
||||
Python library for parsing and manipulating RPM spec files.
|
||||
Main focus is on modifying existing spec files, any change should result
|
||||
in a minimal diff.}
|
||||
|
||||
|
||||
Name: python-specfile
|
||||
Version: 0.6.0
|
||||
Release: 1%{?dist}
|
||||
|
||||
Summary: A library for parsing and manipulating RPM spec files
|
||||
License: MIT
|
||||
URL: https://github.com/packit/specfile
|
||||
|
||||
Source0: %{pypi_source specfile}
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
|
||||
|
||||
%description
|
||||
%{desc}
|
||||
|
||||
|
||||
%package -n python%{python3_pkgversion}-specfile
|
||||
Summary: %{summary}
|
||||
|
||||
|
||||
%description -n python%{python3_pkgversion}-specfile
|
||||
%{desc}
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n specfile-%{version}
|
||||
# Use packaged RPM python bindings downstream
|
||||
sed -i 's/rpm-py-installer/rpm/' setup.cfg
|
||||
|
||||
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires %{?with_tests: -x testing}
|
||||
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files specfile
|
||||
|
||||
|
||||
%if 0%{?with_tests}
|
||||
%check
|
||||
%pytest
|
||||
%endif
|
||||
|
||||
|
||||
%files -n python%{python3_pkgversion}-specfile -f %{pyproject_files}
|
||||
%doc README.md
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Aug 25 2022 Nikola Forró <nforro@redhat.com> - 0.6.0-1
|
||||
- New upstream release 0.6.0
|
||||
|
||||
* Tue Aug 09 2022 Nikola Forró <nforro@redhat.com> - 0.5.1-1
|
||||
- New upstream release 0.5.1
|
||||
|
||||
* Thu Jul 21 2022 Nikola Forró <nforro@redhat.com> - 0.5.0-1
|
||||
- New upstream release 0.5.0
|
||||
|
||||
* Thu Jun 16 2022 Nikola Forró <nforro@redhat.com> - 0.4.0-1
|
||||
- New upstream release 0.4.0
|
||||
|
||||
* Tue May 10 2022 Nikola Forró <nforro@redhat.com> - 0.3.0-1
|
||||
- New upstream release 0.3.0
|
||||
|
||||
* Wed Mar 30 2022 Nikola Forró <nforro@redhat.com> - 0.2.0-1
|
||||
- New upstream release 0.2.0
|
||||
|
||||
* Mon Feb 21 2022 Nikola Forró <nforro@redhat.com> - 0.1.1-1
|
||||
- New upstream release 0.1.1
|
||||
|
||||
* Tue Feb 08 2022 Nikola Forró <nforro@redhat.com> - 0.1.0-1
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue