How To Install libverto on Fedora 34
Introduction
In this tutorial we learn how to install libverto
on Fedora 34.
What is libverto
libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides ’libverto-module-base’. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future. libverto 0.3.2 1.fc34 i686 21 k libverto-0.3.2-1.fc34.src.rpm fedora Main loop abstraction library https MIT libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides ’libverto-module-base’. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future.
We can use yum
or dnf
to install libverto
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libverto.
Install libverto on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libverto
using dnf
by running the following command:
sudo dnf -y install libverto
Install libverto on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libverto
using yum
by running the following command:
sudo yum -y install libverto
How To Uninstall libverto on Fedora 34
To uninstall only the libverto
package we can use the following command:
sudo dnf remove libverto
libverto Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/7909a631f5052728acc8217dfe4e2473c76c5c
/usr/lib64/libverto.so.1
/usr/lib64/libverto.so.1.0.0
/usr/share/doc/libverto
/usr/share/doc/libverto/AUTHORS
/usr/share/doc/libverto/ChangeLog
/usr/share/doc/libverto/NEWS
/usr/share/doc/libverto/README
/usr/share/licenses/libverto
/usr/share/licenses/libverto/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/4e
/usr/lib/.build-id/4e/1f3f55cadf524f3bad4e3caa7a6bba0f524279
/usr/lib/libverto.so.1
/usr/lib/libverto.so.1.0.0
/usr/share/doc/libverto
/usr/share/doc/libverto/AUTHORS
/usr/share/doc/libverto/ChangeLog
/usr/share/doc/libverto/NEWS
/usr/share/doc/libverto/README
/usr/share/licenses/libverto
/usr/share/licenses/libverto/COPYING
References
- [libverto website](https://github.com/latchset/libverto https://github.com/latchset/libverto)
Summary
In this tutorial we learn how to install libverto
on Fedora 34 using yum and dnf.