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 80C36159C9B for ; Tue, 30 Jul 2024 21:13:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 293AF2BC082; Tue, 30 Jul 2024 21:13:36 +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 0C0322BC082 for ; Tue, 30 Jul 2024 21:13:36 +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 8DC36342FA1 for ; Tue, 30 Jul 2024 21:13:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F06EB1E8B for ; Tue, 30 Jul 2024 21:13:31 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1722373913.f4e00d7c36ad6412719aac744ac959977e38c9d9.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/openbabel/openbabel-9999.ebuild X-VCS-Directories: sci-chemistry/openbabel/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: f4e00d7c36ad6412719aac744ac959977e38c9d9 X-VCS-Branch: master Date: Tue, 30 Jul 2024 21:13: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: 3c57cfcd-4127-4995-9f74-454bd1d21d99 X-Archives-Hash: 401c64b18dfbc6b95b3664af7127107b commit: f4e00d7c36ad6412719aac744ac959977e38c9d9 Author: Pacho Ramos gentoo org> AuthorDate: Tue Jul 30 19:50:46 2024 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Jul 30 21:11:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e00d7c sci-chemistry/openbabel: sync live ebuild Signed-off-by: Pacho Ramos gentoo.org> sci-chemistry/openbabel/openbabel-9999.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sci-chemistry/openbabel/openbabel-9999.ebuild b/sci-chemistry/openbabel/openbabel-9999.ebuild index d533ec698acf..fc4d6cab575e 100644 --- a/sci-chemistry/openbabel/openbabel-9999.ebuild +++ b/sci-chemistry/openbabel/openbabel-9999.ebuild @@ -3,13 +3,13 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) WX_GTK_VER=3.2-gtk3 inherit cmake desktop flag-o-matic perl-functions python-r1 toolchain-funcs wxwidgets xdg-utils DESCRIPTION="Interconverts file formats used in molecular modeling" -HOMEPAGE="https://openbabel.org/" +HOMEPAGE="https://openbabel.org/ https://github.com/openbabel/openbabel/" if [[ "${PV}" == *9999* ]]; then inherit git-r3 @@ -17,7 +17,7 @@ if [[ "${PV}" == *9999* ]]; then else if [[ "${PV}" == *_p* ]]; then # eg., openbabel-3.1.1_p20210325 # Set to commit hash - OPENBABEL_COMMIT= + OPENBABEL_COMMIT=08e23f39b0cc39b4eebd937a5a2ffc1a7bac3e1b SRC_URI="https://github.com/${PN}/${PN}/archive/${OPENBABEL_COMMIT}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${PN}-${OPENBABEL_COMMIT}" else @@ -25,7 +25,7 @@ else SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${PN}-${MY_P}" fi - KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos" fi SRC_URI="${SRC_URI} @@ -80,6 +80,10 @@ RDEPEND=" ) " +PATCHES=( + "${FILESDIR}"/openbabel-3.1.1-fix-time-check-cmake.patch +) + pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp }