123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- Name: perl-Data-HexDump
- Version: 0.02
- Release: 2%{?_dist_release}
- Summary: Hexadecial Dumper
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Data-HexDump/
- Source0: http://www.cpan.org/modules/by-module/Data/Data-HexDump-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- Dump in hexadecimal the content of a scalar. The result is returned in a
- string. Each line of the result consists of the offset in the source in the
- leftmost column of each line, followed by one or more columns of data from
- the source in hexadecimal. The rightmost column of each line shows the
- printable characters (all others are shown as single dots).
- %prep
- %setup -q -n Data-HexDump-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install PERL_INSTALL_ROOT=%{buildroot}
- # rename binary not to conflict with util-linux
- mv %{buildroot}%{_bindir}/hexdump %{buildroot}%{_bindir}/hexdump.pl
- find %{buildroot} -type f -name .packlist -exec rm -f {} \;
- find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null \;
- chmod -R u+rwX,go+rX,go-w %{buildroot}/*
- %check
- make test
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc README
- %{_bindir}/hexdump.pl
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Wed Nov 12 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.02-2
- - rebuilt with perl 5.16.3
- * Sat Mar 10 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.02-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-12
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.02-11
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-10
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.02-9
- - 661697 rebuild for fixing problems with vendorach/lib
- * Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.02-8
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.02-7
- - rebuild against perl 5.10.1
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-6
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Thu Feb 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.02-4
- - rebuild for new perl
- * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.02-3.1
- - correct license tag
- - add BR: perl(ExtUtils::MakeMaker)
- * Fri Sep 08 2006 Andreas Thienemann <andreas@bawue.net> - 0.02-3
- - FE6 Rebuild
- * Thu Mar 30 2006 Andreas Thienemann <andreas@bawue.net> 0.02-2
- - Fixed review showstoppers
- * Thu Mar 30 2006 Andreas Thienemann <andreas@bawue.net> 0.02-1
- - Cleaned up for FE
- - Specfile autogenerated by cpanspec 1.64.
|