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 C2EE915802F for ; Wed, 8 Mar 2023 19:40:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F41EFE07D1; Wed, 8 Mar 2023 19:40:46 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7BCDE07D1 for ; Wed, 8 Mar 2023 19:40:46 +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 875FE34108A for ; Wed, 8 Mar 2023 19:40:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2B988D5 for ; Wed, 8 Mar 2023 19:40:43 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1678304273.b86d3257ad83e75222912c14477f8e66a7c8d15a.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/fortran-stdlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/fortran-stdlib/fortran-stdlib-0.2.1.ebuild X-VCS-Directories: dev-libs/fortran-stdlib/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: b86d3257ad83e75222912c14477f8e66a7c8d15a X-VCS-Branch: dev Date: Wed, 8 Mar 2023 19:40:43 +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: ff6923cc-8be8-4f79-9f7a-8683d897f329 X-Archives-Hash: 03a62de238d1956c447f6d7566a893cd commit: b86d3257ad83e75222912c14477f8e66a7c8d15a Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Mar 8 19:36:10 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Wed Mar 8 19:37:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b86d3257 dev-libs/fortran-stdlib: drop 0.2.1 Closes: https://bugs.gentoo.org/897390 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .../fortran-stdlib/fortran-stdlib-0.2.1.ebuild | 68 ---------------------- 1 file changed, 68 deletions(-) diff --git a/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1.ebuild b/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1.ebuild deleted file mode 100644 index d1a26f59d..000000000 --- a/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -FORTRAN_STANDARD="2003" -PYTHON_COMPAT=( python3_{9..10} ) - -inherit cmake fortran-2 python-any-r1 - -MY_PN="stdlib" -SRC_URI="https://github.com/fortran-lang/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -DESCRIPTION="A community driven standard library for (modern) Fortran" -HOMEPAGE="https://stdlib.fortran-lang.org/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" -RESTRICT="mirror !test? ( test )" - -S="${WORKDIR}/${MY_PN}-${PV}" - -DEPEND=" - ${PYTHON_DEPS} - $(python_gen_any_dep ' - dev-util/fypp[${PYTHON_USEDEP}] - ') - doc? ( - $(python_gen_any_dep ' - app-doc/ford[${PYTHON_USEDEP}] - ') - ) - test? ( dev-util/fortran-test-drive ) -" - -pkg_setup() { - fortran-2_pkg_setup -} - -src_configure() { - local mycmakeargs+=( - -DBUILD_SHARED_LIBS=on - -DBUILD_TESTING=$(usex test) - ) - cmake_src_configure -} - -src_compile() { - cmake_src_compile - - if use doc ; then - einfo "Build API documentation:" - ${EPYTHON} ford API-doc-FORD-file.md || die - fi -} - -src_test() { - LD_LIBRARY_PATH="${BUILD_DIR}/src:${BUILD_DIR}/src/tests/hash_functions" cmake_src_test -} - -src_install() { - cmake_src_install - - use doc && HTML_DOCS=( "${WORKDIR}/${MY_PN}-${PV}"/API-doc/. ) - einstalldocs -}