openbsd-ports/devel/quirks/files/Quirks.pm

136 lines
3.6 KiB
Perl
Raw Normal View History

#! /usr/bin/perl
# ex:ts=8 sw=4:
2009-12-05 14:56:58 -05:00
# $OpenBSD: Quirks.pm,v 1.7 2009/12/05 19:56:58 espie Exp $
#
# Copyright (c) 2009 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use warnings;
use OpenBSD::PackageName;
package OpenBSD::Quirks;
sub new
{
my ($class, $version) = @_;
2009-12-05 06:19:08 -05:00
if ($version == 1) {
return OpenBSD::Quirks1->new;
} else {
return undef;
}
}
2009-12-05 06:19:08 -05:00
package OpenBSD::Quirks1;
use Config;
sub new
{
my $class = shift;
bless {}, $class;
}
# ->tweak_list(\@l, $state):
# allows Quirks to do anything to the list of packages to install,
# if something is needed. Usually, it won't do anything
sub tweak_list
{
}
# packages to remove
# stem => existing file hash table
# if file exists, then it's now in base and we can remove it.
my $p5a = $Config{archlib};
my $p5 = "/usr/libdata/perl5";
my $base_exceptions = {
# very old
'pkgconfig' => "/usr/bin/pkg-config",
'expat' => "/usr/lib/libexpat.a",
'cwm' => "/usr/X11R6/bin/cwm",
# 4.5 stuff
'p5-version' => "$p5/version.pm",
'p5-Archive-Tar' => "$p5/Archive/Tar.pm",
'p5-Compress-Zlib' => "$p5a/Compress/Zlib.pm",
'p5-Compress-Raw-Zlib' => "$p5a/Compress/Raw/Zlib.pm",
'p5-IO-Compress-Base' => "$p5a/IO/Compress/Base.pm",
'p5-IO-Compress-Zlib' => "$p5a/IO/Compress/Zlib.pm",
'p5-IO-Zlib' => "$p5/IO/Zlib.pm",
'p5-ExtUtils-CBuilder' => "$p5/ExtUtils/CBuilder.pm",
'p5-ExtUtils-ParseXS' => "$p5/ExtUtils/ParseXS.pm",
'p5-Locale-Maketext-Simple' => "$p5/Locale/Maketext/Simple.pm",
'p5-Module-Build' => "$p5/Module/Build.pm",
'p5-Module-CoreList' => "$p5/Module/CoreList.pm",
'p5-Module-Load' => "$p5/Module/Load.pm",
'p5-Module-Loaded' => "$p5/Module/Loaded.pm",
'p5-Module-Pluggable' => "$p5/Module/Pluggable.pm",
'p5-Time-Piece' => "$p5a/Time/Piece.pm",
'p5-Digest-SHA' => "$p5a/Digest/SHA.pm",
'p5-Pod-Escapes' => "$p5/Escapes.pm",
'p5-Pod-Simple' => "$p5/Pod/Simple.pm",
'xcompmgr' => "/usr/X11R6/bin/xcompmgr",
# 4.6 stuff
2009-12-05 06:28:48 -05:00
'tmux' => "/usr/bin/tmux",
};
2009-12-05 06:19:08 -05:00
my $stem_extensions = {
# 4.6snap
2009-12-05 07:28:26 -05:00
'thunar-vcs-plugin' => 'thunar-vcs',
2009-12-05 14:56:58 -05:00
'fam' => 'libgamin',
2009-12-05 06:19:08 -05:00
};
# ->is_base_system($handle, $state):
# checks whether an existing handle is now part of the base system
# and thus no longer needed.
sub is_base_system
{
my ($self, $handle, $state) = @_;
my $stem = OpenBSD::PackageName::splitstem($handle->pkgname);
my $test = $base_exceptions->{$stem};
if (defined $test) {
if (-e $test) {
$state->say("Removing ", $handle->pkgname,
" (part of base system now)");
return 1;
} else {
$state->say("Not removing ", $handle->pkgname,
", ", $test, " not found");
}
} else {
return 0;
}
}
2009-12-05 06:19:08 -05:00
# ->tweak_search(\@s, $handle, $state):
# tweaks the normal search for a given handle, in case (for instance)
# of a stem name change.
2009-12-05 06:19:08 -05:00
sub tweak_search
{
2009-12-05 06:19:08 -05:00
my ($self, $l, $handle, $state) = @_;
if (@$l != 1 || !$l->[0]->can("add_stem")) {
return;
}
my $stem = OpenBSD::PackageName::splitstem($handle->pkgname);
if (defined $stem_extensions->{$stem}) {
$l->[0]->add_stem($stem_extensions->{$stem});
}
}
2009-12-05 06:19:08 -05:00
1;