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 B47A1158013 for ; Thu, 7 Nov 2024 13:59:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FB81E08FA; Thu, 7 Nov 2024 13:59:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7A4B4E08FA for ; Thu, 7 Nov 2024 13:59:53 +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 B970334168D for ; Thu, 7 Nov 2024 13:59:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 514881D6E 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.9c3a015934da631d4271e33bd39bddfc444927cd.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-r1.ebuild X-VCS-Directories: dev-util/repolite/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 9c3a015934da631d4271e33bd39bddfc444927cd 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: ba41b9dc-4186-422a-8f63-dec3fe48d088 X-Archives-Hash: ed356c31f4422c5467f36ae7bbefff85 commit: 9c3a015934da631d4271e33bd39bddfc444927cd Author: Filip Kobierski pm me> AuthorDate: Wed Nov 6 16:13:14 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=9c3a0159 dev-util/repolite: add sphinx to RDEPEND & more - add comment abut tests - remove dot in DESCRIPTION Bug: https://bugs.gentoo.org/942940 Signed-off-by: Filip Kobierski pm.me> Signed-off-by: Joonas Niilola gentoo.org> dev-util/repolite/repolite-0.6.2-r1.ebuild | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/dev-util/repolite/repolite-0.6.2-r1.ebuild b/dev-util/repolite/repolite-0.6.2-r1.ebuild new file mode 100644 index 000000000000..42bcd9968566 --- /dev/null +++ b/dev-util/repolite/repolite-0.6.2-r1.ebuild @@ -0,0 +1,51 @@ +# 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" +# tests use git_dummy python package which is not packaged +# https://github.com/initialcommit-com/git-dummy +RESTRICT="test" + +RDEPEND=" + dev-python/munch[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/sphinx[${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 +}