How to Install and Uninstall perl-B-Hooks-OP-Annotation Package on openSuSE Tumbleweed

Last updated: April 29,2024

1. Install "perl-B-Hooks-OP-Annotation" package

In this section, we are going to explain the necessary steps to install perl-B-Hooks-OP-Annotation on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-B-Hooks-OP-Annotation

2. Uninstall "perl-B-Hooks-OP-Annotation" package

Please follow the steps below to uninstall perl-B-Hooks-OP-Annotation on openSuSE Tumbleweed:

$ sudo zypper remove perl-B-Hooks-OP-Annotation

3. Information about the perl-B-Hooks-OP-Annotation package on openSuSE Tumbleweed

Information for package perl-B-Hooks-OP-Annotation:
---------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-B-Hooks-OP-Annotation
Version : 0.44-3.42
Arch : x86_64
Vendor : openSUSE
Installed Size : 27.5 KiB
Installed : No
Status : not installed
Source package : perl-B-Hooks-OP-Annotation-0.44-3.42.src
Upstream URL : http://search.cpan.org/dist/B-Hooks-OP-Annotation/
Summary : annotate and delegate hooked OPs
Description :
This module provides a way for XS code that hijacks OP 'op_ppaddr'
functions to delegate to (or restore) the previous functions, whether
assigned by perl or by another module. Typically this should be used in
conjunction with B::Hooks::OP::Check.
'B::Hooks::OP::Annotation' makes its types and functions available to XS
code by means of ExtUtils::Depends. Modules that wish to use these exports
in their XS code should 'use B::OP::Hooks::Annotation' in the Perl module
that loads the XS, and include something like the following in their
Makefile.PL:
use ExtUtils::MakeMaker;
use ExtUtils::Depends;
our %XS_PREREQUISITES = (
'B::Hooks::OP::Annotation' => '0.44',
'B::Hooks::OP::Check' => '0.15',
);
our %XS_DEPENDENCIES = ExtUtils::Depends->new(
'Your::XS::Module',
keys(%XS_PREREQUISITES)
)->get_makefile_vars();
WriteMakefile(
NAME => 'Your::XS::Module',
VERSION_FROM => 'lib/Your/XS/Module.pm',
PREREQ_PM => {
'B::Hooks::EndOfScope' => '0.07',
%XS_PREREQUISITES
},
($ExtUtils::MakeMaker::VERSION >= 6.46 ?
(META_MERGE => {
configure_requires => {
'ExtUtils::Depends' => '0.301',
%XS_PREREQUISITES
}})
: ()
),
%XS_DEPENDENCIES,
);