How to Install and Uninstall libre2-10 Package on openSUSE Leap

Last updated: May 20,2024

1. Install "libre2-10" package

Learn how to install libre2-10 on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install libre2-10

2. Uninstall "libre2-10" package

Please follow the steps below to uninstall libre2-10 on openSUSE Leap:

$ sudo zypper remove libre2-10

3. Information about the libre2-10 package on openSUSE Leap

Information for package libre2-10:
----------------------------------
Repository : Update repository of openSUSE Backports
Name : libre2-10
Version : 20230301-bp155.13.2.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 567.2 KiB
Installed : No
Status : not installed
Source package : re2-20230301-bp155.13.2.1.src
Upstream URL : https://github.com/google/re2
Summary : C++ fast alternative to backtracking RE engines
Description :
RE2 is a C++ library providing a fast, safe, thread-friendly alternative to
backtracking regular expression engines like those used in PCRE, Perl, and
Python.
Backtracking engines are typically full of features and convenient syntactic
sugar but can be forced into taking exponential amounts of time on even small
inputs.
In contrast, RE2 uses automata theory to guarantee that regular expression
searches run in time linear in the size of the input, at the expense of some
missing features (e.g. back references and generalized assertions).