From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 0F99A158287 for ; Sat, 17 May 2025 11:04:42 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id EEF48343066 for ; Sat, 17 May 2025 11:04:41 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EB654110286; Sat, 17 May 2025 11:04:40 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id DD283110286 for ; Sat, 17 May 2025 11:04:40 +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 8C8D5343066 for ; Sat, 17 May 2025 11:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDDEB17F6 for ; Sat, 17 May 2025 11:04:38 +0000 (UTC) From: "Nowa Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nowa Ammerlaan" Message-ID: <1747479725.8b95f55142bb7614a54052612f65c9109c9c76b7.nowa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/lhapdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/lhapdf/lhapdf-6.5.5-r1.ebuild sci-physics/lhapdf/lhapdf-9999.ebuild X-VCS-Directories: sci-physics/lhapdf/ X-VCS-Committer: nowa X-VCS-Committer-Name: Nowa Ammerlaan X-VCS-Revision: 8b95f55142bb7614a54052612f65c9109c9c76b7 X-VCS-Branch: master Date: Sat, 17 May 2025 11:04:38 +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: bc366e56-9dee-4f6a-ab46-5e4d3a6fb3cb X-Archives-Hash: 322f64fe5a9b8cb9fd1128d311f1bcb4 commit: 8b95f55142bb7614a54052612f65c9109c9c76b7 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Mon May 12 12:00:07 2025 +0000 Commit: Nowa Ammerlaan gentoo org> CommitDate: Sat May 17 11:02:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b95f551 sci-physics/lhapdf: use_enable doxygen Closes: https://bugs.gentoo.org/856799 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> Part-of: https://github.com/gentoo/gentoo/pull/42051 Signed-off-by: Nowa Ammerlaan gentoo.org> .../{lhapdf-9999.ebuild => lhapdf-6.5.5-r1.ebuild} | 16 +++++----------- sci-physics/lhapdf/lhapdf-9999.ebuild | 6 +++--- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/sci-physics/lhapdf/lhapdf-9999.ebuild b/sci-physics/lhapdf/lhapdf-6.5.5-r1.ebuild similarity index 84% copy from sci-physics/lhapdf/lhapdf-9999.ebuild copy to sci-physics/lhapdf/lhapdf-6.5.5-r1.ebuild index c0934bb24f79..ef997a9335fb 100644 --- a/sci-physics/lhapdf/lhapdf-9999.ebuild +++ b/sci-physics/lhapdf/lhapdf-6.5.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,7 @@ DOCS_DEPEND=" dev-texlive/texlive-latex dev-texlive/texlive-latexextra " -inherit python-single-r1 docs autotools +inherit python-single-r1 docs MY_PV=$(ver_cut 1-3) MY_PF=LHAPDF-${MY_PV} @@ -51,22 +51,17 @@ pkg_setup() { use python && python-single-r1_pkg_setup } -src_prepare() { - default - # live git does not have a configure script - eautoreconf -} - src_configure() { local -x CONFIG_SHELL="${EPREFIX}/bin/bash" econf \ --disable-static \ --with-yaml-cpp="${EPREFIX}/usr" \ - $(use_enable python) + $(use_enable python) \ + $(use_enable doc doxygen) } src_compile() { - emake all $(use doc && echo doxy) + emake all } src_test() { @@ -75,7 +70,6 @@ src_test() { src_install() { default - use doc && dodoc -r doc/doxygen/. use examples && dodoc examples/*.cc use python && python_optimize diff --git a/sci-physics/lhapdf/lhapdf-9999.ebuild b/sci-physics/lhapdf/lhapdf-9999.ebuild index c0934bb24f79..a4f6e47e6eef 100644 --- a/sci-physics/lhapdf/lhapdf-9999.ebuild +++ b/sci-physics/lhapdf/lhapdf-9999.ebuild @@ -62,11 +62,12 @@ src_configure() { econf \ --disable-static \ --with-yaml-cpp="${EPREFIX}/usr" \ - $(use_enable python) + $(use_enable python) \ + $(use_enable doc doxygen) } src_compile() { - emake all $(use doc && echo doxy) + emake all } src_test() { @@ -75,7 +76,6 @@ src_test() { src_install() { default - use doc && dodoc -r doc/doxygen/. use examples && dodoc examples/*.cc use python && python_optimize