From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1673398-garchives=archives.gentoo.org@lists.gentoo.org> 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 969B815808B for <garchives@archives.gentoo.org>; Tue, 24 Sep 2024 07:02:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 745C92BC088; Tue, 24 Sep 2024 07:02:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5F79A2BC088 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Sep 2024 07:02:34 +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 A3E253434E2 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Sep 2024 07:02:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0A7227F2 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Sep 2024 07:02:30 +0000 (UTC) From: "Joonas Niilola" <juippis@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" <juippis@gentoo.org> Message-ID: <1727161275.d1df86dbbb7e65e8cfd01a61864b944daf877df2.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/urxvt-font-size/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/urxvt-font-size/urxvt-font-size-9999.ebuild X-VCS-Directories: x11-misc/urxvt-font-size/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: d1df86dbbb7e65e8cfd01a61864b944daf877df2 X-VCS-Branch: master Date: Tue, 24 Sep 2024 07:02:30 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b24e1bbf-aca3-45d4-95f9-bf83a98f1c84 X-Archives-Hash: 0cdd13d6f73342721d1ea87f1559bbfe commit: d1df86dbbb7e65e8cfd01a61864b944daf877df2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Wed Sep 4 18:04:51 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Tue Sep 24 07:01:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1df86db x11-misc/urxvt-font-size: remove live ebuild Remove live ebuild since upstream wasn't updated for a couple of years. I think it makes no sense to keep these ebuilds, especially when the non-live ebuild is already at HEAD. Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> .../urxvt-font-size/urxvt-font-size-9999.ebuild | 29 ---------------------- 1 file changed, 29 deletions(-) diff --git a/x11-misc/urxvt-font-size/urxvt-font-size-9999.ebuild b/x11-misc/urxvt-font-size/urxvt-font-size-9999.ebuild deleted file mode 100644 index 7ed3f5eb0668..000000000000 --- a/x11-misc/urxvt-font-size/urxvt-font-size-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -if [[ ${PV} == 9999* ]]; then - EGIT_REPO_URI="https://github.com/majutsushi/${PN}.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -fi - -DESCRIPTION="Perl extension for rxvt-unicode to change the font size on the fly" -HOMEPAGE="https://github.com/majutsushi/urxvt-font-size/" - -LICENSE="MIT" -SLOT="0" - -RDEPEND=" - x11-apps/xlsfonts - x11-terms/rxvt-unicode[perl] -" - -src_install() { - insinto /usr/$(get_libdir)/urxvt/perl - doins font-size - dodoc README.markdown -}