|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
Name: perl-SQL-Translator
|
|
|
|
|
Version: 0.11002
|
|
|
|
|
Version: 0.11003
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Manipulate structured data definitions (SQL and more)
|
|
|
|
|
# see, e.g., lib/SQL/Translator.pm
|
|
|
|
|
License: GPLv2
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
URL: http://search.cpan.org/dist/SQL-Translator/
|
|
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/J/JR/JROBINSON/SQL-Translator-%{version}.tar.gz
|
|
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/SQL-Translator-%{version}.tar.gz
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
@ -49,6 +49,7 @@ BuildRequires: perl(CPAN)
|
|
|
|
|
BuildRequires: perl(Test::Differences)
|
|
|
|
|
BuildRequires: perl(Test::Exception)
|
|
|
|
|
BuildRequires: perl(XML::Parser)
|
|
|
|
|
BuildRequires: perl(XML::LibXML)
|
|
|
|
|
|
|
|
|
|
### auto-added reqs!
|
|
|
|
|
Requires: perl(Carp::Clan)
|
|
|
|
@ -69,6 +70,8 @@ Requires: perl(XML::Writer) >= 0.5
|
|
|
|
|
%perl_default_filter
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%bcond_with local_perl
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
SQL::Translator is a group of Perl modules that converts vendor-specific
|
|
|
|
|
SQL table definitions into other formats, such as other vendor-specific
|
|
|
|
@ -89,6 +92,7 @@ find . -type f -exec chmod -c -x {} +
|
|
|
|
|
perl -pi -e 's|^#!/usr/local/bin/perl|#!%{__perl}|' t/*.t
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%{?!with_local_perl:unset PERL_MM_OPT MODULEBUILDRC PERL5LIB}
|
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
@ -117,6 +121,10 @@ rm -rf %{buildroot}
|
|
|
|
|
%{_mandir}/man[13]/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Sat Jan 16 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.11003-1
|
|
|
|
|
- add br on XML::LibXML
|
|
|
|
|
- auto-update to 0.11003 (by cpan-spec-update 0.01)
|
|
|
|
|
|
|
|
|
|
* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.11002-1
|
|
|
|
|
- auto-update to 0.11002 (by cpan-spec-update 0.01)
|
|
|
|
|
- altered br on perl(Parse::RecDescent) (1.096 => 1.962002)
|
|
|
|
|