* Fri Mar 10 2023 Gavin Carr <gavin@openfusion.net> 1.2212-1
- Specfile autogenerated by cpanspec 1.78.
This commit is contained in:
parent
e7b2d9b4b3
commit
4265f7bbbe
BIN
Net-IMAP-Simple-1.1916.tar.gz
(Stored with Git LFS)
BIN
Net-IMAP-Simple-1.1916.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
Net-IMAP-Simple-1.2212.tar.gz
(Stored with Git LFS)
Normal file
BIN
Net-IMAP-Simple-1.2212.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,23 +1,30 @@
|
|||||||
Name: perl-Net-IMAP-Simple
|
Name: perl-Net-IMAP-Simple
|
||||||
Version: 1.1916
|
Version: 1.2212
|
||||||
Release: 3%{?dist}
|
Release: 1%{?org_tag}%{?dist}
|
||||||
Summary: Simple IMAP account handling
|
Summary: Perl extension for simple IMAP account handling
|
||||||
Group: Development/Libraries
|
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: http://search.cpan.org/dist/Net-IMAP-Simple
|
Group: Development/Libraries
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/Net-IMAP-Simple-%{version}.tar.gz
|
URL: http://search.cpan.org/dist/Net-IMAP-Simple/
|
||||||
|
Source0: http://www.cpan.org/authors/id/J/JE/JETTERO/Net-IMAP-Simple-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: perl >= 0:5.008
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker), perl(Test::More)
|
BuildRequires: perl(ExtUtils::MakeMaker), perl(Test::More)
|
||||||
BuildRequires: perl(ExtUtils::ParseXS)
|
BuildRequires: perl(ExtUtils::ParseXS)
|
||||||
BuildRequires: perl(ExtUtils::Manifest)
|
BuildRequires: perl(ExtUtils::Manifest)
|
||||||
|
BuildRequires: perl(IO::Select)
|
||||||
BuildRequires: perl(IO::Socket)
|
BuildRequires: perl(IO::Socket)
|
||||||
BuildRequires: perl(Regexp::Common)
|
BuildRequires: perl(Parse::RecDescent)
|
||||||
BuildRequires: perl(Class::Accessor)
|
Requires: perl(IO::Select)
|
||||||
|
Requires: perl(IO::Socket)
|
||||||
|
Requires: perl(Parse::RecDescent)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
This module is a simple way to access IMAP accounts.
|
||||||
Perl extension for simple IMAP account handling, mostly compatible
|
Perl extension for simple IMAP account handling, mostly compatible
|
||||||
with Net::POP3.
|
with Net::POP3.
|
||||||
|
|
||||||
@ -29,35 +36,27 @@ with Net::POP3.
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
make %{?_smp_mflags} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
make %{?_smp_mflags} pure_install PERL_INSTALL_ROOT=%{buildroot}
|
||||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
|
|
||||||
chmod -R u+w $RPM_BUILD_ROOT
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
||||||
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||||
|
|
||||||
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make %{?_smp_mflags} test || :
|
make %{?_smp_mflags} test || :
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc README Changes
|
%doc Changes META.json README TODO
|
||||||
%dir %{perl_vendorlib}/Net/
|
%{perl_vendorlib}/*
|
||||||
%dir %{perl_vendorlib}/Net/IMAP/
|
%{_mandir}/man3/*
|
||||||
%{perl_vendorlib}/Net/IMAP/Simple.pm
|
|
||||||
%{perl_vendorlib}/Net/IMAP/Simple.pod
|
|
||||||
%{_mandir}/man3/Net::IMAP::Simple.3*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 14 2023 BogusDateBot
|
* Fri Mar 10 2023 Gavin Carr <gavin@openfusion.net> 1.2212-1
|
||||||
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
|
- Specfile autogenerated by cpanspec 1.78.
|
||||||
by assuming the date is correct and changing the weekday.
|
|
||||||
|
|
||||||
* Sun Jun 27 2010 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 1.1916-3
|
|
||||||
- Fix Source0 URL (#607876)
|
|
||||||
- New release after review (#607876)
|
|
||||||
|
|
||||||
* Sat Jun 19 2010 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 1.1916-1
|
|
||||||
- First package
|
|
||||||
|
Loading…
Reference in New Issue
Block a user