debian/0000755000000000000000000000000012217410616007166 5ustar debian/rules0000755000000000000000000000003612217410616010245 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000264612217410616010601 0ustar Source: libdbix-class-encodedcolumn-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libcrypt-eksblowfish-perl, libdbd-sqlite3-perl, libdbix-class-perl, libdigest-whirlpool-perl, libsql-translator-perl (>= 0.11002), libsub-name-perl, libtest-exception-perl Maintainer: Debian Perl Group Uploaders: Jonathan Yu , Ansgar Burchardt , gregor herrmann Standards-Version: 3.9.4 Homepage: https://metacpan.org/release/DBIx-Class-EncodedColumn/ Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbix-class-encodedcolumn-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbix-class-encodedcolumn-perl.git Package: libdbix-class-encodedcolumn-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libdbix-class-perl, libsub-name-perl Suggests: libcrypt-eksblowfish-perl, libdigest-whirlpool-perl Description: extension to encode column values automatically DBIx::Class::EncodedColumn is a DBIx::Class component which can automatically encode a column's contents whenever the value of that column is set, similar to DBIx::Class::DigestColumns. Any data you write is automatically converted on-the-fly and, in contrast to DigestColumns, any arbitrary message digest or encryption method can be supported through an appropriate encoding class. debian/source/0000755000000000000000000000000012217410616010466 5ustar debian/source/format0000644000000000000000000000001412217410616011674 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000613712217410616011047 0ustar libdbix-class-encodedcolumn-perl (0.00012-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * New upstream release. * Refresh patches and forward the non-Debian-specific one. * Update copyright years. * debian/copyright: switch formatting to Copyright-Format 1.0. * Declare compliance with Debian Policy 3.9.4. -- gregor herrmann Sat, 21 Sep 2013 23:37:07 +0200 libdbix-class-encodedcolumn-perl (0.00011-1) unstable; urgency=low * New upstream release. * debian/copyright: add new copyright holders. * Set Standards-Version to 3.9.2 (no changes). * Add libcrypt-eksblowfish-perl, libdigest-whirlpool-perl to B-D-I and Suggests. -- gregor herrmann Sun, 24 Apr 2011 21:34:59 +0200 libdbix-class-encodedcolumn-perl (0.00010-2) unstable; urgency=low [ Ansgar Burchardt ] * Update my email address. [ gregor herrmann ] * Add build dependency in libtest-exception-perl (closes: #615884). * Remove version from libsub-name-perl (build) dependency, already satisfied in lenny. * Add /me to Uploaders. -- gregor herrmann Mon, 28 Feb 2011 23:49:04 +0100 libdbix-class-encodedcolumn-perl (0.00010-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release (0.00009). [ Ansgar Burchardt ] * New upstream release (0.00010). * Update patch no-Dir-Self.patch. * debian/copyright: Update copyright information; refer to /usr/share/common-licenses/GPL-1; refer to "Debian systems" instead of "Debian GNU/Linux systems". * Use debhelper compat level 8. * Bump Standards-Version to 3.9.1. -- Ansgar Burchardt Sun, 29 Aug 2010 21:26:36 +0900 libdbix-class-encodedcolumn-perl (0.00007-1) unstable; urgency=low * New upstream release. * debian/copyright: Formating changes for current DEP-5 proposal. * debian/copyright: Update years of copyright for ./inc/*. * Use source format 3.0 (quilt); drop README.source and quilt framework. * Avoid build-dependency on Dir::Self (no packaged for Debian) by including the three lines used from there. + new patch: no-Dir-Self.patch * Bump Standards-Version to 3.8.4. * Add myself to Uploaders. -- Ansgar Burchardt Fri, 30 Apr 2010 20:41:04 +0900 libdbix-class-encodedcolumn-perl (0.00006-1) unstable; urgency=low * New upstream release * POD errors are fixed upstream, remove patch -- Jonathan Yu Fri, 15 Jan 2010 22:20:34 -0500 libdbix-class-encodedcolumn-perl (0.00005-1) unstable; urgency=low * New upstream release + Fixes hashing and validation with Whirlpool * Add Kent Fredric to copyright (since he's now in CONTRIBUTORS) * Refreshed fix-pod-errors patch with new formatting problems -- Jonathan Yu Sun, 11 Oct 2009 21:35:22 -0400 libdbix-class-encodedcolumn-perl (0.00003-1) unstable; urgency=low * Initial Release (Closes: #538943) -- Jonathan Yu Wed, 02 Sep 2009 06:19:16 -0400 debian/compat0000644000000000000000000000000212217410616010364 0ustar 8 debian/patches/0000755000000000000000000000000012217410616010615 5ustar debian/patches/no-Dir-Self.patch0000644000000000000000000000377612217410616013672 0ustar From: Ansgar Burchardt Date: Fri, 30 Apr 2010 20:31:08 +0900 Origin: vendor Forwarded: not-needed Subject: Remove build-dep on Dir::Self by including the relevant method. The function __DIR__ is taken from Dir::Self 0.10 which has the following copyright information: Copyright (C) 2007, 2008 by Lukas Mai This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. --- a/t/bcrypt.t +++ b/t/bcrypt.t @@ -3,9 +3,15 @@ use warnings; use Test::More; use utf8; -use Dir::Self; use File::Spec; use File::Temp 'tempdir'; + +sub __DIR__ () { + my $level = shift || 0; + my $file = (caller $level)[1]; + File::Spec->rel2abs(join '', (File::Spec->splitpath($file))[0, 1]) +} + use lib File::Spec->catdir(__DIR__, 'lib'); BEGIN { --- a/t/digest_sha.t +++ b/t/digest_sha.t @@ -3,9 +3,15 @@ use warnings; use Test::More; -use Dir::Self; use File::Spec; use File::Temp 'tempdir'; + +sub __DIR__ () { + my $level = shift || 0; + my $file = (caller $level)[1]; + File::Spec->rel2abs(join '', (File::Spec->splitpath($file))[0, 1]) +} + use lib File::Spec->catdir(__DIR__, 'lib'); use DigestTest::Schema; --- a/t/open_pgp.t +++ b/t/open_pgp.t @@ -3,9 +3,15 @@ use warnings; use Test::More; -use Dir::Self; use File::Spec; use File::Temp 'tempdir'; + +sub __DIR__ () { + my $level = shift || 0; + my $file = (caller $level)[1]; + File::Spec->rel2abs(join '', (File::Spec->splitpath($file))[0, 1]) +} + use lib File::Spec->catdir(__DIR__, 'lib'); use DigestTest::Schema; --- a/t/whirlpool.t +++ b/t/whirlpool.t @@ -3,9 +3,15 @@ use warnings; use Test::More; -use Dir::Self; use File::Spec; use File::Temp 'tempdir'; + +sub __DIR__ () { + my $level = shift || 0; + my $file = (caller $level)[1]; + File::Spec->rel2abs(join '', (File::Spec->splitpath($file))[0, 1]) +} + use lib File::Spec->catdir(__DIR__, 'lib'); use DigestTest::Schema; debian/patches/fix-whatis.patch0000644000000000000000000000150212217410616013717 0ustar Description: fix whatis entries Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=88875 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=88875 Author: Jonathan Yu Reviewed-by: gregor herrmann Last-Update: 2013-09-21 --- a/lib/DBIx/Class/EncodedColumn/Crypt/Eksblowfish/Bcrypt.pm +++ b/lib/DBIx/Class/EncodedColumn/Crypt/Eksblowfish/Bcrypt.pm @@ -56,7 +56,7 @@ =head1 NAME -DBIx::Class::EncodedColumn::Crypt::Eksblowfish::Bcrypt +DBIx::Class::EncodedColumn::Crypt::Eksblowfish::Bcrypt - Eksblowfish bcrypt backend =head1 SYNOPSYS --- a/lib/DBIx/Class/EncodedColumn/Digest.pm +++ b/lib/DBIx/Class/EncodedColumn/Digest.pm @@ -78,7 +78,7 @@ =head1 NAME -DBIx::Class::EncodedColumn::Digest +DBIx::Class::EncodedColumn::Digest - Digest backend =head1 SYNOPSYS debian/patches/series0000644000000000000000000000004312217410616012027 0ustar fix-whatis.patch no-Dir-Self.patch debian/copyright0000644000000000000000000000313112217410616011117 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DBIx-Class-EncodedColumn Upstream-Contact: Guillermo Roditi Source: https://metacpan.org/release/DBIx-Class-EncodedColumn/ Files: * Copyright: 2008-2009, Guillermo Roditi 2008-2009, Matt S Trout 2008-2009, Kent Fredric 2008-2009, J. Shirley 2008-2009, Wallace reis License: Artistic or GPL-1+ Files: lib/DBIx/Class/EncodedColumn/Crypt.pm Copyright: 2010, Wallace reis License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2012, Adam Kennedy 2002-2012, Audrey Tang 2002-2012, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2009, Jonathan Yu 2011-2013, gregor herrmann License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000021612217410616010216 0ustar version=3 https://metacpan.org/release/DBIx-Class-EncodedColumn/ .*/DBIx-Class-EncodedColumn-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$