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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63DE5158086 for ; Wed, 6 Oct 2021 08:33:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9810AE08F4; Wed, 6 Oct 2021 08:33:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EC02E08BF for ; Wed, 6 Oct 2021 08:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A17413432ED for ; Wed, 6 Oct 2021 08:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CCF2145 for ; Wed, 6 Oct 2021 08:33:24 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1633509098.75dc6c784ed431533df5c6b140aeb3d6d031b178.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libint/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libint/libint-2.6.0-r3.ebuild X-VCS-Directories: sci-libs/libint/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 75dc6c784ed431533df5c6b140aeb3d6d031b178 X-VCS-Branch: master Date: Wed, 6 Oct 2021 08:33:24 +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: 0cb937e5-ee69-4823-9e9c-efcf27638eeb X-Archives-Hash: 8e834e079888511e12cb928c16ca2f59 commit: 75dc6c784ed431533df5c6b140aeb3d6d031b178 Author: Jakov Smolić gentoo org> AuthorDate: Wed Oct 6 08:00:01 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Wed Oct 6 08:31:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75dc6c78 sci-libs/libint: drop 2.6.0-r3 Signed-off-by: Jakov Smolić gentoo.org> sci-libs/libint/libint-2.6.0-r3.ebuild | 63 ---------------------------------- 1 file changed, 63 deletions(-) diff --git a/sci-libs/libint/libint-2.6.0-r3.ebuild b/sci-libs/libint/libint-2.6.0-r3.ebuild deleted file mode 100644 index cf8dc7472d9..00000000000 --- a/sci-libs/libint/libint-2.6.0-r3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools fortran-2 toolchain-funcs - -DESCRIPTION="Matrix elements (integrals) evaluation over Cartesian Gaussian functions" -HOMEPAGE="https://github.com/evaleev/libint" -SRC_URI="https://github.com/evaleev/libint/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="2" -LICENSE="GPL-2" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="static-libs doc" - -DEPEND=" - dev-libs/boost - dev-libs/gmp[cxx(+)] - doc? ( - dev-texlive/texlive-latex - dev-tex/latex2html - )" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --with-cxx=$(tc-getCXX) \ - --with-cxx-optflags="${CXXFLAGS}" \ - --with-cxxgen-optflags="${CXXFLAGS}" \ - --with-cxxdepend=$(tc-getCXX) \ - --with-ranlib=$(tc-getRANLIB) \ - --with-ar=$(tc-getAR) \ - --with-ld=$(tc-getLD) \ - --enable-eri=2 --enable-eri3=2 --enable-eri2=2 \ - --with-eri-max-am=7,5,4 --with-eri-opt-am=3 \ - --with-eri3-max-am=7 --with-eri2-max-am=7 \ - --with-g12-max-am=5 --with-g12-opt-am=3 \ - --with-g12dkh-max-am=5 --with-g12dkh-opt-am=3 \ - --enable-contracted-ints \ - --enable-shared - $(use_enable static-libs static) -} - -src_compile() { - emake LDFLAGS="${LDFLAGS}" - - use doc && emake html pdf -} - -src_install() { - default - - if use doc; then - DOCS=( doc/progman/progman.pdf ) - HTML_DOCS=( doc/progman/progman/*.{html,png,css} ) - einstalldocs - fi -}