From 1c4657f642f2b2d2bbe068298e6c088bcb6fde25 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Mon, 12 Jun 2017 21:40:02 +0200 Subject: [PATCH] Convert to standard perl dist structure --- Build.PL | 14 ++++++++++++++ MANIFEST | 18 ++++++++++++++++++ {Rss2Html => lib/Rss2Html}/Feed.pm | 0 {Rss2Html => lib/Rss2Html}/FeedList.pm | 0 {Rss2Html => lib/Rss2Html}/Scrubber.pm | 0 5 files changed, 32 insertions(+) create mode 100644 Build.PL create mode 100644 MANIFEST rename {Rss2Html => lib/Rss2Html}/Feed.pm (100%) rename {Rss2Html => lib/Rss2Html}/FeedList.pm (100%) rename {Rss2Html => lib/Rss2Html}/Scrubber.pm (100%) diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..7668c1d --- /dev/null +++ b/Build.PL @@ -0,0 +1,14 @@ +use Module::Build; +my $version = '0.001'; +my $build = Module::Build->new + ( + module_name => 'Rss2Html', + dist_name => 'Rss2Html', + dist_author => 'Peter J. Holzer ', + dist_abstract => 'A simple RSS and Atom feed reader', + dist_version => $version, + script_files => [ + ], + ); +$build->create_build_script; + diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..8d9c77e --- /dev/null +++ b/MANIFEST @@ -0,0 +1,18 @@ +.htaccess +Build.PL +do_cron +feed.cgi +index.cgi +lib/Rss2Html/Feed.pm +lib/Rss2Html/FeedList.pm +lib/Rss2Html/Scrubber.pm +log.conf +MANIFEST This list of files +Notes +plot_intervals +plot_stats +rss2html.css +scrubber_test +update2 +update3 +update_frequency diff --git a/Rss2Html/Feed.pm b/lib/Rss2Html/Feed.pm similarity index 100% rename from Rss2Html/Feed.pm rename to lib/Rss2Html/Feed.pm diff --git a/Rss2Html/FeedList.pm b/lib/Rss2Html/FeedList.pm similarity index 100% rename from Rss2Html/FeedList.pm rename to lib/Rss2Html/FeedList.pm diff --git a/Rss2Html/Scrubber.pm b/lib/Rss2Html/Scrubber.pm similarity index 100% rename from Rss2Html/Scrubber.pm rename to lib/Rss2Html/Scrubber.pm