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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 85B06138335 for ; Sun, 8 Dec 2019 10:20:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F27BAE0877; Sun, 8 Dec 2019 10:20:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09550E0877 for ; Sun, 8 Dec 2019 10:20:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B90634D862 for ; Sun, 8 Dec 2019 10:20:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04D23824 for ; Sun, 8 Dec 2019 10:20:13 +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: <1575800401.15c5cdfa0bf16b423cff080e34a9bfd08f56cc7f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-repository/eselect-repository-9999.ebuild X-VCS-Directories: app-eselect/eselect-repository/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 15c5cdfa0bf16b423cff080e34a9bfd08f56cc7f X-VCS-Branch: master Date: Sun, 8 Dec 2019 10:20:13 +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: 819ead7a-6578-4bea-a6e9-f2d032f56d72 X-Archives-Hash: 2f26257216ea8670f022015ec841f68c commit: 15c5cdfa0bf16b423cff080e34a9bfd08f56cc7f Author: Michał Górny gentoo org> AuthorDate: Sun Dec 8 09:58:57 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 8 10:20:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c5cdfa app-eselect/eselect-repository: Remove -9999 Remove the live ebuild. This package is released frequently, so there's no point in the maintenance overhead. Signed-off-by: Michał Górny gentoo.org> .../eselect-repository-9999.ebuild | 41 ---------------------- 1 file changed, 41 deletions(-) diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild deleted file mode 100644 index e5180bc8bea..00000000000 --- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGIT_REPO_URI="https://github.com/mgorny/eselect-repository.git" -PYTHON_COMPAT=( python{3_5,3_6,3_7} ) -inherit git-r3 python-single-r1 - -DESCRIPTION="Manage repos.conf via eselect" -HOMEPAGE="https://github.com/mgorny/eselect-repository" -SRC_URI="" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="" -IUSE="" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -RDEPEND="${PYTHON_DEPS} - app-admin/eselect - dev-python/lxml[${PYTHON_USEDEP}] - net-misc/wget" - -src_compile() { - MAKEARGS=( - PREFIX="${EPREFIX}/usr" - SYSCONFDIR="${EPREFIX}/etc" - SHAREDSTATEDIR="${EPREFIX}/var" - ESELECTDIR="${EPREFIX}/usr/share/eselect/modules" - ) - - emake "${MAKEARGS[@]}" - python_fix_shebang eselect-repo-helper -} - -src_install() { - emake "${MAKEARGS[@]}" DESTDIR="${D}" install - keepdir /var/db/repos - einstalldocs -}