File: bump-version-number.pl

package info (click to toggle)
liberror-perl 0.17024-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 256 kB
  • ctags: 61
  • sloc: perl: 1,118; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/perl

use strict;
use warnings;

use File::Find::Object;
use IO::All;

my $tree = File::Find::Object->new({}, 'lib/');

my $version_n = shift(@ARGV);

if (!defined($version_n))
{
    die "Specify version number as an argument! bump-version-number.pl '0.0.1'";
}

sub process_file
{
    # The filename.
    my ($r) = @_;

    my @lines = io->file($r)->getlines();
    foreach (@lines)
    {
        s#(\$VERSION = "|^Version )\d+\.\d+(?:\.\d+)?("|)#$1 . $version_n . $2#e;
    }
    io->file($r)->print(
        @lines
    );
}

while (my $r = $tree->next()) {
    if ($r =~ m{/\.(?:svn|hg|git)\z})
    {
        $tree->prune();
    }
    elsif ($r =~ m{\.pm\z})
    {
        process_file($r);
    }
}