1 # Packages::CommonCode - random utility functions
3 # Copyright (C) 2006 Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
4 # Copyright (C) 2006-2007 Frank Lichtenheld
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 1 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 package Packages::CommonCode;
30 our %EXPORT_TAGS = ( 'all' => [ qw(parse_control_par activate activate_dir mkdirp) ] );
31 our @EXPORT_OK = @{$EXPORT_TAGS{all}};
33 sub parse_control_par {
39 while (/^(\S+):\s*(.*)\s*$/mg) {
40 my ($key, $value) = ($1, $2);
41 $value =~ s/\377/\n /g;
42 $key =~ tr [A-Z] [a-z];
52 rename("${file}.new", $file)
53 or die "rename ${file}.new $file failed: $!\n";
59 my $tmp = "${dir}.old";
68 -d $dir || mkpath($dir);