5.4.0 bump

This commit is contained in:
Petr Písař 2018-11-14 09:04:21 +01:00
parent a65de6e41a
commit d906decb0b
4 changed files with 12 additions and 6 deletions

1
.gitignore vendored
View File

@ -43,3 +43,4 @@
/whois_5.3.0.tar.xz
/whois_5.3.1.tar.xz
/whois_5.3.2.tar.xz
/whois_5.4.0.tar.xz

View File

@ -1 +1 @@
SHA512 (whois_5.3.2.tar.xz) = 27d9576ee7b701778cac0dd7d4df2c4ae2d152fa5dfb3f84d7d5d592314e45872b2f3d6eca0754923ec3a0741e5365bf2238b2c0b366403c35e8a5b046e59434
SHA512 (whois_5.4.0.tar.xz) = d6b8f097eaaab216d862503c96aff32777caec3597b357fb2589b86e98c6ff52f35b18ea5f33d1ece23250c61f849daf9943a2895fe563b05fcbd26718b3b80e

View File

@ -1,3 +1,4 @@
from Config import *
addFilter("name-repeated-in-summary .* WHOIS");
addFilter("spelling-error .* (Gettext|networksolutions|arin)");
addFilter("whois-nls.noarch: W: no-documentation");

View File

@ -6,8 +6,8 @@
%{bcond_without whois_enables_libidn2}
Name: whois
Version: 5.3.2
Release: 2%{?dist}
Version: 5.4.0
Release: 1%{?dist}
Summary: Improved WHOIS client
License: GPLv2+
URL: http://www.linux.it/~md/software/
@ -26,6 +26,10 @@ BuildConflicts: pkgconfig(libidn2)
BuildConflicts: pkgconfig(libidn)
BuildConflicts: pkgconfig(libidn2)
%endif
%if %{with whois_enables_mkpasswd} && ! ( 0%{?fedora} < 28)
BuildRequires: pkgconfig(libcrypt)
BuildRequires: pkgconfig(libxcrypt) >= 4.1
%endif
BuildRequires: make
BuildRequires: perl-interpreter
BuildRequires: perl(autodie)
@ -75,9 +79,6 @@ whois tools messages translated into different natural languages.
%build
make CONFIG_FILE="%{_sysconfdir}/%{cfgfile}" \
HAVE_ICONV=1 \
%if %{with whois_enables_mkpasswd}
HAVE_LINUX_CRYPT_GENSALT=1 \
%endif
CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="%{__global_ldflags}" %{?_smp_mflags}
%install
@ -129,6 +130,9 @@ fi
%endif
%changelog
* Wed Nov 14 2018 Petr Pisar <ppisar@redhat.com> - 5.4.0-1
- 5.4.0 bump
* Tue Nov 13 2018 Petr Pisar <ppisar@redhat.com> - 5.3.2-2
- Package mkpasswd tool into whois-mkpasswd package (bug #1649426)