Compare commits
No commits in common. "c10" and "c8" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
libdatrie-0.2.13.tar.xz
|
SOURCES/libdatrie-0.2.9.tar.xz
|
||||||
|
|||||||
1
.libdatrie.metadata
Normal file
1
.libdatrie.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
d1e14729d950a0a2a484d768cf9eeebaa20f998e SOURCES/libdatrie-0.2.9.tar.xz
|
||||||
14
SOURCES/libdatrie-fixes-docs.patch
Normal file
14
SOURCES/libdatrie-fixes-docs.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
Index: libdatrie-0.2.9/configure.ac
|
||||||
|
===================================================================
|
||||||
|
--- libdatrie-0.2.9.orig/configure.ac
|
||||||
|
+++ libdatrie-0.2.9/configure.ac
|
||||||
|
@@ -113,7 +113,8 @@ if test "x$enable_doxygen_doc" = "xyes";
|
||||||
|
else
|
||||||
|
AC_MSG_CHECKING([doxygen >= $DOXYGEN_REQ_VER])
|
||||||
|
DOXYGEN_VER=$($DOXYGEN --version)
|
||||||
|
- if expr $DOXYGEN_VER \< $DOXYGEN_REQ_VER > /dev/null; then
|
||||||
|
+ AS_VERSION_COMPARE($DOXYGEN_VER, $DOXYGEN_REQ_VER, [HAVE_DOXYGEN=0], [HAVE_DOXYGEN=1], [HAVE_DOXYGEN=1])
|
||||||
|
+ if [test "$HAVE_DOXYGEN" = "0"]; then
|
||||||
|
AC_MSG_RESULT([$DOXYGEN_VER, no, documentation disabled])
|
||||||
|
enable_doxygen_doc="no"
|
||||||
|
else
|
||||||
@ -1,14 +1,13 @@
|
|||||||
Name: libdatrie
|
Name: libdatrie
|
||||||
Version: 0.2.13
|
Version: 0.2.9
|
||||||
Release: 11%{?dist}
|
Release: 7%{?dist}
|
||||||
Summary: Implementation of Double-Array structure for representing trie
|
Summary: Implementation of Double-Array structure for representing trie
|
||||||
License: LGPL-2.1-or-later
|
License: LGPLv2+
|
||||||
URL: http://linux.thai.net/projects/datrie
|
URL: http://linux.thai.net/projects/datrie
|
||||||
Source0: http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
|
Source0: http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
|
||||||
|
Patch0: libdatrie-fixes-docs.patch
|
||||||
BuildRequires: autoconf, automake, libtool
|
BuildRequires: autoconf, automake, libtool
|
||||||
BuildRequires: autoconf-archive
|
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: make
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
datrie is an implementation of double-array structure for representing trie.
|
datrie is an implementation of double-array structure for representing trie.
|
||||||
@ -30,6 +29,7 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1 -b .docs
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -f -i -v
|
autoreconf -f -i -v
|
||||||
@ -48,6 +48,10 @@ find %{buildroot} -name '*.*a' -delete -print
|
|||||||
%check
|
%check
|
||||||
LD_LIBRARY_PATH=../datrie/.libs %make_build check
|
LD_LIBRARY_PATH=../datrie/.libs %make_build check
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_libdir}/libdatrie.so.*
|
%{_libdir}/libdatrie.so.*
|
||||||
@ -59,64 +63,9 @@ LD_LIBRARY_PATH=../datrie/.libs %make_build check
|
|||||||
%{_libdir}/pkgconfig/datrie-0.2.pc
|
%{_libdir}/pkgconfig/datrie-0.2.pc
|
||||||
%{_bindir}/trietool*
|
%{_bindir}/trietool*
|
||||||
%{_mandir}/man1/trietool*
|
%{_mandir}/man1/trietool*
|
||||||
%{_pkgdocdir}-devel/*.{html,css,png,js,svg}
|
%{_pkgdocdir}-devel/*.{html,css,png,js}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.2.13-11
|
|
||||||
- Bump release for October 2024 mass rebuild:
|
|
||||||
Resolves: RHEL-64018
|
|
||||||
|
|
||||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.2.13-10
|
|
||||||
- Bump release for June 2024 mass rebuild
|
|
||||||
|
|
||||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 17 2023 Peng Wu <pwu@redhat.com> - 0.2.13-6
|
|
||||||
- Migrate to SPDX license
|
|
||||||
|
|
||||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 1 2021 Peng Wu <pwu@redhat.com> - 0.2.13-1
|
|
||||||
- Update to 0.2.13
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-14
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Oct 14 2020 Peng Wu <pwu@redhat.com> - 0.2.9-13
|
|
||||||
- Fixes FTBFS
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-7
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user