123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- Summary: file command like perl5 module
- Summary(ja): file コマンド風 perl5 モジュール
- Name: perl-File-MMagic
- Version: 1.30
- Release: 1%{_dist_release}
- License: ASL 1.0 and BSD
- Group: Development/Libraries
- URL: http://search.cpan.org/~knok/File-MMagic/
- Source0: http://www.perl.com/CPAN/modules/by-module/File/File-MMagic-%{version}.tar.gz
- #Patch0: File-MMagic-1.29-msoffice.patch
- BuildArch: noarch
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: perl(ExtUtils::MakeMaker)
- Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: iwaim
- %description
- This module is to guess file type from its contents like file(1)
- command.
- %description -l ja
- このモジュールは、file(1)コマンドに相当する機能、すなわちファイルの内
- 容からその種類を推測するためのものです。
- %prep
- %setup -q -n File-MMagic-%{version}
- #patch0 -p2
- %build
- CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS="vendor"
- make
- %check
- make test
- %install
- [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
- make pure_install PERL_INSTALL_ROOT=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
- find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';'
- chmod -R u+w %{buildroot}/*
- %clean
- [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc COPYING README.en README.ja ChangeLog
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Wed Nov 5 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.30-1
- - updated to 1.30
- - built with perl 5.16.3
- * Mon Jan 21 2013 IWAI, Masaharu <iwai@alib.jp> 1.29-1
- - new upstream release
- - add fix Microsoft Office patch (Patch0): from upstream VCS
- - add Packager: iwaim
- * Mon Mar 12 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.27-3
- - rebuilt with perl-5.12.3; spec revamped
- * Wed Apr 08 2009 Shu KONNO <owa@bg.wakwak.com> 1.27-2vl5
- - spec in utf-8
- * Mon Apr 28 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.27-1vl5
- - rebuilt with perl 5.10.0
- - applied new versioning policy
- * Wed Sep 26 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.27-0vl2
- - chaneged Group to Development/Libraries
- * Sun May 28 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.27-0vl1
- - new upstrean release
- - chaneged Group to Development/Languages
- * Mon Nov 29 2004 IWAI, Masaharu <iwai@alib.jp> 1.22-0vl2
- - rebuild on perl-5.8.6-0vl1
- - add many documents: COPYING, README.en, README.ja and ChangeLog
- - add Url tag
- - change build arch: noarch
- * Fri Sep 17 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.22-0vl1
- - updated to 1.22
- - Requires: perl >= 1:5.8.2
- * Tue May 11 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.21-1vl1
- - updated to 1.21
- - s/Copyright/License/
- - changed Group:Applications/CPAN (based on Fedora)
- * Wed Dec 10 2003 IWAI, Masaharu <iwai@alib.jp> 1.16-3vl2
- - build with perl-5.8.2
- - add %%{perl_sitelib}/File directory in %%files
- * Fri May 02 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org>
- - 1.16-3vl1:
- - synced with rawhide
- * Tue Dec 10 2002 Chip Turner <cturner@redhat.com>
- - update to latest version from CPAN
-
- * Tue Aug 6 2002 Chip Turner <cturner@redhat.com>
- - automated release bump and build
-
- * Tue Aug 6 2002 Chip Turner <cturner@localhost.localdomain>
- - update to 1.15
-
- * Fri Dec 7 2001 root <root@redhat.com>
- - Spec file was autogenerated.
- * Sat Jun 16 2001 <sagami@vinelinux.org>
- - 1.12-0vl3: correct Group
- * Sat Jun 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
- - 1.12-0vl2
- - rebuilt with perl-5.6.1
- * Wed Jun 13 2001 Jun Nishii <jun@vinelinux.org> 1.12-0vl1
- - ver.up
- - modify for Vine
-
- * Fri Dec 31 1999 Ryuji Abe <raeva@t3.rim.or.jp>
- - Installed correctly directories.
- * Sat Dec 11 1999 Ryuji Abe <raeva@t3.rim.or.jp>
- - Rebuild for RHL-6.1.
- * Thu Dec 02 1999 Ryuji Abe <raeva@t3.rim.or.jp>
- - Specified Obsoletes: File-MMagic.
- * Wed Dec 01 1999 Ryuji Abe <raeva@t3.rim.or.jp>
- - Fixed package name (Added prefix `perl-').
- * Thu Sep 09 1999 Ryuji Abe <raeva@t3.rim.or.jp>
- - First build.
|