From 9dcb7c5b1e9ea4098b67035786be48b468c69ae6 Mon Sep 17 00:00:00 2001 From: Brian Read Date: Fri, 14 Jul 2023 13:58:45 +0100 Subject: [PATCH] initial commit of file from CVS for perl-IO-Socket-IP on Fri 14 Jul 13:58:45 BST 2023 --- .gitattributes | 1 + .gitignore | 3 +++ IO-Socket-IP-0.37.tar.gz | 3 +++ Makefile | 20 ++++++++++++++ README.md | 10 ++++++- contriborbase | 1 + perl-IO-Socket-IP.spec | 57 ++++++++++++++++++++++++++++++++++++++++ 7 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 IO-Socket-IP-0.37.tar.gz create mode 100644 Makefile create mode 100644 contriborbase create mode 100644 perl-IO-Socket-IP.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/IO-Socket-IP-0.37.tar.gz b/IO-Socket-IP-0.37.tar.gz new file mode 100644 index 0000000..1308df8 --- /dev/null +++ b/IO-Socket-IP-0.37.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2adc5f0b641d41f662b4d99c0795780c62f9af9119884d053265fc8858ae6f7b +size 44282 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b707cc2 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# Makefile for source rpm: perl-IO-Socket-IP +NAME := perl-IO-Socket-IP +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 e434217..4a5f2fb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # perl-IO-Socket-IP -3rd Party (Maintained by Koozali) git repo for perl-IO-Socket-IP smeserver \ No newline at end of file +3rd Party (Maintained by Koozali) git repo for perl-IO-Socket-IP 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-IO-Socket-IP is a software package that provides support for the TCP/IP protocol family. It provides an object-oriented interface for creating and connecting to TCP/IP sockets, and provides an interface for creating, sending and receiving data over these sockets. It also provides support for IPv4 and IPv6 addressing. 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-IO-Socket-IP.spec b/perl-IO-Socket-IP.spec new file mode 100644 index 0000000..17cbd03 --- /dev/null +++ b/perl-IO-Socket-IP.spec @@ -0,0 +1,57 @@ +Name: perl-IO-Socket-IP +Version: 0.37 +Release: 1%{?dist} +Summary: Family-neutral IP socket supporting both IPv4 and IPv6 +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/IO-Socket-IP/ +Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/IO-Socket-IP-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl(Module::Build) +BuildRequires: perl(Socket) >= 1.97 +BuildRequires: perl(Test::More) >= 0.88 +Requires: perl(Socket) >= 1.97 +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +This module provides a protocol-independent way to use IPv4 and IPv6 +sockets, intended as a replacement for IO::Socket::INET. Most constructor +arguments and methods are provided in a backward-compatible way. For a +list of known differences, see the IO::Socket::INET INCOMPATIBILITES +section below. + +%prep +%setup -q -n IO-Socket-IP-%{version} + +%build +%{__perl} Build.PL installdirs=vendor +./Build + +%install +rm -rf $RPM_BUILD_ROOT + +./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +./Build test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc Changes examples LICENSE META.json README +%{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. + +* Tue Feb 09 2016 Daniel Berteaud - 0.37-1 +- First build using cpanspec