You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.7 KiB
104 lines
2.7 KiB
Name: perl-Config-Any
|
|
Version: 0.07
|
|
Release: 3%{?dist}
|
|
Summary: Load configuration from different file formats, transparently
|
|
License: GPL or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/Config-Any/
|
|
Source0: http://www.cpan.org/authors/id/R/RA/RATAXIS/Config-Any-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildArch: noarch
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl(Module::Pluggable) >= 3.01
|
|
BuildRequires: perl(version)
|
|
BuildRequires: perl(JSON::Syck)
|
|
BuildRequires: perl(Config::General)
|
|
BuildRequires: perl(Config::Tiny)
|
|
BuildRequires: perl(XML::Simple)
|
|
BuildRequires: perl(YAML::Syck)
|
|
|
|
# tests
|
|
BuildRequires: perl(Test::More)
|
|
BuildRequires: perl(Scalar::Util)
|
|
|
|
# optional tests
|
|
BuildRequires: perl(Test::Pod), perl(Test::Pod::Coverage)
|
|
|
|
# not picked up
|
|
Requires: perl(JSON::Syck)
|
|
Requires: perl(Config::General)
|
|
Requires: perl(Config::Tiny)
|
|
Requires: perl(XML::Simple)
|
|
Requires: perl(YAML::Syck)
|
|
|
|
|
|
%description
|
|
Config::Any provides a facility for Perl applications and libraries to
|
|
load configuration data from multiple different file formats. It supports
|
|
XML, YAML, JSON, Apache-style configuration, Windows INI files, and even
|
|
Perl code.
|
|
|
|
%prep
|
|
%setup -q -n Config-Any-%{version}
|
|
|
|
# make rpmlint happy :)
|
|
find t/ -type f -exec sed -i 's/\r//' {} \;
|
|
perl -pi -e 's|^#!perl|#!/usr/bin/perl|' t/*.t
|
|
|
|
# Filter unwanted Provides:
|
|
cat << \EOF > %{name}-prov
|
|
#!/bin/sh
|
|
%{__perl_provides} $* |\
|
|
sed -e '/perl(MockApp)/d'
|
|
EOF
|
|
|
|
%define __perl_provides %{_builddir}/Config-Any-%{version}/%{name}-prov
|
|
chmod +x %{__perl_provides}
|
|
|
|
# Filter unwanted Requires:
|
|
cat << \EOF > %{name}-req
|
|
#!/bin/sh
|
|
%{__perl_requires} $* |\
|
|
sed -e '/perl(Test::More)/d; /perl(Scalar::Util)/d'
|
|
EOF
|
|
|
|
%define __perl_requires %{_builddir}/Config-Any-%{version}/%{name}-req
|
|
chmod +x %{__perl_requires}
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
|
|
./Build install destdir=%{buildroot} create_packlist=0
|
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
%{_fixperms} %{buildroot}/*
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
# conf/ for examples of different config types
|
|
%doc Changes README t/
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Fri May 04 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-3
|
|
- add entirety of t/ to %%doc
|
|
|
|
* Tue Apr 10 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-2
|
|
- Additional requires not documented added
|
|
|
|
* Tue Apr 10 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-1
|
|
- Specfile autogenerated by cpanspec 1.70.
|