# 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-FDPass Version: 1.3 Release: 13.%{__distinit}%{__distvers} Summary: Pass a file descriptor over a socket License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-FDPass Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-FDPass-%{version}.tar.gz # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Canary::Stability) BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(XSLoader) # Test Suite BuildRequires: perl(Socket) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(XSLoader) # Avoid provides from private shared objects %{?perl_default_filter} %description This small low-level module only has one purpose: pass a file descriptor to another process, using a (streaming) UNIX domain socket (on POSIX systems) or any (streaming) socket (on WIN32 systems). The ability to pass file descriptors on Windows is currently the unique selling point of this module. Have I mentioned that it is really small, too? %prep %setup -q -n IO-FDPass-%{version} %build PERL_CANARY_STABILITY_NOPROMPT=1 perl Makefile.PL \ INSTALLDIRS=vendor OPTIMIZE="%{optflags}" make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete find %{buildroot} -type f -name '*.bs' -empty -delete %{_fixperms} -c %{buildroot} %check make test %files %license COPYING %doc Changes README %{perl_vendorarch}/auto/IO/ %{perl_vendorarch}/IO/ %{_mandir}/man3/IO::FDPass.3* %changelog * Thu Jun 13 2024 Paul Howarth - 1.3-13 - Perl 5.40 rebuild * Tue Jul 11 2023 Paul Howarth - 1.3-9 - Perl 5.38 rebuild * Sun Apr 23 2023 Paul Howarth - 1.3-8 - Use SPDX-format license tag * Wed Jun 1 2022 Paul Howarth - 1.3-6 - Perl 5.36 rebuild * Fri May 21 2021 Paul Howarth - 1.3-3 - Perl 5.34 rebuild * Mon Jan 4 2021 Paul Howarth - 1.3-1 - Update to 1.3 - Do not leak memory on unsuccessful recv - Use %%license unconditionally * Thu Jun 25 2020 Paul Howarth - 1.2-14 - Perl 5.32 rebuild * Fri May 31 2019 Paul Howarth - 1.2-10 - Perl 5.30 rebuild * Wed Jun 27 2018 Paul Howarth - 1.2-7 - Perl 5.28 rebuild * Mon Aug 7 2017 Paul Howarth - 1.2-5 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Mon Jun 12 2017 Paul Howarth - 1.2-3 - 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 - BR: perl-devel unconditionally * Sun Sep 25 2016 Paul Howarth - 1.2-1 - Update to 1.2 - Compatibility macros were still using C++ syntax, fortunately only affecting the Solaris platform * Thu Sep 22 2016 Paul Howarth - 1.1-3 - Incorporate package review feedback (#1378014) - Silence rpmlint warning about capitalization of UNIX in %%description - Quieten interaction with Canary::Stability during build process * Sat Sep 10 2016 Paul Howarth - 1.1-1 - Initial RPM build