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 A3B86138334 for ; Sun, 2 Sep 2018 10:25:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8730E0839; Sun, 2 Sep 2018 10:25:24 +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 90266E0839 for ; Sun, 2 Sep 2018 10:25:24 +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 5014F335C7D for ; Sun, 2 Sep 2018 10:25:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C488A398 for ; Sun, 2 Sep 2018 10:25:21 +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: <1535882146.f375f5a0d5ef9651c6236ebabb80194befecb175.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/syndication/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/syndication/metadata.xml kde-frameworks/syndication/syndication-9999.ebuild X-VCS-Directories: kde-frameworks/syndication/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f375f5a0d5ef9651c6236ebabb80194befecb175 X-VCS-Branch: master Date: Sun, 2 Sep 2018 10:25:21 +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: 106bf1d2-7e61-48d6-b5d8-20f4cf91b61c X-Archives-Hash: 3c7c46b4238be581560a574f328b3f2a commit: f375f5a0d5ef9651c6236ebabb80194befecb175 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Sep 2 09:55:46 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 2 09:55:46 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f375f5a0 kde-frameworks/syndication: New package, moving from kde-apps/ See also: https://mail.kde.org/pipermail/release-team/2018-August/011059.html Package-Manager: Portage-2.3.48, Repoman-2.3.10 kde-frameworks/syndication/metadata.xml | 8 +++++++ kde-frameworks/syndication/syndication-9999.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/kde-frameworks/syndication/metadata.xml b/kde-frameworks/syndication/metadata.xml new file mode 100644 index 0000000000..2fdbf33d96 --- /dev/null +++ b/kde-frameworks/syndication/metadata.xml @@ -0,0 +1,8 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + diff --git a/kde-frameworks/syndication/syndication-9999.ebuild b/kde-frameworks/syndication/syndication-9999.ebuild new file mode 100644 index 0000000000..ee608c9bb7 --- /dev/null +++ b/kde-frameworks/syndication/syndication-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_TEST="true" +inherit kde5 + +DESCRIPTION="Library for parsing RSS and Atom feeds" +LICENSE="LGPL-2+" +KEYWORDS="" +IUSE="" + +COMMON_DEPEND=" + $(add_frameworks_dep kcodecs) + $(add_qt_dep qtxml) +" +DEPEND="${COMMON_DEPEND} + test? ( + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + ) +" +RDEPEND="${COMMON_DEPEND} + !kde-apps/syndication +"