Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0.16 Release
  • Loading branch information
Mike Schilli committed Mar 20, 2012
1 parent ac6bc87 commit 489d170
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,6 +1,10 @@
######################################################################
Revision history for Perl extension Archive::Tar::Wrapper

0.16 (2012/03/19)
(ms) [rt.cpan.org 75770] Allow add() with directories, and now preserves
directory permissions.

0.15 (2011/12/20)
(ms) [RT 73046] Randy Stauner submitted a patch to reset the directory if a
write() fails (e.g. because no files have been added).
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST
Expand Up @@ -5,11 +5,14 @@ Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
META.yml Module meta-data (added by MakeMaker)
MYMETA.json
MYMETA.yml
README
t/001Basic.t
t/002Mult.t
t/003Dirs.t
t/004Utf8.t
t/005Cwd.t
t/006DirPerms.t
t/data/bar.tar
t/data/foo.tgz
49 changes: 49 additions & 0 deletions MYMETA.json
@@ -0,0 +1,49 @@
{
"abstract" : "API wrapper around the 'tar' utility",
"author" : [
"Mike Schilli <cpan@perlmeister.com>"
],
"dynamic_config" : 0,
"generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150",
"license" : [
"unknown"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Archive-Tar-Wrapper",
"no_index" : {
"directory" : [
"t",
"inc"
]
},
"prereqs" : {
"build" : {
"requires" : {
"ExtUtils::MakeMaker" : 0
}
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : 0
}
},
"runtime" : {
"requires" : {
"Cwd" : 0,
"File::Temp" : 0,
"IPC::Run" : 0,
"Log::Log4perl" : 0
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"url" : "http://github.com/mschilli/archive-tar-wrapper-perl"
}
},
"version" : "0.16"
}
27 changes: 27 additions & 0 deletions MYMETA.yml
@@ -0,0 +1,27 @@
---
abstract: "API wrapper around the 'tar' utility"
author:
- 'Mike Schilli <cpan@perlmeister.com>'
build_requires:
ExtUtils::MakeMaker: 0
configure_requires:
ExtUtils::MakeMaker: 0
dynamic_config: 0
generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
license: unknown
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Archive-Tar-Wrapper
no_index:
directory:
- t
- inc
requires:
Cwd: 0
File::Temp: 0
IPC::Run: 0
Log::Log4perl: 0
resources:
repository: http://github.com/mschilli/archive-tar-wrapper-perl
version: 0.16
2 changes: 1 addition & 1 deletion README
@@ -1,5 +1,5 @@
######################################################################
Archive::Tar::Wrapper 0.15
Archive::Tar::Wrapper 0.16
######################################################################

NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/Tar/Wrapper.pm
Expand Up @@ -19,7 +19,7 @@ use File::Basename;
use IPC::Run qw(run);
use Cwd;

our $VERSION = "0.15";
our $VERSION = "0.16";

###########################################
sub new {
Expand Down

0 comments on commit 489d170

Please sign in to comment.