Compare commits
No commits in common. "c8-stream-5.3" and "c9-beta" have entirely different histories.
c8-stream-
...
c9-beta
59
SOURCES/Unicode-Normalize-1.25-Upgrade-to-1.27.patch
Normal file
59
SOURCES/Unicode-Normalize-1.25-Upgrade-to-1.27.patch
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
From 95cca0326ee38020d55382493e6d42b16ae889c9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jitka Plesnikova <jplesnik@redhat.com>
|
||||||
|
Date: Tue, 21 Apr 2020 13:05:51 +0200
|
||||||
|
Subject: [PATCH] Upgrade to 1.27
|
||||||
|
|
||||||
|
---
|
||||||
|
Normalize.pm | 14 +++++++-------
|
||||||
|
1 file changed, 7 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Normalize.pm b/Normalize.pm
|
||||||
|
index adf3db5..d06fb8b 100644
|
||||||
|
--- a/Normalize.pm
|
||||||
|
+++ b/Normalize.pm
|
||||||
|
@@ -16,7 +16,7 @@ use Carp;
|
||||||
|
|
||||||
|
no warnings 'utf8';
|
||||||
|
|
||||||
|
-our $VERSION = '1.26';
|
||||||
|
+our $VERSION = '1.27';
|
||||||
|
our $PACKAGE = __PACKAGE__;
|
||||||
|
|
||||||
|
our @EXPORT = qw( NFC NFD NFKC NFKD );
|
||||||
|
@@ -606,27 +606,27 @@ and/or modify it under the same terms as Perl itself.
|
||||||
|
|
||||||
|
=over 4
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/reports/tr15/
|
||||||
|
+=item L<http://www.unicode.org/reports/tr15/>
|
||||||
|
|
||||||
|
Unicode Normalization Forms - UAX #15
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/Public/UNIDATA/CompositionExclusions.txt
|
||||||
|
+=item L<http://www.unicode.org/Public/UNIDATA/CompositionExclusions.txt>
|
||||||
|
|
||||||
|
Composition Exclusion Table
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
|
||||||
|
+=item L<http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt>
|
||||||
|
|
||||||
|
Derived Normalization Properties
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/Public/UNIDATA/NormalizationCorrections.txt
|
||||||
|
+=item L<http://www.unicode.org/Public/UNIDATA/NormalizationCorrections.txt>
|
||||||
|
|
||||||
|
Normalization Corrections
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/review/pr-29.html
|
||||||
|
+=item L<http://www.unicode.org/review/pr-29.html>
|
||||||
|
|
||||||
|
Public Review Issue #29: Normalization Issue
|
||||||
|
|
||||||
|
-=item http://www.unicode.org/notes/tn5/
|
||||||
|
+=item L<http://www.unicode.org/notes/tn5/>
|
||||||
|
|
||||||
|
Canonical Equivalence in Applications - UTN #5
|
||||||
|
|
||||||
|
--
|
||||||
|
2.21.1
|
||||||
|
|
@ -1,13 +1,16 @@
|
|||||||
%global base_version 1.25
|
%global base_version 1.25
|
||||||
Name: perl-Unicode-Normalize
|
Name: perl-Unicode-Normalize
|
||||||
Version: 1.26
|
Version: 1.27
|
||||||
Release: 439%{?dist}
|
Release: 461%{?dist}
|
||||||
Summary: Unicode Normalization Forms
|
Summary: Unicode Normalization Forms
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/Unicode-Normalize
|
URL: https://metacpan.org/release/Unicode-Normalize
|
||||||
Source0: https://cpan.metacpan.org/authors/id/K/KH/KHW/Unicode-Normalize-%{base_version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/K/KH/KHW/Unicode-Normalize-%{base_version}.tar.gz
|
||||||
# Unbundled from perl 5.28.0-RC1
|
# Unbundled from perl 5.28.0-RC1
|
||||||
Patch0: Unicode-Normalize-1.25-Upgrade-to-1.26.patch
|
Patch0: Unicode-Normalize-1.25-Upgrade-to-1.26.patch
|
||||||
|
# Unbundled from perl 5.32.0
|
||||||
|
Patch1: Unicode-Normalize-1.25-Upgrade-to-1.27.patch
|
||||||
|
BuildRequires: coreutils
|
||||||
BuildRequires: findutils
|
BuildRequires: findutils
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
@ -37,13 +40,14 @@ Unicode normalization forms as defined in Unicode Standard Annex #15.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n Unicode-Normalize-%{base_version}
|
%setup -q -n Unicode-Normalize-%{base_version}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 OPTIMIZE="%{optflags}"
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="%{optflags}"
|
||||||
make %{?_smp_mflags}
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
%{make_install}
|
||||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
@ -58,6 +62,29 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.27-461
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.27-460
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-459
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-458
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 21 2020 Petr Pisar <ppisar@redhat.com> - 1.27-457
|
||||||
|
- Modernize a spec file
|
||||||
|
- Apply a forgotten Unicode-Normalize-1.25-Upgrade-to-1.27.patch patch
|
||||||
|
|
||||||
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.27-456
|
||||||
|
- Upgrade to 1.27 as provided in perl-5.32.0
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-440
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-439
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-439
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user