1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Update to 1.3

This commit is contained in:
Lars Thegler 2005-11-09 13:29:19 +00:00
parent e4b61d8e5a
commit 908a882d0a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=147697
3 changed files with 10 additions and 10 deletions

View File

@ -5,10 +5,10 @@
# $FreeBSD$
PORTNAME= Class-DBI-Loader-Relationship
PORTVERSION= 1.2
PORTVERSION= 1.3
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Class
MASTER_SITE_SUBDIR= ../by-authors/id/C/CH/CHUNZI
PKGNAMEPREFIX= p5-
MAINTAINER= lth@FreeBSD.org

View File

@ -1,2 +1,2 @@
MD5 (Class-DBI-Loader-Relationship-1.2.tar.gz) = d5a3262146ee4c63a46a5c87205c5619
SIZE (Class-DBI-Loader-Relationship-1.2.tar.gz) = 3109
MD5 (Class-DBI-Loader-Relationship-1.3.tar.gz) = 2eef3eb51e740067f3aceddac31b0190
SIZE (Class-DBI-Loader-Relationship-1.3.tar.gz) = 3265

View File

@ -1,19 +1,19 @@
--- Relationship.pm.orig Mon Mar 1 16:48:45 2004
+++ Relationship.pm Sun Apr 4 22:30:41 2004
--- Relationship.pm.orig Wed Nov 9 02:28:38 2005
+++ Relationship.pm Wed Nov 9 14:27:27 2005
@@ -1,9 +1,8 @@
package Class::DBI::Loader::Relationship;
-use 5.006;
use strict;
-use warnings;
-our $VERSION = '1.2';
-our $VERSION = '1.3';
-our $DEBUG = 0;
+use vars qw($VERSION $DEBUG);
+$VERSION = '1.2';
+$VERSION = '1.3';
+$DEBUG = 0;
1;
@@ -82,7 +81,7 @@
@@ -96,7 +95,7 @@
"$via_c->has_a(".to_S($to)." => $to_c)\n".
"$from_c->$method($mapper => [ $via_c => ".to_S($to)." ])\n".
"$to_c->has_many(".to_PL($from)." => [ $via_c => ".to_S($from)." ])\n"
@ -22,7 +22,7 @@
$via_c->has_a(to_S($from) => $from_c);
$via_c->has_a(to_S($to) => $to_c);
@@ -92,7 +91,7 @@
@@ -106,7 +105,7 @@
}
return "$from_c->$method($mapper => $to_c);\n".
($method ne "has_a" && "$to_c->has_a(".to_S($from)." => $from_c);\n")