# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Summary: Pure-perl Lanman and NT MD4 hash functions Name: perl-Crypt-SmbHash Version: 0.12 Release: 48.%{__distinit}%{__distvers} License: GPL-2.0-or-later URL: https://metacpan.org/release/Crypt-SmbHash Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-SmbHash-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) BuildRequires: perl(Digest::MD4) BuildRequires: perl(Encode) BuildRequires: perl(Exporter) BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite BuildRequires: perl(Test) # Runtime %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Digest::MD4) Requires: perl(Encode) %description This module generates Lanman and NT MD4 style password hashes, using perl-only code for portability. The module aids in the administration of Samba style systems. %prep %setup -q -n Crypt-SmbHash-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %files %doc Changes README %{perl_vendorlib}/Crypt/ %{_mandir}/man3/Crypt::SmbHash.3* %changelog * Mon Mar 13 2023 Paul Howarth - 0.12-48 - Use SPDX-format license tag * Thu Jun 6 2019 Paul Howarth - 0.12-36 - Modernize spec - Switch upstream from search.cpan.org to metacpan.org - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Don't explicitly clean buildroot in %%install section - Drop explicit %%clean section - Drop legacy BuildRoot: and Group: tags * Fri Aug 12 2016 Paul Howarth - 0.12-28 - BR: perl-generators where available - Simplify find command using -delete * Fri Feb 26 2016 Paul Howarth - 0.12-27 - Classify buildreqs by usage * Thu Aug 28 2014 Paul Howarth - 0.12-23 - Drop %%defattr, redundant since rpm 4.4 * Tue Jun 19 2012 Paul Howarth - 0.12-17 - BR: perl(Carp) and perl(Exporter) - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT * Wed Jun 22 2011 Paul Howarth - 0.12-8 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Thu Jun 24 2010 Paul Howarth - 0.12-7 - Rebuild for perl 5.12.1 in Rawhide * Tue Jun 8 2010 Paul Howarth - 0.12-6 - Fix dist tag for RHEL-6 Beta * Sat Feb 20 2010 Paul Howarth - 0.12-5 - Dist tag for Rawhide no longer needs special-casing - Use %%{_fixperms} macro instead of our own %%{__chmod} incantation * Tue Sep 8 2009 Paul Howarth - 0.12-4 - Define RPM macros in global scope * Tue Nov 4 2008 Paul Howarth - 0.12-3 - Clarify license as GPL version 2 or later - Tweak dist tag macros to work on current Rawhide with three-part releasenum * Mon Mar 19 2007 Paul Howarth - 0.12-2 - Fix dist tag for development builds and Fedora 7 onwards - Fix argument order for find with -depth - Buildreq perl(ExtUtils::MakeMaker) - define %%{__id_u} in a more portable way * Tue Jan 17 2006 Paul Howarth - 0.12-1 - Initial build