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 06A1E158099 for ; Fri, 24 Nov 2023 14:31:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BB0C2BC0B7; Fri, 24 Nov 2023 14:31:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 364D12BC0AE for ; Fri, 24 Nov 2023 14:31:20 +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 77EFF340976 for ; Fri, 24 Nov 2023 14:31:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFE9813C8 for ; Fri, 24 Nov 2023 14:31:17 +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: <1700836230.5d51f3a8f9c6c314856c2541c9aa1cb085d4928f.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-3.1.1_p20210225-r1.ebuild 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: 5d51f3a8f9c6c314856c2541c9aa1cb085d4928f X-VCS-Branch: master Date: Fri, 24 Nov 2023 14:31:17 +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: 9c552842-0cc0-4768-a84a-5a6cd6a45831 X-Archives-Hash: edc5f2b073afe4ce4efc2fe838e4869c commit: 5d51f3a8f9c6c314856c2541c9aa1cb085d4928f Author: Pacho Ramos gentoo org> AuthorDate: Fri Nov 24 13:59:09 2023 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Nov 24 14:30:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d51f3a8 sci-chemistry/openbabel: Works with wxGTK 3.2 Signed-off-by: Pacho Ramos gentoo.org> ...enbabel-9999.ebuild => openbabel-3.1.1_p20210225-r1.ebuild} | 10 +++++++--- sci-chemistry/openbabel/openbabel-9999.ebuild | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sci-chemistry/openbabel/openbabel-9999.ebuild b/sci-chemistry/openbabel/openbabel-3.1.1_p20210225-r1.ebuild similarity index 96% copy from sci-chemistry/openbabel/openbabel-9999.ebuild copy to sci-chemistry/openbabel/openbabel-3.1.1_p20210225-r1.ebuild index 735a5e868ea5..837978dbe580 100644 --- a/sci-chemistry/openbabel/openbabel-9999.ebuild +++ b/sci-chemistry/openbabel/openbabel-3.1.1_p20210225-r1.ebuild @@ -4,12 +4,12 @@ EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) -WX_GTK_VER=3.0-gtk3 +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 @@ -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 } diff --git a/sci-chemistry/openbabel/openbabel-9999.ebuild b/sci-chemistry/openbabel/openbabel-9999.ebuild index 735a5e868ea5..b4641769ecfa 100644 --- a/sci-chemistry/openbabel/openbabel-9999.ebuild +++ b/sci-chemistry/openbabel/openbabel-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) -WX_GTK_VER=3.0-gtk3 +WX_GTK_VER=3.2-gtk3 inherit cmake desktop flag-o-matic perl-functions python-r1 toolchain-funcs wxwidgets xdg-utils