Sync from SUSE:SLFO:Main perl-Net-SMTP-SSL revision 3fea00550c8029838b94d12893b480aa

This commit is contained in:
Adrian Schröter 2024-05-03 18:33:35 +02:00
commit 14e589b62b
5 changed files with 161 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
Net-SMTP-SSL-1.04.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

23
cpanspec.yml Normal file
View File

@ -0,0 +1,23 @@
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

47
perl-Net-SMTP-SSL.changes Normal file
View File

@ -0,0 +1,47 @@
-------------------------------------------------------------------
Tue Oct 11 05:57:02 UTC 2016 - coolo@suse.com
- updated to 1.04
see /usr/share/doc/packages/perl-Net-SMTP-SSL/Changes
1.04 2016-10-09
- mark this library deprecated, suggest newer Net::SMTP instead
-------------------------------------------------------------------
Sun Jun 21 08:37:50 UTC 2015 - coolo@suse.com
- updated to 1.03
see /usr/share/doc/packages/perl-Net-SMTP-SSL/Changes
1.03 2015-06-20
- $net_smtp_ssl->isa('Net::SMTP') is now true
-------------------------------------------------------------------
Tue Apr 14 18:27:30 UTC 2015 - coolo@suse.com
- updated to 1.02
see /usr/share/doc/packages/perl-Net-SMTP-SSL/Changes
1.02 2015-03-26
- make it work again under blead; thanks to Zefram for the patch
-------------------------------------------------------------------
Mon Aug 8 08:06:15 UTC 2011 - vcizek@novell.com
- package recreated by cpanspec 1.78.03
-------------------------------------------------------------------
Wed Dec 1 11:53:34 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Tue Oct 19 08:38:52 UTC 2010 - coolo@novell.com
- add perl as explicit buildrequire
* Wed Mar 25 2009 tuukka.pasanen@ilmi.fi
- packaged perl-Net-SMTP-SSL version 1.01 using the buildservice spec file wizard

65
perl-Net-SMTP-SSL.spec Normal file
View File

@ -0,0 +1,65 @@
#
# spec file for package perl-Net-SMTP-SSL
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-Net-SMTP-SSL
Version: 1.04
Release: 0
%define cpan_name Net-SMTP-SSL
Summary: SSL support for Net::SMTP
License: GPL-1.0+ or Artistic-1.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Net-SMTP-SSL/
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(IO::Socket::SSL)
Requires: perl(IO::Socket::SSL)
%{perl_requires}
%description
Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
network operations. Due to the nature of 'Net::SMTP''s 'new' method, it is
not overridden to make use of a default port for the SMTPS service. Perhaps
future versions will be smart like that. Port '465' is usually what you
want, and it's not a pain to specify that.
For interface documentation, please see Net::SMTP.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%changelog