From 95ccfe0e6ea0745e6029471a77e011cb9e06eadd Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Thu, 15 Oct 2020 13:08:07 -0700 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/uchardet#49ee88e8bb2657255de8c08b38bf9c4377c5f392 --- .gitignore | 2 + sources | 1 + uchardet.spec | 141 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 144 insertions(+) create mode 100644 sources create mode 100644 uchardet.spec diff --git a/.gitignore b/.gitignore index e69de29..3a6a00d 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +/uchardet-0.0.5.tar.gz +/uchardet-0.0.6.tar.xz diff --git a/sources b/sources new file mode 100644 index 0000000..ddefc4b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (uchardet-0.0.6.tar.xz) = eceeadae060bf277e298d709856609dde32921271140dc1fb0a33c7b6e1381033fc2960d616ebbd82c92815936864d2c0743b1b5ea1b7d4a200df87df80d6de5 diff --git a/uchardet.spec b/uchardet.spec new file mode 100644 index 0000000..38ad417 --- /dev/null +++ b/uchardet.spec @@ -0,0 +1,141 @@ +%undefine __cmake_in_source_build + +Name: uchardet +Version: 0.0.6 +Release: 11%{?dist} +Summary: An encoding detector library ported from Mozilla + +License: MPLv1.1 +URL: https://www.freedesktop.org/wiki/Software/%{name} +Source0: https://www.freedesktop.org/software/%{name}/releases/%{name}-%{version}.tar.xz + +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: cmake + +%description +Uchardet is a C language binding of the original C++ implementation of the +universal charset detection library by Mozilla. Uchardet is an encoding +detector library, which takes a sequence of bytes in an unknown character +encoding without any additional information, and attempts to determine the +encoding of the text. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains headers and shared libraries +for developing tools for uchardet. + +%prep +%autosetup + +%build +%cmake \ + -DCMAKE_INSTALL_LIBDIR=%{_libdir} \ + -DBUILD_STATIC=OFF +%cmake_build + +%install +%cmake_install + +%ldconfig_scriptlets + +%check +pushd %{_vpath_builddir} + ctest -VV \ + %ifarch %{ix86} + || : + %else + ; + %endif +popd + +%files +%license COPYING +%doc AUTHORS +%{_bindir}/%{name} +%{_libdir}/lib%{name}.so.* +%{_mandir}/man1/%{name}.1* + +%files devel +%{_includedir}/%{name}/ +%{_libdir}/lib%{name}.so +%{_libdir}/pkgconfig/%{name}.pc + +%changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.0.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jan 31 2020 Fedora Release Engineering - 0.0.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Jul 27 2019 Fedora Release Engineering - 0.0.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 0.0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 0.0.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 0.0.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Feb 03 2018 Igor Gnatenko - 0.0.6-5 +- Switch to %%ldconfig_scriptlets + +* Thu Aug 03 2017 Fedora Release Engineering - 0.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Dec 22 2016 Ilya Gradina - 0.0.6-1 +- update version to 0.0.6 +- changed upstream url + +* Thu Jul 07 2016 Igor Gnatenko - 0.0.5-4 +- Rebuild for f23 to fix i686 + +* Fri Feb 12 2016 Igor Gnatenko - 0.0.5-3 +- Fixup summary in devel subpkg + +* Mon Feb 08 2016 Igor Gnatenko - 0.0.5-2 +- Fix building on i686 properly + +* Sat Feb 6 2016 Ilya Gradina - 0.0.5-1 +- update version to 0.0.5 + +* Fri Nov 20 2015 Ilya Gradina - 0.0.3-1 +- update version to 0.0.3 +- add tests + +* Thu Oct 1 2015 Ilya Gradina - 0.0.1-5 +- remove macros srcname and sum + +* Mon Sep 21 2015 Ilya Gradina - 0.0.1-4 +- fix enable debug packages +- fix add flag verbose for make +- fix change in build +- fix remove in libs from files +- fix add change for libs in post/postun +- fix version on 0.0.1 from git +- added macros + +* Mon Sep 21 2015 Ilya Gradina - 0.0.0-3 +- fix description and summary for libs and libs-devel + +* Mon Sep 21 2015 Ilya Gradina - 0.0.0-2 +- fix version on 0.0.0 +- fix license path +- remove static lib +- fix description +- fix number packages + +* Mon Sep 21 2015 Ilya Gradina - 0.0.0-1 +- Initial package