2021-02-19 16:03:42 +00:00
|
|
|
# Run extra tests
|
2023-06-13 09:10:19 +00:00
|
|
|
%if ! (0%{?rhel})
|
2021-02-19 16:03:42 +00:00
|
|
|
%bcond_without perl_List_MoreUtils_XS_enables_extra_test
|
2023-06-13 09:10:19 +00:00
|
|
|
%else
|
|
|
|
%bcond_with perl_List_MoreUtils_XS_enables_extra_test
|
|
|
|
%endif
|
2021-02-19 16:03:42 +00:00
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
Name: perl-List-MoreUtils-XS
|
2020-10-21 13:28:29 +00:00
|
|
|
Version: 0.430
|
2024-10-29 15:58:23 +00:00
|
|
|
Release: 18%{?dist}
|
2017-04-03 18:36:42 +00:00
|
|
|
Summary: Provide compiled List::MoreUtils functions
|
2023-04-26 07:41:32 +00:00
|
|
|
# Code from List-MoreUtils < 0.417 is GPL-1.0-or-later OR Artistic-1.0-Perl
|
|
|
|
# Anything after that is Apache-2.0
|
2017-04-03 18:36:42 +00:00
|
|
|
# "git blame" on the upstream repo will probably be needed to
|
|
|
|
# determine the license of any particular chunk of code
|
2023-04-26 07:41:32 +00:00
|
|
|
License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND Apache-2.0
|
2018-06-04 12:37:25 +00:00
|
|
|
URL: https://metacpan.org/release/List-MoreUtils-XS
|
2020-10-21 13:28:29 +00:00
|
|
|
Source0: https://cpan.metacpan.org/modules/by-module/List/List-MoreUtils-XS-%{version}.tar.gz
|
|
|
|
Patch0: List-MoreUtils-XS-0.430-unbundle.patch
|
2017-04-03 18:36:42 +00:00
|
|
|
# Module Build
|
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: perl-devel
|
|
|
|
BuildRequires: perl-generators
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
BuildRequires: perl-interpreter
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(Capture::Tiny)
|
2024-07-11 23:26:10 +00:00
|
|
|
BuildRequires: perl(Config)
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
BuildRequires: perl(Config::AutoConf) >= 0.315
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(ExtUtils::CBuilder)
|
|
|
|
# Module Runtime
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
BuildRequires: perl(base)
|
|
|
|
BuildRequires: perl(Exporter)
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(strict)
|
|
|
|
BuildRequires: perl(vars)
|
|
|
|
BuildRequires: perl(warnings)
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
BuildRequires: perl(XSLoader) >= 0.22
|
2017-04-03 18:36:42 +00:00
|
|
|
# Test Suite
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
BuildRequires: perl(JSON::PP)
|
|
|
|
BuildRequires: perl(List::Util)
|
|
|
|
BuildRequires: perl(Math::Trig)
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(overload)
|
2020-10-21 13:28:29 +00:00
|
|
|
BuildRequires: perl(POSIX)
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(Storable)
|
|
|
|
BuildRequires: perl(Test::Builder::Module)
|
2021-02-19 16:03:42 +00:00
|
|
|
%if %{with perl_List_MoreUtils_XS_enables_extra_test}
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(Test::LeakTrace)
|
2021-02-19 16:03:42 +00:00
|
|
|
%endif
|
2017-04-03 18:36:42 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.96
|
|
|
|
BuildRequires: perl(Tie::Array)
|
2023-04-26 07:41:32 +00:00
|
|
|
# Dependencies
|
|
|
|
# (none)
|
2017-04-03 18:36:42 +00:00
|
|
|
|
|
|
|
# Don't "provide" private Perl libs
|
|
|
|
%{?perl_default_filter}
|
|
|
|
|
2024-07-11 23:26:10 +00:00
|
|
|
# Remove private test modules
|
2024-08-26 12:15:36 +00:00
|
|
|
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}
|
2024-07-11 23:26:10 +00:00
|
|
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Test::LMU\\)$
|
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
%description
|
|
|
|
This module provides accelerated versions of functions in List::MoreUtils.
|
|
|
|
|
2024-07-11 23:26:10 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: perl-Test-Harness
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
Tests from %{name}. Execute them
|
|
|
|
with "%{_libexecdir}/%{name}/test".
|
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n List-MoreUtils-XS-%{version}
|
|
|
|
|
|
|
|
# Unbundle bundled modules except private inc::Config::AutoConf::LMU
|
2023-04-26 07:40:00 +00:00
|
|
|
%patch -P 0
|
2017-04-03 18:36:42 +00:00
|
|
|
find inc/ -type f ! -name LMU.pm -print -delete
|
2023-06-13 09:18:01 +00:00
|
|
|
perl -i -ne 'print $_ unless m{^inc/} and not m{LMU\.pm}' MANIFEST
|
2017-04-03 18:36:42 +00:00
|
|
|
|
2024-07-11 23:26:10 +00:00
|
|
|
# Help generators to recognize Perl scripts
|
|
|
|
for F in t/xs/*.t; do
|
|
|
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
|
|
|
chmod +x "$F"
|
|
|
|
done
|
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
%build
|
|
|
|
perl Makefile.PL \
|
|
|
|
INSTALLDIRS=vendor \
|
|
|
|
OPTIMIZE="%{optflags}"\
|
|
|
|
NO_PERLLOCAL=1 \
|
|
|
|
NO_PACKLIST=1
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
find %{buildroot} -type f -name '*.bs' -empty -delete
|
|
|
|
%{_fixperms} -c %{buildroot}
|
2024-07-11 23:26:10 +00:00
|
|
|
# Install tests
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
|
|
|
#!/bin/sh
|
|
|
|
cd %{_libexecdir}/%{name} && exec prove -I . -r -j "$(getconf _NPROCESSORS_ONLN)"
|
|
|
|
EOF
|
|
|
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
2017-04-03 18:36:42 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license ARTISTIC-1.0 GPL-1 LICENSE
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
%doc Changes MAINTAINER.md README.md
|
2017-04-03 18:36:42 +00:00
|
|
|
%{perl_vendorarch}/auto/List/
|
|
|
|
%{perl_vendorarch}/List/
|
|
|
|
%{_mandir}/man3/List::MoreUtils::XS.3*
|
|
|
|
|
2024-07-11 23:26:10 +00:00
|
|
|
%files tests
|
|
|
|
%{_libexecdir}/%{name}
|
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
%changelog
|
2024-10-29 15:58:23 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.430-18
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-08-26 12:15:36 +00:00
|
|
|
* Mon Aug 26 2024 Jitka Plesnikova <jplesnik@redhat.com> - 0.430-17
|
|
|
|
- Fix filters of dependencies
|
|
|
|
|
2024-08-08 11:30:18 +00:00
|
|
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 0.430-16
|
|
|
|
- Bump release for Aug 2024 java mass rebuild
|
|
|
|
|
2024-07-11 23:26:10 +00:00
|
|
|
* Thu Jul 11 2024 Michal Josef Špaček <mspacek@redhat.com> - 0.430-15
|
|
|
|
- Package tests
|
|
|
|
|
2024-06-24 16:10:47 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.430-14
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-25 17:49:26 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 16:14:28 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-20 23:08:27 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-11 14:31:40 +00:00
|
|
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 0.430-10
|
|
|
|
- Perl 5.38 rebuild
|
|
|
|
|
2023-06-13 09:10:19 +00:00
|
|
|
* Tue Jun 13 2023 Paul Howarth <paul@city-fan.org> - 0.430-9
|
|
|
|
- Disable extra test in RHEL builds (based on
|
|
|
|
https://src.fedoraproject.org/rpms/perl-List-MoreUtils-XS/pull-request/1)
|
2023-06-13 09:18:01 +00:00
|
|
|
- Silence build-time warnings about missing bundled modules
|
2023-06-13 09:10:19 +00:00
|
|
|
|
2023-01-20 03:34:38 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-22 07:27:39 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-05-31 20:08:07 +00:00
|
|
|
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 0.430-6
|
|
|
|
- Perl 5.36 rebuild
|
|
|
|
|
2022-01-21 02:54:13 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 21:30:53 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-21 21:16:01 +00:00
|
|
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.430-3
|
|
|
|
- Perl 5.34 rebuild
|
|
|
|
|
2021-01-27 02:26:39 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.430-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-10-21 13:28:29 +00:00
|
|
|
* Wed Oct 21 2020 Paul Howarth <paul@city-fan.org> - 0.430-1
|
|
|
|
- Update to 0.430
|
|
|
|
- Fix parts of CPAN RT#123989: more $a/$b/$_ refcounting bugs
|
|
|
|
- Since some bugs are simply reported wrong, dealing with them breaks more
|
|
|
|
(including running code) than it solves - way too heavy to feel better...
|
|
|
|
- Introduce functions slide and slideatatime
|
|
|
|
- Toolchain fixes
|
|
|
|
- Fix LANG=nb_NO.utf8 related str tests fails (CPAN RT#133128)
|
|
|
|
- Fix typo (GH#7)
|
|
|
|
- Fix parts of CPAN RT#132043: listcmp misbehave in XS implementation
|
|
|
|
- Use author-independent source URL
|
|
|
|
|
2020-07-28 16:43:26 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-23 11:18:38 +00:00
|
|
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.428-9
|
|
|
|
- Perl 5.32 rebuild
|
|
|
|
|
2020-01-30 01:40:38 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-26 04:14:37 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-31 14:38:49 +00:00
|
|
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.428-6
|
|
|
|
- Perl 5.30 rebuild
|
|
|
|
|
2019-02-01 21:50:50 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 18:12:58 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-28 22:09:57 +00:00
|
|
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.428-3
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
2018-02-08 22:24:14 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.428-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-21 14:19:40 +00:00
|
|
|
* Thu Dec 21 2017 Paul Howarth <paul@city-fan.org> - 0.428-1
|
|
|
|
- Update to 0.428
|
|
|
|
- Fix build fails on perl ≥ 5.27.4 with -DDEBUGGING (CPAN RT#123613)
|
|
|
|
- Update ppport.h to 3.37 for improved blead support
|
|
|
|
- Fix context arg to croak() (CPAN RT#123869)
|
|
|
|
- Fix one() returning true on empty list (CPAN RT#123870)
|
|
|
|
- Pamper $a/$b/$_ refcounting bugs (CPAN RT#123868)
|
|
|
|
|
2017-10-03 11:36:13 +00:00
|
|
|
* Tue Oct 3 2017 Paul Howarth <paul@city-fan.org> - 0.426-1
|
|
|
|
- Update to 0.426
|
|
|
|
- Fix broken format in part (GH#4)
|
|
|
|
- Fix gcc 4.7 sequence point warning (GH#5)
|
|
|
|
- Fix incorrect padname resolving for perl > 5.21.6 (CPAN RT#122883)
|
|
|
|
- Fix compiling issue on CentOS 4 and CentOS 5
|
|
|
|
|
2017-08-19 18:18:23 +00:00
|
|
|
* Sat Aug 19 2017 Paul Howarth <paul@city-fan.org> - 0.423-1
|
|
|
|
- Update to 0.423
|
|
|
|
- Fix dealing with lists with one element on bremove/binsert (GH#2)
|
|
|
|
- Add support for compilers before C99
|
|
|
|
- Fix some 32-bit compiler warnings
|
|
|
|
- Add support for compilers without statement expression feature
|
|
|
|
|
2017-08-15 15:34:09 +00:00
|
|
|
* Tue Aug 15 2017 Paul Howarth <paul@city-fan.org> - 0.422-1
|
|
|
|
- Update to 0.422
|
|
|
|
- Rename 'occurances' into 'occurrences' (CPAN RT#91991, CPAN RT#122806)
|
|
|
|
- Add DESCRIPTION to Pod clarifying the role of List::MoreUtils::XS
|
|
|
|
- Improve Makefile.PL regarding some build artifacts
|
|
|
|
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
* Tue Aug 15 2017 Paul Howarth <paul@city-fan.org> - 0.421-1
|
|
|
|
- Update to 0.421
|
|
|
|
- Fix a lot of potential memory leaks when callbacks throw exceptions
|
|
|
|
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
|
|
|
|
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
|
|
|
|
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
|
|
|
|
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
|
|
|
|
- Improve tests
|
|
|
|
- Make List::MoreUtils::XS independent from List::MoreUtils
|
|
|
|
Note that List::MoreUtils::XS doesn't guarantee API stability: this
|
|
|
|
feature is only provided through List::MoreUtils as frontend
|
|
|
|
- Improve configure toolchain to use Config::AutoConf 0.315
|
|
|
|
- Speed up some inner loops by hinting the expected result
|
|
|
|
- Fix mind screwed up issue in upper_bound and reduce elements visited in
|
|
|
|
equal_range
|
|
|
|
- Correct license in META (CPAN RT#122702)
|
|
|
|
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
|
|
|
|
|
2017-08-03 05:26:21 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.418-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 04:41:15 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.418-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-05 15:19:52 +00:00
|
|
|
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.418-4
|
|
|
|
- Perl 5.26 rebuild
|
|
|
|
|
2017-04-03 18:36:42 +00:00
|
|
|
* Mon Apr 3 2017 Paul Howarth <paul@city-fan.org> - 0.418-3
|
|
|
|
- Incorporate package review feedback (#1437588)
|
|
|
|
- Fix URL
|
|
|
|
- Unbundle bundled modules except private inc::Config::AutoConf::LMU
|
|
|
|
|
|
|
|
* Thu Mar 30 2017 Paul Howarth <paul@city-fan.org> - 0.418-2
|
|
|
|
- Sanitize for Fedora submission
|
|
|
|
|
|
|
|
* Thu Mar 30 2017 Paul Howarth <paul@city-fan.org> - 0.418-1
|
|
|
|
- Initial RPM version
|