# 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: Pull out the modules a module explicitly uses Name: perl-Module-Extract-Use Version: 1.053 Release: 1.%{__distinit}%{__distvers} License: Artistic-2.0 URL: https://metacpan.org/release/Module-Extract-Use Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Extract-Use-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter >= 4:5.10.0 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64 BuildRequires: perl(File::Spec) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(Test::Manifest) >= 1.21 # Module Runtime BuildRequires: perl(PPI) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(File::Basename) BuildRequires: perl(Test::More) >= 1.0 # Optional Tests BuildRequires: perl(Test::Pod) >= 1.00 BuildRequires: perl(Test::Pod::Coverage) >= 1.00 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(PPI) %description Extract the names of the modules used in a file using a static analysis. Since this module does not run code, it cannot find dynamic uses of modules, such as eval "require $class". It only reports modules that the file loads directly. Modules loaded with parent or base, for instance, will be in the import list for those pragmas but won't have separate entries in the data this module returns. %prep %setup -q -n Module-Extract-Use-%{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 %license LICENSE %doc Changes examples/ README.pod %{perl_vendorlib}/Module/ %{_mandir}/man3/Module::Extract::Use.3* %changelog * Sat Aug 17 2024 Paul Howarth - 1.053-1 - Update to 1.053 - More upstream metadata changes * Tue Feb 6 2024 Paul Howarth - 1.052-1 - Update to 1.052 - Refresh distro, update email addresses * Sun Apr 30 2023 Paul Howarth - 1.051-5 - Use SPDX-format license tag * Mon Jan 10 2022 Paul Howarth - 1.051-1 - Update to 1.051 - Fix up t/rt/79273.t regression (GH#7) * Sun Jan 9 2022 Paul Howarth - 1.049-1 - Update to 1.049 - Fix a link in the README.pod - Add patch to fix test failures in t/rt/79273.t (GH#7) - Drop support for building with ExtUtils::MakeMaker < 6.64 - Use %%license unconditionally * Sun Apr 26 2020 Paul Howarth - 1.047-1 - Update to 1.047 - Example 'extract_modules' now has a -e switch to exclude core modules - Small pod fix * Thu Dec 19 2019 Paul Howarth - 1.045-1 - Update to 1.045 - Fix test for extracting modules from parent and base * Wed Dec 18 2019 Paul Howarth - 1.044-1 - Update to 1.044 - Handle a couple of new cases: - Include the modules specified by parent or base - Find the requires in expressions, like 'my $r = require Foo' - Small documentation and examples updates - Add patch to fix t/rt/79273.t (GH#5) * Thu Jun 6 2019 Paul Howarth - 1.043-9 - Perl 5.30 rebuild * Thu Apr 26 2018 Paul Howarth - 1.043-5 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section * Fri Feb 3 2017 Paul Howarth - 1.043-1 - Update to 1.043 - Clarified license as Artistic 2.0 (https://github.com/briandfoy/module-extract-use/issues/3) * Wed Feb 1 2017 Paul Howarth - 1.04.2-1 - Update to 1.042 - The -l and -j options work on the list of namespaces from all files together instead of the list per file; otherwise, strict and warnings for example always show up multiple times - Add JSON and simple list outputs for examples/extract_modules - Update patch for building with old ExtUtils::MakeMaker versions * Fri Nov 25 2016 Paul Howarth - 1.04-1 - Initial RPM version