debian/0000755000000000000000000000000012231465246007173 5ustar debian/watch0000644000000000000000000000026112100021311010173 0ustar # format version number, currently 2; this line is compulsory! version=3 http://search.cpan.org/dist/Crypt-MySQL/ .*/Crypt-MySQL-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/rules0000755000000000000000000000003612100021311010222 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000225312100021311011100 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Crypt-MySQL Source: http://search.cpan.org/dist/Crypt-MySQL/ Upstream-Contact: IKEBE Tomohiro Files: * Copyright: 2006, IKEBE Tomohiro License: Artistic or GPL-1+ Files: debian/* Copyright: 2007, 2010, Ivan Kohler 2011, Fabrizio Regalli 2011-2013, Salvatore Bonaccorso 2013, Xavier Guimard 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/source/0000755000000000000000000000000012100021311010443 5ustar debian/source/format0000644000000000000000000000001412100021311011651 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012100021311010572 5ustar debian/patches/use-Digest-SHA.patch0000644000000000000000000000277412100021311014247 0ustar Description: Use Digest::SHA, which is in perl core since 5.9.3 instead of Digest::SHA1. This allows to drop libdigest-sha1-perl (Build-)Depends. See: http://bugs.debian.org/594273 Origin: vendor Bug: https://rt.cpan.org/Public/Bug/Display.html?id=59918 Forwarded: yes Author: Salvatore Bonaccorso Last-Update: 2011-08-11 --- a/Build.PL +++ b/Build.PL @@ -9,7 +9,7 @@ dist_version_from => 'lib/Crypt/MySQL.pm', requires => { 'Test::More' => 0, - 'Digest::SHA1' => 0, + 'Digest::SHA' => 0, }, add_to_cleanup => [ 'Crypt-MySQL-*' ], ); --- a/META.yml +++ b/META.yml @@ -5,7 +5,7 @@ version_from: lib/Crypt/MySQL.pm installdirs: site requires: - Digest::SHA1: 0 + Digest::SHA: 0 Test::More: 0 distribution_type: module --- a/Makefile.PL +++ b/Makefile.PL @@ -11,7 +11,7 @@ PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, - 'Digest::SHA1' => 0, + 'Digest::SHA' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Crypt-MySQL-*' }, --- a/lib/Crypt/MySQL.pm +++ b/lib/Crypt/MySQL.pm @@ -2,7 +2,7 @@ use strict; use vars qw($VERSION @ISA @EXPORT_OK); -use Digest::SHA1 qw(sha1 sha1_hex); +use Digest::SHA qw(sha1 sha1_hex); BEGIN { $VERSION = '0.04'; @@ -50,6 +50,6 @@ =head1 SEE ALSO -L L +L L =cut debian/patches/series0000644000000000000000000000002512100021311012004 0ustar use-Digest-SHA.patch debian/compat0000644000000000000000000000000212100021311010341 0ustar 9 debian/control0000644000000000000000000000167612100021311010560 0ustar Source: libcrypt-mysql-perl Maintainer: Debian Perl Group Uploaders: Ivan Kohler , Fabrizio Regalli , Xavier Guimard Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312), libdbd-mysql-perl, perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcrypt-mysql-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcrypt-mysql-perl.git Homepage: http://search.cpan.org/dist/Crypt-MySQL/ Package: libcrypt-mysql-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Description: Perl module to emulate the MySQL PASSWORD() function Crypt::MySQL emulates MySQL PASSWORD() SQL function, without libmysqlclient. You can compare encrypted passwords, without real MySQL environment. debian/changelog0000644000000000000000000000470712231465246011055 0ustar libcrypt-mysql-perl (0.04-5build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Tue, 22 Oct 2013 13:08:06 +0100 libcrypt-mysql-perl (0.04-5) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) [ Xavier Guimard ] * Bump Standards-Version to 3.9.4 * Bump debhelper compatibility to 9 * Add libdbd-mysql-perl into B-D to active O3_dbi.t test -- Xavier Guimard Wed, 23 Jan 2013 18:40:02 +0100 libcrypt-mysql-perl (0.04-4) unstable; urgency=low * Team upload. [ Fabrizio Regalli ] * Switch to DEP5 license format. * Bump to 3.9.2 Standard-Version. * Add myself to Uploaders and Copyright. * Switch d/compat to 8. * Build-Depends: switch to debhelper (>= 8). * Bump to 3.0 quilt format. * Fixed lintian description-synopsis-might-not-be-phrased-properly message. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: - Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. - Update copyright information for debian/* packaging. * debian/patches: Add use-Digest-SHA.patch to use Digest::SHA instead of Digest::SHA1. * debian/control: - Drop (Build-)Depends on libdigest-sha1-perl. - Drop libmodule-build-perl from Build-Depends. * Don't install README to docs -- Salvatore Bonaccorso Thu, 11 Aug 2011 21:12:24 +0200 libcrypt-mysql-perl (0.04-3) unstable; urgency=low * Take over for the Debian Perl Group * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Changed: Maintainer set to Debian Perl Group (was: Ivan Kohler ); Ivan Kohler moved to Uploaders. * debian/watch: use dist-based URL. * dh-make-perl refresh, dh7 * Standards-Version 3.8.4 -- Ivan Kohler Sat, 24 Apr 2010 23:05:09 -0700 libcrypt-mysql-perl (0.04-2) unstable; urgency=low * Move libdigest-sha1-perl from Build-Depends-Indep to Build-Depends, (closes: Bug#419588) -- Ivan Kohler Mon, 16 Apr 2007 12:15:19 -0700 libcrypt-mysql-perl (0.04-1) unstable; urgency=low * Initial Release (closes: Bug#411711). -- Ivan Kohler Tue, 20 Feb 2007 07:39:41 -0800