Compare commits
35 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f50817db2b | ||
|
|
76606d265f | ||
|
|
69137979cf | ||
|
|
4af74af714 | ||
|
|
636b6be962 | ||
|
|
1c993ffa73 | ||
|
|
c71785b1c4 | ||
|
|
2d94930867 | ||
|
|
7817463c93 | ||
|
|
e5f8b93f2c | ||
|
|
69f68ae3fa | ||
|
|
bad360217f | ||
|
|
ea621a2384 | ||
|
|
2efbb59c80 | ||
|
|
e5eab8871e |
||
|
|
35a201dc88 | ||
|
|
1be90a26b8 | ||
|
|
d9a0ad3248 | ||
|
|
6dec6b2e36 | ||
|
|
042ae5b808 |
||
|
|
71c6dabc16 | ||
|
|
040cc0f728 | ||
|
|
1f623c2a56 | ||
|
|
879e9ab311 |
||
|
|
0ede1514d6 |
||
|
|
670e0160c2 | ||
| 93a6e6e3d7 | |||
|
044d28e1ab |
|||
|
|
2c2243f650 | ||
|
|
6255a5392b | ||
|
|
16603d9794 |
||
|
|
f2db92ea98 |
||
|
|
9add0bba62 | ||
|
|
65852ce6f3 | ||
|
|
4417791385 |
3 changed files with 27 additions and 68 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -5,3 +5,11 @@
|
|||
/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
|
||||
/utf8proc-v2.9.0.tar.gz
|
||||
/utf8proc-v2.10.0.tar.gz
|
||||
/utf8proc-v2.11.3.tar.gz
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (utf8proc-v2.1.0.tar.gz) = 72b7f377fa6a62018d3eeab8723a27e25db3d1f794ae0bf21fff62ec1a7439bec52e7c93d2a00c218de6ff518097fb4a7a87c56e61ba8c98e689aa8f7171c812
|
||||
SHA512 (utf8proc-v2.11.3.tar.gz) = 148701fce506d076f03497b6d085f1993eff743debad4a2f6d3cbac91e19a5c22d9938245bdb460c1b22b51842c7416c42124db7416c684ee63d622490baac0e
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
Summary: Library for processing UTF-8 encoded Unicode strings
|
||||
Name: utf8proc
|
||||
Version: 2.1.0
|
||||
Release: 2%{?dist}
|
||||
License: BSD
|
||||
Group: System Environment/Libraries
|
||||
Version: 2.11.3
|
||||
Release: %autorelease
|
||||
License: MIT AND Unicode-DFS-2015
|
||||
URL: http://julialang.org/utf8proc/
|
||||
Source: https://github.com/JuliaLang/utf8proc/archive/v%{version}.tar.gz#/%{name}-v%{version}.tar.gz
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: perl-interpreter
|
||||
|
||||
%description
|
||||
utf8proc is a library for processing UTF-8 encoded Unicode strings.
|
||||
|
|
@ -16,13 +18,10 @@ the characters “Hyphen” (U+2010), “Minus” (U+2212) and “Hyphen-Minus
|
|||
(U+002D, ASCII Minus) all into the ASCII minus sign, to make them
|
||||
equal for comparisons.
|
||||
|
||||
The currently supported Unicode version is 9.0.0.
|
||||
|
||||
This package only contains the C library.
|
||||
|
||||
%package devel
|
||||
Summary: Header files, libraries and development documentation for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
|
|
@ -34,81 +33,33 @@ The documentation for the C library is found in the utf8proc.h header file.
|
|||
strings, unless you want to allocate memory yourself.
|
||||
|
||||
%prep
|
||||
%setup -qn %{name}-%{version}
|
||||
%autosetup
|
||||
# Disable slow tests and tests which require network access
|
||||
sed -i '/-C bench/d;/\ttest.* data/d' Makefile
|
||||
touch data/NormalizationTest.txt data/GraphemeBreakTest.txt data/Lowercase.txt data/Uppercase.txt
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
||||
%set_build_flags
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags}" \
|
||||
test/normtest test/graphemetest test/printproperty \
|
||||
test/charwidth test/normtest test/graphemetest test/charwidth
|
||||
%set_build_flags
|
||||
make %{?_smp_mflags} check
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot} prefix=%{_prefix} includedir=%{_includedir} libdir=%{_libdir}
|
||||
rm %{buildroot}%{_libdir}/libutf8proc.a
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%files
|
||||
%doc LICENSE.md NEWS.md README.md
|
||||
%{_libdir}/libutf8proc.so.*
|
||||
%{_libdir}/libutf8proc.so.3*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/utf8proc.h
|
||||
%{_libdir}/libutf8proc.so
|
||||
%{_libdir}/pkgconfig/libutf8proc.pc
|
||||
|
||||
%changelog
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sat Jan 7 2017 Milan Bouchet-Valat <nalimilan@club.fr> - 2.1.0
|
||||
- New upstream release.
|
||||
|
||||
* Thu Sep 15 2016 Milan Bouchet-Valat <nalimilan@club.fr> - 2.0.2-1
|
||||
- New upstream release.
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Nov 03 2015 Milan Bouchet-Valat <nalimilan@club.fr> - 1.3.1-1
|
||||
- New upstream release.
|
||||
|
||||
* Tue Aug 11 2015 Milan Bouchet-Valat <nalimilan@club.fr> - 1.3-1
|
||||
- New upstream release.
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Mar 28 2015 Milan Bouchet-Valat <nalimilan@club.fr> - 1.2-1
|
||||
- New upstream release.
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun May 4 2014 Milan Bouchet-Valat <nalimilan@club.fr> - 1.1.6-3
|
||||
- Add downstream SONAME version 0.1 since upstream does not set one.
|
||||
|
||||
* Fri Feb 14 2014 Milan Bouchet-Valat <nalimilan@club.fr> - 1.1.6-2
|
||||
- Fix package Group.
|
||||
- Do not remove build root on install phase.
|
||||
|
||||
* Sun Jan 26 2014 Milan Bouchet-Valat <nalimilan@club.fr> - 1.1.6-1
|
||||
- Adapt package to Fedora.
|
||||
- Updated to release 1.1.6.
|
||||
|
||||
* Sat Aug 29 2009 Dries Verachtert <dries@ulyssis.org> - 1.1.4-1 - 7981/dag
|
||||
- Updated to release 1.1.4.
|
||||
|
||||
* Sun Jul 29 2007 Dries Verachtert <dries@ulyssis.org> - 1.1.2-1
|
||||
- Updated to release 1.1.2.
|
||||
|
||||
* Mon Jul 23 2007 Dries Verachtert <dries@ulyssis.org> - 1.1.1-1
|
||||
- Updated to release 1.1.1.
|
||||
|
||||
* Tue Apr 17 2007 Dries Verachtert <dries@ulyssis.org> - 1.0.3-1
|
||||
- Initial package.
|
||||
%autochangelog
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue