123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- Name: perl-File-DesktopEntry
- Version: 0.08
- Release: 1%{?_dist_release}
- Summary: Object to handle .desktop files
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/File-DesktopEntry/
- Source0: http://www.cpan.org/authors/id/P/PA/PARDUS/File-DesktopEntry/File-DesktopEntry-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(File::BaseDir)
- BuildRequires: perl(Module::Build)
- BuildRequires: perl(Test::More)
- BuildRequires: perl(Test::Pod)
- BuildRequires: perl(Test::Pod::Coverage)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: shaolin
- %description
- This module is used to work with .desktop files. The format of these files
- is specified by the freedesktop "Desktop Entry" specification. See
- http://freedesktop.org/wiki/Standards_2fdesktop_2dentry_2dspec. For this
- module version 0.9.4 of the specification was used.
- %prep
- %setup -q -n File-DesktopEntry-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install PERL_INSTALL_ROOT=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} \;
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- make test
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc Changes README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Sat Nov 8 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.08-1
- - updated to 0.08
- - built with perl 5.16.3
- * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.04-2
- - rebuild
- * Mon Feb 27 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.04-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04-15
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.04-14
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04-13
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.04-12
- - 661697 rebuild for fixing problems with vendorach/lib
- * Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.04-11
- - Mass rebuild with perl-5.12.0
- * Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.04-10
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.04-9
- - rebuild against perl 5.10.1
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04-8
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04-7
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Mar 5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-2
- - rebuild for new perl
- * Thu Dec 27 2007 Patrice Dumas <pertusus@free.fr> 0.04-5
- - update to 0.04
- * Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-1.2
- - add BR: perl(Test::More)
- * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-1.1
- - correct license tag
- - add BR: perl(ExtUtils::MakeMaker)
- * Wed Oct 11 2006 Patrice Dumas <pertusus@free.fr> 0.02-1
- - Specfile autogenerated by cpanspec 1.69.
|