1.76 bump
This commit is contained in:
parent
7e9d0f98c4
commit
b5c941bc05
1
.gitignore
vendored
1
.gitignore
vendored
@ -28,3 +28,4 @@
|
|||||||
/Alien-Build-1.69.tar.gz
|
/Alien-Build-1.69.tar.gz
|
||||||
/Alien-Build-1.73.tar.gz
|
/Alien-Build-1.73.tar.gz
|
||||||
/Alien-Build-1.74.tar.gz
|
/Alien-Build-1.74.tar.gz
|
||||||
|
/Alien-Build-1.76.tar.gz
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: perl-Alien-Build
|
Name: perl-Alien-Build
|
||||||
Version: 1.74
|
Version: 1.76
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Build external dependencies for use in CPAN
|
Summary: Build external dependencies for use in CPAN
|
||||||
# lib/Alien/Build/Plugin/Test/Mock.pm contains Base64-encoded files for tests
|
# lib/Alien/Build/Plugin/Test/Mock.pm contains Base64-encoded files for tests
|
||||||
# (a bash script, C source file, a gzipped tar archive, Mach-O 64-bit x86_64
|
# (a bash script, C source file, a gzipped tar archive, Mach-O 64-bit x86_64
|
||||||
@ -137,6 +137,10 @@ Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|||||||
# Build cycle: perl-Alien-cmake3 → perl-Alien-Build
|
# Build cycle: perl-Alien-cmake3 → perl-Alien-Build
|
||||||
Requires: perl(Alien::cmake3) >= 0.02
|
Requires: perl(Alien::cmake3) >= 0.02
|
||||||
%endif
|
%endif
|
||||||
|
# Alien::Build::Plugin::Download::Negotiate defaults to Decode::Mojo instead
|
||||||
|
# of Decode::HTML
|
||||||
|
Suggests: perl(Alien::Build::Plugin::Decode::HTML)
|
||||||
|
Requires: perl(Alien::Build::Plugin::Decode::Mojo)
|
||||||
# Archive::Tar or (tar and bzip2 and gzip and xz)
|
# Archive::Tar or (tar and bzip2 and gzip and xz)
|
||||||
Requires: perl(Archive::Tar)
|
Requires: perl(Archive::Tar)
|
||||||
# Archive::Zip or unzip
|
# Archive::Zip or unzip
|
||||||
@ -181,6 +185,20 @@ This package provides tools for building external (non-CPAN) dependencies
|
|||||||
for CPAN. It is mainly designed to be used at install time of a CPAN
|
for CPAN. It is mainly designed to be used at install time of a CPAN
|
||||||
client, and work closely with Alien::Base which is used at run time.
|
client, and work closely with Alien::Base which is used at run time.
|
||||||
|
|
||||||
|
%package Plugin-Decode-HTML
|
||||||
|
Summary: Alien::Build plugin to extract links from HTML
|
||||||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
Requires: perl(HTML::LinkExtor)
|
||||||
|
Requires: perl(URI)
|
||||||
|
Requires: perl(URI::Escape)
|
||||||
|
# Subpackaged from perl-Alien-Build-1.76
|
||||||
|
Conflicts: perl-Alien-Build < 1.76
|
||||||
|
|
||||||
|
%description Plugin-Decode-HTML
|
||||||
|
This Alien::Build plugin decodes an HTML file listing into a list of
|
||||||
|
candidates for your Prefer plugin.
|
||||||
|
|
||||||
%package Plugin-Decode-Mojo
|
%package Plugin-Decode-Mojo
|
||||||
Summary: Alien::Build plugin to extract links from HTML
|
Summary: Alien::Build plugin to extract links from HTML
|
||||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
@ -222,16 +240,25 @@ make test
|
|||||||
%doc Changes Changes.Alien-Base Changes.Alien-Base-Wrapper Changes.Test-Alien
|
%doc Changes Changes.Alien-Base Changes.Alien-Base-Wrapper Changes.Test-Alien
|
||||||
%doc example README SUPPORT
|
%doc example README SUPPORT
|
||||||
%{perl_vendorlib}/*
|
%{perl_vendorlib}/*
|
||||||
|
%exclude %{perl_vendorlib}/Alien/Build/Plugin/Decode/HTML.pm
|
||||||
%exclude %{perl_vendorlib}/Alien/Build/Plugin/Decode/Mojo.pm
|
%exclude %{perl_vendorlib}/Alien/Build/Plugin/Decode/Mojo.pm
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
%exclude %{_mandir}/man3/Alien::Build::Plugin::Decode::HTML.3pm.*
|
||||||
%exclude %{_mandir}/man3/Alien::Build::Plugin::Decode::Mojo.3pm.*
|
%exclude %{_mandir}/man3/Alien::Build::Plugin::Decode::Mojo.3pm.*
|
||||||
|
|
||||||
|
%files Plugin-Decode-HTML
|
||||||
|
%{perl_vendorlib}/Alien/Build/Plugin/Decode/HTML.pm
|
||||||
|
%{_mandir}/man3/Alien::Build::Plugin::Decode::HTML.3pm.*
|
||||||
|
|
||||||
%files Plugin-Decode-Mojo
|
%files Plugin-Decode-Mojo
|
||||||
%doc Changes.Alien-Build-Decode-Mojo
|
%doc Changes.Alien-Build-Decode-Mojo
|
||||||
%{perl_vendorlib}/Alien/Build/Plugin/Decode/Mojo.pm
|
%{perl_vendorlib}/Alien/Build/Plugin/Decode/Mojo.pm
|
||||||
%{_mandir}/man3/Alien::Build::Plugin::Decode::Mojo.3pm.*
|
%{_mandir}/man3/Alien::Build::Plugin::Decode::Mojo.3pm.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 24 2019 Petr Pisar <ppisar@redhat.com> - 1.76-1
|
||||||
|
- 1.76 bump
|
||||||
|
|
||||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.74-3
|
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.74-3
|
||||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (Alien-Build-1.74.tar.gz) = 8e77a762e3e1ff14cef7d3cbcdc4471787be821ac7264a2dccf231679cc82b06de5022979b3e3783e434e271eb15ceff4ec9eaf45216a34b9a75466695bde1c8
|
SHA512 (Alien-Build-1.76.tar.gz) = 62e43e3a87dc2f05162f27156d6f2f973c07078631ed28a7cb1d343a1d257e7adf1677d77d53296aa3c2b1ce5a2db1c08628ecf22f75b109e8162597e8e28580
|
||||||
|
Loading…
Reference in New Issue
Block a user