Sync from SUSE:SLFO:Main gspell revision 2b42ff5b7ee2607e52ca6f8183a72c13
This commit is contained in:
parent
18b7f60075
commit
407dd29903
BIN
gspell-1.12.1.tar.xz
(Stored with Git LFS)
BIN
gspell-1.12.1.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
gspell-1.14.0.tar.xz
(Stored with Git LFS)
Normal file
BIN
gspell-1.14.0.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 13 06:30:00 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.14.0:
|
||||||
|
+ Build: re-add support for macOS.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 9 08:07:04 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.13.2:
|
||||||
|
+ Re-add support for installed unit tests.
|
||||||
|
+ Modernize a bit the codebase:
|
||||||
|
- License headers: follow the REUSE way of applying licenses,
|
||||||
|
with SPDX tags.
|
||||||
|
- Convert #include guards to #pragma once
|
||||||
|
+ Small improvements:
|
||||||
|
- Rename config.h to gspell-config.h
|
||||||
|
- Update gconstructor.h
|
||||||
|
- Re-organize files within the repository: have
|
||||||
|
tests/interactive-tests/ and tests/unit-tests/
|
||||||
|
- Changes from version 1.13.1:
|
||||||
|
+ Build systems:
|
||||||
|
- Add Meson.
|
||||||
|
- Remove Autotools.
|
||||||
|
- Add CMake experiment but reverted.
|
||||||
|
+ Bump soversion because a symbol was exported by mistake with
|
||||||
|
the Autotools.
|
||||||
|
+ Updated translations.
|
||||||
|
- Add meson BuildRequires and macros following upstream changes.
|
||||||
|
- Bump so version following upstream changes.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 10 09:28:51 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.12.2:
|
||||||
|
+ Small code maintenance: don't use g_slice_*().
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 1 07:54:06 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
Mon May 1 07:54:06 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
44
gspell.spec
44
gspell.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gspell
|
# spec file for package gspell
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,17 +16,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define shlib lib%{name}-1-2
|
%define shlib lib%{name}-1-3
|
||||||
Name: gspell
|
Name: gspell
|
||||||
Version: 1.12.1
|
Version: 1.14.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A spell checker library for GTK+ applications
|
Summary: A spell checker library for GTK+ applications
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Libraries/GNOME
|
Group: Development/Libraries/GNOME
|
||||||
URL: https://wiki.gnome.org/Projects/gspell
|
URL: https://wiki.gnome.org/Projects/gspell
|
||||||
Source0: https://download.gnome.org/sources/gspell/1.12/%{name}-%{version}.tar.xz
|
Source0: https://download.gnome.org/sources/gspell/1.14/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
BuildRequires: gtk-doc >= 1.25
|
BuildRequires: gtk-doc >= 1.25
|
||||||
|
BuildRequires: meson
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(enchant-2) >= 2.1.3
|
BuildRequires: pkgconfig(enchant-2) >= 2.1.3
|
||||||
BuildRequires: pkgconfig(glib-2.0) >= 2.44
|
BuildRequires: pkgconfig(glib-2.0) >= 2.44
|
||||||
@ -84,21 +85,24 @@ gspell.
|
|||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%meson \
|
||||||
--disable-static \
|
%{nil}
|
||||||
--enable-gtk-doc
|
%meson_build
|
||||||
%make_build
|
|
||||||
|
### FIXME ###
|
||||||
|
#%%check
|
||||||
|
#%%meson_test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%meson_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
%find_lang %{name}-1 %{?no_lang_C}
|
%find_lang %{name}-1 %{?no_lang_C}
|
||||||
|
|
||||||
%ldconfig_scriptlets -n %{shlib}
|
%ldconfig_scriptlets -n %{shlib}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license LICENSES
|
||||||
%doc AUTHORS ChangeLog README NEWS
|
%doc AUTHORS README.md NEWS
|
||||||
%{_bindir}/gspell-app1
|
%{_bindir}/gspell-app1
|
||||||
|
|
||||||
%files -n %{shlib}
|
%files -n %{shlib}
|
||||||
@ -108,13 +112,29 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%{_libdir}/girepository-1.0/Gspell-1.typelib
|
%{_libdir}/girepository-1.0/Gspell-1.typelib
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc %{_datadir}/gtk-doc/html/gspell-1.0/
|
%doc %{_datadir}/gtk-doc/html/gspell-1/
|
||||||
%{_includedir}/gspell-1/
|
%{_includedir}/gspell-1/
|
||||||
%{_libdir}/lib%{name}-1.so
|
%{_libdir}/lib%{name}-1.so
|
||||||
%{_libdir}/pkgconfig/gspell-1.pc
|
%{_libdir}/pkgconfig/gspell-1.pc
|
||||||
%{_datadir}/gir-1.0/*.gir
|
%{_datadir}/gir-1.0/*.gir
|
||||||
%dir %{_datadir}/vala/vapi
|
%dir %{_datadir}/vala/vapi
|
||||||
%{_datadir}/vala/vapi/gspell-1.*
|
%{_datadir}/vala/vapi/gspell-1.*
|
||||||
|
%dir %{_libexecdir}/installed-tests
|
||||||
|
%dir %{_libexecdir}/installed-tests/gspell-1
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-checker
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-entry
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-icu
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-inline-checker-text-buffer
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-text-iter
|
||||||
|
%{_libexecdir}/installed-tests/gspell-1/test-utils
|
||||||
|
%dir %{_datadir}/installed-tests
|
||||||
|
%dir %{_datadir}/installed-tests/gspell-1
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-checker.test
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-entry.test
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-icu.test
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-inline-checker-text-buffer.test
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-text-iter.test
|
||||||
|
%{_datadir}/installed-tests/gspell-1/test-utils.test
|
||||||
|
|
||||||
%files lang -f %{name}-1.lang
|
%files lang -f %{name}-1.lang
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user