Received: by mail.netbsd.org (Postfix, from userid 605) id 145AA84D9E; Sat, 17 Jun 2017 19:55:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 95A7684D8F for ; Sat, 17 Jun 2017 19:55:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id nVg8LY5PNtaH for ; Sat, 17 Jun 2017 19:55:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 28E5B84D77 for ; Sat, 17 Jun 2017 19:55:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 273E8FAE8; Sat, 17 Jun 2017 19:55:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1497729325161620" MIME-Version: 1.0 Date: Sat, 17 Jun 2017 19:55:25 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/x11/plasma-framework To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170617195525.273E8FAE8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1497729325161620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sat Jun 17 19:55:25 UTC 2017 Modified Files: pkgsrc/x11/plasma-framework: distinfo Added Files: pkgsrc/x11/plasma-framework/patches: patch-autotests_CMakeLists.txt Log Message: Fix cmake 3.8 issue. Patch from upstream. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/x11/plasma-framework/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/x11/plasma-framework/patches/patch-autotests_CMakeLists.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1497729325161620 Content-Disposition: inline Content-Length: 1909 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/plasma-framework/distinfo diff -u pkgsrc/x11/plasma-framework/distinfo:1.2 pkgsrc/x11/plasma-framework/distinfo:1.3 --- pkgsrc/x11/plasma-framework/distinfo:1.2 Sun Aug 21 21:29:46 2016 +++ pkgsrc/x11/plasma-framework/distinfo Sat Jun 17 19:55:24 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2016/08/21 21:29:46 markd Exp $ +$NetBSD: distinfo,v 1.3 2017/06/17 19:55:24 joerg Exp $ SHA1 (plasma-framework-5.25.0.tar.xz) = 6e332e5ae81251b7ea7ed038437ae8a3c0aabcdc RMD160 (plasma-framework-5.25.0.tar.xz) = 6dd5a5846d21b169798e8488f8aca1d9914a1470 SHA512 (plasma-framework-5.25.0.tar.xz) = a7bc0ce0ba0c7bec5fbdb64a831cb7b0d3928b568a19b165a80d4b5885dcff8fd054a271a20fea4d970d65faca08b8e4f67e408bc6a01173372052bbc7ea7908 Size (plasma-framework-5.25.0.tar.xz) = 4487024 bytes +SHA1 (patch-autotests_CMakeLists.txt) = e9fe4d77a7abadd69c1f03e2b3c4899f258ace7f Added files: Index: pkgsrc/x11/plasma-framework/patches/patch-autotests_CMakeLists.txt diff -u /dev/null pkgsrc/x11/plasma-framework/patches/patch-autotests_CMakeLists.txt:1.1 --- /dev/null Sat Jun 17 19:55:25 2017 +++ pkgsrc/x11/plasma-framework/patches/patch-autotests_CMakeLists.txt Sat Jun 17 19:55:25 2017 @@ -0,0 +1,12 @@ +$NetBSD: patch-autotests_CMakeLists.txt,v 1.1 2017/06/17 19:55:25 joerg Exp $ + +--- autotests/CMakeLists.txt.orig 2017-06-16 12:14:47.727172257 +0000 ++++ autotests/CMakeLists.txt +@@ -21,6 +21,7 @@ endif() + MACRO(PLASMA_UNIT_TESTS) + FOREACH(_testname ${ARGN}) + add_executable(${_testname} ${_testname}.cpp) ++ target_include_directories(${_testname} PRIVATE "$>;") + target_link_libraries(${_testname} Qt5::Qml Qt5::Test + KF5::Plasma KF5::PlasmaQuick + KF5::Archive KF5::CoreAddons --_----------=_1497729325161620--