Skip to content

Commit

Permalink
1.48: added META records and tests
Browse files Browse the repository at this point in the history
added META records, such as repository, recommends to Makefile.PL
added META and POD tests
  • Loading branch information
Reini Urban committed Apr 1, 2013
1 parent aa35bfb commit c3b88c9
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 29 deletions.
2 changes: 1 addition & 1 deletion Call/Call.pm
Expand Up @@ -18,7 +18,7 @@ use vars qw($VERSION @ISA @EXPORT) ;

@ISA = qw(Exporter DynaLoader);
@EXPORT = qw( filter_add filter_del filter_read filter_read_exact) ;
$VERSION = "1.47" ;
$VERSION = "1.48" ;

sub filter_read_exact($)
{
Expand Down
2 changes: 1 addition & 1 deletion Call/Call.xs
Expand Up @@ -3,7 +3,7 @@
*
* Author : Paul Marquess
* Date : 2013-03-29 09:04:42 rurban
* Version : 1.47
* Version : 1.48
*
* Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
* This program is free software; you can redistribute it and/or
Expand Down
6 changes: 6 additions & 0 deletions Changes
Expand Up @@ -385,3 +385,9 @@
* Reproduced and fixed RT #41285 test failures with non-english locale
(reported by srezic)

1.48 2013-04-01 rurban
----

* added META records, such as repository, recommends to Makefile.PL

* added META and POD tests
2 changes: 1 addition & 1 deletion Exec/Exec.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use warnings;
use vars qw(@ISA $VERSION) ;
@ISA = qw(DynaLoader);
$VERSION = "1.47" ;
$VERSION = "1.48" ;

bootstrap Filter::Util::Exec ;
1 ;
Expand Down
4 changes: 2 additions & 2 deletions Exec/Exec.xs
Expand Up @@ -2,8 +2,8 @@
* Filename : exec.xs
*
* Author : Paul Marquess
* Date : 2013-03-29 11.47:06 rurban
* Version : 1.47
* Date : 2013-03-29 11.48:06 rurban
* Version : 1.48
*
*/

Expand Down
49 changes: 31 additions & 18 deletions Makefile.PL
Expand Up @@ -46,24 +46,37 @@ if ($] < 5.006001) { oldWarnings(@files) }
# keep the src in the new-warnings style
#else { newWarnings(@files) }

WriteMakefile(
DISTNAME => 'Filter',
NAME => 'Filter::Util::Call',
VERSION_FROM => 'Call/Call.pm',
'linkext' => {LINKTYPE => ''},
'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz',
DIST_DEFAULT => 'tardist'},
($] >= 5.005
? (ABSTRACT => 'Source Filters',
AUTHOR => 'Paul Marquess <pmqs@cpan.org>')
: ()
),

INSTALLDIRS => ($] >= 5.00703 ? 'perl' : 'site'),

((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl', SIGN => 1) : ()),
) ;
WriteMakefile
(
DISTNAME => 'Filter',
NAME => 'Filter::Util::Call',
VERSION_FROM => 'Call/Call.pm',
'linkext' => {LINKTYPE => ''},
'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz',
DIST_DEFAULT => 'tardist'},
($] >= 5.005
? (ABSTRACT => 'Source Filters',
AUTHOR => 'Paul Marquess <pmqs@cpan.org>')
: ()
),

INSTALLDIRS => ($] >= 5.00703 ? 'perl' : 'site'),

((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl', SIGN => 1) : ()),
((ExtUtils::MakeMaker->VERSION() gt '6.46') ?
('META_MERGE' =>
{recommends =>
{
'Filter::Simple' => '0.88',
'Filter::Simple::Compile' => '0.02',
},
resources =>
{
license => 'http://dev.perl.org/licenses/',
repository => 'https://github.com/rurban/Filter',
}}) : ()),
);

sub MY::libscan
{
Expand Down
8 changes: 4 additions & 4 deletions README
@@ -1,8 +1,8 @@
Source Filters

Version 1.47
Version 1.48

2013-03-28 rurban
2013-04-01 rurban

Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
Expand Down Expand Up @@ -60,9 +60,9 @@ systems (at least):
Solaris 2.3 (Sun C Compiler)
irix 5.3
irix 6.x
Windows NT 4.0 (Visual C++ 5.0 and Borland C++ 5.02)
Windows XP (Visual C++ 6.0)

On Windows NT tr and cpp should be really the gnu tools in the path
On Windows tr.exe and cpp.exe should be really the gnu/mingw tools in the path
for the testsuite to pass successfully.

INSTALLATION
Expand Down
2 changes: 1 addition & 1 deletion decrypt/decrypt.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use warnings;
use vars qw(@ISA $VERSION);
@ISA = qw(DynaLoader);
$VERSION = "1.47" ;
$VERSION = "1.48" ;

bootstrap Filter::decrypt ;
1;
Expand Down
2 changes: 1 addition & 1 deletion tee/tee.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use warnings;
use vars qw( @ISA $VERSION);
@ISA = qw(DynaLoader);
$VERSION = "1.47" ;
$VERSION = "1.48" ;

bootstrap Filter::tee ;

Expand Down

0 comments on commit c3b88c9

Please sign in to comment.