Skip to content

Commit

Permalink
Bump version to 0.360.1 and add github meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas-Man committed Dec 20, 2020
1 parent d01bd51 commit fbdcaa1
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ inc/
nytprof.out
pod2htm*.tmp
pm_to_blib
File-TVShow-Parse-*
File-TVShow-Parse-*.tar.gz
File-TVShow-Organize-*
File-TVShow-Organize-*.tar.gz
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ Revision history for Perl extension Video::File::TVShow::Import.
0.32 Sunday April 7th 2019
- Removed Video::Filename as a requirement.
- Now using my own module File::TVShow::Info to get information from Filename

0.35.1 Wednesday December 9th 2020
- Update Makefile.PL with new meta data to handle rt.cpan.org being sunset.
17 changes: 0 additions & 17 deletions MANIFEST

This file was deleted.

16 changes: 16 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ WriteMakefile(
'Archive::Tar' => 0,

},
(eval { ExtUtils::MakeMaker->VERSION(6.46)} ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/Bas-Man/File-TVShow-Organize.git',
web => 'https://github.com/Bas-Man/File-TVShow-Organize',
},
bugtracker => {
web => 'https://github.com/Bas-Man/File-TVShow-Organize/issues',
},
homepage => 'https://bas-man.github.io',
},
})
: ()
),
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/File/TVShow/Organize.pm', # retrieve abstract from module
AUTHOR => 'Adam Spann <[email protected]>') : ()),
Expand Down
28 changes: 25 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
File-TVShow-Organize version 0.35
File-TVShow-Organize version 0.360.1 / 0.36.1
============================

This module makes it easier to move TV Show files into the correct Show
Expand Down Expand Up @@ -60,7 +60,28 @@ Example Usage:
#end of program


See perldoc for more examples of usage.
SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

perldoc File::TVShow::Organize

You can also look for information at:

GitHub
https://github.com/Bas-Man/File-TVShow-Organize
https://github.com/Bas-Man/File-TVShow-Organize/issues

RT, CPAN's request tracker (report bugs here)
https://rt.cpan.org/NoAuth/Bugs.html?Dist=File-TVShow-Organize

CPAN Ratings
https://cpanratings.perl.org/d/File-TVShow-Organize

Search CPAN
https://metacpan.org/release/File-TVShow-Organize


DEPENDENCIES

Expand All @@ -69,13 +90,14 @@ This module requires these other modules and libraries:
File::TVShow::Info;
File::Path;
File::Copy;
IPC::Cmd;
Carp;

These files are of course accessible through CPAN

COPYRIGHT AND LICENCE

Copyright (C) 2018 by Adam Spann
Copyright (C) 2018-2020 by Adam Spann

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.12.4 or,
Expand Down
4 changes: 2 additions & 2 deletions lib/File/TVShow/Organize.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require Exporter;

our @ISA = qw(Exporter);

our $VERSION = '0.35';
our $VERSION = '0.360.1';

# Preloaded methods go here.

Expand Down Expand Up @@ -416,7 +416,7 @@ matching Show Folder on a media server.
=head1 VERSION
VERSION 0.35
VERSION 0.360.1
=head1 SYNOPSIS
Expand Down
3 changes: 3 additions & 0 deletions t/00-load.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ use Test::More;
plan tests => 1;

BEGIN {
if ($^O eq 'MSWin32') {
BAIL_OUT("OS unsupported");
};
use_ok( 'File::TVShow::Organize' ) || print "Bail out!\n";
}

Expand Down

0 comments on commit fbdcaa1

Please sign in to comment.