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 3EF70138334 for ; Sun, 4 Aug 2019 21:10:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 855BCE0903; Sun, 4 Aug 2019 21:10:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 65401E0903 for ; Sun, 4 Aug 2019 21:10:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F2B7F349A37 for ; Sun, 4 Aug 2019 21:10:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75641742 for ; Sun, 4 Aug 2019 21:10:54 +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: <1564950688.e53bcd6f274e6d8f7e80deb7b6e87591f4ff9dda.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/statusnotifier/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/statusnotifier/metadata.xml dev-libs/statusnotifier/statusnotifier-1.0.0.ebuild X-VCS-Directories: dev-libs/statusnotifier/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e53bcd6f274e6d8f7e80deb7b6e87591f4ff9dda X-VCS-Branch: master Date: Sun, 4 Aug 2019 21:10:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d7f43a16-88d2-4c26-893b-7cd220f5af4b X-Archives-Hash: 48d91e8cbc48b6472ad925ba60ca9762 commit: e53bcd6f274e6d8f7e80deb7b6e87591f4ff9dda Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 4 20:31:28 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 4 20:31:28 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e53bcd6f dev-libs/statusnotifier: Drop package, no revdeps Unused and never made it to Gentoo ebuild repository. Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/statusnotifier/metadata.xml | 11 ----- .../statusnotifier/statusnotifier-1.0.0.ebuild | 49 ---------------------- 2 files changed, 60 deletions(-) diff --git a/dev-libs/statusnotifier/metadata.xml b/dev-libs/statusnotifier/metadata.xml deleted file mode 100644 index d2520e4bb8..0000000000 --- a/dev-libs/statusnotifier/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - kde@gentoo.org - Gentoo KDE Project - - - jjk-jacky/statusnotifier - - diff --git a/dev-libs/statusnotifier/statusnotifier-1.0.0.ebuild b/dev-libs/statusnotifier/statusnotifier-1.0.0.ebuild deleted file mode 100644 index 93458af4f1..0000000000 --- a/dev-libs/statusnotifier/statusnotifier-1.0.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Library to use KDE's StatusNotifierItem via GObject" -HOMEPAGE="https://github.com/jjk-jacky/statusnotifier" -SRC_URI="https://github.com/jjk-jacky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="dbus examples introspection" - -BDEPEND="dev-util/gtk-doc" -DEPEND=" - dev-libs/glib:2 - x11-libs/gdk-pixbuf:2 - x11-libs/cairo - dbus? ( - dev-libs/libdbusmenu[gtk3] - x11-libs/gtk+:3 - ) - examples? ( x11-libs/gtk+:3 ) - introspection? ( dev-libs/gobject-introspection ) -" -RDEPEND="${DEPEND}" - -src_prepare() { - eautoreconf - default -} - -src_configure() { - local myeconfargs=( - --disable-static - $(use_enable dbus dbusmenu) - $(use_enable introspection) - $(use_enable examples example) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}