forked from pool/perl-Mail-SPF
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
43ab480c4d | |||
0edf9d49b2 | |||
29060058dc | |||
fda8ee410e |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d2fc3e8ac9875e8c22dda9f4663bfa467dedcf2ff691d89ff082e1958206045
|
||||
size 76892
|
3
Mail-SPF-3.20240617.tar.gz
Normal file
3
Mail-SPF-3.20240617.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:43930a708b8e605f31351120619ed8cfa5d789fe66e7f94518393693f9e10ae9
|
||||
size 79806
|
16
cpanspec.yml
16
cpanspec.yml
@@ -5,12 +5,20 @@ patches:
|
||||
skip_test.patch: -p1
|
||||
#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_prep: |-
|
||||
mv %{buildroot}%{_bindir}/spfd %{buildroot}%{_bindir}/spfd_perl
|
||||
sed -i s/spfd/spfd_perl/ Makefile.PL
|
||||
#post_install: |-
|
||||
# sed on %{name}.files
|
||||
# mv %{buildroot}%{_bindir}/spfd %{buildroot}%{_bindir}/spfd_perl
|
||||
#license: SUSE-NonFree
|
||||
#skip_noarch: 1
|
||||
#custom_build: -
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
||||
#custom_test: |-
|
||||
#startserver && make test
|
||||
#ignore_requires: Bizarre::Module
|
||||
#skip_doc: regexp_to_skip_for_doc.*
|
||||
#add_doc: files to add to docs
|
||||
#misc: |-
|
||||
# %exclude %{_bindir}/spfd
|
||||
# %{_bindir}/spfd_perl
|
||||
|
@@ -1,3 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 7 15:22:33 UTC 2024 - Dirk Stoecker <opensuse@dstoecker.de>
|
||||
|
||||
- fix conflict with spfd daemon in libspf2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 23 16:30:15 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
- updated to 3.202.406.170 (3.20240617)
|
||||
see /usr/share/doc/packages/perl-Mail-SPF/Changes
|
||||
|
||||
3.20240617 2024-06-17 Australia/Melbourne
|
||||
- Update INSTALL file for Dist::Zilla changes
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- Fix memory leak in Mail::SPF::Server when cacheing a Mail::SPF::MacroString
|
||||
Thanks to Giovanni <g.bechis@snb.it> and Felipe Gasper
|
||||
- When mfrom is empty, create a synthetic mfrom (postmaster@helo) and check
|
||||
that identity using the mfrom scope as specified in RFC7208
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- Fix missing declare in Mail::SPF::Server
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- require Mail::SPF::Mech when needed
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- correctly handle empty labels
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- use "try" instead of "eval"
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
- error out if the lookup fails
|
||||
Thanks to Giovanni <g.bechis@snb.it>
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 19:30:20 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
|
@@ -18,10 +18,10 @@
|
||||
|
||||
%define cpan_name Mail-SPF
|
||||
Name: perl-Mail-SPF
|
||||
Version: 3.202.402.60
|
||||
Version: 3.202.406.170
|
||||
Release: 0
|
||||
# 3.20240206 -> normalize -> 3.202.402.60
|
||||
%define cpan_version 3.20240206
|
||||
# 3.20240617 -> normalize -> 3.202.406.170
|
||||
%define cpan_version 3.20240617
|
||||
License: BSD-3-Clause
|
||||
Summary: An object-oriented implementation of Sender Policy Framework
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
@@ -126,6 +126,10 @@ a reference for other developers of SPF implementations.
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
# MANUAL BEGIN
|
||||
mv bin/spfd bin/spfd_perl
|
||||
sed -i s/spfd/spfd_perl/ Makefile.PL
|
||||
# MANUAL END
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
|
Reference in New Issue
Block a user