You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
305 lines
8.7 KiB
305 lines
8.7 KiB
1 year ago
|
## START: Set by rpmautospec
|
||
|
## (rpmautospec version 0.3.1)
|
||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||
|
release_number = 1;
|
||
|
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
|
||
|
|
||
|
# when bootstrapping Python, pytest-xdist is not yet available
|
||
|
%bcond_without xdist
|
||
|
|
||
|
%global srcname rpmautospec
|
||
|
|
||
|
Name: python-rpmautospec
|
||
|
Version: 0.3.5
|
||
|
Release: %autorelease
|
||
|
Summary: Package and CLI tool to generate release fields and changelogs
|
||
|
|
||
|
License: MIT
|
||
|
URL: https://pagure.io/fedora-infra/rpmautospec
|
||
|
Source0: https://releases.pagure.org/fedora-infra/rpmautospec/rpmautospec-%{version}.tar.gz
|
||
|
|
||
|
BuildArch: noarch
|
||
|
BuildRequires: git
|
||
|
# the langpacks are needed for tests
|
||
|
BuildRequires: glibc-langpack-de
|
||
|
BuildRequires: glibc-langpack-en
|
||
|
BuildRequires: python3-devel >= 3.6.0
|
||
|
BuildRequires: python3-setuptools
|
||
|
BuildRequires: koji
|
||
|
BuildRequires: python%{python3_pkgversion}-babel
|
||
|
BuildRequires: python3-koji
|
||
|
BuildRequires: python3-pygit2
|
||
|
BuildRequires: python%{python3_pkgversion}-pytest
|
||
|
BuildRequires: python%{python3_pkgversion}-pytest-cov
|
||
|
%if %{with xdist}
|
||
|
BuildRequires: python%{python3_pkgversion}-pytest-xdist
|
||
|
%endif
|
||
|
BuildRequires: python%{python3_pkgversion}-pyyaml
|
||
|
|
||
|
Obsoletes: koji-hub-plugin-rpmautospec < 0.1.5-2
|
||
|
Conflicts: koji-hub-plugin-rpmautospec < 0.1.5-2
|
||
|
|
||
|
%global _description %{expand:
|
||
|
A package and CLI tool to generate RPM release fields and changelogs.}
|
||
|
|
||
|
%description %_description
|
||
|
|
||
|
# package the library
|
||
|
|
||
|
%package -n python3-%{srcname}
|
||
|
Summary: %{summary}
|
||
|
%{?python_provide:%python_provide python3-%{srcname}}
|
||
|
|
||
|
Requires: koji
|
||
|
Requires: python3-babel
|
||
|
Requires: python3-koji
|
||
|
Requires: python3-pygit2
|
||
|
Requires: rpm
|
||
|
# for "rpm --specfile"
|
||
|
Requires: rpm-build >= 4.9
|
||
|
|
||
|
%description -n python3-%{srcname} %_description
|
||
|
|
||
|
# Note that there is no %%files section for the unversioned python module
|
||
|
%files -n python3-%{srcname}
|
||
|
%license LICENSE
|
||
|
%doc README.rst
|
||
|
%{python3_sitelib}/%{srcname}-*.egg-info
|
||
|
%{python3_sitelib}/%{srcname}/
|
||
|
|
||
|
# package the cli tool
|
||
|
|
||
|
%package -n %{srcname}
|
||
|
Summary: CLI tool for generating RPM releases and changelogs
|
||
|
Requires: python3-%{srcname} = %{version}-%{release}
|
||
|
|
||
|
%description -n %{srcname}
|
||
|
CLI tool for generating RPM releases and changelogs
|
||
|
|
||
|
%files -n %{srcname}
|
||
|
%{_bindir}/rpmautospec
|
||
|
|
||
|
# package the Koji plugins
|
||
|
|
||
|
%package -n koji-builder-plugin-rpmautospec
|
||
|
Summary: Koji plugin for generating RPM releases and changelogs
|
||
|
Requires: python3-%{srcname} = %{version}-%{release}
|
||
|
Requires: python3-koji
|
||
|
Requires: koji-builder-plugins
|
||
|
|
||
|
%description -n koji-builder-plugin-rpmautospec
|
||
|
A Koji plugin for generating RPM releases and changelogs.
|
||
|
|
||
|
%files -n koji-builder-plugin-rpmautospec
|
||
|
%{_prefix}/lib/koji-builder-plugins/*
|
||
|
|
||
|
# Package the placeholder rpm-macros
|
||
|
|
||
|
%package -n rpmautospec-rpm-macros
|
||
|
Summary: Rpmautospec RPM macros for local rpmbuild
|
||
|
Requires: rpm
|
||
|
|
||
|
%description -n rpmautospec-rpm-macros
|
||
|
RPM macros with placeholders for building rpmautospec enabled packages localy
|
||
|
|
||
|
%files -n rpmautospec-rpm-macros
|
||
|
%{rpmmacrodir}/macros.rpmautospec
|
||
|
|
||
|
#--------------------------------------------------------
|
||
|
|
||
|
%prep
|
||
|
%autosetup -n %{srcname}-%{version}
|
||
|
# The python3-koji package doesn't declare itself properly, so we may not depend on it when
|
||
|
# installed as an RPM.
|
||
|
sed -i /koji/d requirements.txt
|
||
|
|
||
|
%build
|
||
|
%py3_build
|
||
|
|
||
|
%install
|
||
|
%py3_install
|
||
|
mkdir -p %{buildroot}%{_prefix}/lib/koji-builder-plugins/
|
||
|
install -m 0644 koji_plugins/rpmautospec_builder.py \
|
||
|
%{buildroot}%{_prefix}/lib/koji-builder-plugins/
|
||
|
|
||
|
%py_byte_compile %{python3} %{buildroot}%{_prefix}/lib/koji-builder-plugins/
|
||
|
|
||
|
# RPM macros
|
||
|
mkdir -p %{buildroot}%{rpmmacrodir}
|
||
|
install -m 644 rpm/macros.d/macros.rpmautospec %{buildroot}%{rpmmacrodir}/
|
||
|
|
||
|
%check
|
||
|
PYTHONPATH="%{buildroot}%{python3_sitelib}" \
|
||
|
%{__python3} -m pytest \
|
||
|
%if %{with xdist}
|
||
|
--numprocesses=auto
|
||
|
%endif
|
||
|
|
||
|
|
||
|
%changelog
|
||
|
* Wed Feb 08 2023 Nils Philippsen <nils@redhat.com> - 0.3.5-1
|
||
|
- Update to 0.3.5
|
||
|
|
||
|
* Wed Feb 08 2023 Nils Philippsen <nils@redhat.com> - 0.3.4-1
|
||
|
- Update to 0.3.4
|
||
|
|
||
|
* Wed Feb 08 2023 Nils Philippsen <nils@redhat.com> - 0.3.3-1
|
||
|
- Update to 0.3.3
|
||
|
|
||
|
* Tue Jan 24 2023 Nils Philippsen <nils@redhat.com> - 0.3.2-1
|
||
|
- Update to 0.3.2
|
||
|
|
||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||
|
|
||
|
* Fri Nov 11 2022 Nils Philippsen <nils@redhat.com> - 0.3.1-1
|
||
|
- Update to 0.3.1
|
||
|
|
||
|
* Wed Jul 27 2022 Nils Philippsen <nils@redhat.com> - 0.3.0-1
|
||
|
- Update to 0.3.0
|
||
|
|
||
|
* Wed Jun 08 2022 Nils Philippsen <nils@redhat.com>
|
||
|
- Generally BR: python3-pytest-xdist, also on EL9
|
||
|
|
||
|
* Mon May 16 2022 Nils Philippsen <nils@redhat.com> - 0.2.8-1
|
||
|
- Update to 0.2.8
|
||
|
- Don't require python3-pytest-xdist for building on EL9
|
||
|
|
||
|
* Mon May 16 2022 Nils Philippsen <nils@redhat.com> - 0.2.7-1
|
||
|
- Update to 0.2.7
|
||
|
|
||
|
* Mon Apr 25 2022 Nils Philippsen <nils@redhat.com> - 0.2.6-1
|
||
|
- Update to 0.2.6
|
||
|
- Require python3-pytest-xdist for building
|
||
|
- Remove EL7 quirks, pkg isn't built there
|
||
|
|
||
|
* Fri Mar 04 2022 Nils Philippsen <nils@redhat.com>
|
||
|
- require python3-pyyaml for building
|
||
|
|
||
|
* Sun Nov 07 2021 Nils Philippsen <nils@redhat.com>
|
||
|
- require python3-babel and glibc langpacks (the latter for testing)
|
||
|
|
||
|
* Fri Aug 06 2021 Nils Philippsen <nils@redhat.com> - 0.2.5-1
|
||
|
- Update to 0.2.5
|
||
|
|
||
|
* Thu Aug 05 2021 Nils Philippsen <nils@redhat.com> - 0.2.4-1
|
||
|
- Update to 0.2.4
|
||
|
|
||
|
* Wed Jun 16 2021 Nils Philippsen <nils@redhat.com> - 0.2.3-1
|
||
|
- Update to 0.2.3
|
||
|
|
||
|
* Fri Jun 04 2021 Nils Philippsen <nils@redhat.com> - 0.2.2-1
|
||
|
- Update to 0.2.2
|
||
|
|
||
|
* Thu May 27 2021 Nils Philippsen <nils@redhat.com> - 0.2.1-1
|
||
|
- Update to 0.2.1
|
||
|
|
||
|
* Thu May 27 2021 Stephen Coady <scoady@redhat.com> - 0.2.0-1
|
||
|
- Update to 0.2.0
|
||
|
|
||
|
* Thu May 27 2021 Nils Philippsen <nils@redhat.com>
|
||
|
- don't ship obsolete Koji configuration snippet
|
||
|
|
||
|
* Wed May 19 2021 Nils Philippsen <nils@redhat.com>
|
||
|
- remove git-core, fix RPM related dependencies
|
||
|
|
||
|
* Wed May 12 2021 Nils Philippsen <nils@redhat.com>
|
||
|
- depend on python3-pygit2
|
||
|
|
||
|
* Thu Apr 22 2021 Nils Philippsen <nils@redhat.com>
|
||
|
- remove the hub plugin
|
||
|
|
||
|
* Thu Apr 15 2021 Nils Philippsen <nils@redhat.com> - 0.1.5-1
|
||
|
- Update to 0.1.5
|
||
|
- Have lowercase URLs, because Pagure d'oh
|
||
|
|
||
|
* Thu Apr 15 2021 Nils Philippsen <nils@redhat.com> - 0.1.4-1
|
||
|
- Update to 0.1.4
|
||
|
- explicitly BR: python3-setuptools
|
||
|
|
||
|
* Thu Apr 09 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.3-1
|
||
|
- Update to 0.1.3
|
||
|
|
||
|
* Thu Apr 09 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.2-1
|
||
|
- Update to 0.1.2
|
||
|
|
||
|
* Thu Apr 09 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.1-1
|
||
|
- Update to 0.1.1
|
||
|
|
||
|
* Thu Apr 09 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.0-1
|
||
|
- Update to 0.1.0
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.23-1
|
||
|
- Update to 0.023
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.22-1
|
||
|
- Update to 0.0.22
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.21-1
|
||
|
- Update to 0.0.21
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.20-1
|
||
|
- Update to 0.0.20
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.19-1
|
||
|
- Update to 0.0.19
|
||
|
|
||
|
* Wed Apr 08 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.18-1
|
||
|
- Update to 0.0.18
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.17-1
|
||
|
- Update to 0.0.17
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.16-1
|
||
|
- Update to 0.0.16
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.15-1
|
||
|
- Update to 0.0.15
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.14-1
|
||
|
- Update to 0.0.14
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.13-1
|
||
|
- Update to 0.0.13
|
||
|
|
||
|
* Tue Apr 07 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.12-1
|
||
|
- Update to 0.0.12
|
||
|
|
||
|
* Mon Apr 06 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.11-1
|
||
|
- Update to 0.0.11
|
||
|
|
||
|
* Fri Apr 03 2020 Nils Philippsen <nils@redhat.com> - 0.0.10-1
|
||
|
- Update to 0.0.10
|
||
|
|
||
|
* Fri Apr 03 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.9-1
|
||
|
- Update to 0.0.9
|
||
|
|
||
|
* Fri Apr 03 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.8-1
|
||
|
- Update to 0.0.8
|
||
|
|
||
|
* Fri Apr 03 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.7-1
|
||
|
- Update to 0.0.7
|
||
|
|
||
|
* Thu Apr 02 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.6-1
|
||
|
- Update to 0.0.6
|
||
|
|
||
|
* Tue Mar 31 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.5-1
|
||
|
- Update to 0.0.5
|
||
|
|
||
|
* Tue Mar 31 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.4-1
|
||
|
- Update to 0.0.4
|
||
|
|
||
|
* Tue Mar 31 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.3-1
|
||
|
- Update to 0.0.3
|
||
|
|
||
|
* Tue Mar 31 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0.2-1
|
||
|
- Update to 0.0.2
|
||
|
|
||
|
* Wed Mar 18 2020 Adam Saleh <asaleh@redhat.com> - 0.0.1-1
|
||
|
- initial package for Fedora
|
||
|
|