Blame SPECS/perl-File-chdir.spec

f91836
Name:           perl-File-chdir
f91836
Version:        0.1011
f91836
Release:        16%{?dist}
f91836
Summary:        A more sensible way to change directories
f91836
License:        GPL+ or Artistic
f91836
URL:            https://metacpan.org/release/File-chdir
f91836
Source0:        https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/File-chdir-%{version}.tar.gz
f91836
BuildArch:      noarch
f91836
# Module Build
f91836
BuildRequires:  coreutils
f91836
BuildRequires:  make
f91836
BuildRequires:  perl-interpreter
f91836
BuildRequires:  perl-generators
f91836
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
f91836
BuildRequires:  perl(warnings)
f91836
# Module Runtime
f91836
BuildRequires:  perl(Carp)
f91836
BuildRequires:  perl(Cwd) >= 3.16
f91836
BuildRequires:  perl(Exporter)
f91836
BuildRequires:  perl(File::Spec::Functions) >= 3.27
f91836
BuildRequires:  perl(strict)
f91836
BuildRequires:  perl(vars)
f91836
# Test Suite
f91836
BuildRequires:  perl(File::Spec)
f91836
BuildRequires:  perl(Test::More)
f91836
# Optional Tests
f91836
BuildRequires:  perl(CPAN::Meta) >= 2.120900
f91836
# Dependencies
f91836
Requires:       perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
f91836
f91836
%description
f91836
Perl's chdir() has the unfortunate problem of being very, very, very
f91836
global. If any part of your program calls chdir() or if any library you
f91836
use calls chdir(), it changes the current working directory for the
f91836
whole program.
f91836
f91836
This is not good.
f91836
f91836
File::chdir gives you an alternative, $CWD and @CWD. These two variables
f91836
combine all the power of chdir(), File::Spec and Cwd.
f91836
f91836
%prep
f91836
%setup -q -n File-chdir-%{version}
f91836
f91836
%build
f91836
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
f91836
make %{?_smp_mflags}
f91836
f91836
%install
f91836
make install DESTDIR=%{buildroot}
f91836
%{_fixperms} %{buildroot}
f91836
f91836
%check
f91836
make test
f91836
f91836
%files
f91836
%license LICENSE
f91836
%doc Changes CONTRIBUTING.mkdn README
f91836
%{perl_vendorlib}/File/
f91836
%{_mandir}/man3/File::chdir.3*
f91836
f91836
%changelog
f91836
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.1011-16
f91836
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
f91836
  Related: rhbz#1991688
f91836
f91836
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.1011-15
f91836
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
f91836
f91836
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-14
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
f91836
f91836
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-13
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f91836
f91836
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.1011-12
f91836
- Perl 5.32 rebuild
f91836
f91836
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-11
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f91836
f91836
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-10
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
f91836
f91836
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.1011-9
f91836
- Perl 5.30 rebuild
f91836
f91836
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-8
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f91836
f91836
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-7
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f91836
f91836
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.1011-6
f91836
- Perl 5.28 rebuild
f91836
f91836
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-5
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f91836
f91836
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-4
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f91836
f91836
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.1011-3
f91836
- Perl 5.26 rebuild
f91836
f91836
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1011-2
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f91836
f91836
* Mon Oct 10 2016 Paul Howarth <paul@city-fan.org> - 0.1011-1
f91836
- Update to 0.1011
f91836
  - Fixed POD typos
f91836
- Package CONTRIBUTING.mkdn
f91836
- Update to working source URL, unfortunately author-specific
f91836
- Drop redundant Group: tag
f91836
- Expand %%description
f91836
- Make %%files list more explicit
f91836
f91836
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.1010-5
f91836
- Perl 5.24 rebuild
f91836
f91836
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1010-4
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f91836
f91836
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1010-3
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f91836
f91836
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.1010-2
f91836
- Perl 5.22 rebuild
f91836
f91836
* Mon Feb 09 2015 Petr Šabata <contyk@redhat.com> - 0.1010-1
f91836
- 0.1010 bump, metadata changes only
f91836
f91836
* Fri Sep 26 2014 Petr Šabata <contyk@redhat.com> - 0.1009-1
f91836
- 0.1009 bump, no code changes
f91836
f91836
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.1008-6
f91836
- Perl 5.20 rebuild
f91836
f91836
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1008-5
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f91836
f91836
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1008-4
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f91836
f91836
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 0.1008-3
f91836
- Perl 5.18 rebuild
f91836
f91836
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1008-2
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f91836
f91836
* Mon Dec 03 2012 Petr Šabata <contyk@redhat.com> - 0.1008-1
f91836
- 0.1008 bump
f91836
f91836
* Wed Sep 19 2012 Petr Pisar <ppisar@redhat.com> - 0.1007-1
f91836
- 0.1007 bump
f91836
f91836
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1006-3
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f91836
f91836
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 0.1006-2
f91836
- Perl 5.16 rebuild
f91836
f91836
* Wed Jan 11 2012 Petr Šabata <contyk@redhat.com> - 0.1006-1
f91836
- 0.1006 bump
f91836
f91836
* Sat Jun 18 2011 Iain Arnell <iarnell@gmail.com> 0.1003-1
f91836
- update to latest upstream version
f91836
- clean up spec for modern rpmbuild
f91836
f91836
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.09-10
f91836
- Perl mass rebuild
f91836
f91836
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.09-9
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f91836
f91836
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.09-8
f91836
- 661697 rebuild for fixing problems with vendorach/lib
f91836
f91836
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.09-7
f91836
- Mass rebuild with perl-5.12.0
f91836
f91836
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.09-6
f91836
- Mass rebuild with perl-5.12.0
f91836
f91836
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.09-5
f91836
- rebuild against perl 5.10.1
f91836
f91836
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.09-4
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f91836
f91836
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.09-3
f91836
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f91836
f91836
* Wed Mar  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.09-2
f91836
- rebuild for new perl
f91836
f91836
* Thu Jan 17 2008 Ian Burrell <ianburrell@gmail.com> - 0.09-1
f91836
- Update to 0.09
f91836
f91836
* Thu Aug 16 2007 Ian M. Burrell <ianburrell@gmail.com> - 0.06-3
f91836
- Fix BuildRequires
f91836
f91836
* Tue Jun 27 2006 Ian M. Burrell <ianburrell@gmail.com> - 0.06-2
f91836
- Fix rpmlint warnings
f91836
f91836
* Thu Mar 30 2006 Ian Burrell <ianburrell@gmail.com> 0.06-1
f91836
- Specfile autogenerated by cpanspec 1.64.