Hello community, here is the log from the commit of package artikulate for openSUSE:Factory checked in at 2019-07-05 13:49:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/artikulate (Old) and /work/SRC/openSUSE:Factory/.artikulate.new.4615 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "artikulate" Fri Jul 5 13:49:05 2019 rev:64 rq:713489 version:19.04.2 Changes: -------- --- /work/SRC/openSUSE:Factory/artikulate/artikulate.changes 2019-06-14 20:25:03.662788065 +0200 +++ /work/SRC/openSUSE:Factory/.artikulate.new.4615/artikulate.changes 2019-07-05 13:49:06.529489456 +0200 @@ -1,0 +2,11 @@ +Thu Jul 4 18:27:27 UTC 2019 - Fabian Vogt <[email protected]> + +- Add patch to not install devel links for internal libraries: + * 0001-Install-internal-libraries-with-NAMELINK_SKIP.patch + +------------------------------------------------------------------- +Thu Jul 4 18:05:18 UTC 2019 - Fabian Vogt <[email protected]> + +- Disable building the GStreamer backend + +------------------------------------------------------------------- New: ---- 0001-Install-internal-libraries-with-NAMELINK_SKIP.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ artikulate.spec ++++++ --- /var/tmp/diff_new_pack.XyBTjg/_old 2019-07-05 13:49:08.185492010 +0200 +++ /var/tmp/diff_new_pack.XyBTjg/_new 2019-07-05 13:49:08.185492010 +0200 @@ -28,9 +28,10 @@ Group: Amusements/Teaching/Other URL: http://edu.kde.org Source0: %{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM +Patch100: 0001-Install-internal-libraries-with-NAMELINK_SKIP.patch BuildRequires: extra-cmake-modules >= %{kf5_version} BuildRequires: fdupes -BuildRequires: gstreamer-plugins-qt5-devel BuildRequires: karchive-devel BuildRequires: kconfig-devel BuildRequires: kcrash-devel @@ -53,19 +54,14 @@ Requires: kqtquickcharts >= %{_kapp_version} Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -%if %{with lang} -Recommends: %{name}-lang -%endif %description Improve your pronunciation by listening to native speakers. -%if %{with lang} %lang_package -%endif %prep -%setup -q +%autosetup -p1 %build %cmake_kf5 -d build @@ -94,9 +90,9 @@ %doc %lang(en) %{_kf5_htmldir}/en/artikulate/ %{_kf5_iconsdir}/hicolor/*/*/artikulate*.* %{_kf5_iconsdir}/hicolor/*/actions/language-artikulate.* -%{_kf5_libdir}/libartikulatecore.so* -%{_kf5_libdir}/libartikulatelearnerprofile.so* -%{_kf5_libdir}/libartikulatesound.so* +%{_kf5_libdir}/libartikulatecore.so.* +%{_kf5_libdir}/libartikulatelearnerprofile.so.* +%{_kf5_libdir}/libartikulatesound.so.* %{_kf5_plugindir}/artikulate/ %{_kf5_sharedir}/artikulate/ ++++++ 0001-Install-internal-libraries-with-NAMELINK_SKIP.patch ++++++ >From 66611f64ee98a4ffb7bac26b8c4f153c8102bae9 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <[email protected]> Date: Thu, 4 Jul 2019 20:26:25 +0200 Subject: [PATCH] Install internal libraries with NAMELINK_SKIP They don't have any API/ABI guarantees, to the namelink would be mostly useless anyway. --- liblearnerprofile/src/CMakeLists.txt | 1 + libsound/src/CMakeLists.txt | 1 + src/CMakeLists.txt | 1 + 3 files changed, 3 insertions(+) diff --git a/liblearnerprofile/src/CMakeLists.txt b/liblearnerprofile/src/CMakeLists.txt index a15cdef..37ab579 100644 --- a/liblearnerprofile/src/CMakeLists.txt +++ b/liblearnerprofile/src/CMakeLists.txt @@ -57,5 +57,6 @@ set_target_properties( install( TARGETS artikulatelearnerprofile + LIBRARY NAMELINK_SKIP ${INSTALL_TARGETS_DEFAULT_ARGS} ) diff --git a/libsound/src/CMakeLists.txt b/libsound/src/CMakeLists.txt index 1ad39ea..4050cf7 100644 --- a/libsound/src/CMakeLists.txt +++ b/libsound/src/CMakeLists.txt @@ -55,6 +55,7 @@ set_target_properties( install( TARGETS artikulatesound + LIBRARY NAMELINK_SKIP ${INSTALL_TARGETS_DEFAULT_ARGS} ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 066341a..11d64fc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -93,6 +93,7 @@ set_target_properties( ) install( TARGETS artikulatecore + LIBRARY NAMELINK_SKIP DESTINATION ${INSTALL_TARGETS_DEFAULT_ARGS} ) install(FILES artikulate.knsrc DESTINATION ${CONFIG_INSTALL_DIR}) -- 2.22.0
