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 7D6F2138350 for ; Wed, 25 Mar 2020 19:35:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35D26E0D09; Wed, 25 Mar 2020 19:35:10 +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 17A9CE0D09 for ; Wed, 25 Mar 2020 19:35:09 +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 B22B934F9CF for ; Wed, 25 Mar 2020 19:35:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD6E3186 for ; Wed, 25 Mar 2020 19:35:06 +0000 (UTC) From: "Joonas Niilola" 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" Message-ID: <1585164892.c1593e29c658ae71e5afe8ce65ed26e7479059f8.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/urxvt-perls/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/urxvt-perls/metadata.xml x11-misc/urxvt-perls/urxvt-perls-2.3-r1.ebuild X-VCS-Directories: x11-misc/urxvt-perls/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: c1593e29c658ae71e5afe8ce65ed26e7479059f8 X-VCS-Branch: master Date: Wed, 25 Mar 2020 19:35:06 +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: f776365e-aa9f-4339-951f-488034237777 X-Archives-Hash: 352d7f99217eba3c0dc5d2e2033c0d5a commit: c1593e29c658ae71e5afe8ce65ed26e7479059f8 Author: Joonas Niilola gentoo org> AuthorDate: Wed Mar 25 19:34:11 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Mar 25 19:34:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1593e29 x11-misc/urxvt-perls: introduce 'deprecated' USE - to install deprecated scripts declared by upstream, put them behind USE flag because they might break some user configuration, - suggested by neeshy. Closes: https://github.com/gentoo/gentoo/pull/15076 Signed-off-by: Joonas Niilola gentoo.org> x11-misc/urxvt-perls/metadata.xml | 3 +++ x11-misc/urxvt-perls/urxvt-perls-2.3-r1.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/x11-misc/urxvt-perls/metadata.xml b/x11-misc/urxvt-perls/metadata.xml index 67c8b7560e0..d787dd46015 100644 --- a/x11-misc/urxvt-perls/metadata.xml +++ b/x11-misc/urxvt-perls/metadata.xml @@ -5,6 +5,9 @@ juippis@gentoo.org Joonas Niilola + + Install scripts which have been marked as deprecated by upstream + muennich/urxvt-perls diff --git a/x11-misc/urxvt-perls/urxvt-perls-2.3-r1.ebuild b/x11-misc/urxvt-perls/urxvt-perls-2.3-r1.ebuild new file mode 100644 index 00000000000..76baa0b0d90 --- /dev/null +++ b/x11-misc/urxvt-perls/urxvt-perls-2.3-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Perl extensions for rxvt-unicode" +HOMEPAGE="https://github.com/muennich/urxvt-perls" +SRC_URI="https://github.com/muennich/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="deprecated" + +RDEPEND="x11-misc/xsel + x11-terms/rxvt-unicode[perl]" + +src_install() { + insinto /usr/$(get_libdir)/urxvt/perl + doins keyboard-select + + use deprecated && doins deprecated/{clipboard,url-select} + + einstalldocs +}