Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Jul 2014 17:54:32 +0000 (UTC)
From:      Ryan Steinmetz <zi@FreeBSD.org>
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
Message-ID:  <201407181754.s6IHsWhQ096428@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <zi@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407181754.s6IHsWhQ096428>