Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1257c20cb1 | ||
|
ca952baf07 | ||
|
036ad7921d | ||
|
d966aa2cb8 | ||
|
9b7a339422 | ||
|
4664cd0a34 | ||
|
c8f8b38cc7 | ||
|
9fcb5ec1bf | ||
|
cdeae9127b | ||
|
e0c3b787c5 | ||
|
02c94236f0 | ||
|
19ce612593 | ||
|
2d0197af0a | ||
|
e55b78802a | ||
|
cd02e7ac2c | ||
|
f93041b2ec | ||
|
4641470355 |
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -13,3 +13,5 @@
|
|||||||
/Unicode-Collate-1.27.tar.gz
|
/Unicode-Collate-1.27.tar.gz
|
||||||
/Unicode-Collate-1.28.tar.gz
|
/Unicode-Collate-1.28.tar.gz
|
||||||
/Unicode-Collate-1.29.tar.gz
|
/Unicode-Collate-1.29.tar.gz
|
||||||
|
/Unicode-Collate-1.30.tar.gz
|
||||||
|
/Unicode-Collate-1.31.tar.gz
|
||||||
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_context: bodhi_update_push_stable
|
||||||
|
subject_type: koji_build
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
@ -1,11 +1,11 @@
|
|||||||
Name: perl-Unicode-Collate
|
Name: perl-Unicode-Collate
|
||||||
Version: 1.29
|
Version: 1.31
|
||||||
Release: 1%{?dist}
|
Release: 502%{?dist}
|
||||||
Summary: Unicode Collation Algorithm
|
Summary: Unicode Collation Algorithm
|
||||||
# Collate/allkeys.txt: Unicode (the file contains a link to
|
# Collate/allkeys.txt: Unicode-DFS-2016 (the file contains a link to
|
||||||
# <http://www.unicode.org/terms_of_use.html>)
|
# <http://www.unicode.org/terms_of_use.html>)
|
||||||
# other files: GPL+ or Artistic
|
# other files: GPL-1.0-or-later OR Artistic-1.0-Perl
|
||||||
License: (GPL+ or Artistic) and Unicode
|
License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND Unicode-DFS-2016
|
||||||
URL: https://metacpan.org/release/Unicode-Collate
|
URL: https://metacpan.org/release/Unicode-Collate
|
||||||
Source0: https://cpan.metacpan.org/authors/id/S/SA/SADAHIRO/Unicode-Collate-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/S/SA/SADAHIRO/Unicode-Collate-%{version}.tar.gz
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
@ -25,7 +25,6 @@ BuildRequires: perl(warnings)
|
|||||||
BuildRequires: perl(base)
|
BuildRequires: perl(base)
|
||||||
BuildRequires: perl(Unicode::Normalize)
|
BuildRequires: perl(Unicode::Normalize)
|
||||||
BuildRequires: perl(XSLoader)
|
BuildRequires: perl(XSLoader)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
||||||
Requires: perl(Unicode::Normalize)
|
Requires: perl(Unicode::Normalize)
|
||||||
Conflicts: perl < 4:5.22.0-347
|
Conflicts: perl < 4:5.22.0-347
|
||||||
|
|
||||||
@ -33,6 +32,15 @@ Conflicts: perl < 4:5.22.0-347
|
|||||||
This package is Perl implementation of Unicode Technical Standard #10 (Unicode
|
This package is Perl implementation of Unicode Technical Standard #10 (Unicode
|
||||||
Collation Algorithm).
|
Collation Algorithm).
|
||||||
|
|
||||||
|
%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
|
%prep
|
||||||
%setup -q -n Unicode-Collate-%{version}
|
%setup -q -n Unicode-Collate-%{version}
|
||||||
|
|
||||||
@ -40,6 +48,12 @@ Collation Algorithm).
|
|||||||
rm Collate/Locale/*
|
rm Collate/Locale/*
|
||||||
# Collate/CJK/Korean.pm is an input for the mklocale script, do not remove it
|
# Collate/CJK/Korean.pm is an input for the mklocale script, do not remove it
|
||||||
|
|
||||||
|
# Help file to recognise the 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
|
%build
|
||||||
# Regenerate code from Collate/allkeys.txt whose authority is
|
# Regenerate code from Collate/allkeys.txt whose authority is
|
||||||
# <http://www.unicode.org/Public/UCA/latest/allkeys.txt>
|
# <http://www.unicode.org/Public/UCA/latest/allkeys.txt>
|
||||||
@ -52,10 +66,20 @@ perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="$RPM_
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%{make_install}
|
%{make_install}
|
||||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
|
find %{buildroot} -type f -name '*.bs' -size 0 -delete
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -64,7 +88,51 @@ make test
|
|||||||
%{perl_vendorarch}/Unicode*
|
%{perl_vendorarch}/Unicode*
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
|
%files tests
|
||||||
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-502
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-501
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-500
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.31-499
|
||||||
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
* Mon Mar 06 2023 Michal Josef Špaček <mspacek@redhat.com> - 1.31-491
|
||||||
|
- Update license to SPDX format
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-490
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.31-489
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.31-488
|
||||||
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
* Mon Aug 23 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.31-1
|
||||||
|
- 1.31 bump
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-2
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 07 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.30-1
|
||||||
|
- 1.30 bump
|
||||||
|
- Package tests
|
||||||
|
|
||||||
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.29-477
|
||||||
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.29-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Sep 29 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.29-1
|
* Tue Sep 29 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.29-1
|
||||||
- 1.29 bump
|
- 1.29 bump
|
||||||
|
|
||||||
|
5
plans/sanity.fmf
Normal file
5
plans/sanity.fmf
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
summary: Sanity tests
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
execute:
|
||||||
|
how: tmt
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (Unicode-Collate-1.29.tar.gz) = 7abf9312738a35ea2cd8e37e3e18e4f20480d85c53ba3e5c59209d967318973b654e555eab9ad15a6936b0f7f1ac73d603534bc52d0b36eaa01d221ac41dde8e
|
SHA512 (Unicode-Collate-1.31.tar.gz) = fff8f06ae561100006ce0ab2aabe561e27fee30237db8da804c94c70eee9787e05b19c5908614ddbb3b263a0fdaea9a9933bc74818951e009a280afa782e19d1
|
||||||
|
4
tests/upstream-tests.fmf
Normal file
4
tests/upstream-tests.fmf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
summary: Upstream tests
|
||||||
|
component: perl-Unicode-Collate
|
||||||
|
require: perl-Unicode-Collate-tests
|
||||||
|
test: /usr/libexec/perl-Unicode-Collate/test
|
Loading…
Reference in New Issue
Block a user