From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 472E6138334 for ; Wed, 15 Aug 2018 16:29:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA26DE0922; Wed, 15 Aug 2018 16:29:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A81B8E0922 for ; Wed, 15 Aug 2018 16:29:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B1BF335CD5 for ; Wed, 15 Aug 2018 16:29:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0037F379 for ; Wed, 15 Aug 2018 16:29:49 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1534350553.a73defea0b97ac73bc21756e1599a724d5b35a30.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kholidays/files/, kde-frameworks/kholidays/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kholidays/files/kholidays-5.49.0-headers.patch kde-frameworks/kholidays/kholidays-5.49.0-r1.ebuild X-VCS-Directories: kde-frameworks/kholidays/ kde-frameworks/kholidays/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a73defea0b97ac73bc21756e1599a724d5b35a30 X-VCS-Branch: master Date: Wed, 15 Aug 2018 16:29:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0f4b9d6-cea5-4dd8-94e7-da61fa24a5de X-Archives-Hash: 8c9963c481f1e12f9560f3fd0ec4033c commit: a73defea0b97ac73bc21756e1599a724d5b35a30 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 15 16:22:45 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 15 16:29:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a73defea kde-frameworks/kholidays: Drop obsolete CamelCase headers early May lead to some build trouble but prepares for 5.50. Package-Manager: Portage-2.3.46, Repoman-2.3.10 .../kholidays/files/kholidays-5.49.0-headers.patch | 20 ++++++++++++++ .../kholidays/kholidays-5.49.0-r1.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/kde-frameworks/kholidays/files/kholidays-5.49.0-headers.patch b/kde-frameworks/kholidays/files/kholidays-5.49.0-headers.patch new file mode 100644 index 00000000000..aefc8b7a977 --- /dev/null +++ b/kde-frameworks/kholidays/files/kholidays-5.49.0-headers.patch @@ -0,0 +1,20 @@ +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -25,7 +25,7 @@ + ) + + add_library(KF5Holidays ${kholidays_SRCS}) +-generate_export_header(KF5Holidays BASE_NAME kholidays) ++generate_export_header(KF5Holidays BASE_NAME KHolidays) + + add_library(KF5::Holidays ALIAS KF5Holidays) + +@@ -59,7 +59,6 @@ + install(FILES + ${CMAKE_CURRENT_BINARY_DIR}/kholidays_export.h + ${KHolidays_HEADERS} +- ${KHolidays_CamelCase_HEADERS} + DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KHolidays/kholidays + COMPONENT Devel + ) diff --git a/kde-frameworks/kholidays/kholidays-5.49.0-r1.ebuild b/kde-frameworks/kholidays/kholidays-5.49.0-r1.ebuild new file mode 100644 index 00000000000..c71538e58db --- /dev/null +++ b/kde-frameworks/kholidays/kholidays-5.49.0-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_QTHELP="false" +KDE_TEST="true" +inherit kde5 + +DESCRIPTION="Library to determine holidays and other special events for a geographical region" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="nls" + +COMMON_DEPEND=" + $(add_qt_dep qtdeclarative) +" +DEPEND="${COMMON_DEPEND} + nls? ( $(add_qt_dep linguist-tools) ) +" +RDEPEND="${COMMON_DEPEND} + !kde-apps/kholidays:5 +" + +PATCHES=( "${FILESDIR}/${P}-headers.patch" ) + +src_test() { + # bug 624214 + mkdir -p "${HOME}/.local/share/kf5/libkholidays" || die + cp -r "${S}/holidays/plan2" "${HOME}/.local/share/kf5/libkholidays/" || die + kde5_src_test +}