From 27a8cf7465ba4afa3e90e0c92e81b4e700dcde14 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 05 2019 15:41:30 +0000 Subject: import perl-Sys-CPU-0.61-14.el8 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42b76ce --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Sys-CPU-0.61.tar.gz diff --git a/.perl-Sys-CPU.metadata b/.perl-Sys-CPU.metadata new file mode 100644 index 0000000..91a7481 --- /dev/null +++ b/.perl-Sys-CPU.metadata @@ -0,0 +1 @@ +3bca409742fd47a06768b9ba9d8f14d73171c8c1 SOURCES/Sys-CPU-0.61.tar.gz diff --git a/SOURCES/Sys-CPU-0.61-Add-support-for-cpu_type-on-ARM-and-AArch64-Linux-pl.patch b/SOURCES/Sys-CPU-0.61-Add-support-for-cpu_type-on-ARM-and-AArch64-Linux-pl.patch new file mode 100644 index 0000000..7f724ee --- /dev/null +++ b/SOURCES/Sys-CPU-0.61-Add-support-for-cpu_type-on-ARM-and-AArch64-Linux-pl.patch @@ -0,0 +1,36 @@ +From f77b2b0c795f5d2ad7a85ae3bfffcf74232836ec Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Tue, 6 May 2014 08:47:16 +0200 +Subject: [PATCH 1/2] Add support for cpu_type on ARM and AArch64 Linux + platforms +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +The CPU type is listed as Processor (upper-cased P) entry. SMP systems +enumerate cores by processor (lower-cased P) entries in addition. +The Processor is always first, so case-insesitive look-up is not +a problem. + +Signed-off-by: Petr Písař +--- + CPU.xs | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/CPU.xs b/CPU.xs +index 236b14d..067c9cb 100644 +--- a/CPU.xs ++++ b/CPU.xs +@@ -395,6 +395,9 @@ CODE: + sysctlbyname("hw.model", value, &len, NULL, 0); + #endif + #ifdef __linux__ ++#if defined __arm__ || defined __aarch64__ ++ value = proc_cpuinfo_field ("Processor"); ++#endif + #if defined __s390__ || defined __s390x__ + value = processor_machine_field (proc_cpuinfo_field ("processor") ); + #endif +-- +1.9.0 + diff --git a/SOURCES/Sys-CPU-0.61-cpu_clock-can-be-undefined-on-an-ARM.patch b/SOURCES/Sys-CPU-0.61-cpu_clock-can-be-undefined-on-an-ARM.patch new file mode 100644 index 0000000..6d2b390 --- /dev/null +++ b/SOURCES/Sys-CPU-0.61-cpu_clock-can-be-undefined-on-an-ARM.patch @@ -0,0 +1,50 @@ +From ceaef15d1391e37623aaf18d6614a4bbf35a3607 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Tue, 6 May 2014 09:12:16 +0200 +Subject: [PATCH 2/2] cpu_clock can be undefined on an ARM +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Some ARM boards do not publish CPU clock. + +Signed-off-by: Petr Písař +--- + Makefile.PL | 1 + + t/Sys-CPU.t | 3 +++ + 2 files changed, 4 insertions(+) + +diff --git a/Makefile.PL b/Makefile.PL +index 910c77a..4e72025 100644 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -13,4 +13,5 @@ WriteMakefile( + 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' + 'INC' => '', # e.g., '-I/usr/include/other' + 'dynamic_lib' => {OTHERLDFLAGS => $extra_arg}, ++ 'BUILD_REQUIRES' => {'Config' => 0 }, + ); +diff --git a/t/Sys-CPU.t b/t/Sys-CPU.t +index 9edaaa3..4246b22 100755 +--- a/t/Sys-CPU.t ++++ b/t/Sys-CPU.t +@@ -8,6 +8,7 @@ + + BEGIN { $| = 1; print "1..4\n"; } + END {print "not ok 1\n" unless $loaded;} ++use Config; + use Sys::CPU; + $loaded = 1; + print "ok 1\n"; +@@ -24,6 +25,8 @@ if (defined($speed)) { + print "ok 3 (CPU Speed : $speed)\n"; + } elsif ( $^O eq 'MSWin32'){ + print "ok 3 (CPU Speed: test skipped on MSWin32)\n"; ++} elsif ($Config{archname} =~ /^(arm|aarch64)/ ) { ++ print "ok 3 (CPU Speed: test skipped on ARM and AArch64)\n"; + } else { + print "not ok 3 (cpu_clock undefined (ok if Win9x))\n"; + } +-- +1.9.3 + diff --git a/SPECS/perl-Sys-CPU.spec b/SPECS/perl-Sys-CPU.spec new file mode 100644 index 0000000..47a5cdf --- /dev/null +++ b/SPECS/perl-Sys-CPU.spec @@ -0,0 +1,153 @@ +Name: perl-Sys-CPU +Version: 0.61 +Release: 14%{?dist} +Summary: Getting CPU information + +# Some code was copied from Unix::Processors, which is LGPLv3 or Artistic 2.0 +# The rest of the code is under the standard Perl license (GPL+ or Artistic). +# See . +License: (GPL+ or Artistic) and (LGPLv3 or Artistic 2.0) +URL: http://search.cpan.org/~mzsanford/Sys-CPU/ +Source0: http://search.cpan.org/CPAN/authors/id/M/MZ/MZSANFORD/Sys-CPU-%{version}.tar.gz +# Support cpu_type on ARM and AArch64, bug #1093266, CPAN RT#95400 +Patch0: Sys-CPU-0.61-Add-support-for-cpu_type-on-ARM-and-AArch64-Linux-pl.patch +# Accept undefined cpu_clock on ARM and AArch64, bug #1093266, CPAN RT#95400 +Patch1: Sys-CPU-0.61-cpu_clock-can-be-undefined-on-an-ARM.patch +BuildRequires: perl-devel +BuildRequires: perl-generators +BuildRequires: perl(Config) +BuildRequires: perl(ExtUtils::MakeMaker) +# Run-time: +BuildRequires: perl(DynaLoader) +BuildRequires: perl(Exporter) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%{?perl_default_filter} + +%description +Perl extension for getting CPU information. +Currently only number of CPU's supported. + +%prep +%setup -q -n Sys-CPU-%{version} +%patch0 -p1 +%patch1 -p1 +sed -i 's/\r//' Changes README + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%check +make test TEST_VERBOSE=1 + +%install +make pure_install DESTDIR=%{buildroot} +find %{buildroot} -type f -name .packlist -exec rm -f {} ';' +find %{buildroot} -type f -name CPU.bs -exec rm -f {} ';' +%{_fixperms} %{buildroot}/* + +%files +%doc Changes README +%{perl_vendorarch}/auto/* +%{perl_vendorarch}/Sys/* +%{_mandir}/man3/*.3* + + +%changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.61-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 0.61-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.61-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sun Jun 04 2017 Jitka Plesnikova - 0.61-11 +- Perl 5.26 rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.61-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat May 14 2016 Jitka Plesnikova - 0.61-9 +- Perl 5.24 rebuild + +* Thu Feb 04 2016 Fedora Release Engineering - 0.61-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 0.61-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Jun 03 2015 Jitka Plesnikova - 0.61-6 +- Perl 5.22 rebuild + +* Wed Aug 27 2014 Jitka Plesnikova - 0.61-5 +- Perl 5.20 rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 0.61-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Thu Jul 17 2014 Petr Pisar - 0.61-3 +- Support cpu_type on ARM and AArch64 (bug #1093266) +- Accept undefined cpu_clock on ARM and AArch64 (bug #1093266) + +* Sat Jun 07 2014 Fedora Release Engineering - 0.61-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Feb 23 2014 Emmanuel Seyman - 0.61-1 +- Update to 0.61 +- Drop unneeded macros +- Fix incorrect dates in changelog +- Disable test 3 (which fails on arm) + +* Sun Aug 04 2013 Fedora Release Engineering - 0.54-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jul 17 2013 Petr Pisar - 0.54-4 +- Perl 5.18 rebuild + +* Fri Apr 19 2013 Shakthi Kannan - 0.54-3 +- Disable cpu_type test + +* Thu Feb 14 2013 Fedora Release Engineering - 0.54-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Nov 13 2012 Petr Pisar - 0.54-1 +- 0.54 bump + +* Mon Nov 05 2012 Petr Pisar - 0.52-2 +- Add support for s390 (CPAN RT #80633) + +* Fri Nov 02 2012 Petr Pisar - 0.52-1 +- 0.52 bump + +* Fri Jul 20 2012 Fedora Release Engineering - 0.51-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 11 2012 Petr Pisar - 0.51-9 +- Perl 5.16 rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 0.51-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Oct 05 2011 Shakthi Kannan - 0.51-7 +- Used perl_vendorarch/auto, perl_vendorarch/Sys in files section. + +* Fri Jun 17 2011 Marcela Mašláňová - 0.51-6 +- Perl mass rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 0.51-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Dec 22 2010 Marcela Maslanova - 0.51-4 +- 661697 rebuild for fixing problems with vendorach/lib + +* Sun Jun 27 2010 Ralf Corsépius 0.51-3 +- Rebuild for perl-5.12.1. + +* Mon May 03 2010 Shakthi Kannan 0.51-2 +- Updated license to (GPL+ or Artistic) and (LGPLv3 or Artistic 2.0) + +* Fri Apr 23 2010 Shakthi Kannan 0.51-1 +- Initial Fedora RPM version