Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
6022b31884
!18 update to version 1.0.3
From: @dou33 
Reviewed-by: @peijiankang 
Signed-off-by: @peijiankang
2023-05-23 07:41:41 +00:00
dou33
52644d8621 update to version 1.0.3 2023-05-23 14:14:16 +08:00
openeuler-ci-bot
babc6d5560
!12 [sync] PR-11: License compliance rectification
From: @openeuler-sync-bot 
Reviewed-by: @peijiankang 
Signed-off-by: @peijiankang
2022-06-16 06:56:12 +00:00
jianli-97
879c17ef26 License compliance rectification
(cherry picked from commit 292bf58712fa1c038c9767478363a64dc9519376)
2022-06-16 10:38:58 +08:00
openeuler-ci-bot
af2ea613b9
!8 fix conflict lib file
From: @dou33 
Reviewed-by: @pei-jiankang 
Signed-off-by: @pei-jiankang
2022-03-02 03:00:34 +00:00
dou33
69f72bd110 fix conflict lib file 2022-03-02 10:45:29 +08:00
openeuler-ci-bot
7fdf6a9525
!5 add ukui-log4qt package
From: @dou33 
Reviewed-by: @tanyulong2021 
Signed-off-by: @tanyulong2021
2022-02-25 06:11:51 +00:00
dou33
6cf93b5545 add ukui-log4qt package 2022-02-25 13:50:51 +08:00
openeuler-ci-bot
d083bb0666
!2 change head file location
From: @dou33 
Reviewed-by: @pei-jiankang 
Signed-off-by: @pei-jiankang
2022-02-24 01:22:30 +00:00
dou33
8c6635c045 change head file location 2022-02-23 21:19:55 +08:00
6 changed files with 101 additions and 8 deletions

View File

