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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ABBC5158090 for ; Fri, 11 Feb 2022 07:36:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7BECE0849; Fri, 11 Feb 2022 07:36:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CE461E0849 for ; Fri, 11 Feb 2022 07:36:43 +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 D20D7342D79 for ; Fri, 11 Feb 2022 07:36:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4599D2D8 for ; Fri, 11 Feb 2022 07:36:40 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1644564981.57fed5482af762bcaf4e9b0b35adc47752868c8f.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/vmc/vmc-9999.ebuild X-VCS-Directories: sci-physics/vmc/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 57fed5482af762bcaf4e9b0b35adc47752868c8f X-VCS-Branch: master Date: Fri, 11 Feb 2022 07:36:40 +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: 877d1e20-a088-4e8b-b7d3-d23369b66880 X-Archives-Hash: ff2c4282e8aacfd136ba0147a6db4cff commit: 57fed5482af762bcaf4e9b0b35adc47752868c8f Author: Oliver Freyermuth googlemail com> AuthorDate: Thu Feb 10 23:37:30 2022 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Fri Feb 11 07:36:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57fed548 sci-physics/vmc: Drop travis hack in live ebuild. Upstream has removed the hardcoded variable (post-release). Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Oliver Freyermuth googlemail.com> Signed-off-by: Guilherme Amadio gentoo.org> sci-physics/vmc/vmc-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild index 3598fb0ec8c0..7e948ba20921 100644 --- a/sci-physics/vmc/vmc-9999.ebuild +++ b/sci-physics/vmc/vmc-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -33,8 +33,7 @@ DOCS=(README.md History) src_compile() { cmake_src_compile if use doc; then - # TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream. - TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die + doxygen doc/doxygen/Doxyfile || die fi }