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 B4773158015 for ; Thu, 28 Dec 2023 14:58:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 835582BC050; Thu, 28 Dec 2023 14:58:48 +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 6BA562BC050 for ; Thu, 28 Dec 2023 14:58:48 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4A613406C2 for ; Thu, 28 Dec 2023 14:58:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9E1514B5 for ; Thu, 28 Dec 2023 14:58:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1703775448.78ac2ca454ace12f63b73dc8492b3dc86d162381.sam@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.4.4.ebuild X-VCS-Directories: net-irc/irssi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 78ac2ca454ace12f63b73dc8492b3dc86d162381 X-VCS-Branch: master Date: Thu, 28 Dec 2023 14:58:45 +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: fc5923fd-862c-490c-8939-7567aa77f005 X-Archives-Hash: 3912ea16520e7217e21a75ed05789e96 commit: 78ac2ca454ace12f63b73dc8492b3dc86d162381 Author: Sam James gentoo org> AuthorDate: Thu Dec 28 06:13:59 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 28 14:57:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ac2ca4 net-irc/irssi: drop 1.4.4 Signed-off-by: Sam James gentoo.org> net-irc/irssi/irssi-1.4.4.ebuild | 68 ---------------------------------------- 1 file changed, 68 deletions(-) diff --git a/net-irc/irssi/irssi-1.4.4.ebuild b/net-irc/irssi/irssi-1.4.4.ebuild deleted file mode 100644 index 46726102547f..000000000000 --- a/net-irc/irssi/irssi-1.4.4.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -GENTOO_DEPEND_ON_PERL="no" -inherit perl-module meson - -DESCRIPTION="A modular textUI IRC client with IPv6 support" -HOMEPAGE="https://irssi.org/" - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - inherit git-r3 -else - # Keep for _rc compability - MY_P="${P/_/-}" - - SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${MY_P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="otr +perl selinux +proxy" - -RDEPEND=" - >=dev-libs/glib-2.6.0 - dev-libs/openssl:= - sys-libs/ncurses:= - otr? ( - >=dev-libs/libgcrypt-1.2.0:= - >=net-libs/libotr-4.1.0 - ) - perl? ( dev-lang/perl:= ) -" -DEPEND="${RDEPEND}" -BDEPEND="dev-lang/perl - virtual/pkgconfig" -RDEPEND+=" selinux? ( sec-policy/selinux-irc )" - -src_configure() { - local emesonargs=( - -Ddocdir="${EPREFIX}"/usr/share/doc/${PF} - -Dwith-perl-lib=vendor - -Dwith-otr=$(usex otr) - -Dwith-proxy=$(usex proxy) - -Dwith-perl=$(usex perl) - - # Carried over from autotools (for now?), bug #677804 - -Ddisable-utf8proc=yes - -Dwith-fuzzer=no - -Dinstall-glib=no - ) - - meson_src_configure -} - -src_test() { - # We don't want perl-module's src_test - meson_src_test -} - -src_install() { - meson_src_install - - use perl && perl_delete_localpod -}