diff --git a/README.md b/README.md index 6e8d76b..8352f5b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Carp-Clan +This module reports errors from the perspective of the caller of a "clan" of modules, similar to "Carp.pm" itself. + diff --git a/perl-Carp-Clan.spec b/perl-Carp-Clan.spec new file mode 100644 index 0000000..19a01f4 --- /dev/null +++ b/perl-Carp-Clan.spec @@ -0,0 +1,64 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Carp-Clan +Version: 6.04 +Release: 1mamba +Summary: Carp::Clan - Report errors from perspective of caller of a "clan" of modules +Group: Development/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Tiziana Ferro +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Carp-Clan-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +## AUTOBUILDREQ-END +BuildRequires: perl-Test-Exception +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This module reports errors from the perspective of the caller of a "clan" of modules, similar to "Carp.pm" itself. + +%prep +%setup -q -n Carp-Clan-%{version} + +%build +%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}" + +%make +%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 +* Sat Nov 24 2012 Davide Madrisan 6.04-1mamba +- fix URL and update to 6.04 + +* Wed Nov 05 2008 Silvan Calarco 6.00-2mamba +- automatic rebuild by autodist + +* Wed Jun 25 2008 Tiziana Ferro 6.00-1mamba +- update to 6.00 + +* Wed Oct 27 2004 Alessandro Ramazzina 5.3-1qilnx +- package created by autospec