2006-12-18 14:42:54 +00:00
|
|
|
Name: perl-File-Which
|
2021-05-18 14:17:41 +00:00
|
|
|
Version: 1.27
|
2024-10-29 15:57:07 +00:00
|
|
|
Release: 14%{?dist}
|
2006-12-18 14:42:54 +00:00
|
|
|
Summary: Portable implementation of the 'which' utility
|
2023-05-31 22:42:04 +00:00
|
|
|
License: GPL-1.0-or-later OR Artistic-1.0-Perl
|
2018-06-04 12:35:57 +00:00
|
|
|
URL: https://metacpan.org/release/File-Which
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Which-%{version}.tar.gz
|
2006-12-18 14:42:54 +00:00
|
|
|
BuildArch: noarch
|
2024-07-13 09:45:36 +00:00
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: make
|
2017-07-12 13:17:34 +00:00
|
|
|
BuildRequires: perl-interpreter
|
2016-06-24 08:13:25 +00:00
|
|
|
BuildRequires: perl-generators
|
2024-07-13 09:45:36 +00:00
|
|
|
BuildRequires: perl(Config)
|
2011-06-28 16:31:55 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
2015-01-15 07:14:27 +00:00
|
|
|
BuildRequires: perl(strict)
|
|
|
|
# Run-time:
|
2012-10-24 08:05:07 +00:00
|
|
|
BuildRequires: perl(constant)
|
|
|
|
BuildRequires: perl(Exporter)
|
2015-01-15 07:14:27 +00:00
|
|
|
BuildRequires: perl(File::Spec) >= 0.60
|
2015-06-15 08:50:53 +00:00
|
|
|
BuildRequires: perl(warnings)
|
2015-01-15 07:14:27 +00:00
|
|
|
# Tests:
|
2016-03-04 13:39:53 +00:00
|
|
|
BuildRequires: perl(Env)
|
2015-06-15 08:50:53 +00:00
|
|
|
BuildRequires: perl(Config)
|
2015-01-15 07:14:27 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.80
|
|
|
|
Requires: perl(File::Spec) >= 0.60
|
|
|
|
|
|
|
|
# Remove under-specified dependencies
|
|
|
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(File::Spec\\)$
|
2006-12-18 14:42:54 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
File::Which is a portable implementation (in Perl) of 'which', and can
|
|
|
|
be used to get the absolute filename of an executable program
|
2015-06-15 08:50:53 +00:00
|
|
|
installed somewhere in your PATH, or just check for its existence.
|
2006-12-18 14:42:54 +00:00
|
|
|
|
2024-07-13 09:45:36 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: perl-Test-Harness
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
Tests from %{name}. Execute them
|
|
|
|
with "%{_libexecdir}/%{name}/test".
|
|
|
|
|
2006-12-18 14:42:54 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n File-Which-%{version}
|
2024-07-13 09:45:36 +00:00
|
|
|
# Help generators to recognize Perl scripts
|
|
|
|
for F in t/*.t; do
|
|
|
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
|
|
|
chmod +x "$F"
|
|
|
|
done
|
2006-12-18 14:42:54 +00:00
|
|
|
|
|
|
|
%build
|
2012-10-24 08:05:07 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
2006-12-18 14:42:54 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2015-06-15 08:50:53 +00:00
|
|
|
make pure_install DESTDIR=%{buildroot}
|
2012-10-24 08:05:07 +00:00
|
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
2015-06-15 08:50:53 +00:00
|
|
|
chmod -R u+w %{buildroot}
|
2024-07-13 09:45:36 +00:00
|
|
|
# Install tests
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cp -a corpus %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
find %{buildroot}%{_libexecdir}/%{name}/corpus -type f -exec chmod -x {} \;
|
|
|
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
|
|
|
#!/bin/sh
|
|
|
|
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
|
|
|
EOF
|
|
|
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
2006-12-18 14:42:54 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc Changes README
|
|
|
|
%{perl_vendorlib}/File/
|
2015-06-15 08:50:53 +00:00
|
|
|
%{_mandir}/man3/File::Which.3*
|
2006-12-18 14:42:54 +00:00
|
|
|
|
2024-07-13 09:45:36 +00:00
|
|
|
%files tests
|
|
|
|
%{_libexecdir}/%{name}
|
|
|
|
|
2006-12-18 14:42:54 +00:00
|
|
|
%changelog
|
2024-10-29 15:57:07 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.27-14
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-07-13 09:45:36 +00:00
|
|
|
* Sat Jul 13 2024 Michal Josef Špaček <mspacek@redhat.com> - 1.27-13
|
|
|
|
- Package tests
|
|
|
|
|
2024-06-24 16:09:41 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.27-12
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-25 16:38:57 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 15:07:01 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-20 21:54:36 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-05-31 22:42:04 +00:00
|
|
|
* Wed May 31 2023 Michal Josef Špaček <mspacek@redhat.com> - 1.27-8
|
|
|
|
- Update license to SPDX format
|
|
|
|
|
2023-01-20 02:25:53 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-22 06:18:20 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-05-30 15:17:47 +00:00
|
|
|
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.27-5
|
|
|
|
- Perl 5.36 rebuild
|
|
|
|
|
2022-01-21 01:48:10 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 20:27:38 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-21 10:18:44 +00:00
|
|
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.27-2
|
|
|
|
- Perl 5.34 rebuild
|
|
|
|
|
2021-05-18 14:17:41 +00:00
|
|
|
* Tue May 18 2021 Tom Callaway <spot@fedoraproject.org> - 1.27-1
|
|
|
|
- update to 1.27
|
|
|
|
|
2021-05-03 19:41:46 +00:00
|
|
|
* Mon May 3 2021 Tom Callaway <spot@fedoraproject.org> - 1.24-1
|
|
|
|
- update to 1.24
|
|
|
|
|
2021-01-27 01:28:15 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-28 15:45:43 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-22 17:26:25 +00:00
|
|
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.23-6
|
|
|
|
- Perl 5.32 rebuild
|
|
|
|
|
2020-01-30 00:22:33 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-26 03:05:47 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-30 11:35:24 +00:00
|
|
|
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.23-3
|
|
|
|
- Perl 5.30 rebuild
|
|
|
|
|
2019-02-01 20:48:22 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-02 18:07:35 +00:00
|
|
|
* Wed Jan 2 2019 Tom Callaway <spot@fedoraproject.org> - 1.23-1
|
|
|
|
- update to 1.23
|
|
|
|
|
2018-07-13 17:27:50 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 18:43:30 +00:00
|
|
|
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.22-3
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
2018-02-08 21:17:56 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-09-12 16:48:33 +00:00
|
|
|
* Tue Sep 12 2017 Tom Callaway <spot@fedoraproject.org> - 1.22-1
|
|
|
|
- update to 1.22
|
|
|
|
|
2017-07-27 04:00:15 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-04 05:31:08 +00:00
|
|
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.21-4
|
|
|
|
- Perl 5.26 rebuild
|
|
|
|
|
2017-02-11 03:08:36 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-05-14 22:37:03 +00:00
|
|
|
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.21-2
|
|
|
|
- Perl 5.24 rebuild
|
|
|
|
|
2016-03-04 04:02:46 +00:00
|
|
|
* Thu Mar 03 2016 Tom Callaway <spot@fedoraproject.org> - 1.21-1
|
|
|
|
- update to 1.21
|
|
|
|
|
2016-02-04 13:42:59 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.19-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-30 18:59:50 +00:00
|
|
|
* Thu Jul 30 2015 Tom Callaway <spot@fedoraproject.org> - 1.19-1
|
|
|
|
- update to 1.19
|
|
|
|
|
2015-06-18 03:14:05 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.18-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-15 08:50:53 +00:00
|
|
|
* Mon Jun 15 2015 Paul Howarth <paul@city-fan.org> - 1.18-4
|
|
|
|
- No longer needs any non-core buildreqs, and hence bootstrapping
|
|
|
|
- Drop references to pwhich, which is no longer included
|
|
|
|
- This release by PLICEASE → update source URL
|
|
|
|
|
2015-06-10 11:08:18 +00:00
|
|
|
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.18-3
|
|
|
|
- Perl 5.22 re-rebuild of bootstrapped packages
|
|
|
|
|
2015-06-03 17:37:55 +00:00
|
|
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.18-2
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2015-05-26 14:31:19 +00:00
|
|
|
* Tue May 26 2015 Tom Callaway <spot@fedoraproject.org> - 1.18-1
|
|
|
|
- update to 1.18
|
|
|
|
|
2015-01-15 07:14:27 +00:00
|
|
|
* Thu Jan 15 2015 Petr Pisar <ppisar@redhat.com> - 1.09-19
|
|
|
|
- Specify all dependencies
|
|
|
|
|
2014-09-08 20:18:11 +00:00
|
|
|
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-18
|
|
|
|
- Perl 5.20 re-rebuild of bootstrapped packages
|
|
|
|
|
2014-08-27 16:34:34 +00:00
|
|
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-17
|
|
|
|
- Perl 5.20 rebuild
|
|
|
|
|
2014-06-07 04:27:01 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-14 17:02:44 +00:00
|
|
|
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-15
|
|
|
|
- Perl 5.18 re-rebuild of bootstrapped packages
|
|
|
|
|
2013-08-03 21:00:55 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-17 14:03:27 +00:00
|
|
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.09-13
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-02-14 12:25:40 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-24 08:05:07 +00:00
|
|
|
* Wed Oct 24 2012 Petr Šabata <contyk@redhat.com> - 1.09-11
|
|
|
|
- Specify all dependencies
|
|
|
|
- Modernize spec
|
|
|
|
- Drop command macros
|
|
|
|
|
2012-07-20 15:21:44 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-10 13:52:53 +00:00
|
|
|
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 1.09-9
|
|
|
|
- Perl 5.16 re-rebuild of bootstrapped packages
|
|
|
|
|
2012-06-08 14:41:53 +00:00
|
|
|
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.09-8
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-01-13 13:49:28 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-06-28 16:31:55 +00:00
|
|
|
* Tue Jun 28 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.09-6
|
|
|
|
- Perl mass rebuild
|
|
|
|
- add perl_bootstrap macro
|
|
|
|
|
2011-02-08 22:33:29 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-16 19:23:56 +00:00
|
|
|
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.09-4
|
|
|
|
- 661697 rebuild for fixing problems with vendorach/lib
|
|
|
|
|
2010-05-01 06:02:21 +00:00
|
|
|
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.09-3
|
|
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
|
2009-12-07 00:20:37 +00:00
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.09-2
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-10-05 17:04:19 +00:00
|
|
|
* Mon Oct 5 2009 Stepan Kasal <skasal@redhat.com> - 1.09-1
|
|
|
|
- new upstream version
|
|
|
|
|
2009-07-26 06:05:25 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.05-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 16:31:10 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.05-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-02-27 21:43:07 +00:00
|
|
|
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-4
|
|
|
|
- Rebuild for perl 5.10 (again)
|
|
|
|
|
2008-01-11 19:14:17 +00:00
|
|
|
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-3
|
2008-01-11 19:00:01 +00:00
|
|
|
- rebuild for new perl
|
|
|
|
|
2007-10-15 20:41:49 +00:00
|
|
|
* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.05-2.1
|
|
|
|
- correct license tag
|
|
|
|
- add BR: perl(ExtUtils::MakeMaker)
|
|
|
|
|
2006-12-18 14:59:07 +00:00
|
|
|
* Mon Dec 18 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.05-2
|
|
|
|
- find: fixed arguments order.
|
|
|
|
|
2006-12-18 14:42:54 +00:00
|
|
|
* Sun Dec 17 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.05-1
|
|
|
|
- First build.
|