# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Name: perl-Test-RequiresInternet Version: 0.05 Release: 25.%{__distinit}%{__distvers} Summary: Easily test network connectivity License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-RequiresInternet Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-RequiresInternet-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module BuildRequires: perl(Socket) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Test::More) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description This module is intended to easily test network connectivity before functional tests begin to non-local Internet resources. It does not require any modules beyond those supplied in core Perl. If you do not specify a host/port pair, then the module defaults to using www.google.com on port 80. You may optionally specify the port by its name, as in http or ldap. If you do this, the test module will attempt to look up the port number using getservbyname. If you do specify a host and port, they must be specified in pairs. It is a fatal error to omit one or the other. If the environment variable NO_NETWORK_TESTING is set, then the tests will be skipped without attempting any socket connections. If the sockets cannot connect to the specified hosts and ports, the exception is caught, reported and the tests skipped. %prep %setup -q -n Test-RequiresInternet-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc Changes README %{perl_vendorlib}/Test/ %{_mandir}/man3/Test::RequiresInternet.3* %changelog * Tue May 16 2023 Paul Howarth - 0.05-25 - Use SPDX-format license tag - Use %%license unconditionally * Sat Sep 28 2019 Paul Howarth - 0.05-15 - Switch upstream from search.cpan.org to metacpan.org * Thu Apr 5 2018 Paul Howarth - 0.05-9 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section * Wed Oct 5 2016 Paul Howarth - 0.05-5 - BR: perl-generators where available - Simplify find command using -delete * Tue Jun 16 2015 Paul Howarth - 0.05-2 - Perl 5.22 rebuild * Tue May 26 2015 Paul Howarth - 0.05-1 - Update to 0.05 - Fix test error when NO_NETWORK_TESTING is set (CPAN RT#101996, GH#3) * Thu Jan 29 2015 Paul Howarth - 0.04-1 - Update to 0.04 - Test::More prior to 0.88 (included with perl 5.10.1) does not support the done_testing() function; revert to a test plan to support older perls (GH#2) - Drop upstreamed patch for building with old Test::More versions * Mon Jan 26 2015 Paul Howarth - 0.03-1 - Initial RPM version