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 D793C158021 for ; Mon, 28 Nov 2022 14:31:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1336E08CD; Mon, 28 Nov 2022 14:31:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2F1FE08CA for ; Mon, 28 Nov 2022 14:31:42 +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 A41C53410C6 for ; Mon, 28 Nov 2022 14:31:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05FBB766 for ; Mon, 28 Nov 2022 14:31:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1669645895.e518a7f2b3bc5c35d89541eff4a2baffa8407b0c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-alternatives/tar/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-alternatives/tar/metadata.xml app-alternatives/tar/tar-0.ebuild X-VCS-Directories: app-alternatives/tar/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e518a7f2b3bc5c35d89541eff4a2baffa8407b0c X-VCS-Branch: master Date: Mon, 28 Nov 2022 14:31:40 +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: dfe0223f-89aa-4bb2-a33e-e9dafe79519f X-Archives-Hash: b4d81c9afb738635497fe42bb4444b06 commit: e518a7f2b3bc5c35d89541eff4a2baffa8407b0c Author: Michał Górny gentoo org> AuthorDate: Tue Nov 22 21:04:27 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 28 14:31:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e518a7f2 app-alternatives/tar: Add an ebuild for /bin/tar symlink Signed-off-by: Michał Górny gentoo.org> app-alternatives/tar/metadata.xml | 20 ++++++++++++++++++++ app-alternatives/tar/tar-0.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/app-alternatives/tar/metadata.xml b/app-alternatives/tar/metadata.xml new file mode 100644 index 000000000000..3bf8c905056c --- /dev/null +++ b/app-alternatives/tar/metadata.xml @@ -0,0 +1,20 @@ + + + + + base-system@gentoo.org + Gentoo Base System + + + mgorny@gentoo.org + Michał Górny + + + + Symlink to GNU tar (app-arch/tar) + + + Symlink to bsdtar from app-arch/libarchive + + + diff --git a/app-alternatives/tar/tar-0.ebuild b/app-alternatives/tar/tar-0.ebuild new file mode 100644 index 000000000000..dc594b0f8933 --- /dev/null +++ b/app-alternatives/tar/tar-0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Tar symlink" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Base/Alternatives" +SRC_URI="" +S=${WORKDIR} + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="+gnu libarchive split-usr" +REQUIRED_USE="^^ ( gnu libarchive )" + +RDEPEND=" + gnu? ( >=app-arch/tar-1.34-r2 ) + libarchive? ( app-arch/libarchive ) + !