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 93EBD158091 for ; Sat, 18 Jun 2022 05:31:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60CF0E08EF; Sat, 18 Jun 2022 05:31:41 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4886FE08EF for ; Sat, 18 Jun 2022 05:31:41 +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 429BC340DBD for ; Sat, 18 Jun 2022 05:31:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F2FC50A for ; Sat, 18 Jun 2022 05:31:38 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1655530278.f87e2f6b57e1a3a96f2525a82aba590013cce48d.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/magicrescue/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/magicrescue/magicrescue-1.1.10.ebuild X-VCS-Directories: app-forensics/magicrescue/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: f87e2f6b57e1a3a96f2525a82aba590013cce48d X-VCS-Branch: master Date: Sat, 18 Jun 2022 05:31:38 +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: 6765bf2c-ac55-47ed-aa5b-898e9f62cc36 X-Archives-Hash: 195f26fed25ff9ac08ac4c926f7b794c commit: f87e2f6b57e1a3a96f2525a82aba590013cce48d Author: Joonas Niilola gentoo org> AuthorDate: Sat Jun 18 05:31:18 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jun 18 05:31:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87e2f6b app-forensics/magicrescue: drop 1.1.10 Bug: https://bugs.gentoo.org/837620 Signed-off-by: Joonas Niilola gentoo.org> .../magicrescue/magicrescue-1.1.10.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/app-forensics/magicrescue/magicrescue-1.1.10.ebuild b/app-forensics/magicrescue/magicrescue-1.1.10.ebuild deleted file mode 100644 index d9f26ef7e6b8..000000000000 --- a/app-forensics/magicrescue/magicrescue-1.1.10.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Find deleted files in block devices" -HOMEPAGE="https://github.com/jbj/magicrescue" -SRC_URI="https://github.com/jbj/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="" - -DEPEND="|| ( sys-libs/gdbm sys-libs/db:* )" -RDEPEND="${DEPEND} - !net-mail/safecat" -# File collision with net-mail/safecat, #702004 - -PATCHES=( "${FILESDIR}/${P}-ldflags.patch" - "${FILESDIR}/${P}-remove_toolsdir.patch" ) - -src_prepare() { - tc-export CC - sed -i -e "\ - s:\$(INSTALLDIR)/share/magicrescue/recipes:\$(INSTALLDIR)/share/doc/${P}/recipes:;\ - s:\$(INSTALLDIR)/man/man1:\$(INSTALLDIR)/share/man/man1:;\ - s:\$(INSTALLDIR)/share/magicrescue/tools:\$(INSTALLDIR)/bin:" Makefile.in || die "could not mangle Makefile.in" - default -} - -src_configure() { - # Not autotools, just looks like it sometimes - ./configure --prefix=/usr || die -}