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

Last updated: September 28,2024

1. Install "perl-XML-RSS" package

This guide covers the steps necessary to install perl-XML-RSS on openSUSE Leap

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

2. Uninstall "perl-XML-RSS" package

Please follow the step by step instructions below to uninstall perl-XML-RSS on openSUSE Leap:

$ sudo zypper remove perl-XML-RSS

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

Information for package perl-XML-RSS:
-------------------------------------
Repository : Main Repository
Name : perl-XML-RSS
Version : 1.62-bp155.1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 232.7 KiB
Installed : No
Status : not installed
Source package : perl-XML-RSS-1.62-bp155.1.4.src
Upstream URL : https://metacpan.org/release/XML-RSS
Summary : Creates and updates RSS files
Description :
This module provides a basic framework for creating and maintaining RDF
Site Summary (RSS) files. This distribution also contains many examples
that allow you to generate HTML from an RSS, convert between 0.9, 0.91,
1.0, and 2.0 version, and other nifty things. This might be helpful if you
want to include news feeds on your Web site from sources like Slashdot and
Freshmeat or if you want to syndicate your own content.
XML::RSS currently supports versions at http://www.rssboard.org/rss-0-9-0,
at http://www.rssboard.org/rss-0-9-1, at http://web.resource.org/rss/1.0/,
and at http://www.rssboard.org/rss-2-0 of RSS.
RSS was originally developed by Netscape as the format for Netscape
Netcenter channels, however, many Web sites have since adopted it as a
simple syndication format. With the advent of RSS 1.0, users are now able
to syndication many different kinds of content including news headlines,
threaded messages, products catalogs, etc.
*Note:* In order to parse and generate dates (such as 'pubDate' and
'dc:date') it is recommended to use DateTime::Format::Mail and
DateTime::Format::W3CDTF , which is what XML::RSS uses internally and
requires. It should also be possible to pass DateTime objects which will be
formatted accordingly. E.g:
use DateTime ();
my $dt = DateTime->from_epoch(epoch => 1_500_000_000);
$rss->channel(
pubDate => $dt,
.
.
.
);