Stephan Kulow
2011-04-29 07:41:34 +00:00
committed by Git OBS Bridge
parent 90c73096c6
commit baf14bac86
4 changed files with 55 additions and 36 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d5a33af20c7c5d8540d0491e09300ef3b70cd9ca7f23e6669a3a034f2e3e6b1d
size 33446

3
Email-Find-0.10.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:29aaa007d0dea4a8d8db778cf191eadeca91c4e9883ba4a8e2dc4d54e8ccf20e
size 39511

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Apr 29 07:40:55 UTC 2011 - coolo@opensuse.org
- regenerate with cpanspec
-------------------------------------------------------------------
Wed Dec 1 15:41:27 UTC 2010 - coolo@novell.com

View File

@@ -1,55 +1,69 @@
%define modname Email-Find
Name: perl-%{modname}
#
# spec file for package perl-Email-Find (Version 0.10)
#
# Copyright (c) 2011 SUSE LINUX Products 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-Email-Find
Version: 0.10
Release: 1
License: GPL+ or Artistic
%define cpan_name Email-Find
Summary: Find RFC 822 email addresses in plain text
Requires: perl-Email-Valid perl-MailTools
BuildRequires: perl perl-Email-Valid perl-MailTools
BuildRequires: perl-macros
License: GPL/Artistic
Url: http://search.cpan.org/dist/Email-Find/
Group: Development/Libraries/Perl
Source: %{modname}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-root
Source: http://www.cpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Email::Valid) >= 0.179
BuildRequires: perl(Mail::Address)
Requires: perl(Email::Valid) >= 0.179
Requires: perl(Mail::Address)
%{perl_requires}
%description
Email::Find is a module for finding a *subset* of RFC 822 email addresses in
arbitrary text. The addresses it finds are not guaranteed to exist or even
actually be email addresses at all, but they will be valid RFC 822 syntax.
Email::Find is a module for finding a _subset_ of RFC 822 email addresses
in arbitrary text (see the /"CAVEATS" manpage). The addresses it finds are
not guaranteed to exist or even actually be email addresses at all (see the
/"CAVEATS" manpage), but they will be valid RFC 822 syntax.
Email::Find will perform some heuristics to avoid some of the more obvious red
herrings and false addresses, but there's only so much which can be done
without a human.
Authors:
--------
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
Michael G Schwern <schwern@pobox.com>
Email::Find will perform some heuristics to avoid some of the more obvious
red herrings and false addresses, but there's only so much which can be
done without a human.
%prep
%setup -q -n %{modname}-%{version}
%setup -q -n %{cpan_name}-%{version}
%build
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
make
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
make test
%{__make} test
%install
rm -rf %{buildroot}
make DESTDIR=$RPM_BUILD_ROOT install_vendor
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
rm -rf %{buildroot}
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root)
%doc README Changes
%doc %{_mandir}/man?/*
%{perl_vendorlib}//Email/Find
%{perl_vendorlib}//Email/Find.pm
%{perl_vendorarch}/auto/Email/Find
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%changelog