Compare commits
10 Commits
8255b569b4
...
2b3221745b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b3221745b | ||
|
|
d50951825d | ||
|
|
780c199ca6 | ||
|
|
5fe7456763 | ||
|
|
61d2d6808a | ||
|
|
dd813b46f5 | ||
|
|
4f7b1f2716 | ||
|
|
6a71d5092f | ||
|
|
b8bfd00287 | ||
|
|
273ae5a6a8 |
52
0002-fix-error-of-libkysdk-kabase-undefined-reference.patch
Normal file
52
0002-fix-error-of-libkysdk-kabase-undefined-reference.patch
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
From 015431686de628651a2ae8aed564dbbbe5b37b0c Mon Sep 17 00:00:00 2001
|
||||||
|
From: peijiankang <peijiankang@kylinos.cn>
|
||||||
|
Date: Mon, 27 May 2024 16:18:02 +0800
|
||||||
|
Subject: [PATCH] fix error of libkysdk-kabase undefined reference
|
||||||
|
|
||||||
|
---
|
||||||
|
kysdk-kabase/kabase/kabase.pro | 2 +-
|
||||||
|
.../kabase/kylin_image_codec/image_load/image_load.cpp | 3 ++-
|
||||||
|
.../kabase/kylin_image_codec/image_save/image_save.cpp | 1 +
|
||||||
|
3 files changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/kysdk-kabase/kabase/kabase.pro b/kysdk-kabase/kabase/kabase.pro
|
||||||
|
index 07df867..92e0adc 100644
|
||||||
|
--- a/kysdk-kabase/kabase/kabase.pro
|
||||||
|
+++ b/kysdk-kabase/kabase/kabase.pro
|
||||||
|
@@ -11,7 +11,7 @@ TEMPLATE = lib
|
||||||
|
|
||||||
|
CONFIG += c++11 console link_pkgconfig no_keywords
|
||||||
|
|
||||||
|
-LIBS += -ldl -lpthread -lsystemd -lkylog -lkyconf -L/usr/lib/kysdk/kysdk-base
|
||||||
|
+LIBS += -ldl -lpthread -lsystemd -lgif -lkylog -lkyconf -L/usr/lib/kysdk/kysdk-base
|
||||||
|
|
||||||
|
greaterThan(QT_VER_MAJ , 4) {
|
||||||
|
LIBS += -lopencv_core -lopencv_imgcodecs -lopencv_imgproc -lfreeimage -lfreeimageplus
|
||||||
|
diff --git a/kysdk-kabase/kabase/kylin_image_codec/image_load/image_load.cpp b/kysdk-kabase/kabase/kylin_image_codec/image_load/image_load.cpp
|
||||||
|
index 1520a2c..6bb8b88 100644
|
||||||
|
--- a/kysdk-kabase/kabase/kylin_image_codec/image_load/image_load.cpp
|
||||||
|
+++ b/kysdk-kabase/kabase/kylin_image_codec/image_load/image_load.cpp
|
||||||
|
@@ -1,3 +1,4 @@
|
||||||
|
+#define STB_IMAGE_IMPLEMENTATION
|
||||||
|
#include "kylin_image_codec/kylinimagecodec.hpp"
|
||||||
|
|
||||||
|
namespace kdk
|
||||||
|
@@ -379,4 +380,4 @@ FREE_IMAGE_FORMAT KylinImageCodec::get_real_format(const QString &path)
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace kabase
|
||||||
|
-} // namespace kdk
|
||||||
|
\ No newline at end of file
|
||||||
|
+} // namespace kdk
|
||||||
|
diff --git a/kysdk-kabase/kabase/kylin_image_codec/image_save/image_save.cpp b/kysdk-kabase/kabase/kylin_image_codec/image_save/image_save.cpp
|
||||||
|
index ce1b927..b01014c 100644
|
||||||
|
--- a/kysdk-kabase/kabase/kylin_image_codec/image_save/image_save.cpp
|
||||||
|
+++ b/kysdk-kabase/kabase/kylin_image_codec/image_save/image_save.cpp
|
||||||
|
@@ -1,3 +1,4 @@
|
||||||
|
+#define STB_IMAGE_WRITE_IMPLEMENTATION
|
||||||
|
#include "kylin_image_codec/kylinimagecodec.hpp"
|
||||||
|
|
||||||
|
namespace kdk
|
||||||
|
--
|
||||||
|
2.43.0
|
||||||
|
|
||||||
8318
0011-update-changelog.patch
Normal file
8318
0011-update-changelog.patch
Normal file
File diff suppressed because it is too large
Load Diff
BIN
libkysdk-applications-2.0.0.0.tar.xz
Normal file
BIN
libkysdk-applications-2.0.0.0.tar.xz
Normal file
Binary file not shown.
Binary file not shown.
@ -1,13 +1,13 @@
|
|||||||
%define debug_package %{nil}
|
|
||||||
|
|
||||||
Name: libkysdk-applications
|
Name: libkysdk-applications
|
||||||
Version: 2.0.0
|
Version: 2.0.0.0
|
||||||
Release: 1
|
Release: 3
|
||||||
Summary: Kylin Software Development Kit - Applications Layer Kit
|
Summary: Kylin Software Development Kit - Applications Layer Kit
|
||||||
License: GPL-2+
|
License: GPL-2+
|
||||||
URL: http://www.ukui.org
|
URL: http://www.ukui.org
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
Patch01: 0001-fix-compile-error-of-libkysdk-applications.patch
|
Patch01: 0001-fix-compile-error-of-libkysdk-applications.patch
|
||||||
|
Patch02: 0011-update-changelog.patch
|
||||||
|
Patch03: 0002-fix-error-of-libkysdk-kabase-undefined-reference.patch
|
||||||
|
|
||||||
BuildRequires: freeimage-devel
|
BuildRequires: freeimage-devel
|
||||||
BuildRequires: giflib-devel
|
BuildRequires: giflib-devel
|
||||||
@ -31,8 +31,9 @@ BuildRequires: qt5-qtbase-devel
|
|||||||
BuildRequires: qt5-qtbase-private-devel
|
BuildRequires: qt5-qtbase-private-devel
|
||||||
BuildRequires: qtchooser
|
BuildRequires: qtchooser
|
||||||
BuildRequires: qt5-qttools-devel
|
BuildRequires: qt5-qttools-devel
|
||||||
|
BuildRequires: chrpath
|
||||||
|
|
||||||
Requires: libkysdk-alm libkysdk-kabase libkysdk-qtwidgets libkysdk-ukenv libkysdk-waylandhelper libkysdk-widgetutils
|
Requires: libkysdk-alm libkysdk-kabase libkysdk-qtwidgets libkysdk-ukenv libkysdk-waylandhelper libkysdk-widgetutils libkysdk-notification
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Kylin Software Development Kit - Applications Layer Kit
|
Kylin Software Development Kit - Applications Layer Kit
|
||||||
@ -47,7 +48,7 @@ To install ld.so.conf file.
|
|||||||
|
|
||||||
%package -n libkysdk-applications-devel
|
%package -n libkysdk-applications-devel
|
||||||
Summary: libdevel
|
Summary: libdevel
|
||||||
Requires: libkysdk-alm-devel libkysdk-kabase-devel libkysdk-qtwidgets-devel libkysdk-ukenv-devel libkysdk-waylandhelper-devel libkysdk-widgetutils-devel
|
Requires: libkysdk-alm-devel libkysdk-kabase-devel libkysdk-qtwidgets-devel libkysdk-ukenv-devel libkysdk-waylandhelper-devel libkysdk-widgetutils-devel libkysdk-notification-devel
|
||||||
|
|
||||||
%description -n libkysdk-applications-devel
|
%description -n libkysdk-applications-devel
|
||||||
libkysdk-applications development
|
libkysdk-applications development
|
||||||
@ -147,22 +148,37 @@ Requires: libkysdk-ukenv
|
|||||||
kysdk-ukenv head file
|
kysdk-ukenv head file
|
||||||
|
|
||||||
|
|
||||||
|
%package -n libkysdk-notification
|
||||||
|
Summary: kysdk-notification shared library
|
||||||
|
Requires: libkysdk-appcommon
|
||||||
|
|
||||||
|
%description -n libkysdk-notification
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%package -n libkysdk-notification-devel
|
||||||
|
Summary: kysdk-notification head file
|
||||||
|
Requires: libkysdk-notification
|
||||||
|
|
||||||
|
%description -n libkysdk-notification-devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %{name}-%{version} -p1
|
||||||
%patch01 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
qmake-qt5 ..
|
%{qmake_qt5} ..
|
||||||
make -j4
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
pushd build
|
pushd build
|
||||||
make INSTALL_ROOT=%{buildroot} install
|
%{make_install} INSTALL_ROOT=%{buildroot}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
chrpath -d %{buildroot}/usr/lib/kysdk/applications/libkysdk-qtwidgets.so.1.2.0
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -216,6 +232,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/kysdk/applications/kpushbutton.h
|
%{_includedir}/kysdk/applications/kpushbutton.h
|
||||||
%{_includedir}/kysdk/applications/kshadowhelper.h
|
%{_includedir}/kysdk/applications/kshadowhelper.h
|
||||||
%{_includedir}/kysdk/applications/ktranslucentfloor.h
|
%{_includedir}/kysdk/applications/ktranslucentfloor.h
|
||||||
|
%{_includedir}/kysdk/applications/parmscontroller.h
|
||||||
|
|
||||||
%files -n libkysdk-qtwidgets
|
%files -n libkysdk-qtwidgets
|
||||||
%{_prefix}/lib/kysdk/applications/libkysdk-qtwidgets.so*
|
%{_prefix}/lib/kysdk/applications/libkysdk-qtwidgets.so*
|
||||||
@ -265,7 +282,35 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/kysdk/applications/gsettingmonitor.h
|
%{_includedir}/kysdk/applications/gsettingmonitor.h
|
||||||
%{_includedir}/kysdk/applications/usermanual.h
|
%{_includedir}/kysdk/applications/usermanual.h
|
||||||
|
|
||||||
|
%files -n libkysdk-notification
|
||||||
|
%{_prefix}/lib/kysdk/applications/libkysdk-notification.so*
|
||||||
|
|
||||||
|
%files -n libkysdk-notification-devel
|
||||||
|
%{_datadir}/pkgconfig/kysdk-notification.pc
|
||||||
|
%{_includedir}/kysdk/applications/kbackgroundgroup.h
|
||||||
|
%{_includedir}/kysdk/applications/kbuttonbox.h
|
||||||
|
%{_includedir}/kysdk/applications/kcolorbutton.h
|
||||||
|
%{_includedir}/kysdk/applications/kcolorcombobox.h
|
||||||
|
%{_includedir}/kysdk/applications/klineframe.h
|
||||||
|
%{_includedir}/kysdk/applications/kmessagebox.h
|
||||||
|
%{_includedir}/kysdk/applications/knotifier.h
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 27 2024 peijiankang <peijiankang@kylinos.cn> - 2.0.0.0-3
|
||||||
|
- add 0002-fix-error-of-libkysdk-kabase-undefined-reference.patch
|
||||||
|
|
||||||
|
* Wed Apr 24 2024 peijiankang <peijiankang@kylinos.cn> - 2.0.0.0-2
|
||||||
|
- add 0011-update-changelog.patch
|
||||||
|
|
||||||
|
* Fri May 26 2023 peijiankang <peijiankang@kylinos.cn> - 2.0.0.0-1
|
||||||
|
- update version to 2.0.0.0
|
||||||
|
|
||||||
|
* Wed Mar 01 2023 peijiankang <peijiankang@kylinos.cn> - 2.0.0-3
|
||||||
|
- remove rpath of libkysdk-qtwidgets
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 peijiankang <peijiankang@kylinos.cn> - 2.0.0-2
|
||||||
|
- add build debuginfo and debugsource
|
||||||
|
|
||||||
* Thu Dec 22 2022 peijiankang <peijiankang@kylinos.cn> - 2.0.0-1
|
* Thu Dec 22 2022 peijiankang <peijiankang@kylinos.cn> - 2.0.0-1
|
||||||
- update version to 2.0.0
|
- update version to 2.0.0
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user