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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D6E4158013 for ; Thu, 7 Nov 2024 13:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C89DE093E; Thu, 7 Nov 2024 13:59:55 +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 51202E093E for ; Thu, 7 Nov 2024 13:59:55 +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 532C53406BF for ; Thu, 7 Nov 2024 13:59:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64E811DF4 for ; Thu, 7 Nov 2024 13:59:51 +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: <1730987959.f2aa451ce8185ca310a5bc2f199117d942216772.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/repolite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/repolite/repolite-0.6.2.ebuild X-VCS-Directories: dev-util/repolite/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: f2aa451ce8185ca310a5bc2f199117d942216772 X-VCS-Branch: master Date: Thu, 7 Nov 2024 13:59:51 +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: 2a8974c5-42de-4799-bc0d-13ae4362ff8b X-Archives-Hash: c49f38ec08067fb2fb1e5754d08a3f8c commit: f2aa451ce8185ca310a5bc2f199117d942216772 Author: Filip Kobierski pm me> AuthorDate: Wed Nov 6 16:13:54 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Nov 7 13:59:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2aa451c dev-util/repolite: drop 0.6.2-r0 Closes: https://bugs.gentoo.org/942940 Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/39221 Signed-off-by: Joonas Niilola gentoo.org> dev-util/repolite/repolite-0.6.2.ebuild | 48 --------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-util/repolite/repolite-0.6.2.ebuild b/dev-util/repolite/repolite-0.6.2.ebuild deleted file mode 100644 index 427603038c28..000000000000 --- a/dev-util/repolite/repolite-0.6.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="Manage a small set of git repository dependencies with YAML." -HOMEPAGE="https://github.com/sarnold/repolite" - -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/sarnold/repolite.git" - EGIT_BRANCH="master" - inherit git-r3 -else - SRC_URI="https://github.com/sarnold/repolite/releases/download/${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" -fi - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="doc" -RESTRICT="test" # no tests :( - -RDEPEND=" - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/munch[${PYTHON_USEDEP}] - dev-vcs/git -" -# needs versioningit if building from git repo source -if [[ ${PV} = 9999* ]]; then - BDEPEND="$(python_gen_any_dep '>=dev-python/versioningit-2.0.1[${PYTHON_USEDEP}]')" -fi - -DOCS=( README.rst ) - -distutils_enable_sphinx \ - docs/source \ - dev-python/sphinx-rtd-theme \ - dev-python/recommonmark \ - dev-python/sphinxcontrib-apidoc - -pkg_postinst() { - optfeature "initialize repos with lfs files" dev-vcs/git-lfs -}