initial commit of file from CVS for perl-Net-IMAP-Simple on Fri 14 Jul 14:03:09 BST 2023

This commit is contained in:
Brian Read 2023-07-14 14:03:09 +01:00
parent 2bd3981e2a
commit 1c05140af2
7 changed files with 101 additions and 1 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.tar.gz filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.rpm
*.log
*spec-20*

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
# Makefile for source rpm: perl-Net-IMAP-Simple
# $Id: Makefile,v 1.1 2016/05/05 10:50:45 vip-ire Exp $
NAME := perl-Net-IMAP-Simple
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

BIN
Net-IMAP-Simple-1.1916.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,11 @@
# perl-Net-IMAP-Simple
3rd Party (Maintained by Koozali) git repo for perl-Net-IMAP-Simple smeserver
3rd Party (Maintained by Koozali) git repo for perl-Net-IMAP-Simple smeserver
## Description
<br />*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
*Once it has been checked, then this comment will be deleted*
<br />
Perl-Net-IMAP-Simple is a Perl library that provides an object-oriented interface for communicating with an IMAP server. It enables developers to easily access and manipulate IMAP mailboxes, including searching, listing, and retrieving messages. It also allows for easy manipulation of message flags, headers, and bodies.

1
contriborbase Normal file
View File

@ -0,0 +1 @@
sme10

63
perl-Net-IMAP-Simple.spec Normal file
View File

@ -0,0 +1,63 @@
Name: perl-Net-IMAP-Simple
Version: 1.1916
Release: 3%{?dist}
Summary: Simple IMAP account handling
Group: Development/Libraries
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/Net-IMAP-Simple
Source0: http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/Net-IMAP-Simple-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker), perl(Test::More)
BuildRequires: perl(ExtUtils::ParseXS)
BuildRequires: perl(ExtUtils::Manifest)
BuildRequires: perl(IO::Socket)
BuildRequires: perl(Regexp::Common)
BuildRequires: perl(Class::Accessor)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
Perl extension for simple IMAP account handling, mostly compatible
with Net::POP3.
%prep
%setup -q -n Net-IMAP-Simple-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make %{?_smp_mflags} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
chmod -R u+w $RPM_BUILD_ROOT
%check
make %{?_smp_mflags} test || :
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc README Changes
%dir %{perl_vendorlib}/Net/
%dir %{perl_vendorlib}/Net/IMAP/
%{perl_vendorlib}/Net/IMAP/Simple.pm
%{perl_vendorlib}/Net/IMAP/Simple.pod
%{_mandir}/man3/Net::IMAP::Simple.3*
%changelog
* Fri Jul 14 2023 BogusDateBot
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
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