From 29fcaaefab1f6469ef7723aacd16c32bb081c09a Mon Sep 17 00:00:00 2001 From: Brian Read Date: Fri, 14 Jul 2023 16:01:16 +0100 Subject: [PATCH] initial commit of file from CVS for perl-WWW-Automate on Fri 14 Jul 16:01:16 BST 2023 --- .gitattributes | 1 + .gitignore | 3 ++ Makefile | 19 ++++++++++++ README.md | 10 ++++++- WWW-Automate-0.21.tar.gz | 3 ++ contriborbase | 1 + perl-WWW-Automate.spec | 65 ++++++++++++++++++++++++++++++++++++++++ 7 files changed, 101 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 WWW-Automate-0.21.tar.gz create mode 100644 contriborbase create mode 100644 perl-WWW-Automate.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f087b42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.tar.gz filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1534ba5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.rpm +*.log +*spec-20* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f376bcb --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +NAME := perl-WWW-Automate +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/README.md b/README.md index 62aa624..6119248 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # perl-WWW-Automate -3rd Party (Maintained by Koozali) git repo for perl-WWW-Automate smeserver \ No newline at end of file +3rd Party (Maintained by Koozali) git repo for perl-WWW-Automate smeserver + +## Description + +
*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.* +*Once it has been checked, then this comment will be deleted* +
+ +Perl-WWW-Automate is a software package that provides a set of tools for automating web applications and websites. It allows users to run scripts to perform actions such as automating logins, filling out forms, and clicking on web links. It can also be used to automate tests for web applications by automatically interacting with a website in order to perform certain tasks. diff --git a/WWW-Automate-0.21.tar.gz b/WWW-Automate-0.21.tar.gz new file mode 100644 index 0000000..533da90 --- /dev/null +++ b/WWW-Automate-0.21.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3887d13b875ec2bba5c644991579805c47e358126abee231f1750d30400f4d79 +size 5503 diff --git a/contriborbase b/contriborbase new file mode 100644 index 0000000..ef36a67 --- /dev/null +++ b/contriborbase @@ -0,0 +1 @@ +sme10 diff --git a/perl-WWW-Automate.spec b/perl-WWW-Automate.spec new file mode 100644 index 0000000..b3ebb2a --- /dev/null +++ b/perl-WWW-Automate.spec @@ -0,0 +1,65 @@ +Name: perl-WWW-Automate +Version: 0.21 +Release: 1%{?dist} +Summary: Automate interaction with websites +License: Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/WWW-Automate/ +Source0: http://www.cpan.org/authors/id/S/SK/SKUD/WWW-Automate-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl(Clone) >= 0.13 +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(ExtUtils::ParseXS) +BuildRequires: perl(ExtUtils::Manifest) +BuildRequires: perl(HTML::TokeParser) >= 2.2 +BuildRequires: perl(HTTP::Request) >= 1.2 +BuildRequires: perl(LWP::UserAgent) >= 1.8 +BuildRequires: perl(Test::More) >= 0.34 +Requires: perl(Clone) >= 0.13 +Requires: perl(HTML::TokeParser) >= 2.2 +Requires: perl(HTTP::Request) >= 1.2 +Requires: perl(LWP::UserAgent) >= 1.8 +Requires: perl(Test::More) >= 0.34 +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +This module is intended to help you automate interaction with a website. It +bears a not-very-remarkable outwards resemblance to WWW::Chat, on which it +is based. The main difference between this module and WWW::Chat is that +WWW::Chat requires a pre-processing stage before you can run your script, +whereas WWW::Automate does not. + +%prep +%setup -q -n WWW-Automate-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT + +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc Changes +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Fri Jul 14 2023 BogusDateBot +- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday, + by assuming the date is correct and changing the weekday. + +* Thu Mar 17 2016 Daniel Berteaud - 0.21-1 +- First build using cpanspec [SME: 9312]