c10-beta
imports/c10-beta/perl-Unicode-LineBreak-2019.001-23.el10
commit
7d6e754612
@ -0,0 +1 @@
|
|||||||
|
SOURCES/Unicode-LineBreak-2019.001.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
783e7e39f16daccf2d97657e4d1665c8976d743c SOURCES/Unicode-LineBreak-2019.001.tar.gz
|
@ -0,0 +1,354 @@
|
|||||||
|
# Run optional test
|
||||||
|
%if ! (0%{?rhel})
|
||||||
|
%bcond_without perl_Unicode_LineBreak_enables_optional_test
|
||||||
|
%else
|
||||||
|
%bcond_with perl_Unicode_LineBreak_enables_optional_test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Name: perl-Unicode-LineBreak
|
||||||
|
Version: 2019.001
|
||||||
|
Release: 23%{?dist}
|
||||||
|
Summary: UAX #14 Unicode Line Breaking Algorithm
|
||||||
|
License: GPL-1.0-or-later OR Artistic-1.0-Perl
|
||||||
|
URL: https://metacpan.org/release/Unicode-LineBreak
|
||||||
|
Source0: https://cpan.metacpan.org/authors/id/N/NE/NEZUMI/Unicode-LineBreak-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: libthai-devel
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(:VERSION) >= 5.8
|
||||||
|
BuildRequires: perl(Config)
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: sed
|
||||||
|
BuildRequires: sombok-devel
|
||||||
|
# Run-time
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(constant)
|
||||||
|
BuildRequires: perl(Encode) >= 1.98
|
||||||
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(MIME::Charset) >= 1.006.2
|
||||||
|
BuildRequires: perl(overload)
|
||||||
|
BuildRequires: perl(vars)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
BuildRequires: perl(XSLoader)
|
||||||
|
# Tests
|
||||||
|
BuildRequires: perl(FindBin)
|
||||||
|
BuildRequires: perl(lib)
|
||||||
|
BuildRequires: perl(Test::More) >= 0.45
|
||||||
|
%if %{with perl_Unicode_LineBreak_enables_optional_test}
|
||||||
|
# Optional tests
|
||||||
|
BuildRequires: perl(Test::Pod) >= 1.00
|
||||||
|
%endif
|
||||||
|
Requires: perl(Encode) >= 1.98
|
||||||
|
Requires: perl(MIME::Charset) >= 1.006.2
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?rhel} == 6
|
||||||
|
%filter_from_provides /^perl(Unicode::LineBreak)$/d
|
||||||
|
%filter_from_requires /^perl(Unicode::LineBreak::Constants)$/d
|
||||||
|
%{?perl_default_filter}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} > 6
|
||||||
|
%{?filter_setup:
|
||||||
|
%filter_from_requires /perl(Unicode::LineBreak::Constants)/d
|
||||||
|
%filter_from_provides /^perl(Unicode::LineBreak)$/d
|
||||||
|
}
|
||||||
|
%{?perl_default_filter}
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(Unicode::LineBreak::Constants\\)
|
||||||
|
%global __requires_exclude %__requires_exclude|^perl\\(constant\\)\s*$
|
||||||
|
%global __requires_exclude %__requires_exclude|^perl\\(Encode\\)\s*$
|
||||||
|
%global __requires_exclude %__requires_exclude|^perl\\(MIME::Charset\\)\s*$
|
||||||
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Unicode::LineBreak\\)$
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Remove private test modules
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(t::lb.pl\\)$
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(t::lf.pl\\)$
|
||||||
|
|
||||||
|
%description
|
||||||
|
Unicode::LineBreak performs Line Breaking Algorithm described in Unicode
|
||||||
|
Standards Annex #14 [UAX #14]. East_Asian_Width informative properties
|
||||||
|
defined by Annex #11 [UAX #11] will be concerned to determine breaking
|
||||||
|
positions.
|
||||||
|
|
||||||
|
%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".
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Unicode-LineBreak-%{version}
|
||||||
|
# Remove bundled library
|
||||||
|
rm -rf sombok
|
||||||
|
sed -i -e '/^sombok/d' MANIFEST
|
||||||
|
# Help generators to recognize Perl scripts
|
||||||
|
for F in t/*.t; do
|
||||||
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
||||||
|
chmod +x "$F"
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
|
||||||
|
%make_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||||
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
|
||||||
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/ja/man3
|
||||||
|
for mod in Text::LineFold Unicode::GCString Unicode::LineBreak; do
|
||||||
|
mv $RPM_BUILD_ROOT%{_mandir}/man3/POD2::JA::$mod.3pm \
|
||||||
|
$RPM_BUILD_ROOT%{_mandir}/ja/man3/$mod.3pm
|
||||||
|
done
|
||||||
|
|
||||||
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
|
# Install tests
|
||||||
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
cp -a test-data %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
# Remove author tests
|
||||||
|
rm -f %{buildroot}%{_libexecdir}/%{name}/t/pod.t
|
||||||
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
||||||
|
#!/bin/sh
|
||||||
|
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
||||||
|
EOF
|
||||||
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc Changes Changes.REL1 README Todo.REL1
|
||||||
|
%license ARTISTIC GPL
|
||||||
|
%{perl_vendorarch}/auto/*
|
||||||
|
%{perl_vendorarch}/Unicode*
|
||||||
|
%{perl_vendorarch}/Text
|
||||||
|
%{perl_vendorarch}/POD2
|
||||||
|
%{_mandir}/man3/*
|
||||||
|
%{_mandir}/ja/man3/*
|
||||||
|
|
||||||
|
|
||||||
|
%files tests
|
||||||
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 2019.001-23
|
||||||
|
- Bump release for Aug 2024 java mass rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2024 Michal Josef Špaček <mspacek@redhat.com> - 2019.001-22
|
||||||
|
- Package tests
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2019.001-21
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 2019.001-17
|
||||||
|
- Perl 5.38 rebuild
|
||||||
|
|
||||||
|
* Thu Jun 01 2023 Michal Josef Špaček <mspacek@redhat.com> - 2019.001-16
|
||||||
|
- Update license to SPDX format
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 01 2022 Jitka Plesnikova <jplesnik@redhat.com> - 2019.001-13
|
||||||
|
- Perl 5.36 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2019.001-10
|
||||||
|
- Perl 5.34 rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2019.001-7
|
||||||
|
- Perl 5.32 rebuild
|
||||||
|
|
||||||
|
* Fri Mar 13 2020 Petr Pisar <ppisar@redhat.com> - 2019.001-6
|
||||||
|
- Specify all dependencies
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2019.001-3
|
||||||
|
- Perl 5.30 rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019.001-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 04 2019 Xavier Bachelot <xavier@bachelot.org> - 2019.001-1
|
||||||
|
- Update to 2019.001.
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018.003-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2018.003-2
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Tue Apr 17 2018 Xavier Bachelot <xavier@bachelot.org> - 2018.003-1
|
||||||
|
- Update to 2018.003.
|
||||||
|
|
||||||
|
* Thu Mar 1 2018 Florian Weimer <fweimer@redhat.com> - 2017.004-8
|
||||||
|
- Rebuild with new redhat-rpm-config/perl build flags
|
||||||
|
|
||||||
|
* Mon Feb 26 2018 Xavier Bachelot <xavier@bachelot.org> - 2017.004-7
|
||||||
|
- Add BR: gcc.
|
||||||
|
- Clean up spec.
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2017.004-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.004-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.004-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 2017.004-3
|
||||||
|
- Rebuild due to bug in RPM (RHBZ #1468476)
|
||||||
|
|
||||||
|
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2017.004-2
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Fri Apr 14 2017 Xavier Bachelot <xavier@bachelot.org> 2017.004-1
|
||||||
|
- Update to 2017.004.
|
||||||
|
- Drop EL5 support.
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2016.003-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2016.003-2
|
||||||
|
- Perl 5.24 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
* Mon May 16 2016 Xavier Bachelot <xavier@bachelot.org> 2016.003-1
|
||||||
|
- Update to 2016.003.
|
||||||
|
- Clean up specfile.
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2015.12-3
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2015.12-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2015.12-1
|
||||||
|
- 2015.12 bump
|
||||||
|
|
||||||
|
* Fri Sep 11 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2015.07.16-1
|
||||||
|
- 2015.07.16 bump
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.11-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2013.11-6
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2013.11-5
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.11-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.11-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 18 2014 Xavier Bachelot <xavier@bachelot.org> 2013.11-2
|
||||||
|
- Fix filtering for EL7.
|
||||||
|
|
||||||
|
* Mon Dec 02 2013 Xavier Bachelot <xavier@bachelot.org> 2013.11-1
|
||||||
|
- Update to 2013.11.
|
||||||
|
|
||||||
|
* Mon Oct 21 2013 Xavier Bachelot <xavier@bachelot.org> 2013.10-1
|
||||||
|
- Update to 2013.10.
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.06-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 21 2013 Petr Pisar <ppisar@redhat.com> - 2012.06-5
|
||||||
|
- Perl 5.18 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.06-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.06-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 14 2012 Petr Pisar <ppisar@redhat.com> - 2012.06-2
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 2012.06-1
|
||||||
|
- 2012.06 bump (to fix building)
|
||||||
|
|
||||||
|
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 2011.11-4
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011.11-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 22 2011 Xavier Bachelot <xavier@bachelot.org> 2011.11-2
|
||||||
|
- Filter out bad requires perl(Unicode::LineBreak::Constants).
|
||||||
|
- Adapt provides and requires filtering to handle all 3 variants
|
||||||
|
(EL5; F14/EL6; F15+).
|
||||||
|
|
||||||
|
* Fri Nov 18 2011 Xavier Bachelot <xavier@bachelot.org> 2011.11-1
|
||||||
|
- Update to 2011.11.
|
||||||
|
|
||||||
|
* Mon Oct 17 2011 Xavier Bachelot <xavier@bachelot.org> 2011.05-4
|
||||||
|
- Drop patch and revert to stricter provides filtering.
|
||||||
|
|
||||||
|
* Mon Oct 10 2011 Xavier Bachelot <xavier@bachelot.org> 2011.05-3
|
||||||
|
- Add patch to fix provides.
|
||||||
|
- Fix provides filtering.
|
||||||
|
|
||||||
|
* Mon Aug 01 2011 Xavier Bachelot <xavier@bachelot.org> 2011.05-2
|
||||||
|
- Filter provides.
|
||||||
|
|
||||||
|
* Tue May 17 2011 Xavier Bachelot <xavier@bachelot.org> 2011.05-1
|
||||||
|
- Spec clean up.
|
||||||
|
- Add a BR: on sombok-devel.
|
||||||
|
|
||||||
|
* Mon May 02 2011 Xavier Bachelot <xavier@bachelot.org> 2011.04.26-1
|
||||||
|
- Specfile autogenerated by cpanspec 1.78.
|
Loading…
Reference in new issue