diff --git a/README.md b/README.md index 92aee01..c534ac2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Net-Telnet +Net::Telnet allows you to make client connections to a TCP port and do network I/O, especially to a port using the TELNET protocol. + diff --git a/perl-Net-Telnet.spec b/perl-Net-Telnet.spec new file mode 100644 index 0000000..35970a6 --- /dev/null +++ b/perl-Net-Telnet.spec @@ -0,0 +1,61 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Net-Telnet +Version: 3.04 +Release: 1mamba +Summary: Net::Telnet - Allows you to make client connections to a TCP port +Group: Development/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://www.cpan.org +Source: http://www.cpan.org/modules/by-module/Net/Net-Telnet-%{version}.tar.gz +License: GPL +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildArch: noarch +BuildRoot: %{_tmppath}/perl-root + +%description +Net::Telnet allows you to make client connections to a TCP port and do network I/O, especially to a port using the TELNET protocol. + +%prep +%setup -q -n Net-Telnet-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Tue Apr 23 2013 Automatic Build System 3.04-1mamba +- automatic version update by autodist + +* Wed Nov 05 2008 Silvan Calarco 3.03-5mamba +- automatic rebuild by autodist + +* Wed Nov 14 2007 Aleph0 3.03-4mamba +- rebuilt + +* Mon Oct 25 2004 Alessandro Ramazzina 3.03-3qilnx +- package created by autospec (rebuilt after SRPM loss)