.gear-rules | 2 + .../3811458951e1c5822ff9e6d1bcead6f2938ae127 | 13 +++++ .gear-tags/list | 1 + Makefile.PL | 13 ----- perl-Ima-DBI.spec | 53 ++++++++++++++++++++ 5 files changed, 69 insertions(+), 13 deletions(-) diff --git a/.gear-rules b/.gear-rules new file mode 100644 index 0000000..5001144 --- /dev/null +++ b/.gear-rules @@ -0,0 +1,2 @@ +tar: @version@:. name=Ima-DBI-@version@ +diff: @version@:. . name=perl-Ima-DBI-@version@-@release@.patch diff --git a/.gear-tags/3811458951e1c5822ff9e6d1bcead6f2938ae127 b/.gear-tags/3811458951e1c5822ff9e6d1bcead6f2938ae127 new file mode 100644 index 0000000..0c4967a --- /dev/null +++ b/.gear-tags/3811458951e1c5822ff9e6d1bcead6f2938ae127 @@ -0,0 +1,13 @@ +object d553133e921545b7ac0f89767e68a8484daa1883 +type commit +tag 0.35 +tagger Alexey Tourbin 1186343430 +0400 + +0.35 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.7 (GNU/Linux) + +iD8DBQBGtioGfBKgtDjnu0YRAmGyAKCEHJwE02E2QgPva7cphbwubsZdbgCfYRYM +lBPLs/jWzRHvUNu+C3C0+/Y= +=OTkO +-----END PGP SIGNATURE----- diff --git a/.gear-tags/list b/.gear-tags/list new file mode 100644 index 0000000..5fbf069 --- /dev/null +++ b/.gear-tags/list @@ -0,0 +1 @@ +3811458951e1c5822ff9e6d1bcead6f2938ae127 0.35 diff --git a/Makefile.PL b/Makefile.PL index a740a98..1c2c709 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,5 @@ use ExtUtils::MakeMaker; -my $LAST_API_CHANGE = 0.08; - -eval { require Ima::DBI; }; -unless ($@) { # Make sure we did find the module. - print <<"CHANGE_WARN" if $Ima::DBI::VERSION < $LAST_API_CHANGE; - -NOTE: There have been API changes between this version and any older -than version $LAST_API_CHANGE! Please read the Changes file if you -are upgrading from a version of Ima::DBI older than $LAST_API_CHANGE. - -CHANGE_WARN -} - WriteMakefile( NAME => 'Ima::DBI', VERSION_FROM => 'lib/Ima/DBI.pm', diff --git a/perl-Ima-DBI.spec b/perl-Ima-DBI.spec new file mode 100644 index 0000000..4cfff0c --- /dev/null +++ b/perl-Ima-DBI.spec @@ -0,0 +1,53 @@ +%define dist Ima-DBI +Name: perl-%dist +Version: 0.35 +Release: alt1 + +Summary: Database connection caching and organization +License: GPL or Artistic +Group: Development/Perl + +URL: %CPAN %dist +Source: %dist-%version.tar +Patch: %name-%version-%release.patch + +BuildArch: noarch + +# Automatically added by buildreq on Sun Aug 05 2007 +BuildRequires: perl-Class-Data-Inheritable perl-DBI-devel perl-DBIx-ContextualFetch perl-Test-Pod + +# this dependency cannot be detected automatically +Requires: perl-DBIx-ContextualFetch + +%description +Ima::DBI attempts to organize and facilitate caching and more efficient +use of database connections and statement handles by storing DBI and +SQL information with your class (instead of as seperate objects). +This allows you to pass around just one object without worrying about +a trail of DBI handles behind it. + +%prep +%setup -q -n %dist-%version +%patch -p1 + +%build +%perl_vendor_build + +%install +%perl_vendor_install + +%files +%doc Changes README +%perl_vendor_privlib/Ima* + +%changelog +* Sun Aug 05 2007 Alexey Tourbin 0.35-alt1 +- 0.33 -> 0.35 + +* Mon Aug 29 2005 Alexey Tourbin 0.33-alt2 +- removed build dependency on perl-Class-WhiteHole (cpan #14359) +- added dependency on perl-DBIx-ContextualFetch +- eliminated build dependency on itself + +* Wed Jul 06 2005 Alexey Tourbin 0.33-alt1 +- initial revision