diff mbox series

[1/5] Introduce KDE Frameworks 5 packages

Message ID 20180215204815.14707-1-pinaraf@pinaraf.info
State Accepted
Headers show
Series [1/5] Introduce KDE Frameworks 5 packages | expand

Commit Message

Pierre Feb. 15, 2018, 8:48 p.m. UTC
KDE Frameworks 5 is a set of libraries built on the Qt framework providing a
lot of powerfull classes and solutions for developers building Qt
applications.
Unlike the previous KDE libraries, they are split in tiny packages, reducing
dependencies as much as possible, making them usable even for embedded
projects.

This first commit introduce the kf5 packages folder

Signed-off-by: Pierre Ducroquet <pinaraf@pinaraf.info>
---
 DEVELOPERS            |  3 +++
 package/Config.in     |  1 +
 package/kf5/Config.in |  9 +++++++++
 package/kf5/kf5.mk    | 11 +++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/kf5/Config.in
 create mode 100644 package/kf5/kf5.mk

Comments

Thomas Petazzoni June 30, 2018, 10:08 p.m. UTC | #1
Hello,

On Thu, 15 Feb 2018 21:48:11 +0100, Pierre Ducroquet wrote:
> KDE Frameworks 5 is a set of libraries built on the Qt framework providing a
> lot of powerfull classes and solutions for developers building Qt
> applications.
> Unlike the previous KDE libraries, they are split in tiny packages, reducing
> dependencies as much as possible, making them usable even for embedded
> projects.
> 
> This first commit introduce the kf5 packages folder
> 
> Signed-off-by: Pierre Ducroquet <pinaraf@pinaraf.info>

I've applied this patch to master. First, I fixed the commit title,
because we have the policy of using commit titles like this:

	<package>: <description>

I also fixed the Config.in.help text which had too long lines and
trailing spaces. Please make sure to use check-package to verify such
coding style issues.

> +	depends on BR2_PACKAGE_QT5

I added a dependency on BR2_PACKAGE_QT5_VERSION_LATEST, because at
least kf5-networkmanager-qt needed Qt5 >= 5.8.

> +KF5_VERSION_MAJOR = 5.43

This version wasn't available anymore, so I switched to 5.47 instead.
It's a bit annoying if they remove old versions, though. Perhaps
something to tell upstream not to do.

> +KF5_VERSION = $(KF5_VERSION_MAJOR).0
> +KF5_SITE = https://download.kde.org/stable/frameworks/$(KF5_VERSION_MAJOR)
> +
> +include $(sort $(wildcard package/kf5/*/*.mk))

Thanks!

Thomas
diff mbox series

Patch

diff --git a/DEVELOPERS b/DEVELOPERS
index c524cb6ac5..c0e061c764 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1957,3 +1957,6 @@  F:	package/qjson/
 F:	package/quazip/
 F:	package/shapelib/
 F:	package/tinc/
+
+N:	Pierre Ducroquet <pinaraf@pinaraf.info>
+F:	package/kf5/
diff --git a/package/Config.in b/package/Config.in
index 9cd5d9c087..f9d7a6e190 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -302,6 +302,7 @@  comment "Graphic libraries"
 comment "Other GUIs"
 	source "package/qt/Config.in"
 	source "package/qt5/Config.in"
+	source "package/kf5/Config.in"
 if BR2_PACKAGE_QT || BR2_PACKAGE_QT5
 comment "QT libraries and helper libraries"
 	source "package/grantlee/Config.in"
diff --git a/package/kf5/Config.in b/package/kf5/Config.in
new file mode 100644
index 0000000000..4e6ee3a107
--- /dev/null
+++ b/package/kf5/Config.in
@@ -0,0 +1,9 @@ 
+menuconfig BR2_PACKAGE_KF5
+	bool "KF5"
+	depends on BR2_PACKAGE_QT5
+	help
+	  This option enables the KF5 KDE Frameworks. Sub-options allow to
+	  select which modules should be built.
+
+if BR2_PACKAGE_KF5
+endif
diff --git a/package/kf5/kf5.mk b/package/kf5/kf5.mk
new file mode 100644
index 0000000000..14cae5fb74
--- /dev/null
+++ b/package/kf5/kf5.mk
@@ -0,0 +1,11 @@ 
+################################################################################
+#
+# kf5
+#
+################################################################################
+
+KF5_VERSION_MAJOR = 5.43
+KF5_VERSION = $(KF5_VERSION_MAJOR).0
+KF5_SITE = https://download.kde.org/stable/frameworks/$(KF5_VERSION_MAJOR)
+
+include $(sort $(wildcard package/kf5/*/*.mk))