How to Install and Uninstall perl-MooseX-GlobRef Package on openSUSE Leap

Last updated: November 07,2024

1. Install "perl-MooseX-GlobRef" package

Please follow the steps below to install perl-MooseX-GlobRef on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-MooseX-GlobRef

2. Uninstall "perl-MooseX-GlobRef" package

Please follow the instructions below to uninstall perl-MooseX-GlobRef on openSUSE Leap:

$ sudo zypper remove perl-MooseX-GlobRef

3. Information about the perl-MooseX-GlobRef package on openSUSE Leap

Information for package perl-MooseX-GlobRef:
--------------------------------------------
Repository : Main Repository
Name : perl-MooseX-GlobRef
Version : 0.0701-bp155.2.8
Arch : noarch
Vendor : openSUSE
Installed Size : 48.0 KiB
Installed : No
Status : not installed
Source package : perl-MooseX-GlobRef-0.0701-bp155.2.8.src
Upstream URL : http://search.cpan.org/dist/MooseX-GlobRef/
Summary : Store a Moose object in glob reference
Description :
This module allows to store Moose object in glob reference of file handle.
The class attributes will be stored in hash slot associated with glob
reference. It allows to create a Moose version of the IO::Handle manpage.
The attributes can be accessed directly with following expression:
my $hashref = \%{*$self};
print $hashref->{key};
or shorter:
print *$self->{key};
but the standard accessors should be used instead:
print $self->key;