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 631A0158020 for ; Sun, 25 Dec 2022 23:39:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34102E0968; Sun, 25 Dec 2022 23:39:22 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 13C50E0968 for ; Sun, 25 Dec 2022 23:39:22 +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 14AD534116F for ; Sun, 25 Dec 2022 23:39:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BA687EB for ; Sun, 25 Dec 2022 23:39:19 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1672011548.317576c631118c719264b56ddc6916ce2ceab832.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/GeographicLib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/GeographicLib/GeographicLib-1.52.ebuild X-VCS-Directories: sci-geosciences/GeographicLib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 317576c631118c719264b56ddc6916ce2ceab832 X-VCS-Branch: master Date: Sun, 25 Dec 2022 23:39:19 +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: 444b10a4-0758-4e82-ad50-7e44ddbd7e49 X-Archives-Hash: 94566c824315172bf66415e273458336 commit: 317576c631118c719264b56ddc6916ce2ceab832 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 25 22:57:04 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 25 23:39:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=317576c6 sci-geosciences/GeographicLib: drop 1.52 Signed-off-by: Andreas Sturmlechner gentoo.org> .../GeographicLib/GeographicLib-1.52.ebuild | 105 --------------------- 1 file changed, 105 deletions(-) diff --git a/sci-geosciences/GeographicLib/GeographicLib-1.52.ebuild b/sci-geosciences/GeographicLib/GeographicLib-1.52.ebuild deleted file mode 100644 index 52e3cdd8b428..000000000000 --- a/sci-geosciences/GeographicLib/GeographicLib-1.52.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit cmake distutils-r1 - -MY_PN="${PN,,}" - -DESCRIPTION="C++ library for converting geographic coordinate systems" -HOMEPAGE="https://sourceforge.net/projects/geographiclib/" -SRC_URI="mirror://sourceforge/${MY_PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/19" -KEYWORDS="~amd64 ~arm" -IUSE="doc examples python" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RDEPEND="python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND}" -BDEPEND=" - doc? ( - >=app-doc/doxygen-1.8.7 - >=dev-lang/perl-5.26.1-r1 - >=dev-python/sphinx-1.6.3-r2 - >=sys-apps/util-linux-2.31 - ) -" - -distutils_enable_tests setup.py -# there are additional docs in the python dir -distutils_enable_sphinx python/doc - -src_prepare() { - cmake_src_prepare - - if use python; then - pushd "python" || die - distutils-r1_python_prepare_all - popd || die - fi -} - -src_configure() { - export GEODATAPATH="/usr/share/${MY_PN}" - - local mycmakeargs=( - -DGEOGRAPHICLIB_DOCUMENTATION=$(usex doc ON OFF) - -DGEOGRAPHICLIB_LIB_TYPE="SHARED" - -DGEOGRAPHICLIB_DATA="${GEODATAPATH}" - ) - cmake_src_configure -} - -src_compile() { - cmake_src_compile - - if use python; then - pushd "python" || die - python_foreach_impl distutils-r1_python_compile - popd || die - fi -} - -src_test() { - cmake_src_test - - if use python; then - pushd "python" || die - python_foreach_impl python_test - popd || die - fi -} - -src_install() { - cmake_src_install - - # remove python things added by the cmake_src_install function - rm -r "${D}/usr/$(get_libdir)/python" || die - # if use python we re-add these python files for each implementation - if use python; then - pushd "python" || die - python_foreach_impl distutils-r1_python_install - popd || die - fi - - #TODO: find out if java stuff need something - - # Installs to wrong doc dir for some reason - # Also happens with USE="-doc" - mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" || die - - if use examples; then - dodoc -r examples - docompress -x "/usr/share/doc/${PF}/examples" - fi - - insinto "/usr/share/maxima/${MY_PN}" - doins -r maxima/. - - find "${D}" -name "*.la" -delete || die -}