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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 13234158091 for ; Mon, 6 Jun 2022 13:35:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D78BE0866; Mon, 6 Jun 2022 13:35:37 +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 1D257E0866 for ; Mon, 6 Jun 2022 13:35:37 +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 E4754341934 for ; Mon, 6 Jun 2022 13:35:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F87C4E5 for ; Mon, 6 Jun 2022 13:35:04 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1654522492.5ab00d5bd484168cf51d6ad0524260456ba9f867.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/elicense/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/elicense/elicense-9999.ebuild X-VCS-Directories: app-portage/elicense/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5ab00d5bd484168cf51d6ad0524260456ba9f867 X-VCS-Branch: master Date: Mon, 6 Jun 2022 13:35:04 +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: 1bb5ffe8-7fd8-4ae3-8587-58d6a11e99ac X-Archives-Hash: 1276c7951c6cf5f8db3cf9e3c9c6aa6a commit: 5ab00d5bd484168cf51d6ad0524260456ba9f867 Author: Ulrich Müller gentoo org> AuthorDate: Mon Jun 6 13:33:10 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jun 6 13:34:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ab00d5b app-portage/elicense: Drop live version Signed-off-by: Ulrich Müller gentoo.org> app-portage/elicense/elicense-9999.ebuild | 36 ------------------------------- 1 file changed, 36 deletions(-) diff --git a/app-portage/elicense/elicense-9999.ebuild b/app-portage/elicense/elicense-9999.ebuild deleted file mode 100644 index 6028d25eb4ee..000000000000 --- a/app-portage/elicense/elicense-9999.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="https://github.com/Whissi/elicense.git" - inherit git-r3 -else - SRC_URI="https://github.com/Whissi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -fi - -DESCRIPTION="Tool to find installed packages in Gentoo with non-accepted license(s)" -HOMEPAGE="https://github.com/Whissi/elicense" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -RDEPEND=">=sys-apps/portage-2.3.62[${PYTHON_USEDEP}]" - -src_prepare() { - default - - local MY_PV=${PV} - if [[ ${PV} == "9999" ]]; then - local last_commit=$(git rev-parse HEAD) - MY_PV="${last_commit:0:7}-git" - fi - - sed -i -e "s/^MY_PV =.*$/MY_PV = \"${MY_PV}\"/" \ - elicense || die "Failed to sed in version." -}