How to Install and Uninstall perl-XML-RSS Package on openSuSE Tumbleweed

Last updated: June 25,2024

1. Install "perl-XML-RSS" package

Please follow the guidance below to install perl-XML-RSS on openSuSE Tumbleweed

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

2. Uninstall "perl-XML-RSS" package

Please follow the guidance below to uninstall perl-XML-RSS on openSuSE Tumbleweed:

$ sudo zypper remove perl-XML-RSS

3. Information about the perl-XML-RSS package on openSuSE Tumbleweed

Information for package perl-XML-RSS:
-------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-XML-RSS
Version : 1.630.0-2.1
Arch : noarch
Vendor : openSUSE
Installed Size : 226.0 KiB
Installed : No
Status : not installed
Source package : perl-XML-RSS-1.630.0-2.1.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,
.
.
.
);