How to Install and Uninstall perl-XML-Bare Package on openSUSE Leap

Last updated: June 26,2024

1. Install "perl-XML-Bare" package

Learn how to install perl-XML-Bare on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-XML-Bare

2. Uninstall "perl-XML-Bare" package

Learn how to uninstall perl-XML-Bare on openSUSE Leap:

$ sudo zypper remove perl-XML-Bare

3. Information about the perl-XML-Bare package on openSUSE Leap

Information for package perl-XML-Bare:
--------------------------------------
Repository : Main Repository
Name : perl-XML-Bare
Version : 0.53-1.28
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 94.7 KiB
Installed : No
Status : not installed
Source package : perl-XML-Bare-0.53-1.28.src
Upstream URL : http://search.cpan.org/dist/XML-Bare/
Summary : Minimal XML parser implemented via a C state engine
Description :
This module is a 'Bare' XML parser. It is implemented in C. The parser
itself is a simple state engine that is less than 500 lines of C. The
parser builds a C struct tree from input text. That C struct tree is
converted to a Perl hash by a Perl function that makes basic calls back to
the C to go through the nodes sequentially.
The parser itself will only cease parsing if it encounters tags that are
not closed properly. All other inputs will parse, even invalid inputs. To
allowing checking for validity, a schema checker is included in the module
as well.
The schema format is custom and is meant to be as simple as possible. It is
based loosely around the way multiplicity is handled in Perl regular
expressions.