How to Install and Uninstall perl-Devel-Confess Package on openSuSE Tumbleweed

Last updated: July 05,2024

1. Install "perl-Devel-Confess" package

This is a short guide on how to install perl-Devel-Confess on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Devel-Confess

2. Uninstall "perl-Devel-Confess" package

This tutorial shows how to uninstall perl-Devel-Confess on openSuSE Tumbleweed:

$ sudo zypper remove perl-Devel-Confess

3. Information about the perl-Devel-Confess package on openSuSE Tumbleweed

Information for package perl-Devel-Confess:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Devel-Confess
Version : 0.009004-1.26
Arch : noarch
Vendor : openSUSE
Installed Size : 45.2 KiB
Installed : No
Status : not installed
Source package : perl-Devel-Confess-0.009004-1.26.src
Upstream URL : http://search.cpan.org/dist/Devel-Confess/
Summary : Include stack traces on all warnings and errors
Description :
This module is meant as a debugging aid. It can be used to make a script
complain loudly with stack backtraces when 'warn()'ing or 'die()'ing.
Unlike other similar modules (e.g. Carp::Always), stack traces will also be
included when exception objects are thrown.
The stack traces are generated using Carp, and will work for all types of
errors. Carp's 'carp' and 'croak' functions will also be made to include
stack traces.
$ perl -d:Confess -e 'sub f { die "arghh" }; sub g { f }; g'
arghh at -e line 1.
main::f() called at -e line 1
main::g() called at -e line 1
$ perl -d:Confess -w -e 'sub f { $a = shift; @a = @$a };' \
-e 'sub g { f(undef) }; g'
Use of uninitialized value $a in array dereference at -e line 1.
main::f(undef) called at -e line 2
main::g() called at -e line 2
Internally, this is implemented with $SIG{__WARN__} and $SIG{__DIE__}
hooks.
Stack traces are also included if raw non-object references are thrown.
This module is compatible with all perl versions back to 5.6.2, without
additional prerequisites. It contains workarounds for a number of bugs in
the perl interpreter, some of which effect comparatively simpler modules,
like Carp::Always.