From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 193A31582EF for ; Sat, 08 Mar 2025 14:15:31 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 03D8734305E for ; Sat, 08 Mar 2025 14:15:31 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B1264110478; Sat, 08 Mar 2025 14:14:21 +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 bobolink.gentoo.org (Postfix) with ESMTPS id A74BC110478 for ; Sat, 08 Mar 2025 14:14:21 +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 5A924343014 for ; Sat, 08 Mar 2025 14:14:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9E2F289E for ; Sat, 08 Mar 2025 14:14:19 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1741443246.52938731037f216c6070a99fd56235b285d9a793.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libircclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libircclient/libircclient-1.10.ebuild X-VCS-Directories: net-libs/libircclient/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 52938731037f216c6070a99fd56235b285d9a793 X-VCS-Branch: master Date: Sat, 08 Mar 2025 14:14:19 +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: 58dbdfdb-7a6f-4b5d-a698-64fd9433acfd X-Archives-Hash: cb74032f6311f9e50f0f24cd3619ea31 commit: 52938731037f216c6070a99fd56235b285d9a793 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Mar 8 14:13:50 2025 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Mar 8 14:14:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52938731 net-libs/libircclient: drop 1.10 Closes: https://bugs.gentoo.org/950878 Signed-off-by: Arthur Zamarin gentoo.org> net-libs/libircclient/libircclient-1.10.ebuild | 58 -------------------------- 1 file changed, 58 deletions(-) diff --git a/net-libs/libircclient/libircclient-1.10.ebuild b/net-libs/libircclient/libircclient-1.10.ebuild deleted file mode 100644 index e4af438f3b8c..000000000000 --- a/net-libs/libircclient/libircclient-1.10.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -DESCRIPTION="Small but powerful library implementing the client-server IRC protocol" -HOMEPAGE="http://www.ulduzsoft.com/libircclient/" -SRC_URI="https://downloads.sourceforge.net/libircclient/${P}.tar.gz" - -LICENSE="LGPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm64 ppc ppc64 ~riscv sparc x86" -IUSE="doc ipv6 ssl static-libs threads" - -DEPEND="ssl? ( - dev-libs/openssl:0= - )" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8-build.patch - "${FILESDIR}"/${PN}-1.10-shared.patch - "${FILESDIR}"/${PN}-1.8-static.patch - "${FILESDIR}"/${PN}-1.8-include.patch - - # upstream patches (can usually be removed with next version bump) - "${FILESDIR}"/${PN}-1.10-openssl.patch -) - -src_prepare() { - default - mv configure.in configure.ac || die - eautoconf -} - -src_configure() { - local myeconfargs=( - $(use_enable threads) - $(use_enable ipv6) - $(use_enable ssl openssl) - $(use_enable ssl threads) - ) - econf "${myeconfargs[@]}" -} - -src_compile() { - emake -C src $(usex static-libs "shared static" "shared") -} - -src_install() { - emake -C src DESTDIR="${D}" install-shared $(usex static-libs "install-static" "") - insinto /usr/include/libircclient - doins include/*.h - - dodoc Changelog THANKS - doman man/libircclient.1 -}