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 D7C6F158016 for ; Thu, 28 Dec 2023 04:38:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C2D82BC026; Thu, 28 Dec 2023 04:38:26 +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 0FE812BC026 for ; Thu, 28 Dec 2023 04:38:26 +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 201C5335DCC for ; Thu, 28 Dec 2023 04:38:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9F0013A0 for ; Thu, 28 Dec 2023 04:38:23 +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: <1703738242.7a77d24cb9791f9a6560e9cad0d113f248e36f3a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/install-xattr/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/install-xattr/install-xattr-0.8.ebuild X-VCS-Directories: sys-apps/install-xattr/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7a77d24cb9791f9a6560e9cad0d113f248e36f3a X-VCS-Branch: master Date: Thu, 28 Dec 2023 04:38:23 +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: 7055daae-6cb3-46b8-9309-c3d10b035901 X-Archives-Hash: 4d98685078875eafe146d7acb56f8cc2 commit: 7a77d24cb9791f9a6560e9cad0d113f248e36f3a Author: Sam James gentoo org> AuthorDate: Thu Dec 28 04:37:22 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 28 04:37:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a77d24c sys-apps/install-xattr: drop 0.8 Signed-off-by: Sam James gentoo.org> sys-apps/install-xattr/install-xattr-0.8.ebuild | 46 ------------------------- 1 file changed, 46 deletions(-) diff --git a/sys-apps/install-xattr/install-xattr-0.8.ebuild b/sys-apps/install-xattr/install-xattr-0.8.ebuild deleted file mode 100644 index d1df396b8af3..000000000000 --- a/sys-apps/install-xattr/install-xattr-0.8.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes" -HOMEPAGE="https://dev.gentoo.org/~blueness/install-xattr/" - -inherit flag-o-matic toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/elfix.git" - inherit git-r3 -else - SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" - S=${WORKDIR}/${PN} -fi - -LICENSE="GPL-3" -SLOT="0" - -src_prepare() { - default - tc-export CC - append-cppflags "-D_FILE_OFFSET_BITS=64" -} - -src_compile() { - if [[ ${PV} == "9999" ]] ; then - cd "${WORKDIR}/${P}/misc/${PN}" || die - fi - default -} - -src_install() { - if [[ ${PV} == "9999" ]] ; then - cd "${WORKDIR}/${P}/misc/${PN}" || die - fi - DESTDIR=${ED} emake install -} - -# We need to fix how tests are done -src_test() { - true -}