From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 20 19:00:09 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E6B116A407 for ; Wed, 20 Feb 2008 19:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4589713C465 for ; Wed, 20 Feb 2008 19:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1KJ08Gp048117 for ; Wed, 20 Feb 2008 19:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1KJ08Zw048116; Wed, 20 Feb 2008 19:00:08 GMT (envelope-from gnats) Resent-Date: Wed, 20 Feb 2008 19:00:08 GMT Resent-Message-Id: <200802201900.m1KJ08Zw048116@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Felippe de Meirelles Motta Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9635316A400 for ; Wed, 20 Feb 2008 18:51:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 7BFBB13C469 for ; Wed, 20 Feb 2008 18:51:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m1KImdCb050752 for ; Wed, 20 Feb 2008 18:48:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m1KImdr3050750; Wed, 20 Feb 2008 18:48:39 GMT (envelope-from nobody) Message-Id: <200802201848.m1KImdr3050750@www.freebsd.org> Date: Wed, 20 Feb 2008 18:48:39 GMT From: Felippe de Meirelles Motta To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/120895: [UPDATE] databases/p5-DBIx-Simple X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 19:00:09 -0000 >Number: 120895 >Category: ports >Synopsis: [UPDATE] databases/p5-DBIx-Simple >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 19:00:07 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Felippe de Meirelles Motta >Release: FreeBSD 7.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD 7.0-PRERELEASE #0: Thu Jan 10 01:55:37 BRST 2008 lippe@shire.freebsd.org:/usr/obj/usr/src/sys/GENERIC >Description: - Updated to 1.32; - Use CPAN macro; - Add new OPTION (SQL_INTERP); - Update pkg-plist. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Simple/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 8 Sep 2007 00:54:33 -0000 1.3 +++ Makefile 20 Feb 2008 16:36:26 -0000 @@ -6,32 +6,33 @@ # PORTNAME= DBIx-Simple -PORTVERSION= 1.26 +PORTVERSION= 1.32 CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBIx +MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= parv@pair.com COMMENT= Simplified object oriented interface to Perl DBI -RUN_DEPENDS= p5-DBI>=1.21:${PORTSDIR}/databases/p5-DBI \ - p5-Data-Swap>=0.02:${PORTSDIR}/devel/p5-Data-Swap +RUN_DEPENDS= p5-DBI>=1.21:${PORTSDIR}/databases/p5-DBI -OPTIONS= \ - SQL_ABSTRACT "Generate SQL from Perl data structures" off \ - DBIX_XHTML_TABLE "Create XHTML tables from SQL queries" off \ - TEXT_TABLE "Create plain text table from data" off +OPTIONS= SQL_INTERP "Interpolate Perl variables into SQL with DBI" off \ + SQL_ABSTRACT "Generate SQL from Perl data structures" off \ + DBIX_XHTML_TABLE "Create XHTML tables from SQL queries" off \ + TEXT_TABLE "Create plain text table from data" off PERL_CONFIGURE= yes MAN3= DBIx::Simple.3 \ DBIx::Simple::Examples.3 \ - DBIx::Simple::Comparison.3 \ - DBIx::Simple::SQE.3 + DBIx::Simple::Comparison.3 .include +.if defined(WITH_SQL_INTERP) +RUN_DEPENDS+= ${SITE_PERL}/SQL/Interp.pm:${PORTSDIR}/databases/p5-SQL-Interp +.endif + .if defined(WITH_SQL_ABSTRACT) RUN_DEPENDS+= p5-SQL-Abstract>=0:${PORTSDIR}/databases/p5-SQL-Abstract .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Simple/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 11 Dec 2005 12:41:55 -0000 1.1 +++ distinfo 20 Feb 2008 16:36:26 -0000 @@ -1,3 +1,3 @@ -MD5 (DBIx-Simple-1.26.tar.gz) = 47e4a2780fb27139e4b8d2c13c28ba13 -SHA256 (DBIx-Simple-1.26.tar.gz) = cf69682d844b313fbe68c003704d102c22df995367033a6da4e11ef5789af63c -SIZE (DBIx-Simple-1.26.tar.gz) = 15869 +MD5 (DBIx-Simple-1.32.tar.gz) = c1d7bf0ab453e7e00715d9d4e71102d8 +SHA256 (DBIx-Simple-1.32.tar.gz) = 226917bffbe3ad0e88295046ed4d25785bc6175e696fb77f8302226bc947fe36 +SIZE (DBIx-Simple-1.32.tar.gz) = 16475 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Simple/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 22 Jan 2006 01:29:05 -0000 1.2 +++ pkg-plist 20 Feb 2008 16:36:26 -0000 @@ -1,7 +1,6 @@ %%SITE_PERL%%/DBIx/Simple.pm %%SITE_PERL%%/DBIx/Simple/Comparison.pod %%SITE_PERL%%/DBIx/Simple/Examples.pod -%%SITE_PERL%%/DBIx/Simple/SQE.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Simple/.packlist @dirrm %%SITE_PERL%%/DBIx/Simple @dirrmtry %%SITE_PERL%%/DBIx >Release-Note: >Audit-Trail: >Unformatted: