Compare commits
5 Commits
Author | SHA256 | Date | |
---|---|---|---|
4de6858032 | |||
7fa51c20e2 | |||
b4833f43ae | |||
627a7e9a13 | |||
90f3a734fe |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d016019a818313e704464f280cf641ef60e8771d07791b59b99e17a1ec801fa9
|
|
||||||
size 33924
|
|
3
Dumbbench-0.505.tar.gz
Normal file
3
Dumbbench-0.505.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ed6f0525fe921382cc219d5a71abeedcedb4f2b63a43d78c0f65f80ac9b11ffd
|
||||||
|
size 34804
|
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
## Build Results
|
||||||
|
|
||||||
|
Current state of perl in openSUSE:Factory is
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
The current state of perl in the devel project build (devel:languages:perl)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
@@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 16 05:33:24 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.505.0 (0.505)
|
||||||
|
see /usr/share/doc/packages/perl-Dumbbench/Changes
|
||||||
|
|
||||||
|
0.505 2024-10-15T17:43:05Z
|
||||||
|
* fix a Pod problem
|
||||||
|
* no other changes
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 10 05:29:29 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.504.0 (0.504)
|
||||||
|
see /usr/share/doc/packages/perl-Dumbbench/Changes
|
||||||
|
|
||||||
|
0.504 2024-07-09T15:31:31Z
|
||||||
|
* use the 'name' parameter in examples, from Alceu Rodrigues de Freitas Junior (#21)
|
||||||
|
* make the SOOT features depend on the availability of SOOT, in the xt/ tests
|
||||||
|
* make a couple of xt/ tests TODO since comparative timings are too close to be
|
||||||
|
compared stably.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 22 03:08:18 UTC 2022 - Tina Müller <timueller+perl@suse.de>
|
Fri Apr 22 03:08:18 UTC 2022 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Dumbbench
|
# spec file for package perl-Dumbbench
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,13 +18,16 @@
|
|||||||
|
|
||||||
%define cpan_name Dumbbench
|
%define cpan_name Dumbbench
|
||||||
Name: perl-Dumbbench
|
Name: perl-Dumbbench
|
||||||
Version: 0.503
|
Version: 0.505.0
|
||||||
Release: 0
|
Release: 0
|
||||||
|
# 0.505 -> normalize -> 0.505.0
|
||||||
|
%define cpan_version 0.505
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: More reliable benchmarking with the least amount of thinking
|
Summary: More reliable benchmarking with the least amount of thinking
|
||||||
URL: https://metacpan.org/release/%{cpan_name}
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
|
Source100: README.md
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
@@ -44,6 +47,17 @@ Requires: perl(Number::WithError) >= 1.00
|
|||||||
Requires: perl(Params::Util)
|
Requires: perl(Params::Util)
|
||||||
Requires: perl(Statistics::CaseResampling) >= 0.06
|
Requires: perl(Statistics::CaseResampling) >= 0.06
|
||||||
Requires: perl(parent)
|
Requires: perl(parent)
|
||||||
|
Provides: perl(Benchmark::Dumb) = %{version}
|
||||||
|
Provides: perl(Dumbbench) = %{version}
|
||||||
|
Provides: perl(Dumbbench::BoxPlot)
|
||||||
|
Provides: perl(Dumbbench::CPUFrequencyPinner)
|
||||||
|
Provides: perl(Dumbbench::Instance)
|
||||||
|
Provides: perl(Dumbbench::Instance::Cmd)
|
||||||
|
Provides: perl(Dumbbench::Instance::PerlEval)
|
||||||
|
Provides: perl(Dumbbench::Instance::PerlSub)
|
||||||
|
Provides: perl(Dumbbench::Result)
|
||||||
|
Provides: perl(Dumbbench::Stats)
|
||||||
|
%undefine __perllib_provides
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -70,7 +84,7 @@ Please note that 'Dumbbench' works entirely with wallclock time as reported
|
|||||||
by 'Time::HiRes'' 'time()' function.
|
by 'Time::HiRes'' 'time()' function.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
Reference in New Issue
Block a user