This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goplasmabindings. from e638a43 CMakeLists.txt: create metadata.desktop via a custom target with the ALL option enabled and BYPRODUCTS set correctly, so that the clean target automatically removes it as well. new 50be1a3 CMakeLists.txt: fix warning due to mismatched if/endif parameters. new 830d243 debian/rules: fix USE_DESKTOP_FILE cmake option usage/typo. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: CMakeLists.txt | 2 +- debian/changelog | 2 ++ debian/rules | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goplasmabindings.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goplasmabindings. commit 50be1a3b5bc243223c9c32c558dc0c871bd993e2 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Aug 11 23:40:38 2023 +0200 CMakeLists.txt: fix warning due to mismatched if/endif parameters. --- CMakeLists.txt | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 74e3e03..de77544 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ if (USE_PLASMA5) include (ECMQmlModule OPTIONAL RESULT_VARIABLE ECMQmlModule_path) if (NOT ECMQmlModule_path STREQUAL "NOTFOUND") set (HAVE_ECMQMLMODULE TRUE) - endif (ECMQmlModule_path STREQUAL "NOTFOUND") + endif (NOT ECMQmlModule_path STREQUAL "NOTFOUND") find_package ( KF5 REQUIRED COMPONENTS diff --git a/debian/changelog b/debian/changelog index 65a45c9..7c4eaff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -47,6 +47,7 @@ x2goplasmabindings (3.0.2.3-0x2go1) UNRELEASED; urgency=medium option enabled and BYPRODUCTS set correctly, so that the clean target automatically removes it as well. Only do that if actually requested, though. + - CMakeLists.txt: fix warning due to mismatched if/endif parameters. * x2goplasmabindings.spec: + Prepare for Plasma 5 support. + Stop duplicating Group tag. -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goplasmabindings.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goplasmabindings. commit 830d2434328690a790a072466b8463e424d9d243 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Aug 11 23:42:11 2023 +0200 debian/rules: fix USE_DESKTOP_FILE cmake option usage/typo. --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7c4eaff..2003f45 100644 --- a/debian/changelog +++ b/debian/changelog @@ -92,6 +92,7 @@ x2goplasmabindings (3.0.2.3-0x2go1) UNRELEASED; urgency=medium + Add USE_DESKTOP_FILE selector to support older systems. + Fix syntax. + Enable verbose Makefiles. + + Fix USE_DESKTOP_FILE cmake option usage/typo. * debian/copyright: + Add information for x2goplasmoidkf5.cpp, which is GPL-3.0-only. + Add information for package/contents/ui/main.qml. diff --git a/debian/rules b/debian/rules index 4070522..80bcfa4 100755 --- a/debian/rules +++ b/debian/rules @@ -112,4 +112,4 @@ endif dh $@ override_dh_auto_configure: - dh_auto_configure -- -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DUSE_PLASMA5=$(USE_PLASMA5) -DUSE_DESKTOPFILE=$(USE_DESKTOP_FILE) + dh_auto_configure -- -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DUSE_PLASMA5=$(USE_PLASMA5) -DUSE_DESKTOP_FILE=$(USE_DESKTOP_FILE) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goplasmabindings.git