Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
2ed3649a50 | |||
de8e40c8a2 | |||
db6ad4d076 |
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 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:851c43bd6f10d32289522a50c6a209c3b246cfd3eb566773e6861eda04a49087
|
|
||||||
size 58153
|
|
3
Statistics-CaseResampling-0.16.tar.gz
Normal file
3
Statistics-CaseResampling-0.16.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:91357d42b6bf266e5f378365020953753a9bbf9b99f96c4b9ab25376a54a5b94
|
||||||
|
size 58759
|
@@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 20 05:36:17 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.160.0 (0.16)
|
||||||
|
see /usr/share/doc/packages/perl-Statistics-CaseResampling/Changes
|
||||||
|
|
||||||
|
0.16 Mon May 19 12:37:00 2025
|
||||||
|
- Fix XS bug that made the build break under modern (stricter)
|
||||||
|
ExtUtils::ParseXS. (Thanks Dave!)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 12 10:36:04 UTC 2018 - Stephan Kulow <coolo@suse.com>
|
Wed Sep 12 10:36:04 UTC 2018 - Stephan Kulow <coolo@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Statistics-CaseResampling
|
# spec file for package perl-Statistics-CaseResampling
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2025 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
|
||||||
@@ -12,22 +12,25 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Statistics-CaseResampling
|
|
||||||
Version: 0.15
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name Statistics-CaseResampling
|
%define cpan_name Statistics-CaseResampling
|
||||||
|
Name: perl-Statistics-CaseResampling
|
||||||
|
Version: 0.160.0
|
||||||
|
Release: 0
|
||||||
|
# 0.16 -> normalize -> 0.160.0
|
||||||
|
%define cpan_version 0.16
|
||||||
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: Efficient resampling and calculation of medians with confidence intervals
|
Summary: Efficient resampling and calculation of medians with confidence intervals
|
||||||
License: GPL-1.0-or-later OR Artistic-1.0
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Group: Development/Libraries/Perl
|
Source0: https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Url: http://search.cpan.org/dist/Statistics-CaseResampling/
|
Source100: README.md
|
||||||
Source0: https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{version}.tar.gz
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
Provides: perl(Statistics::CaseResampling) = %{version}
|
||||||
|
%undefine __perllib_provides
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -45,14 +48,14 @@ selection) algorithm that works in linear time as opposed to the trivial
|
|||||||
implementation that requires 'O(n*log(n))'.
|
implementation that requires 'O(n*log(n))'.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@@ -60,7 +63,6 @@ implementation that requires 'O(n*log(n))'.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%doc Changes RdGen.xs.inc README
|
%doc Changes RdGen.xs.inc README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user