@ -0,0 +1,38 @@
From 659f8fcfb42167a9d1464f3c7f84c6b666c23b3f Mon Sep 17 00:00:00 2001
From: peijiankang <peijiankang@kylinos.cn>
Date: Mon, 27 Mar 2023 13:20:49 +0800
Subject: [PATCH] Fix the error caused by the non-existence of the lsb-release
---
src/common/kylin-com4c.c | 3 +++
src/common/kylin-com4cxx.cpp | 3 +++
2 files changed, 6 insertions(+)
diff --git a/src/common/kylin-com4c.c b/src/common/kylin-com4c.c
index ef744c2..bc8e98f 100644
--- a/src/common/kylin-com4c.c
+++ b/src/common/kylin-com4c.c
@@ -143,6 +143,9 @@ char* kdk_get_xdgsessiontype()
int kdk_get_lsbrelease(const char *key, char *value, int value_max_len)
{
int nRet = -1;
+//在openEuler中/etc/lsb-release文件不存在直接返回
+ return nRet;
+
if (NULL == key || NULL == value || 0 >= value_max_len)
return nRet;
dictionary *iniHandle = iniparser_load(LSB_RELEASE_FILE);
diff --git a/src/common/kylin-com4cxx.cpp b/src/common/kylin-com4cxx.cpp
index 6cbe950..d95e393 100644
--- a/src/common/kylin-com4cxx.cpp
+++ b/src/common/kylin-com4cxx.cpp
@@ -147,6 +147,9 @@ string KDKGetXdgSessionType()
string KDKGetLSBRelease(const string key)
{
+//在openEuler中/etc/lsb-release文件不存在直接返回
+ return "";
+
if (key.empty()) {
return "";
}

12
fix_log4qt_lib_path.patch Normal file
View File

@ -0,0 +1,12 @@
diff -Naur ukui-interface-1.0.2/src/log4qt/ukui-log4qt.pro ukui-interface-1.0.2~/src/log4qt/ukui-log4qt.pro
--- ukui-interface-1.0.2/src/log4qt/ukui-log4qt.pro 2021-11-04 16:31:37.000000000 +0800
+++ ukui-interface-1.0.2~/src/log4qt/ukui-log4qt.pro 2022-02-25 12:37:20.906722506 +0800
@@ -35,7 +35,7 @@
# Default rules for deployment.
unix {
- target.path = /usr/lib
+ target.path = /usr/lib64
}
!isEmpty(target.path): INSTALLS += target

Binary file not shown.

BIN
ukui-interface-1.0.3.tar.gz Normal file

Binary file not shown.

View File

@ -1,33 +1,48 @@
%define debug_package %{nil}
Name: ukui-interface
Version: 1.0.2
Release: 1
Version: 1.0.3
Release: 3
Summary: UKUI interface provides the interface for system configuration and related libraries.
License: GPL-3+ Apache-2.0
License: GPL-3+ and Apache-2.0
URL: https://github.com/ukui/ukui-interface
Source0: %{name}-%{version}.tar.gz
Patch0: fix_log4qt_lib_path.patch
Patch1: 0001-Fix-the-error-caused-by-the-non-existence-of-the-lsb-release.patch
BuildRequires: glib2-devel autoconf automake libtool qt5-qtbase-devel gsettings-qt-devel qt5-qttools-devel iniparser
Provides: libukui-log4qt libukui-log4qt-devel
%description
ukui interface provides the interface for system configuration and related libraries.
%prep
%setup -q
./autogen.sh
%patch0 -p1
%patch1 -p1
%build
./autogen.sh
./configure --prefix=/usr --libdir=/usr/lib64
%{make_build}
cd %{_builddir}/%{name}-%{version}/src/log4qt
%{qmake_qt5}
%{make_build}
%install
%{make_install} INSTALL_ROOT=%{buildroot}
mkdir -p %{buildroot}/usr/include/ukuisdk
mv %{buildroot}/usr/include/*.h %{buildroot}/usr/include/ukuisdk
cd %{_builddir}/%{name}-%{version}/src/log4qt
make INSTALL_ROOT=%{buildroot} install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%doc debian/copyright debian/changelog
%{_bindir}/ukui-backgroundserver
%{_bindir}/ukui-desktopserver
%{_bindir}/ukui-fontserver
@ -40,10 +55,34 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/ukui-sessionserver
%{_bindir}/ukui-touchpadserver
%{_bindir}/ukui-xkbgeneralserver
%{_includedir}/kylin-*.h
%{_includedir}/ukuisdk/kylin-*.h
%{_libdir}/libukui*
%{_datadir}/dbus-1/services/*.service
%{_includedir}/ukui-log4qt.h
%{_datadir}/glib-2.0/schemas/org.ukui.log4qt.gschema.xml
%changelog
* Mon Mar 27 2023 peijiankang <peijiankang@kylinos.cn> - 1.0.3-3
- Fix the error caused by the non-existence of the lsb-release
* Wed Jan 18 2023 peijiankang <peijiankang@kylinos.cn> - 1.0.3-2
- add build debuginfo and debugsource
* Wed Nov 9 2022 douyan <douyan@kylinos.cn> - 1.0.3-1
- update to upstream version 1.0.3-1
* Sun May 29 2022 lijian <lijian2@kylinos.cn> - 1.0.2-5
- License compliance rectification
* Wed Mar 2 2022 douyan <douyan@kylinos.cn> - 1.0.2-4
- fix conflict lib file
* Fri Feb 25 2022 douyan <douyan@kylinos.cn> - 1.0.2-3
- add ukui-log4qt package
* Thu Feb 24 2022 douyan<douyan@kylinos.cn> - 1.0.2-2
- change head file location
* Thu Feb 17 2022 pei-jiankang <peijiankang@kylinos.cn> - 1.0.2-1
- Init package for openEuler

4
ukui-interface.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: https://github.com/ukui/ukui-interface.git
tag_prefix: "v"
separator: "."