diff --git a/README.md b/README.md index fb85642..eca2e42 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-LWP-Protocol-https +LWP::Protocol::https - Provide https support for LWP::UserAgent. + diff --git a/perl-LWP-Protocol-https.spec b/perl-LWP-Protocol-https.spec new file mode 100644 index 0000000..77c9d07 --- /dev/null +++ b/perl-LWP-Protocol-https.spec @@ -0,0 +1,62 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-LWP-Protocol-https +Version: 6.06 +Release: 1mamba +Summary: LWP::Protocol::https - Provide https support for LWP::UserAgent +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/LWP-Protocol-https-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-Net-HTTP +BuildRequires: perl-devel +BuildRequires: perl-libwww +## AUTOBUILDREQ-END +BuildRequires: perl-devel +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +LWP::Protocol::https - Provide https support for LWP::UserAgent. + +%prep +%setup -q -n LWP-Protocol-https-%{version} + +%build +%{__perl} Makefile.PL \ + PREFIX=%{_prefix} \ + INSTALLDIRS=vendor \ + OPTIMIZE="%{optflags}" + +%make + +export PERL_LWP_SSL_CA_FILE=%{_sysconfdir}/ssl/certs/ca-certificates.crt +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl + +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%{buildroot},,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm -f $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Mon Oct 06 2014 Silvan Calarco 6.06-1mamba +- package created using the webbuild interface