gpgdir 1.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News gpgdir 1.8 (Default branch)
# 1  
Old 04-06-2008
gpgdir 1.8 (Default branch)

gpgdir is a Perl script that uses the CPAN GnuPG module to encrypt and decrypt directories using a GPG key specified in ~/.gpgdirrc. It supports recursively descending through a directory in order to make sure it encrypts or decrypts every file in a directory and all of its subdirectories. All file mtime and atime values are preserved across encryption and decryption operations. In addition, gpgdir is careful not to encrypt hidden files and directories.License: GNU General Public License (GPL)Changes:
The test suite was updated to validate the gpgdir--Obfuscate-filenames mode to ensure that filesare encrypted as "gpgdir_PID_NUM.gpg". A minor bugwas fixed to remove the .gpgdir_map_file in--Obfuscate-filenames mode after a successfuldecryption cycle. The CPAN GnuPG::Interface modulewas updated to version 0.36.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CPAN::Perl::Releases(3pm)				User Contributed Perl Documentation				 CPAN::Perl::Releases(3pm)

NAME
CPAN::Perl::Releases - Mapping Perl releases on CPAN to the location of the tarballs VERSION
version 0.60 SYNOPSIS
use CPAN::Perl::Releases qw[perl_tarballs]; my $perl = '5.14.0'; my $hashref = perl_tarballs( $perl ); print "Location: ", $_, " " for values %{ $hashref }; DESCRIPTION
CPAN::Perl::Releases is a module that contains the mappings of all "perl" releases that have been uploaded to CPAN to the "authors/id/" path that the tarballs reside in. This is static data, but newer versions of this module will be made available as new releases of "perl" are uploaded to CPAN. FUNCTIONS
"perl_tarballs" Takes one parameter, a "perl" version to search for. Returns an hashref on success or "undef" otherwise. The returned hashref will have a key/value for each type of tarball. A key of "tar.gz" indicates the location of a gzipped tar file and "tar.bz2" of a bzip2'd tar file. The values will be the relative path under "authors/id/" on CPAN where the indicated tarball will be located. perl_tarballs( '5.14.0' ); Returns a hashref like: { "tar.bz2" => "J/JE/JESSE/perl-5.14.0.tar.bz2", "tar.gz" => "J/JE/JESSE/perl-5.14.0.tar.gz" } Not all "perl" releases had "tar.bz2", but only a "tar.gz". SEE ALSO
<http://www.cpan.org/src/5.0/> <http://search.cpan.org/faq.html#Is_there_a_API?> AUTHOR
Chris Williams <chris@bingosnet.co.uk> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Chris Williams. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-20 CPAN::Perl::Releases(3pm)