i8c-stream-5.24
changed/i8c-stream-5.24/perl-CGI-4.36-1.module_el8.1.0+224+75158c84
commit
eb414ea055
@ -0,0 +1 @@
|
|||||||
|
SOURCES/CGI-4.36.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
e12c246e3908d8c5dfea188f5ec13d577e35af2b SOURCES/CGI-4.36.tar.gz
|
@ -0,0 +1,279 @@
|
|||||||
|
Name: perl-CGI
|
||||||
|
Summary: Handle Common Gateway Interface requests and responses
|
||||||
|
Version: 4.36
|
||||||
|
Release: 1%{?dist}
|
||||||
|
License: (GPL+ or Artistic) and Artistic 2.0
|
||||||
|
Group: Development/Libraries
|
||||||
|
Source0: http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-%{version}.tar.gz
|
||||||
|
URL: http://search.cpan.org/dist/CGI
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
|
BuildRequires: glibc-common
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
# Run-requires:
|
||||||
|
BuildRequires: perl(base)
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
# Config not needed on Linux
|
||||||
|
%if 0%{?fedora} >= 22
|
||||||
|
BuildRequires: perl(deprecate)
|
||||||
|
%endif
|
||||||
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(File::Spec) >= 0.82
|
||||||
|
BuildRequires: perl(File::Temp) >= 0.17
|
||||||
|
BuildRequires: perl(HTML::Entities) >= 3.69
|
||||||
|
BuildRequires: perl(if)
|
||||||
|
BuildRequires: perl(overload)
|
||||||
|
BuildRequires: perl(parent)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
# Text::ParseWords not used at tests
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
# Apache modules are optional
|
||||||
|
# Tests:
|
||||||
|
BuildRequires: perl(Config)
|
||||||
|
BuildRequires: perl(Cwd)
|
||||||
|
BuildRequires: perl(Encode)
|
||||||
|
BuildRequires: perl(File::Find)
|
||||||
|
BuildRequires: perl(FileHandle)
|
||||||
|
BuildRequires: perl(FindBin)
|
||||||
|
BuildRequires: perl(IO::File)
|
||||||
|
BuildRequires: perl(IO::Handle)
|
||||||
|
BuildRequires: perl(lib)
|
||||||
|
BuildRequires: perl(POSIX)
|
||||||
|
BuildRequires: perl(Test::Deep) >= 0.11
|
||||||
|
BuildRequires: perl(Test::More) >= 0.98
|
||||||
|
BuildRequires: perl(Test::Warn) >= 0.3
|
||||||
|
BuildRequires: perl(utf8)
|
||||||
|
%if !%{defined perl_bootstrap}
|
||||||
|
# Optional tests
|
||||||
|
BuildRequires: perl(Test::CPAN::Changes)
|
||||||
|
%endif
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
%if 0%{?fedora} >= 22
|
||||||
|
Requires: perl(deprecate)
|
||||||
|
%endif
|
||||||
|
Requires: perl(File::Spec) >= 0.82
|
||||||
|
Requires: perl(File::Temp) >= 0.17
|
||||||
|
Requires: perl(HTML::Entities) >= 3.69
|
||||||
|
Requires: perl(Text::ParseWords)
|
||||||
|
|
||||||
|
%{?perl_default_filter}
|
||||||
|
# Remove under-specified dependencies
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((File::Spec)\\)$
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((File::Temp)\\)$
|
||||||
|
# Remove false dependencies
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((Fh)\\)
|
||||||
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(MultipartBuffer\\)$
|
||||||
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Fh\\)
|
||||||
|
|
||||||
|
%description
|
||||||
|
CGI.pm is a stable, complete and mature solution for processing and preparing
|
||||||
|
HTTP requests and responses. Major features including processing form
|
||||||
|
submissions, file uploads, reading and writing cookies, query string
|
||||||
|
generation and manipulation, and processing and preparing HTTP headers. Some
|
||||||
|
HTML generation utilities are included as well.
|
||||||
|
|
||||||
|
CGI.pm performs very well in in a vanilla CGI.pm environment and also comes
|
||||||
|
with built-in support for mod_perl and mod_perl2 as well as FastCGI.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n CGI-%{version}
|
||||||
|
iconv -f iso8859-1 -t utf-8 < Changes > Changes.1
|
||||||
|
mv Changes.1 Changes
|
||||||
|
chmod -c -x examples/*
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
make pure_install DESTDIR=%{buildroot}
|
||||||
|
find %{buildroot} -type f -name .packlist -delete
|
||||||
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%doc Changes README.md examples/
|
||||||
|
%{perl_vendorlib}/*
|
||||||
|
%{_mandir}/man3/*.3*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Apr 18 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 4.36-1
|
||||||
|
- Rebuilt for MSVSphere 8.9
|
||||||
|
|
||||||
|
* Fri Apr 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 4.36-1
|
||||||
|
- 4.36 bump
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.35-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 14 2016 Petr Pisar <ppisar@redhat.com> - 4.35-1
|
||||||
|
- 4.35 bump
|
||||||
|
|
||||||
|
* Mon Sep 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.33-1
|
||||||
|
- 4.33 bump
|
||||||
|
|
||||||
|
* Wed Jul 20 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.32-1
|
||||||
|
- 4.32 bump
|
||||||
|
|
||||||
|
* Wed Jun 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.31-1
|
||||||
|
- 4.31 bump
|
||||||
|
|
||||||
|
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.28-6
|
||||||
|
- Perl 5.24 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.28-5
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Wed Apr 20 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.28-4
|
||||||
|
- Don't BR Test::CPAN::Changes when bootstrapping
|
||||||
|
|
||||||
|
* Thu Mar 17 2016 Petr Pisar <ppisar@redhat.com> - 4.28-3
|
||||||
|
- Drop Test::Deep patch
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.28-2
|
||||||
|
- Update patch which makes Test::Deep optional
|
||||||
|
|
||||||
|
* Mon Mar 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.28-1
|
||||||
|
- 4.28 bump
|
||||||
|
|
||||||
|
* Wed Mar 02 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.27-1
|
||||||
|
- 4.27 bump
|
||||||
|
|
||||||
|
* Mon Feb 08 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4.26-1
|
||||||
|
- 4.26 bump
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.25-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 22 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.25-1
|
||||||
|
- 4.25 bump
|
||||||
|
|
||||||
|
* Mon Dec 21 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.24-1
|
||||||
|
- 4.24 bump
|
||||||
|
|
||||||
|
* Mon Oct 19 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.22-1
|
||||||
|
- 4.22 bump
|
||||||
|
|
||||||
|
* Tue Jun 23 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.21-1
|
||||||
|
- 4.21 bump
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.20-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.20-3
|
||||||
|
- Perl 5.22 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.20-2
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Mon Jun 01 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.20-1
|
||||||
|
- 4.20 bump
|
||||||
|
|
||||||
|
* Mon Apr 20 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.15-1
|
||||||
|
- 4.15 bump
|
||||||
|
- Package examples directory as documentation
|
||||||
|
|
||||||
|
* Wed Apr 01 2015 Petr Pisar <ppisar@redhat.com> - 4.14-1
|
||||||
|
- 4.14 bump
|
||||||
|
|
||||||
|
* Fri Feb 13 2015 Jitka Plesnikova <jplesnik@redhat.com> - 4.13-1
|
||||||
|
- 4.13 bump
|
||||||
|
- Make Test::NoWarnings tests optional
|
||||||
|
|
||||||
|
* Wed Dec 10 2014 Petr Pisar <ppisar@redhat.com> - 4.04-2
|
||||||
|
- Make Test::Deep tests optional as it's not in the core in contrast to the CGI
|
||||||
|
|
||||||
|
* Fri Sep 19 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.04-1
|
||||||
|
- 4.04 bump
|
||||||
|
|
||||||
|
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.03-2
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Mon Jul 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.03-1
|
||||||
|
- 4.03 bump
|
||||||
|
|
||||||
|
* Thu Jun 12 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.02-1
|
||||||
|
- 4.02 bump
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.01-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.01-1
|
||||||
|
- 4.01 bump
|
||||||
|
|
||||||
|
* Mon May 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 4.00-1
|
||||||
|
- 4.00 bump
|
||||||
|
- CGI::Fast split out into its own distribution
|
||||||
|
|
||||||
|
* Wed Feb 12 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.65-1
|
||||||
|
- 3.65 bump
|
||||||
|
|
||||||
|
* Tue Nov 26 2013 Petr Pisar <ppisar@redhat.com> - 3.64-1
|
||||||
|
- 3.64 bump
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.63-291
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 15 2013 Petr Pisar <ppisar@redhat.com> - 3.63-290
|
||||||
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 3.63-4
|
||||||
|
- Perl 5.18 rebuild
|
||||||
|
|
||||||
|
* Mon Jun 24 2013 Jitka Plesnikova <jplesnik@redhat.com> - 3.63-3
|
||||||
|
- Specify all dependencies
|
||||||
|
- Update License - CGI.pm is distributed under GPL and Artistic 2.0
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.63-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 15 2012 Petr Pisar <ppisar@redhat.com> - 3.63-1
|
||||||
|
- 3.63 bump
|
||||||
|
|
||||||
|
* Wed Nov 14 2012 Petr Pisar <ppisar@redhat.com> - 3.62-1
|
||||||
|
- 3.62 bump
|
||||||
|
|
||||||
|
* Tue Nov 06 2012 Petr Šabata <contyk@redhat.com> - 3.61-1
|
||||||
|
- 3.61 bump, no code changes
|
||||||
|
|
||||||
|
* Fri Aug 17 2012 Petr Pisar <ppisar@redhat.com> - 3.60-1
|
||||||
|
- 3.60 bump
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.51-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 3.51-7
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Fri Jun 01 2012 Petr Pisar <ppisar@redhat.com> - 3.51-6
|
||||||
|
- Clean spec file
|
||||||
|
- Specify all dependencies
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.51-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2011 Petr Pisar <ppisar@redhat.com> - 3.51-4
|
||||||
|
- RPM 4.9 dependency filtering added
|
||||||
|
|
||||||
|
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3.51-3
|
||||||
|
- Perl mass rebuild
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.51-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2011 Marcela Mašláňová <mmaslano@redhat.com> 3.51-1
|
||||||
|
- update to fix CVE-2010-2761
|
||||||
|
|
||||||
|
* Mon Nov 29 2010 Marcela Mašláňová <mmaslano@redhat.com> 3.50-2
|
||||||
|
- remove -test sub-package, which would be needed also in perl-core
|
||||||
|
|
||||||
|
* Mon Nov 29 2010 Marcela Mašláňová <mmaslano@redhat.com> 3.50-1
|
||||||
|
- initial dual-life package
|
||||||
|
|
Loading…
Reference in new issue