Compare commits
No commits in common. "c9" and "c8s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/help2man-1.48.2.tar.xz
|
SOURCES/help2man-1.47.6.tar.xz
|
||||||
|
/help2man-1.47.6.tar.xz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
c7a1ef6e17f4017593815e94fc22b2b58f0ef478 SOURCES/help2man-1.48.2.tar.xz
|
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
@ -4,18 +4,16 @@
|
|||||||
|
|
||||||
Name: help2man
|
Name: help2man
|
||||||
Summary: Create simple man pages from --help output
|
Summary: Create simple man pages from --help output
|
||||||
Version: 1.48.2
|
Version: 1.47.6
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: https://www.gnu.org/software/help2man/
|
URL: http://www.gnu.org/software/help2man
|
||||||
Source: https://ftp.gnu.org/gnu/help2man/help2man-%{version}.tar.xz
|
Source: ftp://ftp.gnu.org/gnu/help2man/help2man-%{version}.tar.xz
|
||||||
|
|
||||||
%bcond_with nls
|
%bcond_with nls
|
||||||
|
|
||||||
%{!?with_nls:BuildArch: noarch}
|
%{!?with_nls:BuildArch: noarch}
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: %{__make}
|
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(Getopt::Long)
|
BuildRequires: perl(Getopt::Long)
|
||||||
BuildRequires: perl(POSIX)
|
BuildRequires: perl(POSIX)
|
||||||
@ -26,6 +24,9 @@ BuildRequires: perl(strict)
|
|||||||
%{?with_nls:BuildRequires: perl(Encode)}
|
%{?with_nls:BuildRequires: perl(Encode)}
|
||||||
%{?with_nls:BuildRequires: perl(I18N::Langinfo)}
|
%{?with_nls:BuildRequires: perl(I18N::Langinfo)}
|
||||||
|
|
||||||
|
Requires(post): /sbin/install-info
|
||||||
|
Requires(preun): /sbin/install-info
|
||||||
|
|
||||||
%description
|
%description
|
||||||
help2man is a script to create simple man pages from the --help and
|
help2man is a script to create simple man pages from the --help and
|
||||||
--version output of programs.
|
--version output of programs.
|
||||||
@ -39,13 +40,22 @@ still providing some useful information.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --%{!?with_nls:disable}%{?with_nls:enable}-nls --libdir=%{_libdir}/help2man
|
%configure --%{!?with_nls:disable}%{?with_nls:enable}-nls --libdir=%{_libdir}/help2man
|
||||||
%{make_build}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__make} install_l10n DESTDIR=$RPM_BUILD_ROOT
|
make install_l10n DESTDIR=$RPM_BUILD_ROOT
|
||||||
%{make_install}
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
%find_lang %name --with-man
|
%find_lang %name --with-man
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/install-info %{_infodir}/help2man.info %{_infodir}/dir 2>/dev/null || :
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
/sbin/install-info --delete %{_infodir}/help2man.info \
|
||||||
|
%{_infodir}/dir 2>/dev/null || :
|
||||||
|
fi
|
||||||
|
|
||||||
%files -f %name.lang
|
%files -f %name.lang
|
||||||
%doc README NEWS THANKS
|
%doc README NEWS THANKS
|
||||||
%license COPYING
|
%license COPYING
|
||||||
@ -58,62 +68,6 @@ still providing some useful information.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.48.2-3
|
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.48.2-2
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Thu Mar 04 2021 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.48.2-1
|
|
||||||
- Upstream update to 1.48.2.
|
|
||||||
|
|
||||||
* Thu Feb 11 2021 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.48.1-1
|
|
||||||
- Upstream update to 1.48.1.
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.16-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Dec 20 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.16-1
|
|
||||||
- Upstream update to 1.47.16.
|
|
||||||
|
|
||||||
* Sun Dec 20 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.15-1
|
|
||||||
- Upstream update to 1.47.15.
|
|
||||||
- BR: %%{__make}.
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.14-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Apr 25 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.14-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Wed Mar 18 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.13-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Tue Mar 17 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.12-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.11-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Sep 14 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.11-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.10-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Mar 23 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.10-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Tue Mar 19 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.9-1
|
|
||||||
- Upstream update.
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.6-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Mar 01 2018 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.6-1
|
* Thu Mar 01 2018 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.47.6-1
|
||||||
- Upstream update.
|
- Upstream update.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user