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 0E700138334 for ; Tue, 12 Feb 2019 17:45:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33D51E085D; Tue, 12 Feb 2019 17:45:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0D953E085D for ; Tue, 12 Feb 2019 17:45:03 +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 28990335D73 for ; Tue, 12 Feb 2019 17:45:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91B5C537 for ; Tue, 12 Feb 2019 17:45:00 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1549993486.92b5decc787f966bd5c8994339e96619e5282c86.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/irssi/irssi-1.2.0.ebuild X-VCS-Directories: net-irc/irssi/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 92b5decc787f966bd5c8994339e96619e5282c86 X-VCS-Branch: master Date: Tue, 12 Feb 2019 17:45:00 +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: 044ae156-5cf7-4f90-8d5f-b5e2fa30e05a X-Archives-Hash: 55e3f5d1d14425c38a10b27479dd8b79 commit: 92b5decc787f966bd5c8994339e96619e5282c86 Author: Mikle Kolyada gentoo org> AuthorDate: Tue Feb 12 17:44:08 2019 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Tue Feb 12 17:44:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92b5decc net-irc/irssi: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-irc/irssi/irssi-1.2.0.ebuild | 66 ---------------------------------------- 1 file changed, 66 deletions(-) diff --git a/net-irc/irssi/irssi-1.2.0.ebuild b/net-irc/irssi/irssi-1.2.0.ebuild deleted file mode 100644 index 7708d1253e7..00000000000 --- a/net-irc/irssi/irssi-1.2.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -GENTOO_DEPEND_ON_PERL="no" - -inherit ltprune perl-module - -# Keep for _rc compability -MY_P="${P/_/-}" - -DESCRIPTION="A modular textUI IRC client with IPv6 support" -HOMEPAGE="https://irssi.org/" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${MY_P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="otr +perl selinux socks5 +proxy libressl" - -COMMON_DEPEND=" - sys-libs/ncurses:0= - >=dev-libs/glib-2.6.0 - !libressl? ( dev-libs/openssl:= ) - libressl? ( dev-libs/libressl:= ) - otr? ( >=dev-libs/libgcrypt-1.2.0:0= - >=net-libs/libotr-4.1.0 ) - perl? ( dev-lang/perl:= ) - socks5? ( >=net-proxy/dante-1.1.18 )" - -DEPEND=" - ${COMMON_DEPEND} - virtual/pkgconfig" - -RDEPEND=" - ${COMMON_DEPEND} - selinux? ( sec-policy/selinux-irc ) - perl? ( !net-im/silc-client )" - -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - default - if has_version '>=dev-libs/libressl-2.7.3'; then - eapply "${FILESDIR}"/libressl.patch - fi -} - -src_configure() { - econf \ - --with-perl-lib=vendor \ - --enable-true-color \ - $(use_with otr) \ - $(use_with proxy) \ - $(use_with perl) \ - $(use_with socks5 socks) -} - -src_install() { - default - use perl && perl_delete_localpod - prune_libtool_files --modules -}