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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC9A715800F for ; Mon, 20 Feb 2023 17:32:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0482E0BBE; Mon, 20 Feb 2023 17:32:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9381BE0BB7 for ; Mon, 20 Feb 2023 17:32:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A280E340D87 for ; Mon, 20 Feb 2023 17:32:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28E258D7 for ; Mon, 20 Feb 2023 17:32:31 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1676914341.312188e13af38d40e22fe1874bfbfaf1f29201cd.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libwnck/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libwnck/libwnck-43.0.ebuild X-VCS-Directories: x11-libs/libwnck/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 312188e13af38d40e22fe1874bfbfaf1f29201cd X-VCS-Branch: master Date: Mon, 20 Feb 2023 17:32:31 +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: 264209db-83fe-4b86-b8ff-1b14971f0e84 X-Archives-Hash: 04320b1c5bf6bc9bc17af1e644ef3c36 commit: 312188e13af38d40e22fe1874bfbfaf1f29201cd Author: Matt Turner gentoo org> AuthorDate: Mon Feb 20 17:02:36 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Feb 20 17:32:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312188e1 x11-libs/libwnck: Drop old versions Signed-off-by: Matt Turner gentoo.org> x11-libs/libwnck/libwnck-43.0.ebuild | 52 ------------------------------------ 1 file changed, 52 deletions(-) diff --git a/x11-libs/libwnck/libwnck-43.0.ebuild b/x11-libs/libwnck/libwnck-43.0.ebuild deleted file mode 100644 index a1bd400a1090..000000000000 --- a/x11-libs/libwnck/libwnck-43.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit gnome.org meson xdg - -DESCRIPTION="A window navigation construction kit" -HOMEPAGE="https://developer.gnome.org/libwnck/stable/" - -LICENSE="LGPL-2+" -SLOT="3" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris" - -IUSE="gtk-doc +introspection startup-notification tools" - -RDEPEND=" - x11-libs/cairo[X] - >=dev-libs/glib-2.44:2 - >=x11-libs/gtk+-3.22:3[X,introspection?] - startup-notification? ( >=x11-libs/startup-notification-0.4 ) - x11-libs/libX11 - x11-libs/libXres - introspection? ( >=dev-libs/gobject-introspection-1.56:= ) -" -# libXi header used by wnckprop.c, which is compiled even with USE=-tools (just not installed then) -DEPEND="${RDEPEND} - x11-libs/libXi" -BDEPEND=" - gtk-doc? ( >=dev-util/gtk-doc-1.9 - app-text/docbook-xml-dtd:4.1.2 ) - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" - -src_prepare() { - default - xdg_environment_reset - # Don't collide with SLOT=1 with USE=tools - sed -e "s|executable(prog|executable(prog + '-3'|" -i libwnck/meson.build || die -} - -src_configure() { - local emesonargs=( - -Ddeprecation_flags=false - $(meson_use tools install_tools) - $(meson_feature startup-notification startup_notification) - $(meson_feature introspection) - $(meson_use gtk-doc gtk_doc) - ) - meson_src_configure -}