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 699E9158020 for ; Tue, 13 Dec 2022 18:28:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5FDEE0921; Tue, 13 Dec 2022 18:28:50 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 9C81EE0921 for ; Tue, 13 Dec 2022 18:28:50 +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 A3B4C340BDA for ; Tue, 13 Dec 2022 18:28:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EDC9785 for ; Tue, 13 Dec 2022 18:28:48 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1670956109.946fca84b45df78ea568f6b14512745a2144af73.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/ncdc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/ncdc/ncdc-9999.ebuild X-VCS-Directories: net-p2p/ncdc/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 946fca84b45df78ea568f6b14512745a2144af73 X-VCS-Branch: master Date: Tue, 13 Dec 2022 18:28:48 +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: 3f64388e-9a11-4a70-a52e-ce7c9e7b823f X-Archives-Hash: d8848fe57a9e06b2409b3b2525c98026 commit: 946fca84b45df78ea568f6b14512745a2144af73 Author: Eric Joldasov getgoogleoff me> AuthorDate: Fri Nov 25 09:29:20 2022 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Tue Dec 13 18:28:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946fca84 net-p2p/ncdc: drop 9999 Signed-off-by: Eric Joldasov getgoogleoff.me> Signed-off-by: Viorel Munteanu gentoo.org> net-p2p/ncdc/ncdc-9999.ebuild | 59 ------------------------------------------- 1 file changed, 59 deletions(-) diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-9999.ebuild deleted file mode 100644 index e001c6590371..000000000000 --- a/net-p2p/ncdc/ncdc-9999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="ncurses directconnect client" -HOMEPAGE="https://dev.yorhel.nl/ncdc" -if [[ ${PV} == *9999 ]] ; then - inherit autotools git-r3 - EGIT_REPO_URI="git://g.blicky.net/ncdc.git" -else - SRC_URI="https://dev.yorhel.nl/download/${P}.tar.gz" - KEYWORDS="~amd64 ~ppc ~sparc ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="geoip" - -RDEPEND=" - app-arch/bzip2 - dev-db/sqlite:3 - >=dev-libs/glib-2.32:2 - net-libs/gnutls:= - sys-libs/ncurses:=[unicode(+)] - sys-libs/zlib:= - geoip? ( - dev-libs/geoip - dev-libs/libmaxminddb - )" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/makeheaders - virtual/pkgconfig -" - -src_prepare() { - default - - [[ ${PV} == *9999 ]] && eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_with geoip) - ) - - if [[ ${PV} == *9999 ]] ; then - myeconfargs+=( --enable-git-version ) - fi - - econf "${myeconfargs[@]}" -} - -src_compile() { - emake AR="$(tc-getAR)" -}