Compare commits
No commits in common. "c10s" and "c8-stream-1.1" have entirely different histories.
c10s
...
c8-stream-
@ -1 +0,0 @@
|
|||||||
1
|
|
13
.gitignore
vendored
13
.gitignore
vendored
@ -1,12 +1 @@
|
|||||||
/utf8proc-v1.1.6.tar.gz
|
SOURCES/utf8proc-v2.1.1.tar.gz
|
||||||
/utf8proc-1.2.tar.gz
|
|
||||||
/utf8proc-v1.3.tar.gz
|
|
||||||
/utf8proc-v1.3.1.tar.gz
|
|
||||||
/utf8proc-v2.0.1.tar.gz
|
|
||||||
/utf8proc-v2.0.2.tar.gz
|
|
||||||
/utf8proc-v2.1.0.tar.gz
|
|
||||||
/utf8proc-v2.1.1.tar.gz
|
|
||||||
/utf8proc-v2.3.0.tar.gz
|
|
||||||
/utf8proc-v2.4.0.tar.gz
|
|
||||||
/utf8proc-v2.6.1.tar.gz
|
|
||||||
/utf8proc-v2.7.0.tar.gz
|
|
||||||
|
1
.utf8proc.metadata
Normal file
1
.utf8proc.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
8c02fc26fbe7ab1c4c0d2fce3efecb4df8d935b9 SOURCES/utf8proc-v2.1.1.tar.gz
|
@ -1,13 +1,12 @@
|
|||||||
Summary: Library for processing UTF-8 encoded Unicode strings
|
Summary: Library for processing UTF-8 encoded Unicode strings
|
||||||
Name: utf8proc
|
Name: utf8proc
|
||||||
Version: 2.7.0
|
Version: 2.1.1
|
||||||
Release: 9%{?dist}
|
Release: 5%{?dist}
|
||||||
License: MIT AND Unicode-DFS-2015
|
License: Unicode and MIT
|
||||||
|
Group: System Environment/Libraries
|
||||||
URL: http://julialang.org/utf8proc/
|
URL: http://julialang.org/utf8proc/
|
||||||
Source: https://github.com/JuliaLang/utf8proc/archive/v%{version}.tar.gz#/%{name}-v%{version}.tar.gz
|
Source: https://github.com/JuliaLang/utf8proc/archive/v%{version}.tar.gz#/%{name}-v%{version}.tar.gz
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: perl-interpreter
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
utf8proc is a library for processing UTF-8 encoded Unicode strings.
|
utf8proc is a library for processing UTF-8 encoded Unicode strings.
|
||||||
@ -18,10 +17,13 @@ the characters “Hyphen” (U+2010), “Minus” (U+2212) and “Hyphen-Minus
|
|||||||
(U+002D, ASCII Minus) all into the ASCII minus sign, to make them
|
(U+002D, ASCII Minus) all into the ASCII minus sign, to make them
|
||||||
equal for comparisons.
|
equal for comparisons.
|
||||||
|
|
||||||
|
The currently supported Unicode version is 9.0.0.
|
||||||
|
|
||||||
This package only contains the C library.
|
This package only contains the C library.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Header files, libraries and development documentation for %{name}
|
Summary: Header files, libraries and development documentation for %{name}
|
||||||
|
Group: Development/Libraries
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -36,21 +38,21 @@ strings, unless you want to allocate memory yourself.
|
|||||||
%setup -qn %{name}-%{version}
|
%setup -qn %{name}-%{version}
|
||||||
# Disable slow tests and tests which require network access
|
# Disable slow tests and tests which require network access
|
||||||
sed -i '/-C bench/d;/\ttest.* data/d' Makefile
|
sed -i '/-C bench/d;/\ttest.* data/d' Makefile
|
||||||
touch data/NormalizationTest.txt data/GraphemeBreakTest.txt data/Lowercase.txt data/Uppercase.txt
|
touch data/NormalizationTest.txt data/GraphemeBreakTest.txt
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%set_build_flags
|
%set_build_flags
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%set_build_flags
|
|
||||||
make %{?_smp_mflags} check
|
make %{?_smp_mflags} check
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=%{buildroot} prefix=%{_prefix} includedir=%{_includedir} libdir=%{_libdir}
|
make install DESTDIR=%{buildroot} prefix=%{_prefix} includedir=%{_includedir} libdir=%{_libdir}
|
||||||
rm %{buildroot}%{_libdir}/libutf8proc.a
|
rm %{buildroot}%{_libdir}/libutf8proc.a
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
%post -p /sbin/ldconfig
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc LICENSE.md NEWS.md README.md
|
%doc LICENSE.md NEWS.md README.md
|
||||||
@ -59,67 +61,10 @@ rm %{buildroot}%{_libdir}/libutf8proc.a
|
|||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/utf8proc.h
|
%{_includedir}/utf8proc.h
|
||||||
%{_libdir}/libutf8proc.so
|
%{_libdir}/libutf8proc.so
|
||||||
%{_libdir}/pkgconfig/libutf8proc.pc
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2.7.0-9
|
* Mon Aug 05 2019 Lubos Uhliarik <luhliari@redhat.com> - 2.1.1-5
|
||||||
- Bump release for October 2024 mass rebuild:
|
- Resolves: #1695587 - Ensure modular RPM upgrade path
|
||||||
Resolves: RHEL-64018
|
|
||||||
|
|
||||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.7.0-8
|
|
||||||
- Bump release for June 2024 mass rebuild
|
|
||||||
|
|
||||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Sep 29 2023 Joe Orton <jorton@redhat.com> - 2.7.0-6
|
|
||||||
- migrate to SPDX license
|
|
||||||
- BR: perl-interpreter rather than perl
|
|
||||||
|
|
||||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Dec 26 2021 Milan Bouchet-Valat <nalimilan@club.fr> - 2.7.0
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Thu Nov 11 2021 Tom Stellard <tstellar@redhat.com> - 2.6.1-4
|
|
||||||
- Use set_build_flags before running tests
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Dec 16 2020 Milan Bouchet-Valat <nalimilan@club.fr> - 2.6.1-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu May 16 2019 Milan Bouchet-Valat <nalimilan@club.fr> - 2.4.0-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Sun Apr 21 2019 Milan Bouchet-Valat <nalimilan@club.fr> - 2.3.0-1
|
|
||||||
- New upstream release.
|
|
||||||
|
|
||||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 23 2018 Joe Orton <jorton@redhat.com> - 2.1.1-4
|
* Mon Jul 23 2018 Joe Orton <jorton@redhat.com> - 2.1.1-4
|
||||||
- update License tag to Unicode and MIT
|
- update License tag to Unicode and MIT
|
25
gating.yaml
25
gating.yaml
@ -1,25 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- fedora-*
|
|
||||||
decision_context: bodhi_update_push_testing
|
|
||||||
subject_type: koji_build
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
|
|
||||||
|
|
||||||
#Rawhide
|
|
||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- fedora-*
|
|
||||||
decision_context: bodhi_update_push_stable
|
|
||||||
subject_type: koji_build
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
|
|
||||||
|
|
||||||
#gating rhel
|
|
||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-*
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-public.functional}
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-internal.functional}
|
|
36
plans.fmf
36
plans.fmf
@ -1,36 +0,0 @@
|
|||||||
/tier1-internal:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/tier1/internal
|
|
||||||
|
|
||||||
/tier1-public:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/tier1/public
|
|
||||||
|
|
||||||
/tier2-tier3-internal:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/tier2-tier3/internal
|
|
||||||
|
|
||||||
/tier2-tier3-public:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/tier2-tier3/public
|
|
||||||
|
|
||||||
/others-internal:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/others/internal
|
|
||||||
|
|
||||||
/others-public:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://src.fedoraproject.org/tests/utf8proc.git
|
|
||||||
name: /plans/others/public
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user