# 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-IO-Socket-Socks Version: 0.74 Release: 17.%{__distinit}%{__distvers} Summary: Provides a way to create socks (4 or 5) client or server # See https://rt.cpan.org/Public/Bug/Display.html?id=44047 for license discussion License: LGPL-2.0-or-later URL: https://metacpan.org/release/IO-Socket-Socks Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-Socket-Socks-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.52 BuildRequires: sed # Module Runtime BuildRequires: perl(Carp) BuildRequires: perl(constant) >= 1.03 BuildRequires: perl(Errno) BuildRequires: perl(Exporter) BuildRequires: perl(IO::Select) BuildRequires: perl(IO::Socket::IP) >= 0.36 BuildRequires: perl(overload) BuildRequires: perl(Socket) >= 1.94 BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite BuildRequires: perl(base) BuildRequires: perl(Cwd) BuildRequires: perl(IO::Socket) BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Time::HiRes) # Runtime %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(constant) >= 1.03 Requires: perl(IO::Socket::IP) >= 0.36 Requires: perl(Socket) >= 1.94 %description IO::Socket::Socks connects to a SOCKS proxy and tells it to open a connection to a remote host/port when the object is created. The object you receive can be used directly as a socket (with IO::Socket interface) for sending and receiving data to and from the remote host. In addition to creating a socks client, this module could be used to create a socks server. %prep %setup -q -n IO-Socket-Socks-%{version} # Don't want executable documentation chmod -c -x examples/*.pl # Fix up shellbangs too sed -i -e 's|^#!/usr/bin/env perl|#!/usr/bin/perl|' examples/*.pl %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 %doc Changes examples/ README %{perl_vendorlib}/IO/ %{_mandir}/man3/IO::Socket::Socks.3* %changelog * Mon Apr 24 2023 Paul Howarth - 0.74-17 - Use SPDX-format license tag - Switch upstream from search.cpan.org to metacpan.org * Mon Feb 19 2018 Paul Howarth - 0.74-2 - Incorporate feedback from package review (#1546648) - Add version requirements for constant and Socket runtime dependencies - Add examples/ as documentation * Fri Feb 16 2018 Paul Howarth - 0.74-1 - Initial RPM version