103 lines
3.1 KiB
RPMSpec
103 lines
3.1 KiB
RPMSpec
Name: perl-Sys-Syslog
|
|
Version: 0.33
|
|
Release: 5%{?dist}
|
|
Summary: Perl interface to the UNIX syslog(3) calls
|
|
# Unused sources fallback/* are covered with BSD license.
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/Sys-Syslog/
|
|
Source0: http://www.cpan.org/authors/id/S/SA/SAPER/Sys-Syslog-%{version}.tar.gz
|
|
BuildRequires: perl
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(ExtUtils::Constant)
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(File::Copy)
|
|
BuildRequires: perl(File::Spec)
|
|
# Run-time:
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(Fcntl)
|
|
BuildRequires: perl(File::Basename)
|
|
BuildRequires: perl(POSIX)
|
|
BuildRequires: perl(Socket)
|
|
BuildRequires: perl(vars)
|
|
BuildRequires: perl(warnings)
|
|
BuildRequires: perl(warnings::register)
|
|
BuildRequires: perl(XSLoader)
|
|
# DynaLoader not used
|
|
# Tests:
|
|
BuildRequires: perl(Config)
|
|
BuildRequires: perl(Data::Dumper)
|
|
BuildRequires: perl(Test::More)
|
|
# Optional tests:
|
|
%if !%{defined perl_bootstrap}
|
|
%if !0%{?rhel}
|
|
BuildRequires: perl(Test::Distribution)
|
|
%endif
|
|
BuildRequires: perl(Test::NoWarnings)
|
|
BuildRequires: perl(Test::Pod) >= 1.14
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.06
|
|
BuildRequires: perl(Test::Portability::Files)
|
|
# POE::Component::Server::Syslog is not packaged yet
|
|
%endif
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
Requires: perl(Fcntl)
|
|
Requires: perl(XSLoader)
|
|
|
|
%{?perl_default_filter}
|
|
|
|
%description
|
|
Sys::Syslog is an interface to the UNIX syslog(3) function. Call syslog() with
|
|
a string priority and a list of printf() arguments just like at syslog(3).
|
|
|
|
%prep
|
|
%setup -q -n Sys-Syslog-%{version}
|
|
chmod -x eg/*
|
|
# Inhibit bundled syslog.h
|
|
rm -rf fallback
|
|
sed -i -e '/^fallback\//d' MANIFEST
|
|
# Recode files
|
|
for F in Changes; do
|
|
iconv -f ISO-8859-1 -t UTF-8 < "$F" >"${F}.utf8"
|
|
touch -r "$F" "${F}.utf8"
|
|
mv "${F}.utf8" "$F"
|
|
done
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%doc Changes eg README
|
|
%{perl_vendorarch}/auto/*
|
|
%{perl_vendorarch}/Sys*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.33-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 0.33-4
|
|
- Perl 5.18 re-rebuild of bootstrapped packages
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.33-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 0.33-2
|
|
- Perl 5.18 rebuild
|
|
|
|
* Fri May 24 2013 Petr Pisar <ppisar@redhat.com> - 0.33-1
|
|
- 0.33 bump
|
|
|
|
* Tue Apr 09 2013 Petr Pisar <ppisar@redhat.com> 0.32-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|