2007-03-14 11:36:09 +00:00
|
|
|
#
|
2018-12-06 16:28:37 +00:00
|
|
|
# spec file for package perl-Socket-MsgHdr
|
2007-03-14 11:36:09 +00:00
|
|
|
#
|
2018-12-06 16:28:37 +00:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-03-14 11:36:09 +00:00
|
|
|
#
|
2009-06-18 15:11:52 +00:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-12-06 16:28:37 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-03-14 11:36:09 +00:00
|
|
|
#
|
|
|
|
|
2009-06-18 15:11:52 +00:00
|
|
|
|
2007-03-14 11:36:09 +00:00
|
|
|
Name: perl-Socket-MsgHdr
|
2018-12-06 16:28:37 +00:00
|
|
|
Version: 0.05
|
|
|
|
Release: 0
|
|
|
|
%define cpan_name Socket-MsgHdr
|
|
|
|
Summary: Sendmsg, Recvmsg and Ancillary Data Operations
|
|
|
|
License: GPL-1.0-or-later OR Artistic-1.0
|
2007-03-14 11:36:09 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2018-12-06 16:28:37 +00:00
|
|
|
Url: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/F/FE/FELIPE/%{cpan_name}-%{version}.tar.gz
|
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:17:07 +02:00
|
|
|
Source100: README.md
|
2007-03-14 11:36:09 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-10-19 11:13:04 +00:00
|
|
|
BuildRequires: perl
|
2010-12-03 14:49:59 +00:00
|
|
|
BuildRequires: perl-macros
|
2018-12-06 16:28:37 +00:00
|
|
|
%{perl_requires}
|
2007-03-14 11:36:09 +00:00
|
|
|
|
|
|
|
%description
|
2018-12-06 16:28:37 +00:00
|
|
|
Socket::MsgHdr provides advanced socket messaging operations via sendmsg
|
|
|
|
and recvmsg. Like their C counterparts, these functions accept few
|
|
|
|
parameters, instead stuffing a lot of information into a complex structure.
|
2007-03-14 11:36:09 +00:00
|
|
|
|
2018-12-06 16:28:37 +00:00
|
|
|
This structure describes the message sent or received (buf), the peer on
|
|
|
|
the other end of the socket (name), and ancillary or so-called control
|
|
|
|
information (cmsghdr). This ancillary data may be used for file descriptor
|
|
|
|
passing, IPv6 operations, and a host of implemenation-specific extensions.
|
2007-03-14 11:36:09 +00:00
|
|
|
|
|
|
|
%prep
|
2018-12-06 16:28:37 +00:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2007-03-14 11:36:09 +00:00
|
|
|
|
|
|
|
%build
|
2018-12-06 16:28:37 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
2010-01-12 12:08:18 +00:00
|
|
|
make %{?_smp_mflags}
|
2018-12-06 16:28:37 +00:00
|
|
|
|
|
|
|
%check
|
2007-03-14 11:36:09 +00:00
|
|
|
make test
|
|
|
|
|
|
|
|
%install
|
2018-12-06 16:28:37 +00:00
|
|
|
%perl_make_install
|
2007-03-14 11:36:09 +00:00
|
|
|
%perl_process_packlist
|
2018-12-06 16:28:37 +00:00
|
|
|
%perl_gen_filelist
|
2007-03-14 11:36:09 +00:00
|
|
|
|
2018-12-06 16:28:37 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
|
|
|
%doc Changes CONTRIBUTING README
|
|
|
|
%license LICENSE
|
2007-03-14 11:36:09 +00:00
|
|
|
|
2009-06-18 15:11:52 +00:00
|
|
|
%changelog
|