Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
This DBIx::Class component can be used to automatically encode a column's
contents whenever the value of that column is set.
This module is similar to the existing DBIx::Class::DigestColumns, but
there is some key differences:
DigestColumns performs the encode operation on insert and update, and
EncodedColumn performs the operation when the value is set, or on new.
DigestColumns supports only algorithms of the Digest family. EncodedColumn
employs a set of thin wrappers around different cipher modules to provide
support for any cipher you wish to use and wrappers are very simple to
write (typically less than 30 lines).
EncodedColumn supports having more than one encoded column per table
and each column can use a different cipher.
Encode adds only one item to the namespace of the object utilizing it
(_column_encoders).
There is, unfortunately, some features that EncodedColumn doesn't support.
DigestColumns supports changing certain options at runtime, as well as the
option to not automatically encode values on set. The author of this module
found these options to be non-essential and omitted them by design.

View File

@@ -0,0 +1,41 @@
# $NetBSD: Makefile,v 1.10 2013/05/31 12:39:51 wiz Exp $
DISTNAME= DBIx-Class-EncodedColumn-0.00011
PKGNAME= p5-${DISTNAME}
PKGREVISION= 3
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBIx/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/DBIx-Class-EncodedColumn/
COMMENT= DBIx::Class component to automatically encode columns
LICENSE= ${PERL5_LICENSE}
DEPENDS+= p5-DBIx-Class>=0.06002:../../databases/p5-DBIx-Class
DEPENDS+= p5-Sub-Name>=0.04:../../devel/p5-Sub-Name
# Feature: Digest::MD5 support
DEPENDS+= {perl>=5.7.3,p5-Digest-[0-9]*}:../../security/p5-Digest
DEPENDS+= {perl>=5.7.3,p5-Digest-MD5-[0-9]*}:../../security/p5-Digest-MD5
# Feature: Digest::SHA support
DEPENDS+= {perl>=5.10.0,p5-Digest-SHA-[0-9]*}:../../security/p5-Digest-SHA
# Feature: Blowfish support
DEPENDS+= p5-Crypt-Eksblowfish-[0-9]*:../../security/p5-Crypt-Eksblowfish
#Feature: Crypt::OpenPGP (gpg) Support
DEPENDS+= p5-Crypt-OpenPGP-[0-9]*:../../security/p5-Crypt-OpenPGP
DEPENDS+= p5-Crypt-CAST5_PP-[0-9]*:../../security/p5-Crypt-CAST5_PP
BUILD_DEPENDS+= p5-DBD-SQLite-[0-9]*:../../databases/p5-DBD-SQLite
BUILD_DEPENDS+= p5-Dir-Self-[0-9]*:../../devel/p5-Dir-Self
BUILD_DEPENDS+= p5-SQL-Translator>=0.11002:../../databases/p5-SQL-Translator
BUILD_DEPENDS+= p5-Module-Install-ReadmeFromPod-[0-9]*:../../devel/p5-Module-Install-ReadmeFromPod
USE_LANGUAGES= # empty
PERL5_PACKLIST= auto/DBIx/Class/EncodedColumn/.packlist
PERL5_MODULE_TYPE= Module::Install::Bundled
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.4 2011/11/12 01:22:53 hiramatsu Exp $
SHA1 (DBIx-Class-EncodedColumn-0.00011.tar.gz) = 74ce6ad4a04b3cedc39069431bebd0050a1bb4b9
RMD160 (DBIx-Class-EncodedColumn-0.00011.tar.gz) = de735eb68ab4fce2e2f02ae22d2f672c4b4f436b
Size (DBIx-Class-EncodedColumn-0.00011.tar.gz) = 40304 bytes