File: bump-version

package info (click to toggle)
libimport-into-perl 1.002004-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 96 kB
  • ctags: 5
  • sloc: perl: 60; makefile: 2
file content (39 lines) | stat: -rwxr-xr-x 906 bytes parent folder | download
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
#!/usr/bin/env perl

use 5.010;
use strict;
use warnings FATAL => 'all';
use autodie;

chomp(my $LATEST = qx(grep '^[0-9]' Changes | head -1 | awk '{print \$1}'));

my @parts = map { m/(\d{1,3})/g } split /\./, $LATEST;
push @parts, 0, 0;

my $OLD_DECIMAL = sprintf('%i.%03i%03i', @parts);

my %bump_part = (major => 0, minor => 1, bugfix => 2);

my $bump_this = 
  $bump_part{$ARGV[0]||'bugfix'}
    // die "no idea which part to bump - $ARGV[0] means nothing to me";

my @new_parts = @parts;

$new_parts[$bump_this]++;

my $NEW_DECIMAL = sprintf('%i.%03i%03i', @new_parts);

my @PM_FILES = ( 'lib/Import/Into.pm' );

foreach my $filename (@PM_FILES) {
  warn "Bumping $OLD_DECIMAL -> $NEW_DECIMAL in $filename\n";

  my $file = do { local (@ARGV, $/) = ($filename); <> };

  $file =~ s/(?<=\$VERSION = ')${\quotemeta $OLD_DECIMAL}/${NEW_DECIMAL}/;

  open my $out, '>', $filename;

  print $out $file;
}