Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package librime-lua for openSUSE:Factory checked in at 2024-05-01 14:57:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/librime-lua (Old) and /work/SRC/openSUSE:Factory/.librime-lua.new.1880 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "librime-lua" Wed May 1 14:57:54 2024 rev:4 rq:1171123 version:0.0.0+git20240308.20ddea9 Changes: -------- --- /work/SRC/openSUSE:Factory/librime-lua/librime-lua.changes 2023-11-07 21:29:17.481993623 +0100 +++ /work/SRC/openSUSE:Factory/.librime-lua.new.1880/librime-lua.changes 2024-05-01 14:58:25.234193277 +0200 @@ -1,0 +2,17 @@ +Wed May 1 09:04:44 UTC 2024 - Takashi Iwai <ti...@suse.com> + +- Update to git20240308.20ddea9: + https://build.opensuse.org/request/show/1159682 + The current librime-lua does not work with librime 1.10 in the TW repo. + This project updates the source from upstream to make it work. +- glog.patch: + Add compile definitions for glog +- Dropped obsoleted boost_signals2.patch + +------------------------------------------------------------------- +Fri Mar 1 09:24:53 UTC 2024 - pgaj...@suse.com + +- Use %autosetup macro. Allows to eliminate the usage of deprecated + %patchN + +------------------------------------------------------------------- Old: ---- boost_signals2.patch librime-lua-0.0.0+git20211220.8b37d55.tar.xz New: ---- glog.patch librime-lua-0.0.0+git20240308.20ddea9.tar.gz BETA DEBUG BEGIN: Old: Add compile definitions for glog - Dropped obsoleted boost_signals2.patch BETA DEBUG END: BETA DEBUG BEGIN: New: This project updates the source from upstream to make it work. - glog.patch: Add compile definitions for glog BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ librime-lua.spec ++++++ --- /var/tmp/diff_new_pack.p9XnLW/_old 2024-05-01 14:58:26.542240737 +0200 +++ /var/tmp/diff_new_pack.p9XnLW/_new 2024-05-01 14:58:26.554241172 +0200 @@ -1,7 +1,7 @@ # # spec file for package librime-lua # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,13 +17,13 @@ Name: librime-lua -Version: 0.0.0+git20211220.8b37d55 +Version: 0.0.0+git20240308.20ddea9 Release: 0 Summary: Lua plugin for librime License: SUSE-Permissive URL: https://github.com/hchunhui/librime-lua -Source: %{name}-%{version}.tar.xz -Patch0: boost_signals2.patch +Source: %{name}-%{version}.tar.gz +Patch0: glog.patch BuildRequires: boost-devel BuildRequires: cmake BuildRequires: darts @@ -31,6 +31,7 @@ BuildRequires: librime-private-devel BuildRequires: lua54-devel BuildRequires: marisa-devel +BuildRequires: opencc-devel BuildRequires: xorgproto-devel BuildRequires: pkgconfig(libglog) BuildRequires: pkgconfig(opencc) @@ -39,8 +40,7 @@ Lua plugin for librime. %prep -%setup -q -%patch0 -p1 +%autosetup -p1 %build %cmake -DBUILD_SHARED_LIBS=ON ++++++ glog.patch ++++++ --- librime-lua.orig/CMakeLists.txt +++ librime-lua/CMakeLists.txt @@ -38,6 +38,7 @@ aux_source_directory(src RIME_LUA_SRC) aux_source_directory(src/lib RIME_LUA_LIB_SRC) +add_compile_definitions(GLOG_USE_GLOG_EXPORT) add_library(rime-lua-objs OBJECT ${RIME_LUA_SRC} ${RIME_LUA_LIB_SRC} ${LUA_SRC}) if(BUILD_SHARED_LIBS) set_target_properties(rime-lua-objs PROPERTIES POSITION_INDEPENDENT_CODE ON)