Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/Module-Build-Tiny-0.039.tar.gz
|
||||
/Module-Build-Tiny-[0-9.]*.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
2127b3e52d59c545ff587ca127ee1686f2a50177 SOURCES/Module-Build-Tiny-0.039.tar.gz
|
@ -1,15 +1,15 @@
|
||||
Summary: A tiny replacement for Module::Build
|
||||
Name: perl-Module-Build-Tiny
|
||||
Version: 0.039
|
||||
Release: 9%{?dist}
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: https://github.com/Leont/module-build-tiny
|
||||
Source0: http://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-%{version}.tar.gz
|
||||
Version: 0.047
|
||||
Release: 5%{?dist}
|
||||
License: GPL-1.0-or-later OR Artistic-1.0-Perl
|
||||
URL: https://metacpan.org/release/Module-Build-Tiny
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Build-Tiny-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Module Build
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
# Module
|
||||
BuildRequires: perl(CPAN::Meta)
|
||||
BuildRequires: perl(DynaLoader)
|
||||
@ -35,20 +35,24 @@ BuildRequires: perl(File::ShareDir)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(IO::Handle)
|
||||
BuildRequires: perl(IPC::Open2)
|
||||
BuildRequires: perl(IPC::Open3)
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
BuildRequires: perl(Test::Pod) >= 1.41
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
# Dependencies
|
||||
Requires: perl(DynaLoader)
|
||||
Requires: perl(ExtUtils::CBuilder)
|
||||
Requires: perl(ExtUtils::ParseXS)
|
||||
Requires: perl(Pod::Man)
|
||||
Requires: perl(TAP::Harness::Env)
|
||||
|
||||
# ExtUtils::CBuilder in EL-8 has no dependency on gcc or c++ (#1547165)
|
||||
# so pull them in ourselves
|
||||
%if 0%{?el8}
|
||||
BuildRequires: gcc, gcc-c++
|
||||
Requires: gcc, gcc-c++
|
||||
%endif
|
||||
|
||||
%description
|
||||
Many Perl distributions use a Build.PL file instead of a Makefile.PL file to
|
||||
drive distribution configuration, build, test and installation. Traditionally,
|
||||
@ -67,6 +71,7 @@ perl Build.PL --installdirs=vendor
|
||||
|
||||
%install
|
||||
./Build install --destdir=%{buildroot} --create_packlist=0
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
AUTHOR_TESTING=1 RELEASE_TESTING=1 ./Build test
|
||||
@ -75,9 +80,107 @@ AUTHOR_TESTING=1 RELEASE_TESTING=1 ./Build test
|
||||
%license LICENSE
|
||||
%doc Changes README Todo
|
||||
%{perl_vendorlib}/Module/
|
||||
%{_mandir}/man3/Module::Build::Tiny.3pm*
|
||||
%{_mandir}/man3/Module::Build::Tiny.3*
|
||||
|
||||
%changelog
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.047-5
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.047-4
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.047-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.047-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Sep 29 2023 Paul Howarth <paul@city-fan.org> - 0.047-1
|
||||
- Update to 0.047
|
||||
- Avoid using empty regex for backwards compatability
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.046-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jun 2 2023 Paul Howarth <paul@city-fan.org> - 0.046-1
|
||||
- Update to 0.046
|
||||
- Add src/ to include paths
|
||||
|
||||
* Mon May 1 2023 Paul Howarth <paul@city-fan.org> - 0.045-1
|
||||
- Update to 0.045
|
||||
- Fix compilation issue on Windows
|
||||
|
||||
* Fri Apr 28 2023 Paul Howarth <paul@city-fan.org> - 0.044-1
|
||||
- Update to 0.044
|
||||
- Add module sharedirs
|
||||
- Only add src/*.c files to primary XS file
|
||||
|
||||
* Wed Apr 19 2023 Paul Howarth <paul@city-fan.org> - 0.043-1
|
||||
- Update to 0.043
|
||||
- Restore manpage generation
|
||||
- Add include/ to include paths
|
||||
- Compile all .c files in src/
|
||||
|
||||
* Tue Apr 18 2023 Paul Howarth <paul@city-fan.org> - 0.041-1
|
||||
- Update to 0.041
|
||||
- Manify .pod after .pm
|
||||
- Filter out script documentation from scripts
|
||||
- Don't manify podless modules/scripts
|
||||
- Use SPDX-format license tag
|
||||
- Standardize permissions of packaged files
|
||||
- Add fix for POD generation (GH#29)
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jun 01 2022 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-23
|
||||
- Perl 5.36 rebuild
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-20
|
||||
- Perl 5.34 rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-17
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Aug 23 2019 Paul Howarth <paul@city-fan.org> - 0.039-15
|
||||
- Use author-independent URLs
|
||||
- Work around ExtUtils::CBuilder in EL-8 having no dependency on gcc or gcc-c++
|
||||
(#1547165)
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-13
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-10
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
Loading…
Reference in New Issue
Block a user