From owner-svn-ports-head@FreeBSD.ORG Fri Jul 18 17:54:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 000917FD; Fri, 18 Jul 2014 17:54:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0CB92D12; Fri, 18 Jul 2014 17:54:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6IHsXGm096433; Fri, 18 Jul 2014 17:54:33 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6IHsWhQ096428; Fri, 18 Jul 2014 17:54:32 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201407181754.s6IHsWhQ096428@svn.freebsd.org> From: Ryan Steinmetz Date: Fri, 18 Jul 2014 17:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362220 - in head/databases: . p5-DBIx-Class-BitField X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 17:54:34 -0000 Author: zi Date: Fri Jul 18 17:54:31 2014 New Revision: 362220 URL: http://svnweb.freebsd.org/changeset/ports/362220 QAT: https://qat.redports.org/buildarchive/r362220/ Log: New port: databases/p5-DBIx-Class-BitField: This module is useful if you manage data which has a lot of on/off attributes like active, inactive, deleted, important, etc. If you do not want to add an extra column for each of those attributes you can easily specify them in one integer column. A bit field is a way to store multiple bit values on one integer field. The main benefit from this module is that you can add additional attributes to your result class whithout the need to deploy or change the schema on the data base. WWW: http://search.cpan.org/dist/DBIx-Class-BitField/ Added: head/databases/p5-DBIx-Class-BitField/ head/databases/p5-DBIx-Class-BitField/Makefile (contents, props changed) head/databases/p5-DBIx-Class-BitField/distinfo (contents, props changed) head/databases/p5-DBIx-Class-BitField/pkg-descr (contents, props changed) head/databases/p5-DBIx-Class-BitField/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Jul 18 16:40:59 2014 (r362219) +++ head/databases/Makefile Fri Jul 18 17:54:31 2014 (r362220) @@ -335,6 +335,7 @@ SUBDIR += p5-DBIx-Browse SUBDIR += p5-DBIx-Class SUBDIR += p5-DBIx-Class-AsFdat + SUBDIR += p5-DBIx-Class-BitField SUBDIR += p5-DBIx-Class-Candy SUBDIR += p5-DBIx-Class-Cursor-Cached SUBDIR += p5-DBIx-Class-CustomPrefetch Added: head/databases/p5-DBIx-Class-BitField/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-DBIx-Class-BitField/Makefile Fri Jul 18 17:54:31 2014 (r362220) @@ -0,0 +1,21 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= DBIx-Class-BitField +PORTVERSION= 0.13 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Store multiple boolean fields in one integer field + +RUN_DEPENDS= p5-DBIx-Class>=0:${PORTSDIR}/databases/p5-DBIx-Class +BUILD_DEPENDS= ${RUN_DEPENDS} +TEST_DEPENDS= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite \ + p5-File-Find-Rule>=0:${PORTSDIR}/devel/p5-File-Find-Rule + +USES= perl5 +USE_PERL5= configure + +.include Added: head/databases/p5-DBIx-Class-BitField/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-DBIx-Class-BitField/distinfo Fri Jul 18 17:54:31 2014 (r362220) @@ -0,0 +1,2 @@ +SHA256 (DBIx-Class-BitField-0.13.tar.gz) = dea328c7e5e1807826c7e0b4f4c8290d967ebd0fdb970fd6939e13e3b4c539fa +SIZE (DBIx-Class-BitField-0.13.tar.gz) = 8052 Added: head/databases/p5-DBIx-Class-BitField/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-DBIx-Class-BitField/pkg-descr Fri Jul 18 17:54:31 2014 (r362220) @@ -0,0 +1,12 @@ +This module is useful if you manage data which has a lot of on/off attributes +like active, inactive, deleted, important, etc. If you do not want to add an +extra column for each of those attributes you can easily specify them in one +integer column. + +A bit field is a way to store multiple bit values on one integer field. + +The main benefit from this module is that you can add additional attributes +to your result class whithout the need to deploy or change the schema on the +data base. + +WWW: http://search.cpan.org/dist/DBIx-Class-BitField/ Added: head/databases/p5-DBIx-Class-BitField/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-DBIx-Class-BitField/pkg-plist Fri Jul 18 17:54:31 2014 (r362220) @@ -0,0 +1,6 @@ +%%PERL5_MAN3%%/DBIx::Class::BitField.3.gz +%%PERL5_MAN3%%/DBIx::Class::ResultSet::BitField.3.gz +%%SITE_PERL%%/DBIx/Class/BitField.pm +%%SITE_PERL%%/DBIx/Class/ResultSet/BitField.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/BitField/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/BitField