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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 43FEE15807B for ; Wed, 30 Oct 2024 12:28:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 863BBE0972; Wed, 30 Oct 2024 11:33:48 +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 6A499E0972 for ; Wed, 30 Oct 2024 11:33: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80A1534AF49 for ; Wed, 30 Oct 2024 11:33:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BC18AE7 for ; Wed, 30 Oct 2024 11:33:46 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1730288014.1f0a60bfc841630dba1f884e94d198166b237b26.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tptest/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/tptest/tptest-3.1.7-r2.ebuild X-VCS-Directories: net-analyzer/tptest/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 1f0a60bfc841630dba1f884e94d198166b237b26 X-VCS-Branch: master Date: Wed, 30 Oct 2024 11:33:46 +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: c45d9944-41e8-4ff0-83f7-d759fdc6f589 X-Archives-Hash: 1aae884e7dbbf84a1313d54d2728e258 commit: 1f0a60bfc841630dba1f884e94d198166b237b26 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 30 11:24:40 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 30 11:33:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f0a60bf net-analyzer/tptest: drop 3.1.7-r2 Bug: https://bugs.gentoo.org/897832 Signed-off-by: Andreas K. Hüttel gentoo.org> net-analyzer/tptest/tptest-3.1.7-r2.ebuild | 49 ------------------------------ 1 file changed, 49 deletions(-) diff --git a/net-analyzer/tptest/tptest-3.1.7-r2.ebuild b/net-analyzer/tptest/tptest-3.1.7-r2.ebuild deleted file mode 100644 index f6b2f45ff837..000000000000 --- a/net-analyzer/tptest/tptest-3.1.7-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PV="${PV/./_}" - -DESCRIPTION="Internet bandwidth tester" -HOMEPAGE="https://tptest.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" - -PATCHES=( - "${FILESDIR}"/${PN}-3.1.7-getstatsfromlinevuln.patch -) - -src_prepare() { - default - - sed -i apps/unix/{client,server}/Makefile \ - -e "s:^CFLAGS[[:space:]]*=:CFLAGS+=:" \ - || die - - cp -f os-dep/unix/* . || die - cp -f engine/* . || die -} - -src_compile() { - emake -C apps/unix/client \ - CC="$(tc-getCC)" \ - LDFLAGS="${LDFLAGS}" - - emake -C apps/unix/server \ - CC="$(tc-getCC)" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin apps/unix/client/tptestclient - dosbin apps/unix/server/tptestserver - - insinto /etc - doins apps/unix/server/tptest.conf -}