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 A637415812D for ; Mon, 06 Jan 2025 20:04:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F257DE07C7; Mon, 06 Jan 2025 20:04:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 DCF1DE07C7 for ; Mon, 06 Jan 2025 20:04:33 +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 319A5340754 for ; Mon, 06 Jan 2025 20:04:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C938AED for ; Mon, 06 Jan 2025 20:04:31 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1736193856.9ef078f27a34710c0f2a7df43efe4c2045eb3fe1.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/e3-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/e3-core/e3-core-22.6.0-r1.ebuild dev-ada/e3-core/e3-core-22.6.0.ebuild X-VCS-Directories: dev-ada/e3-core/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 9ef078f27a34710c0f2a7df43efe4c2045eb3fe1 X-VCS-Branch: master Date: Mon, 06 Jan 2025 20:04:31 +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: c7d49323-7c74-494f-a6db-28edcedb15c9 X-Archives-Hash: 7f81a2f4370347ab512f6c7828ad3998 commit: 9ef078f27a34710c0f2a7df43efe4c2045eb3fe1 Author: Alfredo Tupone gentoo org> AuthorDate: Mon Jan 6 20:01:22 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Jan 6 20:04:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef078f2 dev-ada/e3-core: build docs Signed-off-by: Alfredo Tupone gentoo.org> .../{e3-core-22.6.0.ebuild => e3-core-22.6.0-r1.ebuild} | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-ada/e3-core/e3-core-22.6.0.ebuild b/dev-ada/e3-core/e3-core-22.6.0-r1.ebuild similarity index 79% rename from dev-ada/e3-core/e3-core-22.6.0.ebuild rename to dev-ada/e3-core/e3-core-22.6.0-r1.ebuild index 8028993db17b..32670e618cef 100644 --- a/dev-ada/e3-core/e3-core-22.6.0.ebuild +++ b/dev-ada/e3-core/e3-core-22.6.0-r1.ebuild @@ -28,18 +28,18 @@ RDEPEND="dev-python/colorama[${PYTHON_USEDEP}] dev-python/tomlkit[${PYTHON_USEDEP}] !app-editors/e3" DEPEND="${RDEPEND}" -BDEPEND=" - test? ( - dev-python/httpretty[${PYTHON_USEDEP}] - dev-vcs/subversion - dev-python/mock[${PYTHON_USEDEP}] - )" +BDEPEND="test? ( + dev-python/httpretty[${PYTHON_USEDEP}] + dev-vcs/subversion + dev-python/mock[${PYTHON_USEDEP}] +)" PATCHES=( "${FILESDIR}"/${PN}-22.1.0-test.patch ) distutils_enable_tests pytest +distutils_enable_sphinx docs/source dev-python/sphinx-rtd-theme dev-python/sphinx-autoapi python_compile() { distutils-r1_python_compile @@ -49,6 +49,7 @@ python_compile() { src_compile() { local PLATFORM=x86_64-linux rm src/e3/os/data/rlimit* || die - $(tc-getCC) ${CFLAGS} -o src/e3/os/data/rlimit-${PLATFORM} tools/rlimit/rlimit.c ${LDFLAGS} + $(tc-getCC) ${CFLAGS} -o src/e3/os/data/rlimit-${PLATFORM} \ + tools/rlimit/rlimit.c ${LDFLAGS} distutils-r1_src_compile }