./databases/p5-DBIx-Class-EncodedColumn, DBIx::Class component to automatically encode columns

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.00020nb4, Package name: p5-DBIx-Class-EncodedColumn-0.00020nb4, Maintainer: pkgsrc-users

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.


Required to run:
[lang/perl5] [security/p5-Crypt-CAST5_PP] [security/p5-Crypt-OpenPGP] [databases/p5-DBIx-Class] [devel/p5-Sub-Name] [security/p5-Crypt-Eksblowfish]

Required to build:
[devel/p5-Module-Build-Tiny]

Master sites: (Expand)

Filesize: 25.53 KB

Version history: (Expand)


CVS history: (Expand)


   2023-07-06 11:43:03 by Thomas Klausner | Files touched by this commit (2483)
Log message:
*: recursive bump for perl 5.38
   2022-06-28 13:38:00 by Thomas Klausner | Files touched by this commit (3952)
Log message:
*: recursive bump for perl 5.36
   2021-10-26 12:10:08 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

The following distfiles could not be fetched (some may be only fetched
conditionally):

./databases/cstore/distinfo D6.data.ros.gz
./databases/cstore/distinfo cstore0.2.tar.gz
./databases/cstore/distinfo data4.tar.gz
   2021-10-07 15:35:53 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Remove SHA1 distfile hashes
   2021-05-24 21:56:06 by Thomas Klausner | Files touched by this commit (3575)
Log message:
*: recursive bump for perl 5.34
   2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631)
Log message:
*: bump PKGREVISION for perl-5.32.
   2019-10-16 15:30:24 by Makoto Fujiwara | Files touched by this commit (1)
Log message:
(databases/p5-DBIx-Class-EncodedColumn) Fix build (PERL5_MODULE_TYPE) and \ 
TEST_DEPENDS+=

  1. convert PERL5_MODULE_TYPE from 'Module::Build' to 'Module::Build::Tiny'
    - config log says => Can't locate Module/Build/Tiny.pm in @INC
  2. Convert BUILD_DEPENDS to TEST_DEPENDS
  3. Add one  TEST_DEPENDS (p5-Test-Exception-[0-9]*)
   2019-10-14 15:34:37 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 0.00020

Upstream changes:
0.00020 2019-09-25
        - Skip author tests unless AUTHOR_TESTING is set
0.00019 2019-09-19
        - Skip author tests unless DBIC::TimeStamp is avail
0.00018 2019-09-16 08:00:00
        - Bugfix author tests (#130447, by jplesnik)
        - Previous release was broken
0.00017 2019-09-03
        - Add '.' to @inc (perlpunk)
        - Update prereqs (perlpunk)
0.00016 2019-06-12
        - Add charset option in ::Digest to handle non-ASCII strings, RT#127553 \ 
(rrwo)