Skip to content

Commit

Permalink
Force utf8. Lower perl require and at compile time
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed Sep 17, 2016
1 parent 818031d commit 68ebb3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog for find_cruft

*find_cruft-v3.0.10
Martin Väth <martin at mvath.de>:
- Force utf8 in manpage
- Lower required perl version
- Check perl version at compile time

*find_cruft-v3.0.9
Martin Väth <martin at mvath.de>:
- Work (rudimentary) if no config file is read
Expand Down
8 changes: 5 additions & 3 deletions bin/find_cruft
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env perl
require 5.012;
package FindCruft v3.0.9;
BEGIN { require 5.008 }
our $VERSION = 'v3.0.10';
eval "package FindCruft $VERSION" if($] ge '5.012');

use strict;
use warnings;
Expand All @@ -12,6 +13,8 @@ use File::Spec ();
use Getopt::Long 2.24 ();
#use Pod::Usage ();

=encoding UTF-8
=head1 NAME
find_cruft - find cruft files on Gentoo and similar distributions
Expand Down Expand Up @@ -317,7 +320,6 @@ Martin VE<auml>th E<lt>martin@mvath.deE<gt>

# Static variables:

our $VERSION;
my $name = 'find_cruft';
my $rootdir = File::Spec->rootdir();

Expand Down

0 comments on commit 68ebb3a

Please sign in to comment.