From cf38531655e57bc41a8cea05f88af232e629e674 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 09:39:19 +0100 Subject: [PATCH] perl 5.16 mass rebuild [release 1.4-3mamba;Tue Nov 13 2012] --- README.md | 2 + perl-Sys-Hostname-Long-no_win32.patch | 53 ++++++++++++++++++++++++ perl-Sys-Hostname-Long.spec | 59 +++++++++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 perl-Sys-Hostname-Long-no_win32.patch create mode 100644 perl-Sys-Hostname-Long.spec diff --git a/README.md b/README.md index cd84005..2e36ece 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Sys-Hostname-Long +Sys::Hostname::Long - Try every conceivable way to get full hostname. + diff --git a/perl-Sys-Hostname-Long-no_win32.patch b/perl-Sys-Hostname-Long-no_win32.patch new file mode 100644 index 0000000..ca6a0ca --- /dev/null +++ b/perl-Sys-Hostname-Long-no_win32.patch @@ -0,0 +1,53 @@ +diff -Nru Sys-Hostname-Long-1.4.orig/lib/Sys/Hostname/Long.pm Sys-Hostname-Long-1.4/lib/Sys/Hostname/Long.pm +--- Sys-Hostname-Long-1.4.orig/lib/Sys/Hostname/Long.pm 2005-06-26 00:34:10.000000000 +0200 ++++ Sys-Hostname-Long-1.4/lib/Sys/Hostname/Long.pm 2007-05-09 12:11:41.000000000 +0200 +@@ -33,17 +33,6 @@ + }, + }, + +- 'win32_registry1' => { +- 'title' => 'WIN32 Registry', +- 'description' => 'LMachine/System/CurrentControlSet/Service/VxD/MSTCP/Domain', +- 'exec' => sub { +- return eval q{ +- use Win32::TieRegistry ( TiedHash => '%RegistryHash' ); +- $RegistryHash{'LMachine'}{'System'}{'CurrentControlSet'}{'Services'}{'VxD'}{'MSTCP'}{'Domain'}; +- }; +- }, +- }, +- + 'uname' => { + 'title' => 'POSIX::unae', + 'description' => '', +@@ -56,18 +45,6 @@ + }, + }, + +- # XXX This is the same as above - what happened to the other one !!! +- 'win32_registry2' => { +- 'title' => 'WIN32 Registry', +- 'description' => 'LMachine/System/CurrentControlSet/Services/VxD/MSTCP/Domain', +- 'exec' => sub { +- return eval q{ +- use Win32::TieRegistry ( TiedHash => '%RegistryHash' ); +- $RegistryHash{'LMachine'}{'System'}{'CurrentControlSet'}{'Services'}{'VxD'}{'MSTCP'}{'Domain'}; +- }; +- }, +- }, +- + 'exec_hostname_fqdn' => { + 'title' => 'Execute "hostname --fqdn"', + 'description' => '', +@@ -171,12 +148,6 @@ + } elsif ($^O eq 'IRIX') { # XXX Patter match string ! + $hostlong = dispatcher('exec_hostname'); + +- } elsif ($^O eq 'cygwin') { +- $hostlong = dispatcher('win32_registry1'); +- +- } elsif ($^O eq 'MSWin32') { +- $hostlong = dispatcher('win32_registry2'); +- + } elsif ($^O =~ m/(bsd|nto)/i) { + $hostlong = dispatcher('exec_hostname'); + diff --git a/perl-Sys-Hostname-Long.spec b/perl-Sys-Hostname-Long.spec new file mode 100644 index 0000000..01ae425 --- /dev/null +++ b/perl-Sys-Hostname-Long.spec @@ -0,0 +1,59 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Sys-Hostname-Long +Version: 1.4 +Release: 3mamba +Summary: Sys::Hostname::Long - Try every conceivable way to get full hostname +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/S/SC/SCOTT/Sys-Hostname-Long-%{version}.tar.gz +Patch0: %{name}-no_win32.patch +License: BSD +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Sys::Hostname::Long - Try every conceivable way to get full hostname. + +%prep +%setup -q -n Sys-Hostname-Long-%{version} +%patch0 -p1 + +%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 Nov 13 2012 Silvan Calarco 1.4-3mamba +- perl 5.16 mass rebuild + +* Wed Nov 05 2008 Silvan Calarco 1.4-2mamba +- automatic rebuild by autodist + +* Wed May 09 2007 Silvan Calarco 1.4-1mamba +- package created by autospec